diff --git a/.gitattributes b/.gitattributes index 71b25de5fede..ba5608836c90 100644 --- a/.gitattributes +++ b/.gitattributes @@ -15,7 +15,8 @@ *.json text *.jelly text *.jellytag text -*.less text +# JENKINS-68887: postcss-less fails to properly parse .less files with Windows line breaks +*.less text eol=lf *.properties text *.rb text *.sh text diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 571c3a747a49..8cdc801f9854 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -35,6 +35,7 @@ N/A * Fill-in the `Proposed changelog entries` section only if there are breaking changes or other changes which may require extra steps from users during the upgrade - [ ] Appropriate autotests or explanation to why this change has no tests - [ ] New public classes, fields, and methods are annotated with `@Restricted` or have `@since TODO` Javadoc, as appropriate. +- [ ] New deprecations are annotated with `@Deprecated(since = "TODO")` or `@Deprecated(forRemoval = true, since = "TODO")` if applicable. - [ ] For dependency updates: links to external changelogs and, if possible, full diffs diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 095dd5abc415..21bf060b016e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -34,10 +34,6 @@ updates: # Fails test automation; needs further investigation. - dependency-name: "com.google.inject:guice-bom" - # Requires Java 11 starting with version 10.0. - - dependency-name: "com.puppycrawl.tools:checkstyle" - versions: [">=10.0"] - # Contains incompatible API changes and needs compatibility work. - dependency-name: "jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api" @@ -63,3 +59,13 @@ updates: # Contains incompatible API changes and needs compatibility work. See: # https://github.com/jenkinsci/jenkins/pull/4224 - dependency-name: "org.jfree:jfreechart" + - package-ecosystem: "npm" + directory: "/war" + schedule: + interval: "daily" + reviewers: + - jenkinsci/sig-ux + ignore: + # Handlebars files (*.hbs) require a few tweaks in order to comply with 4.x' standards: + # https://issues.jenkins.io/browse/JENKINS-68926 + - dependency-name: "handlebars" diff --git a/.gitignore b/.gitignore index 2c07259eb858..021201b717a3 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ work /.idea/* !/.idea/icon.svg !/.idea/.name +!/.idea/encodings.xml out # Eclipse and VSCode project files diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 000000000000..d3bedadf1f9b --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,27 @@ +tasks: + - init: | + mvn -am -pl war,bom -P quick-build clean install + command: | + mvn -pl war jetty:run -Dhost=0.0.0.0 + name: Run + - command: gp await-port 8080 && gp url 8080 && gp preview $(gp url 8080)/jenkins/ + name: Preview + +github: + prebuilds: + pullRequestsFromForks: true + addBadge: true + +jetbrains: + intellij: + plugins: + - Stapler plugin for IntelliJ IDEA + prebuilds: + version: stable + +vscode: + extensions: + - vscjava.vscode-java-pack + +image: + file: .gitpod/Dockerfile diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile new file mode 100644 index 000000000000..e3c88317008f --- /dev/null +++ b/.gitpod/Dockerfile @@ -0,0 +1,4 @@ +FROM gitpod/workspace-full + +RUN brew install gh && \ + bash -c ". /home/gitpod/.sdkman/bin/sdkman-init.sh && sdk install maven 3.8.4 && sdk default maven 3.8.4" diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 000000000000..c502d2d4d072 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/icon.svg b/.idea/icon.svg index 8dd8fec29266..44161638ba48 100644 --- a/.idea/icon.svg +++ b/.idea/icon.svg @@ -1,81 +1 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/.mvn/jvm.config b/.mvn/jvm.config index e93a5b43ee1c..f0106d148540 100644 --- a/.mvn/jvm.config +++ b/.mvn/jvm.config @@ -1 +1 @@ --Xmx800m +-Xmx1100m diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8eb9822ccd8e..fb32776fb370 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -31,7 +31,7 @@ You can read a description of the [building and debugging process here]. If you want simply to build the `jenkins.war` file as fast as possible without tests, run: ```sh -mvn -am -pl war,bom -DskipTests -Dspotbugs.skip -Dspotless.check.skip clean install +mvn -am -pl war,bom -Pquick-build clean install ``` The WAR file will be created in `war/target/jenkins.war`. @@ -62,6 +62,16 @@ On another terminal, move to the war folder and start a [webpack](https://webpac cd war; yarn start ``` +### Gitpod + +You can open this project as a [Gitpod workspace](https://www.gitpod.io/) which comes pre-configured with all the tools you will need. +You can use IntelliJ IDEA (preferred) or VS Code (alternate) in the browser. + +[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/jenkinsci/jenkins) + +If you prefer using IntelliJ IDEA, you can setup Gitpod integration with JetBrains Gateway using the instructions on [gitpod.io](https://www.gitpod.io/docs/ides-and-editors/intellij), +which will open the workspace in IntelliJ IDEA using JetBrains Gateway. + ## Testing changes Jenkins core includes unit and functional tests as a part of the repository. @@ -220,4 +230,4 @@ just submit a pull request. [Jenkins Pipeline]: https://www.jenkins.io/doc/book/pipeline/ [Jenkinsfile]: ./Jenkinsfile [download Maven here]: https://maven.apache.org/download.cgi -[GitHub pull request]: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests \ No newline at end of file +[GitHub pull request]: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests diff --git a/Jenkinsfile b/Jenkinsfile index 8016e9d91363..a2b8ed5e0bfe 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,22 +13,19 @@ properties([ ]) def buildTypes = ['Linux', 'Windows'] -def jdks = [8, 11, 17] +def jdks = [11, 17] def builds = [:] for (i = 0; i < buildTypes.size(); i++) { for (j = 0; j < jdks.size(); j++) { def buildType = buildTypes[i] def jdk = jdks[j] - if (buildType == 'Windows' && jdk == 8) { - continue // unnecessary use of hardware - } if (buildType == 'Windows' && jdk == 17) { continue // TODO pending jenkins-infra/helpdesk#2822 } builds["${buildType}-jdk${jdk}"] = { // see https://github.com/jenkins-infra/documentation/blob/master/ci.adoc#node-labels for information on what node types are available - def agentContainerLabel = jdk == 8 ? 'maven' : 'maven-' + jdk + def agentContainerLabel = 'maven-' + jdk if (buildType == 'Windows') { agentContainerLabel += '-windows' } @@ -44,7 +41,7 @@ for (i = 0; i < buildTypes.size(); i++) { // Now run the actual build. stage("${buildType} Build / Test") { - timeout(time: 5, unit: 'HOURS') { + timeout(time: 6, unit: 'HOURS') { realtimeJUnit(healthScaleFactor: 20.0, testResults: '*/target/surefire-reports/*.xml,war/junit.xml') { def mavenOptions = [ '-Pdebug', @@ -61,9 +58,13 @@ for (i = 0; i < buildTypes.size(); i++) { 'clean', 'install', ] - infra.runMaven(mavenOptions, jdk) - if (isUnix()) { - sh 'git add . && git diff --exit-code HEAD' + try { + infra.runMaven(mavenOptions, jdk) + if (isUnix()) { + sh 'git add . && git diff --exit-code HEAD' + } + } finally { + archiveArtifacts allowEmptyArchive: true, artifacts: '**/target/surefire-reports/*.dumpstream' } } } @@ -71,14 +72,13 @@ for (i = 0; i < buildTypes.size(); i++) { // Once we've built, archive the artifacts and the test results. stage("${buildType} Publishing") { - archiveArtifacts allowEmptyArchive: true, artifacts: '**/target/surefire-reports/*.dumpstream' if (!fileExists('core/target/surefire-reports/TEST-jenkins.Junit4TestsRanTest.xml')) { error 'JUnit 4 tests are no longer being run for the core package' } if (!fileExists('test/target/surefire-reports/TEST-jenkins.Junit4TestsRanTest.xml')) { error 'JUnit 4 tests are no longer being run for the test package' } - // cli has been migrated to JUnit 5 + // cli and war have been migrated to JUnit 5 if (failFast && currentBuild.result == 'UNSTABLE') { error 'There were test failures; halting early' } diff --git a/README.md b/README.md index ecf83732aa6f..9c48c427cc2b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,9 @@ -[![][ButlerImage]][website] + + + + + + # About @@ -68,9 +73,6 @@ See [adopters](https://www.jenkins.io/project/adopters/) for the list of Jenkins # License Jenkins is **licensed** under the **[MIT License]**. - -[ButlerImage]: https://www.jenkins.io/sites/default/files/jenkins_logo.png [MIT License]: https://github.com/jenkinsci/jenkins/blob/master/LICENSE.txt -[Mirrors]: http://mirrors.jenkins-ci.org [GitHub]: https://github.com/jenkinsci/jenkins [website]: https://www.jenkins.io/ diff --git a/bom/pom.xml b/bom/pom.xml index a2929a173b77..6192bd3f6889 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -56,7 +56,7 @@ THE SOFTWARE. org.springframework spring-framework-bom - 5.3.20 + 5.3.21 pom import @@ -64,7 +64,7 @@ THE SOFTWARE. org.springframework.security spring-security-bom - 5.7.1 + 5.7.2 pom import @@ -173,7 +173,7 @@ THE SOFTWARE. net.java.dev.jna jna - 5.11.0 + 5.12.1 net.java.sezpoz @@ -256,11 +256,6 @@ THE SOFTWARE. remoting ${remoting.version} - - org.jenkins-ci.modules - instance-identity - 2.2 - org.jfree jfreechart diff --git a/cli/src/main/java/hudson/cli/CLI.java b/cli/src/main/java/hudson/cli/CLI.java index a6a33c6f800e..6abf4ae80f10 100644 --- a/cli/src/main/java/hudson/cli/CLI.java +++ b/cli/src/main/java/hudson/cli/CLI.java @@ -43,11 +43,14 @@ import java.net.URLConnection; import java.nio.ByteBuffer; import java.nio.charset.Charset; +import java.nio.file.Files; +import java.nio.file.InvalidPathException; +import java.nio.file.Path; +import java.nio.file.Paths; import java.security.GeneralSecurityException; import java.security.KeyPair; import java.security.SecureRandom; import java.util.Arrays; -import java.util.Collections; import java.util.List; import java.util.Locale; import java.util.Map; @@ -60,7 +63,6 @@ import javax.net.ssl.SSLContext; import javax.net.ssl.SSLSession; import javax.net.ssl.TrustManager; -import org.apache.commons.io.FileUtils; import org.apache.commons.lang.StringUtils; import org.glassfish.tyrus.client.ClientManager; import org.glassfish.tyrus.client.ClientProperties; @@ -267,7 +269,7 @@ public boolean verify(String s, SSLSession sslSession) { } if (args.isEmpty()) - args = Collections.singletonList("help"); // default to help + args = List.of("help"); // default to help if (mode == null) { mode = Mode.HTTP; @@ -327,7 +329,13 @@ public boolean verify(String s, SSLSession sslSession) { @SuppressFBWarnings(value = {"PATH_TRAVERSAL_IN", "URLCONNECTION_SSRF_FD"}, justification = "User provided values for running the program.") private static String readAuthFromFile(String auth) throws IOException { - return FileUtils.readFileToString(new File(auth.substring(1)), Charset.defaultCharset()); + Path path; + try { + path = Paths.get(auth.substring(1)); + } catch (InvalidPathException e) { + throw new IOException(e); + } + return Files.readString(path, Charset.defaultCharset()); } @SuppressFBWarnings(value = {"PATH_TRAVERSAL_IN", "URLCONNECTION_SSRF_FD"}, justification = "User provided values for running the program.") @@ -346,7 +354,7 @@ class Authenticator extends ClientEndpointConfig.Configurator { @Override public void beforeRequest(Map> headers) { if (factory.authorization != null) { - headers.put("Authorization", Collections.singletonList(factory.authorization)); + headers.put("Authorization", List.of(factory.authorization)); } } } @@ -483,14 +491,9 @@ synchronized int exit() throws InterruptedException { private static String computeVersion() { Properties props = new Properties(); - try { - InputStream is = CLI.class.getResourceAsStream("/jenkins/cli/jenkins-cli-version.properties"); + try (InputStream is = CLI.class.getResourceAsStream("/jenkins/cli/jenkins-cli-version.properties")) { if (is != null) { - try { - props.load(is); - } finally { - is.close(); - } + props.load(is); } } catch (IOException e) { e.printStackTrace(); // if the version properties is missing, that's OK. diff --git a/cli/src/main/java/hudson/cli/SSHCLI.java b/cli/src/main/java/hudson/cli/SSHCLI.java index 5badd296fbf0..3d6ea7c42530 100644 --- a/cli/src/main/java/hudson/cli/SSHCLI.java +++ b/cli/src/main/java/hudson/cli/SSHCLI.java @@ -35,7 +35,6 @@ import java.net.URLConnection; import java.security.KeyPair; import java.security.PublicKey; -import java.util.Collections; import java.util.List; import java.util.Set; import java.util.logging.Level; @@ -114,7 +113,7 @@ public boolean verifyServerKey(ClientSession clientSession, SocketAddress remote WaitableFuture wf = channel.open(); wf.await(); - Set waitMask = channel.waitFor(Collections.singletonList(ClientChannelEvent.CLOSED), 0L); + Set waitMask = channel.waitFor(List.of(ClientChannelEvent.CLOSED), 0L); if (waitMask.contains(ClientChannelEvent.TIMEOUT)) { throw new SocketTimeoutException("Failed to retrieve command result in time: " + command); diff --git a/cli/src/main/resources/hudson/cli/client/Messages_bg.properties b/cli/src/main/resources/hudson/cli/client/Messages_bg.properties index 6e81e0179afb..39236afd65e5 100644 --- a/cli/src/main/resources/hudson/cli/client/Messages_bg.properties +++ b/cli/src/main/resources/hudson/cli/client/Messages_bg.properties @@ -21,24 +21,24 @@ # THE SOFTWARE. CLI.Usage=\ - \u041f\u0440\u043e\u0433\u0440\u0430\u043c\u0430 \u043d\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u043d\u0438\u044f \u0440\u0435\u0434 \u043d\u0430 Jenkins\n\ - \u0423\u043f\u043e\u0442\u0440\u0435\u0431\u0430: java -jar jenkins-cli.jar [-s \u0410\u0414\u0420\u0415\u0421] \u041a\u041e\u041c\u0410\u041d\u0414\u0410 [\u041e\u041f\u0426\u0418\u042f\u2026] \u0410\u0420\u0413\u0423\u041c\u0415\u041d\u0422\u2026\n\ - \u041e\u043f\u0446\u0438\u0438:\n\ - -s \u0410\u0414\u0420\u0415\u0421 : \u0430\u0434\u0440\u0435\u0441\u044a\u0442 \u043d\u0430 \u0441\u044a\u0440\u0432\u044a\u0440\u0430 (\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e \u0441\u0435 \u0432\u0437\u0438\u043c\u0430 \u043e\u0442 \u043f\u0440\u043e\u043c\u0435\u043d\u043b\u0438\u0432\u0430\u0442\u0430 \u043d\u0430\n\ - \u0441\u0440\u0435\u0434\u0430\u0442\u0430 \u201eJENKINS_URL\u201c)\n\ - -i \u041a\u041b\u042e\u0427 : \u0447\u0430\u0441\u0442\u0435\u043d \u043a\u043b\u044e\u0447 \u0437\u0430 SSH \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f\n\ - -p \u0425\u041e\u0421\u0422:\u041f\u041e\u0420\u0422 : \u0445\u043e\u0441\u0442 \u0438 \u043f\u043e\u0440\u0442 \u0437\u0430 \u0441\u044a\u0440\u0432\u044a\u0440-\u043f\u043e\u0441\u0440\u0435\u0434\u043d\u0438\u043a \u043f\u043e HTTP \u0437\u0430 \u0442\u0443\u043d\u0435\u043b \u043f\u043e HTTPS.\n\ - \u0417\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f: https://www.jenkins.io/redirect/cli-https-proxy-tunnel\n\ - -noCertificateCheck : \u0431\u0435\u0437 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043d\u0430 \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0430 \u0437\u0430 HTTPS (\u0412\u041d\u0418\u041c\u0410\u041d\u0418\u0415!)\n\ - -noKeyAuth : \u0431\u0435\u0437 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u0441 \u0447\u0430\u0441\u0442\u0435\u043d \u043a\u043b\u044e\u0447 \u0437\u0430 SSH, \u043e\u043f\u0446\u0438\u044f\u0442\u0430 \u0435\n\ - \u043d\u0435\u0441\u044a\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u0430 \u0441 \u043e\u043f\u0446\u0438\u044f\u0442\u0430 \u201e-i\u201c\n\n\ - \u041d\u0430\u043b\u0438\u0447\u043d\u0438\u0442\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0438 \u0437\u0430\u0432\u0438\u0441\u044f\u0442 \u043e\u0442 \u0432\u0435\u0440\u0441\u0438\u044f\u0442\u0430 \u043d\u0430 \u0441\u044a\u0440\u0432\u044a\u0440\u0430. \u0417\u0430 \u0438\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0441\u043f\u0438\u0441\u044a\u043a\u0430\n\ - \u0438\u043c \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u0430 \u201ehelp\u201c.\n + Програма на ÐºÐ¾Ð¼Ð°Ð½Ð´Ð½Ð¸Ñ Ñ€ÐµÐ´ на Jenkins\n\ + Употреба: java -jar jenkins-cli.jar [-s ÐДРЕС] КОМÐÐДР[ОПЦИЯ…] ÐРГУМЕÐТ…\n\ + Опции:\n\ + -s ÐДРЕС : адреÑÑŠÑ‚ на Ñървъра (Ñтандартно Ñе взима от променливата на\n\ + Ñредата „JENKINS_URL“)\n\ + -i КЛЮЧ : чаÑтен ключ за SSH за идентификациÑ\n\ + -p ХОСТ:ПОРТ : хоÑÑ‚ и порт за Ñървър-поÑредник по HTTP за тунел по HTTPS.\n\ + За информациÑ: https://www.jenkins.io/redirect/cli-https-proxy-tunnel\n\ + -noCertificateCheck : без проверка на Ñертификата за HTTPS (Ð’ÐИМÐÐИЕ!)\n\ + -noKeyAuth : без Ð¸Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ñ Ñ‡Ð°Ñтен ключ за SSH, опциÑта е\n\ + неÑъвмеÑтима Ñ Ð¾Ð¿Ñ†Ð¸Ñта „-i“\n\n\ + Ðаличните команди завиÑÑÑ‚ от верÑиÑта на Ñървъра. За извеждане на ÑпиÑъка\n\ + им използвайте командата „help“.\n CLI.NoURL=\ - \u0410\u0434\u0440\u0435\u0441\u044a\u0442 \u043d\u0435 \u0435 \u0437\u0430\u0434\u0430\u0434\u0435\u043d \u043d\u0438\u0442\u043e \u0447\u0440\u0435\u0437 \u043e\u043f\u0446\u0438\u044f\u0442\u0430 \u201e-s\u201c, \u043d\u0438\u0442\u043e \u0447\u0440\u0435\u0437 \u043f\u0440\u043e\u043c\u0435\u043d\u043b\u0438\u0432\u0430\u0442\u0430 \u043d\u0430\ - \u0441\u0440\u0435\u0434\u0430\u0442\u0430 \u201eJENKINS_URL\u201c. + ÐдреÑÑŠÑ‚ не е зададен нито чрез опциÑта „-s“, нито чрез променливата на\ + Ñредата „JENKINS_URL“. CLI.VersionMismatch=\ - \u0412\u0435\u0440\u0441\u0438\u0438\u0442\u0435 \u043d\u0435 \u0441\u044a\u0432\u043f\u0430\u0434\u0430\u0442. \u0422\u0430\u0437\u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u0430 \u0437\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0435\u043d \u0440\u0435\u0434 \u043d\u0435 \u0440\u0430\u0431\u043e\u0442\u0438 \u0441 \u0442\u043e\u0437\u0438 \u0441\u044a\u0440\u0432\u044a\u0440\ + ВерÑиите не Ñъвпадат. Тази програма за команден ред не работи Ñ Ñ‚Ð¾Ð·Ð¸ Ñървър\ Jenkins. CLI.NoSuchFileExists=\ - \u0422\u0430\u043a\u044a\u0432 \u0444\u0430\u0439\u043b \u043d\u0435 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430: {0} + Такъв файл не ÑъщеÑтвува: {0} diff --git a/cli/src/main/resources/hudson/cli/client/Messages_da.properties b/cli/src/main/resources/hudson/cli/client/Messages_da.properties index 5414bbe31f66..b46bea91acae 100644 --- a/cli/src/main/resources/hudson/cli/client/Messages_da.properties +++ b/cli/src/main/resources/hudson/cli/client/Messages_da.properties @@ -24,5 +24,5 @@ CLI.VersionMismatch=Versionskonflikt. CLI''en fungerer ikke med denne Hudson ser CLI.Usage=Jenkins_ CLI\n\ Brug: java -jar jenkins-cli.jar [-s URL] command [opts...] args...\n\ Tilvalg:\n\ -De tilg\u00e6ngelige kommandoer afh\u00e6nger af serveren. K\u00f8r 'help' kommandoen for at se listen. -CLI.NoURL=Hverken -s eller JENKINS_URL milj\u00f8variablen er defineret +De tilgængelige kommandoer afhænger af serveren. Kør 'help' kommandoen for at se listen. +CLI.NoURL=Hverken -s eller JENKINS_URL miljøvariablen er defineret diff --git a/cli/src/main/resources/hudson/cli/client/Messages_de.properties b/cli/src/main/resources/hudson/cli/client/Messages_de.properties index 0643a71f9f7a..6569f76bdb59 100644 --- a/cli/src/main/resources/hudson/cli/client/Messages_de.properties +++ b/cli/src/main/resources/hudson/cli/client/Messages_de.properties @@ -3,12 +3,12 @@ CLI.Usage=Jenkins Kommandozeilenschnittstelle (Jenkins CLI)\n\ Verwendung: java -jar jenkins-cli.jar [-s URL] command [opts...] args...\n\ Optionen:\n\ -s URL : URL des Jenkins-Servers (Wert der Umgebungsvariable JENKINS_URL ist der Vorgabewert)\n\ - -i KEY : Datei mit privatem SSH-Schl\u00FCssel zur Authentisierung\n\ - -p HOST\:PORT : HTTP-Proxy-Host und -Port f\u00FCr HTTPS-Proxy-Tunnel. Siehe https://www.jenkins.io/redirect/cli-https-proxy-tunnel\n\ - -noCertificateCheck : \u00DCberspringt die Zertifikatspr\u00FCfung bei HTTPS. Bitte mit Vorsicht einsetzen.\n\ - -noKeyAuth : \u00DCberspringt die Authentifizierung mit einem privaten SSH-Schl\u00FCssel. Nicht kombinierbar mit -i\n\ + -i KEY : Datei mit privatem SSH-Schlüssel zur Authentisierung\n\ + -p HOST\:PORT : HTTP-Proxy-Host und -Port für HTTPS-Proxy-Tunnel. Siehe https://www.jenkins.io/redirect/cli-https-proxy-tunnel\n\ + -noCertificateCheck : Ãœberspringt die Zertifikatsprüfung bei HTTPS. Bitte mit Vorsicht einsetzen.\n\ + -noKeyAuth : Ãœberspringt die Authentifizierung mit einem privaten SSH-Schlüssel. Nicht kombinierbar mit -i\n\ \n\ - Die verf\u00FCgbaren Kommandos h\u00E4ngen vom kontaktierten Server ab. Verwenden Sie das Kommando help, um eine Liste aller verf\u00FCgbaren Kommandos anzuzeigen. + Die verfügbaren Kommandos hängen vom kontaktierten Server ab. Verwenden Sie das Kommando help, um eine Liste aller verfügbaren Kommandos anzuzeigen. CLI.NoURL=Weder die Option -s noch eine Umgebungsvariable JENKINS_URL wurde spezifiziert. CLI.NoSuchFileExists=Diese Datei existiert nicht {0} CLI.VersionMismatch=Versionskonflikt: Diese Version von Jenkins CLI ist nicht mit dem kontaktierten Jenkins-Server kompatibel. diff --git a/cli/src/main/resources/hudson/cli/client/Messages_es.properties b/cli/src/main/resources/hudson/cli/client/Messages_es.properties index 304669d0531b..0bd9ae070c33 100644 --- a/cli/src/main/resources/hudson/cli/client/Messages_es.properties +++ b/cli/src/main/resources/hudson/cli/client/Messages_es.properties @@ -1,24 +1,24 @@ CLI.Usage=Jenkins CLI\n\ Uso: java -jar jenkins-cli.jar [-s URL] command [opts...] args...\n\ Opciones:\n\ - -s URL : direcci\u00f3n web (por defecto se usa la variable JENKINS_URL)\n\ + -s URL : dirección web (por defecto se usa la variable JENKINS_URL)\n\ -http : usa un protocolo plano sobre HTTP(S) (es el uso por defecto; excluyente con -ssh y -remoting)\n\ -ssh : usa el protocolo SSH (requiere -user; el puerto SSH debe estar abierto en el servidor y el usuario debe tener registrada su clave publica)\n\ - -remoting : usa el protocolo deprecado de Remoting (siempre que est\u00e9 habilitado en el servidor; s\u00f3lo para compatibilidad con comandos heredados o legacy)\n\ - -i KEY : clave privada SSH usada para autenticaci\u00f3n (usado con -ssh o -remoting)\n\ + -remoting : usa el protocolo deprecado de Remoting (siempre que esté habilitado en el servidor; sólo para compatibilidad con comandos heredados o legacy)\n\ + -i KEY : clave privada SSH usada para autenticación (usado con -ssh o -remoting)\n\ -p HOST:PORT : host y puerto para el uso de proxy HTTPS. Ver https://www.jenkins.io/redirect/cli-https-proxy-tunnel\n\ - -noCertificateCheck : elude por completo la verificaci\u00f3n del certificado HTTPS. Usar con precauci\u00f3n\n\ - -noKeyAuth : intenta no cargar la clave privada de autenticaci\u00f3n SSH. Presenta conflicto con -i\n\ + -noCertificateCheck : elude por completo la verificación del certificado HTTPS. Usar con precaución\n\ + -noKeyAuth : intenta no cargar la clave privada de autenticación SSH. Presenta conflicto con -i\n\ -user : especifica el usuario (se usa con -ssh)\n\ - -strictHostKey : solicita la comprobaci\u00f3n estricta de la clave del host (se usa con -ssh)\n\ + -strictHostKey : solicita la comprobación estricta de la clave del host (se usa con -ssh)\n\ -logger FINE : habilita logs detallados en el cliente\n\ - -auth [ USER:SECRET | @FILE ] : especifica el usuario y contrase\u00f1a o API token (o los carga de un fichero);\n\ - se usa con -http o -remoting pero s\u00f3lo si el puerto del agente JNLP est\u00e1 deshabilitado.\n\ + -auth [ USER:SECRET | @FILE ] : especifica el usuario y contraseña o API token (o los carga de un fichero);\n\ + se usa con -http o -remoting pero sólo si el puerto del agente JNLP está deshabilitado.\n\ No es necesario si las variables de entorno JENKINS_USER_ID y JENKINS_API_TOKEN se encuentran configuradas.\n\ \n\ La lista de comandos disponibles depende del servidor. Ejecuta\n\ el comando ''help'' para ver la lista completa. -CLI.NoURL=No se ha especificado el par\u00e1metro -s ni la variable JENKINS_URL -CLI.VersionMismatch=La versi\u00f3n no coincide. Esta consola "CLI" no se puede usar en este Jenkins +CLI.NoURL=No se ha especificado el parámetro -s ni la variable JENKINS_URL +CLI.VersionMismatch=La versión no coincide. Esta consola "CLI" no se puede usar en este Jenkins CLI.NoSuchFileExists=El fichero {0} no existe. -CLI.BadAuth=Ambas variables de entorno JENKINS_USER_ID y JENKINS_API_TOKEN deber\u00edan estar configuradas o mantenerse vac\u00edas. +CLI.BadAuth=Ambas variables de entorno JENKINS_USER_ID y JENKINS_API_TOKEN deberían estar configuradas o mantenerse vacías. diff --git a/cli/src/main/resources/hudson/cli/client/Messages_fr.properties b/cli/src/main/resources/hudson/cli/client/Messages_fr.properties index 0f424e20208a..358b6aa409c8 100644 --- a/cli/src/main/resources/hudson/cli/client/Messages_fr.properties +++ b/cli/src/main/resources/hudson/cli/client/Messages_fr.properties @@ -1,14 +1,14 @@ CLI.Usage=Jenkins CLI\n\ Utilisation: java -jar jenkins-cli.jar [-s URL] command [opts...] args...\n\ Options:\n\ - -s URL : l''URL du serveur (par d\u00e9faut : variable d environnement JENKINS_URL)\n\ - -i KEY : fichier de la cl\u00e9 priv\u00e9e SSH \u00e0 utiliser pour l''authentification\n\ - -p HOST:PORT : h\u00f4te et port des proxys HTTP et HTTPS. Voir https://www.jenkins.io/redirect/cli-https-proxy-tunnel\n\ - -noCertificateCheck : contourne enti\u00e9rement la v\u00e9rification des certificats HTTPS. A utiliser avec pr\u00e9caution\n\ - -noKeyAuth : ne charge pas la cl\u00e9 priv\u00e9e d''authentification SSH. En conflit avec -i\n\ + -s URL : l''URL du serveur (par défaut : variable d environnement JENKINS_URL)\n\ + -i KEY : fichier de la clé privée SSH à utiliser pour l''authentification\n\ + -p HOST:PORT : hôte et port des proxys HTTP et HTTPS. Voir https://www.jenkins.io/redirect/cli-https-proxy-tunnel\n\ + -noCertificateCheck : contourne entiérement la vérification des certificats HTTPS. A utiliser avec précaution\n\ + -noKeyAuth : ne charge pas la clé privée d''authentification SSH. En conflit avec -i\n\ \n\ - Les commandes disponibles d\u00e9pendent du serveur. Lancer la commande 'help' pour\n\ + Les commandes disponibles dépendent du serveur. Lancer la commande 'help' pour\n\ obtenir la liste. -CLI.NoURL=Erreur, ni -s ou la variable d''environnement JENKINS_URL ne sont renseign\u00e9es. -CLI.VersionMismatch=Conflit de versions. Cet outil ne peut fonctionner avec le serveur Jenkins renseign\u00e9. +CLI.NoURL=Erreur, ni -s ou la variable d''environnement JENKINS_URL ne sont renseignées. +CLI.VersionMismatch=Conflit de versions. Cet outil ne peut fonctionner avec le serveur Jenkins renseigné. CLI.NoSuchFileExists=Ce fichier n''existe pas: {0} diff --git a/cli/src/main/resources/hudson/cli/client/Messages_it.properties b/cli/src/main/resources/hudson/cli/client/Messages_it.properties index df294ad414ee..b50f087c0b90 100644 --- a/cli/src/main/resources/hudson/cli/client/Messages_it.properties +++ b/cli/src/main/resources/hudson/cli/client/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -24,7 +24,7 @@ CLI.BadAuth=Le variabili d''ambiente JENKINS_USER_ID e JENKINS_API_TOKEN \ devono essere entrambe impostate o lasciate vuote. CLI.NoSuchFileExists=File non esistente: {0} -CLI.NoURL=Non sono stati specificati né -s né la variabile d''ambiente \ +CLI.NoURL=Non sono stati specificati né -s né la variabile d''ambiente \ JENKINS_URL. CLI.Usage=Interfaccia a riga di comando di Jenkins\n\ Uso: java -jar jenkins-cli.jar [-s URL] comando [opzioni...] argomenti...\n\ @@ -46,14 +46,14 @@ CLI.Usage=Interfaccia a riga di comando di Jenkins\n\ \ -noKeyAuth : non tenta di caricare la chiave privata per \ l''autenticazione SSH. In conflitto con -i\n\ \ -user : specifica l''utente (per l''utilizzo con -ssh)\n\ - \ -strictHostKey : richiede la modalità strict per la verifica delle \ + \ -strictHostKey : richiede la modalità strict per la verifica delle \ chiavi host (per l''utilizzo con -ssh)\n\ \ -logger FINE : abilita la registrazione dettagliata degli eventi \ da parte del client\n\ \ -auth [ UTENTE:SEGRETO | @FILE ] : specifica il nome utente e la password \ o il token API (o li carica entrambi da un file);\n\ \ per l''utilizzo con -http.\n\ - \ È raccomandato fornire le credenziali \ + \ È raccomandato fornire le credenziali \ in un file.\n\ \ Si veda \ https://www.jenkins.io/redirect/cli-http-connection-mode per ulteriori \ @@ -61,7 +61,7 @@ CLI.Usage=Interfaccia a riga di comando di Jenkins\n\ \ -bearer [ TOKEN | @FILE ] : specifica di utilizzare \ l'autenticazione tramite un bearer token (o carica il token da\n\ \ un file); per l''utilizzo con -http. \ - L''opzione è mutualmente esclusiva con -auth.\n\ + L''opzione è mutualmente esclusiva con -auth.\n\ \n\ I comandi disponibili dipendono dal server. Eseguire il comando ''help'' per \ visualizzarne l''elenco. diff --git a/cli/src/main/resources/hudson/cli/client/Messages_ja.properties b/cli/src/main/resources/hudson/cli/client/Messages_ja.properties index d3111a7a718b..eb64b2071515 100644 --- a/cli/src/main/resources/hudson/cli/client/Messages_ja.properties +++ b/cli/src/main/resources/hudson/cli/client/Messages_ja.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. # Neither -s nor the JENKINS_URL env var is specified. -CLI.NoURL=-s\u3082\u74b0\u5883\u5909\u6570JENKINS_URL\u3082\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002 +CLI.NoURL=-sも環境変数JENKINS_URLも指定ã•ã‚Œã¦ã„ã¾ã›ã‚“。 # Version mismatch. This CLI cannot work with this Hudson server -CLI.VersionMismatch=\u30d0\u30fc\u30b8\u30e7\u30f3\u30df\u30b9\u30de\u30c3\u30c1\u3067\u3059\u3002\u3053\u306eCLI\u306fHudson\u30b5\u30fc\u30d0\u3067\u306f\u52d5\u304d\u307e\u305b\u3093\u3002 +CLI.VersionMismatch=ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãƒŸã‚¹ãƒžãƒƒãƒã§ã™ã€‚ã“ã®CLIã¯Hudsonサーãƒã§ã¯å‹•ãã¾ã›ã‚“。 # Hudson CLI\n\ # Usage: java -jar jenkins-cli.jar [-s URL] command [opts...] args...\n\ # Options:\n\ @@ -32,9 +32,9 @@ CLI.VersionMismatch=\u30d0\u30fc\u30b8\u30e7\u30f3\u30df\u30b9\u30de\u30c3\u30c1 # The available commands depend on the server. Run the 'help' command to\n\ # see the list. CLI.Usage=Jenkins CLI\n\ - \u4f7f\u7528\u65b9\u6cd5: java -jar jenkins-cli.jar [-s URL] command [opts...] args...\n\ - \u30aa\u30d7\u30b7\u30e7\u30f3:\n\ - \ -s URL : \u30b5\u30fc\u30d0\u306eURL\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\uff08\u30c7\u30d5\u30a9\u30eb\u30c8\u306f\u74b0\u5883\u5909\u6570JENKINS_URL\u3067\u3059\uff09\u3002\n\ + 使用方法: java -jar jenkins-cli.jar [-s URL] command [opts...] args...\n\ + オプション:\n\ + \ -s URL : サーãƒã®URLを指定ã—ã¦ãã ã•ã„(デフォルトã¯ç’°å¢ƒå¤‰æ•°JENKINS_URLã§ã™ï¼‰ã€‚\n\ \n\ - \u5229\u7528\u53ef\u80fd\u306a\u30b3\u30de\u30f3\u30c9\u306f\u30b5\u30fc\u30d0\u306b\u4f9d\u5b58\u3057\u307e\u3059\u3002\u305d\u306e\u30ea\u30b9\u30c8\u3092\u307f\u308b\u306b\u306f'help'\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u304f\u3060\u3055\u3044\u3002 -CLI.NoSuchFileExists=\u30d5\u30a1\u30a4\u30eb\u304c\u5b58\u5728\u3057\u307e\u305b\u3093\u3002: {0} + 利用å¯èƒ½ãªã‚³ãƒžãƒ³ãƒ‰ã¯ã‚µãƒ¼ãƒã«ä¾å­˜ã—ã¾ã™ã€‚ãã®ãƒªã‚¹ãƒˆã‚’ã¿ã‚‹ã«ã¯'help'コマンドを実行ã—ã¦ãã ã•ã„。 +CLI.NoSuchFileExists=ファイルãŒå­˜åœ¨ã—ã¾ã›ã‚“。: {0} diff --git a/cli/src/main/resources/hudson/cli/client/Messages_pt_BR.properties b/cli/src/main/resources/hudson/cli/client/Messages_pt_BR.properties index b2a4bfac065a..82ce2badc77a 100644 --- a/cli/src/main/resources/hudson/cli/client/Messages_pt_BR.properties +++ b/cli/src/main/resources/hudson/cli/client/Messages_pt_BR.properties @@ -21,16 +21,16 @@ # THE SOFTWARE. CLI.Usage=Jenkins CLI\n\ - Uso: java -jar jenkins-cli.jar [-s URL] comando [op\u00E7\u00F5es...] par\u00E2metros...\n\ - Op\u00E7\u00F5es:\n\ - -s URL : a URL do servidor (por padr\u00E3o a vari\u00E1vel de ambiente JENKINS_URL \u00E9 usada)\n\ - -i KEY : arquivo contendo a chave SSH privada usada para autentica\u00E7\u00E3o\n\ + Uso: java -jar jenkins-cli.jar [-s URL] comando [opções...] parâmetros...\n\ + Opções:\n\ + -s URL : a URL do servidor (por padrão a variável de ambiente JENKINS_URL é usada)\n\ + -i KEY : arquivo contendo a chave SSH privada usada para autenticação\n\ -p HOST:PORT : host e porta do proxy HTTP para tunelamento de proxy HTTPS. Veja https://www.jenkins.io/redirect/cli-https-proxy-tunnel\n\ - -noCertificateCheck : ignora completamente a valida\u00E7\u00E3o dos certificados HTTPS. Use com cautela\n\ - -noKeyAuth : n\u00E3o tenta carregar a chave privada para autentica\u00E7\u00E3o SSH. Conflita com -i\n\ + -noCertificateCheck : ignora completamente a validação dos certificados HTTPS. Use com cautela\n\ + -noKeyAuth : não tenta carregar a chave privada para autenticação SSH. Conflita com -i\n\ \n\ - Os comandos dispon\u00EDveis dependem do servidor. Execute o comando 'help' para\n\ + Os comandos disponíveis dependem do servidor. Execute o comando 'help' para\n\ ver a lista. -CLI.NoURL=N\u00E3o foi especificado nem '-s' e nem a vari\u00E1vel de ambiente JENKINS_URL -CLI.NoSuchFileExists=O arquivo n\u00E3o existe: {0} -CLI.BadAuth=As vari\u00E1veis de ambiente JENKINS_USER_ID e JENKINS_API_TOKEN precisam ser ambas configuradas ou deixadas vazias. +CLI.NoURL=Não foi especificado nem '-s' e nem a variável de ambiente JENKINS_URL +CLI.NoSuchFileExists=O arquivo não existe: {0} +CLI.BadAuth=As variáveis de ambiente JENKINS_USER_ID e JENKINS_API_TOKEN precisam ser ambas configuradas ou deixadas vazias. diff --git a/cli/src/main/resources/hudson/cli/client/Messages_zh_TW.properties b/cli/src/main/resources/hudson/cli/client/Messages_zh_TW.properties index 133ee774b621..d712b4df78b4 100644 --- a/cli/src/main/resources/hudson/cli/client/Messages_zh_TW.properties +++ b/cli/src/main/resources/hudson/cli/client/Messages_zh_TW.properties @@ -21,15 +21,15 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -CLI.NoURL=\u6c92\u6709\u6307\u5b9a -s \u53c3\u6578\u6216\u662f JENKINS_URL \u74b0\u5883\u8b8a\u6578\u3002 -CLI.VersionMismatch=\u7248\u672c\u4e0d\u7b26\u3002CLI \u7121\u6cd5\u5728\u672c Jenkins \u4f3a\u670d\u5668\u4e0a\u904b\u4f5c\u3002 +CLI.NoURL=沒有指定 -s åƒæ•¸æˆ–是 JENKINS_URL 環境變數。 +CLI.VersionMismatch=版本ä¸ç¬¦ã€‚CLI 無法在本 Jenkins 伺æœå™¨ä¸Šé‹ä½œã€‚ CLI.Usage=Jenkins CLI\n\ - \u4f7f\u7528\u65b9\u5f0f: java -jar jenkins-cli.jar [-s URL] \u6307\u4ee4 [\u9078\u9805...] \u53c3\u6578...\n\ - \u9078\u9805:\n\ - -s URL : \u4f3a\u670d\u5668 URL (\u9810\u8a2d\u503c\u70ba JENKINS_URL \u74b0\u5883\u8b8a\u6578)\n\ - -i KEY : \u9a57\u8b49\u7528\u7684 SSH \u79c1\u9470\u6a94\n\ - -p HOST:PORT : \u5efa HTTPS Proxy Tunnel \u7684 HTTP \u4ee3\u7406\u4f3a\u670d\u5668\u4e3b\u6a5f\u53ca\u9023\u63a5\u57e0\u3002\u8acb\u53c3\u8003 https://www.jenkins.io/redirect/cli-https-proxy-tunnel\n\ - -noCertificateCheck : \u5b8c\u5168\u7565\u904e HTTPS \u6191\u8b49\u6aa2\u67e5\u3002\u8acb\u5c0f\u5fc3\u4f7f\u7528\n\ + 使用方å¼: java -jar jenkins-cli.jar [-s URL] 指令 [é¸é …...] åƒæ•¸...\n\ + é¸é …:\n\ + -s URL : 伺æœå™¨ URL (é è¨­å€¼ç‚º JENKINS_URL 環境變數)\n\ + -i KEY : 驗證用的 SSH ç§é‘°æª”\n\ + -p HOST:PORT : 建 HTTPS Proxy Tunnel çš„ HTTP 代ç†ä¼ºæœå™¨ä¸»æ©ŸåŠé€£æŽ¥åŸ ã€‚è«‹åƒè€ƒ https://www.jenkins.io/redirect/cli-https-proxy-tunnel\n\ + -noCertificateCheck : å®Œå…¨ç•¥éŽ HTTPS 憑證檢查。請å°å¿ƒä½¿ç”¨\n\ \n\ - \u53ef\u7528\u7684\u6307\u4ee4\u53d6\u6c7a\u65bc\u4f3a\u670d\u5668\u3002\u57f7\u884c 'help' \u6307\u4ee4\u53ef\u4ee5\u67e5\u770b\u5b8c\u6574\u6e05\u55ae\u3002 -CLI.NoSuchFileExists=\u6a94\u6848\u4e0d\u5b58\u5728: {0} + å¯ç”¨çš„指令å–決於伺æœå™¨ã€‚執行 'help' 指令å¯ä»¥æŸ¥çœ‹å®Œæ•´æ¸…單。 +CLI.NoSuchFileExists=檔案ä¸å­˜åœ¨: {0} diff --git a/cli/src/test/java/hudson/cli/PlainCLIProtocolTest.java b/cli/src/test/java/hudson/cli/PlainCLIProtocolTest.java index 98a4fefd8001..fb816f012018 100644 --- a/cli/src/test/java/hudson/cli/PlainCLIProtocolTest.java +++ b/cli/src/test/java/hudson/cli/PlainCLIProtocolTest.java @@ -157,9 +157,9 @@ void newop() throws IOException { while (server.stdin.size() == 0) { Thread.sleep(100); } - assertEquals("hello", server.stdin.toString(Charset.defaultCharset().name())); + assertEquals("hello", server.stdin.toString(Charset.defaultCharset())); assertEquals("command", server.arg); - assertEquals("goodbye", client.stdout.toString(Charset.defaultCharset().name())); + assertEquals("goodbye", client.stdout.toString(Charset.defaultCharset())); assertEquals(2, client.code); } diff --git a/core/pom.xml b/core/pom.xml index 27554bf94680..507b01b921da 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -599,19 +599,6 @@ THE SOFTWARE. - - org.jvnet.hudson.tools - maven-encoding-plugin - - - - - check-encoding - - compile - - - com.infradna.tool bridge-method-injector @@ -719,7 +706,8 @@ THE SOFTWARE. maven-surefire-plugin - @{jacocoSurefireArgs} + + @{jacocoSurefireArgs} --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.desktop/com.sun.beans.introspect=ALL-UNNAMED 0.5C false @@ -810,34 +798,6 @@ THE SOFTWARE. true - - all-tests - - - !test - - - - true - - - - jdk-9-and-above - - [9,) - - - - - maven-surefire-plugin - - - @{jacocoSurefireArgs} --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.desktop/com.sun.beans.introspect=ALL-UNNAMED - - - - - enable-jacoco diff --git a/core/src/main/java/hudson/ClassicPluginStrategy.java b/core/src/main/java/hudson/ClassicPluginStrategy.java index 13976387db19..bc4b350c0c4f 100644 --- a/core/src/main/java/hudson/ClassicPluginStrategy.java +++ b/core/src/main/java/hudson/ClassicPluginStrategy.java @@ -50,6 +50,7 @@ import java.util.Enumeration; import java.util.HashSet; import java.util.List; +import java.util.Set; import java.util.jar.Attributes; import java.util.jar.JarFile; import java.util.jar.Manifest; @@ -338,7 +339,7 @@ public List> findComponents(Class type, Hudson huds List finders; if (type == ExtensionFinder.class) { // Avoid infinite recursion of using ExtensionFinders to find ExtensionFinders - finders = Collections.singletonList(new ExtensionFinder.Sezpoz()); + finders = List.of(new ExtensionFinder.Sezpoz()); } else { finders = hudson.getExtensionList(ExtensionFinder.class); } @@ -597,7 +598,7 @@ static final class DependencyClassLoader extends ClassLoader { DependencyClassLoader(ClassLoader parent, File archive, List dependencies, PluginManager pluginManager) { super(parent); this._for = archive; - this.dependencies = Collections.unmodifiableList(new ArrayList<>(dependencies)); + this.dependencies = List.copyOf(dependencies); this.pluginManager = pluginManager; } @@ -612,7 +613,7 @@ private List getTransitiveDependencies() { synchronized (this) { localTransitiveDependencies = transitiveDependencies; if (localTransitiveDependencies == null) { - CyclicGraphDetector cgd = new CyclicGraphDetector() { + CyclicGraphDetector cgd = new CyclicGraphDetector<>() { @Override protected List getEdges(PluginWrapper pw) { List dep = new ArrayList<>(); @@ -629,7 +630,7 @@ protected List getEdges(PluginWrapper pw) { for (Dependency d : dependencies) { PluginWrapper p = pluginManager.getPlugin(d.shortName); if (p != null && p.isActive()) - cgd.run(Collections.singleton(p)); + cgd.run(Set.of(p)); } } catch (CycleDetectedException e) { throw new AssertionError(e); // such error should have been reported earlier diff --git a/core/src/main/java/hudson/DescriptorExtensionList.java b/core/src/main/java/hudson/DescriptorExtensionList.java index 7c9fbbddccac..c92b6ae206c0 100644 --- a/core/src/main/java/hudson/DescriptorExtensionList.java +++ b/core/src/main/java/hudson/DescriptorExtensionList.java @@ -251,7 +251,7 @@ private static > CopyOnWriteArrayList listLegacyInstances() { - return new Iterable() { + return new Iterable<>() { @Override public Iterator iterator() { return new AdaptedIterator, Descriptor>( diff --git a/core/src/main/java/hudson/ExtensionFinder.java b/core/src/main/java/hudson/ExtensionFinder.java index 5bddd008f5f0..f4c02667533b 100644 --- a/core/src/main/java/hudson/ExtensionFinder.java +++ b/core/src/main/java/hudson/ExtensionFinder.java @@ -179,8 +179,8 @@ public Collection> _find(Class type, Hudson hudson) * from here. * *

- * See https://bugs.openjdk.java.net/browse/JDK-4993813 for how to force a class initialization. - * Also see http://kohsuke.org/2010/09/01/deadlock-that-you-cant-avoid/ for how class initialization + * See JDK-4993813 for how to force a class initialization. + * Also see this blog post for how class initialization * can results in a dead lock. */ public void scout(Class extensionType, Hudson hudson) { @@ -560,7 +560,7 @@ protected void configure() { } public List> getLoadedIndex() { - return Collections.unmodifiableList(new ArrayList<>(loadedIndex)); + return List.copyOf(loadedIndex); } @Override @@ -645,7 +645,7 @@ private List> getIndices() { // 5. dead lock if (indices == null) { ClassLoader cl = Jenkins.get().getPluginManager().uberClassLoader; - indices = Collections.unmodifiableList(StreamSupport.stream(Index.load(Extension.class, Object.class, cl).spliterator(), false).collect(Collectors.toList())); + indices = StreamSupport.stream(Index.load(Extension.class, Object.class, cl).spliterator(), false).collect(Collectors.toUnmodifiableList()); } return indices; } diff --git a/core/src/main/java/hudson/ExtensionList.java b/core/src/main/java/hudson/ExtensionList.java index 7bae8ff5d83b..090d2172ca66 100644 --- a/core/src/main/java/hudson/ExtensionList.java +++ b/core/src/main/java/hudson/ExtensionList.java @@ -169,7 +169,7 @@ public void addListener(@NonNull ExtensionListListener listener) { @Override public @NonNull Iterator iterator() { // we need to intercept mutation, so for now don't allow Iterator.remove - return new AdaptedIterator, T>(Iterators.readOnly(ensureLoaded().iterator())) { + return new AdaptedIterator<>(Iterators.readOnly(ensureLoaded().iterator())) { @Override protected T adapt(ExtensionComponent item) { return item.getInstance(); @@ -198,7 +198,7 @@ public int size() { * Gets the read-only view of this {@link ExtensionList} where components are reversed. */ public List reverseView() { - return new AbstractList() { + return new AbstractList<>() { @Override public T get(int index) { return ExtensionList.this.get(size() - index - 1); diff --git a/core/src/main/java/hudson/ExtensionListView.java b/core/src/main/java/hudson/ExtensionListView.java index 0127752e46bd..2b10152b5c0f 100644 --- a/core/src/main/java/hudson/ExtensionListView.java +++ b/core/src/main/java/hudson/ExtensionListView.java @@ -56,7 +56,7 @@ public class ExtensionListView { * Creates a plain {@link List} backed by the current {@link ExtensionList}. */ public static List createList(final Class type) { - return new AbstractList() { + return new AbstractList<>() { private ExtensionList storage() { return Jenkins.get().getExtensionList(type); } @@ -103,7 +103,7 @@ public boolean remove(Object o) { * Creates a seriously hacked up {@link CopyOnWriteList} that acts as a view to the current {@link ExtensionList}. */ public static CopyOnWriteList createCopyOnWriteList(final Class type) { - return new CopyOnWriteList() { + return new CopyOnWriteList<>() { private ExtensionList storage() { return Jenkins.get().getExtensionList(type); } diff --git a/core/src/main/java/hudson/FilePath.java b/core/src/main/java/hudson/FilePath.java index 6b22e21d8362..60c213b7e03f 100644 --- a/core/src/main/java/hudson/FilePath.java +++ b/core/src/main/java/hudson/FilePath.java @@ -532,13 +532,10 @@ private static class Archive extends MasterToSlaveFileCallable { @Override public Integer invoke(File f, VirtualChannel channel) throws IOException { - Archiver a = factory.create(out); - try { + try (Archiver a = factory.create(out)) { scanner.scan(f, ignoringSymlinks(a, verificationRoot, noFollowLinks)); - } finally { - a.close(); + return a.countEntries(); } - return a.countEntries(); } private static final long serialVersionUID = 1L; @@ -708,10 +705,9 @@ private static void unzip(File dir, InputStream in) throws IOException { private static void unzip(File dir, File zipFile) throws IOException { dir = dir.getAbsoluteFile(); // without absolutization, getParentFile below seems to fail - ZipFile zip = new ZipFile(zipFile); - Enumeration entries = zip.getEntries(); - try { + try (ZipFile zip = new ZipFile(zipFile)) { + Enumeration entries = zip.getEntries(); while (entries.hasMoreElements()) { ZipEntry e = entries.nextElement(); File f = new File(dir, e.getName()); @@ -740,8 +736,6 @@ private static void unzip(File dir, File zipFile) throws IOException { Files.setLastModifiedTime(Util.fileToPath(f), e.getLastModifiedTime()); } } - } finally { - zip.close(); } } @@ -922,11 +916,9 @@ public OutputStream compress(OutputStream out) throws IOException { * @since 1.292 */ public void untarFrom(InputStream _in, final TarCompression compression) throws IOException, InterruptedException { - try { + try (_in) { final InputStream in = new RemoteInputStream(_in, Flag.GREEDY); act(new UntarFrom(compression, in)); - } finally { - _in.close(); } } @@ -2382,7 +2374,7 @@ private static class ReadToString extends MasterToSlaveFileCallable { @Override public String invoke(File f, VirtualChannel channel) throws IOException, InterruptedException { - return new String(Files.readAllBytes(fileToPath(f)), Charset.defaultCharset()); + return Files.readString(fileToPath(f), Charset.defaultCharset()); } } @@ -2947,10 +2939,8 @@ public int tar(OutputStream out, DirScanner scanner) throws IOException, Interru */ private static Integer writeToTar(File baseDir, DirScanner scanner, OutputStream out) throws IOException { Archiver tw = ArchiverFactory.TAR.create(out); - try { + try (tw) { scanner.scan(baseDir, tw); - } finally { - tw.close(); } return tw.countEntries(); } diff --git a/core/src/main/java/hudson/Functions.java b/core/src/main/java/hudson/Functions.java index a67bf746c3b8..92b158a1efa6 100644 --- a/core/src/main/java/hudson/Functions.java +++ b/core/src/main/java/hudson/Functions.java @@ -100,7 +100,6 @@ import java.io.PrintWriter; import java.io.Serializable; import java.io.StringWriter; -import java.io.UnsupportedEncodingException; import java.lang.management.LockInfo; import java.lang.management.ManagementFactory; import java.lang.management.MonitorInfo; @@ -747,10 +746,7 @@ public static String appendSpaceIfNotNull(String n) { public static String nbspIndent(String size) { int i = size.indexOf('x'); i = Integer.parseInt(i > 0 ? size.substring(0, i) : size) / 10; - StringBuilder buf = new StringBuilder(30); - for (int j = 2; j <= i; j++) - buf.append(" "); - return buf.toString(); + return " ".repeat(Math.max(0, i - 1)); } public static String getWin32ErrorMessage(IOException e) { @@ -777,11 +773,7 @@ public static String urlEncode(String s) { if (s == null) { return ""; } - try { - return URLEncoder.encode(s, StandardCharsets.UTF_8.name()); - } catch (UnsupportedEncodingException e) { - throw new Error(e); // impossible - } + return URLEncoder.encode(s, StandardCharsets.UTF_8); } public static String escape(String s) { @@ -1853,7 +1845,7 @@ public static String joinPath(String... components) { /** * Escapes the character unsafe for e-mail address. - * See http://en.wikipedia.org/wiki/E-mail_address for the details, + * See the Wikipedia page for the details, * but here the vocabulary is even more restricted. */ public static String toEmailSafeString(String projectName) { @@ -1933,19 +1925,26 @@ public void calcCheckUrl(Map attributes, String userDefined, Object descriptor, * * Used in {@code task.jelly} to decide if the page should be highlighted. */ - public boolean hyperlinkMatchesCurrentPage(String href) throws UnsupportedEncodingException { + public boolean hyperlinkMatchesCurrentPage(String href) { String url = Stapler.getCurrentRequest().getRequestURL().toString(); if (href == null || href.length() <= 1) return ".".equals(href) && url.endsWith("/"); - url = URLDecoder.decode(url, "UTF-8"); - href = URLDecoder.decode(href, "UTF-8"); + url = URLDecoder.decode(url, StandardCharsets.UTF_8); + href = URLDecoder.decode(href, StandardCharsets.UTF_8); if (url.endsWith("/")) url = url.substring(0, url.length() - 1); if (href.endsWith("/")) href = href.substring(0, href.length() - 1); return url.endsWith(href); } + /** + * @deprecated From JEXL expressions ({@code ${…}}) in {@code *.jelly} files + * you can use {@code [obj]} syntax to construct an {@code Object[]} + * (which may be usable where a {@link List} is expected) + * rather than {@code h.singletonList(obj)}. + */ + @Deprecated public List singletonList(T t) { - return Collections.singletonList(t); + return List.of(t); } /** @@ -2360,33 +2359,34 @@ public static String tryGetIconPath(String iconGuess, JellyContext context) { } StaplerRequest currentRequest = Stapler.getCurrentRequest(); - currentRequest.getWebApp().getDispatchValidator().allowDispatch(currentRequest, Stapler.getCurrentResponse()); String rootURL = currentRequest.getContextPath(); Icon iconMetadata = tryGetIcon(iconGuess); - String iconSource = null; + String iconSource; if (iconMetadata != null) { - iconSource = iconMetadata.getQualifiedUrl(context); + iconSource = IconSet.tryTranslateTangoIconToSymbol(iconMetadata.getClassSpec(), () -> iconMetadata.getQualifiedUrl(context)); + } else { + iconSource = guessIcon(iconGuess, rootURL); } + return iconSource; + } - if (iconMetadata == null) { - //noinspection HttpUrlsUsage - if (iconGuess.startsWith("http://") || iconGuess.startsWith("https://")) { - return iconGuess; - } + static String guessIcon(String iconGuess, String rootURL) { + String iconSource; + //noinspection HttpUrlsUsage + if (iconGuess.startsWith("http://") || iconGuess.startsWith("https://")) { + iconSource = iconGuess; + } else { if (!iconGuess.startsWith("/")) { iconGuess = "/" + iconGuess; } - iconSource = rootURL + (iconGuess.startsWith("/images/") || iconGuess.startsWith("/plugin/") ? getResourcePath() : "") + iconGuess; - } - - if (iconMetadata != null && iconMetadata.getClassSpec() != null) { - String translatedIcon = IconSet.tryTranslateTangoIconToSymbol(iconMetadata.getClassSpec()); - if (translatedIcon != null) { - return translatedIcon; + if (iconGuess.startsWith(rootURL)) { + if ((!rootURL.equals("/images") && !rootURL.equals("/plugin")) || iconGuess.startsWith(rootURL + rootURL)) { + iconGuess = iconGuess.substring(rootURL.length()); + } } + iconSource = rootURL + (iconGuess.startsWith("/images/") || iconGuess.startsWith("/plugin/") ? getResourcePath() : "") + iconGuess; } - return iconSource; } diff --git a/core/src/main/java/hudson/PluginManager.java b/core/src/main/java/hudson/PluginManager.java index c3cd3a750e6d..231a68a3de5b 100644 --- a/core/src/main/java/hudson/PluginManager.java +++ b/core/src/main/java/hudson/PluginManager.java @@ -187,6 +187,7 @@ * @author Kohsuke Kawaguchi */ @ExportedBean +@SuppressFBWarnings(value = "THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION", justification = "TODO needs triage") public abstract class PluginManager extends AbstractModelObject implements OnMaster, StaplerOverridable, StaplerProxy { /** Custom plugin manager system property or context param. */ public static final String CUSTOM_PLUGIN_MANAGER = PluginManager.class.getName() + ".className"; @@ -466,7 +467,7 @@ private boolean isDuplicate(PluginWrapper p) { @Override public void run(Reactor reactor) throws Exception { try { - CyclicGraphDetector cgd = new CyclicGraphDetector() { + CyclicGraphDetector cgd = new CyclicGraphDetector<>() { @Override protected List getEdges(PluginWrapper p) { List next = new ArrayList<>(); @@ -929,7 +930,7 @@ public void dynamicLoad(File arc, boolean removeExisting, @CheckForNull List, ModelObject { private final List optionalDependencies; public List getDependencyErrors() { - return Collections.unmodifiableList(new ArrayList<>(dependencyErrors.keySet())); + return List.copyOf(dependencyErrors.keySet()); } @Restricted(NoExternalUse.class) // Jelly use @@ -222,7 +222,7 @@ public boolean hasDerivedDependencyErrors() { * The core can depend on a plugin if it is bundled. Sometimes it's the only thing that * depends on the plugin e.g. UI support library bundle plugin. */ - private static Set CORE_ONLY_DEPENDANT = Collections.singleton("jenkins-core"); + private static Set CORE_ONLY_DEPENDANT = Set.of("jenkins-core"); /** * Set the list of components that depend on this plugin. diff --git a/core/src/main/java/hudson/Proc.java b/core/src/main/java/hudson/Proc.java index 6bcb6d416819..61defc264f54 100644 --- a/core/src/main/java/hudson/Proc.java +++ b/core/src/main/java/hudson/Proc.java @@ -320,12 +320,10 @@ public OutputStream getStdin() { @Override public int join() throws InterruptedException, IOException { // show what we are waiting for in the thread title - // since this involves some native work, let's have some soak period before enabling this by default Thread t = Thread.currentThread(); String oldName = t.getName(); if (SHOW_PID) { - ProcessTree.OSProcess p = ProcessTree.get().get(proc); - t.setName(oldName + " " + (p != null ? "waiting for pid=" + p.getPid() : "waiting for " + name)); + t.setName(oldName + " waiting for pid=" + proc.pid()); } try { @@ -506,7 +504,7 @@ public OutputStream getStdin() { * Debug switch to have the thread display the process it's waiting for. */ @SuppressFBWarnings(value = "MS_SHOULD_BE_FINAL", justification = "for debugging") - public static boolean SHOW_PID = false; + public static boolean SHOW_PID = true; /** * An instance of {@link Proc}, which has an internal workaround for JENKINS-23271. diff --git a/core/src/main/java/hudson/ProxyConfiguration.java b/core/src/main/java/hudson/ProxyConfiguration.java index c087c00ceb8c..fa55888a1df2 100644 --- a/core/src/main/java/hudson/ProxyConfiguration.java +++ b/core/src/main/java/hudson/ProxyConfiguration.java @@ -26,6 +26,7 @@ import com.thoughtworks.xstream.XStream; import edu.umd.cs.findbugs.annotations.CheckForNull; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.model.AbstractDescribableImpl; import hudson.model.Descriptor; import hudson.model.Saveable; @@ -400,6 +401,7 @@ private static void decorate(URLConnection con) throws IOException { @Extension @Symbol("proxy") public static class DescriptorImpl extends Descriptor { + @NonNull @Override public String getDisplayName() { return "Proxy Configuration"; diff --git a/core/src/main/java/hudson/StructuredForm.java b/core/src/main/java/hudson/StructuredForm.java index 708d0120dc9d..286e79997652 100644 --- a/core/src/main/java/hudson/StructuredForm.java +++ b/core/src/main/java/hudson/StructuredForm.java @@ -33,7 +33,7 @@ /** * Obtains the structured form data from {@link StaplerRequest}. - * See https://www.jenkins.io/doc/developer/forms/structured-form-submission/ + * See the developer documentation. * * @author Kohsuke Kawaguchi */ @@ -67,7 +67,7 @@ public static List toList(JSONObject parent, String propertyName) { if (v == null) return Collections.emptyList(); if (v instanceof JSONObject) - return Collections.singletonList((JSONObject) v); + return List.of((JSONObject) v); if (v instanceof JSONArray) return (List) v; diff --git a/core/src/main/java/hudson/TcpSlaveAgentListener.java b/core/src/main/java/hudson/TcpSlaveAgentListener.java index eb6358f7a3f3..ddecdfa09651 100644 --- a/core/src/main/java/hudson/TcpSlaveAgentListener.java +++ b/core/src/main/java/hudson/TcpSlaveAgentListener.java @@ -313,7 +313,7 @@ public void run() { * Primarily used to test the low-level connectivity. */ private void respondHello(String header, Socket s) throws IOException { - try { + try (s) { DataOutputStream out = new DataOutputStream(s.getOutputStream()); String response; if (header.startsWith("GET / ")) { @@ -336,8 +336,6 @@ private void respondHello(String header, Socket s) throws IOException { InputStream i = s.getInputStream(); IOUtils.copy(i, NullOutputStream.NULL_OUTPUT_STREAM); s.shutdownInput(); - } finally { - s.close(); } } @@ -400,20 +398,18 @@ public String getDisplayName() { @Override public void handle(Socket socket) throws IOException, InterruptedException { - try { + try (socket) { try (OutputStream stream = socket.getOutputStream()) { LOGGER.log(Level.FINE, "Received ping request from {0}", socket.getRemoteSocketAddress()); stream.write(ping); stream.flush(); LOGGER.log(Level.FINE, "Sent ping response to {0}", socket.getRemoteSocketAddress()); } - } finally { - socket.close(); } } public boolean connect(Socket socket) throws IOException { - try { + try (socket) { LOGGER.log(Level.FINE, "Requesting ping from {0}", socket.getRemoteSocketAddress()); try (DataOutputStream out = new DataOutputStream(socket.getOutputStream())) { out.writeUTF("Protocol:Ping"); @@ -435,8 +431,6 @@ public boolean connect(Socket socket) throws IOException { } } } - } finally { - socket.close(); } } } diff --git a/core/src/main/java/hudson/Util.java b/core/src/main/java/hudson/Util.java index 6af39fc1cb75..51abbf86a1aa 100644 --- a/core/src/main/java/hudson/Util.java +++ b/core/src/main/java/hudson/Util.java @@ -625,7 +625,7 @@ public static String ensureEndsWith(@CheckForNull String subject, @CheckForNull */ @NonNull public static String getDigestOf(@NonNull InputStream source) throws IOException { - try { + try (source) { MessageDigest md5 = getMd5(); DigestInputStream in = new DigestInputStream(source, md5); // Note: IOUtils.copy() buffers the input internally, so there is no @@ -634,8 +634,6 @@ public static String getDigestOf(@NonNull InputStream source) throws IOException return toHexString(md5.digest()); } catch (NoSuchAlgorithmException e) { throw new IOException("MD5 not installed", e); // impossible - } finally { - source.close(); } /* JENKINS-18178: confuses Maven 2 runner try { diff --git a/core/src/main/java/hudson/WebAppMain.java b/core/src/main/java/hudson/WebAppMain.java index c63e1f813a96..9327d78568a5 100644 --- a/core/src/main/java/hudson/WebAppMain.java +++ b/core/src/main/java/hudson/WebAppMain.java @@ -140,7 +140,7 @@ public void contextInitialized(ServletContextEvent event) { // Nicer console log formatting when using mvn jetty:run. if (Main.isDevelopmentMode && System.getProperty("java.util.logging.config.file") == null) { try { - Formatter formatter = (Formatter) Class.forName("io.jenkins.lib.support_log_formatter.SupportLogFormatter").newInstance(); + Formatter formatter = (Formatter) Class.forName("io.jenkins.lib.support_log_formatter.SupportLogFormatter").getDeclaredConstructor().newInstance(); for (Handler h : Logger.getLogger("").getHandlers()) { if (h instanceof ConsoleHandler) { ((ConsoleHandler) h).setFormatter(formatter); diff --git a/core/src/main/java/hudson/cli/CLIAction.java b/core/src/main/java/hudson/cli/CLIAction.java index d42e974452a2..633ecca3437c 100644 --- a/core/src/main/java/hudson/cli/CLIAction.java +++ b/core/src/main/java/hudson/cli/CLIAction.java @@ -136,7 +136,7 @@ public void close() throws IOException { } } - private void doClose() { + private void doClose() throws IOException { close(); } @@ -277,8 +277,8 @@ void run() throws IOException, InterruptedException { wait(); } } - PrintStream stdout = new PrintStream(streamStdout(), false, encoding.name()); - PrintStream stderr = new PrintStream(streamStderr(), true, encoding.name()); + PrintStream stdout = new PrintStream(streamStdout(), false, encoding); + PrintStream stderr = new PrintStream(streamStderr(), true, encoding); if (args.isEmpty()) { stderr.println("Connection closed before arguments received"); sendExit(2); diff --git a/core/src/main/java/hudson/cli/CLICommand.java b/core/src/main/java/hudson/cli/CLICommand.java index ab0a7266aec1..e779afbc3453 100644 --- a/core/src/main/java/hudson/cli/CLICommand.java +++ b/core/src/main/java/hudson/cli/CLICommand.java @@ -42,7 +42,6 @@ import java.io.InputStream; import java.io.PrintStream; import java.io.UncheckedIOException; -import java.io.UnsupportedEncodingException; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Type; import java.nio.charset.Charset; @@ -415,11 +414,7 @@ public final String getSingleLineSummary() { } catch (InterruptedException e) { throw new RuntimeException(e); } - try { - return out.toString(charset.name()); - } catch (UnsupportedEncodingException e) { - throw new AssertionError(e); - } + return out.toString(charset); } /** @@ -437,11 +432,7 @@ public final String getUsage() { } catch (InterruptedException e) { throw new RuntimeException(e); } - try { - return out.toString(charset.name()); - } catch (UnsupportedEncodingException e) { - throw new AssertionError(e); - } + return out.toString(charset); } /** @@ -458,20 +449,11 @@ public final String getLongDescription() { } catch (InterruptedException e) { throw new RuntimeException(e); } - PrintStream ps; - try { - ps = new PrintStream(out, false, charset.name()); - } catch (UnsupportedEncodingException e) { - throw new AssertionError(e); - } + PrintStream ps = new PrintStream(out, false, charset); printUsageSummary(ps); ps.close(); - try { - return out.toString(charset.name()); - } catch (UnsupportedEncodingException e) { - throw new AssertionError(e); - } + return out.toString(charset); } /** diff --git a/core/src/main/java/hudson/cli/declarative/CLIRegisterer.java b/core/src/main/java/hudson/cli/declarative/CLIRegisterer.java index 8b2f2348c577..5fdf42672fbf 100644 --- a/core/src/main/java/hudson/cli/declarative/CLIRegisterer.java +++ b/core/src/main/java/hudson/cli/declarative/CLIRegisterer.java @@ -27,6 +27,7 @@ import static java.util.logging.Level.SEVERE; import edu.umd.cs.findbugs.annotations.NonNull; +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import hudson.AbortException; import hudson.Extension; import hudson.ExtensionComponent; @@ -71,6 +72,12 @@ * @author Kohsuke Kawaguchi */ @Extension +@SuppressFBWarnings( + value = { + "THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION", + "THROWS_METHOD_THROWS_RUNTIMEEXCEPTION" + }, + justification = "TODO needs triage") public class CLIRegisterer extends ExtensionFinder { @Override public ExtensionComponentSet refresh() throws ExtensionRefreshException { diff --git a/core/src/main/java/hudson/console/ConsoleAnnotationDescriptor.java b/core/src/main/java/hudson/console/ConsoleAnnotationDescriptor.java index e13d65ea4627..bb68ccc66194 100644 --- a/core/src/main/java/hudson/console/ConsoleAnnotationDescriptor.java +++ b/core/src/main/java/hudson/console/ConsoleAnnotationDescriptor.java @@ -24,6 +24,7 @@ package hudson.console; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.DescriptorExtensionList; import hudson.ExtensionPoint; import hudson.model.Descriptor; @@ -55,6 +56,7 @@ protected ConsoleAnnotationDescriptor() { * * Users use this name to enable/disable annotations. */ + @NonNull @Override public String getDisplayName() { return super.getDisplayName(); diff --git a/core/src/main/java/hudson/console/ConsoleAnnotationOutputStream.java b/core/src/main/java/hudson/console/ConsoleAnnotationOutputStream.java index d2ac95da65bd..256211a7267b 100644 --- a/core/src/main/java/hudson/console/ConsoleAnnotationOutputStream.java +++ b/core/src/main/java/hudson/console/ConsoleAnnotationOutputStream.java @@ -113,7 +113,7 @@ protected void eol(byte[] in, int sz) throws IOException { if (a != null) { if (annotators == null) annotators = new ArrayList<>(); - annotators.add(new ConsoleAnnotator() { + annotators.add(new ConsoleAnnotator<>() { @Override public ConsoleAnnotator annotate(T context, MarkupText text) { return a.annotate(context, text, charPos); diff --git a/core/src/main/java/hudson/console/ExpandableDetailsNote.java b/core/src/main/java/hudson/console/ExpandableDetailsNote.java index 57ed88e06e22..6dcc949199b1 100644 --- a/core/src/main/java/hudson/console/ExpandableDetailsNote.java +++ b/core/src/main/java/hudson/console/ExpandableDetailsNote.java @@ -24,6 +24,7 @@ package hudson.console; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.MarkupText; import java.io.IOException; @@ -67,6 +68,7 @@ public static String encodeTo(String buttonCaption, String html) { @Extension public static final class DescriptorImpl extends ConsoleAnnotationDescriptor { + @NonNull @Override public String getDisplayName() { return "Expandable details"; diff --git a/core/src/main/java/hudson/console/HyperlinkNote.java b/core/src/main/java/hudson/console/HyperlinkNote.java index f8e7e6520838..93e2ff40f493 100644 --- a/core/src/main/java/hudson/console/HyperlinkNote.java +++ b/core/src/main/java/hudson/console/HyperlinkNote.java @@ -24,6 +24,7 @@ package hudson.console; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.MarkupText; import hudson.Util; @@ -102,6 +103,7 @@ static String encodeTo(String url, String text, BiFunction runDeleteListener = new RunListener() { + public static final RunListener runDeleteListener = new RunListener<>() { @Override public void onDeleted(Run run) { remove(run, true); diff --git a/core/src/main/java/hudson/init/impl/InitialUserContent.java b/core/src/main/java/hudson/init/impl/InitialUserContent.java index 81cc279eb909..0e93164574a9 100644 --- a/core/src/main/java/hudson/init/impl/InitialUserContent.java +++ b/core/src/main/java/hudson/init/impl/InitialUserContent.java @@ -29,11 +29,11 @@ import hudson.Util; import hudson.init.Initializer; import hudson.model.Messages; -import java.io.File; import java.io.IOException; +import java.nio.charset.StandardCharsets; import java.nio.file.Files; +import java.nio.file.Path; import jenkins.model.Jenkins; -import org.apache.commons.io.FileUtils; /** * Prepares userContent folder and put a readme if it doesn't exist. @@ -42,10 +42,10 @@ public class InitialUserContent { @Initializer(after = JOB_CONFIG_ADAPTED) public static void init(Jenkins h) throws IOException { - File userContentDir = new File(h.getRootDir(), "userContent"); - if (!Files.isDirectory(Util.fileToPath(userContentDir))) { - Util.createDirectories(Util.fileToPath(userContentDir)); - FileUtils.writeStringToFile(new File(userContentDir, "readme.txt"), Messages.Hudson_USER_CONTENT_README() + "\n"); + Path userContentDir = Util.fileToPath(h.getRootDir()).resolve("userContent"); + if (!Files.isDirectory(userContentDir)) { + Util.createDirectories(userContentDir); + Files.writeString(userContentDir.resolve("readme.txt"), Messages.Hudson_USER_CONTENT_README() + System.lineSeparator(), StandardCharsets.UTF_8); } } } diff --git a/core/src/main/java/hudson/logging/LogRecorder.java b/core/src/main/java/hudson/logging/LogRecorder.java index 4e49c019a10f..84ae1e1f1ec7 100644 --- a/core/src/main/java/hudson/logging/LogRecorder.java +++ b/core/src/main/java/hudson/logging/LogRecorder.java @@ -574,7 +574,7 @@ public List getLogRecords() { * @since 1.519 */ public Map> getSlaveLogRecords() { - Map> result = new TreeMap<>(new Comparator() { + Map> result = new TreeMap<>(new Comparator<>() { final Collator COLL = Collator.getInstance(); @Override diff --git a/core/src/main/java/hudson/logging/LogRecorderManager.java b/core/src/main/java/hudson/logging/LogRecorderManager.java index 7d3fab45dc64..70856024df12 100644 --- a/core/src/main/java/hudson/logging/LogRecorderManager.java +++ b/core/src/main/java/hudson/logging/LogRecorderManager.java @@ -78,6 +78,9 @@ * @author Kohsuke Kawaguchi */ public class LogRecorderManager extends AbstractModelObject implements ModelObjectWithChildren, StaplerProxy { + + private static final Logger LOGGER = Logger.getLogger(LogRecorderManager.class.getName()); + /** * {@link LogRecorder}s keyed by their {@linkplain LogRecorder#getName()} name}. * @@ -104,7 +107,14 @@ public void setRecorders(List recorders) { this.recorders = recorders; Map values = recorders.stream() - .collect(toMap(LogRecorder::getName, Function.identity())); + .collect(toMap( + LogRecorder::getName, + Function.identity(), + // see JENKINS-68752, ignore duplicates + (recorder1, recorder2) -> { + LOGGER.warning(String.format("Ignoring duplicate log recorder '%s', check $JENKINS_HOME/log and remove the duplicate recorder", recorder2.getName())); + return recorder1; + })); ((CopyOnWriteMap) logRecorders).replaceBy(values); } @@ -237,7 +247,7 @@ public void doRss(StaplerRequest req, StaplerResponse rsp) throws IOException, S entryType = level; } - RSS.forwardToRss("Jenkins:log (" + entryType + " entries)", "", logs, new FeedAdapter() { + RSS.forwardToRss("Jenkins:log (" + entryType + " entries)", "", logs, new FeedAdapter<>() { @Override public String getEntryTitle(LogRecord entry) { return entry.getMessage(); diff --git a/core/src/main/java/hudson/markup/EscapedMarkupFormatter.java b/core/src/main/java/hudson/markup/EscapedMarkupFormatter.java index de83afabce6c..4a475cbd4e05 100644 --- a/core/src/main/java/hudson/markup/EscapedMarkupFormatter.java +++ b/core/src/main/java/hudson/markup/EscapedMarkupFormatter.java @@ -24,6 +24,7 @@ package hudson.markup; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.Util; import java.io.IOException; @@ -53,6 +54,7 @@ public void translate(String markup, Writer output) throws IOException { @Extension @Symbol("plainText") public static class DescriptorImpl extends MarkupFormatterDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.EscapedMarkupFormatter_DisplayName(); diff --git a/core/src/main/java/hudson/model/AbstractBuild.java b/core/src/main/java/hudson/model/AbstractBuild.java index 0bd6947270f0..e19a8b17a505 100644 --- a/core/src/main/java/hudson/model/AbstractBuild.java +++ b/core/src/main/java/hudson/model/AbstractBuild.java @@ -158,7 +158,7 @@ public abstract class AbstractBuild

, R extends A */ protected transient List buildEnvironments; - private final transient LazyBuildMixIn.RunMixIn runMixIn = new LazyBuildMixIn.RunMixIn() { + private final transient LazyBuildMixIn.RunMixIn runMixIn = new LazyBuildMixIn.RunMixIn<>() { @Override protected R asRun() { return _this(); } @@ -925,7 +925,7 @@ public boolean tearDown(AbstractBuild build, BuildListener listener) throws IOEx @Override @NonNull public List> getChangeSets() { ChangeLogSet cs = getChangeSet(); - return cs.isEmptySet() ? Collections.emptyList() : Collections.singletonList(cs); + return cs.isEmptySet() ? Collections.emptyList() : List.of(cs); } /** @@ -995,7 +995,7 @@ public EnvironmentList getEnvironments() { return new EnvironmentList(buildEnvironments); } - return new EnvironmentList(buildEnvironments == null ? Collections.emptyList() : Collections.unmodifiableList(new ArrayList<>(buildEnvironments))); + return new EnvironmentList(buildEnvironments == null ? Collections.emptyList() : List.copyOf(buildEnvironments)); } public Calendar due() { @@ -1194,11 +1194,11 @@ public RangeSet getDownstreamRelationship(AbstractProject that) { public Iterable> getDownstreamBuilds(final AbstractProject that) { final Iterable nums = getDownstreamRelationship(that).listNumbers(); - return new Iterable>() { + return new Iterable<>() { @Override public Iterator> iterator() { return Iterators.removeNull( - new AdaptedIterator>(nums) { + new AdaptedIterator<>(nums) { @Override protected AbstractBuild adapt(Integer item) { return that.getBuildByNumber(item); diff --git a/core/src/main/java/hudson/model/AbstractItem.java b/core/src/main/java/hudson/model/AbstractItem.java index 36418a93b17e..98f3b0581250 100644 --- a/core/src/main/java/hudson/model/AbstractItem.java +++ b/core/src/main/java/hudson/model/AbstractItem.java @@ -56,6 +56,8 @@ import java.io.File; import java.io.IOException; import java.io.OutputStream; +import java.nio.charset.Charset; +import java.nio.file.Files; import java.util.Collection; import java.util.Iterator; import java.util.LinkedHashMap; @@ -79,7 +81,6 @@ import jenkins.security.NotReallyRoleSensitiveCallable; import jenkins.util.SystemProperties; import jenkins.util.xml.XMLUtils; -import org.apache.commons.io.FileUtils; import org.apache.tools.ant.Project; import org.apache.tools.ant.taskdefs.Copy; import org.apache.tools.ant.types.FileSet; @@ -111,6 +112,7 @@ // Item doesn't necessarily have to be Actionable, but // Java doesn't let multiple inheritance. @ExportedBean +@SuppressFBWarnings(value = "THROWS_METHOD_THROWS_CLAUSE_THROWABLE", justification = "TODO needs triage") public abstract class AbstractItem extends Actionable implements Item, HttpDeletable, AccessControlled, DescriptorByNameOwner, StaplerProxy { private static final Logger LOGGER = Logger.getLogger(AbstractItem.class.getName()); @@ -856,7 +858,7 @@ public void writeConfigDotXml(OutputStream os) throws IOException { IOUtils.copy(configFile.getFile(), os); } else { String encoding = configFile.sniffEncoding(); - String xml = FileUtils.readFileToString(configFile.getFile(), encoding); + String xml = Files.readString(Util.fileToPath(configFile.getFile()), Charset.forName(encoding)); Matcher matcher = SECRET_PATTERN.matcher(xml); StringBuffer cleanXml = new StringBuffer(); while (matcher.find()) { diff --git a/core/src/main/java/hudson/model/AbstractProject.java b/core/src/main/java/hudson/model/AbstractProject.java index 489683f62355..e26cb4856fd8 100644 --- a/core/src/main/java/hudson/model/AbstractProject.java +++ b/core/src/main/java/hudson/model/AbstractProject.java @@ -267,7 +267,7 @@ protected AbstractProject(ItemGroup parent, String name) { } private LazyBuildMixIn createBuildMixIn() { - return new LazyBuildMixIn() { + return new LazyBuildMixIn<>() { @SuppressWarnings("unchecked") // untypable @Override protected P asJob() { return (P) AbstractProject.this; diff --git a/core/src/main/java/hudson/model/Actionable.java b/core/src/main/java/hudson/model/Actionable.java index 065daa993f08..19a897352b19 100644 --- a/core/src/main/java/hudson/model/Actionable.java +++ b/core/src/main/java/hudson/model/Actionable.java @@ -32,6 +32,7 @@ import java.util.Collection; import java.util.Collections; import java.util.List; +import java.util.Set; import java.util.concurrent.CopyOnWriteArrayList; import java.util.logging.Level; import java.util.logging.Logger; @@ -229,7 +230,7 @@ public boolean removeAction(@Nullable Action a) { return false; } // CopyOnWriteArrayList does not support Iterator.remove, so need to do it this way: - return getActions().removeAll(Collections.singleton(a)); + return getActions().removeAll(Set.of(a)); } /** diff --git a/core/src/main/java/hudson/model/AllView.java b/core/src/main/java/hudson/model/AllView.java index f92773678e03..ca1ef0d5cc0d 100644 --- a/core/src/main/java/hudson/model/AllView.java +++ b/core/src/main/java/hudson/model/AllView.java @@ -184,6 +184,7 @@ public boolean isApplicableIn(ViewGroup owner) { return true; } + @NonNull @Override public String getDisplayName() { return Messages.Hudson_ViewName(); diff --git a/core/src/main/java/hudson/model/BooleanParameterDefinition.java b/core/src/main/java/hudson/model/BooleanParameterDefinition.java index d4958d9ea297..5e270ef46da1 100644 --- a/core/src/main/java/hudson/model/BooleanParameterDefinition.java +++ b/core/src/main/java/hudson/model/BooleanParameterDefinition.java @@ -127,6 +127,7 @@ public boolean equals(Object obj) { // to avoid picking the Java reserved word "boolean" as the primary identifier @Extension @Symbol("booleanParam") public static class DescriptorImpl extends ParameterDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.BooleanParameterDefinition_DisplayName(); diff --git a/core/src/main/java/hudson/model/ChoiceParameterDefinition.java b/core/src/main/java/hudson/model/ChoiceParameterDefinition.java index 615bd84e8bba..7b12a9b2cee3 100644 --- a/core/src/main/java/hudson/model/ChoiceParameterDefinition.java +++ b/core/src/main/java/hudson/model/ChoiceParameterDefinition.java @@ -203,6 +203,7 @@ public boolean equals(Object obj) { @Extension @Symbol({"choice", "choiceParam"}) public static class DescriptorImpl extends ParameterDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.ChoiceParameterDefinition_DisplayName(); diff --git a/core/src/main/java/hudson/model/ComputerSet.java b/core/src/main/java/hudson/model/ComputerSet.java index ecef09a90fc3..211c795ee95c 100644 --- a/core/src/main/java/hudson/model/ComputerSet.java +++ b/core/src/main/java/hudson/model/ComputerSet.java @@ -146,7 +146,7 @@ public static Map, NodeMonitor> getNonIgnoredMonitors() * Gets all the agent names. */ public List get_slaveNames() { - return new AbstractList() { + return new AbstractList<>() { final List nodes = Jenkins.get().getNodes(); @Override diff --git a/core/src/main/java/hudson/model/DependencyGraph.java b/core/src/main/java/hudson/model/DependencyGraph.java index 3788e2aefddc..aa9810792a55 100644 --- a/core/src/main/java/hudson/model/DependencyGraph.java +++ b/core/src/main/java/hudson/model/DependencyGraph.java @@ -100,10 +100,10 @@ public void build() { /** * * - * See https://en.wikipedia.org/wiki/Tarjan's_strongly_connected_components_algorithm + * See Tarjan's strongly connected components algorithm */ private void topologicalDagSort() { - DirectedGraph g = new DirectedGraph() { + DirectedGraph g = new DirectedGraph<>() { @Override protected Collection nodes() { final Set nodes = new HashSet<>(); @@ -342,7 +342,7 @@ private Map> finalize(Map NAME_COMPARATOR = new Comparator() { + private static final Comparator NAME_COMPARATOR = new Comparator<>() { @Override public int compare(DependencyGroup lhs, DependencyGroup rhs) { int cmp = lhs.getUpstreamProject().getName().compareTo(rhs.getUpstreamProject().getName()); diff --git a/core/src/main/java/hudson/model/Descriptor.java b/core/src/main/java/hudson/model/Descriptor.java index bf0b0d5ccd0c..716b73031510 100644 --- a/core/src/main/java/hudson/model/Descriptor.java +++ b/core/src/main/java/hudson/model/Descriptor.java @@ -59,13 +59,13 @@ import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; -import java.util.Collections; import java.util.HashMap; import java.util.IdentityHashMap; import java.util.LinkedHashMap; import java.util.List; import java.util.Locale; import java.util.Map; +import java.util.Set; import java.util.concurrent.ConcurrentHashMap; import java.util.logging.Level; import java.util.logging.Logger; @@ -568,7 +568,7 @@ public T newInstance(StaplerRequest req) throws FormException { * Always non-null (see note above.) This object includes represents the entire submission. * @param formData * The JSON object that captures the configuration data for this {@link Descriptor}. - * See https://www.jenkins.io/doc/developer/forms/structured-form-submission/ + * See the developer documentation. * Always non-null. * * @throws FormException @@ -599,7 +599,7 @@ public T newInstance(@Nullable StaplerRequest req, @NonNull JSONObject formData) * Replacement for {@link StaplerRequest#bindJSON(Class, JSONObject)} which honors {@link #newInstance(StaplerRequest, JSONObject)}. * This is automatically used inside {@link #newInstance(StaplerRequest, JSONObject)} so a direct call would only be necessary * in case the top level binding might use a {@link Descriptor} which overrides {@link #newInstance(StaplerRequest, JSONObject)}. - * @since TODO + * @since 2.342 */ public static T bindJSON(StaplerRequest req, Class type, JSONObject src) { return bindJSON(req, type, src, false); @@ -820,7 +820,7 @@ public boolean configure(StaplerRequest req) throws FormException { * * @param json * The JSON object that captures the configuration data for this {@link Descriptor}. - * See https://www.jenkins.io/doc/developer/forms/structured-form-submission/ + * See the developer documentation. * @return false * to keep the client in the same config page. */ @@ -863,7 +863,7 @@ Permission getRequiredGlobalConfigPagePermission() { } private String getViewPage(Class clazz, String pageName, String defaultValue) { - return getViewPage(clazz, Collections.singleton(pageName), defaultValue); + return getViewPage(clazz, Set.of(pageName), defaultValue); } private String getViewPage(Class clazz, Collection pageNames, String defaultValue) { @@ -978,7 +978,7 @@ public void doHelp(StaplerRequest req, StaplerResponse rsp) throws IOException, rsp.setContentType("text/html;charset=UTF-8"); try (InputStream in = url.openStream()) { String literal = IOUtils.toString(in, StandardCharsets.UTF_8); - rsp.getWriter().println(Util.replaceMacro(literal, Collections.singletonMap("rootURL", req.getContextPath()))); + rsp.getWriter().println(Util.replaceMacro(literal, Map.of("rootURL", req.getContextPath()))); } return; } diff --git a/core/src/main/java/hudson/model/DirectoryBrowserSupport.java b/core/src/main/java/hudson/model/DirectoryBrowserSupport.java index 1df1e1ab69a8..ba62d01eb6c9 100644 --- a/core/src/main/java/hudson/model/DirectoryBrowserSupport.java +++ b/core/src/main/java/hudson/model/DirectoryBrowserSupport.java @@ -39,7 +39,6 @@ import java.util.Arrays; import java.util.Calendar; import java.util.Collection; -import java.util.Collections; import java.util.Comparator; import java.util.GregorianCalendar; import java.util.LinkedHashMap; @@ -507,10 +506,7 @@ private List buildParentPath(String pathList, int restSize) { private static String createBackRef(int times) { if (times == 0) return "./"; - StringBuilder buf = new StringBuilder(3 * times); - for (int i = 0; i < times; i++) - buf.append("../"); - return buf.toString(); + return "../".repeat(times); } private static void zip(StaplerResponse rsp, VirtualFile root, VirtualFile dir, String glob) throws IOException, InterruptedException { @@ -764,7 +760,7 @@ private static List> buildChildPaths(VirtualFile cur, Locale locale) for (VirtualFile f : files) { Path p = new Path(Util.rawEncode(f.getName()), f.getName(), f.isDirectory(), f.length(), f.canRead(), f.lastModified()); if (!f.isDirectory()) { - r.add(Collections.singletonList(p)); + r.add(List.of(p)); } else { // find all empty intermediate directory List l = new ArrayList<>(); diff --git a/core/src/main/java/hudson/model/DownloadService.java b/core/src/main/java/hudson/model/DownloadService.java index 000ef9f48d2f..b9a5610c4e35 100644 --- a/core/src/main/java/hudson/model/DownloadService.java +++ b/core/src/main/java/hudson/model/DownloadService.java @@ -388,7 +388,7 @@ public FormValidation updateNow() throws IOException { } String jsonString; try { - jsonString = loadJSONHTML(new URL(site + ".html?id=" + URLEncoder.encode(getId(), "UTF-8") + "&version=" + URLEncoder.encode(Jenkins.VERSION, "UTF-8"))); + jsonString = loadJSONHTML(new URL(site + ".html?id=" + URLEncoder.encode(getId(), StandardCharsets.UTF_8) + "&version=" + URLEncoder.encode(Jenkins.VERSION, StandardCharsets.UTF_8))); toolInstallerMetadataExists = true; } catch (Exception e) { LOGGER.log(Level.FINE, "Could not load json from " + site, e); diff --git a/core/src/main/java/hudson/model/Executor.java b/core/src/main/java/hudson/model/Executor.java index e7b14b72aebf..1214a277d8f7 100644 --- a/core/src/main/java/hudson/model/Executor.java +++ b/core/src/main/java/hudson/model/Executor.java @@ -32,6 +32,7 @@ import edu.umd.cs.findbugs.annotations.CheckForNull; import edu.umd.cs.findbugs.annotations.NonNull; +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import hudson.FilePath; import hudson.Functions; import hudson.Util; @@ -89,6 +90,12 @@ * @author Kohsuke Kawaguchi */ @ExportedBean +@SuppressFBWarnings( + value = { + "THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION", + "THROWS_METHOD_THROWS_CLAUSE_THROWABLE" + }, + justification = "TODO needs triage") public class Executor extends Thread implements ModelObject { protected final @NonNull Computer owner; private final Queue queue; @@ -349,7 +356,7 @@ public void run() { SubTask task; // transition from idle to building. // perform this state change as an atomic operation wrt other queue operations - task = Queue.withLock(new Callable() { + task = Queue.withLock(new Callable<>() { @Override public SubTask call() throws Exception { if (!owner.isOnline()) { diff --git a/core/src/main/java/hudson/model/FileParameterDefinition.java b/core/src/main/java/hudson/model/FileParameterDefinition.java index dcaf022b20fa..4cfb35fca14d 100644 --- a/core/src/main/java/hudson/model/FileParameterDefinition.java +++ b/core/src/main/java/hudson/model/FileParameterDefinition.java @@ -73,6 +73,7 @@ public FileParameterValue createValue(StaplerRequest req, JSONObject jo) { @Extension @Symbol({"file", "fileParam"}) public static class DescriptorImpl extends ParameterDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.FileParameterDefinition_DisplayName(); diff --git a/core/src/main/java/hudson/model/Fingerprint.java b/core/src/main/java/hudson/model/Fingerprint.java index d4b57badaefc..d49257967101 100644 --- a/core/src/main/java/hudson/model/Fingerprint.java +++ b/core/src/main/java/hudson/model/Fingerprint.java @@ -362,10 +362,10 @@ private RangeSet(Range initial) { */ public Iterable listNumbers() { final List ranges = getRanges(); - return new Iterable() { + return new Iterable<>() { @Override public Iterator iterator() { - return new Iterators.FlattenIterator(ranges) { + return new Iterators.FlattenIterator<>(ranges) { @Override protected Iterator expand(Range range) { return Iterators.sequence(range.start, range.end).iterator(); @@ -380,10 +380,10 @@ protected Iterator expand(Range range) { */ public Iterable listNumbersReverse() { final List ranges = getRanges(); - return new Iterable() { + return new Iterable<>() { @Override public Iterator iterator() { - return new Iterators.FlattenIterator(Iterators.reverse(ranges)) { + return new Iterators.FlattenIterator<>(Iterators.reverse(ranges)) { @Override protected Iterator expand(Range range) { return Iterators.reverseSequence(range.start, range.end).iterator(); @@ -1164,7 +1164,7 @@ public synchronized boolean trim() throws IOException { this.transientFacets = Collections.unmodifiableList(transientFacets); } - return new AbstractCollection() { + return new AbstractCollection<>() { @Override public Iterator iterator() { return Iterators.sequence(facets.iterator(), transientFacets.iterator()); @@ -1208,7 +1208,7 @@ public int size() { */ public @NonNull Collection getSortedFacets() { List r = new ArrayList<>(getFacets()); - r.sort(new Comparator() { + r.sort(new Comparator<>() { @Override public int compare(FingerprintFacet o1, FingerprintFacet o2) { long a = o1.getTimestamp(); diff --git a/core/src/main/java/hudson/model/FreeStyleProject.java b/core/src/main/java/hudson/model/FreeStyleProject.java index 814f2cf7e8a7..c63a339d6611 100644 --- a/core/src/main/java/hudson/model/FreeStyleProject.java +++ b/core/src/main/java/hudson/model/FreeStyleProject.java @@ -24,6 +24,7 @@ package hudson.model; +import edu.umd.cs.findbugs.annotations.NonNull; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import hudson.Extension; import jenkins.model.Jenkins; @@ -82,6 +83,7 @@ public DescriptorImpl() { DESCRIPTOR = this; } + @NonNull @Override public String getDisplayName() { return Messages.FreeStyleProject_DisplayName(); diff --git a/core/src/main/java/hudson/model/ItemGroupMixIn.java b/core/src/main/java/hudson/model/ItemGroupMixIn.java index 748a13cc6ec4..e9a526ebbe6c 100644 --- a/core/src/main/java/hudson/model/ItemGroupMixIn.java +++ b/core/src/main/java/hudson/model/ItemGroupMixIn.java @@ -24,6 +24,7 @@ package hudson.model; +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import hudson.Util; import hudson.XmlFile; import hudson.model.listeners.ItemListener; @@ -61,6 +62,7 @@ * @author Kohsuke Kawaguchi * @see ViewGroupMixIn */ +@SuppressFBWarnings(value = "THROWS_METHOD_THROWS_CLAUSE_THROWABLE", justification = "TODO needs triage") public abstract class ItemGroupMixIn { /** * {@link ItemGroup} for which we are working. diff --git a/core/src/main/java/hudson/model/JDK.java b/core/src/main/java/hudson/model/JDK.java index 0c9bcbda493d..50de1401f029 100644 --- a/core/src/main/java/hudson/model/JDK.java +++ b/core/src/main/java/hudson/model/JDK.java @@ -24,6 +24,7 @@ package hudson.model; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.EnvVars; import hudson.Extension; import hudson.Launcher; @@ -174,6 +175,7 @@ public static boolean isDefaultJDKValid(Node n) { @Extension @Symbol("jdk") public static class DescriptorImpl extends ToolDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.JDK_DisplayName(); @@ -195,7 +197,7 @@ public List getDefaultInstallers() { Class jdkInstallerClass = Jenkins.get().getPluginManager() .uberClassLoader.loadClass("hudson.tools.JDKInstaller").asSubclass(ToolInstaller.class); Constructor constructor = jdkInstallerClass.getConstructor(String.class, boolean.class); - return Collections.singletonList(constructor.newInstance(null, false)); + return List.of(constructor.newInstance(null, false)); } catch (ClassNotFoundException e) { return Collections.emptyList(); } catch (Exception e) { diff --git a/core/src/main/java/hudson/model/Job.java b/core/src/main/java/hudson/model/Job.java index 58cadef5ab77..ca06a25733d0 100644 --- a/core/src/main/java/hudson/model/Job.java +++ b/core/src/main/java/hudson/model/Job.java @@ -76,6 +76,7 @@ import java.util.GregorianCalendar; import java.util.List; import java.util.Map; +import java.util.Set; import java.util.SortedMap; import java.util.logging.Level; import java.util.logging.Logger; @@ -475,7 +476,7 @@ public boolean supportsLogRotator() { @Override public Collection getAllJobs() { - return Collections.singleton(this); + return Set.of(this); } /** @@ -593,7 +594,7 @@ protected HistoryWidget createHistoryWidget() { return new HistoryWidget(this, getBuilds(), HISTORY_ADAPTER); } - public static final HistoryWidget.Adapter HISTORY_ADAPTER = new Adapter() { + public static final HistoryWidget.Adapter HISTORY_ADAPTER = new Adapter<>() { @Override public int compare(Run record, String key) { try { @@ -1074,7 +1075,7 @@ class FeedItem { RSS.forwardToRss( getDisplayName() + scmDisplayName + " changes", getUrl() + "changes", - entries, new FeedAdapter() { + entries, new FeedAdapter<>() { @Override public String getEntryTitle(FeedItem item) { return "#" + item.getBuild().number + ' ' + item.e.getMsg() + " (" + item.e.getAuthor() + ")"; diff --git a/core/src/main/java/hudson/model/JobProperty.java b/core/src/main/java/hudson/model/JobProperty.java index fe02891987e9..14ff87591fe9 100644 --- a/core/src/main/java/hudson/model/JobProperty.java +++ b/core/src/main/java/hudson/model/JobProperty.java @@ -36,6 +36,7 @@ import java.io.IOException; import java.util.Collection; import java.util.Collections; +import java.util.List; import jenkins.model.Jenkins; import jenkins.model.OptionalJobProperty; import net.sf.json.JSONObject; @@ -134,7 +135,7 @@ public Collection getJobActions(J job) { // delegate to getJobAction (singular) for backward compatible behavior Action a = getJobAction(job); if (a == null) return Collections.emptyList(); - return Collections.singletonList(a); + return List.of(a); } // diff --git a/core/src/main/java/hudson/model/Label.java b/core/src/main/java/hudson/model/Label.java index 12426e8ba9e6..c285a1a28fda 100644 --- a/core/src/main/java/hudson/model/Label.java +++ b/core/src/main/java/hudson/model/Label.java @@ -185,7 +185,7 @@ public String getSearchUrl() { * {@link LabelAtom}s. */ public final boolean matches(final Collection labels) { - return matches(new VariableResolver() { + return matches(new VariableResolver<>() { @Override public Boolean resolve(String name) { for (LabelAtom a : labels) @@ -619,7 +619,7 @@ public static Label parseExpression(@NonNull String labelExpression) throws ANTL /** * Collects all the atoms in the expression. */ - private static final LabelVisitor> ATOM_COLLECTOR = new LabelVisitor>() { + private static final LabelVisitor> ATOM_COLLECTOR = new LabelVisitor<>() { @Override public Void onAtom(LabelAtom a, Set param) { param.add(a); diff --git a/core/src/main/java/hudson/model/ListView.java b/core/src/main/java/hudson/model/ListView.java index 14de68474e22..3476b81cc035 100644 --- a/core/src/main/java/hudson/model/ListView.java +++ b/core/src/main/java/hudson/model/ListView.java @@ -26,6 +26,7 @@ package hudson.model; import edu.umd.cs.findbugs.annotations.CheckForNull; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.Util; import hudson.diagnosis.OldDataMonitor; @@ -142,7 +143,7 @@ protected Object readResolve() { includePattern = Pattern.compile(includeRegex); } catch (PatternSyntaxException x) { includeRegex = null; - OldDataMonitor.report(this, Collections.singleton(x)); + OldDataMonitor.report(this, Set.of(x)); } } synchronized (this) { @@ -499,6 +500,7 @@ public void setStatusFilter(Boolean statusFilter) { @Extension @Symbol("list") public static class DescriptorImpl extends ViewDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.ListView_DisplayName(); diff --git a/core/src/main/java/hudson/model/MyView.java b/core/src/main/java/hudson/model/MyView.java index f4338aa959fb..bc98d9a55f7f 100644 --- a/core/src/main/java/hudson/model/MyView.java +++ b/core/src/main/java/hudson/model/MyView.java @@ -24,6 +24,7 @@ package hudson.model; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.model.Descriptor.FormException; import java.io.IOException; @@ -99,6 +100,7 @@ public boolean isInstantiable() { return Jenkins.get().isUseSecurity(); } + @NonNull @Override public String getDisplayName() { return Messages.MyView_DisplayName(); diff --git a/core/src/main/java/hudson/model/MyViewsProperty.java b/core/src/main/java/hudson/model/MyViewsProperty.java index a09906056d86..10a16f935f11 100644 --- a/core/src/main/java/hudson/model/MyViewsProperty.java +++ b/core/src/main/java/hudson/model/MyViewsProperty.java @@ -25,6 +25,7 @@ package hudson.model; import edu.umd.cs.findbugs.annotations.CheckForNull; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.Util; import hudson.model.Descriptor.FormException; @@ -235,6 +236,7 @@ public String getUrlName() { @Extension @Symbol("myView") public static class DescriptorImpl extends UserPropertyDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.MyViewsProperty_DisplayName(); diff --git a/core/src/main/java/hudson/model/ParametersDefinitionProperty.java b/core/src/main/java/hudson/model/ParametersDefinitionProperty.java index 26b59fdf95f6..d3eb4fec929a 100644 --- a/core/src/main/java/hudson/model/ParametersDefinitionProperty.java +++ b/core/src/main/java/hudson/model/ParametersDefinitionProperty.java @@ -39,8 +39,8 @@ import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; -import java.util.Collections; import java.util.List; +import java.util.Set; import java.util.concurrent.TimeUnit; import javax.servlet.ServletException; import jenkins.model.Jenkins; @@ -112,7 +112,7 @@ public List getParameterDefinitionNames() { @NonNull @Override public Collection getJobActions(Job job) { - return Collections.singleton(this); + return Set.of(this); } @Deprecated diff --git a/core/src/main/java/hudson/model/PasswordParameterDefinition.java b/core/src/main/java/hudson/model/PasswordParameterDefinition.java index 58846ac4a2b5..8074740088f0 100644 --- a/core/src/main/java/hudson/model/PasswordParameterDefinition.java +++ b/core/src/main/java/hudson/model/PasswordParameterDefinition.java @@ -138,6 +138,7 @@ public boolean equals(Object obj) { @Extension @Symbol("password") public static final class ParameterDescriptorImpl extends ParameterDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.PasswordParameterDefinition_DisplayName(); diff --git a/core/src/main/java/hudson/model/ProxyView.java b/core/src/main/java/hudson/model/ProxyView.java index 3f33302744dc..b3d19282752c 100644 --- a/core/src/main/java/hudson/model/ProxyView.java +++ b/core/src/main/java/hudson/model/ProxyView.java @@ -24,6 +24,7 @@ package hudson.model; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.Util; import hudson.model.Descriptor.FormException; @@ -129,6 +130,7 @@ public FormValidation doViewExistsCheck(@QueryParameter String value) { @Extension @Symbol("proxy") public static class DescriptorImpl extends ViewDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.ProxyView_DisplayName(); diff --git a/core/src/main/java/hudson/model/Queue.java b/core/src/main/java/hudson/model/Queue.java index 50ad97232bd5..93765f2be4ab 100644 --- a/core/src/main/java/hudson/model/Queue.java +++ b/core/src/main/java/hudson/model/Queue.java @@ -171,6 +171,7 @@ * @see QueueTaskDispatcher */ @ExportedBean +@SuppressFBWarnings(value = "THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION", justification = "TODO needs triage") public class Queue extends ResourceController implements Saveable { /** @@ -324,7 +325,7 @@ public String toString() { private transient volatile QueueSorter sorter; - private final transient AtmostOneTaskExecutor maintainerThread = new AtmostOneTaskExecutor<>(new Callable() { + private final transient AtmostOneTaskExecutor maintainerThread = new AtmostOneTaskExecutor<>(new Callable<>() { @Override public Void call() throws Exception { maintain(); @@ -1986,7 +1987,7 @@ default boolean isConcurrentBuild() { * @since 1.377 */ default Collection getSubTasks() { - return Collections.singleton(this); + return Set.of(this); } /** diff --git a/core/src/main/java/hudson/model/ResourceController.java b/core/src/main/java/hudson/model/ResourceController.java index a3702ab79e61..2eabd0616b3c 100644 --- a/core/src/main/java/hudson/model/ResourceController.java +++ b/core/src/main/java/hudson/model/ResourceController.java @@ -39,6 +39,12 @@ * Controls mutual exclusion of {@link ResourceList}. * @author Kohsuke Kawaguchi */ +@SuppressFBWarnings( + value = { + "THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION", + "THROWS_METHOD_THROWS_CLAUSE_THROWABLE" + }, + justification = "TODO needs triage") public class ResourceController { /** * {@link ResourceList}s that are used by activities that are in progress. @@ -48,10 +54,10 @@ public class ResourceController { /** * View of {@link #inProgress} that exposes its {@link ResourceList}. */ - private final Collection resourceView = new AbstractCollection() { + private final Collection resourceView = new AbstractCollection<>() { @Override public Iterator iterator() { - return new AdaptedIterator(inProgress.iterator()) { + return new AdaptedIterator<>(inProgress.iterator()) { @Override protected ResourceList adapt(ResourceActivity item) { return item.getResourceList(); @@ -123,7 +129,7 @@ public void run() { */ public boolean canRun(final ResourceList resources) { try { - return _withLock(new Callable() { + return _withLock(new Callable<>() { @Override public Boolean call() { return !inUse.isCollidingWith(resources); @@ -144,7 +150,7 @@ public Boolean call() { */ public Resource getMissingResource(final ResourceList resources) { try { - return _withLock(new Callable() { + return _withLock(new Callable<>() { @Override public Resource call() { return resources.getConflict(inUse); diff --git a/core/src/main/java/hudson/model/Run.java b/core/src/main/java/hudson/model/Run.java index b422a35adf99..806d83e3b89b 100644 --- a/core/src/main/java/hudson/model/Run.java +++ b/core/src/main/java/hudson/model/Run.java @@ -318,6 +318,7 @@ private enum State { /** * Creates a new {@link Run}. * @param job Owner job + * @see LazyBuildMixIn#newBuild */ protected Run(@NonNull JobT job) throws IOException { this(job, System.currentTimeMillis()); @@ -346,6 +347,7 @@ protected Run(@NonNull JobT job, long timestamp) { /** * Loads a run from a log file. + * @see LazyBuildMixIn#loadBuild */ protected Run(@NonNull JobT project, @NonNull File buildDir) throws IOException { this.project = project; @@ -2528,7 +2530,7 @@ protected void submit(JSONObject json) throws IOException { /** * Sort by date. Newer ones first. */ - public static final Comparator ORDER_BY_DATE = new Comparator() { + public static final Comparator ORDER_BY_DATE = new Comparator<>() { @Override public int compare(@NonNull Run lhs, @NonNull Run rhs) { long lt = lhs.getTimeInMillis(); diff --git a/core/src/main/java/hudson/model/RunMap.java b/core/src/main/java/hudson/model/RunMap.java index 955037ab3555..ca16fee660d2 100644 --- a/core/src/main/java/hudson/model/RunMap.java +++ b/core/src/main/java/hudson/model/RunMap.java @@ -101,7 +101,7 @@ public boolean remove(R run) { */ @Override public Iterator iterator() { - return new Iterator() { + return new Iterator<>() { R last = null; R next = newestBuild(); diff --git a/core/src/main/java/hudson/model/RunParameterDefinition.java b/core/src/main/java/hudson/model/RunParameterDefinition.java index 3ac138a8761c..9aec159686b9 100644 --- a/core/src/main/java/hudson/model/RunParameterDefinition.java +++ b/core/src/main/java/hudson/model/RunParameterDefinition.java @@ -143,6 +143,7 @@ public RunList getBuilds() { @Extension @Symbol({"run", "runParam"}) public static class DescriptorImpl extends ParameterDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.RunParameterDefinition_DisplayName(); diff --git a/core/src/main/java/hudson/model/Slave.java b/core/src/main/java/hudson/model/Slave.java index 1833acf9501a..cf6e6b437862 100644 --- a/core/src/main/java/hudson/model/Slave.java +++ b/core/src/main/java/hudson/model/Slave.java @@ -59,10 +59,7 @@ import java.net.URL; import java.net.URLConnection; import java.util.ArrayList; -import java.util.Arrays; import java.util.Collection; -import java.util.Collections; -import java.util.HashSet; import java.util.List; import java.util.Set; import java.util.jar.JarFile; @@ -744,5 +741,5 @@ private Object readResolve() { /** * Provides a collection of file names, which are accessible via /jnlpJars link. */ - private static final Set ALLOWED_JNLPJARS_FILES = Collections.unmodifiableSet(new HashSet<>(Arrays.asList("agent.jar", "slave.jar", "remoting.jar", "jenkins-cli.jar", "hudson-cli.jar"))); + private static final Set ALLOWED_JNLPJARS_FILES = Set.of("agent.jar", "slave.jar", "remoting.jar", "jenkins-cli.jar", "hudson-cli.jar"); } diff --git a/core/src/main/java/hudson/model/TextParameterDefinition.java b/core/src/main/java/hudson/model/TextParameterDefinition.java index 4db836a7b7e5..a22b1903e59b 100644 --- a/core/src/main/java/hudson/model/TextParameterDefinition.java +++ b/core/src/main/java/hudson/model/TextParameterDefinition.java @@ -55,6 +55,7 @@ public TextParameterDefinition(@NonNull String name, @CheckForNull String defaul @Extension @Symbol({"text", "textParam"}) public static class DescriptorImpl extends ParameterDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.TextParameterDefinition_DisplayName(); diff --git a/core/src/main/java/hudson/model/UpdateCenter.java b/core/src/main/java/hudson/model/UpdateCenter.java index 1ac875c03cdf..3aad76f1f043 100644 --- a/core/src/main/java/hudson/model/UpdateCenter.java +++ b/core/src/main/java/hudson/model/UpdateCenter.java @@ -114,7 +114,6 @@ import net.sf.json.JSONObject; import org.apache.commons.io.IOUtils; import org.apache.commons.io.input.CountingInputStream; -import org.apache.commons.io.output.NullOutputStream; import org.jenkinsci.Symbol; import org.jvnet.localizer.Localizable; import org.kohsuke.accmod.Restricted; @@ -1422,8 +1421,8 @@ private void testConnection(URL url) throws IOException { throw new HttpRetryException("Invalid response code (" + responseCode + ") from URL: " + url, responseCode); } } else { - try (InputStream is = connection.getInputStream()) { - IOUtils.copy(is, NullOutputStream.NULL_OUTPUT_STREAM); + try (InputStream is = connection.getInputStream(); OutputStream os = OutputStream.nullOutputStream()) { + IOUtils.copy(is, os); } } } catch (SSLHandshakeException e) { diff --git a/core/src/main/java/hudson/model/UpdateSite.java b/core/src/main/java/hudson/model/UpdateSite.java index 389e3cb3890f..6615369eb33f 100644 --- a/core/src/main/java/hudson/model/UpdateSite.java +++ b/core/src/main/java/hudson/model/UpdateSite.java @@ -49,6 +49,7 @@ import java.net.URI; import java.net.URL; import java.net.URLEncoder; +import java.nio.charset.StandardCharsets; import java.time.Instant; import java.util.ArrayList; import java.util.Arrays; @@ -104,6 +105,7 @@ * @since 1.333 */ @ExportedBean +@SuppressFBWarnings(value = "THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION", justification = "TODO needs triage") public class UpdateSite { /** * What's the time stamp of data file? @@ -214,7 +216,7 @@ public long getDataTimestamp() { @Restricted(NoExternalUse.class) public @NonNull FormValidation updateDirectlyNow(boolean signatureCheck) throws IOException { - return updateData(DownloadService.loadJSON(new URL(getUrl() + "?id=" + URLEncoder.encode(getId(), "UTF-8") + "&version=" + URLEncoder.encode(Jenkins.VERSION, "UTF-8"))), signatureCheck); + return updateData(DownloadService.loadJSON(new URL(getUrl() + "?id=" + URLEncoder.encode(getId(), StandardCharsets.UTF_8) + "&version=" + URLEncoder.encode(Jenkins.VERSION, StandardCharsets.UTF_8))), signatureCheck); } private FormValidation updateData(String json, boolean signatureCheck) @@ -529,7 +531,7 @@ public String getDownloadUrl() { * Is this the legacy default update center site? * @deprecated * Will be removed, currently returns always false. - * @since TODO + * @since 2.343 */ @Deprecated @Restricted(NoExternalUse.class) diff --git a/core/src/main/java/hudson/model/User.java b/core/src/main/java/hudson/model/User.java index bc2a86138d1a..8f9ca606dca9 100644 --- a/core/src/main/java/hudson/model/User.java +++ b/core/src/main/java/hudson/model/User.java @@ -441,7 +441,7 @@ private LegitimateButUnknownUserDetails(String username) throws IllegalArgumentE super( username, "", true, true, true, true, - Collections.singleton(SecurityRealm.AUTHENTICATED_AUTHORITY2) + Set.of(SecurityRealm.AUTHENTICATED_AUTHORITY2) ); } } diff --git a/core/src/main/java/hudson/model/View.java b/core/src/main/java/hudson/model/View.java index 856ea45f3bea..9b855187570e 100644 --- a/core/src/main/java/hudson/model/View.java +++ b/core/src/main/java/hudson/model/View.java @@ -1265,7 +1265,7 @@ public void updateByXml(Source source) throws IOException { public ModelObjectWithContextMenu.ContextMenu doChildrenContextMenu(StaplerRequest request, StaplerResponse response) throws Exception { ModelObjectWithContextMenu.ContextMenu m = new ModelObjectWithContextMenu.ContextMenu(); for (TopLevelItem i : getItems()) - m.add(i.getShortUrl(), i.getDisplayName()); + m.add(Functions.getRelativeLinkTo(i), Functions.getRelativeDisplayNameFrom(i, getOwner().getItemGroup())); return m; } diff --git a/core/src/main/java/hudson/model/labels/LabelAtom.java b/core/src/main/java/hudson/model/labels/LabelAtom.java index 52779eb6fce1..84ee083c488d 100644 --- a/core/src/main/java/hudson/model/labels/LabelAtom.java +++ b/core/src/main/java/hudson/model/labels/LabelAtom.java @@ -170,7 +170,7 @@ public V accept(LabelVisitor visitor, P param) { @Override public Set listAtoms() { - return Collections.singleton(this); + return Set.of(this); } @Override diff --git a/core/src/main/java/hudson/node_monitors/ArchitectureMonitor.java b/core/src/main/java/hudson/node_monitors/ArchitectureMonitor.java index b7e88d8e0eef..44af3340e434 100644 --- a/core/src/main/java/hudson/node_monitors/ArchitectureMonitor.java +++ b/core/src/main/java/hudson/node_monitors/ArchitectureMonitor.java @@ -24,6 +24,7 @@ package hudson.node_monitors; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.model.Computer; import hudson.remoting.Callable; @@ -46,6 +47,7 @@ protected Callable createCallable(Computer c) { return new GetArchTask(); } + @NonNull @Override public String getDisplayName() { return Messages.ArchitectureMonitor_DisplayName(); diff --git a/core/src/main/java/hudson/node_monitors/ClockMonitor.java b/core/src/main/java/hudson/node_monitors/ClockMonitor.java index 6c7dc54f343d..533de56a7ddd 100644 --- a/core/src/main/java/hudson/node_monitors/ClockMonitor.java +++ b/core/src/main/java/hudson/node_monitors/ClockMonitor.java @@ -24,6 +24,7 @@ package hudson.node_monitors; +import edu.umd.cs.findbugs.annotations.NonNull; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import hudson.Extension; import hudson.model.Computer; @@ -72,6 +73,7 @@ protected Callable createCallable(Computer c) { return n.getClockDifferenceCallable(); } + @NonNull @Override public String getDisplayName() { return Messages.ClockMonitor_DisplayName(); diff --git a/core/src/main/java/hudson/node_monitors/DiskSpaceMonitor.java b/core/src/main/java/hudson/node_monitors/DiskSpaceMonitor.java index bcf96ba02704..b3080d074925 100644 --- a/core/src/main/java/hudson/node_monitors/DiskSpaceMonitor.java +++ b/core/src/main/java/hudson/node_monitors/DiskSpaceMonitor.java @@ -24,6 +24,7 @@ package hudson.node_monitors; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.FilePath; import hudson.model.Computer; @@ -61,6 +62,7 @@ public String getColumnCaption() { } public static final DiskSpaceMonitorDescriptor DESCRIPTOR = new DiskSpaceMonitorDescriptor() { + @NonNull @Override public String getDisplayName() { return Messages.DiskSpaceMonitor_DisplayName(); diff --git a/core/src/main/java/hudson/node_monitors/ResponseTimeMonitor.java b/core/src/main/java/hudson/node_monitors/ResponseTimeMonitor.java index 8932941432c1..1ffdcc1a54ee 100644 --- a/core/src/main/java/hudson/node_monitors/ResponseTimeMonitor.java +++ b/core/src/main/java/hudson/node_monitors/ResponseTimeMonitor.java @@ -24,6 +24,7 @@ package hudson.node_monitors; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.model.Computer; import hudson.remoting.Callable; @@ -44,7 +45,7 @@ */ public class ResponseTimeMonitor extends NodeMonitor { @Extension - public static final AbstractNodeMonitorDescriptor DESCRIPTOR = new AbstractAsyncNodeMonitorDescriptor() { + public static final AbstractNodeMonitorDescriptor DESCRIPTOR = new AbstractAsyncNodeMonitorDescriptor<>() { @Override protected Callable createCallable(Computer c) { @@ -80,6 +81,7 @@ protected Map monitor() throws InterruptedException { return monitoringData; } + @NonNull @Override public String getDisplayName() { return Messages.ResponseTimeMonitor_DisplayName(); diff --git a/core/src/main/java/hudson/node_monitors/SwapSpaceMonitor.java b/core/src/main/java/hudson/node_monitors/SwapSpaceMonitor.java index 286274b42fe5..97965cc4afe9 100644 --- a/core/src/main/java/hudson/node_monitors/SwapSpaceMonitor.java +++ b/core/src/main/java/hudson/node_monitors/SwapSpaceMonitor.java @@ -24,6 +24,7 @@ package hudson.node_monitors; +import edu.umd.cs.findbugs.annotations.NonNull; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import hudson.Extension; import hudson.Functions; @@ -101,6 +102,7 @@ protected MonitorTask createCallable(Computer c) { return new MonitorTask(); } + @NonNull @Override public String getDisplayName() { return Messages.SwapSpaceMonitor_DisplayName(); diff --git a/core/src/main/java/hudson/node_monitors/TemporarySpaceMonitor.java b/core/src/main/java/hudson/node_monitors/TemporarySpaceMonitor.java index 0b2254e34416..77f2d2cffbc3 100644 --- a/core/src/main/java/hudson/node_monitors/TemporarySpaceMonitor.java +++ b/core/src/main/java/hudson/node_monitors/TemporarySpaceMonitor.java @@ -24,6 +24,7 @@ package hudson.node_monitors; +import edu.umd.cs.findbugs.annotations.NonNull; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import hudson.Extension; import hudson.FilePath; @@ -82,6 +83,7 @@ public DescriptorImpl() { DESCRIPTOR = this; } + @NonNull @Override public String getDisplayName() { return Messages.TemporarySpaceMonitor_DisplayName(); diff --git a/core/src/main/java/hudson/os/SU.java b/core/src/main/java/hudson/os/SU.java index 185110d83781..d98520ab5ae1 100644 --- a/core/src/main/java/hudson/os/SU.java +++ b/core/src/main/java/hudson/os/SU.java @@ -93,7 +93,7 @@ protected Process sudoWithPass(ArgumentListBuilder args) throws IOException { Process p = pb.start(); // TODO: use -p to detect prompt // TODO: detect if the password didn't work - try (PrintStream ps = new PrintStream(p.getOutputStream(), false, Charset.defaultCharset().name())) { + try (PrintStream ps = new PrintStream(p.getOutputStream(), false, Charset.defaultCharset())) { ps.println(rootPassword); ps.println(rootPassword); ps.println(rootPassword); diff --git a/core/src/main/java/hudson/os/WindowsUtil.java b/core/src/main/java/hudson/os/WindowsUtil.java index 7ec4637e59e1..1299024285ea 100644 --- a/core/src/main/java/hudson/os/WindowsUtil.java +++ b/core/src/main/java/hudson/os/WindowsUtil.java @@ -36,7 +36,7 @@ /** * Utilities for the Windows Platform. * Adapted from: - * https://blogs.msdn.microsoft.com/twistylittlepassagesallalike/2011/04/23/everyone-quotes-command-line-arguments-the-wrong-way/ + * Everyone quotes command line arguments the wrong way * * @since 2.183 */ @@ -70,9 +70,7 @@ public class WindowsUtil { } // else backslashes have no special meaning and don't need to be escaped here - for (int j = 0; j < nrBackslashes; j++) { - sb.append('\\'); - } + sb.append("\\".repeat(Math.max(0, nrBackslashes))); if (i < end) { sb.append(argument.charAt(i)); diff --git a/core/src/main/java/hudson/scm/EditType.java b/core/src/main/java/hudson/scm/EditType.java index 7672b09db2e4..62967b114205 100644 --- a/core/src/main/java/hudson/scm/EditType.java +++ b/core/src/main/java/hudson/scm/EditType.java @@ -24,8 +24,6 @@ package hudson.scm; -import java.util.Arrays; -import java.util.Collections; import java.util.List; import org.kohsuke.stapler.export.CustomExportedBean; @@ -60,5 +58,5 @@ public String toExportedObject() { public static final EditType EDIT = new EditType("edit", "The file was modified"); public static final EditType DELETE = new EditType("delete", "The file was removed"); - public static final List ALL = Collections.unmodifiableList(Arrays.asList(ADD, EDIT, DELETE)); + public static final List ALL = List.of(ADD, EDIT, DELETE); } diff --git a/core/src/main/java/hudson/scm/EmptyChangeLogSet.java b/core/src/main/java/hudson/scm/EmptyChangeLogSet.java index 2f5ffdcbff8b..bae8ebd882f0 100644 --- a/core/src/main/java/hudson/scm/EmptyChangeLogSet.java +++ b/core/src/main/java/hudson/scm/EmptyChangeLogSet.java @@ -13,7 +13,7 @@ */ final class EmptyChangeLogSet extends ChangeLogSet { /*package*/ EmptyChangeLogSet(Run build) { - super(build, new RepositoryBrowser() { + super(build, new RepositoryBrowser<>() { @Override public URL getChangeSetLink(ChangeLogSet.Entry changeSet) throws IOException { return null; } diff --git a/core/src/main/java/hudson/scm/NullSCM.java b/core/src/main/java/hudson/scm/NullSCM.java index 8d7781688655..3485be05347d 100644 --- a/core/src/main/java/hudson/scm/NullSCM.java +++ b/core/src/main/java/hudson/scm/NullSCM.java @@ -24,6 +24,7 @@ package hudson.scm; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.FilePath; import hudson.Launcher; @@ -69,6 +70,7 @@ public DescriptorImpl() { super(null); } + @NonNull @Override public String getDisplayName() { return Messages.NullSCM_DisplayName(); } diff --git a/core/src/main/java/hudson/search/Search.java b/core/src/main/java/hudson/search/Search.java index 56ab11def761..6c708db7685a 100644 --- a/core/src/main/java/hudson/search/Search.java +++ b/core/src/main/java/hudson/search/Search.java @@ -361,7 +361,7 @@ static final class TokenList { * (both end inclusive.) */ public List subSequence(final int start) { - return new AbstractList() { + return new AbstractList<>() { @Override public String get(int index) { StringBuilder buf = new StringBuilder(); diff --git a/core/src/main/java/hudson/search/UserSearchProperty.java b/core/src/main/java/hudson/search/UserSearchProperty.java index 50813ce3c79b..7e9836944c0b 100644 --- a/core/src/main/java/hudson/search/UserSearchProperty.java +++ b/core/src/main/java/hudson/search/UserSearchProperty.java @@ -1,5 +1,6 @@ package hudson.search; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.model.User; import hudson.model.UserProperty; @@ -37,6 +38,7 @@ public static boolean isCaseInsensitive() { @Extension @Symbol("search") public static final class DescriptorImpl extends UserPropertyDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.UserSearchProperty_DisplayName(); diff --git a/core/src/main/java/hudson/security/AuthorizationStrategy.java b/core/src/main/java/hudson/security/AuthorizationStrategy.java index e1ce1596b74a..f77385829730 100644 --- a/core/src/main/java/hudson/security/AuthorizationStrategy.java +++ b/core/src/main/java/hudson/security/AuthorizationStrategy.java @@ -234,6 +234,7 @@ private Object readResolve() { @Extension @Symbol("unsecured") public static final class DescriptorImpl extends Descriptor { + @NonNull @Override public String getDisplayName() { return Messages.AuthorizationStrategy_DisplayName(); diff --git a/core/src/main/java/hudson/security/BasicAuthenticationFilter.java b/core/src/main/java/hudson/security/BasicAuthenticationFilter.java index dd29dc3004fe..b2a06024278b 100644 --- a/core/src/main/java/hudson/security/BasicAuthenticationFilter.java +++ b/core/src/main/java/hudson/security/BasicAuthenticationFilter.java @@ -29,6 +29,7 @@ import hudson.util.Scrambler; import java.io.IOException; import java.net.URLEncoder; +import java.nio.charset.StandardCharsets; import javax.servlet.Filter; import javax.servlet.FilterChain; import javax.servlet.FilterConfig; @@ -168,7 +169,7 @@ public void doFilter(ServletRequest request, ServletResponse response, FilterCha // ... but first let the container authenticate this request RequestDispatcher d = servletContext.getRequestDispatcher("/j_security_check?j_username=" + - URLEncoder.encode(username, "UTF-8") + "&j_password=" + URLEncoder.encode(password, "UTF-8")); + URLEncoder.encode(username, StandardCharsets.UTF_8) + "&j_password=" + URLEncoder.encode(password, StandardCharsets.UTF_8)); d.include(req, rsp); } diff --git a/core/src/main/java/hudson/security/FullControlOnceLoggedInAuthorizationStrategy.java b/core/src/main/java/hudson/security/FullControlOnceLoggedInAuthorizationStrategy.java index 7dbb0ab67021..1ff59f295569 100644 --- a/core/src/main/java/hudson/security/FullControlOnceLoggedInAuthorizationStrategy.java +++ b/core/src/main/java/hudson/security/FullControlOnceLoggedInAuthorizationStrategy.java @@ -24,6 +24,7 @@ package hudson.security; +import edu.umd.cs.findbugs.annotations.NonNull; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import hudson.Extension; import hudson.model.Descriptor; @@ -103,6 +104,7 @@ public DescriptorImpl() { DESCRIPTOR = this; } + @NonNull @Override public String getDisplayName() { return Messages.FullControlOnceLoggedInAuthorizationStrategy_DisplayName(); diff --git a/core/src/main/java/hudson/security/GlobalSecurityConfiguration.java b/core/src/main/java/hudson/security/GlobalSecurityConfiguration.java index 84f6b52e1e8a..9af94aaa70a8 100644 --- a/core/src/main/java/hudson/security/GlobalSecurityConfiguration.java +++ b/core/src/main/java/hudson/security/GlobalSecurityConfiguration.java @@ -218,6 +218,7 @@ public Descriptor getDescriptor() { @Extension @Symbol("security") public static final class DescriptorImpl extends Descriptor { + @NonNull @Override public String getDisplayName() { return Messages.GlobalSecurityConfiguration_DisplayName(); diff --git a/core/src/main/java/hudson/security/HudsonAuthenticationEntryPoint.java b/core/src/main/java/hudson/security/HudsonAuthenticationEntryPoint.java index c81c642650ff..d87b38cbc0ea 100644 --- a/core/src/main/java/hudson/security/HudsonAuthenticationEntryPoint.java +++ b/core/src/main/java/hudson/security/HudsonAuthenticationEntryPoint.java @@ -82,7 +82,7 @@ public void commence(HttpServletRequest req, HttpServletResponse rsp, Authentica String uriFrom = req.getRequestURI(); if (req.getQueryString() != null && !req.getQueryString().isEmpty()) uriFrom += "?" + req.getQueryString(); String loginForm = req.getContextPath() + loginFormUrl; - loginForm = MessageFormat.format(loginForm, URLEncoder.encode(uriFrom, "UTF-8")); + loginForm = MessageFormat.format(loginForm, URLEncoder.encode(uriFrom, StandardCharsets.UTF_8)); req.setAttribute("loginForm", loginForm); rsp.setStatus(SC_FORBIDDEN); diff --git a/core/src/main/java/hudson/security/HudsonPrivateSecurityRealm.java b/core/src/main/java/hudson/security/HudsonPrivateSecurityRealm.java index 0ecb21f981f3..d25b01c02035 100644 --- a/core/src/main/java/hudson/security/HudsonPrivateSecurityRealm.java +++ b/core/src/main/java/hudson/security/HudsonPrivateSecurityRealm.java @@ -55,6 +55,8 @@ import java.util.Collections; import java.util.HashMap; import java.util.List; +import java.util.Random; +import java.util.Set; import java.util.logging.Logger; import java.util.regex.Matcher; import java.util.regex.Pattern; @@ -205,7 +207,14 @@ public Details load(String username) throws UsernameNotFoundException { @Override protected UserDetails authenticate2(String username, String password) throws AuthenticationException { - Details u = load(username); + Details u; + try { + u = load(username); + } catch (UsernameNotFoundException ex) { + // Waste time to prevent timing attacks distinguishing existing and non-existing user + PASSWORD_ENCODER.matches(password, ENCODED_INVALID_USER_PASSWORD); + throw ex; + } if (!u.isPasswordCorrect(password)) { throw new BadCredentialsException("Bad credentials"); } @@ -578,7 +587,7 @@ public User getUser(String id) { } // TODO - private static final Collection TEST_AUTHORITY = Collections.singleton(AUTHENTICATED_AUTHORITY2); + private static final Collection TEST_AUTHORITY = Set.of(AUTHENTICATED_AUTHORITY2); public static final class SignupInfo { public String username, password1, password2, fullname, email, captcha; @@ -769,6 +778,7 @@ public static class ConverterImpl extends XStream2.PassthruConverter

{ @Extension @Symbol("password") public static final class DescriptorImpl extends UserPropertyDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.HudsonPrivateSecurityRealm_Details_DisplayName(); @@ -898,7 +908,7 @@ public boolean matches(CharSequence rawPassword, String encodedPassword) { /** * Returns true if the supplied hash looks like a bcrypt encoded hash value, based off of the - * implementation defined in jBCrypt and: https://en.wikipedia.org/wiki/Bcrypt. + * implementation defined in jBCrypt and the Wikipedia page. * */ public boolean isHashValid(String hash) { @@ -962,8 +972,22 @@ public boolean isPasswordHashed(String password) { public static final MultiPasswordEncoder PASSWORD_ENCODER = new MultiPasswordEncoder(); + /** + * This value is used to prevent timing discrepancies when trying to authenticate with an invalid username + * compared to just a wrong password. If the user doesn't exist, compare the provided password with this value. + */ + private static final String ENCODED_INVALID_USER_PASSWORD = PASSWORD_ENCODER.encode(generatePassword()); + + @SuppressFBWarnings(value = {"DMI_RANDOM_USED_ONLY_ONCE", "PREDICTABLE_RANDOM"}, justification = "https://github.com/spotbugs/spotbugs/issues/1539 and doesn't need to be secure, we're just not hardcoding a 'wrong' password") + private static String generatePassword() { + String password = new Random().ints(20, 33, 127).mapToObj(i -> (char) i) + .collect(StringBuilder::new, StringBuilder::appendCodePoint, StringBuilder::append).toString(); + return password; + } + @Extension @Symbol("local") public static final class DescriptorImpl extends Descriptor { + @NonNull @Override public String getDisplayName() { return Messages.HudsonPrivateSecurityRealm_DisplayName(); diff --git a/core/src/main/java/hudson/security/LegacyAuthorizationStrategy.java b/core/src/main/java/hudson/security/LegacyAuthorizationStrategy.java index fc4f613bd9ba..39144b65b291 100644 --- a/core/src/main/java/hudson/security/LegacyAuthorizationStrategy.java +++ b/core/src/main/java/hudson/security/LegacyAuthorizationStrategy.java @@ -24,10 +24,11 @@ package hudson.security; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.model.Descriptor; import java.util.Collection; -import java.util.Collections; +import java.util.Set; import jenkins.model.Jenkins; import org.acegisecurity.acls.sid.GrantedAuthoritySid; import org.jenkinsci.Symbol; @@ -54,11 +55,12 @@ public ACL getRootACL() { @Override public Collection getGroups() { - return Collections.singleton("admin"); + return Set.of("admin"); } @Extension @Symbol("legacy") public static final class DescriptorImpl extends Descriptor { + @NonNull @Override public String getDisplayName() { return Messages.LegacyAuthorizationStrategy_DisplayName(); diff --git a/core/src/main/java/hudson/security/LegacySecurityRealm.java b/core/src/main/java/hudson/security/LegacySecurityRealm.java index 91ea25f31428..1e869475caf2 100644 --- a/core/src/main/java/hudson/security/LegacySecurityRealm.java +++ b/core/src/main/java/hudson/security/LegacySecurityRealm.java @@ -24,6 +24,7 @@ package hudson.security; +import edu.umd.cs.findbugs.annotations.NonNull; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import hudson.Extension; import hudson.model.Descriptor; @@ -106,6 +107,7 @@ public DescriptorImpl() { DESCRIPTOR = this; } + @NonNull @Override public String getDisplayName() { return Messages.LegacySecurityRealm_Displayname(); diff --git a/core/src/main/java/hudson/security/Permission.java b/core/src/main/java/hudson/security/Permission.java index 088266ae360f..05d68d10ba62 100644 --- a/core/src/main/java/hudson/security/Permission.java +++ b/core/src/main/java/hudson/security/Permission.java @@ -27,10 +27,8 @@ import edu.umd.cs.findbugs.annotations.CheckForNull; import edu.umd.cs.findbugs.annotations.NonNull; import hudson.model.Hudson; -import java.util.Arrays; import java.util.Collections; import java.util.Comparator; -import java.util.HashSet; import java.util.List; import java.util.Set; import java.util.concurrent.CopyOnWriteArrayList; @@ -150,7 +148,7 @@ public Permission(@NonNull PermissionGroup group, @NonNull String name, this.description = description; this.impliedBy = impliedBy; this.enabled = enable; - this.scopes = Collections.unmodifiableSet(new HashSet<>(Arrays.asList(scopes))); + this.scopes = Set.of(scopes); this.id = owner.getName() + '.' + name; group.add(this); diff --git a/core/src/main/java/hudson/security/PermissionScope.java b/core/src/main/java/hudson/security/PermissionScope.java index 126d158cad07..60eae23ea99b 100644 --- a/core/src/main/java/hudson/security/PermissionScope.java +++ b/core/src/main/java/hudson/security/PermissionScope.java @@ -32,9 +32,6 @@ import hudson.model.ModelObject; import hudson.model.Node; import hudson.model.Run; -import java.util.Arrays; -import java.util.Collections; -import java.util.HashSet; import java.util.Set; import jenkins.model.Jenkins; @@ -71,7 +68,7 @@ public final class PermissionScope { public PermissionScope(Class modelClass, PermissionScope... containers) { this.modelClass = modelClass; - this.containers = Collections.unmodifiableSet(new HashSet<>(Arrays.asList(containers))); + this.containers = Set.of(containers); } /** diff --git a/core/src/main/java/hudson/security/SecurityRealm.java b/core/src/main/java/hudson/security/SecurityRealm.java index b959d2d1bbb3..ca62a4d3fe0e 100644 --- a/core/src/main/java/hudson/security/SecurityRealm.java +++ b/core/src/main/java/hudson/security/SecurityRealm.java @@ -24,6 +24,7 @@ package hudson.security; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.DescriptorExtensionList; import hudson.Extension; import hudson.ExtensionPoint; @@ -36,11 +37,10 @@ import hudson.util.DescriptorList; import hudson.util.PluginServletFilter; import java.io.IOException; -import java.io.UnsupportedEncodingException; import java.net.URLEncoder; +import java.nio.charset.StandardCharsets; import java.util.ArrayList; import java.util.Arrays; -import java.util.Collections; import java.util.List; import java.util.logging.Level; import java.util.logging.Logger; @@ -616,7 +616,7 @@ public Filter createFilter(FilterConfig filterConfig) { protected final List commonFilters() { // like Jenkins.ANONYMOUS: - AnonymousAuthenticationFilter apf = new AnonymousAuthenticationFilter("anonymous", "anonymous", Collections.singletonList(new SimpleGrantedAuthority("anonymous"))); + AnonymousAuthenticationFilter apf = new AnonymousAuthenticationFilter("anonymous", "anonymous", List.of(new SimpleGrantedAuthority("anonymous"))); ExceptionTranslationFilter etf = new ExceptionTranslationFilter(new HudsonAuthenticationEntryPoint("/" + getLoginUrl() + "?from={0}")); etf.setAccessDeniedHandler(new AccessDeniedHandlerImpl()); UnwrapSecurityExceptionFilter usef = new UnwrapSecurityExceptionFilter(); @@ -639,7 +639,7 @@ protected final List commonFilters() { */ @Restricted(DoNotUse.class) public static String getFrom() { - String from = null, returnValue = null; + String from = null; final StaplerRequest request = Stapler.getCurrentRequest(); // Try to obtain a return point from the query parameter @@ -663,9 +663,7 @@ public static String getFrom() { from = StringUtils.defaultIfBlank(from, "/").trim(); // Encode the return value - try { - returnValue = URLEncoder.encode(from, "UTF-8"); - } catch (UnsupportedEncodingException e) { } + String returnValue = URLEncoder.encode(from, StandardCharsets.UTF_8); // Return encoded value or at least "/" in the case exception occurred during encode() // or if the encoded content is blank value @@ -715,6 +713,7 @@ private Object readResolve() { @Symbol("none") public static class DescriptorImpl extends Descriptor { + @NonNull @Override public String getDisplayName() { return Messages.NoneSecurityRealm_DisplayName(); diff --git a/core/src/main/java/hudson/security/WhoAmI.java b/core/src/main/java/hudson/security/WhoAmI.java index 784cef76f1b8..9bde9c17e5af 100644 --- a/core/src/main/java/hudson/security/WhoAmI.java +++ b/core/src/main/java/hudson/security/WhoAmI.java @@ -6,9 +6,6 @@ import hudson.model.Api; import hudson.model.UnprotectedRootAction; import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collections; -import java.util.HashSet; import java.util.List; import java.util.Locale; import java.util.Set; @@ -31,11 +28,11 @@ @Extension @Symbol("whoAmI") @ExportedBean public class WhoAmI implements UnprotectedRootAction { - private static final Set dangerousHeaders = Collections.unmodifiableSet(new HashSet<>(Arrays.asList( + private static final Set dangerousHeaders = Set.of( "cookie", // https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers#Authentication "authorization", "www-authenticate", "proxy-authenticate", "proxy-authorization" - ))); + ); public Api getApi() { return new Api(this); diff --git a/core/src/main/java/hudson/security/csrf/DefaultCrumbIssuer.java b/core/src/main/java/hudson/security/csrf/DefaultCrumbIssuer.java index 3cb8c3eace10..89c7da39e7b4 100644 --- a/core/src/main/java/hudson/security/csrf/DefaultCrumbIssuer.java +++ b/core/src/main/java/hudson/security/csrf/DefaultCrumbIssuer.java @@ -6,6 +6,7 @@ package hudson.security.csrf; +import edu.umd.cs.findbugs.annotations.NonNull; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import hudson.Extension; import hudson.Util; @@ -127,6 +128,7 @@ public DescriptorImpl() { super(CRUMB_SALT.get(), SystemProperties.getString("hudson.security.csrf.requestfield", CrumbIssuer.DEFAULT_CRUMB_NAME)); } + @NonNull @Override public String getDisplayName() { return Messages.DefaultCrumbIssuer_DisplayName(); diff --git a/core/src/main/java/hudson/slaves/EnvironmentVariablesNodeProperty.java b/core/src/main/java/hudson/slaves/EnvironmentVariablesNodeProperty.java index 65d84f6426b6..be50bc982062 100644 --- a/core/src/main/java/hudson/slaves/EnvironmentVariablesNodeProperty.java +++ b/core/src/main/java/hudson/slaves/EnvironmentVariablesNodeProperty.java @@ -24,6 +24,7 @@ package hudson.slaves; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.EnvVars; import hudson.Extension; import hudson.Launcher; @@ -89,6 +90,7 @@ public void buildEnvVars(EnvVars env, TaskListener listener) throws IOException, @Extension @Symbol("envVars") public static class DescriptorImpl extends NodePropertyDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.EnvironmentVariablesNodeProperty_displayName(); diff --git a/core/src/main/java/hudson/slaves/JNLPLauncher.java b/core/src/main/java/hudson/slaves/JNLPLauncher.java index 1098769b8146..e8c456a95929 100644 --- a/core/src/main/java/hudson/slaves/JNLPLauncher.java +++ b/core/src/main/java/hudson/slaves/JNLPLauncher.java @@ -34,6 +34,7 @@ import hudson.model.TaskListener; import hudson.util.FormValidation; import jenkins.model.Jenkins; +import jenkins.model.identity.InstanceIdentityProvider; import jenkins.slaves.RemotingWorkDirSettings; import jenkins.util.SystemProperties; import jenkins.websocket.WebSockets; @@ -251,6 +252,9 @@ public FormValidation doCheckWebSocket(@QueryParameter boolean webSocket, @Query if (Jenkins.get().getTcpSlaveAgentListener() == null) { return FormValidation.error("Either WebSocket mode is selected, or the TCP port for inbound agents must be enabled"); } + if (InstanceIdentityProvider.RSA.getCertificate() == null || InstanceIdentityProvider.RSA.getPrivateKey() == null) { + return FormValidation.error("You must install the instance-identity plugin to use inbound agents in TCP mode"); + } } return FormValidation.ok(); } diff --git a/core/src/main/java/hudson/slaves/NodeProvisioner.java b/core/src/main/java/hudson/slaves/NodeProvisioner.java index 87a0d7d45c1a..d1a6a10612da 100644 --- a/core/src/main/java/hudson/slaves/NodeProvisioner.java +++ b/core/src/main/java/hudson/slaves/NodeProvisioner.java @@ -45,7 +45,6 @@ import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; -import java.util.Collections; import java.util.Iterator; import java.util.List; import java.util.concurrent.ExecutionException; @@ -319,7 +318,7 @@ private void update() { if (provisioningState != null) { List strategies = Jenkins.get().getExtensionList(Strategy.class); for (Strategy strategy : strategies.isEmpty() - ? Collections.singletonList(new StandardStrategyImpl()) + ? List.of(new StandardStrategyImpl()) : strategies) { LOGGER.log(Level.FINER, "Consulting {0} provisioning strategy with state {1}", new Object[]{strategy, provisioningState}); diff --git a/core/src/main/java/hudson/slaves/RetentionStrategy.java b/core/src/main/java/hudson/slaves/RetentionStrategy.java index 34da53d05806..e06b8e42c069 100644 --- a/core/src/main/java/hudson/slaves/RetentionStrategy.java +++ b/core/src/main/java/hudson/slaves/RetentionStrategy.java @@ -176,6 +176,7 @@ public long check(SlaveComputer c) { @Extension(ordinal = 100) @Symbol("always") public static class DescriptorImpl extends Descriptor> { + @NonNull @Override public String getDisplayName() { return Messages.RetentionStrategy_Always_displayName(); @@ -289,6 +290,7 @@ public long check(final SlaveComputer c) { @Extension @Symbol("demand") public static class DescriptorImpl extends Descriptor> { + @NonNull @Override public String getDisplayName() { return Messages.RetentionStrategy_Demand_displayName(); diff --git a/core/src/main/java/hudson/slaves/SimpleScheduledRetentionStrategy.java b/core/src/main/java/hudson/slaves/SimpleScheduledRetentionStrategy.java index efb0df51b3ba..adabf6e07dc3 100644 --- a/core/src/main/java/hudson/slaves/SimpleScheduledRetentionStrategy.java +++ b/core/src/main/java/hudson/slaves/SimpleScheduledRetentionStrategy.java @@ -28,6 +28,7 @@ import static java.util.logging.Level.INFO; import antlr.ANTLRException; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.model.Computer; import hudson.model.Descriptor; @@ -248,6 +249,7 @@ private synchronized boolean isOnlineScheduled() { @Extension @Symbol("schedule") public static class DescriptorImpl extends Descriptor> { + @NonNull @Override public String getDisplayName() { return Messages.SimpleScheduledRetentionStrategy_displayName(); diff --git a/core/src/main/java/hudson/slaves/SlaveComputer.java b/core/src/main/java/hudson/slaves/SlaveComputer.java index a2e7d9195822..0f8b9255357b 100644 --- a/core/src/main/java/hudson/slaves/SlaveComputer.java +++ b/core/src/main/java/hudson/slaves/SlaveComputer.java @@ -921,7 +921,7 @@ private void closeChannel() { if (c != null) { try { c.close(); - } catch (IOException e) { + } catch (Exception e) { logger.log(Level.SEVERE, "Failed to terminate channel to " + getDisplayName(), e); } Listeners.notify(ComputerListener.class, true, l -> l.onOffline(this, offlineCause)); diff --git a/core/src/main/java/hudson/tasks/ArtifactArchiver.java b/core/src/main/java/hudson/tasks/ArtifactArchiver.java index 44702bf64dc9..ffeefda8afe7 100644 --- a/core/src/main/java/hudson/tasks/ArtifactArchiver.java +++ b/core/src/main/java/hudson/tasks/ArtifactArchiver.java @@ -347,6 +347,7 @@ public DescriptorImpl() { DESCRIPTOR = this; // backward compatibility } + @NonNull @Override public String getDisplayName() { return Messages.ArtifactArchiver_DisplayName(); diff --git a/core/src/main/java/hudson/tasks/BatchFile.java b/core/src/main/java/hudson/tasks/BatchFile.java index 2d1b2e4cc7c1..38cd9841a78d 100644 --- a/core/src/main/java/hudson/tasks/BatchFile.java +++ b/core/src/main/java/hudson/tasks/BatchFile.java @@ -25,6 +25,7 @@ package hudson.tasks; import edu.umd.cs.findbugs.annotations.CheckForNull; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.FilePath; import hudson.Util; @@ -113,6 +114,7 @@ public String getHelpFile() { return "/help/project-config/batch.html"; } + @NonNull @Override public String getDisplayName() { return Messages.BatchFile_DisplayName(); diff --git a/core/src/main/java/hudson/tasks/BuildStepCompatibilityLayer.java b/core/src/main/java/hudson/tasks/BuildStepCompatibilityLayer.java index 5feacaf28db5..e71e244a11f0 100644 --- a/core/src/main/java/hudson/tasks/BuildStepCompatibilityLayer.java +++ b/core/src/main/java/hudson/tasks/BuildStepCompatibilityLayer.java @@ -40,6 +40,7 @@ import java.io.IOException; import java.util.Collection; import java.util.Collections; +import java.util.List; import jenkins.tasks.SimpleBuildStep; /** @@ -103,7 +104,7 @@ public Collection getProjectActions(AbstractProject proj // delegate to getJobAction (singular) for backward compatible behavior Action a = getProjectAction(project); if (a == null) return Collections.emptyList(); - return Collections.singletonList(a); + return List.of(a); } diff --git a/core/src/main/java/hudson/tasks/BuildTrigger.java b/core/src/main/java/hudson/tasks/BuildTrigger.java index 08c3a147f8d7..f6f17dab490c 100644 --- a/core/src/main/java/hudson/tasks/BuildTrigger.java +++ b/core/src/main/java/hudson/tasks/BuildTrigger.java @@ -278,7 +278,7 @@ public static boolean execute(AbstractBuild build, BuildListener listener) { List downstreamProjects = new ArrayList<>( graph.getDownstreamDependencies(build.getProject())); // Sort topologically - downstreamProjects.sort(new Comparator() { + downstreamProjects.sort(new Comparator<>() { @Override public int compare(Dependency lhs, Dependency rhs) { // Swapping lhs/rhs to get reverse sort: diff --git a/core/src/main/java/hudson/tasks/BuildWrapper.java b/core/src/main/java/hudson/tasks/BuildWrapper.java index e6fc50da73f3..c4b7aa86a2d0 100644 --- a/core/src/main/java/hudson/tasks/BuildWrapper.java +++ b/core/src/main/java/hudson/tasks/BuildWrapper.java @@ -44,6 +44,7 @@ import java.io.OutputStream; import java.util.Collection; import java.util.Collections; +import java.util.List; import java.util.Map; import java.util.Set; import jenkins.model.Jenkins; @@ -291,7 +292,7 @@ public Collection getProjectActions(AbstractProject job) { // delegate to getJobAction (singular) for backward compatible behavior Action a = getProjectAction(job); if (a == null) return Collections.emptyList(); - return Collections.singletonList(a); + return List.of(a); } /** diff --git a/core/src/main/java/hudson/tasks/Fingerprinter.java b/core/src/main/java/hudson/tasks/Fingerprinter.java index 0a683fb13c45..3be7631bb1f0 100644 --- a/core/src/main/java/hudson/tasks/Fingerprinter.java +++ b/core/src/main/java/hudson/tasks/Fingerprinter.java @@ -24,6 +24,7 @@ package hudson.tasks; +import edu.umd.cs.findbugs.annotations.NonNull; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import hudson.EnvVars; import hudson.Extension; @@ -331,6 +332,7 @@ private void record(Run build, FilePath ws, TaskListener listener, Map { + @NonNull @Override public String getDisplayName() { return Messages.Fingerprinter_DisplayName(); diff --git a/core/src/main/java/hudson/tasks/LogRotator.java b/core/src/main/java/hudson/tasks/LogRotator.java index f3d0f0d630c8..3d5f3975808a 100644 --- a/core/src/main/java/hudson/tasks/LogRotator.java +++ b/core/src/main/java/hudson/tasks/LogRotator.java @@ -28,6 +28,7 @@ import static java.util.logging.Level.FINE; import static java.util.logging.Level.FINER; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.model.Job; import hudson.model.Run; @@ -296,6 +297,7 @@ private String toString(Integer i) { @Extension @Symbol("logRotator") public static final class LRDescriptor extends BuildDiscarderDescriptor { + @NonNull @Override public String getDisplayName() { return "Log Rotation"; diff --git a/core/src/main/java/hudson/tasks/Maven.java b/core/src/main/java/hudson/tasks/Maven.java index 4c059b78f1b4..404c21410d6f 100644 --- a/core/src/main/java/hudson/tasks/Maven.java +++ b/core/src/main/java/hudson/tasks/Maven.java @@ -446,6 +446,7 @@ public String getHelpFile(String fieldName) { return super.getHelpFile(fieldName); } + @NonNull @Override public String getDisplayName() { return Messages.Maven_DisplayName(); @@ -684,6 +685,7 @@ public MavenInstallation forNode(Node node, TaskListener log) throws IOException @Extension @Symbol("maven") public static class DescriptorImpl extends ToolDescriptor { + @NonNull @Override public String getDisplayName() { return "Maven"; @@ -691,7 +693,7 @@ public String getDisplayName() { @Override public List getDefaultInstallers() { - return Collections.singletonList(new MavenInstaller(null)); + return List.of(new MavenInstaller(null)); } // overriding them for backward compatibility. @@ -764,6 +766,7 @@ public MavenInstaller(String id) { @Extension @Symbol("maven") public static final class DescriptorImpl extends DownloadFromUrlInstaller.DescriptorImpl { + @NonNull @Override public String getDisplayName() { return Messages.InstallFromApache(); diff --git a/core/src/main/java/hudson/tasks/_maven/Maven3MojoNote.java b/core/src/main/java/hudson/tasks/_maven/Maven3MojoNote.java index 3bca8127be68..f43f96cb783d 100644 --- a/core/src/main/java/hudson/tasks/_maven/Maven3MojoNote.java +++ b/core/src/main/java/hudson/tasks/_maven/Maven3MojoNote.java @@ -24,6 +24,7 @@ package hudson.tasks._maven; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.MarkupText; import hudson.console.ConsoleAnnotationDescriptor; @@ -60,6 +61,7 @@ public ConsoleAnnotator annotate(Object context, MarkupText text, int charPos) { @Extension @Symbol("maven3Mojos") public static final class DescriptorImpl extends ConsoleAnnotationDescriptor { + @NonNull @Override public String getDisplayName() { return "Maven 3 Mojos"; diff --git a/core/src/main/java/hudson/tasks/_maven/MavenErrorNote.java b/core/src/main/java/hudson/tasks/_maven/MavenErrorNote.java index ec7a231403f6..467b3884ac8e 100644 --- a/core/src/main/java/hudson/tasks/_maven/MavenErrorNote.java +++ b/core/src/main/java/hudson/tasks/_maven/MavenErrorNote.java @@ -24,6 +24,7 @@ package hudson.tasks._maven; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.MarkupText; import hudson.console.ConsoleAnnotationDescriptor; @@ -47,6 +48,7 @@ public ConsoleAnnotator annotate(Object context, MarkupText text, int charPos) { @Extension @Symbol("mavenErrors") public static final class DescriptorImpl extends ConsoleAnnotationDescriptor { + @NonNull @Override public String getDisplayName() { return "Maven Errors"; diff --git a/core/src/main/java/hudson/tasks/_maven/MavenMojoNote.java b/core/src/main/java/hudson/tasks/_maven/MavenMojoNote.java index 581cb8d22b21..184fda189bb5 100644 --- a/core/src/main/java/hudson/tasks/_maven/MavenMojoNote.java +++ b/core/src/main/java/hudson/tasks/_maven/MavenMojoNote.java @@ -24,6 +24,7 @@ package hudson.tasks._maven; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.MarkupText; import hudson.console.ConsoleAnnotationDescriptor; @@ -52,6 +53,7 @@ public ConsoleAnnotator annotate(Object context, MarkupText text, int charPos) { @Extension @Symbol("mavenMojos") public static final class DescriptorImpl extends ConsoleAnnotationDescriptor { + @NonNull @Override public String getDisplayName() { return "Maven Mojos"; diff --git a/core/src/main/java/hudson/tasks/_maven/MavenWarningNote.java b/core/src/main/java/hudson/tasks/_maven/MavenWarningNote.java index f6eaa933461d..6d894a556b57 100644 --- a/core/src/main/java/hudson/tasks/_maven/MavenWarningNote.java +++ b/core/src/main/java/hudson/tasks/_maven/MavenWarningNote.java @@ -24,6 +24,7 @@ package hudson.tasks._maven; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.MarkupText; import hudson.console.ConsoleAnnotationDescriptor; @@ -49,6 +50,7 @@ public ConsoleAnnotator annotate(Object context, MarkupText text, int charPos) { @Extension @Symbol("mavenWarnings") public static final class DescriptorImpl extends ConsoleAnnotationDescriptor { + @NonNull @Override public String getDisplayName() { return "Maven Warnings"; diff --git a/core/src/main/java/hudson/tools/BatchCommandInstaller.java b/core/src/main/java/hudson/tools/BatchCommandInstaller.java index 763f20192f16..d2e9275b1d61 100644 --- a/core/src/main/java/hudson/tools/BatchCommandInstaller.java +++ b/core/src/main/java/hudson/tools/BatchCommandInstaller.java @@ -24,6 +24,7 @@ package hudson.tools; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.FilePath; import hudson.util.LineEndingConversion; @@ -60,6 +61,7 @@ private Object readResolve() throws ObjectStreamException { @Extension @Symbol("batchFile") public static class DescriptorImpl extends Descriptor { + @NonNull @Override public String getDisplayName() { return Messages.BatchCommandInstaller_DescriptorImpl_displayName(); diff --git a/core/src/main/java/hudson/tools/CommandInstaller.java b/core/src/main/java/hudson/tools/CommandInstaller.java index 13e9029a9f52..a3c3e71fc9aa 100644 --- a/core/src/main/java/hudson/tools/CommandInstaller.java +++ b/core/src/main/java/hudson/tools/CommandInstaller.java @@ -24,6 +24,7 @@ package hudson.tools; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.FilePath; import hudson.util.LineEndingConversion; @@ -59,6 +60,7 @@ private Object readResolve() throws ObjectStreamException { @Extension @Symbol("command") public static class DescriptorImpl extends Descriptor { + @NonNull @Override public String getDisplayName() { return Messages.CommandInstaller_DescriptorImpl_displayName(); diff --git a/core/src/main/java/hudson/tools/DownloadFromUrlInstaller.java b/core/src/main/java/hudson/tools/DownloadFromUrlInstaller.java index 8df8f6c491a8..5d7f4c0c024f 100644 --- a/core/src/main/java/hudson/tools/DownloadFromUrlInstaller.java +++ b/core/src/main/java/hudson/tools/DownloadFromUrlInstaller.java @@ -103,7 +103,7 @@ public FilePath performInstallation(ToolInstallation tool, Node node, TaskListen * @param root * The directory that contains the extracted archive. This directory contains nothing but the * extracted archive. For example, if the user installed - * https://archive.apache.org/dist/ant/binaries/jakarta-ant-1.1.zip , this directory would contain + * jakarta-ant-1.1.zip , this directory would contain * a single directory "jakarta-ant". * * @return diff --git a/core/src/main/java/hudson/tools/InstallSourceProperty.java b/core/src/main/java/hudson/tools/InstallSourceProperty.java index 6de1af522318..2e2eaf5a2232 100644 --- a/core/src/main/java/hudson/tools/InstallSourceProperty.java +++ b/core/src/main/java/hudson/tools/InstallSourceProperty.java @@ -24,6 +24,7 @@ package hudson.tools; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.model.Descriptor; import hudson.model.Saveable; @@ -65,6 +66,7 @@ public Class type() { @Extension @Symbol("installSource") public static class DescriptorImpl extends ToolPropertyDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.InstallSourceProperty_DescriptorImpl_displayName(); diff --git a/core/src/main/java/hudson/tools/ToolLocationNodeProperty.java b/core/src/main/java/hudson/tools/ToolLocationNodeProperty.java index 290f1e4e3baa..d6cf27305939 100644 --- a/core/src/main/java/hudson/tools/ToolLocationNodeProperty.java +++ b/core/src/main/java/hudson/tools/ToolLocationNodeProperty.java @@ -24,6 +24,7 @@ package hudson.tools; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.DescriptorExtensionList; import hudson.Extension; import hudson.model.Descriptor; @@ -118,6 +119,7 @@ public static String getToolHome(Node node, ToolInstallation installation, TaskL @Extension @Symbol("toolLocation") public static class DescriptorImpl extends NodePropertyDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.ToolLocationNodeProperty_displayName(); diff --git a/core/src/main/java/hudson/tools/ZipExtractionInstaller.java b/core/src/main/java/hudson/tools/ZipExtractionInstaller.java index b1204bd0da07..a3ded83462f8 100644 --- a/core/src/main/java/hudson/tools/ZipExtractionInstaller.java +++ b/core/src/main/java/hudson/tools/ZipExtractionInstaller.java @@ -24,6 +24,7 @@ package hudson.tools; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.FilePath; import hudson.Functions; @@ -92,6 +93,7 @@ public FilePath performInstallation(ToolInstallation tool, Node node, TaskListen @Extension @Symbol("zip") public static class DescriptorImpl extends ToolInstallerDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.ZipExtractionInstaller_DescriptorImpl_displayName(); diff --git a/core/src/main/java/hudson/triggers/SCMTrigger.java b/core/src/main/java/hudson/triggers/SCMTrigger.java index 0c054c70bd73..a078cde4ff2f 100644 --- a/core/src/main/java/hudson/triggers/SCMTrigger.java +++ b/core/src/main/java/hudson/triggers/SCMTrigger.java @@ -57,6 +57,7 @@ import java.io.OutputStream; import java.io.PrintStream; import java.nio.charset.Charset; +import java.nio.file.Files; import java.text.DateFormat; import java.util.ArrayList; import java.util.Arrays; @@ -79,7 +80,6 @@ import jenkins.triggers.SCMTriggerItem; import jenkins.util.SystemProperties; import net.sf.json.JSONObject; -import org.apache.commons.io.FileUtils; import org.apache.commons.jelly.XMLOutput; import org.apache.commons.lang.StringUtils; import org.jenkinsci.Symbol; @@ -205,7 +205,7 @@ public Collection getProjectActions() { return Collections.emptyList(); } - return Collections.singleton(new SCMAction()); + return Set.of(new SCMAction()); } /** @@ -717,7 +717,7 @@ public static class SCMTriggerCause extends Cause { public SCMTriggerCause(File logFile) throws IOException { // TODO: charset of this log file? - this(FileUtils.readFileToString(logFile)); + this(Files.readString(Util.fileToPath(logFile), Charset.defaultCharset())); } public SCMTriggerCause(String pollingLog) { @@ -743,7 +743,7 @@ public void onAddedTo(Run build) { this.run = build; try { BuildAction a = new BuildAction(build); - FileUtils.writeStringToFile(a.getPollingLogFile(), pollingLog); + Files.writeString(Util.fileToPath(a.getPollingLogFile()), pollingLog, Charset.defaultCharset()); build.replaceAction(a); } catch (IOException e) { LOGGER.log(WARNING, "Failed to persist the polling log", e); diff --git a/core/src/main/java/hudson/triggers/SafeTimerTask.java b/core/src/main/java/hudson/triggers/SafeTimerTask.java index db07c96867df..5a261d0e9a2e 100644 --- a/core/src/main/java/hudson/triggers/SafeTimerTask.java +++ b/core/src/main/java/hudson/triggers/SafeTimerTask.java @@ -24,6 +24,7 @@ package hudson.triggers; +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import hudson.model.AperiodicWork; import hudson.model.AsyncAperiodicWork; import hudson.model.AsyncPeriodicWork; @@ -47,6 +48,7 @@ * @author Kohsuke Kawaguchi * @since 1.124 */ +@SuppressFBWarnings(value = "THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION", justification = "TODO needs triage") public abstract class SafeTimerTask extends TimerTask { /** diff --git a/core/src/main/java/hudson/triggers/Trigger.java b/core/src/main/java/hudson/triggers/Trigger.java index 896143cba390..bbe02fcb8d00 100644 --- a/core/src/main/java/hudson/triggers/Trigger.java +++ b/core/src/main/java/hudson/triggers/Trigger.java @@ -150,7 +150,7 @@ public Collection getProjectActions() { // delegate to getJobAction (singular) for backward compatible behavior Action a = getProjectAction(); if (a == null) return Collections.emptyList(); - return Collections.singletonList(a); + return List.of(a); } @Override diff --git a/core/src/main/java/hudson/util/ArgumentListBuilder.java b/core/src/main/java/hudson/util/ArgumentListBuilder.java index 41de0c6cb519..d75377e919f7 100644 --- a/core/src/main/java/hudson/util/ArgumentListBuilder.java +++ b/core/src/main/java/hudson/util/ArgumentListBuilder.java @@ -248,7 +248,7 @@ public ArgumentListBuilder addKeyValuePairsFromPropertyString(String prefix, Str */ private static VariableResolver propertiesGeneratingResolver(final VariableResolver original) { - return new VariableResolver() { + return new VariableResolver<>() { @Override public String resolve(String name) { diff --git a/core/src/main/java/hudson/util/BootFailure.java b/core/src/main/java/hudson/util/BootFailure.java index 6e96e39e778b..a460ffea148e 100644 --- a/core/src/main/java/hudson/util/BootFailure.java +++ b/core/src/main/java/hudson/util/BootFailure.java @@ -8,7 +8,7 @@ import java.nio.charset.Charset; import java.nio.file.Files; import java.nio.file.InvalidPathException; -import java.text.DateFormat; +import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; import java.util.List; @@ -64,7 +64,8 @@ protected List loadAttempts(File home) { if (f.exists()) { try (BufferedReader failureFileReader = Files.newBufferedReader(f.toPath(), Charset.defaultCharset())) { String line; - DateFormat df = DateFormat.getDateInstance(); + // WebAppMain.recordBootAttempt uses Date.toString when writing, so that is the format we must parse. + SimpleDateFormat df = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy"); while ((line = failureFileReader.readLine()) != null) { try { dates.add(df.parse(line)); diff --git a/core/src/main/java/hudson/util/ChunkedInputStream.java b/core/src/main/java/hudson/util/ChunkedInputStream.java index 865251c2f1ca..cfe61a17fcf1 100644 --- a/core/src/main/java/hudson/util/ChunkedInputStream.java +++ b/core/src/main/java/hudson/util/ChunkedInputStream.java @@ -261,7 +261,7 @@ private static int getChunkSizeFromInputStream(final InputStream in) } //parse data - String dataString = new String(baos.toByteArray(), StandardCharsets.US_ASCII); + String dataString = baos.toString(StandardCharsets.US_ASCII); int separator = dataString.indexOf(';'); dataString = separator > 0 ? dataString.substring(0, separator).trim() diff --git a/core/src/main/java/hudson/util/ClassLoaderSanityThreadFactory.java b/core/src/main/java/hudson/util/ClassLoaderSanityThreadFactory.java index fe05e9ac7c8d..07a503f666aa 100644 --- a/core/src/main/java/hudson/util/ClassLoaderSanityThreadFactory.java +++ b/core/src/main/java/hudson/util/ClassLoaderSanityThreadFactory.java @@ -4,9 +4,9 @@ import java.util.concurrent.TimeUnit; /** - * Explicitly sets the {@link Thread#contextClassLoader} for threads it creates to its own classloader. + * Explicitly sets the {@link Thread#setContextClassLoader} for threads it creates to its own classloader. * This avoids issues where threads are lazily created (ex by invoking {@link java.util.concurrent.ScheduledExecutorService#schedule(Runnable, long, TimeUnit)}) - * in a context where they would receive a customized {@link Thread#contextClassLoader} that was never meant to be used. + * in a context where they would receive a customized {@link Thread#getContextClassLoader} that was never meant to be used. * * Commonly this is a problem for Groovy use, where this may result in memory leaks. * @see JENKINS-49206 diff --git a/core/src/main/java/hudson/util/ColorPalette.java b/core/src/main/java/hudson/util/ColorPalette.java index d3aee355a927..10c22e997c11 100644 --- a/core/src/main/java/hudson/util/ColorPalette.java +++ b/core/src/main/java/hudson/util/ColorPalette.java @@ -26,8 +26,6 @@ import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import java.awt.Color; -import java.util.Arrays; -import java.util.Collections; import java.util.List; import org.jfree.chart.renderer.category.LineAndShapeRenderer; @@ -48,12 +46,12 @@ public class ColorPalette { * Color list usable for generating line charts. */ @SuppressFBWarnings(value = "MS_SHOULD_BE_FINAL", justification = "used in several plugins") - public static List LINE_GRAPH = Collections.unmodifiableList(Arrays.asList( + public static List LINE_GRAPH = List.of( new Color(0xCC0000), new Color(0x3465a4), new Color(0x73d216), new Color(0xedd400) - )); + ); /** * Applies {@link #LINE_GRAPH} colors to the given renderer. diff --git a/core/src/main/java/hudson/util/ConsistentHash.java b/core/src/main/java/hudson/util/ConsistentHash.java index 243f19670936..25ddc3b7515b 100644 --- a/core/src/main/java/hudson/util/ConsistentHash.java +++ b/core/src/main/java/hudson/util/ConsistentHash.java @@ -54,8 +54,8 @@ * as increase/decrease of the replicas. * *

- * See http://en.wikipedia.org/wiki/Consistent_hashing for references, and - * http://tom-e-white.com/2007/11/consistent-hashing.html is probably a reasonable depiction. + * See the Wikipedia page for references, and + * this blog post is probably a reasonable depiction. * If we trust his experiments, creating 100 replicas will reduce the stddev to 10% of the mean for 10 nodes. * * @author Kohsuke Kawaguchi @@ -145,7 +145,7 @@ T lookup(int queryPoint) { */ Iterator list(int queryPoint) { final int start = index(queryPoint); - return new DuplicateFilterIterator<>(new Iterator() { + return new DuplicateFilterIterator<>(new Iterator<>() { int pos = 0; @Override diff --git a/core/src/main/java/hudson/util/CopyOnWriteList.java b/core/src/main/java/hudson/util/CopyOnWriteList.java index b9eaad8c86fc..77bc05b4bf12 100644 --- a/core/src/main/java/hudson/util/CopyOnWriteList.java +++ b/core/src/main/java/hudson/util/CopyOnWriteList.java @@ -96,8 +96,9 @@ public synchronized boolean remove(E e) { @Override public Iterator iterator() { final Iterator itr = core.iterator(); - return new Iterator() { + return new Iterator<>() { private E last; + @Override public boolean hasNext() { return itr.hasNext(); diff --git a/core/src/main/java/hudson/util/DoubleLaunchChecker.java b/core/src/main/java/hudson/util/DoubleLaunchChecker.java index f42004a1d670..d541452ca141 100644 --- a/core/src/main/java/hudson/util/DoubleLaunchChecker.java +++ b/core/src/main/java/hudson/util/DoubleLaunchChecker.java @@ -28,22 +28,20 @@ import static javax.servlet.http.HttpServletResponse.SC_INTERNAL_SERVER_ERROR; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; +import hudson.Util; import hudson.init.Initializer; import hudson.triggers.SafeTimerTask; import java.io.File; import java.io.IOException; -import java.lang.management.ManagementFactory; -import java.lang.reflect.Method; import java.nio.charset.Charset; +import java.nio.file.Files; import java.util.Random; import java.util.concurrent.TimeUnit; import java.util.logging.Level; import java.util.logging.Logger; -import javax.servlet.ServletContext; import javax.servlet.ServletException; import jenkins.model.Jenkins; import jenkins.util.Timer; -import org.apache.commons.io.FileUtils; import org.kohsuke.stapler.StaplerRequest; import org.kohsuke.stapler.StaplerResponse; import org.kohsuke.stapler.interceptor.RequirePOST; @@ -62,10 +60,6 @@ * this file. In this way, while we cannot detect the problem right away, within a reasonable time frame * we can detect the collision. * - *

- * More traditional way of doing this is to use a lock file with PID in it, but unfortunately in Java, - * there's no reliable way to obtain PID. - * * @author Kohsuke Kawaguchi * @since 1.178 */ @@ -103,19 +97,20 @@ protected void execute() { long t = timestampFile.lastModified(); if (t != 0 && lastWriteTime != 0 && t != lastWriteTime && !ignore) { try { - collidingId = FileUtils.readFileToString(timestampFile, Charset.defaultCharset()); + collidingId = Files.readString(Util.fileToPath(timestampFile), Charset.defaultCharset()); } catch (IOException e) { LOGGER.log(Level.SEVERE, "Failed to read collision file", e); } // we noticed that someone else have updated this file. // switch GUI to display this error. + // TODO seems drastic; could this just be switched to an AdministrativeMonitor? Jenkins.get().servletContext.setAttribute("app", this); LOGGER.severe("Collision detected. timestamp=" + t + ", expected=" + lastWriteTime); // we need to continue updating this file, so that the other Hudson would notice the problem, too. } try { - FileUtils.writeStringToFile(timestampFile, getId(), Charset.defaultCharset()); + Files.writeString(Util.fileToPath(timestampFile), getId(), Charset.defaultCharset()); lastWriteTime = timestampFile.lastModified(); } catch (IOException e) { // if failed to write, err on the safe side and assume things are OK. @@ -129,20 +124,7 @@ protected void execute() { * Figures out a string that identifies this instance of Hudson. */ public String getId() { - Jenkins h = Jenkins.get(); - - // in servlet 2.5, we can get the context path - String contextPath = ""; - try { - Method m = ServletContext.class.getMethod("getContextPath"); - contextPath = " contextPath=\"" + m.invoke(h.servletContext) + "\""; - } catch (RuntimeException e) { - throw e; - } catch (Exception e) { - // maybe running with Servlet 2.4 - } - - return h.hashCode() + contextPath + " at " + ManagementFactory.getRuntimeMXBean().getName(); + return Long.toString(ProcessHandle.current().pid()); } public String getCollidingId() { @@ -154,7 +136,7 @@ public String getCollidingId() { */ public void schedule() { // randomize the scheduling so that multiple Hudson instances will write at the file at different time - long MINUTE = 1000 * 60; + long MINUTE = 1000 * 60; // TODO use TimeUnit.MINUTE.toMillis Timer.get() .schedule(new SafeTimerTask() { @@ -167,6 +149,7 @@ protected void doRun() { @Initializer(after = JOB_CONFIG_ADAPTED) public static void init() { + // TODO AperiodicWork would be more idiomatic new DoubleLaunchChecker().schedule(); } diff --git a/core/src/main/java/hudson/util/FormFieldValidator.java b/core/src/main/java/hudson/util/FormFieldValidator.java index 4453b60be333..f4ec7899a5b4 100644 --- a/core/src/main/java/hudson/util/FormFieldValidator.java +++ b/core/src/main/java/hudson/util/FormFieldValidator.java @@ -230,14 +230,12 @@ private void _errorWithMarkup(String message, String cssClass) throws IOExceptio ok(); } else { response.setContentType("text/html;charset=UTF-8"); - // 1x16 spacer needed for IE since it doesn't support min-height if (APPLY_CONTENT_SECURITY_POLICY_HEADERS) { for (String header : new String[]{"Content-Security-Policy", "X-WebKit-CSP", "X-Content-Security-Policy"}) { response.setHeader(header, "sandbox; default-src 'none';"); } } - response.getWriter().print("

" + + response.getWriter().print("
" + message + "
"); } } diff --git a/core/src/main/java/hudson/util/FormFillFailure.java b/core/src/main/java/hudson/util/FormFillFailure.java index 48cab2ce5fd9..5ebd0d5a31e6 100644 --- a/core/src/main/java/hudson/util/FormFillFailure.java +++ b/core/src/main/java/hudson/util/FormFillFailure.java @@ -31,7 +31,6 @@ import java.util.Locale; import javax.servlet.ServletException; import javax.servlet.http.HttpServletResponse; -import jenkins.model.Jenkins; import org.kohsuke.stapler.HttpResponse; import org.kohsuke.stapler.Stapler; import org.kohsuke.stapler.StaplerRequest; @@ -95,7 +94,7 @@ private static FormFillFailure _error(FormValidation.Kind kind, Throwable e, Str } return _errorWithMarkup(Util.escape(message) + - " " + "
" + Messages.FormValidation_Error_Details() + "
"
                 + Util.escape(Functions.printThrowable(e)) +
@@ -137,9 +136,7 @@ public String renderHtml() {
                 if (req == null) { // being called from some other context
                     return message;
                 }
-                // 1x16 spacer needed for IE since it doesn't support min-height
-                return "
" + + return "
" + message + "
"; } diff --git a/core/src/main/java/hudson/util/FormValidation.java b/core/src/main/java/hudson/util/FormValidation.java index 44f81fb1d44d..931e47ccf0ed 100644 --- a/core/src/main/java/hudson/util/FormValidation.java +++ b/core/src/main/java/hudson/util/FormValidation.java @@ -198,7 +198,7 @@ private static FormValidation _error(Kind kind, Throwable e, String message) { if (e == null) return _errorWithMarkup(Util.escape(message), kind); return _errorWithMarkup(Util.escape(message) + - " " + "
" + Messages.FormValidation_Error_Details() + "
"
             + Util.escape(Functions.printThrowable(e)) +
@@ -272,9 +272,7 @@ public String renderHtml() {
                 if (req == null) { // being called from some other context
                     return message;
                 }
-                // 1x16 spacer needed for IE since it doesn't support min-height
-                return "
" + + return "
" + message + "
"; } diff --git a/core/src/main/java/hudson/util/Futures.java b/core/src/main/java/hudson/util/Futures.java index c8c5c5182b60..8e9bf7081ed7 100644 --- a/core/src/main/java/hudson/util/Futures.java +++ b/core/src/main/java/hudson/util/Futures.java @@ -37,7 +37,7 @@ public class Futures { * Creates a {@link Future} instance that already has its value pre-computed. */ public static Future precomputed(final T value) { - return new Future() { + return new Future<>() { @Override public boolean cancel(boolean mayInterruptIfRunning) { return false; diff --git a/core/src/main/java/hudson/util/HeapSpaceStringConverter.java b/core/src/main/java/hudson/util/HeapSpaceStringConverter.java index 535d9bd535ab..31fe944bd938 100644 --- a/core/src/main/java/hudson/util/HeapSpaceStringConverter.java +++ b/core/src/main/java/hudson/util/HeapSpaceStringConverter.java @@ -34,7 +34,7 @@ * * Since XStream 1.3 it use a WeakHashMap cache to always use the same String instances, but * this has also major problems with a single long living XStream instance (as we have in Jenkins) - * See https://x-stream.github.io/jira/604/ + * See XSTR-604. * *

* Use this to avoid that (instead those strings will diff --git a/core/src/main/java/hudson/util/InterceptingProxy.java b/core/src/main/java/hudson/util/InterceptingProxy.java index 3ab7ebb0b318..af368ac5bf5e 100644 --- a/core/src/main/java/hudson/util/InterceptingProxy.java +++ b/core/src/main/java/hudson/util/InterceptingProxy.java @@ -1,5 +1,6 @@ package hudson.util; +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import java.lang.reflect.InvocationHandler; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; @@ -10,6 +11,7 @@ * * @author Kohsuke Kawaguchi */ +@SuppressFBWarnings(value = "THROWS_METHOD_THROWS_CLAUSE_THROWABLE", justification = "TODO needs triage") public abstract class InterceptingProxy { /** * Intercepts every method call. diff --git a/core/src/main/java/hudson/util/Iterators.java b/core/src/main/java/hudson/util/Iterators.java index ecf3da4a2941..f091404ee854 100644 --- a/core/src/main/java/hudson/util/Iterators.java +++ b/core/src/main/java/hudson/util/Iterators.java @@ -177,7 +177,7 @@ protected boolean filter(T t) { public static Iterable reverse(final List lst) { return () -> { final ListIterator itr = lst.listIterator(lst.size()); - return new Iterator() { + return new Iterator<>() { @Override public boolean hasNext() { return itr.hasPrevious(); @@ -205,7 +205,7 @@ public void remove() { public static Iterable wrap(final Iterable base) { return () -> { final Iterator itr = base.iterator(); - return new Iterator() { + return new Iterator<>() { @Override public boolean hasNext() { return itr.hasNext(); @@ -236,7 +236,7 @@ public static List sequence(final int start, int end, final int step) { final int size = (end - start) / step; if (size < 0) throw new IllegalArgumentException("List size is negative"); - return new AbstractList() { + return new AbstractList<>() { @Override public Integer get(int index) { if (index < 0 || index >= size) @@ -289,7 +289,7 @@ public static Iterable cast(Iterable itr) { */ @SuppressWarnings("unchecked") public static Iterator subType(Iterator itr, final Class type) { - return (Iterator) new FilterIterator(itr) { + return (Iterator) new FilterIterator<>(itr) { @Override protected boolean filter(U u) { return type.isInstance(u); @@ -301,7 +301,7 @@ protected boolean filter(U u) { * Creates a read-only mutator that disallows {@link Iterator#remove()}. */ public static Iterator readOnly(final Iterator itr) { - return new Iterator() { + return new Iterator<>() { @Override public boolean hasNext() { return itr.hasNext(); @@ -334,7 +334,7 @@ public static Iterator removeNull(final Iterator itr) { */ @SafeVarargs public static Iterable sequence(final Iterable... iterables) { - return () -> new FlattenIterator>(ImmutableList.copyOf(iterables)) { + return () -> new FlattenIterator<>(ImmutableList.copyOf(iterables)) { @Override protected Iterator expand(Iterable iterable) { return Iterators.cast(iterable).iterator(); @@ -346,8 +346,9 @@ protected Iterator expand(Iterable iterable) { * Filters another iterator by eliminating duplicates. */ public static Iterator removeDups(Iterator iterator) { - return new FilterIterator(iterator) { + return new FilterIterator<>(iterator) { final Set found = new HashSet<>(); + @Override protected boolean filter(T t) { return found.add(t); @@ -374,7 +375,7 @@ public static Iterator sequence(Iterator... iterators) { * @since 1.485 */ public static Iterator limit(final Iterator base, final CountingPredicate filter) { - return new Iterator() { + return new Iterator<>() { private T next; private boolean end; private int index = 0; diff --git a/core/src/main/java/hudson/util/LogTaskListener.java b/core/src/main/java/hudson/util/LogTaskListener.java index 267f8f7bf27f..20c6212924e9 100644 --- a/core/src/main/java/hudson/util/LogTaskListener.java +++ b/core/src/main/java/hudson/util/LogTaskListener.java @@ -31,7 +31,6 @@ import java.io.IOException; import java.io.OutputStream; import java.io.PrintStream; -import java.io.UnsupportedEncodingException; import java.nio.charset.StandardCharsets; import java.util.logging.Level; import java.util.logging.LogRecord; @@ -86,12 +85,7 @@ public void write(int b) throws IOException { @Override public void flush() throws IOException { if (baos.size() > 0) { - LogRecord lr; - try { - lr = new LogRecord(level, baos.toString(StandardCharsets.UTF_8.name())); - } catch (UnsupportedEncodingException e) { - throw new AssertionError(e); - } + LogRecord lr = new LogRecord(level, baos.toString(StandardCharsets.UTF_8)); lr.setLoggerName(logger.getName()); lr.setSourceClassName(caller.getClassName()); lr.setSourceMethodName(caller.getMethodName()); diff --git a/core/src/main/java/hudson/util/PackedMap.java b/core/src/main/java/hudson/util/PackedMap.java index f070c368d6c9..21024256e2db 100644 --- a/core/src/main/java/hudson/util/PackedMap.java +++ b/core/src/main/java/hudson/util/PackedMap.java @@ -76,11 +76,11 @@ private PackedMap(Map src) { } } - private final Set> entrySet = new AbstractSet>() { + private final Set> entrySet = new AbstractSet<>() { @NonNull @Override public Iterator> iterator() { - return new Iterator>() { + return new Iterator<>() { int index = 0; @Override public boolean hasNext() { @@ -92,7 +92,7 @@ public boolean hasNext() { public Entry next() { final K k = (K) kvpairs[index++]; final V v = (V) kvpairs[index++]; - return new Entry() { + return new Entry<>() { @Override public K getKey() { return k; @@ -149,7 +149,7 @@ public V get(Object key) { @Override @SuppressWarnings("unchecked") public Collection values() { - return new AbstractList() { + return new AbstractList<>() { @Override public V get(int index) { return (V) kvpairs[index * 2]; diff --git a/core/src/main/java/hudson/util/PersistedList.java b/core/src/main/java/hudson/util/PersistedList.java index ba9bf455d35a..5a93a69641c8 100644 --- a/core/src/main/java/hudson/util/PersistedList.java +++ b/core/src/main/java/hudson/util/PersistedList.java @@ -39,10 +39,7 @@ import java.lang.reflect.InvocationTargetException; import java.util.AbstractList; import java.util.ArrayList; -import java.util.Arrays; import java.util.Collection; -import java.util.Collections; -import java.util.HashSet; import java.util.Iterator; import java.util.List; import java.util.Optional; @@ -202,7 +199,7 @@ protected void onModified() throws IOException { } // TODO until https://github.com/jenkinsci/jenkins-test-harness/pull/243 is widely adopted: - private static final Set IGNORED_CLASSES = Collections.unmodifiableSet(new HashSet<>(Arrays.asList("org.jvnet.hudson.test.TestBuilder", "org.jvnet.hudson.test.TestNotifier"))); + private static final Set IGNORED_CLASSES = Set.of("org.jvnet.hudson.test.TestBuilder", "org.jvnet.hudson.test.TestNotifier"); // (SingleFileSCM & ExtractResourceWithChangesSCM would also be nice to suppress, but they are not kept in a PersistedList.) private static boolean ignoreSerializationErrors(Object o) { diff --git a/core/src/main/java/hudson/util/ProcessTree.java b/core/src/main/java/hudson/util/ProcessTree.java index 3e087106f90d..7169dec5b6a4 100644 --- a/core/src/main/java/hudson/util/ProcessTree.java +++ b/core/src/main/java/hudson/util/ProcessTree.java @@ -29,6 +29,7 @@ import static java.util.logging.Level.FINER; import static java.util.logging.Level.FINEST; +import com.google.common.primitives.Ints; import com.sun.jna.LastErrorException; import com.sun.jna.Memory; import com.sun.jna.Native; @@ -56,10 +57,6 @@ import java.io.ObjectStreamException; import java.io.RandomAccessFile; import java.io.Serializable; -import java.io.UnsupportedEncodingException; -import java.lang.reflect.Field; -import java.lang.reflect.InvocationTargetException; -import java.lang.reflect.Method; import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java.util.ArrayList; @@ -70,7 +67,6 @@ import java.util.List; import java.util.Locale; import java.util.Map; -import java.util.Optional; import java.util.SortedMap; import java.util.concurrent.TimeUnit; import java.util.function.Consumer; @@ -79,7 +75,6 @@ import jenkins.agents.AgentComputerUtil; import jenkins.security.SlaveToMasterCallable; import jenkins.util.SystemProperties; -import jenkins.util.java.JavaUtils; import org.apache.commons.io.FileUtils; import org.jenkinsci.remoting.SerializableOnlyOverRemoting; import org.jvnet.winp.WinProcess; @@ -757,7 +752,7 @@ abstract static class Unix extends Local { @CheckForNull @Override public OSProcess get(@NonNull Process proc) { - return get(UnixReflection.pid(proc)); + return get(Ints.checkedCast(proc.pid())); } @Override @@ -825,33 +820,20 @@ public void kill() throws InterruptedException { private void kill(long deadline) throws InterruptedException { if (getVeto() != null) return; - try { - int pid = getPid(); - LOGGER.fine("Killing pid=" + pid); - UnixReflection.destroy(pid); - // after sending SIGTERM, wait for the process to cease to exist - int sleepTime = 10; // initially we sleep briefly, then sleep up to 1sec - File status = getFile("status"); - do { - if (!status.exists()) { - break; // status is gone, process therefore as well - } + int pid = getPid(); + LOGGER.fine("Killing pid=" + pid); + ProcessHandle.of(pid).ifPresent(ProcessHandle::destroy); + // after sending SIGTERM, wait for the process to cease to exist + int sleepTime = 10; // initially we sleep briefly, then sleep up to 1sec + File status = getFile("status"); + do { + if (!status.exists()) { + break; // status is gone, process therefore as well + } - Thread.sleep(sleepTime); - sleepTime = Math.min(sleepTime * 2, 1000); - } while (System.nanoTime() < deadline); - } catch (IllegalAccessException e) { - // this is impossible - IllegalAccessError x = new IllegalAccessError(); - x.initCause(e); - throw x; - } catch (InvocationTargetException e) { - // tunnel serious errors - if (e.getTargetException() instanceof Error) - throw (Error) e.getTargetException(); - // otherwise log and let go. I need to see when this happens - LOGGER.log(Level.INFO, "Failed to terminate pid=" + getPid(), e); - } + Thread.sleep(sleepTime); + sleepTime = Math.min(sleepTime * 2, 1000); + } while (System.nanoTime() < deadline); killByKiller(); } @@ -887,91 +869,6 @@ private void killRecursively(long deadline) throws InterruptedException { public abstract List getArguments(); } - //TODO: can be replaced by multi-release JAR - /** - * Reflection used in the Unix support. - */ - private static final class UnixReflection { - /** - * Field to access the PID of the process. - * Required for Java 8 and older JVMs. - */ - private static final Field JAVA8_PID_FIELD; - - /** - * Field to access the PID of the process. - * Required for Java 9 and above until this is replaced by multi-release JAR. - */ - private static final Method JAVA9_PID_METHOD; - - /** - * Method to destroy a process, given pid. - * - * Looking at the JavaSE source code, this is using SIGTERM (15) - */ - private static final Method JAVA8_DESTROY_PROCESS; - private static final Method JAVA_9_PROCESSHANDLE_OF; - private static final Method JAVA_9_PROCESSHANDLE_DESTROY; - - static { - try { - if (JavaUtils.isRunningWithPostJava8()) { - Class clazz = Process.class; - JAVA9_PID_METHOD = clazz.getMethod("pid"); - JAVA8_PID_FIELD = null; - Class processHandleClazz = Class.forName("java.lang.ProcessHandle"); - JAVA_9_PROCESSHANDLE_OF = processHandleClazz.getMethod("of", long.class); - JAVA_9_PROCESSHANDLE_DESTROY = processHandleClazz.getMethod("destroy"); - JAVA8_DESTROY_PROCESS = null; - } else { - Class clazz = Class.forName("java.lang.UNIXProcess"); - JAVA8_PID_FIELD = clazz.getDeclaredField("pid"); - JAVA8_PID_FIELD.setAccessible(true); - JAVA9_PID_METHOD = null; - - JAVA8_DESTROY_PROCESS = clazz.getDeclaredMethod("destroyProcess", int.class, boolean.class); - JAVA8_DESTROY_PROCESS.setAccessible(true); - JAVA_9_PROCESSHANDLE_OF = null; - JAVA_9_PROCESSHANDLE_DESTROY = null; - } - } catch (ClassNotFoundException | NoSuchFieldException | NoSuchMethodException e) { - throw new LinkageError("Cannot initialize reflection for Unix Processes", e); - } - } - - public static void destroy(int pid) throws IllegalAccessException, - InvocationTargetException { - if (JAVA8_DESTROY_PROCESS != null) { - JAVA8_DESTROY_PROCESS.invoke(null, pid, false); - } else { - final Optional handle = (Optional) JAVA_9_PROCESSHANDLE_OF.invoke(null, pid); - if (handle.isPresent()) { - JAVA_9_PROCESSHANDLE_DESTROY.invoke(handle.get()); - } - } - } - - //TODO: We ideally need to update ProcessTree APIs to Support Long (JENKINS-53799). - public static int pid(@NonNull Process proc) { - try { - if (JAVA8_PID_FIELD != null) { - return JAVA8_PID_FIELD.getInt(proc); - } else { - long pid = (long) JAVA9_PID_METHOD.invoke(proc); - if (pid > Integer.MAX_VALUE) { - throw new IllegalAccessError("Java 9+ support error (JENKINS-53799). PID is out of Jenkins API bounds: " + pid); - } - return (int) pid; - } - } catch (IllegalAccessException | InvocationTargetException e) { // impossible - IllegalAccessError x = new IllegalAccessError(); - x.initCause(e); - throw x; - } - } - } - - static class Linux extends ProcfsUnix { Linux(boolean vetoersExist) { super(vetoersExist); @@ -1352,12 +1249,7 @@ private String readLine(int fd, long addr, String prefix) throws IOException { buf.write(ch); addr++; } - String line; - try { - line = buf.toString(StandardCharsets.UTF_8.name()); - } catch (UnsupportedEncodingException e) { - throw new AssertionError(e); - } + String line = buf.toString(StandardCharsets.UTF_8); if (LOGGER.isLoggable(FINEST)) LOGGER.finest(prefix + " was " + line); return line; @@ -1628,12 +1520,7 @@ private String readLine(int fd, long addr, String prefix) throws IOException { buf.write(ch); addr++; } - String line; - try { - line = buf.toString(StandardCharsets.UTF_8.name()); - } catch (UnsupportedEncodingException e) { - throw new AssertionError(e); - } + String line = buf.toString(StandardCharsets.UTF_8); if (LOGGER.isLoggable(FINEST)) LOGGER.finest(prefix + " was " + line); return line; @@ -1801,11 +1688,7 @@ String readString() { byte ch; while (offset < length && (ch = getByte(offset++)) != '\0') baos.write(ch); - try { - return baos.toString(StandardCharsets.UTF_8.name()); - } catch (UnsupportedEncodingException e) { - throw new AssertionError(e); - } + return baos.toString(StandardCharsets.UTF_8); } void skip0() { @@ -2119,11 +2002,7 @@ private void parse(Memory m, NativeLong size, Consumer consumer) { while ((ch = m.getByte(offset++)) != '\0') { baos.write(ch); } - try { - consumer.accept(baos.toString(StandardCharsets.UTF_8.name())); - } catch (UnsupportedEncodingException e) { - throw new AssertionError(e); - } + consumer.accept(baos.toString(StandardCharsets.UTF_8)); baos.reset(); } } diff --git a/core/src/main/java/hudson/util/QueryParameterMap.java b/core/src/main/java/hudson/util/QueryParameterMap.java index a187ae8ccabc..c4cf323d8ca8 100644 --- a/core/src/main/java/hudson/util/QueryParameterMap.java +++ b/core/src/main/java/hudson/util/QueryParameterMap.java @@ -24,8 +24,8 @@ package hudson.util; -import java.io.UnsupportedEncodingException; import java.net.URLDecoder; +import java.nio.charset.StandardCharsets; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; @@ -57,16 +57,12 @@ public class QueryParameterMap { */ public QueryParameterMap(String queryString) { if (queryString == null || queryString.length() == 0) return; - try { - for (String param : queryString.split("&")) { - String[] kv = param.split("="); - String key = URLDecoder.decode(kv[0], "UTF-8"); - String value = URLDecoder.decode(kv[1], "UTF-8"); - List values = store.computeIfAbsent(key, k -> new ArrayList<>()); - values.add(value); - } - } catch (UnsupportedEncodingException e) { - throw new AssertionError(e); + for (String param : queryString.split("&")) { + String[] kv = param.split("="); + String key = URLDecoder.decode(kv[0], StandardCharsets.UTF_8); + String value = URLDecoder.decode(kv[1], StandardCharsets.UTF_8); + List values = store.computeIfAbsent(key, k -> new ArrayList<>()); + values.add(value); } } diff --git a/core/src/main/java/hudson/util/RemotingDiagnostics.java b/core/src/main/java/hudson/util/RemotingDiagnostics.java index 187ba1112a48..57b339cb9a00 100644 --- a/core/src/main/java/hudson/util/RemotingDiagnostics.java +++ b/core/src/main/java/hudson/util/RemotingDiagnostics.java @@ -43,7 +43,6 @@ import java.lang.management.ManagementFactory; import java.lang.management.ThreadInfo; import java.nio.file.Files; -import java.util.Collections; import java.util.LinkedHashMap; import java.util.Map; import java.util.TreeMap; @@ -70,7 +69,7 @@ public final class RemotingDiagnostics { public static Map getSystemProperties(VirtualChannel channel) throws IOException, InterruptedException { if (channel == null) - return Collections.singletonMap("N/A", "N/A"); + return Map.of("N/A", "N/A"); return channel.call(new GetSystemProperties()); } @@ -85,13 +84,13 @@ public Map call() { public static Map getThreadDump(VirtualChannel channel) throws IOException, InterruptedException { if (channel == null) - return Collections.singletonMap("N/A", "N/A"); + return Map.of("N/A", "N/A"); return channel.call(new GetThreadDump()); } public static Future> getThreadDumpAsync(VirtualChannel channel) throws IOException, InterruptedException { if (channel == null) - return new AsyncFutureImpl<>(Collections.singletonMap("N/A", "offline")); + return new AsyncFutureImpl<>(Map.of("N/A", "offline")); return channel.callAsync(new GetThreadDump()); } diff --git a/core/src/main/java/hudson/util/RingBufferLogHandler.java b/core/src/main/java/hudson/util/RingBufferLogHandler.java index a24807e23dcf..a819016cbf38 100644 --- a/core/src/main/java/hudson/util/RingBufferLogHandler.java +++ b/core/src/main/java/hudson/util/RingBufferLogHandler.java @@ -24,13 +24,9 @@ package hudson.util; -import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; -import java.lang.ref.SoftReference; import java.util.AbstractList; import java.util.List; -import java.util.Objects; import java.util.logging.Handler; -import java.util.logging.Level; import java.util.logging.LogRecord; /** @@ -38,28 +34,12 @@ * * @author Kohsuke Kawaguchi */ -@SuppressFBWarnings( - value = "RV_RETURN_VALUE_IGNORED_NO_SIDE_EFFECT", - justification = "to guard against potential future compiler optimizations") public class RingBufferLogHandler extends Handler { private static final int DEFAULT_RING_BUFFER_SIZE = Integer.getInteger(RingBufferLogHandler.class.getName() + ".defaultSize", 256); - private static final class LogRecordRef extends SoftReference { - LogRecordRef(LogRecord referent) { - super(referent); - } - } - - static { - // Preload the LogRecordRef class to avoid an ABBA deadlock between agent class loading and logging. - LogRecord r = new LogRecord(Level.INFO, ""); - // We call Objects.hash() to guard against potential future compiler optimizations. - Objects.hash(new LogRecordRef(r).get()); - } - private int start = 0; - private final LogRecordRef[] records; + private final LogRecord[] records; private int size; /** @@ -73,7 +53,7 @@ public RingBufferLogHandler() { } public RingBufferLogHandler(int ringSize) { - records = new LogRecordRef[ringSize]; + records = new LogRecord[ringSize]; } /** @@ -86,13 +66,18 @@ public static int getDefaultRingBufferSize() { } @Override - public synchronized void publish(LogRecord record) { - int len = records.length; - records[(start + size) % len] = new LogRecordRef(record); - if (size == len) { - start = (start + 1) % len; - } else { - size++; + public void publish(LogRecord record) { + if (record == null) { + return; + } + synchronized (this) { + int len = records.length; + records[(start + size) % len] = record; + if (size == len) { + start = (start + 1) % len; + } else { + size++; + } } } @@ -109,14 +94,12 @@ public synchronized void clear() { */ public List getView() { // Since Jenkins.logRecords is a field used as an API, we are forced to implement a dynamic list. - return new AbstractList() { + return new AbstractList<>() { @Override public LogRecord get(int index) { // flip the order synchronized (RingBufferLogHandler.this) { - LogRecord r = records[(start + (size - (index + 1))) % records.length].get(); - // We cannot just omit collected entries due to the List interface. - return r != null ? r : new LogRecord(Level.OFF, ""); + return records[(start + (size - (index + 1))) % records.length]; } } diff --git a/core/src/main/java/hudson/util/RobustReflectionConverter.java b/core/src/main/java/hudson/util/RobustReflectionConverter.java index d1bc500003e1..d7ce1ab5594f 100644 --- a/core/src/main/java/hudson/util/RobustReflectionConverter.java +++ b/core/src/main/java/hudson/util/RobustReflectionConverter.java @@ -44,6 +44,7 @@ import com.thoughtworks.xstream.mapper.Mapper; import com.thoughtworks.xstream.security.InputManipulationException; import edu.umd.cs.findbugs.annotations.NonNull; +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import hudson.diagnosis.OldDataMonitor; import hudson.model.Saveable; import hudson.security.ACL; @@ -77,6 +78,7 @@ * * */ +@SuppressFBWarnings(value = "THROWS_METHOD_THROWS_RUNTIMEEXCEPTION", justification = "TODO needs triage") @SuppressWarnings({"rawtypes", "unchecked"}) public class RobustReflectionConverter implements Converter { diff --git a/core/src/main/java/hudson/util/RunList.java b/core/src/main/java/hudson/util/RunList.java index f422e48d2b9e..9e3de481735d 100644 --- a/core/src/main/java/hudson/util/RunList.java +++ b/core/src/main/java/hudson/util/RunList.java @@ -105,7 +105,7 @@ public static , R extends Run> RunList fromJobs(Ite } private static Iterable combine(Iterable> runLists) { - return Iterables.mergeSorted(runLists, new Comparator() { + return Iterables.mergeSorted(runLists, new Comparator<>() { @Override public int compare(R o1, R o2) { long lhs = o1.getTimeInMillis(); @@ -264,7 +264,7 @@ private RunList limit(final CountingPredicate predicate) { size = null; first = null; final Iterable nested = base; - base = new Iterable() { + base = new Iterable<>() { @Override public Iterator iterator() { return hudson.util.Iterators.limit(nested.iterator(), predicate); @@ -286,7 +286,7 @@ public String toString() { * @since 1.507 */ public RunList limit(final int n) { - return limit(new CountingPredicate() { + return limit(new CountingPredicate<>() { @Override public boolean apply(int index, R input) { return index < n; @@ -344,7 +344,7 @@ public RunList regressionOnly() { */ public RunList byTimestamp(final long start, final long end) { return - limit(new CountingPredicate() { + limit(new CountingPredicate<>() { @Override public boolean apply(int index, R r) { return start <= r.getTimeInMillis(); @@ -366,7 +366,7 @@ public RunList newBuilds() { // can't publish on-going builds return filter((Predicate) r -> !r.isBuilding()) // put at least 10 builds, but otherwise ignore old builds - .limit(new CountingPredicate() { + .limit(new CountingPredicate<>() { @Override public boolean apply(int index, R r) { return index < 10 || r.getTimeInMillis() >= t; diff --git a/core/src/main/java/hudson/util/Secret.java b/core/src/main/java/hudson/util/Secret.java index 67fb87b5cf35..d1e2d362e29c 100644 --- a/core/src/main/java/hudson/util/Secret.java +++ b/core/src/main/java/hudson/util/Secret.java @@ -229,7 +229,7 @@ private static boolean isValidData(String data) { } /** - * Workaround for JENKINS-6459 / http://java.net/jira/browse/GLASSFISH-11862 + * Workaround for JENKINS-6459 / GLASSFISH-11862 * This method uses specific provider selected via hudson.util.Secret.provider system property * to provide a workaround for the above bug where default provide gives an unusable instance. * (Glassfish Enterprise users should set value of this property to "SunJCE") @@ -286,7 +286,7 @@ public Object unmarshal(HierarchicalStreamReader reader, final UnmarshallingCont } /** - * Workaround for JENKINS-6459 / http://java.net/jira/browse/GLASSFISH-11862 + * Workaround for JENKINS-6459 / GLASSFISH-11862 * @see #getCipher(String) */ private static final String PROVIDER = SystemProperties.getString(Secret.class.getName() + ".provider"); diff --git a/core/src/main/java/hudson/util/StreamTaskListener.java b/core/src/main/java/hudson/util/StreamTaskListener.java index f19db94b45cd..4abe31d3ec51 100644 --- a/core/src/main/java/hudson/util/StreamTaskListener.java +++ b/core/src/main/java/hudson/util/StreamTaskListener.java @@ -36,7 +36,6 @@ import java.io.ObjectOutputStream; import java.io.OutputStream; import java.io.PrintStream; -import java.io.UnsupportedEncodingException; import java.io.Writer; import java.nio.charset.Charset; import java.nio.file.Files; @@ -86,16 +85,12 @@ public StreamTaskListener(@NonNull OutputStream out) { } public StreamTaskListener(@NonNull OutputStream out, @CheckForNull Charset charset) { - try { - if (charset == null) - this.out = out instanceof PrintStream ? (PrintStream) out : new PrintStream(out, false, Charset.defaultCharset().name()); - else - this.out = new PrintStream(out, false, charset.name()); - this.charset = charset; - } catch (UnsupportedEncodingException e) { - // it's not very pretty to do this, but otherwise we'd have to touch too many call sites. - throw new Error(e); + if (charset == null) { + this.out = out instanceof PrintStream ? (PrintStream) out : new PrintStream(out, false, Charset.defaultCharset()); + } else { + this.out = new PrintStream(out, false, charset); } + this.charset = charset; } /** diff --git a/core/src/main/java/hudson/util/TagCloud.java b/core/src/main/java/hudson/util/TagCloud.java index 07d237ef897b..c97e4cf49e3c 100644 --- a/core/src/main/java/hudson/util/TagCloud.java +++ b/core/src/main/java/hudson/util/TagCloud.java @@ -29,7 +29,7 @@ import java.util.List; /** - * Represents an order-preserving tag cloud (http://en.wikipedia.org/wiki/Tag_cloud) + * Represents an order-preserving tag cloud * where each keyword gets a weight and displayed according to their weight. * * TODO: define a view on its own. diff --git a/core/src/main/java/hudson/util/TextFile.java b/core/src/main/java/hudson/util/TextFile.java index 7baad2f748cf..89ab731c6afc 100644 --- a/core/src/main/java/hudson/util/TextFile.java +++ b/core/src/main/java/hudson/util/TextFile.java @@ -135,7 +135,7 @@ public void write(String text) throws IOException { * necessary chunk. * *

- * Some multi-byte encoding, such as Shift-JIS (http://en.wikipedia.org/wiki/Shift_JIS) doesn't + * Some multi-byte encoding, such as Shift-JIS, doesn't * allow the first byte and the second byte of a single char to be unambiguously identified, * so it is possible that we end up decoding incorrectly if we start reading in the middle of a multi-byte * character. All the CJK multi-byte encodings that I know of are self-correcting; as they are ASCII-compatible, diff --git a/core/src/main/java/hudson/util/XStream2.java b/core/src/main/java/hudson/util/XStream2.java index d44ac8a8afa3..4e6a9f035d31 100644 --- a/core/src/main/java/hudson/util/XStream2.java +++ b/core/src/main/java/hudson/util/XStream2.java @@ -96,7 +96,7 @@ public class XStream2 extends XStream { private static final Logger LOGGER = Logger.getLogger(XStream2.class.getName()); /** * Determine what is the value (in seconds) of the "collectionUpdateLimit" added by XStream - * to protect against http://x-stream.github.io/CVE-2021-43859.html. + * to protect against CVE-2021-43859. * It corresponds to the accumulated timeout when adding an item to a collection. * * Default: 5 seconds (in contrary to XStream default to 20 which is a bit too tolerant) diff --git a/core/src/main/java/hudson/util/io/ArchiverFactory.java b/core/src/main/java/hudson/util/io/ArchiverFactory.java index b6937734866b..2bb32d377867 100644 --- a/core/src/main/java/hudson/util/io/ArchiverFactory.java +++ b/core/src/main/java/hudson/util/io/ArchiverFactory.java @@ -24,6 +24,7 @@ package hudson.util.io; +import edu.umd.cs.findbugs.annotations.NonNull; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import hudson.FilePath.TarCompression; import java.io.IOException; @@ -42,6 +43,7 @@ public abstract class ArchiverFactory implements Serializable { /** * Creates an archiver on top of the given stream. */ + @NonNull public abstract Archiver create(OutputStream out) throws IOException; /** @@ -79,6 +81,7 @@ private TarArchiverFactory(TarCompression method) { this.method = method; } + @NonNull @Override public Archiver create(OutputStream out) throws IOException { return new TarArchiver(method.compress(out)); @@ -88,6 +91,7 @@ public Archiver create(OutputStream out) throws IOException { } private static final class ZipArchiverFactory extends ArchiverFactory { + @NonNull @Override public Archiver create(OutputStream out) { return new ZipArchiver(out); @@ -103,6 +107,7 @@ private static final class ZipWithoutSymLinksArchiverFactory extends ArchiverFac this.prefix = prefix; } + @NonNull @Override public Archiver create(OutputStream out) { return new ZipArchiver(out, true, prefix); diff --git a/core/src/main/java/hudson/util/jna/Advapi32.java b/core/src/main/java/hudson/util/jna/Advapi32.java index a32afeb732a5..22433e0e91ee 100644 --- a/core/src/main/java/hudson/util/jna/Advapi32.java +++ b/core/src/main/java/hudson/util/jna/Advapi32.java @@ -41,7 +41,7 @@ public interface Advapi32 extends StdCallLibrary { * Retrieves the name of the user associated with the current thread. * *

- * See http://msdn.microsoft.com/en-us/library/ms724432(VS.85).aspx + * See GetUserNameA function (winbase.h) */ boolean GetUserName(char[] buffer, IntByReference lpnSize); diff --git a/core/src/main/java/hudson/util/jna/GNUCLibrary.java b/core/src/main/java/hudson/util/jna/GNUCLibrary.java index afa2729d6e2a..d9348e4f2aca 100644 --- a/core/src/main/java/hudson/util/jna/GNUCLibrary.java +++ b/core/src/main/java/hudson/util/jna/GNUCLibrary.java @@ -128,7 +128,7 @@ public interface GNUCLibrary extends Library { /** * Creates a symlink. * - * See http://linux.die.net/man/3/symlink + * See symlink(3) */ int symlink(String oldname, String newname); diff --git a/core/src/main/java/hudson/util/jna/Kernel32.java b/core/src/main/java/hudson/util/jna/Kernel32.java index 97473873a2b5..f1b8595a8d32 100644 --- a/core/src/main/java/hudson/util/jna/Kernel32.java +++ b/core/src/main/java/hudson/util/jna/Kernel32.java @@ -38,7 +38,7 @@ public interface Kernel32 extends StdCallLibrary { Kernel32 INSTANCE = Kernel32Utils.load(); /** - * See http://msdn.microsoft.com/en-us/library/aa365240(VS.85).aspx + * See MoveFileExA function (winbase.h) */ boolean MoveFileExA(String existingFileName, String newFileName, int flags); diff --git a/core/src/main/java/hudson/util/jna/Kernel32Utils.java b/core/src/main/java/hudson/util/jna/Kernel32Utils.java index c6df382d41ae..f8ed39bf92be 100644 --- a/core/src/main/java/hudson/util/jna/Kernel32Utils.java +++ b/core/src/main/java/hudson/util/jna/Kernel32Utils.java @@ -91,7 +91,7 @@ public static int getWin32FileAttributes(File file) throws IOException { * If absolute, it's absolute. * @throws UnsatisfiedLinkError * If the function is not exported by kernel32. - * See http://msdn.microsoft.com/en-us/library/windows/desktop/aa363866(v=vs.85).aspx + * See CreateSymbolicLinkA function (winbase.h) * for compatibility info. * @deprecated Use {@link Util#createSymlink} instead. */ diff --git a/core/src/main/java/hudson/util/jna/Options.java b/core/src/main/java/hudson/util/jna/Options.java index 2b75aac9f872..d0d113ce481e 100644 --- a/core/src/main/java/hudson/util/jna/Options.java +++ b/core/src/main/java/hudson/util/jna/Options.java @@ -31,7 +31,7 @@ */ @SuppressFBWarnings(value = "MS_OOI_PKGPROTECT", justification = "for backward compatibility") public interface Options { - Map UNICODE_OPTIONS = new HashMap() { + Map UNICODE_OPTIONS = new HashMap<>() { { put(OPTION_TYPE_MAPPER, W32APITypeMapper.UNICODE); put(OPTION_FUNCTION_MAPPER, W32APIFunctionMapper.UNICODE); diff --git a/core/src/main/java/hudson/views/BuildButtonColumn.java b/core/src/main/java/hudson/views/BuildButtonColumn.java index 5a48f0da6de8..39d20f6cb5a6 100644 --- a/core/src/main/java/hudson/views/BuildButtonColumn.java +++ b/core/src/main/java/hudson/views/BuildButtonColumn.java @@ -24,6 +24,7 @@ package hudson.views; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.model.AbstractItem; import org.jenkinsci.Symbol; @@ -43,6 +44,7 @@ public String taskNoun(Object job) { @Extension(ordinal = DEFAULT_COLUMNS_ORDINAL_ACTIONS_START - 1) @Symbol("buildButton") public static class DescriptorImpl extends ListViewColumnDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.BuildButtonColumn_DisplayName(); diff --git a/core/src/main/java/hudson/views/DefaultMyViewsTabBar.java b/core/src/main/java/hudson/views/DefaultMyViewsTabBar.java index d697552a6857..68870f137b2b 100644 --- a/core/src/main/java/hudson/views/DefaultMyViewsTabBar.java +++ b/core/src/main/java/hudson/views/DefaultMyViewsTabBar.java @@ -24,6 +24,7 @@ package hudson.views; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import org.jenkinsci.Symbol; import org.kohsuke.stapler.DataBoundConstructor; @@ -42,6 +43,7 @@ public DefaultMyViewsTabBar() { @Extension @Symbol("standard") public static class DescriptorImpl extends MyViewsTabBarDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.DefaultMyViewsTabsBar_DisplayName(); diff --git a/core/src/main/java/hudson/views/DefaultViewsTabBar.java b/core/src/main/java/hudson/views/DefaultViewsTabBar.java index 6f697f96a86e..8054a3ae1ec5 100644 --- a/core/src/main/java/hudson/views/DefaultViewsTabBar.java +++ b/core/src/main/java/hudson/views/DefaultViewsTabBar.java @@ -24,6 +24,7 @@ package hudson.views; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import org.jenkinsci.Symbol; import org.kohsuke.stapler.DataBoundConstructor; @@ -42,6 +43,7 @@ public DefaultViewsTabBar() { @Extension @Symbol("standard") public static class DescriptorImpl extends ViewsTabBarDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.DefaultViewsTabsBar_DisplayName(); diff --git a/core/src/main/java/hudson/views/JobColumn.java b/core/src/main/java/hudson/views/JobColumn.java index b2ec060f09c3..026ea7e17448 100644 --- a/core/src/main/java/hudson/views/JobColumn.java +++ b/core/src/main/java/hudson/views/JobColumn.java @@ -24,6 +24,7 @@ package hudson.views; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.model.Item; import org.jenkinsci.Symbol; @@ -40,6 +41,7 @@ public JobColumn() { // put this in the middle of icons and properties @Extension(ordinal = DEFAULT_COLUMNS_ORDINAL_ICON_END + 1) @Symbol("jobName") public static class DescriptorImpl extends ListViewColumnDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.JobColumn_DisplayName(); diff --git a/core/src/main/java/hudson/views/LastDurationColumn.java b/core/src/main/java/hudson/views/LastDurationColumn.java index f1d7258e5b95..60a0ddc239fa 100644 --- a/core/src/main/java/hudson/views/LastDurationColumn.java +++ b/core/src/main/java/hudson/views/LastDurationColumn.java @@ -24,6 +24,7 @@ package hudson.views; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import org.jenkinsci.Symbol; import org.kohsuke.stapler.DataBoundConstructor; @@ -35,6 +36,7 @@ public LastDurationColumn() { @Extension(ordinal = DEFAULT_COLUMNS_ORDINAL_PROPERTIES_START - 4) @Symbol("lastDuration") public static class DescriptorImpl extends ListViewColumnDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.LastDurationColumn_DisplayName(); diff --git a/core/src/main/java/hudson/views/LastFailureColumn.java b/core/src/main/java/hudson/views/LastFailureColumn.java index c31f3f9590a0..50978c5accd2 100644 --- a/core/src/main/java/hudson/views/LastFailureColumn.java +++ b/core/src/main/java/hudson/views/LastFailureColumn.java @@ -24,6 +24,7 @@ package hudson.views; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import org.jenkinsci.Symbol; import org.kohsuke.stapler.DataBoundConstructor; @@ -35,6 +36,7 @@ public LastFailureColumn() { @Extension(ordinal = DEFAULT_COLUMNS_ORDINAL_PROPERTIES_START - 2) @Symbol("lastFailure") public static class DescriptorImpl extends ListViewColumnDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.LastFailureColumn_DisplayName(); diff --git a/core/src/main/java/hudson/views/LastStableColumn.java b/core/src/main/java/hudson/views/LastStableColumn.java index 7dfd482eaab3..1915b6bd4c7d 100644 --- a/core/src/main/java/hudson/views/LastStableColumn.java +++ b/core/src/main/java/hudson/views/LastStableColumn.java @@ -24,6 +24,7 @@ package hudson.views; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import org.jenkinsci.Symbol; import org.kohsuke.stapler.DataBoundConstructor; @@ -35,6 +36,7 @@ public LastStableColumn() { @Extension(ordinal = DEFAULT_COLUMNS_ORDINAL_PROPERTIES_START - 3) @Symbol("lastStable") public static class DescriptorImpl extends ListViewColumnDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.LastStableColumn_DisplayName(); diff --git a/core/src/main/java/hudson/views/LastSuccessColumn.java b/core/src/main/java/hudson/views/LastSuccessColumn.java index 98571e8e9bf3..b4a1cddafad1 100644 --- a/core/src/main/java/hudson/views/LastSuccessColumn.java +++ b/core/src/main/java/hudson/views/LastSuccessColumn.java @@ -24,6 +24,7 @@ package hudson.views; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import org.jenkinsci.Symbol; import org.kohsuke.stapler.DataBoundConstructor; @@ -35,6 +36,7 @@ public LastSuccessColumn() { @Extension(ordinal = DEFAULT_COLUMNS_ORDINAL_PROPERTIES_START - 1) @Symbol("lastSuccess") public static class DescriptorImpl extends ListViewColumnDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.LastSuccessColumn_DisplayName(); diff --git a/core/src/main/java/hudson/views/StatusColumn.java b/core/src/main/java/hudson/views/StatusColumn.java index 9d9e92d3dfdd..83f3b79dd174 100644 --- a/core/src/main/java/hudson/views/StatusColumn.java +++ b/core/src/main/java/hudson/views/StatusColumn.java @@ -24,6 +24,7 @@ package hudson.views; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.model.StatusIcon; import org.jenkinsci.Symbol; @@ -41,6 +42,7 @@ public StatusColumn() { @Extension(ordinal = DEFAULT_COLUMNS_ORDINAL_ICON_START - 1) @Symbol("status") public static class DescriptorImpl extends ListViewColumnDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.StatusColumn_DisplayName(); diff --git a/core/src/main/java/hudson/views/WeatherColumn.java b/core/src/main/java/hudson/views/WeatherColumn.java index ee04f7c0f08b..ec31fc4deaf2 100644 --- a/core/src/main/java/hudson/views/WeatherColumn.java +++ b/core/src/main/java/hudson/views/WeatherColumn.java @@ -24,6 +24,7 @@ package hudson.views; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import org.jenkinsci.Symbol; import org.kohsuke.stapler.DataBoundConstructor; @@ -35,6 +36,7 @@ public WeatherColumn() { @Extension(ordinal = DEFAULT_COLUMNS_ORDINAL_ICON_START - 2) @Symbol("weather") public static class DescriptorImpl extends ListViewColumnDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.WeatherColumn_DisplayName(); diff --git a/core/src/main/java/jenkins/PluginSubtypeMarker.java b/core/src/main/java/jenkins/PluginSubtypeMarker.java index de529f929afd..d6739d3abf9c 100644 --- a/core/src/main/java/jenkins/PluginSubtypeMarker.java +++ b/core/src/main/java/jenkins/PluginSubtypeMarker.java @@ -41,7 +41,7 @@ import javax.lang.model.element.Modifier; import javax.lang.model.element.TypeElement; import javax.lang.model.type.TypeMirror; -import javax.lang.model.util.ElementScanner6; +import javax.lang.model.util.ElementScanner9; import javax.tools.Diagnostic; import javax.tools.FileObject; import javax.tools.StandardLocation; @@ -59,7 +59,7 @@ public class PluginSubtypeMarker extends AbstractProcessor { @Override public boolean process(Set annotations, RoundEnvironment roundEnv) { try { - ElementScanner6 scanner = new ElementScanner6() { + ElementScanner9 scanner = new ElementScanner9<>() { @Override public Void visitType(TypeElement e, Void aVoid) { if (!e.getModifiers().contains(Modifier.ABSTRACT)) { diff --git a/core/src/main/java/jenkins/agents/WebSocketAgents.java b/core/src/main/java/jenkins/agents/WebSocketAgents.java index 4c4451b974fe..f3953106dadf 100644 --- a/core/src/main/java/jenkins/agents/WebSocketAgents.java +++ b/core/src/main/java/jenkins/agents/WebSocketAgents.java @@ -27,6 +27,7 @@ import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import hudson.Extension; import hudson.ExtensionList; +import hudson.Util; import hudson.model.Computer; import hudson.model.InvisibleAction; import hudson.model.UnprotectedRootAction; @@ -89,16 +90,24 @@ public HttpResponse doIndex(StaplerRequest req, StaplerResponse rsp) throws IOEx state.setRemoteEndpointDescription(req.getRemoteAddr()); state.fireBeforeProperties(); LOGGER.fine(() -> "connecting " + agent); - // TODO or just pass all request headers? Map properties = new HashMap<>(); properties.put(JnlpConnectionState.CLIENT_NAME_KEY, agent); properties.put(JnlpConnectionState.SECRET_KEY, secret); + String unsafeCookie = req.getHeader(Engine.WEBSOCKET_COOKIE_HEADER); + String cookie; + if (unsafeCookie != null) { + // This will blow up if the client sent us a malformed cookie. + cookie = Util.toHexString(Util.fromHexString(unsafeCookie)); + } else { + cookie = JnlpAgentReceiver.generateCookie(); + } + properties.put(JnlpConnectionState.COOKIE_KEY, cookie); state.fireAfterProperties(Collections.unmodifiableMap(properties)); Capability remoteCapability = Capability.fromASCII(remoteCapabilityStr); LOGGER.fine(() -> "received " + remoteCapability); rsp.setHeader(Capability.KEY, new Capability().toASCII()); rsp.setHeader(Engine.REMOTING_MINIMUM_VERSION_HEADER, RemotingVersionInfo.getMinimumSupportedVersion().toString()); - rsp.setHeader(JnlpConnectionState.COOKIE_KEY, JnlpAgentReceiver.generateCookie()); // TODO figure out what this is for, if anything + rsp.setHeader(Engine.WEBSOCKET_COOKIE_HEADER, cookie); return WebSockets.upgrade(new Session(state, agent, remoteCapability)); } diff --git a/core/src/main/java/jenkins/fingerprints/FileFingerprintStorage.java b/core/src/main/java/jenkins/fingerprints/FileFingerprintStorage.java index a0ada4a71d17..d3154e6db6a3 100644 --- a/core/src/main/java/jenkins/fingerprints/FileFingerprintStorage.java +++ b/core/src/main/java/jenkins/fingerprints/FileFingerprintStorage.java @@ -368,6 +368,7 @@ protected File getRootDir() { @Extension public static class DescriptorImpl extends FingerprintStorageDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.FileFingerprintStorage_DisplayName(); diff --git a/core/src/main/java/jenkins/install/InstallUtil.java b/core/src/main/java/jenkins/install/InstallUtil.java index dcd3ac37def0..0572d48a5209 100644 --- a/core/src/main/java/jenkins/install/InstallUtil.java +++ b/core/src/main/java/jenkins/install/InstallUtil.java @@ -31,6 +31,7 @@ import edu.umd.cs.findbugs.annotations.CheckForNull; import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Functions; +import hudson.Util; import hudson.model.UpdateCenter.DownloadJob.InstallationStatus; import hudson.model.UpdateCenter.DownloadJob.Installing; import hudson.model.UpdateCenter.InstallationJob; @@ -40,6 +41,7 @@ import java.io.IOException; import java.io.UncheckedIOException; import java.nio.charset.Charset; +import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java.util.ArrayList; import java.util.HashMap; @@ -53,7 +55,6 @@ import jenkins.model.Jenkins; import jenkins.util.SystemProperties; import jenkins.util.xml.XMLUtils; -import org.apache.commons.io.FileUtils; import org.apache.commons.lang.StringUtils; import org.kohsuke.accmod.Restricted; import org.kohsuke.accmod.restrictions.NoExternalUse; @@ -210,7 +211,7 @@ public static void saveLastExecVersion() { File lastExecVersionFile = getLastExecVersionFile(); if (lastExecVersionFile.exists()) { try { - String version = FileUtils.readFileToString(lastExecVersionFile, Charset.defaultCharset()); + String version = Files.readString(Util.fileToPath(lastExecVersionFile), Charset.defaultCharset()); // JENKINS-37438 blank will force the setup // wizard regardless of current state of the system if (StringUtils.isBlank(version)) { @@ -253,7 +254,7 @@ public static void saveLastExecVersion() { static void saveLastExecVersion(@NonNull String version) { File lastExecVersionFile = getLastExecVersionFile(); try { - FileUtils.write(lastExecVersionFile, version, Charset.defaultCharset()); + Files.writeString(Util.fileToPath(lastExecVersionFile), version, Charset.defaultCharset()); } catch (IOException e) { LOGGER.log(SEVERE, "Failed to save " + lastExecVersionFile.getAbsolutePath(), e); } @@ -319,7 +320,7 @@ public static synchronized void persistInstallStatus(List insta } try { String installingPluginXml = new XStream().toXML(statuses); - FileUtils.write(installingPluginsFile, installingPluginXml); + Files.writeString(Util.fileToPath(installingPluginsFile), installingPluginXml, StandardCharsets.UTF_8); } catch (IOException e) { LOGGER.log(SEVERE, "Failed to save " + installingPluginsFile.getAbsolutePath(), e); } diff --git a/core/src/main/java/jenkins/install/SetupWizard.java b/core/src/main/java/jenkins/install/SetupWizard.java index 6513823cd82a..38668be29429 100644 --- a/core/src/main/java/jenkins/install/SetupWizard.java +++ b/core/src/main/java/jenkins/install/SetupWizard.java @@ -1,6 +1,5 @@ package jenkins.install; -import static org.apache.commons.io.FileUtils.readFileToString; import static org.apache.commons.lang.StringUtils.defaultIfBlank; import edu.umd.cs.findbugs.annotations.CheckForNull; @@ -10,6 +9,7 @@ import hudson.Extension; import hudson.FilePath; import hudson.ProxyConfiguration; +import hudson.Util; import hudson.model.DownloadService; import hudson.model.PageDecorator; import hudson.model.UpdateCenter; @@ -32,6 +32,10 @@ import java.net.URL; import java.net.URLConnection; import java.nio.charset.StandardCharsets; +import java.nio.file.Files; +import java.nio.file.InvalidPathException; +import java.nio.file.Path; +import java.nio.file.Paths; import java.util.HashMap; import java.util.Iterator; import java.util.List; @@ -59,7 +63,6 @@ import jenkins.util.UrlHelper; import net.sf.json.JSONArray; import net.sf.json.JSONObject; -import org.apache.commons.io.FileUtils; import org.apache.commons.io.IOUtils; import org.kohsuke.accmod.Restricted; import org.kohsuke.accmod.restrictions.DoNotUse; @@ -229,15 +232,22 @@ private void createInitialApiToken(User user) throws IOException, InterruptedExc String plainText; if (sysProp.startsWith("@")) { // no need for path traversal check as it's coming from the instance creator only - File apiTokenFile = new File(sysProp.substring(1)); - if (!apiTokenFile.exists()) { + String apiTokenStr = sysProp.substring(1); + Path apiTokenFile; + try { + apiTokenFile = Paths.get(apiTokenStr); + } catch (InvalidPathException e) { + LOGGER.log(Level.WARNING, "The API Token cannot be retrieved from an invalid path: {0}", apiTokenStr); + return; + } + if (!Files.exists(apiTokenFile)) { LOGGER.log(Level.WARNING, "The API Token cannot be retrieved from a non-existing file: {0}", apiTokenFile); return; } try { - plainText = FileUtils.readFileToString(apiTokenFile, StandardCharsets.UTF_8); - LOGGER.log(Level.INFO, "API Token generated using contents of file: {0}", apiTokenFile.getAbsolutePath()); + plainText = Files.readString(apiTokenFile, StandardCharsets.UTF_8); + LOGGER.log(Level.INFO, "API Token generated using contents of file: {0}", apiTokenFile.toAbsolutePath()); } catch (IOException e) { LOGGER.log(Level.WARNING, String.format("The API Token cannot be retrieved from the file: %s", apiTokenFile), e); return; @@ -450,7 +460,7 @@ private void useRootUrl(Map errors, @CheckForNull String rootUrl } /*package*/ void setCurrentLevel(VersionNumber v) throws IOException { - FileUtils.writeStringToFile(getUpdateStateFile(), v.toString(), StandardCharsets.UTF_8); + Files.writeString(Util.fileToPath(getUpdateStateFile()), v.toString(), StandardCharsets.UTF_8); } /** @@ -474,7 +484,7 @@ public VersionNumber getCurrentLevel() { File state = getUpdateStateFile(); if (state.exists()) { try { - from = new VersionNumber(defaultIfBlank(readFileToString(state), "1.0").trim()); + from = new VersionNumber(defaultIfBlank(Files.readString(Util.fileToPath(state), StandardCharsets.UTF_8), "1.0").trim()); } catch (IOException ex) { LOGGER.log(Level.SEVERE, "Cannot read the current version file", ex); return null; diff --git a/core/src/main/java/jenkins/management/AdministrativeMonitorsDecorator.java b/core/src/main/java/jenkins/management/AdministrativeMonitorsDecorator.java index 5fa8b66c173b..eb9685f54ba0 100644 --- a/core/src/main/java/jenkins/management/AdministrativeMonitorsDecorator.java +++ b/core/src/main/java/jenkins/management/AdministrativeMonitorsDecorator.java @@ -24,6 +24,7 @@ package jenkins.management; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.diagnosis.ReverseProxySetupMonitor; import hudson.model.AdministrativeMonitor; @@ -62,6 +63,7 @@ public AdministrativeMonitorsDecorator() { ignoredJenkinsRestOfUrls.add("configure"); } + @NonNull @Override public String getDisplayName() { return Messages.AdministrativeMonitorsDecorator_DisplayName(); diff --git a/core/src/main/java/jenkins/model/BuildDiscarderProperty.java b/core/src/main/java/jenkins/model/BuildDiscarderProperty.java index 3113445efbd6..3128a56831eb 100644 --- a/core/src/main/java/jenkins/model/BuildDiscarderProperty.java +++ b/core/src/main/java/jenkins/model/BuildDiscarderProperty.java @@ -24,6 +24,7 @@ package jenkins.model; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.model.Descriptor; import hudson.model.DescriptorVisibilityFilter; @@ -53,6 +54,7 @@ public BuildDiscarder getStrategy() { @Symbol("buildDiscarder") public static class DescriptorImpl extends OptionalJobPropertyDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.BuildDiscarderProperty_displayName(); diff --git a/core/src/main/java/jenkins/model/DefaultUserCanonicalIdResolver.java b/core/src/main/java/jenkins/model/DefaultUserCanonicalIdResolver.java index bc7d92c8887f..c166ccbd414f 100644 --- a/core/src/main/java/jenkins/model/DefaultUserCanonicalIdResolver.java +++ b/core/src/main/java/jenkins/model/DefaultUserCanonicalIdResolver.java @@ -25,6 +25,7 @@ package jenkins.model; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.Functions; import hudson.model.Descriptor; @@ -58,7 +59,8 @@ public Descriptor getDescriptor() { return DESCRIPTOR; } - public static final Descriptor DESCRIPTOR = new Descriptor() { + public static final Descriptor DESCRIPTOR = new Descriptor<>() { + @NonNull @Override public String getDisplayName() { return "compute default user ID"; diff --git a/core/src/main/java/jenkins/model/GlobalBuildDiscarderConfiguration.java b/core/src/main/java/jenkins/model/GlobalBuildDiscarderConfiguration.java index ed0821a88556..023eb52a4ff6 100644 --- a/core/src/main/java/jenkins/model/GlobalBuildDiscarderConfiguration.java +++ b/core/src/main/java/jenkins/model/GlobalBuildDiscarderConfiguration.java @@ -28,7 +28,7 @@ import hudson.ExtensionList; import hudson.util.DescribableList; import java.io.IOException; -import java.util.Collections; +import java.util.List; import net.sf.json.JSONObject; import org.jenkinsci.Symbol; import org.kohsuke.accmod.Restricted; @@ -53,7 +53,7 @@ public GlobalBuildDiscarderConfiguration() { } private final DescribableList configuredBuildDiscarders = - new DescribableList<>(this, Collections.singletonList(new JobGlobalBuildDiscarderStrategy())); + new DescribableList<>(this, List.of(new JobGlobalBuildDiscarderStrategy())); private Object readResolve() { configuredBuildDiscarders.setOwner(this); diff --git a/core/src/main/java/jenkins/model/IdStrategy.java b/core/src/main/java/jenkins/model/IdStrategy.java index 34f798844e73..13cd86bd5a76 100644 --- a/core/src/main/java/jenkins/model/IdStrategy.java +++ b/core/src/main/java/jenkins/model/IdStrategy.java @@ -264,6 +264,7 @@ public int compare(@NonNull String id1, @NonNull String id2) { @Extension @Symbol("caseSensitive") public static class DescriptorImpl extends IdStrategyDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.IdStrategy_CaseSensitive_DisplayName(); @@ -308,6 +309,7 @@ public int compare(@NonNull String id1, @NonNull String id2) { @Extension public static class DescriptorImpl extends IdStrategyDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.IdStrategy_CaseSensitiveEmailAddress_DisplayName(); diff --git a/core/src/main/java/jenkins/model/Jenkins.java b/core/src/main/java/jenkins/model/Jenkins.java index 903cb61fe855..eb497797a5d9 100644 --- a/core/src/main/java/jenkins/model/Jenkins.java +++ b/core/src/main/java/jenkins/model/Jenkins.java @@ -337,6 +337,7 @@ * @author Kohsuke Kawaguchi */ @ExportedBean +@SuppressFBWarnings(value = "THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION", justification = "TODO needs triage") public class Jenkins extends AbstractCIBase implements DirectlyModifiableTopLevelItemGroup, StaplerProxy, StaplerFallback, ModifiableViewGroup, AccessControlled, DescriptorByNameOwner, ModelObjectWithContextMenu, ModelObjectWithChildren, OnMaster { @@ -1486,7 +1487,7 @@ public SecretKey getSecretKeyAsAES128() { * *

* This form of identifier is weak in that it can be impersonated by others. See - * https://github.com/jenkinsci/instance-identity-plugin for more modern form of instance ID + * the Instance Identity plugin for more modern form of instance ID * that can be challenged and verified. * * @since 1.498 @@ -4156,7 +4157,7 @@ public Map> getAllThreadDumps() throws IOException, try { r.put(e.getKey(), e.getValue().get(endTime - System.currentTimeMillis(), TimeUnit.MILLISECONDS)); } catch (Exception x) { - r.put(e.getKey(), Collections.singletonMap("Failed to retrieve thread dump", Functions.printThrowable(x))); + r.put(e.getKey(), Map.of("Failed to retrieve thread dump", Functions.printThrowable(x))); } } return Collections.unmodifiableSortedMap(new TreeMap<>(r)); @@ -5538,7 +5539,7 @@ public boolean shouldShowStackTrace() { * * The default value is true. * - * For detailed documentation: https://docs.microsoft.com/en-us/troubleshoot/windows-client/shell-experience/file-folder-name-whitespace-characters + * For detailed documentation: Support for Whitespace characters in File and Folder names for Windows * @see #checkGoodName(String) */ @Restricted(NoExternalUse.class) @@ -5672,7 +5673,7 @@ public boolean shouldShowStackTrace() { new AnonymousAuthenticationToken( "anonymous", "anonymous", - Collections.singleton(new SimpleGrantedAuthority("anonymous"))); + Set.of(new SimpleGrantedAuthority("anonymous"))); /** * @deprecated use {@link #ANONYMOUS2} diff --git a/core/src/main/java/jenkins/model/NewViewLink.java b/core/src/main/java/jenkins/model/NewViewLink.java index 17946e547236..65ce84928c34 100644 --- a/core/src/main/java/jenkins/model/NewViewLink.java +++ b/core/src/main/java/jenkins/model/NewViewLink.java @@ -26,7 +26,7 @@ public List createFor(final View v) { // do not show the action if the viewgroup is not modifiable ViewGroup vg = v.getOwner(); if (vg instanceof ModifiableViewGroup) { - return Collections.singletonList(new NewViewLinkAction((ModifiableViewGroup) vg)); + return List.of(new NewViewLinkAction((ModifiableViewGroup) vg)); } return Collections.emptyList(); } diff --git a/core/src/main/java/jenkins/model/Nodes.java b/core/src/main/java/jenkins/model/Nodes.java index c8ff0e283e9a..013860eccad2 100644 --- a/core/src/main/java/jenkins/model/Nodes.java +++ b/core/src/main/java/jenkins/model/Nodes.java @@ -26,6 +26,7 @@ import edu.umd.cs.findbugs.annotations.CheckForNull; import edu.umd.cs.findbugs.annotations.NonNull; +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import hudson.BulkChange; import hudson.Util; import hudson.XmlFile; @@ -61,6 +62,7 @@ * @since 1.607 */ @Restricted(NoExternalUse.class) // for now, we may make it public later +@SuppressFBWarnings(value = "THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION", justification = "TODO needs triage") public class Nodes implements Saveable { /** @@ -198,7 +200,7 @@ private void persistNode(final @NonNull Node node) throws IOException { public boolean updateNode(final @NonNull Node node) throws IOException { boolean exists; try { - exists = Queue.withLock(new Callable() { + exists = Queue.withLock(new Callable<>() { @Override public Boolean call() throws Exception { if (node == nodes.get(node.getNodeName())) { diff --git a/core/src/main/java/jenkins/model/ParameterizedJobMixIn.java b/core/src/main/java/jenkins/model/ParameterizedJobMixIn.java index d20746f4e0f5..ce4875138455 100644 --- a/core/src/main/java/jenkins/model/ParameterizedJobMixIn.java +++ b/core/src/main/java/jenkins/model/ParameterizedJobMixIn.java @@ -112,7 +112,7 @@ public final boolean scheduleBuild(int quietPeriod) { /** @see BuildableItem#scheduleBuild(int, Cause) */ public final boolean scheduleBuild(int quietPeriod, Cause c) { - return scheduleBuild2(quietPeriod, c != null ? Collections.singletonList(new CauseAction(c)) : Collections.emptyList()) != null; + return scheduleBuild2(quietPeriod, c != null ? List.of(new CauseAction(c)) : Collections.emptyList()) != null; } /** diff --git a/core/src/main/java/jenkins/model/RenameAction.java b/core/src/main/java/jenkins/model/RenameAction.java index 45ddbd529040..37a75c75862d 100644 --- a/core/src/main/java/jenkins/model/RenameAction.java +++ b/core/src/main/java/jenkins/model/RenameAction.java @@ -29,6 +29,7 @@ import hudson.model.Action; import java.util.Collection; import java.util.Collections; +import java.util.Set; import org.kohsuke.accmod.Restricted; import org.kohsuke.accmod.restrictions.NoExternalUse; @@ -61,7 +62,7 @@ public Class type() { @Override public Collection createFor(AbstractItem target) { if (target.isNameEditable()) { - return Collections.singleton(new RenameAction()); + return Set.of(new RenameAction()); } else { return Collections.emptyList(); } diff --git a/core/src/main/java/jenkins/model/RunIdMigrator.java b/core/src/main/java/jenkins/model/RunIdMigrator.java index a2e5b6656ec9..2a303d35610d 100644 --- a/core/src/main/java/jenkins/model/RunIdMigrator.java +++ b/core/src/main/java/jenkins/model/RunIdMigrator.java @@ -62,7 +62,6 @@ import java.util.logging.Logger; import java.util.regex.Matcher; import java.util.regex.Pattern; -import org.apache.commons.io.FileUtils; import org.apache.commons.lang.time.FastDateFormat; import org.apache.tools.ant.BuildException; import org.kohsuke.accmod.Restricted; @@ -109,7 +108,7 @@ private boolean load(File dir) { } idToNumber = new TreeMap<>(); try { - for (String line : FileUtils.readLines(f)) { + for (String line : Files.readAllLines(Util.fileToPath(f), StandardCharsets.UTF_8)) { int i = line.indexOf(' '); idToNumber.put(line.substring(0, i), Integer.parseInt(line.substring(i + 1))); } @@ -255,7 +254,7 @@ private void doMigrate(File dir) { LOGGER.log(WARNING, "found no build.xml in {0}", name); continue; } - String xml = FileUtils.readFileToString(buildXml, StandardCharsets.UTF_8); + String xml = Files.readString(Util.fileToPath(buildXml), StandardCharsets.UTF_8); Matcher m = NUMBER_ELT.matcher(xml); if (!m.find()) { LOGGER.log(WARNING, "could not find in {0}/build.xml", name); @@ -266,7 +265,7 @@ private void doMigrate(File dir) { xml = m.replaceFirst(" " + name + "" + nl + " " + timestamp + "" + nl); File newKid = new File(dir, Integer.toString(number)); move(kid, newKid); - FileUtils.writeStringToFile(new File(newKid, "build.xml"), xml, StandardCharsets.UTF_8); + Files.writeString(Util.fileToPath(newKid).resolve("build.xml"), xml, StandardCharsets.UTF_8); LOGGER.log(FINE, "fully processed {0} → {1}", new Object[] {name, number}); idToNumber.put(name, number); } catch (Exception x) { @@ -387,7 +386,7 @@ private void unmigrateBuildsDir(File builds) throws Exception { System.err.println(buildXml + " did not exist"); continue; } - String xml = FileUtils.readFileToString(buildXml, StandardCharsets.UTF_8); + String xml = Files.readString(Util.fileToPath(buildXml), StandardCharsets.UTF_8); Matcher m = TIMESTAMP_ELT.matcher(xml); if (!m.find()) { System.err.println(buildXml + " did not contain as expected"); @@ -405,7 +404,7 @@ private void unmigrateBuildsDir(File builds) throws Exception { // Post-migration build. We give it a new ID based on its timestamp. id = legacyIdFormatter.format(new Date(timestamp)); } - FileUtils.write(buildXml, xml, StandardCharsets.UTF_8); + Files.writeString(Util.fileToPath(buildXml), xml, StandardCharsets.UTF_8); if (!build.renameTo(new File(builds, id))) { System.err.println(build + " could not be renamed"); } diff --git a/core/src/main/java/jenkins/model/TransientActionFactory.java b/core/src/main/java/jenkins/model/TransientActionFactory.java index abcd32d71693..19d661b5a4a7 100644 --- a/core/src/main/java/jenkins/model/TransientActionFactory.java +++ b/core/src/main/java/jenkins/model/TransientActionFactory.java @@ -28,6 +28,7 @@ import com.google.common.cache.CacheLoader; import com.google.common.cache.LoadingCache; import edu.umd.cs.findbugs.annotations.NonNull; +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import hudson.ExtensionList; import hudson.ExtensionListListener; import hudson.ExtensionPoint; @@ -48,6 +49,7 @@ * @see Actionable#getAllActions * @since 1.548 */ +@SuppressFBWarnings(value = "THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION", justification = "TODO needs triage") public abstract class TransientActionFactory implements ExtensionPoint { /** @@ -103,11 +105,11 @@ public int hashCode() { @SuppressWarnings("rawtypes") private static final LoadingCache, LoadingCache>>> cache = - CacheBuilder.newBuilder().weakKeys().build(new CacheLoader, LoadingCache>>>() { + CacheBuilder.newBuilder().weakKeys().build(new CacheLoader<>() { @Override public LoadingCache>> load(final ExtensionList allFactories) throws Exception { final LoadingCache>> perJenkinsCache = - CacheBuilder.newBuilder().build(new CacheLoader>>() { + CacheBuilder.newBuilder().build(new CacheLoader<>() { @Override public List> load(CacheKey key) throws Exception { List> factories = new ArrayList<>(); diff --git a/core/src/main/java/jenkins/model/identity/IdentityRootAction.java b/core/src/main/java/jenkins/model/identity/IdentityRootAction.java index fdfee1cc79d9..c6e1109e3c29 100644 --- a/core/src/main/java/jenkins/model/identity/IdentityRootAction.java +++ b/core/src/main/java/jenkins/model/identity/IdentityRootAction.java @@ -1,5 +1,7 @@ package jenkins.model.identity; +import edu.umd.cs.findbugs.annotations.CheckForNull; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.model.UnprotectedRootAction; import java.nio.charset.StandardCharsets; @@ -11,7 +13,7 @@ * A simple root action that exposes the public key to users so that they do not need to search for the * {@code X-Instance-Identity} response header, also exposes the fingerprint of the public key so that people * can verify a fingerprint of a master before connecting to it. - * + *

Do not use this class from plugins. Depend on {@code instance-identity} directly instead. * @since 2.16 */ @Extension @@ -35,7 +37,9 @@ public String getUrlName() { * Returns the PEM encoded public key. * * @return the PEM encoded public key. + * Null if the {@code instance-identity} plugin is not enabled. */ + @CheckForNull public String getPublicKey() { RSAPublicKey key = InstanceIdentityProvider.RSA.getPublicKey(); if (key == null) { @@ -60,6 +64,7 @@ public String getPublicKey() { * * @return the fingerprint of the public key. */ + @NonNull public String getFingerprint() { return KeyUtils.fingerprint(InstanceIdentityProvider.RSA.getPublicKey()); } diff --git a/core/src/main/java/jenkins/model/identity/InstanceIdentityProvider.java b/core/src/main/java/jenkins/model/identity/InstanceIdentityProvider.java index 9e7cb7b3431a..d53e03d15973 100644 --- a/core/src/main/java/jenkins/model/identity/InstanceIdentityProvider.java +++ b/core/src/main/java/jenkins/model/identity/InstanceIdentityProvider.java @@ -40,10 +40,13 @@ import java.security.interfaces.RSAPublicKey; import java.util.logging.Level; import java.util.logging.Logger; +import org.kohsuke.accmod.Restricted; +import org.kohsuke.accmod.restrictions.NoExternalUse; /** * A source of instance identity. - * + *

Should not be used from plugins, except to be implemented by {@code instance-identity}. + * Other plugins wishing to get the RSA key may depend on {@code instance-identity} directly. * @param the type of public key. * @param the type of private key. * @since 2.16 @@ -58,16 +61,23 @@ public abstract class InstanceIdentityProvider RSA = new KeyTypes<>(RSAPublicKey.class, RSAPrivateKey.class); /** * DSA keys. + * @deprecated unused */ + @Restricted(NoExternalUse.class) + @Deprecated public static final KeyTypes DSA = new KeyTypes<>(DSAPublicKey.class, DSAPrivateKey.class); /** * EC keys + * @deprecated unused */ + @Restricted(NoExternalUse.class) + @Deprecated public static final KeyTypes EC = new KeyTypes<>(ECPublicKey.class, ECPrivateKey.class); @@ -77,6 +87,7 @@ public abstract class InstanceIdentityProvider the type of public key. * @param the type of private key. */ + @Restricted(NoExternalUse.class) public static final class KeyTypes { /** * The interface for the public key. @@ -154,6 +166,7 @@ private KeyTypes(Class pubKeyType, Class privKeyType) { private static InstanceIdentityProvider get( @NonNull KeyTypes type) { for (InstanceIdentityProvider provider : ExtensionList.lookup(InstanceIdentityProvider.class)) { + LOGGER.fine(() -> "loaded " + provider + " from " + provider.getClass().getProtectionDomain().getCodeSource().getLocation()); try { KeyPair keyPair = provider.getKeyPair(); if (keyPair != null @@ -173,6 +186,7 @@ private static InstanceIdentity "Instance identity provider " + provider + " propagated an uncaught exception", e); } } + LOGGER.fine("no providers"); return null; } diff --git a/core/src/main/java/jenkins/model/lazy/AbstractLazyLoadRunMap.java b/core/src/main/java/jenkins/model/lazy/AbstractLazyLoadRunMap.java index c601ffc77d69..edd335372e6b 100644 --- a/core/src/main/java/jenkins/model/lazy/AbstractLazyLoadRunMap.java +++ b/core/src/main/java/jenkins/model/lazy/AbstractLazyLoadRunMap.java @@ -114,7 +114,7 @@ public abstract class AbstractLazyLoadRunMap extends AbstractMap public Set keySet() { Set ks = keySet; if (ks == null) { - ks = new AbstractSet() { + ks = new AbstractSet<>() { @Override public Iterator iterator() { return new Iterator() { @@ -192,10 +192,10 @@ public boolean contains(Object k) { public Collection values() { Collection vals = values; if (vals == null) { - vals = new AbstractCollection() { + vals = new AbstractCollection<>() { @Override public Iterator iterator() { - return new Iterator() { + return new Iterator<>() { private final Iterator> it = entrySet().iterator(); @Override diff --git a/core/src/main/java/jenkins/model/lazy/BuildReferenceMapAdapter.java b/core/src/main/java/jenkins/model/lazy/BuildReferenceMapAdapter.java index 8546c89af61a..79984477a02a 100644 --- a/core/src/main/java/jenkins/model/lazy/BuildReferenceMapAdapter.java +++ b/core/src/main/java/jenkins/model/lazy/BuildReferenceMapAdapter.java @@ -182,7 +182,7 @@ public boolean contains(Object o) { public Iterator iterator() { // silently drop null, as if we didn't have them in this collection in the first place // this shouldn't be indistinguishable from concurrent modifications to the collection - return Iterators.removeNull(new AdaptedIterator, R>(core.iterator()) { + return Iterators.removeNull(new AdaptedIterator<>(core.iterator()) { @Override protected R adapt(BuildReference ref) { return unwrap(ref); @@ -299,7 +299,7 @@ public boolean contains(Object o) { @Override public Iterator> iterator() { - return Iterators.removeNull(new AdaptedIterator>, Entry>(core.iterator()) { + return Iterators.removeNull(new AdaptedIterator<>(core.iterator()) { @Override protected Entry adapt(Entry> e) { return _unwrap(e); diff --git a/core/src/main/java/jenkins/model/lazy/LazyBuildMixIn.java b/core/src/main/java/jenkins/model/lazy/LazyBuildMixIn.java index 3629f9d44df9..a677648de39a 100644 --- a/core/src/main/java/jenkins/model/lazy/LazyBuildMixIn.java +++ b/core/src/main/java/jenkins/model/lazy/LazyBuildMixIn.java @@ -160,7 +160,8 @@ public RunT create(File dir) throws IOException { /** * Loads an existing build record from disk. - * The default implementation just calls the ({@link Job}, {@link File}) constructor of {@link #getBuildClass}. + * The default implementation just calls the ({@link Job}, {@link File}) constructor of {@link #getBuildClass}, + * which will call {@link Run#Run(Job, File)}. */ public RunT loadBuild(File dir) throws IOException { try { @@ -174,7 +175,7 @@ public RunT loadBuild(File dir) throws IOException { /** * Creates a new build of this project for immediate execution. - * Calls the ({@link Job}) constructor of {@link #getBuildClass}. + * Calls the ({@link Job}) constructor of {@link #getBuildClass}, which will call {@link Run#Run(Job)}. * Suitable for {@link SubTask#createExecutable}. */ public final synchronized RunT newBuild() throws IOException { diff --git a/core/src/main/java/jenkins/model/lazy/LazyLoadRunMapEntrySet.java b/core/src/main/java/jenkins/model/lazy/LazyLoadRunMapEntrySet.java index c0ca1844224a..549be22f85c3 100644 --- a/core/src/main/java/jenkins/model/lazy/LazyLoadRunMapEntrySet.java +++ b/core/src/main/java/jenkins/model/lazy/LazyLoadRunMapEntrySet.java @@ -61,7 +61,7 @@ public boolean contains(Object o) { @Override public Iterator> iterator() { - return new Iterator>() { + return new Iterator<>() { R last = null; R next = owner.newestBuild(); diff --git a/core/src/main/java/jenkins/mvn/DefaultGlobalSettingsProvider.java b/core/src/main/java/jenkins/mvn/DefaultGlobalSettingsProvider.java index 1a7abfa74fb6..e870c98f7a0f 100644 --- a/core/src/main/java/jenkins/mvn/DefaultGlobalSettingsProvider.java +++ b/core/src/main/java/jenkins/mvn/DefaultGlobalSettingsProvider.java @@ -1,5 +1,6 @@ package jenkins.mvn; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.FilePath; import hudson.model.AbstractBuild; @@ -26,6 +27,7 @@ public FilePath supplySettings(AbstractBuild project, TaskListener listene @Extension(ordinal = 99) @Symbol("standard") public static class DescriptorImpl extends GlobalSettingsProviderDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.DefaultGlobalSettingsProvider_DisplayName(); diff --git a/core/src/main/java/jenkins/mvn/DefaultSettingsProvider.java b/core/src/main/java/jenkins/mvn/DefaultSettingsProvider.java index cc476146a461..4b4d41107cf3 100644 --- a/core/src/main/java/jenkins/mvn/DefaultSettingsProvider.java +++ b/core/src/main/java/jenkins/mvn/DefaultSettingsProvider.java @@ -1,5 +1,6 @@ package jenkins.mvn; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.FilePath; import hudson.model.AbstractBuild; @@ -26,6 +27,7 @@ public FilePath supplySettings(AbstractBuild project, TaskListener listene @Extension(ordinal = 99) @Symbol("standard") public static class DescriptorImpl extends SettingsProviderDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.DefaultSettingsProvider_DisplayName(); diff --git a/core/src/main/java/jenkins/mvn/FilePathGlobalSettingsProvider.java b/core/src/main/java/jenkins/mvn/FilePathGlobalSettingsProvider.java index a6edcef0298a..a0f81e09e21c 100644 --- a/core/src/main/java/jenkins/mvn/FilePathGlobalSettingsProvider.java +++ b/core/src/main/java/jenkins/mvn/FilePathGlobalSettingsProvider.java @@ -1,5 +1,6 @@ package jenkins.mvn; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.FilePath; import hudson.model.AbstractBuild; @@ -41,6 +42,7 @@ public FilePath supplySettings(AbstractBuild build, TaskListener listener) @Extension(ordinal = 10) public static class DescriptorImpl extends GlobalSettingsProviderDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.FilePathGlobalSettingsProvider_DisplayName(); diff --git a/core/src/main/java/jenkins/mvn/FilePathSettingsProvider.java b/core/src/main/java/jenkins/mvn/FilePathSettingsProvider.java index 232705246490..1079d8bb63f1 100644 --- a/core/src/main/java/jenkins/mvn/FilePathSettingsProvider.java +++ b/core/src/main/java/jenkins/mvn/FilePathSettingsProvider.java @@ -1,5 +1,6 @@ package jenkins.mvn; +import edu.umd.cs.findbugs.annotations.NonNull; import hudson.Extension; import hudson.FilePath; import hudson.model.AbstractBuild; @@ -41,6 +42,7 @@ public FilePath supplySettings(AbstractBuild build, TaskListener listener) @Extension(ordinal = 10) @Symbol("filePath") public static class DescriptorImpl extends SettingsProviderDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.FilePathSettingsProvider_DisplayName(); diff --git a/core/src/main/java/jenkins/plugins/DetachedPluginsUtil.java b/core/src/main/java/jenkins/plugins/DetachedPluginsUtil.java index 779ab79ace89..847180257c13 100644 --- a/core/src/main/java/jenkins/plugins/DetachedPluginsUtil.java +++ b/core/src/main/java/jenkins/plugins/DetachedPluginsUtil.java @@ -9,7 +9,6 @@ import java.io.InputStream; import java.nio.charset.StandardCharsets; import java.util.ArrayList; -import java.util.Collections; import java.util.List; import java.util.Set; import java.util.logging.Level; @@ -49,18 +48,18 @@ public class DetachedPluginsUtil { static { try (InputStream is = ClassicPluginStrategy.class.getResourceAsStream("/jenkins/split-plugins.txt")) { - DETACHED_LIST = Collections.unmodifiableList(configLines(is).map(line -> { + DETACHED_LIST = configLines(is).map(line -> { String[] pieces = line.split(" "); return new DetachedPluginsUtil.DetachedPlugin(pieces[0], pieces[1] + ".*", pieces[2]); - }).collect(Collectors.toList())); + }).collect(Collectors.toUnmodifiableList()); } catch (IOException x) { throw new ExceptionInInitializerError(x); } try (InputStream is = ClassicPluginStrategy.class.getResourceAsStream("/jenkins/split-plugin-cycles.txt")) { - BREAK_CYCLES = Collections.unmodifiableSet(configLines(is).collect(Collectors.toSet())); + BREAK_CYCLES = configLines(is).collect(Collectors.toUnmodifiableSet()); } catch (IOException x) { throw new ExceptionInInitializerError(x); } @@ -103,7 +102,7 @@ public static List getImpliedDependencies(String plugi */ public static @NonNull List getDetachedPlugins() { - return Collections.unmodifiableList(new ArrayList<>(DETACHED_LIST)); + return List.copyOf(DETACHED_LIST); } /** diff --git a/core/src/main/java/jenkins/scm/RunWithSCM.java b/core/src/main/java/jenkins/scm/RunWithSCM.java index f1fd092bf5ce..663da3797894 100644 --- a/core/src/main/java/jenkins/scm/RunWithSCM.java +++ b/core/src/main/java/jenkins/scm/RunWithSCM.java @@ -35,7 +35,6 @@ import hudson.scm.SCM; import hudson.util.AdaptedIterator; import java.util.AbstractSet; -import java.util.Collections; import java.util.HashSet; import java.util.Iterator; import java.util.List; @@ -96,12 +95,12 @@ public interface RunWithSCM, return calculateCulprits(); } - return new AbstractSet() { - private Set culpritIds = Collections.unmodifiableSet(new HashSet<>(getCulpritIds())); + return new AbstractSet<>() { + private Set culpritIds = Set.copyOf(getCulpritIds()); @Override public Iterator iterator() { - return new AdaptedIterator(culpritIds.iterator()) { + return new AdaptedIterator<>(culpritIds.iterator()) { @Override protected User adapt(String id) { // TODO: Probably it should not auto-create users diff --git a/core/src/main/java/jenkins/security/ApiTokenFilter.java b/core/src/main/java/jenkins/security/ApiTokenFilter.java index 6de444b0ae34..986408d62604 100644 --- a/core/src/main/java/jenkins/security/ApiTokenFilter.java +++ b/core/src/main/java/jenkins/security/ApiTokenFilter.java @@ -1,6 +1,5 @@ package jenkins.security; -import java.util.Collections; import java.util.List; import javax.servlet.Filter; @@ -20,6 +19,6 @@ public class ApiTokenFilter extends BasicHeaderProcessor { @Override protected List all() { - return Collections.singletonList(new BasicHeaderApiTokenAuthenticator()); + return List.of(new BasicHeaderApiTokenAuthenticator()); } } diff --git a/core/src/main/java/jenkins/security/ApiTokenProperty.java b/core/src/main/java/jenkins/security/ApiTokenProperty.java index 5ab7fc475e25..000913120bbf 100644 --- a/core/src/main/java/jenkins/security/ApiTokenProperty.java +++ b/core/src/main/java/jenkins/security/ApiTokenProperty.java @@ -408,6 +408,7 @@ public void revokeToken(@NonNull String tokenUuid) throws IOException { @Extension @Symbol("apiToken") public static final class DescriptorImpl extends UserPropertyDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.ApiTokenProperty_DisplayName(); diff --git a/core/src/main/java/jenkins/security/ClassFilterImpl.java b/core/src/main/java/jenkins/security/ClassFilterImpl.java index e918ccf96b27..70c37c4c944d 100644 --- a/core/src/main/java/jenkins/security/ClassFilterImpl.java +++ b/core/src/main/java/jenkins/security/ClassFilterImpl.java @@ -117,7 +117,7 @@ private static void mockOff() { static { try (InputStream is = ClassFilterImpl.class.getResourceAsStream("whitelisted-classes.txt")) { - WHITELISTED_CLASSES = Collections.unmodifiableSet(IOUtils.readLines(is, StandardCharsets.UTF_8).stream().filter(line -> !line.matches("#.*|\\s*")).collect(Collectors.toSet())); + WHITELISTED_CLASSES = IOUtils.readLines(is, StandardCharsets.UTF_8).stream().filter(line -> !line.matches("#.*|\\s*")).collect(Collectors.toUnmodifiableSet()); } catch (IOException x) { throw new ExceptionInInitializerError(x); } diff --git a/core/src/main/java/jenkins/security/HMACConfidentialKey.java b/core/src/main/java/jenkins/security/HMACConfidentialKey.java index de9d0fe7f68b..9faf2f629f84 100644 --- a/core/src/main/java/jenkins/security/HMACConfidentialKey.java +++ b/core/src/main/java/jenkins/security/HMACConfidentialKey.java @@ -17,7 +17,7 @@ * *

* This provides more secure version of it by using HMAC. - * See http://rdist.root.org/2009/10/29/stop-using-unsafe-keyed-hashes-use-hmac/ for background. + * See this blog post for background. * This implementation also never leaks the secret value to outside, so it makes it impossible * for the careless caller to misuse the key (thus protecting ourselves from our own stupidity!) * diff --git a/core/src/main/java/jenkins/security/ImpersonatingExecutorService.java b/core/src/main/java/jenkins/security/ImpersonatingExecutorService.java index daf2cc6b0f43..1fd8bfdca12f 100644 --- a/core/src/main/java/jenkins/security/ImpersonatingExecutorService.java +++ b/core/src/main/java/jenkins/security/ImpersonatingExecutorService.java @@ -24,6 +24,7 @@ package jenkins.security; +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import hudson.security.ACL; import hudson.security.ACLContext; import java.util.concurrent.Callable; @@ -36,6 +37,7 @@ * @see SecurityContextExecutorService * @since 2.51 */ +@SuppressFBWarnings(value = "THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION", justification = "TODO needs triage") public final class ImpersonatingExecutorService extends InterceptingExecutorService { private final Authentication authentication; @@ -73,7 +75,7 @@ public void run() { @Override protected Callable wrap(final Callable r) { - return new Callable() { + return new Callable<>() { @Override public V call() throws Exception { try (ACLContext ctxt = ACL.as2(authentication)) { diff --git a/core/src/main/java/jenkins/security/ImpersonatingScheduledExecutorService.java b/core/src/main/java/jenkins/security/ImpersonatingScheduledExecutorService.java index 788806869520..eb0e7ee83106 100644 --- a/core/src/main/java/jenkins/security/ImpersonatingScheduledExecutorService.java +++ b/core/src/main/java/jenkins/security/ImpersonatingScheduledExecutorService.java @@ -24,6 +24,7 @@ package jenkins.security; +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import hudson.security.ACL; import hudson.security.ACLContext; import java.util.concurrent.Callable; @@ -35,6 +36,7 @@ * Variant of {@link ImpersonatingExecutorService} for scheduled services. * @since 2.51 */ +@SuppressFBWarnings(value = "THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION", justification = "TODO needs triage") public final class ImpersonatingScheduledExecutorService extends InterceptingScheduledExecutorService { private final Authentication authentication; @@ -72,7 +74,7 @@ public void run() { @Override protected Callable wrap(final Callable r) { - return new Callable() { + return new Callable<>() { @Override public V call() throws Exception { try (ACLContext ctxt = ACL.as2(authentication)) { diff --git a/core/src/main/java/jenkins/security/LastGrantedAuthoritiesProperty.java b/core/src/main/java/jenkins/security/LastGrantedAuthoritiesProperty.java index 0ae1f683d8d6..52f74d452ffa 100644 --- a/core/src/main/java/jenkins/security/LastGrantedAuthoritiesProperty.java +++ b/core/src/main/java/jenkins/security/LastGrantedAuthoritiesProperty.java @@ -11,8 +11,8 @@ import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; -import java.util.Collections; import java.util.List; +import java.util.Set; import java.util.logging.Level; import java.util.logging.Logger; import jenkins.model.Jenkins; @@ -55,7 +55,7 @@ public Collection getAuthorities2() { String[] roles = this.roles; // capture to a variable for immutability if (roles == null) { - return Collections.singleton(SecurityRealm.AUTHENTICATED_AUTHORITY2); + return Set.of(SecurityRealm.AUTHENTICATED_AUTHORITY2); } String authenticatedRole = SecurityRealm.AUTHENTICATED_AUTHORITY2.getAuthority(); diff --git a/core/src/main/java/jenkins/security/SecurityContextExecutorService.java b/core/src/main/java/jenkins/security/SecurityContextExecutorService.java index e2dfe2b9452e..6813f36ea541 100644 --- a/core/src/main/java/jenkins/security/SecurityContextExecutorService.java +++ b/core/src/main/java/jenkins/security/SecurityContextExecutorService.java @@ -27,6 +27,7 @@ import static org.springframework.security.core.context.SecurityContextHolder.getContext; import static org.springframework.security.core.context.SecurityContextHolder.setContext; +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import java.util.concurrent.Callable; import java.util.concurrent.ExecutorService; import jenkins.util.InterceptingExecutorService; @@ -43,6 +44,7 @@ * @author Kohsuke Kawaguchi * @since 1.561 */ +@SuppressFBWarnings(value = "THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION", justification = "TODO needs triage") public class SecurityContextExecutorService extends InterceptingExecutorService { public SecurityContextExecutorService(ExecutorService service) { @@ -69,7 +71,7 @@ public void run() { @Override protected Callable wrap(final Callable c) { final SecurityContext callingContext = getContext(); - return new Callable() { + return new Callable<>() { @Override public V call() throws Exception { SecurityContext old = getContext(); diff --git a/core/src/main/java/jenkins/security/stapler/StaplerDispatchValidator.java b/core/src/main/java/jenkins/security/stapler/StaplerDispatchValidator.java index 97b0f782a224..eebfcfdacf0e 100644 --- a/core/src/main/java/jenkins/security/stapler/StaplerDispatchValidator.java +++ b/core/src/main/java/jenkins/security/stapler/StaplerDispatchValidator.java @@ -189,7 +189,7 @@ static StaplerDispatchValidator getInstance(@NonNull ServletContext context) { @VisibleForTesting void loadWhitelist(@NonNull InputStream in) throws IOException { - cache.loadWhitelist(IOUtils.readLines(in)); + cache.loadWhitelist(IOUtils.readLines(in, StandardCharsets.UTF_8)); } private static class ValidatorCache { @@ -280,7 +280,7 @@ private void load() { Path configFile = whitelist != null ? Paths.get(whitelist) : Jenkins.get().getRootDir().toPath().resolve("stapler-views-whitelist.txt"); if (Files.exists(configFile)) { try { - loadWhitelist(Files.readAllLines(configFile)); + loadWhitelist(Files.readAllLines(configFile, StandardCharsets.UTF_8)); } catch (IOException e) { LOGGER.log(Level.WARNING, e, () -> "Could not load user defined whitelist from " + configFile); } diff --git a/core/src/main/java/jenkins/security/stapler/StaticRoutingDecisionProvider.java b/core/src/main/java/jenkins/security/stapler/StaticRoutingDecisionProvider.java index d4edd7aaf2d7..abc61baf042b 100644 --- a/core/src/main/java/jenkins/security/stapler/StaticRoutingDecisionProvider.java +++ b/core/src/main/java/jenkins/security/stapler/StaticRoutingDecisionProvider.java @@ -30,11 +30,13 @@ import hudson.BulkChange; import hudson.Extension; import hudson.ExtensionList; +import hudson.Util; import hudson.model.Saveable; import java.io.File; import java.io.IOException; import java.io.InputStream; import java.nio.charset.StandardCharsets; +import java.nio.file.Files; import java.util.ArrayList; import java.util.HashSet; import java.util.List; @@ -43,7 +45,6 @@ import java.util.logging.Logger; import jenkins.model.Jenkins; import jenkins.util.SystemProperties; -import org.apache.commons.io.FileUtils; import org.apache.commons.io.IOUtils; import org.kohsuke.accmod.Restricted; import org.kohsuke.accmod.restrictions.NoExternalUse; @@ -202,7 +203,7 @@ public synchronized void save() { .map(signature -> "!" + signature) .forEach(allSignatures::add); - FileUtils.writeLines(file, allSignatures); + Files.write(Util.fileToPath(file), allSignatures, StandardCharsets.UTF_8); } catch (IOException e) { LOGGER.log(Level.WARNING, "Failed to save " + file.getAbsolutePath(), e); } @@ -235,7 +236,7 @@ private synchronized void reloadFromUserControlledList() { blacklistSignaturesFromUserControlledList = new HashSet<>(); parseFileIntoList( - FileUtils.readLines(file, StandardCharsets.UTF_8), + Files.readAllLines(Util.fileToPath(file), StandardCharsets.UTF_8), whitelistSignaturesFromUserControlledList, blacklistSignaturesFromUserControlledList ); diff --git a/core/src/main/java/jenkins/security/stapler/WebMethodConstants.java b/core/src/main/java/jenkins/security/stapler/WebMethodConstants.java index ce33e886a83f..90e14912005d 100644 --- a/core/src/main/java/jenkins/security/stapler/WebMethodConstants.java +++ b/core/src/main/java/jenkins/security/stapler/WebMethodConstants.java @@ -25,7 +25,6 @@ package jenkins.security.stapler; import java.lang.annotation.Annotation; -import java.util.Arrays; import java.util.Collections; import java.util.List; import java.util.Set; @@ -49,12 +48,12 @@ final class WebMethodConstants { /** * If a method has at least one of those parameters, it is considered as an implicit web method */ - private static final List> WEB_METHOD_PARAMETERS = Collections.unmodifiableList(Arrays.asList( + private static final List> WEB_METHOD_PARAMETERS = List.of( StaplerRequest.class, HttpServletRequest.class, StaplerResponse.class, HttpServletResponse.class - )); + ); static final Set WEB_METHOD_PARAMETERS_NAMES = Collections.unmodifiableSet( WEB_METHOD_PARAMETERS.stream() @@ -66,7 +65,7 @@ final class WebMethodConstants { * If a method is annotated with one of those annotations, * the method is considered as an explicit web method */ - static final List> WEB_METHOD_ANNOTATIONS = Collections.singletonList( + static final List> WEB_METHOD_ANNOTATIONS = List.of( WebMethod.class // plus every annotation that's annotated with InterceptorAnnotation // JavaScriptMethod.class not taken here because it's a special case @@ -86,13 +85,13 @@ final class WebMethodConstants { * If at least one parameter of the method is annotated with one of those annotations, * the method is considered as an implicit web method */ - private static final List> WEB_METHOD_PARAMETER_ANNOTATIONS = Collections.unmodifiableList(Arrays.asList( + private static final List> WEB_METHOD_PARAMETER_ANNOTATIONS = List.of( QueryParameter.class, AncestorInPath.class, Header.class, JsonBody.class, SubmittedForm.class - )); + ); static final Set WEB_METHOD_PARAMETER_ANNOTATION_NAMES = Collections.unmodifiableSet( WEB_METHOD_PARAMETER_ANNOTATIONS.stream() diff --git a/core/src/main/java/jenkins/slaves/DefaultJnlpSlaveReceiver.java b/core/src/main/java/jenkins/slaves/DefaultJnlpSlaveReceiver.java index f130fdf27a73..54501a46345a 100644 --- a/core/src/main/java/jenkins/slaves/DefaultJnlpSlaveReceiver.java +++ b/core/src/main/java/jenkins/slaves/DefaultJnlpSlaveReceiver.java @@ -150,14 +150,14 @@ public void afterProperties(@NonNull JnlpConnectionState event) { } @Override + @SuppressFBWarnings(value = "OS_OPEN_STREAM", justification = "Closed by hudson.slaves.SlaveComputer#kill") public void beforeChannel(@NonNull JnlpConnectionState event) { DefaultJnlpSlaveReceiver.State state = event.getStash(DefaultJnlpSlaveReceiver.State.class); final SlaveComputer computer = state.getNode(); final OutputStream log = computer.openLogFile(); state.setLog(log); - try (PrintWriter logw = new PrintWriter(new OutputStreamWriter(log, /* TODO switch agent logs to UTF-8 */ Charset.defaultCharset()), true)) { - logw.println("Inbound agent connected from " + event.getRemoteEndpointDescription()); - } + PrintWriter logw = new PrintWriter(new OutputStreamWriter(log, /* TODO switch agent logs to UTF-8 */ Charset.defaultCharset()), true); // Closed by hudson.slaves.SlaveComputer#kill + logw.println("Inbound agent connected from " + event.getRemoteEndpointDescription()); for (ChannelConfigurator cc : ChannelConfigurator.all()) { cc.onChannelBuilding(event.getChannelBuilder(), computer); } diff --git a/core/src/main/java/jenkins/slaves/JnlpSlaveAgentProtocol4.java b/core/src/main/java/jenkins/slaves/JnlpSlaveAgentProtocol4.java index f3a75795df6c..75ef3851164a 100644 --- a/core/src/main/java/jenkins/slaves/JnlpSlaveAgentProtocol4.java +++ b/core/src/main/java/jenkins/slaves/JnlpSlaveAgentProtocol4.java @@ -37,7 +37,7 @@ import java.security.cert.CertificateException; import java.security.cert.X509Certificate; import java.security.interfaces.RSAPrivateKey; -import java.util.Collections; +import java.util.Map; import java.util.concurrent.TimeUnit; import java.util.logging.Level; import java.util.logging.Logger; @@ -103,11 +103,11 @@ public JnlpSlaveAgentProtocol4() throws KeyStoreException, KeyManagementExceptio // prepare our local identity and certificate X509Certificate identityCertificate = InstanceIdentityProvider.RSA.getCertificate(); if (identityCertificate == null) { - throw new KeyStoreException("JENKINS-41987: no X509Certificate found; perhaps instance-identity module is missing or too old"); + throw new KeyStoreException("JENKINS-41987: no X509Certificate found; perhaps instance-identity plugin is not installed"); } RSAPrivateKey privateKey = InstanceIdentityProvider.RSA.getPrivateKey(); if (privateKey == null) { - throw new KeyStoreException("JENKINS-41987: no RSAPrivateKey found; perhaps instance-identity module is missing or too old"); + throw new KeyStoreException("JENKINS-41987: no RSAPrivateKey found; perhaps instance-identity plugin is not installed"); } // prepare our keyStore so we can provide our authentication @@ -194,7 +194,7 @@ public void handle(Socket socket) throws IOException, InterruptedException { LOGGER.log(Level.FINEST, "Ignored", e); } handler.handle(socket, - Collections.singletonMap(JnlpConnectionState.COOKIE_KEY, JnlpAgentReceiver.generateCookie()), + Map.of(JnlpConnectionState.COOKIE_KEY, JnlpAgentReceiver.generateCookie()), ExtensionList.lookup(JnlpAgentReceiver.class)); } diff --git a/core/src/main/java/jenkins/slaves/restarter/UnixSlaveRestarter.java b/core/src/main/java/jenkins/slaves/restarter/UnixSlaveRestarter.java index 9167e0f5a296..0dd5619f059d 100644 --- a/core/src/main/java/jenkins/slaves/restarter/UnixSlaveRestarter.java +++ b/core/src/main/java/jenkins/slaves/restarter/UnixSlaveRestarter.java @@ -13,6 +13,8 @@ import java.io.IOException; import java.nio.file.Files; import java.nio.file.InvalidPathException; +import java.nio.file.Path; +import java.nio.file.Paths; import java.util.List; import java.util.logging.Logger; import jenkins.util.JavaVMArguments; @@ -67,20 +69,30 @@ public void restart() throws Exception { * Gets the current executable name. */ private static String getCurrentExecutable() { - int pid = LIBC.getpid(); + ProcessHandle.Info info = ProcessHandle.current().info(); + if (info.command().isPresent()) { + // Java 9+ approach + return info.command().get(); + } + + // Native approach + long pid = ProcessHandle.current().pid(); String name = "/proc/" + pid + "/exe"; - File exe = new File(name); - if (exe.exists()) { - try { - return Files.readSymbolicLink(exe.toPath()).toString(); - } catch (IOException | InvalidPathException | UnsupportedOperationException e) { - LOGGER.log(FINE, "Failed to resolve symlink " + exe, e); + try { + Path exe = Paths.get(name); + if (Files.exists(exe)) { + if (Files.isSymbolicLink(exe)) { + return Files.readSymbolicLink(exe).toString(); + } else { + return exe.toString(); + } } - return name; + } catch (IOException | InvalidPathException | UnsupportedOperationException e) { + LOGGER.log(FINE, "Failed to resolve " + name, e); } - // cross-platform fallback - return System.getProperty("java.home") + "/bin/java"; + // Legacy approach of last resort + return Paths.get(System.getProperty("java.home")).resolve("bin").resolve("java").toString(); } private static final Logger LOGGER = Logger.getLogger(UnixSlaveRestarter.class.getName()); diff --git a/core/src/main/java/jenkins/telemetry/Telemetry.java b/core/src/main/java/jenkins/telemetry/Telemetry.java index a7165df97746..7780b5642fce 100644 --- a/core/src/main/java/jenkins/telemetry/Telemetry.java +++ b/core/src/main/java/jenkins/telemetry/Telemetry.java @@ -81,7 +81,7 @@ public abstract class Telemetry implements ExtensionPoint { * * Good IDs are globally unique and human readable (i.e. no UUIDs). * - * For a periodically updated list of all public implementations, see https://www.jenkins.io/doc/developer/extensions/jenkins-core/#telemetry + * For a periodically updated list of all public implementations, see the developer documentation. * * @return ID of the collector, never null or empty */ diff --git a/core/src/main/java/jenkins/triggers/ReverseBuildTrigger.java b/core/src/main/java/jenkins/triggers/ReverseBuildTrigger.java index 2efe76a6f9d4..87ace6af6e94 100644 --- a/core/src/main/java/jenkins/triggers/ReverseBuildTrigger.java +++ b/core/src/main/java/jenkins/triggers/ReverseBuildTrigger.java @@ -193,6 +193,7 @@ private boolean shouldTrigger(Run upstreamBuild, TaskListener listener) { @Extension @Symbol("upstream") public static final class DescriptorImpl extends TriggerDescriptor { + @NonNull @Override public String getDisplayName() { return Messages.ReverseBuildTrigger_build_after_other_projects_are_built(); } diff --git a/core/src/main/java/jenkins/triggers/SCMTriggerItem.java b/core/src/main/java/jenkins/triggers/SCMTriggerItem.java index 8461e2f3afea..5e8062c20958 100644 --- a/core/src/main/java/jenkins/triggers/SCMTriggerItem.java +++ b/core/src/main/java/jenkins/triggers/SCMTriggerItem.java @@ -38,6 +38,7 @@ import hudson.triggers.SCMTrigger; import java.util.Collection; import java.util.Collections; +import java.util.Set; import java.util.logging.Level; import java.util.logging.Logger; import jenkins.model.ParameterizedJobMixIn; @@ -167,10 +168,10 @@ private static final class Bridge implements SCMTriggerItem { return (Collection) scm.getClass().getMethod("getConfiguredSCMs").invoke(scm); } catch (Exception x) { Logger.getLogger(SCMTriggerItem.class.getName()).log(Level.WARNING, null, x); - return Collections.singleton(scm); + return Set.of(scm); } } else { - return Collections.singleton(scm); + return Set.of(scm); } } diff --git a/core/src/main/java/jenkins/util/AtmostOneTaskExecutor.java b/core/src/main/java/jenkins/util/AtmostOneTaskExecutor.java index 6347842856f1..3e7dd9f0f3ef 100644 --- a/core/src/main/java/jenkins/util/AtmostOneTaskExecutor.java +++ b/core/src/main/java/jenkins/util/AtmostOneTaskExecutor.java @@ -44,6 +44,7 @@ * @author Kohsuke Kawaguchi * @see AtmostOneThreadExecutor */ +@SuppressFBWarnings(value = "THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION", justification = "TODO needs triage") public class AtmostOneTaskExecutor { private static final Logger LOGGER = Logger.getLogger(AtmostOneTaskExecutor.class.getName()); diff --git a/core/src/main/java/jenkins/util/ContextResettingExecutorService.java b/core/src/main/java/jenkins/util/ContextResettingExecutorService.java index 8492719491ea..6ef15fd016c6 100644 --- a/core/src/main/java/jenkins/util/ContextResettingExecutorService.java +++ b/core/src/main/java/jenkins/util/ContextResettingExecutorService.java @@ -1,5 +1,6 @@ package jenkins.util; +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import java.util.concurrent.Callable; import java.util.concurrent.ExecutorService; @@ -11,6 +12,7 @@ * * @author Kohsuke Kawaguchi */ +@SuppressFBWarnings(value = "THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION", justification = "TODO needs triage") public class ContextResettingExecutorService extends InterceptingExecutorService { public ContextResettingExecutorService(ExecutorService base) { super(base); @@ -36,7 +38,7 @@ public void run() { @Override protected Callable wrap(final Callable r) { - return new Callable() { + return new Callable<>() { @Override public V call() throws Exception { Thread t = Thread.currentThread(); diff --git a/core/src/main/java/jenkins/util/DirectedGraph.java b/core/src/main/java/jenkins/util/DirectedGraph.java index ab1ada4422c1..8e836d88379c 100644 --- a/core/src/main/java/jenkins/util/DirectedGraph.java +++ b/core/src/main/java/jenkins/util/DirectedGraph.java @@ -93,7 +93,7 @@ Collection edges() { * Performs the Tarjan's algorithm and computes strongly-connected components from the * sink to source order. * - * See https://en.wikipedia.org/wiki/Tarjan's_strongly_connected_components_algorithm + * See the Wikipedia page. */ public List> getStronglyConnectedComponents() { final Map nodes = new HashMap<>(); diff --git a/core/src/main/java/jenkins/util/JavaVMArguments.java b/core/src/main/java/jenkins/util/JavaVMArguments.java index c4ce9ce6158d..473849a9922e 100644 --- a/core/src/main/java/jenkins/util/JavaVMArguments.java +++ b/core/src/main/java/jenkins/util/JavaVMArguments.java @@ -1,12 +1,13 @@ package jenkins.util; +import com.google.common.primitives.Ints; import hudson.Functions; import hudson.util.ProcessTree; -import hudson.util.jna.GNUCLibrary; import java.lang.management.ManagementFactory; import java.nio.file.Paths; import java.util.ArrayList; import java.util.List; +import java.util.stream.Stream; import org.kohsuke.accmod.Restricted; import org.kohsuke.accmod.restrictions.NoExternalUse; @@ -20,9 +21,16 @@ public class JavaVMArguments { * Gets the process argument list of the current process. */ public static List current() { - // Native approach - if (Functions.isGlibcSupported()) { - int pid = GNUCLibrary.LIBC.getpid(); + ProcessHandle.Info info = ProcessHandle.current().info(); + if (info.command().isPresent() && info.arguments().isPresent()) { + // Java 9+ approach + List args = new ArrayList<>(); + args.add(info.command().get()); + Stream.of(info.arguments().get()).forEach(args::add); + return args; + } else if (Functions.isGlibcSupported()) { + // Native approach + int pid = Ints.checkedCast(ProcessHandle.current().pid()); ProcessTree.OSProcess process = ProcessTree.get().get(pid); if (process != null) { List args = process.getArguments(); @@ -32,7 +40,7 @@ public static List current() { } } - // Cross-platform approach + // Legacy approach of last resort List args = new ArrayList<>(); args.add( Paths.get(System.getProperty("java.home")) diff --git a/core/src/main/java/jenkins/util/ProgressiveRendering.java b/core/src/main/java/jenkins/util/ProgressiveRendering.java index 42ef0b76861a..b71482da2d24 100644 --- a/core/src/main/java/jenkins/util/ProgressiveRendering.java +++ b/core/src/main/java/jenkins/util/ProgressiveRendering.java @@ -25,6 +25,7 @@ package jenkins.util; import edu.umd.cs.findbugs.annotations.NonNull; +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import hudson.model.AbstractItem; import java.lang.reflect.Field; import java.lang.reflect.InvocationHandler; @@ -73,6 +74,7 @@ * {@code ui-samples-plugin} demonstrates all this. * @since 1.484 */ +@SuppressFBWarnings(value = "THROWS_METHOD_THROWS_CLAUSE_THROWABLE", justification = "TODO needs triage") public abstract class ProgressiveRendering { private static final Logger LOG = Logger.getLogger(ProgressiveRendering.class.getName()); diff --git a/core/src/main/java/jenkins/util/TreeStringBuilder.java b/core/src/main/java/jenkins/util/TreeStringBuilder.java index 15d076cc0ab8..653df3a0ff63 100644 --- a/core/src/main/java/jenkins/util/TreeStringBuilder.java +++ b/core/src/main/java/jenkins/util/TreeStringBuilder.java @@ -141,7 +141,7 @@ public TreeString intern(final TreeString s) { * multiple {@link TreeString}s. */ public void dedup() { - root.dedup(new HashMap()); + root.dedup(new HashMap<>()); } /** diff --git a/core/src/main/java/jenkins/util/io/PathRemover.java b/core/src/main/java/jenkins/util/io/PathRemover.java index bf8ff997d4e4..7a47ba23b6b1 100644 --- a/core/src/main/java/jenkins/util/io/PathRemover.java +++ b/core/src/main/java/jenkins/util/io/PathRemover.java @@ -72,7 +72,7 @@ private PathRemover(@NonNull RetryStrategy retryStrategy, @NonNull PathChecker p public void forceRemoveFile(@NonNull Path path) throws IOException { for (int retryAttempts = 0; ; retryAttempts++) { Optional maybeError = tryRemoveFile(path); - if (!maybeError.isPresent()) return; + if (maybeError.isEmpty()) return; if (retryStrategy.shouldRetry(retryAttempts)) continue; IOException error = maybeError.get(); throw new IOException(retryStrategy.failureMessage(path, retryAttempts), error); diff --git a/core/src/main/java/jenkins/util/java/JavaUtils.java b/core/src/main/java/jenkins/util/java/JavaUtils.java index ef0618671aae..55ce4a1f7fc7 100644 --- a/core/src/main/java/jenkins/util/java/JavaUtils.java +++ b/core/src/main/java/jenkins/util/java/JavaUtils.java @@ -67,7 +67,7 @@ public static JavaSpecificationVersion getCurrentJavaRuntimeVersionNumber() { /** * Returns the JVM's current version as a {@link String}. - * See https://openjdk.java.net/jeps/223 for the expected format. + * See JEP 223 for the expected format. *

    *
  • Until Java 8 included, the expected format should be starting with {@code 1.x}
  • *
  • Starting with Java 9, cf. JEP-223 linked above, the version got simplified in 9.x, 10.x, etc.
  • diff --git a/core/src/main/java/jenkins/util/xml/FilteredFunctionContext.java b/core/src/main/java/jenkins/util/xml/FilteredFunctionContext.java index e860cca3b3f5..e9a38aa4c3fb 100644 --- a/core/src/main/java/jenkins/util/xml/FilteredFunctionContext.java +++ b/core/src/main/java/jenkins/util/xml/FilteredFunctionContext.java @@ -25,8 +25,6 @@ package jenkins.util.xml; -import java.util.Collections; -import java.util.HashSet; import java.util.Locale; import java.util.Set; import org.jaxen.Function; @@ -51,9 +49,7 @@ public class FilteredFunctionContext implements FunctionContext { /** * Default set of "bad" function names. */ - private static final Set DEFAULT_ILLEGAL_FUNCTIONS = Collections.unmodifiableSet(new HashSet<>( - Collections.singletonList("document") - )); + private static final Set DEFAULT_ILLEGAL_FUNCTIONS = Set.of("document"); private final FunctionContext base; private final Set illegalFunctions; diff --git a/core/src/main/java/jenkins/websocket/WebSocketEcho.java b/core/src/main/java/jenkins/websocket/WebSocketEcho.java index 6b370bba5f69..b1576690ba8b 100644 --- a/core/src/main/java/jenkins/websocket/WebSocketEcho.java +++ b/core/src/main/java/jenkins/websocket/WebSocketEcho.java @@ -27,6 +27,7 @@ import hudson.Extension; import hudson.model.InvisibleAction; import hudson.model.RootAction; +import java.io.IOException; import java.nio.ByteBuffer; import jenkins.model.Jenkins; import org.kohsuke.accmod.Restricted; @@ -46,12 +47,12 @@ public HttpResponse doIndex() { Jenkins.get().checkPermission(Jenkins.ADMINISTER); return WebSockets.upgrade(new WebSocketSession() { @Override - protected void text(String message) { + protected void text(String message) throws IOException { sendText("hello " + message); } @Override - protected void binary(byte[] payload, int offset, int len) { + protected void binary(byte[] payload, int offset, int len) throws IOException { ByteBuffer data = ByteBuffer.allocate(len); for (int i = 0; i < len; i++) { byte b = payload[offset + i]; diff --git a/core/src/main/java/jenkins/websocket/WebSocketSession.java b/core/src/main/java/jenkins/websocket/WebSocketSession.java index 4eb36ed4e167..341be5ea71c5 100644 --- a/core/src/main/java/jenkins/websocket/WebSocketSession.java +++ b/core/src/main/java/jenkins/websocket/WebSocketSession.java @@ -24,6 +24,7 @@ package jenkins.websocket; +import java.io.IOException; import java.lang.reflect.Method; import java.nio.ByteBuffer; import java.util.concurrent.Future; @@ -114,45 +115,45 @@ protected void error(Throwable cause) { LOGGER.log(Level.WARNING, "unhandled WebSocket service error", cause); } - protected void binary(byte[] payload, int offset, int len) { + protected void binary(byte[] payload, int offset, int len) throws IOException { LOGGER.warning("unexpected binary frame"); } - protected void text(String message) { + protected void text(String message) throws IOException { LOGGER.warning("unexpected text frame"); } @SuppressWarnings("unchecked") - protected final Future sendBinary(ByteBuffer data) { + protected final Future sendBinary(ByteBuffer data) throws IOException { try { return (Future) remoteEndpoint.getClass().getMethod("sendBytesByFuture", ByteBuffer.class).invoke(remoteEndpoint, data); } catch (Exception x) { - throw new RuntimeException(x); + throw new IOException(x); } } - protected final void sendBinary(ByteBuffer partialByte, boolean isLast) { + protected final void sendBinary(ByteBuffer partialByte, boolean isLast) throws IOException { try { remoteEndpoint.getClass().getMethod("sendPartialBytes", ByteBuffer.class, boolean.class).invoke(remoteEndpoint, partialByte, isLast); } catch (Exception x) { - throw new RuntimeException(x); + throw new IOException(x); } } @SuppressWarnings("unchecked") - protected final Future sendText(String text) { + protected final Future sendText(String text) throws IOException { try { return (Future) remoteEndpoint.getClass().getMethod("sendStringByFuture", String.class).invoke(remoteEndpoint, text); } catch (Exception x) { - throw new RuntimeException(x); + throw new IOException(x); } } - protected final void close() { + protected final void close() throws IOException { try { session.getClass().getMethod("close").invoke(session); } catch (Exception x) { - throw new RuntimeException(x); + throw new IOException(x); } } diff --git a/core/src/main/java/org/acegisecurity/providers/dao/AbstractUserDetailsAuthenticationProvider.java b/core/src/main/java/org/acegisecurity/providers/dao/AbstractUserDetailsAuthenticationProvider.java index 1eaf27beac4d..7b8d5f5afb2f 100644 --- a/core/src/main/java/org/acegisecurity/providers/dao/AbstractUserDetailsAuthenticationProvider.java +++ b/core/src/main/java/org/acegisecurity/providers/dao/AbstractUserDetailsAuthenticationProvider.java @@ -24,6 +24,7 @@ package org.acegisecurity.providers.dao; +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import org.acegisecurity.AcegiSecurityException; import org.acegisecurity.Authentication; import org.acegisecurity.AuthenticationException; @@ -35,6 +36,7 @@ * @deprecated use {@link org.springframework.security.authentication.dao.AbstractUserDetailsAuthenticationProvider} */ @Deprecated +@SuppressFBWarnings(value = "THROWS_METHOD_THROWS_RUNTIMEEXCEPTION", justification = "TODO needs triage") public abstract class AbstractUserDetailsAuthenticationProvider implements AuthenticationProvider { private final org.springframework.security.authentication.dao.AbstractUserDetailsAuthenticationProvider delegate = diff --git a/core/src/main/java/org/jenkins/ui/icon/IconSet.java b/core/src/main/java/org/jenkins/ui/icon/IconSet.java index 13e6716d2a0d..f628a7dd0299 100644 --- a/core/src/main/java/org/jenkins/ui/icon/IconSet.java +++ b/core/src/main/java/org/jenkins/ui/icon/IconSet.java @@ -24,6 +24,9 @@ package org.jenkins.ui.icon; +import edu.umd.cs.findbugs.annotations.CheckForNull; +import edu.umd.cs.findbugs.annotations.NonNull; +import hudson.Functions; import hudson.PluginWrapper; import hudson.Util; import java.io.IOException; @@ -34,6 +37,7 @@ import java.util.List; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; +import java.util.function.Supplier; import jenkins.model.Jenkins; import org.apache.commons.io.IOUtils; import org.apache.commons.jelly.JellyContext; @@ -74,7 +78,7 @@ public static void initPageVariables(JellyContext context) { private static String prependTitleIfRequired(String icon, String title) { if (StringUtils.isNotBlank(title)) { - return "" + title + "" + icon; + return "" + Util.xmlEscape(title) + "" + icon; } return icon; } @@ -93,12 +97,12 @@ public static String getSymbol(String name, String title, String tooltip, String symbol = symbol.replaceAll("(tooltip=\")[^&]*?(\")", ""); symbol = symbol.replaceAll("(id=\")[^&]*?(\")", ""); if (!tooltip.isEmpty()) { - symbol = symbol.replaceAll(" ICON_TO_SYMBOL_TRANSLATIONS; + static { Map translations = new HashMap<>(); translations.put("icon-application-certificate", "symbol-ribbon"); translations.put("icon-document", "symbol-document-text"); @@ -598,9 +595,32 @@ public static String tryTranslateTangoIconToSymbol(String tangoIcon) { translations.put("icon-text", "symbol-details"); translations.put("icon-up", "symbol-arrow-up"); translations.put("icon-user", "symbol-people"); + ICON_TO_SYMBOL_TRANSLATIONS = translations; + } - String cleanedTangoIcon = cleanName(tangoIcon); - return translations.getOrDefault(cleanedTangoIcon, null); + /** + * This is a temporary function to replace Tango icons across Jenkins and plugins with + * appropriate Jenkins Symbols + * + * @param tangoIcon A tango icon in the format 'icon-* size-*', e.g. 'icon-gear icon-lg' + * @return a Jenkins Symbol (if one exists) otherwise null + */ + @Restricted(NoExternalUse.class) + public static String tryTranslateTangoIconToSymbol(@CheckForNull String tangoIcon) { + return tryTranslateTangoIconToSymbol(tangoIcon, () -> null); + } + + /** + * This is a temporary function to replace Tango icons across Jenkins and plugins with + * appropriate Jenkins Symbols + * + * @param tangoIcon A tango icon in the format 'icon-* size-*', e.g. 'icon-gear icon-lg' + * @param defaultValueSupplier A supplier function that will be called if no icon translation is found + * @return a Jenkins Symbol (if one exists) otherwise the value returned by the supplier + */ + @Restricted(NoExternalUse.class) + public static String tryTranslateTangoIconToSymbol(@CheckForNull String tangoIcon, @NonNull Supplier defaultValueSupplier) { + return tangoIcon == null ? null : ICON_TO_SYMBOL_TRANSLATIONS.getOrDefault(cleanName(tangoIcon), defaultValueSupplier.get()); } private static String cleanName(String tangoIcon) { diff --git a/core/src/main/resources/hudson/AboutJenkins/index_bg.properties b/core/src/main/resources/hudson/AboutJenkins/index_bg.properties index ecf85c42b955..34124ec1102e 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_bg.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_bg.properties @@ -22,19 +22,19 @@ # About Jenkins {0} about=\ - \u041e\u0442\u043d\u043e\u0441\u043d\u043e Jenkins {0} + ОтноÑно Jenkins {0} # Static resources static.dependencies=\ - \u0421\u0442\u0430\u0442\u0438\u0447\u043d\u0438 \u0440\u0435\u0441\u0443\u0440\u0441\u0438 + Статични реÑурÑи # License and dependency information for plugins plugin.dependencies=\ - \u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0442\u0435 \u0438 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438\u0442\u0435 \u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438\u0442\u0435. + Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° лицензите и завиÑимоÑтите на приÑтавките. No\ information\ recorded=\ - \u041d\u0435 \u0441\u0435 \u0437\u0430\u043f\u0438\u0441\u0432\u0430 \u043d\u0438\u043a\u0430\u043a\u0432\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f + Ðе Ñе запиÑва никаква Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ # Jenkins depends on the following 3rd party libraries dependencies=\ - Jenkins \u0437\u0430\u0432\u0438\u0441\u0438 \u0438 \u043e\u0442 \u0441\u043b\u0435\u0434\u043d\u0438\u0442\u0435 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 \u043e\u0442 \u0434\u0440\u0443\u0433\u0438 \u043c\u0435\u0441\u0442\u0430 + Jenkins завиÑи и от Ñледните библиотеки от други меÑта # Jenkins is a community-developed open-source automation server. blurb=\ - Jenkins \u0435 \u0441\u044a\u0440\u0432\u044a\u0440 \u0437\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u0441\ - \u043e\u0442\u0432\u043e\u0440\u0435\u043d \u043a\u043e\u0434, \u043a\u043e\u0439\u0442\u043e \u0441\u0435 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0432\u0430 \u043e\u0442 \u0441\u0432\u043e\u044f\u0442\u0430 \u043e\u0431\u0449\u043d\u043e\u0441\u0442 \u043e\u0442 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u0446\u0438. + Jenkins е Ñървър за автоматизиране Ñ\ + отворен код, който Ñе разработва от ÑвоÑта общноÑÑ‚ от разработчици. diff --git a/core/src/main/resources/hudson/AboutJenkins/index_cs.properties b/core/src/main/resources/hudson/AboutJenkins/index_cs.properties index f629221bc87a..7883f4c73fcc 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_cs.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_cs.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -blurb=Jenkins je komunitou vyv\u00EDjen\u00FD server pr\u016Fb\u011B\u017En\u00E9 integrace s otev\u0159en\u00FDm zdrojov\u00FDm k\u00F3dem. -dependencies=Jenkins z\u00E1vis\u00ED na n\u00E1sleduj\u00EDc\u00EDch knihovn\u00E1ch 3. stran. +blurb=Jenkins je komunitou vyvíjený server průběžné integrace s otevÅ™eným zdrojovým kódem. +dependencies=Jenkins závisí na následujících knihovnách 3. stran. diff --git a/core/src/main/resources/hudson/AboutJenkins/index_da.properties b/core/src/main/resources/hudson/AboutJenkins/index_da.properties index feb29c58d435..f55cfe128e98 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_da.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_da.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. about=Om Jenkins {0} -blurb=Jenkins er en f\u00E6llesskab udviklede open-source continuous integration server. -dependencies=Jenkins afh\u00E6nger af de f\u00F8lgende 3. parts libraries +blurb=Jenkins er en fællesskab udviklede open-source continuous integration server. +dependencies=Jenkins afhænger af de følgende 3. parts libraries diff --git a/core/src/main/resources/hudson/AboutJenkins/index_de.properties b/core/src/main/resources/hudson/AboutJenkins/index_de.properties index 8ed878902415..8f68fd37938d 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_de.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_de.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -about=\u00DCber Jenkins {0} +about=Ãœber Jenkins {0} blurb=Jenkins ist ein Open Source Continuous Integration Server. dependencies=Jenkins benutzt folgende Dritthersteller-Bibliotheken. -No\ information\ recorded=Keine Informationen verf\u00FCgbar -plugin.dependencies=Lizenz- und Abh\u00E4ngigkeitsinformationen installierter Plugins: +No\ information\ recorded=Keine Informationen verfügbar +plugin.dependencies=Lizenz- und Abhängigkeitsinformationen installierter Plugins: static.dependencies=Statische Ressourcen diff --git a/core/src/main/resources/hudson/AboutJenkins/index_es.properties b/core/src/main/resources/hudson/AboutJenkins/index_es.properties index 20cc0f3e8ed5..f77454fe45a2 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_es.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_es.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. about=Acerca de Jenkins {0} -blurb=Jenkins un servidor de Integraci\u00F3n Cont\u00EDnua, de c\u00F3digo abierto y desarrollado en comunidad. +blurb=Jenkins un servidor de Integración Contínua, de código abierto y desarrollado en comunidad. dependencies=Jenkins depende de las siguientes librerias de terceros. diff --git a/core/src/main/resources/hudson/AboutJenkins/index_fi.properties b/core/src/main/resources/hudson/AboutJenkins/index_fi.properties index 84be3f5b315a..2e40484865b7 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_fi.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_fi.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -about=Tietoja Jenkinsist\u00E4 {0} -blurb=Jenkins on yhteis\u00F6kehitteinen, avoimen l\u00E4hdekoodin jatkuvan integroinnin palvelinohjelmisto -dependencies=Jenkins k\u00E4ytt\u00E4\u00E4 seuraavia kolmannen osapuolen kirjastoja +about=Tietoja Jenkinsistä {0} +blurb=Jenkins on yhteisökehitteinen, avoimen lähdekoodin jatkuvan integroinnin palvelinohjelmisto +dependencies=Jenkins käyttää seuraavia kolmannen osapuolen kirjastoja diff --git a/core/src/main/resources/hudson/AboutJenkins/index_fr.properties b/core/src/main/resources/hudson/AboutJenkins/index_fr.properties index 7339e7b88bff..047d96a94e40 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_fr.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_fr.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. about=A propos de Jenkins {0} -blurb=Jenkins est un serveur d''int\u00e9gration continue d\u00e9velopp\u00e9 par la communaut\u00e9 open-source. +blurb=Jenkins est un serveur d''intégration continue développé par la communauté open-source. -dependencies=Jenkins d\u00e9pend des librairies externes suivantes -plugin.dependencies=Licence et informations de d\u00e9pendance pour les plugins : +dependencies=Jenkins dépend des librairies externes suivantes +plugin.dependencies=Licence et informations de dépendance pour les plugins : diff --git a/core/src/main/resources/hudson/AboutJenkins/index_he.properties b/core/src/main/resources/hudson/AboutJenkins/index_he.properties index d0067ef8a982..ba8142947872 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_he.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_he.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -about={0} \u05D0\u05D5\u05D3\u05D5\u05EA \u05D2''\u05E0\u05E7\u05D9\u05E0\u05E1 +about={0} ×ודות ×’''נקינס diff --git a/core/src/main/resources/hudson/AboutJenkins/index_hu.properties b/core/src/main/resources/hudson/AboutJenkins/index_hu.properties index f30e28292f99..a061c2760aba 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_hu.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_hu.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -about=Jenkins {0} N\u00E9vjegye -blurb=Jenkins egy k\u00F6z\u00F6ss\u00E9gi fejleszt\u00E9s\u0171, ny\u00EDlt forr\u00E1s\u00FA CI szerver. -dependencies=Jenking a k\u00F6vetkez\u0151 3. f\u00E9lt\u0151l sz\u00E1rmaz\u00F3 k\u00F6nyvt\u00E1rakt\u00F3l f\u00FCgg. +about=Jenkins {0} Névjegye +blurb=Jenkins egy közösségi fejlesztésű, nyílt forrású CI szerver. +dependencies=Jenking a következÅ‘ 3. féltÅ‘l származó könyvtáraktól függ. diff --git a/core/src/main/resources/hudson/AboutJenkins/index_it.properties b/core/src/main/resources/hudson/AboutJenkins/index_it.properties index 6561f97faed2..96e227cf8562 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_it.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,8 +22,8 @@ # THE SOFTWARE. about=Informazioni su Jenkins {0} -blurb=Jenkins è un server di automazione \ - open source sviluppato dalla comunità. +blurb=Jenkins è un server di automazione \ + open source sviluppato dalla comunità. dependencies=Jenkins dipende dalle seguenti librerie di terze parti maven.dependencies=Dipendenze recuperate con Maven No\ information\ recorded=Informazioni non registrate diff --git a/core/src/main/resources/hudson/AboutJenkins/index_ja.properties b/core/src/main/resources/hudson/AboutJenkins/index_ja.properties index e13ab5be774d..9d08ff71b6f9 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_ja.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_ja.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -about=Jenkins {0} \u306b\u3064\u3044\u3066 -blurb=Jenkins \u306f\u30b3\u30df\u30e5\u30cb\u30c6\u30a3\u3067\u958b\u767a\u3055\u308c\u3066\u3044\u308b\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u306eCI\u30b5\u30fc\u30d0\u3067\u3059\u3002 +about=Jenkins {0} ã«ã¤ã„㦠+blurb=Jenkins ã¯ã‚³ãƒŸãƒ¥ãƒ‹ãƒ†ã‚£ã§é–‹ç™ºã•ã‚Œã¦ã„るオープンソースã®CIサーãƒã§ã™ã€‚ -dependencies=Jenkins \u306F\u6B21\u306E\u30B5\u30FC\u30C9\u30D1\u30FC\u30C6\u30A3\u306E\u30E9\u30A4\u30D6\u30E9\u30EA\u3092\u4F7F\u7528\u3057\u3066\u3044\u307E\u3059\u3002 -plugin.dependencies=\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3068\u4f9d\u5b58\u6027: -No\ information\ recorded=\u60c5\u5831\u304c\u3042\u308a\u307e\u305b\u3093\u3002 +dependencies=Jenkins ã¯æ¬¡ã®ã‚µãƒ¼ãƒ‰ãƒ‘ーティã®ãƒ©ã‚¤ãƒ–ラリを使用ã—ã¦ã„ã¾ã™ã€‚ +plugin.dependencies=プラグインã®ãƒ©ã‚¤ã‚»ãƒ³ã‚¹ã¨ä¾å­˜æ€§: +No\ information\ recorded=情報ãŒã‚ã‚Šã¾ã›ã‚“。 diff --git a/core/src/main/resources/hudson/AboutJenkins/index_lt.properties b/core/src/main/resources/hudson/AboutJenkins/index_lt.properties index 430cd1ad8848..05299b9e3425 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_lt.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_lt.properties @@ -1,6 +1,6 @@ about=Apie Jenkins {0} -blurb=Jenkins - bendruomen\u0117s kuriamas atviro kodo pastovios integracijos (CIS) serveris. -dependencies=Jenkins priklauso nuo \u0161i\u0173 3-\u0173j\u0173 \u0161ali\u0173 bibliotek\u0173. -plugin.dependencies=Pried\u0173 licencijos ir priklausomybi\u0173 informacija +blurb=Jenkins - bendruomenÄ—s kuriamas atviro kodo pastovios integracijos (CIS) serveris. +dependencies=Jenkins priklauso nuo Å¡ių 3-ųjų Å¡alių bibliotekų. +plugin.dependencies=Priedų licencijos ir priklausomybių informacija static.dependencies=Statiniai resursai diff --git a/core/src/main/resources/hudson/AboutJenkins/index_lv.properties b/core/src/main/resources/hudson/AboutJenkins/index_lv.properties index 5b6d1d23be6d..d4f5271fa561 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_lv.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_lv.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. about=Par Jenkins {0} -dependencies=Jenkins ir atkar\u012Bgs no tre\u0161\u0101s puses bibliot\u0113k\u0101m. -plugin.dependencies=Licences un atkar\u012Bbu inform\u0101cija par spraud\u0146iem: +dependencies=Jenkins ir atkarÄ«gs no treÅ¡Äs puses bibliotÄ“kÄm. +plugin.dependencies=Licences un atkarÄ«bu informÄcija par spraudņiem: diff --git a/core/src/main/resources/hudson/AboutJenkins/index_nb_NO.properties b/core/src/main/resources/hudson/AboutJenkins/index_nb_NO.properties index 7cc294ff2de2..70e4ebccb7d1 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_nb_NO.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_nb_NO.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. about=Om Jenkins -blurb=Jenkins er en fellesskaps-utviklet, \u00E5pen kildekode kontinuerlig integrasjonsserver. -dependencies=Jenkins benytter f\u00F8lgende tredjeparts-biblioteker. +blurb=Jenkins er en fellesskaps-utviklet, Ã¥pen kildekode kontinuerlig integrasjonsserver. +dependencies=Jenkins benytter følgende tredjeparts-biblioteker. diff --git a/core/src/main/resources/hudson/AboutJenkins/index_pl.properties b/core/src/main/resources/hudson/AboutJenkins/index_pl.properties index aa350cb94c45..53802eb486dd 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_pl.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_pl.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. about=O Jenkinsie {0} -blurb=Jenkins jest rozwijanym przez spo\u0142eczno\u015B\u0107 open-source serwerem Continuous Integration -dependencies=Jenkins jest oparty na nast\u0119puj\u0105cych zewn\u0119trznych bibliotekach: -plugin.dependencies=Informacja o licencji i zale\u017Cno\u015Bci plugin\u00F3w: +blurb=Jenkins jest rozwijanym przez spoÅ‚eczność open-source serwerem Continuous Integration +dependencies=Jenkins jest oparty na nastÄ™pujÄ…cych zewnÄ™trznych bibliotekach: +plugin.dependencies=Informacja o licencji i zależnoÅ›ci pluginów: static.dependencies=Statyczne zasoby diff --git a/core/src/main/resources/hudson/AboutJenkins/index_pt_BR.properties b/core/src/main/resources/hudson/AboutJenkins/index_pt_BR.properties index 37ac6a7d53ba..bda3f0bc6d3f 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_pt_BR.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_pt_BR.properties @@ -21,12 +21,12 @@ # THE SOFTWARE. about=Sobre o Jenkins {0} -No\ information\ recorded=Nenhuma informa\u00E7\u00E3o registrada -plugin.dependencies=Informa\u00E7\u00F5es sobre licen\u00E7as e depend\u00EAncias para extens\u00F5es: +No\ information\ recorded=Nenhuma informação registrada +plugin.dependencies=Informações sobre licenças e dependências para extensões: logo=logotipo Author=Autor -static.dependencies=Recursos estat\u00EDcos +static.dependencies=Recursos estatícos Name=Nome -Version=Vers\u00E3o -Licence=Licen\u00E7a -maven.dependencies=Depend\u00EAncias do Maven +Version=Versão +Licence=Licença +maven.dependencies=Dependências do Maven diff --git a/core/src/main/resources/hudson/AboutJenkins/index_ru.properties b/core/src/main/resources/hudson/AboutJenkins/index_ru.properties index e001a5399ea0..c4a6ab27b25d 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_ru.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -about=\u041E Jenkins {0} -blurb=Jenkins \u0441\u0435\u0440\u0432\u0435\u0440 \u043D\u0435\u043F\u0440\u0435\u0440\u044B\u0432\u043D\u043E\u0439 \u0438\u043D\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u0438 \u0441 \u043E\u0442\u043A\u0440\u044B\u0442\u044B\u043C \u0438\u0441\u0445\u043E\u0434\u043D\u044B\u043C \u043A\u043E\u0434\u043E\u043C. -dependencies=Jenkins \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442 \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0435 \u0441\u0442\u043E\u0440\u043E\u043D\u043D\u0438\u0435 \u0431\u0438\u0431\u043B\u0438\u043E\u0442\u0435\u043A\u0438. -plugin.dependencies=\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F \u043E \u043B\u0438\u0446\u0435\u043D\u0437\u0438\u044F\u0445 \u0438 \u0437\u0430\u0432\u0438\u0441\u0438\u043C\u043E\u0441\u0442\u044F\u0445 \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u0432: +about=О Jenkins {0} +blurb=Jenkins Ñервер непрерывной интеграции Ñ Ð¾Ñ‚ÐºÑ€Ñ‹Ñ‚Ñ‹Ð¼ иÑходным кодом. +dependencies=Jenkins иÑпользует Ñледующие Ñторонние библиотеки. +plugin.dependencies=Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ лицензиÑÑ… и завиÑимоÑÑ‚ÑÑ… плагинов: diff --git a/core/src/main/resources/hudson/AboutJenkins/index_sk.properties b/core/src/main/resources/hudson/AboutJenkins/index_sk.properties index 97d8954b56e4..564b5fe09dc8 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_sk.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_sk.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors about=O Jenkinse {0} -dependencies=Jenkins z\u00E1vis\u00ED na nasleduj\u00FAcich tre\u0165ostrann\u00FDch kni\u017Eniciach. -plugin.dependencies=Licencia a inform\u00E1cie o z\u00E1vislostiach pre pluginy +dependencies=Jenkins závisí na nasledujúcich treÅ¥ostranných knižniciach. +plugin.dependencies=Licencia a informácie o závislostiach pre pluginy diff --git a/core/src/main/resources/hudson/AboutJenkins/index_sr.properties b/core/src/main/resources/hudson/AboutJenkins/index_sr.properties index 6c63b2b1f988..99bf81730b36 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_sr.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_sr.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -about=\u041E Jenkins-\u0443 {0} -blurb=Jenkins \u0441\u0435\u0440\u0432\u0435\u0440 \u0437\u0430 \u043A\u043E\u043D\u0442\u0438\u043D\u0443\u0438\u0440\u0430\u043D\u0443 \u0438\u043D\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u0458\u0443 \u0441\u0430 \u043E\u0442\u0432\u043E\u0440\u0435\u043D\u0438\u043C \u0438\u0437\u0432\u043E\u0440\u043D\u0438\u043C \u043A\u043E\u0434\u043E\u043C. -dependencies=Jenkins \u0437\u0430\u0432\u0438\u0441\u0438 \u043E\u0434 \u0441\u0442\u0440\u0430\u043D\u0438\u0445 \u0431\u0438\u0431\u043B\u0438\u043E\u0442\u0435\u043A\u0430 -No\ information\ recorded=\u041D\u0435\u043C\u0430 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0435 -static.dependencies=\u0421\u0442\u0430\u0442\u0443\u0447\u043A\u0438 \u0440\u0435\u0441\u0443\u0440\u0441\u0438 -plugin.dependencies=\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0435 \u043E \u043B\u0438\u0446\u0435\u043D\u0446\u0438 \u0438 \u043C\u043E\u0434\u0443\u043B\u0438\u043C\u0430: +about=О Jenkins-у {0} +blurb=Jenkins Ñервер за континуирану интеграцију Ñа отвореним изворним кодом. +dependencies=Jenkins завиÑи од Ñтраних библиотека +No\ information\ recorded=Ðема информације +static.dependencies=Статучки реÑурÑи +plugin.dependencies=Информације о лиценци и модулима: diff --git a/core/src/main/resources/hudson/AboutJenkins/index_sv_SE.properties b/core/src/main/resources/hudson/AboutJenkins/index_sv_SE.properties index e452e576f665..e11b4cd4a9ac 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_sv_SE.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_sv_SE.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. about=Om Jenkins {0} -dependencies=Jenkins anv\u00E4nder sig av f\u00F6ljande tredjepartsbibliotek. +dependencies=Jenkins använder sig av följande tredjepartsbibliotek. diff --git a/core/src/main/resources/hudson/AboutJenkins/index_uk.properties b/core/src/main/resources/hudson/AboutJenkins/index_uk.properties index ccfeec429b9d..c19c67f8cca5 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_uk.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_uk.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -about=\u041F\u0440\u043E \u0414\u0436\u0435\u043D\u043A\u0456\u043A\u0441 -blurb=\u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441 \u0454 \u0441\u0435\u0440\u0432\u0435\u0440\u043E\u043C \u0431\u0435\u0437\u043F\u0435\u0440\u0435\u0440\u0432\u043D\u043E\u0457 \u0456\u043D\u0442\u0435\u0433\u0440\u0430\u0446\u0456\u0457 \u0437 \u0432\u0456\u0434\u043A\u0440\u0438\u0442\u0438\u043C \u043A\u043E\u0434\u043E\u043C \u0440\u043E\u0437\u0440\u043E\u0431\u043B\u044E\u0432\u0430\u043D\u0438\u0439 \u0441\u043F\u0456\u043B\u044C\u043D\u043E\u0442\u043E\u044E. -dependencies=\u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441 \u043C\u0430\u0454 \u0437\u0430\u043B\u0435\u0436\u043D\u043E\u0441\u0442\u0456 \u0432\u0456\u0434 \u043D\u0430\u0442\u0443\u043F\u043D\u0438\u0445 +about=Про Ð”Ð¶ÐµÐ½ÐºÑ–ÐºÑ +blurb=Ð”Ð¶ÐµÐ½ÐºÑ–Ð½Ñ Ñ” Ñервером безперервної інтеграції з відкритим кодом розроблюваний Ñпільнотою. +dependencies=Ð”Ð¶ÐµÐ½ÐºÑ–Ð½Ñ Ð¼Ð°Ñ” залежноÑÑ‚Ñ– від натупних diff --git a/core/src/main/resources/hudson/AboutJenkins/index_zh_TW.properties b/core/src/main/resources/hudson/AboutJenkins/index_zh_TW.properties index 4d021de27198..47498f26e19e 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_zh_TW.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_zh_TW.properties @@ -19,15 +19,15 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -about=\u95dc\u65bc Jenkins {0} -blurb=Jenkins \u662f\u793e\u7fa4\u958b\u767c\u7684\u958b\u653e\u539f\u59cb\u78bc\u81ea\u52d5\u5316\u4f3a\u670d\u5668\u3002 -dependencies=Jenkins \u76f8\u4f9d\u65bc\u4e0b\u5217\u7b2c\u4e09\u65b9\u51fd\u5f0f\u5eab -maven.dependencies=Mavenized \u76f8\u4f9d\u6027 -plugin.dependencies=\u5916\u639b\u7684\u6388\u6b0a\u689d\u6b3e\u548c\u76f8\u4f9d\u6027\u8cc7\u8a0a -static.dependencies=\u975c\u614b\u8cc7\u6e90 -Licence=\u6388\u6b0a\u689d\u6b3e -Name=\u540d\u7a31 -Version=\u7248\u672c -No\ information\ recorded=\u6c92\u6709\u76f8\u95dc\u8cc7\u8a0a -Author=\u4f5c\u8005 -logo=\u6a19\u8a8c +about=關於 Jenkins {0} +blurb=Jenkins 是社群開發的開放原始碼自動化伺æœå™¨ã€‚ +dependencies=Jenkins 相ä¾æ–¼ä¸‹åˆ—第三方函å¼åº« +maven.dependencies=Mavenized 相ä¾æ€§ +plugin.dependencies=外掛的授權æ¢æ¬¾å’Œç›¸ä¾æ€§è³‡è¨Š +static.dependencies=éœæ…‹è³‡æº +Licence=授權æ¢æ¬¾ +Name=å稱 +Version=版本 +No\ information\ recorded=沒有相關資訊 +Author=作者 +logo=標誌 diff --git a/core/src/main/resources/hudson/Messages.properties b/core/src/main/resources/hudson/Messages.properties index 269870d713f2..4a60b450c3c2 100644 --- a/core/src/main/resources/hudson/Messages.properties +++ b/core/src/main/resources/hudson/Messages.properties @@ -22,22 +22,22 @@ FilePath.did_not_manage_to_validate_may_be_too_sl=Did not manage to validate {0} (may be too slow) FilePath.validateAntFileMask.whitespaceSeparator=\ - Whitespace can no longer be used as the separator. Please Use \u2018,\u2019 as the separator instead. + Whitespace can no longer be used as the separator. Please Use ‘,’ as the separator instead. FilePath.validateAntFileMask.doesntMatchAndSuggest=\ - \u2018{0}\u2019 doesn\u2019t match anything, but \u2018{1}\u2019 does. Perhaps that\u2019s what you mean? -FilePath.validateAntFileMask.portionMatchAndSuggest=\u2018{0}\u2019 doesn\u2019t match anything, although \u2018{1}\u2019 exists -FilePath.validateAntFileMask.portionMatchButPreviousNotMatchAndSuggest=\u2018{0}\u2019 doesn\u2019t match anything: \u2018{1}\u2019 exists but not \u2018{2}\u2019 -FilePath.validateAntFileMask.doesntMatchAnything=\u2018{0}\u2019 doesn\u2019t match anything -FilePath.validateAntFileMask.matchWithCaseInsensitive=\u2018{0}\u2019 doesn\u2019t match anything because it is treated case sensitively. You can deactivate case sensitivity to get matches -FilePath.validateAntFileMask.doesntMatchAnythingAndSuggest=\u2018{0}\u2019 doesn\u2019t match anything: even \u2018{1}\u2019 doesn\u2019t exist + ‘{0}’ doesn’t match anything, but ‘{1}’ does. Perhaps that’s what you mean? +FilePath.validateAntFileMask.portionMatchAndSuggest=‘{0}’ doesn’t match anything, although ‘{1}’ exists +FilePath.validateAntFileMask.portionMatchButPreviousNotMatchAndSuggest=‘{0}’ doesn’t match anything: ‘{1}’ exists but not ‘{2}’ +FilePath.validateAntFileMask.doesntMatchAnything=‘{0}’ doesn’t match anything +FilePath.validateAntFileMask.matchWithCaseInsensitive=‘{0}’ doesn’t match anything because it is treated case sensitively. You can deactivate case sensitivity to get matches +FilePath.validateAntFileMask.doesntMatchAnythingAndSuggest=‘{0}’ doesn’t match anything: even ‘{1}’ doesn’t exist FilePath.validateRelativePath.wildcardNotAllowed=Wildcard is not allowed here -FilePath.validateRelativePath.notFile=\u2018{0}\u2019 is not a file -FilePath.validateRelativePath.notDirectory=\u2018{0}\u2019 is not a directory -FilePath.validateRelativePath.noSuchFile=No such file: \u2018{0}\u2019 -FilePath.validateRelativePath.noSuchDirectory=No such directory: \u2018{0}\u2019 +FilePath.validateRelativePath.notFile=‘{0}’ is not a file +FilePath.validateRelativePath.notDirectory=‘{0}’ is not a directory +FilePath.validateRelativePath.noSuchFile=No such file: ‘{0}’ +FilePath.validateRelativePath.noSuchDirectory=No such directory: ‘{0}’ -PluginManager.PluginDoesntSupportDynamicLoad.RestartRequired={0} plugin doesn\u2019t support dynamic loading. Jenkins needs to be restarted for the update to take effect. +PluginManager.PluginDoesntSupportDynamicLoad.RestartRequired={0} plugin doesn’t support dynamic loading. Jenkins needs to be restarted for the update to take effect. PluginManager.PluginIsAlreadyInstalled.RestartRequired={0} plugin is already installed. Jenkins needs to be restarted for the update to take effect. Util.millisecond={0} ms Util.second={0} sec @@ -47,11 +47,11 @@ Util.day ={0} {0,choice,0#days|1#day|1This plugin is up for adoption! We are looking for new maintainers. \ Visit our Adopt a Plugin initiative for more information. PluginManager.newerVersionExists=\ - A newer version than being offered for installation exists (version {0}). \ - This is typically the case when plugin requirements, e.g. a recent version of Jenkins, are not satisfied. -PluginManager.newerVersionEntry=\ - This version of the plugin exists but it is not being offered as an update. \ + A newer version than being offered for installation exists (version {0}), so the latest bug fixes or features are not available to you. \ This is typically the case when plugin requirements, e.g. a recent version of Jenkins, are not satisfied. \ - See the plugin documentation for information about its requirements. + If you are using the latest version of Jenkins offered to you, this plugin release may not be available to your release line yet. \ + See the plugin documentation for information about its requirements. PluginManager.unavailable=Unavailable PluginManager.deprecationWarning=This plugin is deprecated. In general, this means that it is either obsolete, no longer being developed, or may no longer work. Learn more. PluginManager.insecureUrl=\ diff --git a/core/src/main/resources/hudson/Messages_bg.properties b/core/src/main/resources/hudson/Messages_bg.properties index ebfc064d92e0..fde4bb38acd0 100644 --- a/core/src/main/resources/hudson/Messages_bg.properties +++ b/core/src/main/resources/hudson/Messages_bg.properties @@ -21,117 +21,117 @@ # THE SOFTWARE. FilePath.did_not_manage_to_validate_may_be_too_sl=\ - \u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430\u0442\u0430 \u043d\u0430 \u201e{0}\u201c \u043d\u0435 \u0435 \u0437\u0430\u0432\u044a\u0440\u0448\u0438\u043b\u0430, \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u044a\u0442 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0435 \u043f\u0440\u0435\u043a\u0430\u043b\u0435\u043d\u043e \u0431\u0430\u0432\u0435\u043d. + Проверката на „{0}“ не е завършила, компютърът може да е прекалено бавен. FilePath.validateAntFileMask.whitespaceSeprator=\ - \u041f\u0440\u0430\u0437\u043d\u0438\u0442\u0435 \u0437\u043d\u0430\u0446\u0438 \u0432\u0435\u0447\u0435 \u043d\u0435 \u0441\u0435 \u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0437\u0430 \u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u0435\u043b\u0438. \u041f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u0437\u0430\u043f\u0435\u0442\u0430\u044f \u2014 \u201e,\u201c. + Празните знаци вече не Ñе ползват за разделители. Ползвайте Ð·Ð°Ð¿ÐµÑ‚Ð°Ñ â€” „,“. FilePath.validateAntFileMask.doesntMatchAndSuggest=\ - \u201e{0}\u201c \u043d\u0435 \u0441\u044a\u0432\u043f\u0430\u0434\u0430 \u0441 \u043d\u0438\u0449\u043e, \u043d\u043e \u201e{1}\u201c \u0441\u044a\u0432\u043f\u0430\u0434\u0430. \u0422\u043e\u0432\u0430 \u043b\u0438 \u0438\u043c\u0430\u0445\u0442\u0435 \u043f\u0440\u0435\u0434\u0432\u0438\u0434? + „{0}“ не Ñъвпада Ñ Ð½Ð¸Ñ‰Ð¾, но „{1}“ Ñъвпада. Това ли имахте предвид? FilePath.validateAntFileMask.portionMatchAndSuggest=\ - \u201e{0}\u201c \u043d\u0435 \u0441\u044a\u0432\u043f\u0430\u0434\u0430 \u0441 \u043d\u0438\u0449\u043e, \u043d\u043e \u201e{1}\u201c \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430. + „{0}“ не Ñъвпада Ñ Ð½Ð¸Ñ‰Ð¾, но „{1}“ ÑъщеÑтвува. FilePath.validateAntFileMask.portionMatchButPreviousNotMatchAndSuggest=\ - \u201e{0}\u201c \u043d\u0435 \u0441\u044a\u0432\u043f\u0430\u0434\u0430 \u0441 \u043d\u0438\u0449\u043e: \u201e{1}\u201c \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430, \u043d\u043e \u043d\u0435 \u0438 \u201e{1}\u201c. + „{0}“ не Ñъвпада Ñ Ð½Ð¸Ñ‰Ð¾: „{1}“ ÑъщеÑтвува, но не и „{1}“. FilePath.validateAntFileMask.doesntMatchAnything=\ - \u201e{0}\u201c \u043d\u0435 \u0441\u044a\u0432\u043f\u0430\u0434\u0430 \u0441 \u043d\u0438\u0449\u043e. + „{0}“ не Ñъвпада Ñ Ð½Ð¸Ñ‰Ð¾. FilePath.validateAntFileMask.matchWithCaseInsensitive=\ - \u201e{0}\u201c \u043d\u0435 \u0441\u044a\u0432\u043f\u0430\u0434\u0430 \u0441 \u043d\u0438\u0449\u043e, \u0437\u0430\u0449\u043e\u0442\u043e \u043f\u0440\u0430\u0432\u0438 \u0440\u0430\u0437\u043b\u0438\u043a\u0430 \u043c\u0435\u0436\u0434\u0443 \u0433\u043b\u0430\u0432\u043d\u0438 \u0438 \u043c\u0430\u043b\u043a\u0438 \u0431\u0443\u043a\u0432\u0438.\ - \u041c\u043e\u0436\u0435 \u0434\u0430 \u0438\u0437\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \u0440\u0430\u0437\u043b\u0438\u0447\u0430\u0432\u0430\u043d\u0435\u0442\u043e, \u0437\u0430 \u0434\u0430 \u0438\u043c\u0430 \u0441\u044a\u0432\u043f\u0430\u0434\u0435\u043d\u0438\u044f. + „{0}“ не Ñъвпада Ñ Ð½Ð¸Ñ‰Ð¾, защото прави разлика между главни и малки букви.\ + Може да изключите различаването, за да има ÑъвпадениÑ. FilePath.validateAntFileMask.doesntMatchAnythingAndSuggest=\ - \u201e{0}\u201c \u043d\u0435 \u0441\u044a\u0432\u043f\u0430\u0434\u0430 \u0441 \u043d\u0438\u0449\u043e, \u0434\u043e\u0440\u0438 \u0438 \u201e{1}\u201c \u043d\u0435 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430. + „{0}“ не Ñъвпада Ñ Ð½Ð¸Ñ‰Ð¾, дори и „{1}“ не ÑъщеÑтвува. FilePath.validateRelativePath.wildcardNotAllowed=\ - \u0417\u043d\u0430\u043a\u044a\u0442 \u201e*\u201c \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043f\u043e\u043b\u0437\u0432\u0430 + Знакът „*“ не може да Ñе ползва FilePath.validateRelativePath.notFile=\ - \u201e{0}\u201c \u043d\u0435 \u0435 \u0444\u0430\u0439\u043b + „{0}“ не е файл FilePath.validateRelativePath.notDirectory=\ - \u201e{0}\u201c \u043d\u0435 \u0435 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f + „{0}“ не е Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ FilePath.validateRelativePath.noSuchFile=\ - \u041b\u0438\u043f\u0441\u0432\u0430 \u0444\u0430\u0439\u043b \u201e{0}\u201c + ЛипÑва файл „{0}“ FilePath.validateRelativePath.noSuchDirectory=\ - \u041b\u0438\u043f\u0441\u0432\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u201e{0}\u201c + ЛипÑва Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ â€ž{0}“ PluginManager.PluginDoesntSupportDynamicLoad.RestartRequired=\ - \u041f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430\u0442\u0430 \u201e{0}\u201c \u043d\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430 \u0434\u0438\u043d\u0430\u043c\u0438\u0447\u043d\u043e \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435. \u041f\u0440\u043e\u043c\u044f\u043d\u0430\u0442\u0430 \u043d\u0430\u043b\u0430\u0433\u0430\ - \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 Jenkins. + ПриÑтавката „{0}“ не поддържа динамично зареждане. ПромÑната налага\ + реÑтартиране на Jenkins. PluginManager.PluginIsAlreadyInstalled.RestartRequired=\ - \u041f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430\u0442\u0430 \u201e{0}\u201c \u0432\u0435\u0447\u0435 \u0435 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0430. \u041f\u0440\u043e\u043c\u044f\u043d\u0430\u0442\u0430 \u043d\u0430\u043b\u0430\u0433\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 Jenkins + ПриÑтавката „{0}“ вече е инÑталирана. ПромÑната налага реÑтартиране на Jenkins Util.millisecond=\ - {0} {0,choice,0#\u043c\u0438\u043b\u0438\u0441\u0435\u043a\u0443\u043d\u0434\u0438|1#\u043c\u0438\u043b\u0438\u0441\u0435\u043a\u0443\u043d\u0434\u0430|1<\u043c\u0438\u043b\u0438\u0441\u0435\u043a\u0443\u043d\u0434\u0438} + {0} {0,choice,0#милиÑекунди|1#милиÑекунда|1<милиÑекунди} Util.second=\ - {0} {0,choice,0#\u0441\u0435\u043a\u0443\u043d\u0434\u0438|1#\u0441\u0435\u043a\u0443\u043d\u0434\u0430|1\u0441\u0435\u043a\u0443\u043d\u0434\u0438} + {0} {0,choice,0#Ñекунди|1#Ñекунда|1Ñекунди} Util.minute=\ - {0} {0,choice,0#\u043c\u0438\u043d\u0443\u0442\u0438|1#\u043c\u0438\u043d\u0443\u0442\u0430|1<\u043c\u0438\u043d\u0443\u0442\u0438} + {0} {0,choice,0#минути|1#минута|1<минути} Util.hour =\ - {0} {0,choice,0#\u0447\u0430\u0441\u0430|1#\u0447\u0430\u0441|1<\u0447\u0430\u0441\u0430} + {0} {0,choice,0#чаÑа|1#чаÑ|1<чаÑа} Util.day =\ - {0} {0,choice,0#\u0434\u043d\u0438|1#\u0434\u0435\u043d|1<\u0434\u043d\u0438} + {0} {0,choice,0#дни|1#ден|1<дни} Util.month =\ - {0} {0,choice,0#\u043c\u0435\u0441\u0435\u0446\u0430|1#\u043c\u0435\u0441\u0435\u0446|1<\u043c\u0435\u0441\u0435\u0446\u0430} + {0} {0,choice,0#меÑеца|1#меÑец|1<меÑеца} Util.year =\ - {0} {0,choice,0#\u0433\u043e\u0434\u0438\u043d\u0438|1#\u0433\u043e\u0434\u0438\u043d\u0430|1<\u0433\u043e\u0434\u0438\u043d\u0438} + {0} {0,choice,0#години|1#година|1<години} FilePath.TildaDoesntWork=\ - \u201e~\u201c \u0441\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430 \u0441\u0430\u043c\u043e \u0432 \u043a\u043e\u043c\u0430\u043d\u0434\u043d\u0438\u0442\u0435 \u0438\u043d\u0442\u0435\u0440\u043f\u0440\u0435\u0442\u0430\u0442\u043e\u0440\u0438 \u043d\u0430 Unix \u0438 \u043d\u0438\u043a\u044a\u0434\u0435 \u0434\u0440\u0443\u0433\u0430\u0434\u0435. + „~“ Ñе поддържа Ñамо в командните интерпретатори на Unix и никъде другаде. PluginManager.DisplayName=\ - \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438 + Управление на приÑтавки PluginManager.PortNotANumber=\ - \u0421\u0442\u043e\u0439\u043d\u043e\u0441\u0442\u0442\u0430 \u0437\u0430 \u043f\u043e\u0440\u0442\u0430 \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0435 \u0447\u0438\u0441\u043b\u043e + СтойноÑтта за порта Ñ‚Ñ€Ñбва да е чиÑло PluginManager.PortNotInRange=\ - \u0421\u0442\u043e\u0439\u043d\u043e\u0441\u0442\u0442\u0430 \u0437\u0430 \u043f\u043e\u0440\u0442\u0430 \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0435 \u0432 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0430 [{0}; {1}] + СтойноÑтта за порта Ñ‚Ñ€Ñбва да е в интервала [{0}; {1}] AboutJenkins.DisplayName=\ - \u041e\u0442\u043d\u043e\u0441\u043d\u043e Jenkins + ОтноÑно Jenkins AboutJenkins.Description=\ - \u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0432\u0435\u0440\u0441\u0438\u044f\u0442\u0430 \u0438 \u043b\u0438\u0446\u0435\u043d\u0437\u0430. + Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° верÑиÑта и лиценза. ProxyConfiguration.TestUrlRequired=\ - \u0418\u0437\u0438\u0441\u043a\u0432\u0430 \u0441\u0435 \u0430\u0434\u0440\u0435\u0441 \u0437\u0430 \u043f\u0440\u043e\u0431\u0430. + ИзиÑква Ñе Ð°Ð´Ñ€ÐµÑ Ð·Ð° проба. ProxyConfiguration.FailedToConnectViaProxy=\ - \u041d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u0432\u044a\u0440\u0437\u0432\u0430\u043d\u0435 \u043a\u044a\u043c \u201e{0}\u201c. + ÐеуÑпешно Ñвързване към „{0}“. ProxyConfiguration.FailedToConnect=\ - \u041d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u0430 \u0432\u0440\u044a\u0437\u043a\u0430 \u043a\u044a\u043c \u201e{0}\u201c (\u043a\u043e\u0434: {1}). + ÐеуÑпешна връзка към „{0}“ (код: {1}). ProxyConfiguration.Success=\ - \u0423\u0441\u043f\u0435\u0445 + УÑпех Functions.NoExceptionDetails=\ - \u041d\u044f\u043c\u0430 \u0434\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0438\u0437\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435\u0442\u043e. + ÐÑма допълнителна Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° изключението. # Malformed Test URL {0}. ProxyConfiguration.MalformedTestUrl=\ - \u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u0435\u043d \u0442\u0435\u0441\u0442\u043e\u0432 \u0430\u0434\u0440\u0435\u0441: \u201e{0}\u201c. + Ðеправилен теÑтов адреÑ: „{0}“. # {0} v{1} is missing. To fix, install v{1} or later. PluginWrapper.missing=\ - \u201e{0}\u201c, \u0432\u0435\u0440\u0441\u0438\u044f {1} \u043b\u0438\u043f\u0441\u0432\u0430. \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u0439\u0442\u0435 \u0432\u0435\u0440\u0441\u0438\u044f {1} \u0438\u043b\u0438 \u043f\u043e-\u043d\u043e\u0432\u0430. + „{0}“, верÑÐ¸Ñ {1} липÑва. ИнÑталирайте верÑÐ¸Ñ {1} или по-нова. # {0} v{1} is disabled and older than required. To fix, install v{2} or later and enable it. PluginWrapper.disabledAndObsolete=\ - \u201e{0}\u201c, \u0432\u0435\u0440\u0441\u0438\u044f {1} \u0435 \u0438\u0437\u043a\u043b\u044e\u0447\u0435\u043d\u0430 \u0438\u043b\u0438 \u0435 \u0432\u0435\u0440\u0441\u0438\u044f\u0442\u0430 \u0435 \u043f\u043e-\u0441\u0442\u0430\u0440\u0430 \u043e\u0442 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0442\u043e.\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u0439\u0442\u0435 \u0432\u0435\u0440\u0441\u0438\u044f {2} \u0438\u043b\u0438 \u043f\u043e-\u043d\u043e\u0432\u0430 \u0438 \u044f \u0432\u043a\u043b\u044e\u0447\u0435\u0442\u0435. + „{0}“, верÑÐ¸Ñ {1} е изключена или е верÑиÑта е по-Ñтара от необходимото.\ + ИнÑталирайте верÑÐ¸Ñ {2} или по-нова и Ñ Ð²ÐºÐ»ÑŽÑ‡ÐµÑ‚Ðµ. # {0} is disabled. To fix, enable it. PluginWrapper.disabled=\ - \u201e{0}\u201c \u0435 \u0438\u0437\u043a\u043b\u044e\u0447\u0435\u043d\u0430. \u0412\u043a\u043b\u044e\u0447\u0435\u0442\u0435 \u044f. + „{0}“ е изключена. Включете Ñ. # Ping protocol TcpSlaveAgentListener.PingAgentProtocol.displayName=\ - \u041f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u201eping\u201c + Протокол „ping“ # {0} v{1} failed to load. Fix this plugin first. PluginWrapper.failed_to_load_dependency=\ - \u201e{0}\u201c, \u0432\u0435\u0440\u0441\u0438\u044f {1} \u043d\u0435 \u0441\u0435 \u0437\u0430\u0440\u0435\u0434\u0438. \u041e\u043f\u0440\u0430\u0432\u0435\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430\u0442\u0430. + „{0}“, верÑÐ¸Ñ {1} не Ñе зареди. Оправете приÑтавката. # You must update Jenkins from v{0} to v{1} or later to run this plugin. PluginWrapper.obsoleteCore=\ - \u0417\u0430 \u0434\u0430 \u0440\u0430\u0431\u043e\u0442\u0438\u0442\u0435 \u0441 \u0442\u0430\u0437\u0438 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430, \u043e\u0431\u043d\u043e\u0432\u0435\u0442\u0435 Jenkins \u043e\u0442 \u0432\u0435\u0440\u0441\u0438\u044f {0} \u043a\u044a\u043c {1} + За да работите Ñ Ñ‚Ð°Ð·Ð¸ приÑтавка, обновете Jenkins от верÑÐ¸Ñ {0} към {1} # {0} v{1} is older than required. To fix, install v{2} or later. PluginWrapper.obsolete=\ - \u201e{0}\u201c, \u0432\u0435\u0440\u0441\u0438\u044f {1} \u0435 \u043f\u043e-\u0441\u0442\u0430\u0440\u0430 \u043e\u0442 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0442\u043e. \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u0439\u0442\u0435 \u0432\u0435\u0440\u0441\u0438\u044f {2} \u0438\u043b\u0438\ - \u043f\u043e-\u043d\u043e\u0432\u0430. + „{0}“, верÑÐ¸Ñ {1} е по-Ñтара от необходимото. ИнÑталирайте верÑÐ¸Ñ {2} или\ + по-нова. # {0} v{1} failed to load. PluginWrapper.failed_to_load_plugin=\ - \u201e{0}\u201c, \u0432\u0435\u0440\u0441\u0438\u044f {1} \u043d\u0435 \u0441\u0435 \u0437\u0430\u0440\u0435\u0434\u0438. + „{0}“, верÑÐ¸Ñ {1} не Ñе зареди. # Plugins Failed To Load PluginWrapper.PluginWrapperAdministrativeMonitor.DisplayName=\ - \u041f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438\u0442\u0435 \u043d\u0435 \u0441\u0435 \u0437\u0430\u0440\u0435\u0434\u0438\u0445\u0430 + ПриÑтавките не Ñе заредиха # Invalid Plugin Configuration PluginManager.PluginUpdateMonitor.DisplayName=\ - \u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u043d\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430 -# Whitespace can no longer be used as the separator. Please Use \u2018,\u2019 as the separator instead. + Ðеправилни наÑтройки на приÑтавка +# Whitespace can no longer be used as the separator. Please Use ‘,’ as the separator instead. FilePath.validateAntFileMask.whitespaceSeparator=\ - \u0412\u0435\u0447\u0435 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b \u0437\u0430 \u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u0435\u043b. \u041f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u0437\u0430\u043f\u0435\u0442\u0430\u044f: \u201e,\u201c + Вече не може да използвате интервал за разделител. Ползвайте запетаÑ: „,“ # Cyclic Dependencies Detector PluginManager.PluginCycleDependenciesMonitor.DisplayName=\ - \u041e\u0442\u043a\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0446\u0438\u043a\u043b\u0438\u0447\u043d\u0438 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438 + Откриване на циклични завиÑимоÑти diff --git a/core/src/main/resources/hudson/Messages_da.properties b/core/src/main/resources/hudson/Messages_da.properties index 9f5e7d0ee791..4d77f93b4c63 100644 --- a/core/src/main/resources/hudson/Messages_da.properties +++ b/core/src/main/resources/hudson/Messages_da.properties @@ -23,20 +23,20 @@ Util.minute={0} min PluginManager.DisplayName=Plugin Bestyrer FilePath.validateRelativePath.noSuchDirectory=Direktorie findes ikke: ''{0}'' -FilePath.TildaDoesntWork=''~'' er kun underst\u00f8ttet i en Unix shell og ingen andre steder. +FilePath.TildaDoesntWork=''~'' er kun understøttet i en Unix shell og ingen andre steder. Util.millisecond={0} ms FilePath.validateAntFileMask.portionMatchAndSuggest=''{0}'' matcher ikke noget, selvom ''{1}'' findes FilePath.validateAntFileMask.doesntMatchAnything=''{0}'' matcher ikke noget FilePath.validateRelativePath.wildcardNotAllowed=Wildcard er ikke tilladt her FilePath.validateRelativePath.notFile=''{0}'' er ikke en fil -FilePath.validateAntFileMask.doesntMatchAndSuggest=''{0}'' matcher ikke noget, men ''{1}'' g\u00f8r. M\u00e5ske er det det du mener? +FilePath.validateAntFileMask.doesntMatchAndSuggest=''{0}'' matcher ikke noget, men ''{1}'' gør. MÃ¥ske er det det du mener? FilePath.validateRelativePath.notDirectory=''{0}'' er ikke et direktorie FilePath.validateRelativePath.noSuchFile=Fil findes ikke: ''{0}'' Util.second={0} sek Util.day ={0} {0,choice,0#dage|1#dag|1~) wird in Ant-Patterns nicht als Home-Verzeichnis interpretiert. -FilePath.validateAntFileMask.matchWithCaseInsensitive=\u2018{0}\u2019 konnte keine Treffer finden, da Gro\u00DF- und Kleinschreibung ber\u00FCcksichtigt wird. Sie k\u00F6nnen dies deaktivieren, damit das Suchmuster Ergebnisse findet. -FilePath.validateAntFileMask.whitespaceSeparator=Leerzeichen k\u00F6nnen nicht mehr als Trennzeichen verwendet werden. Bitte verwenden Sie \u2018,\u2019 stattdessen. +FilePath.validateAntFileMask.matchWithCaseInsensitive=‘{0}’ konnte keine Treffer finden, da Groß- und Kleinschreibung berücksichtigt wird. Sie können dies deaktivieren, damit das Suchmuster Ergebnisse findet. +FilePath.validateAntFileMask.whitespaceSeparator=Leerzeichen können nicht mehr als Trennzeichen verwendet werden. Bitte verwenden Sie ‘,’ stattdessen. PluginManager.DisplayName=Plugins verwalten PluginManager.PortNotANumber=Port ist keine Zahl PluginManager.PortNotInRange=Port ist keine Zahl zwischen {0} und {1,number,#} -PluginManager.PluginCycleDependenciesMonitor.DisplayName=Erkennung zyklischer Abh\u00E4ngigkeiten -PluginManager.PluginUpdateMonitor.DisplayName=Ung\u00FCltige Plugin-Konfiguration +PluginManager.PluginCycleDependenciesMonitor.DisplayName=Erkennung zyklischer Abhängigkeiten +PluginManager.PluginUpdateMonitor.DisplayName=Ungültige Plugin-Konfiguration PluginWrapper.disabled={0} ist deaktiviert. Aktivieren Sie es. PluginWrapper.disabledAndObsolete={0} v. {1} ist deaktiviert und veraltet. Installieren Sie Version {2} oder neuer, und aktivieren Sie das Plugin. @@ -63,16 +63,16 @@ PluginWrapper.failed_to_load_dependency={0} v. {1} konnte nicht geladen werden. PluginWrapper.failed_to_load_plugin={0} v. {1} konnte nicht geladen werden. PluginWrapper.missing={0} v. {1} ist nicht vorhanden. Installieren Sie Version {1} oder neuer. PluginWrapper.obsolete={0} v. {1} ist veraltet. Installieren Sie Version {2} oder neuer. -PluginWrapper.obsoleteCore=Dieses Plugin ben\u00F6tigt Jenkins {1} oder neuer. +PluginWrapper.obsoleteCore=Dieses Plugin benötigt Jenkins {1} oder neuer. PluginWrapper.PluginWrapperAdministrativeMonitor.DisplayName=Plugin-Ladefehler ProxyConfiguration.FailedToConnectViaProxy=Konnte nicht mit {0} verbinden. ProxyConfiguration.FailedToConnect=Konnte nicht mit {0} verbinden (code {1}). -ProxyConfiguration.MalformedTestUrl=Format der Test-URL ung\u00FCltig +ProxyConfiguration.MalformedTestUrl=Format der Test-URL ungültig ProxyConfiguration.Success=Erfolg ProxyConfiguration.TestUrlRequired=Test-URL muss angegeben werden. -AboutJenkins.DisplayName=\u00DCber Jenkins +AboutJenkins.DisplayName=Ãœber Jenkins AboutJenkins.Description=Versions- und Lizenzinformationen anzeigen. Functions.NoExceptionDetails=Keine Details zum Ausnahmefehler diff --git a/core/src/main/resources/hudson/Messages_es.properties b/core/src/main/resources/hudson/Messages_es.properties index 79a08114bc74..96328b18eb9c 100644 --- a/core/src/main/resources/hudson/Messages_es.properties +++ b/core/src/main/resources/hudson/Messages_es.properties @@ -24,104 +24,97 @@ FilePath.did_not_manage_to_validate_may_be_too_sl=No se puede validar {0} (puede FilePath.validateAntFileMask.whitespaceSeprator=\ No se pueden utilizar espacios en blanco como separadores. Utiliza coma '','' FilePath.validateAntFileMask.doesntMatchAndSuggest=\ - ''{0}'' no coincide con nada, pero ''{1}'' s\u00ED. Quizas es lo que quieres decir. -FilePath.validateAntFileMask.portionMatchAndSuggest=''{0}'' no coincide con nada aunque ''{1}'' s\u00ED existe + ''{0}'' no coincide con nada, pero ''{1}'' sí. Quizas es lo que quieres decir. +FilePath.validateAntFileMask.portionMatchAndSuggest=''{0}'' no coincide con nada aunque ''{1}'' sí existe FilePath.validateAntFileMask.portionMatchButPreviousNotMatchAndSuggest=''{0}'' no coincide con nada: ''{1}'' existe, pero ''{2}'' no existe FilePath.validateAntFileMask.doesntMatchAnything=''{0}'' no coincide con nada FilePath.validateAntFileMask.matchWithCaseInsensitive=\ - ''{0}'' no coincide porque tiene en cuenta la capitalizaci\u00f3n. Puede desactivar la distinci\u00f3n entre may\u00fasculas y min\u00fasculas para obtener coincidencias + ''{0}'' no coincide porque tiene en cuenta la capitalización. Puede desactivar la distinción entre mayúsculas y minúsculas para obtener coincidencias FilePath.validateAntFileMask.doesntMatchAnythingAndSuggest=''{0}'' no coincide con nada: ''{1}'' no existe -FilePath.validateRelativePath.wildcardNotAllowed=No se permiten caracteres comod\u00EDn. +FilePath.validateRelativePath.wildcardNotAllowed=No se permiten caracteres comodín. FilePath.validateRelativePath.notFile=''{0}'' no es un archivo FilePath.validateRelativePath.notDirectory=''{0}'' no es un directorio FilePath.validateRelativePath.noSuchFile=El fichero no existe ''{0}'' FilePath.validateRelativePath.noSuchDirectory=El directorio no existe ''{0}'' -PluginManager.PluginDoesntSupportDynamicLoad.RestartRequired=El plugin {0} no soporta la carga din\u00E1mica, por lo que es necesario reiniciar Jenkins para que los cambios tengan efecto +PluginManager.PluginDoesntSupportDynamicLoad.RestartRequired=El plugin {0} no soporta la carga dinámica, por lo que es necesario reiniciar Jenkins para que los cambios tengan efecto PluginManager.PluginIsAlreadyInstalled.RestartRequired=El plugin {0} ya ha sido instalado. Es necesario reiniciar Jenkins para que los cambios tengan efecto. Util.millisecond={0} Ms Util.second={0} Seg Util.minute={0} Min Util.hour ={0} Hor -Util.day ={0} {0,choice,0#d\u00EDas|1#d\u00EDa|1\u00a1Este plugin est\u00e1 en adopci\u00f3n! Buscamos nuevos mantenedores. \ - Visita nuestro sitio de la iniciativa Adopte un plugin para obtener m\u00e1s informaci\u00f3n. -PluginManager.newerVersionExists=\ - Existe una versi\u00f3n m\u00e1s nueva que la que se ofrece para la instalaci\u00f3n (versi\u00f3n {0}). \ - Este es el t\u00edpico caso en el que no se satisfacen los requisitos del plugin, por ejemplo, una versi\u00f3n m\u00e1s reciente de Jenkins es necesaria. -PluginManager.newerVersionEntry=\ - Esta versi\u00f3n del plugin existe pero no se ofrece como actualizaci\u00f3n. \ - Este es el t\u00edpico caso en el que no se satisfacen los requisitos del plugin, por ejemplo, una versi\u00f3n m\u00e1s reciente de Jenkins es necesaria. \ - Consulte la documentaci\u00f3n del plugin para obtener informaci\u00f3n sobre sus requisitos. + ¡Este plugin está en adopción! Buscamos nuevos mantenedores. \ + Visita nuestro sitio de la iniciativa Adopte un plugin para obtener más información. PluginManager.unavailable=No disponible -PluginManager.deprecationWarning=Este plugin est\u00e1 obsoleto. En general, esto significa que ya no se desarrolla o que puede dejar de funcionar. M\u00e1s informaci\u00f3n +PluginManager.deprecationWarning=Este plugin está obsoleto. En general, esto significa que ya no se desarrolla o que puede dejar de funcionar. Más información AboutJenkins.DisplayName=Acerca de Jenkins -AboutJenkins.Description=Eche un vistazo a la informaci\u00F3n sobre la versi\u00F3n y la licencia. +AboutJenkins.Description=Eche un vistazo a la información sobre la versión y la licencia. ProxyConfiguration.TestUrlRequired=Se requiere un URL de prueba. -ProxyConfiguration.MalformedTestUrl=La URL de prueba est\u00e1 mal formada. +ProxyConfiguration.MalformedTestUrl=La URL de prueba está mal formada. ProxyConfiguration.FailedToConnectViaProxy=No se puede conectar a {0}. -ProxyConfiguration.FailedToConnect=No se puede conectar a {0} (c\u00f3digo {1}). +ProxyConfiguration.FailedToConnect=No se puede conectar a {0} (código {1}). ProxyConfiguration.Success=Configurado -Functions.NoExceptionDetails=No hay detalles de la excepci\u00f3n +Functions.NoExceptionDetails=No hay detalles de la excepción PluginWrapper.missing=Falta el plugin: {0} ({1}) PluginWrapper.failed_to_load_plugin=No se puede cargar: {0} ({1}) PluginWrapper.failed_to_load_dependency=No se puede cargar: {0} ({1}) -PluginWrapper.disabledAndObsolete=Acutalizaci\u00f3n requerida: {0} ({1}) a {2} o superior -PluginWrapper.disabled=El plugin requerido est\u00e1 desactivado: {0} -PluginWrapper.obsolete=Acutalizaci\u00f3n requerida: {0} ({1}) va a actualizar a {2} o superior +PluginWrapper.disabledAndObsolete=Acutalización requerida: {0} ({1}) a {2} o superior +PluginWrapper.disabled=El plugin requerido está desactivado: {0} +PluginWrapper.obsolete=Acutalización requerida: {0} ({1}) va a actualizar a {2} o superior PluginWrapper.obsoleteCore=Se requiere Jenkins ({1}) o superior PluginWrapper.PluginWrapperAdministrativeMonitor.DisplayName=No se pueden cargar los plugins PluginWrapper.Already.Disabled=El plugin {0} ya estaba deshabilitado -PluginWrapper.Plugin.Has.Dependant=El plugin {0} tiene, al menos, un plugin dependiente ({1}) y la estrategia de deshabilitaci\u00F3n es {2}, as\u00ED que no puede ser deshabilitado +PluginWrapper.Plugin.Has.Dependant=El plugin {0} tiene, al menos, un plugin dependiente ({1}) y la estrategia de deshabilitación es {2}, así que no puede ser deshabilitado PluginWrapper.Plugin.Disabled=Plugin {0} deshabilitado PluginWrapper.NoSuchPlugin=No se encuentra un plugin con el nombre {0} PluginWrapper.Error.Disabling=Hubo un error al desactivar el plugin ''{0}''. Error: ''{1}'' diff --git a/core/src/main/resources/hudson/Messages_fr.properties b/core/src/main/resources/hudson/Messages_fr.properties index 3c889832cbe5..13c51132fe7c 100644 --- a/core/src/main/resources/hudson/Messages_fr.properties +++ b/core/src/main/resources/hudson/Messages_fr.properties @@ -20,24 +20,24 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -FilePath.did_not_manage_to_validate_may_be_too_sl=Impossible de valider {0} (peut-\u00eatre est-ce trop lent) +FilePath.did_not_manage_to_validate_may_be_too_sl=Impossible de valider {0} (peut-être est-ce trop lent) FilePath.validateAntFileMask.whitespaceSeprator=\ - Les espaces ne peuvent plus \u00eatre utilis\u00e9s comme s\u00e9parateurs. Merci d''utiliser maintenant '','' comme s\u00e9parateur \u00e0 la place. + Les espaces ne peuvent plus être utilisés comme séparateurs. Merci d''utiliser maintenant '','' comme séparateur à la place. FilePath.validateAntFileMask.doesntMatchAndSuggest=\ - ''{0}'' ne correspond \u00e0 rien, mais ''{1}'' oui. Peut-\u00eatre est-ce cela que vous voulez dire? -FilePath.validateAntFileMask.portionMatchAndSuggest=''{0}'' ne correspond \u00e0 rien, m\u00eame si ''{1}'' existe -FilePath.validateAntFileMask.portionMatchButPreviousNotMatchAndSuggest=''{0}'' ne correspond \u00e0 rien : ''{1}'' existe mais pas ''{2}'' -FilePath.validateAntFileMask.doesntMatchAnything=''{0}'' ne correspond \u00e0 rien -FilePath.validateAntFileMask.doesntMatchAnythingAndSuggest=''{0}'' ne correspond \u00e0 rien : m\u00eame ''{1}'' n''existe pas + ''{0}'' ne correspond à rien, mais ''{1}'' oui. Peut-être est-ce cela que vous voulez dire? +FilePath.validateAntFileMask.portionMatchAndSuggest=''{0}'' ne correspond à rien, même si ''{1}'' existe +FilePath.validateAntFileMask.portionMatchButPreviousNotMatchAndSuggest=''{0}'' ne correspond à rien : ''{1}'' existe mais pas ''{2}'' +FilePath.validateAntFileMask.doesntMatchAnything=''{0}'' ne correspond à rien +FilePath.validateAntFileMask.doesntMatchAnythingAndSuggest=''{0}'' ne correspond à rien : même ''{1}'' n''existe pas -FilePath.validateRelativePath.wildcardNotAllowed=L''utilisation des Wildcard n''est pas autoris\u00e9e ici +FilePath.validateRelativePath.wildcardNotAllowed=L''utilisation des Wildcard n''est pas autorisée ici FilePath.validateRelativePath.notFile=''{0}'' n''est pas un fichier -FilePath.validateRelativePath.notDirectory=''{0}'' n''est pas un r\u00e9pertoire +FilePath.validateRelativePath.notDirectory=''{0}'' n''est pas un répertoire FilePath.validateRelativePath.noSuchFile=Aucun fichier correspondant : ''{0}'' -FilePath.validateRelativePath.noSuchDirectory=Aucun r\u00e9pertoire correspondant : ''{0}'' +FilePath.validateRelativePath.noSuchDirectory=Aucun répertoire correspondant : ''{0}'' -PluginManager.PluginDoesntSupportDynamicLoad.RestartRequired=Le plugin {0} ne supporte pas le chargement dynamique. Jenkins doit \u00eatre red\u00e9marr\u00e9 pour que la mise \u00e0 jour soit effective. -PluginManager.PluginIsAlreadyInstalled.RestartRequired=Le plugin {0} est d\u00e9j\u00e0 install\u00e9. Jenkins doit \u00eatre red\u00e9marr\u00e9 pour que la mise \u00e0 jour soit effective. +PluginManager.PluginDoesntSupportDynamicLoad.RestartRequired=Le plugin {0} ne supporte pas le chargement dynamique. Jenkins doit être redémarré pour que la mise à jour soit effective. +PluginManager.PluginIsAlreadyInstalled.RestartRequired=Le plugin {0} est déjà installé. Jenkins doit être redémarré pour que la mise à jour soit effective. Util.millisecond={0} ms Util.second={0} s Util.minute={0} mn @@ -46,15 +46,15 @@ Util.day ={0} j Util.month ={0} mo. Util.year ={0} an. -FilePath.TildaDoesntWork=''~'' n''est support\u00e9 que sur les shells Unix. +FilePath.TildaDoesntWork=''~'' n''est supporté que sur les shells Unix. PluginManager.DisplayName=Gestion des plugins PluginManager.PortNotANumber=Le port n''est pas un nombre -PluginManager.PortNotInRange=Le port n''est pas dans l''intervalle de {0} \u00e0 {1} +PluginManager.PortNotInRange=Le port n''est pas dans l''intervalle de {0} à {1} AboutJenkins.DisplayName=A propos de Jenkins AboutJenkins.Description=Afficher les informations de version et de licence ProxyConfiguration.TestUrlRequired=Une URL de test est requise. -ProxyConfiguration.FailedToConnectViaProxy=Impossible de se connecter \u00e0 {0}. -ProxyConfiguration.FailedToConnect=Impossible de se connecter \u00e0 {0} (code {1}). -ProxyConfiguration.Success=Succ\u00e8s +ProxyConfiguration.FailedToConnectViaProxy=Impossible de se connecter à {0}. +ProxyConfiguration.FailedToConnect=Impossible de se connecter à {0} (code {1}). +ProxyConfiguration.Success=Succès diff --git a/core/src/main/resources/hudson/Messages_it.properties b/core/src/main/resources/hudson/Messages_it.properties index b8d21635e891..b9c7d3aa0a48 100644 --- a/core/src/main/resources/hudson/Messages_it.properties +++ b/core/src/main/resources/hudson/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -25,29 +25,29 @@ AboutJenkins.Description=Visualizza le informazioni sulla versione e sulla \ licenza. AboutJenkins.DisplayName=Informazioni su Jenkins FilePath.did_not_manage_to_validate_may_be_too_sl=Impossibile convalidare {0} \ - (forse l''operazione è troppo lenta) -FilePath.TildaDoesntWork="~" è supportato solo ed esclusivamente in una shell \ + (forse l''operazione è troppo lenta) +FilePath.TildaDoesntWork="~" è supportato solo ed esclusivamente in una shell \ UNIX. FilePath.validateAntFileMask.doesntMatchAndSuggest=Non vi sono corrispondenze \ - per "{0}", ma per "{1}" sì. Forse era ciò che si intendeva? + per "{0}", ma per "{1}" sì. Forse era ciò che si intendeva? FilePath.validateAntFileMask.doesntMatchAnything=Non vi sono corrispondenze \ per "{0}" FilePath.validateAntFileMask.doesntMatchAnythingAndSuggest=Non vi sono \ corrispondenze per "{0}": non esiste nemmeno "{1}" FilePath.validateAntFileMask.matchWithCaseInsensitive=Non vi sono \ - corrispondenze per "{0}" perché si fa differenza tra maiuscole e minuscole. \ - È possibile disattivare Maiuscole/minuscole per ottenere delle corrispondenze + corrispondenze per "{0}" perché si fa differenza tra maiuscole e minuscole. \ + È possibile disattivare Maiuscole/minuscole per ottenere delle corrispondenze FilePath.validateAntFileMask.portionMatchAndSuggest=Non vi sono corrispondenze \ - per "{0}", benché "{1}" esista + per "{0}", benché "{1}" esista FilePath.validateAntFileMask.portionMatchButPreviousNotMatchAndSuggest=Non vi \ sono corrispondenze per "{0}": "{1}" esiste ma "{2}" no -FilePath.validateAntFileMask.whitespaceSeparator=Non è più possibile \ +FilePath.validateAntFileMask.whitespaceSeparator=Non è più possibile \ utilizzare spazi bianchi come separatore. Si utilizzi invece "," come \ separatore. FilePath.validateRelativePath.noSuchDirectory=Directory non esistente: "{0}" FilePath.validateRelativePath.noSuchFile=File non esistente: "{0}" -FilePath.validateRelativePath.notDirectory="{0}" non è una directory -FilePath.validateRelativePath.notFile="{0}" non è un file +FilePath.validateRelativePath.notDirectory="{0}" non è una directory +FilePath.validateRelativePath.notFile="{0}" non è un file FilePath.validateRelativePath.wildcardNotAllowed=Non sono consentiti \ caratteri jolly qui Functions.NoExceptionDetails=Nessun dettaglio sull''eccezione @@ -63,16 +63,16 @@ PluginManager.PluginDoesntSupportDynamicLoad.RestartRequired=Il componente \ aggiuntivo {0} non supporta il caricamento dinamico. Jenkins deve essere \ riavviato per completare l''aggiornamento. PluginManager.PluginIsAlreadyInstalled.RestartRequired=Il componente \ - aggiuntivo {0} è già installato. Jenkins deve essere riavviato per \ + aggiuntivo {0} è già installato. Jenkins deve essere riavviato per \ completare l''aggiornamento. PluginManager.PluginUpdateMonitor.DisplayName=Configurazione componente \ aggiuntivo non valida -PluginManager.PortNotANumber=La porta non è un numero -PluginManager.PortNotInRange=La porta non è compresa nell''intervallo da {0} \ +PluginManager.PortNotANumber=La porta non è un numero +PluginManager.PortNotInRange=La porta non è compresa nell''intervallo da {0} \ a {1} PluginManager.UnexpectedException=Eccezione non prevista durante i nuovi \ tentativi di controllo dei siti di aggiornamento -PluginManager.UpdateSiteChangeLogLevel=È possibile modificare il livello di \ +PluginManager.UpdateSiteChangeLogLevel=È possibile modificare il livello di \ logging del registratore log {0} ad AVVERTENZA o a un valore inferiore per \ visualizzare ulteriori informazioni e il messaggio d''errore associato ad \ ogni tentativo @@ -82,33 +82,33 @@ PluginManager.UpdateSiteError=Errore durante il controllo dei siti di \ PluginManager.UploadPluginsPermission.Description=Il permesso "Carica \ componenti aggiuntivi" consente a un utente di caricare componenti \ aggiuntivi arbitrari. -PluginWrapper.Already.Disabled=Il componente aggiuntivo "{0}" era già \ +PluginWrapper.Already.Disabled=Il componente aggiuntivo "{0}" era già \ disabilitato -PluginWrapper.disabled=Il componente aggiuntivo richiesto {0} è disabilitato +PluginWrapper.disabled=Il componente aggiuntivo richiesto {0} è disabilitato PluginWrapper.disabledAndObsolete=Aggiornamento richiesto: {0} ({1}) deve \ essere aggiornato alla versione {2} o successiva -PluginWrapper.Error.Disabling=Si è verificato un errore durante la \ +PluginWrapper.Error.Disabling=Si è verificato un errore durante la \ disabilitazione del componente aggiuntivo "{0}". Errore: "{1}" PluginWrapper.failed_to_load_dependency=Impossibile caricare: {0} ({1}) PluginWrapper.failed_to_load_plugin=Impossibile caricare il componente \ aggiuntivo: {0} ({1}) PluginWrapper.missing=Componente aggiuntivo mancante: {0} ({1}) -PluginWrapper.NoSuchPlugin=Non è stato trovato alcun componente aggiuntivo \ +PluginWrapper.NoSuchPlugin=Non è stato trovato alcun componente aggiuntivo \ denominato "{0}" PluginWrapper.obsolete=Aggiornamento richiesto: {0} ({1}) deve essere \ aggiornato alla versione {2} o successiva -PluginWrapper.obsoleteCore=È richiesto Jenkins ({1}) o una versione successiva +PluginWrapper.obsoleteCore=È richiesto Jenkins ({1}) o una versione successiva PluginWrapper.Plugin.Disabled=Componente aggiuntivo "{0}" disabilitato PluginWrapper.Plugin.Has.Dependent=Il componente aggiuntivo "{0}" ha almeno \ un componente aggiuntivo dipendente ({1}) e la strategia di disabilitazione \ - è {2}, per cui non può essere disabilitato + è {2}, per cui non può essere disabilitato PluginWrapper.PluginWrapperAdministrativeMonitor.DisplayName=Errore \ caricamento componenti aggiuntivi ProxyConfiguration.FailedToConnect=Impossibile connettersi a {0} (codice {1}). ProxyConfiguration.FailedToConnectViaProxy=Impossibile connettersi a {0}. ProxyConfiguration.MalformedTestUrl=URL di prova {0} malformato. ProxyConfiguration.Success=Connessione riuscita -ProxyConfiguration.TestUrlRequired=È richiesto un URL di prova. +ProxyConfiguration.TestUrlRequired=È richiesto un URL di prova. TcpSlaveAgentListener.PingAgentProtocol.displayName=Protocollo ping Util.day={0} g Util.hour={0} h diff --git a/core/src/main/resources/hudson/Messages_ja.properties b/core/src/main/resources/hudson/Messages_ja.properties index f7520dd4942d..c6665777741b 100644 --- a/core/src/main/resources/hudson/Messages_ja.properties +++ b/core/src/main/resources/hudson/Messages_ja.properties @@ -20,46 +20,46 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -FilePath.did_not_manage_to_validate_may_be_too_sl={0}\u3092\u30c1\u30a7\u30c3\u30af\u3067\u304d\u307e\u305b\u3093(\u305f\u3076\u3093\u3001\u51e6\u7406\u304c\u9045\u3044\u305f\u3081\u3067\u3059)\u3002 +FilePath.did_not_manage_to_validate_may_be_too_sl={0}ã‚’ãƒã‚§ãƒƒã‚¯ã§ãã¾ã›ã‚“(ãŸã¶ã‚“ã€å‡¦ç†ãŒé…ã„ãŸã‚ã§ã™)。 FilePath.validateAntFileMask.whitespaceSeprator=\ - \u7a7a\u767d\u3092\u533a\u5207\u308a\u6587\u5b57\u3068\u3057\u3066\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093\u3002\u7a7a\u767d\u306e\u4ee3\u308f\u308a\u306b'',''\u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002 + 空白を区切り文字ã¨ã—ã¦ä½¿ç”¨ã§ãã¾ã›ã‚“。空白ã®ä»£ã‚ã‚Šã«'',''を使用ã—ã¦ãã ã•ã„。 FilePath.validateAntFileMask.doesntMatchAndSuggest=\ - ''{0}''\u306b\u8a72\u5f53\u3059\u308b\u3082\u306e\u306f\u3042\u308a\u307e\u305b\u3093\u304c\u3001''{1}''\u306b\u306f\u3042\u308a\u307e\u3059\u3002 + ''{0}''ã«è©²å½“ã™ã‚‹ã‚‚ã®ã¯ã‚ã‚Šã¾ã›ã‚“ãŒã€''{1}''ã«ã¯ã‚ã‚Šã¾ã™ã€‚ FilePath.validateAntFileMask.portionMatchAndSuggest=\ - ''{0}''\u306b\u8a72\u5f53\u3059\u308b\u3082\u306e\u306f\u3042\u308a\u307e\u305b\u3093\u304c\u3001''{1}''\u306b\u306f\u3042\u308a\u307e\u3059\u3002 + ''{0}''ã«è©²å½“ã™ã‚‹ã‚‚ã®ã¯ã‚ã‚Šã¾ã›ã‚“ãŒã€''{1}''ã«ã¯ã‚ã‚Šã¾ã™ã€‚ FilePath.validateAntFileMask.portionMatchButPreviousNotMatchAndSuggest=\ - ''{0}''\u306b\u8a72\u5f53\u3059\u308b\u3082\u306e\u306f\u3042\u308a\u307e\u305b\u3093\u3002''{2}''\u306b\u306f\u3042\u308a\u307e\u305b\u3093\u304c\u3001''{1}''\u306b\u306f\u3042\u308a\u307e\u3059\u3002 -FilePath.validateAntFileMask.doesntMatchAnything=''{0}''\u306b\u8a72\u5f53\u3059\u308b\u3082\u306e\u306f\u3042\u308a\u307e\u305b\u3093\u3002 -FilePath.validateAntFileMask.doesntMatchAnythingAndSuggest=''{0}''\u306b\u8a72\u5f53\u3059\u308b\u3082\u306e\u306f\u3042\u308a\u307e\u305b\u3093\u3002''{1}''\u3067\u3055\u3048\u5b58\u5728\u3057\u307e\u305b\u3093\u3002 + ''{0}''ã«è©²å½“ã™ã‚‹ã‚‚ã®ã¯ã‚ã‚Šã¾ã›ã‚“。''{2}''ã«ã¯ã‚ã‚Šã¾ã›ã‚“ãŒã€''{1}''ã«ã¯ã‚ã‚Šã¾ã™ã€‚ +FilePath.validateAntFileMask.doesntMatchAnything=''{0}''ã«è©²å½“ã™ã‚‹ã‚‚ã®ã¯ã‚ã‚Šã¾ã›ã‚“。 +FilePath.validateAntFileMask.doesntMatchAnythingAndSuggest=''{0}''ã«è©²å½“ã™ã‚‹ã‚‚ã®ã¯ã‚ã‚Šã¾ã›ã‚“。''{1}''ã§ã•ãˆå­˜åœ¨ã—ã¾ã›ã‚“。 -FilePath.validateRelativePath.wildcardNotAllowed=\u30ef\u30a4\u30eb\u30c9\u30ab\u30fc\u30c9\u3092\u3053\u3053\u3067\u306f\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093\u3002 -FilePath.validateRelativePath.notFile=''{0}'' \u306f\u30d5\u30a1\u30a4\u30eb\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 -FilePath.validateRelativePath.notDirectory=''{0}'' \u306f\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 -FilePath.validateRelativePath.noSuchFile=\u30d5\u30a1\u30a4\u30eb ''{0}'' \u306f\u5b58\u5728\u3057\u307e\u305b\u3093\u3002 -FilePath.validateRelativePath.noSuchDirectory=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea ''{0}'' \u306f\u5b58\u5728\u3057\u307e\u305b\u3093\u3002 +FilePath.validateRelativePath.wildcardNotAllowed=ワイルドカードをã“ã“ã§ã¯ä½¿ç”¨ã§ãã¾ã›ã‚“。 +FilePath.validateRelativePath.notFile=''{0}'' ã¯ãƒ•ã‚¡ã‚¤ãƒ«ã§ã¯ã‚ã‚Šã¾ã›ã‚“。 +FilePath.validateRelativePath.notDirectory=''{0}'' ã¯ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã§ã¯ã‚ã‚Šã¾ã›ã‚“。 +FilePath.validateRelativePath.noSuchFile=ファイル ''{0}'' ã¯å­˜åœ¨ã—ã¾ã›ã‚“。 +FilePath.validateRelativePath.noSuchDirectory=ディレクトリ ''{0}'' ã¯å­˜åœ¨ã—ã¾ã›ã‚“。 PluginManager.PluginDoesntSupportDynamicLoad.RestartRequired=\ - {0} \u30d7\u30e9\u30b0\u30a4\u30f3\u306f\u30c0\u30a4\u30ca\u30df\u30c3\u30af\u30ed\u30fc\u30c7\u30a3\u30f3\u30b0\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u305b\u3093\u3002\u5909\u66f4\u3092\u53cd\u6620\u3059\u308b\u306b\u306fJenkins\u3092\u518d\u8d77\u52d5\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 + {0} プラグインã¯ãƒ€ã‚¤ãƒŠãƒŸãƒƒã‚¯ãƒ­ãƒ¼ãƒ‡ã‚£ãƒ³ã‚°ã‚’サãƒãƒ¼ãƒˆã—ã¦ã„ã¾ã›ã‚“。変更をå映ã™ã‚‹ã«ã¯Jenkinsã‚’å†èµ·å‹•ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ PluginManager.PluginIsAlreadyInstalled.RestartRequired=\ - {0} \u30d7\u30e9\u30b0\u30a4\u30f3\u306f\u65e2\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u5909\u66f4\u3092\u53cd\u6620\u3059\u308b\u306b\u306fJenkins\u3092\u518d\u8d77\u52d5\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 + {0} プラグインã¯æ—¢ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã¾ã™ã€‚変更をå映ã™ã‚‹ã«ã¯Jenkinsã‚’å†èµ·å‹•ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ Util.millisecond={0} ms -Util.second={0} \u79d2 -Util.minute={0} \u5206 -Util.hour ={0} \u6642\u9593 -Util.day ={0} \u65e5 -Util.month ={0} \u30f6\u6708 -Util.year ={0} \u5e74 +Util.second={0} 秒 +Util.minute={0} 分 +Util.hour ={0} 時間 +Util.day ={0} æ—¥ +Util.month ={0} ヶ月 +Util.year ={0} å¹´ -FilePath.TildaDoesntWork=''~'' \u306f\u3001Unix\u306e\u30b7\u30a7\u30eb\u3067\u306e\u307f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u3059\u3002 +FilePath.TildaDoesntWork=''~'' ã¯ã€Unixã®ã‚·ã‚§ãƒ«ã§ã®ã¿ã‚µãƒãƒ¼ãƒˆã•ã‚Œã¦ã„ã¾ã™ã€‚ -PluginManager.DisplayName=\u30d7\u30e9\u30b0\u30a4\u30f3\u30de\u30cd\u30fc\u30b8\u30e3\u30fc -PluginManager.PortNotANumber=\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u6570\u5b57\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 -PluginManager.PortNotInRange=\u30dd\u30fc\u30c8\u756a\u53f7\u304c{0}\u304b\u3089{1}\u307e\u3067\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 -AboutJenkins.DisplayName=Jenkins\u306b\u3064\u3044\u3066 -AboutJenkins.Description=\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u30e9\u30a4\u30bb\u30f3\u30b9\u60c5\u5831\u3092\u8868\u793a\u3057\u307e\u3059\u3002 +PluginManager.DisplayName=プラグインマãƒãƒ¼ã‚¸ãƒ£ãƒ¼ +PluginManager.PortNotANumber=ãƒãƒ¼ãƒˆç•ªå·ãŒæ•°å­—ã§ã¯ã‚ã‚Šã¾ã›ã‚“。 +PluginManager.PortNotInRange=ãƒãƒ¼ãƒˆç•ªå·ãŒ{0}ã‹ã‚‰{1}ã¾ã§ã§ã¯ã‚ã‚Šã¾ã›ã‚“。 +AboutJenkins.DisplayName=Jenkinsã«ã¤ã„㦠+AboutJenkins.Description=ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã¨ãƒ©ã‚¤ã‚»ãƒ³ã‚¹æƒ…報を表示ã—ã¾ã™ã€‚ -ProxyConfiguration.TestUrlRequired=\u30c6\u30b9\u30c8URL\u306f\u5fc5\u9808\u3067\u3059\u3002 -ProxyConfiguration.FailedToConnectViaProxy={0} \u306b\u63a5\u7d9a\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 -ProxyConfiguration.FailedToConnect={0} \u306b\u63a5\u7d9a\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002(\u30b3\u30fc\u30c9 {1}). -ProxyConfiguration.Success=\u6210\u529f +ProxyConfiguration.TestUrlRequired=テストURLã¯å¿…é ˆã§ã™ã€‚ +ProxyConfiguration.FailedToConnectViaProxy={0} ã«æŽ¥ç¶šã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ +ProxyConfiguration.FailedToConnect={0} ã«æŽ¥ç¶šã§ãã¾ã›ã‚“ã§ã—ãŸã€‚(コード {1}). +ProxyConfiguration.Success=æˆåŠŸ diff --git a/core/src/main/resources/hudson/Messages_pl.properties b/core/src/main/resources/hudson/Messages_pl.properties index 28a35478273e..0d134788561e 100644 --- a/core/src/main/resources/hudson/Messages_pl.properties +++ b/core/src/main/resources/hudson/Messages_pl.properties @@ -23,18 +23,18 @@ Util.millisecond={0} ms Util.second={0} sek Util.minute={0} min Util.hour={0} godz -Util.day={0} {0,choice,0#dni|1#dzie\u0144|1Esta extens\u00E3o est\u00E1 descontinuada. Em geral isto significa que ou ela \ - est\u00E1 obsoleta, n\u00E3o esta mais ativamente em desenvolvimento ou n\u00E3o funciona mais. \ + Você está usando uma URL insegura para baixar a extensão, use por conta e risco! +PluginManager.deprecationWarning=Esta extensão está descontinuada. Em geral isto significa que ou ela \ + está obsoleta, não esta mais ativamente em desenvolvimento ou não funciona mais. \ Saiba mais. -PluginManager.ago={0} atr\u00E1s -PluginManager.UnexpectedException=Exce\u00E7\u00E3o inesperada durante processo de retentativa de verificar servidores de \ - atualiza\u00E7\u00E3o -PluginWrapper.Plugin.Has.Dependent=A extens\u00E3o ''{0}'' tem, pelo menos, uma extens\u00E3o dependente ({1}) e a estrat\u00E9gia \ - para desabilitar \u00E9 {2}, portanto n\u00E3o pode ser desabilitada +PluginManager.ago={0} atrás +PluginManager.UnexpectedException=Exceção inesperada durante processo de retentativa de verificar servidores de \ + atualização +PluginWrapper.Plugin.Has.Dependent=A extensão ''{0}'' tem, pelo menos, uma extensão dependente ({1}) e a estratégia \ + para desabilitar é {2}, portanto não pode ser desabilitada PluginWrapper.failed_to_load_dependency_2=Falha para carregar: {0} ({1} {2}) -PluginManager.UpdateSiteError=Erro ao verificar os s\u00EDtios de atualiza\u00E7\u00E3o durante {0} tentativa(s). \u00DAltima tentativa \ +PluginManager.UpdateSiteError=Erro ao verificar os sítios de atualização durante {0} tentativa(s). Última tentativa \ foi: {1} PluginManager.depCoreWarning= \ - Aviso: esta extens\u00E3o tem depend\u00EAncias de outras extens\u00F5es que requerem o Jenkins na vers\u00E3o {0} ou mais recente. \ - O Jenkins se recusar\u00E1 a carregar depend\u00EAncias que requerem uma nova vers\u00E3o dele, \ - portanto o carregamento desta extens\u00E3o ir\u00E1 falhar. + Aviso: esta extensão tem dependências de outras extensões que requerem o Jenkins na versão {0} ou mais recente. \ + O Jenkins se recusará a carregar dependências que requerem uma nova versão dele, \ + portanto o carregamento desta extensão irá falhar. PluginManager.securityWarning= \ - Aviso: esta vers\u00E3o de extens\u00E3o pode n\u00E3o ser segura para usar. Por favor revise as seguintes notas de seguran\u00E7a: -PluginManager.unavailable=Indispon\u00EDvel + Aviso: esta versão de extensão pode não ser segura para usar. Por favor revise as seguintes notas de segurança: +PluginManager.unavailable=Indisponível PluginManager.newerVersionExists= \ - Uma vers\u00E3o mais recente que a oferecida para instala\u00E7\u00E3o est\u00E1 dispon\u00EDvel (vers\u00E3o {0}). \ - Isto \u00E9 um caso t\u00EDpico de quando os requisitos de uma extens\u00E3o, como uma vers\u00E3o mais recente do Jenkins, n\u00E3o est\u00E3o \ + Uma versão mais recente que a oferecida para instalação está disponível (versão {0}). \ + Isto é um caso típico de quando os requisitos de uma extensão, como uma versão mais recente do Jenkins, não estão \ satisfeitos. PluginManager.adoptThisPlugin= \ - Esta extens\u00E3o est\u00E1 dispon\u00EDvel para ado\u00E7\u00E3o!N\u00F3s estamos procurando por novos mantenedores. \ + Esta extensão está disponível para adoção!Nós estamos procurando por novos mantenedores. \ Visite nossa iniciativa \ Adopt a Plugin para maiores informa\u00E7\u00F5es. + target="_blank">Adopt a Plugin para maiores informações. PluginManager.compatWarning= \ - Aviso: a vers\u00E3o mais nova desta extens\u00E3o est\u00E1 marcada como incompat\u00EDvel com a vers\u00E3o instalada. \ - Isto geralmente acontece por seu comportamento ou APIs mudaram ou porque ela tem configura\u00E7\u00F5es em formato diferente \ - da vers\u00E3o instalada. Outras extens\u00F5es com uma depend\u00EAncia desta podem ser incompat\u00EDveis com esta atualiza\u00E7\u00E3o e n\u00E3o \ - funcionar\u00E3o mais como esperado, tarefas que usam esta extens\u00E3o poder\u00E3o ter que ser reconfiguradas e/ou voc\u00EA pode n\u00E3o \ - ser capaz de reverter de forma limpa para a vers\u00E3o anterior sem restaurar manualmente as configura\u00E7\u00F5es antigas. \ - Consulte as notas de lan\u00E7amento desta extens\u00E3o para maiores detalhes. -PluginManager.CheckUpdateServerError=Ocorreram erros ao verificar os s\u00EDtios de atualiza\u00E7\u00E3o: {0} -PluginManager.parentCompatWarning=As seguintes extens\u00F5es s\u00E3o afetadas por isso: + Aviso: a versão mais nova desta extensão está marcada como incompatível com a versão instalada. \ + Isto geralmente acontece por seu comportamento ou APIs mudaram ou porque ela tem configurações em formato diferente \ + da versão instalada. Outras extensões com uma dependência desta podem ser incompatíveis com esta atualização e não \ + funcionarão mais como esperado, tarefas que usam esta extensão poderão ter que ser reconfiguradas e/ou você pode não \ + ser capaz de reverter de forma limpa para a versão anterior sem restaurar manualmente as configurações antigas. \ + Consulte as notas de lançamento desta extensão para maiores detalhes. +PluginManager.CheckUpdateServerError=Ocorreram erros ao verificar os sítios de atualização: {0} +PluginManager.parentCompatWarning=As seguintes extensões são afetadas por isso: PluginManager.newerVersionEntry= \ - Esta vers\u00E3o de extens\u00E3o existe mas n\u00E3o est\u00E1 sendo oferecida como uma atualiza\u00E7\u00E3o. \ - Isto \u00E9 um caso t\u00EDpico de quando os requisitos de uma extens\u00E3o, como uma vers\u00E3o mais recente do Jenkins, n\u00E3o est\u00E3o \ - satisfeitos. Vide a documenta\u00E7\u00E3o da extens\u00E3o para \ - maiores informa\u00E7\u00F5es sobre os requisitos. + Esta versão de extensão existe mas não está sendo oferecida como uma atualização. \ + Isto é um caso típico de quando os requisitos de uma extensão, como uma versão mais recente do Jenkins, não estão \ + satisfeitos. Vide a documentação da extensão para \ + maiores informações sobre os requisitos. PluginManager.depCompatWarning= \ - Aviso: esta extens\u00E3o requer vers\u00F5es mais recentes de dependentes e pelo menos uma delas n\u00E3o \u00E9 compart\u00EDvel com a \ - vers\u00E3o instalada. Isto geralmente acontece por seu comportamento ou APIs mudaram ou porque ela tem configura\u00E7\u00F5es em \ - formato diferente da vers\u00E3o instalada. Outras extens\u00F5es com uma depend\u00EAncia desta podem ser incompat\u00EDveis com esta \ - atualiza\u00E7\u00E3o e n\u00E3o funcionar\u00E3o mais como esperado, tarefas que usam esta extens\u00E3o poder\u00E3o ter que ser reconfiguradas \ - e/ou voc\u00EA pode n\u00E3o ser capaz de reverter de forma limpa para a vers\u00E3o anterior sem restaurar manualmente as \ - configura\u00E7\u00F5es antigas. Consulte as notas de lan\u00E7amento desta extens\u00E3o para maiores detalhes. + Aviso: esta extensão requer versões mais recentes de dependentes e pelo menos uma delas não é compartível com a \ + versão instalada. Isto geralmente acontece por seu comportamento ou APIs mudaram ou porque ela tem configurações em \ + formato diferente da versão instalada. Outras extensões com uma dependência desta podem ser incompatíveis com esta \ + atualização e não funcionarão mais como esperado, tarefas que usam esta extensão poderão ter que ser reconfiguradas \ + e/ou você pode não ser capaz de reverter de forma limpa para a versão anterior sem restaurar manualmente as \ + configurações antigas. Consulte as notas de lançamento desta extensão para maiores detalhes. PluginManager.ConfigureUpdateCenterPermission.Description= \ - Descontinuada - por favor use a permiss\u00E3o Global/Administrativa no lugar -PluginManager.UpdateSiteChangeLogLevel=Mudar o n\u00EDvel de registro de atividades de {0} para WARNING ou abaixo para ver \ - mais informa\u00E7\u00F5es e a mensagem de erro a cada tentativa + Descontinuada - por favor use a permissão Global/Administrativa no lugar +PluginManager.UpdateSiteChangeLogLevel=Mudar o nível de registro de atividades de {0} para WARNING ou abaixo para ver \ + mais informações e a mensagem de erro a cada tentativa PluginManager.UploadPluginsPermission.Description= \ - Descontinuada - por favor use a permiss\u00E3o Global/Administrativa no lugar -PluginWrapper.Plugin.Disabled=Extens\u00E3o ''{0}'' desabilitada + Descontinuada - por favor use a permissão Global/Administrativa no lugar +PluginWrapper.Plugin.Disabled=Extensão ''{0}'' desabilitada Util.day={0} {0,choice,0#dias|1#dia|1\u6b64\u5916\u639b\u958b\u653e\u8a8d\u990a\uff01\u6211\u5011\u6b63\u5728\u5c0b\u627e\u65b0\u7684\u7dad\u8b77\u8005\uff0c\u8acb\u9020\u8a2a Adopt a Plugin \u53d6\u5f97\u66f4\u591a\u8cc7\u8a0a\u3002 -PluginManager.newerVersionExists=\u5df2\u63d0\u4f9b\u66f4\u65b0\u7248\u672c (\u7248\u672c {0})\u3002\u9019\u901a\u5e38\u662f\u5916\u639b\u7684\u8981\u6c42\uff0c\u4f8b\u5982\: \u4e0d\u76f8\u5bb9\u65bc\u6700\u8fd1\u7684 Jenkins \u7248\u672c\u3002 -PluginManager.newerVersionEntry=\u5df2\u6709\u6b64\u7248\u672c\u7684\u5916\u639b\u4f46\u4e0d\u4f5c\u70ba\u66f4\u65b0\u63d0\u4f9b\u3002\u9019\u901a\u5e38\u662f\u5916\u639b\u7684\u8981\u6c42\uff0c\u4f8b\u5982\: \u4e0d\u76f8\u5bb9\u65bc\u6700\u8fd1\u7684 Jenkins \u7248\u672c\u3002\u8a73\u60c5\u8acb\u67e5\u770b\u5916\u639b\u6587\u4ef6\u4ee5\u4e86\u89e3\u6b64\u8981\u6c42\u3002 -PluginManager.unavailable=\u7121\u6cd5\u4f7f\u7528 -PluginManager.deprecationWarning=\u6b64\u5916\u639b\u5df2\u68c4\u7528\u3002\u9019\u901a\u5e38\u8868\u793a\u5b83\u53ef\u80fd\u5df2\u904e\u6642\u3001\u4e0d\u518d\u7e7c\u7e8c\u958b\u767c\u3001\u4e0d\u518d\u6b63\u5e38\u904b\u4f5c\u7b49\u3002\u4e86\u89e3\u66f4\u591a\u3002 -PluginManager.insecureUrl=\u60a8\u6b63\u5728\u4f7f\u7528\u4e0d\u5b89\u5168\u7684 URL \u4e0b\u8f09\u8a72\u5916\u639b\uff0c\u98a8\u96aa\u8acb\u81ea\u8ca0\uff01 -PluginManager.invalidUrl=\u60a8\u6b63\u5728\u4f7f\u7528\u7121\u6548\u7684 URL \u4e0b\u8f09\u8a72\u5916\u639b\uff0c\u53ea\u652f\u63f4 https \u548c http (\u4e0d\u5efa\u8b70)\u3002 +PluginManager.compatWarning=警告\: 新版本ä¸ç›¸å®¹æ–¼ç¾åœ¨å®‰è£çš„版本。這通常是因為它本身的行為模å¼æˆ– API 有更動,或它的設定值格å¼ä¸åŒæ–¼ç›®å‰ç‰ˆæœ¬ã€‚其他相ä¾æ–¼å®ƒçš„外掛å¯èƒ½æœƒä¸ç›¸å®¹æ–¼æ­¤æ›´æ–°ä¸¦ä¸”ä¸å†å¦‚é æœŸåœ°é‹ä½œï¼Œä½¿ç”¨æ­¤å¤–掛的作業å¯èƒ½éœ€è¦é‡æ–°è¨­å®šã€‚您å¯èƒ½å¾—手動還原舊設定值æ‰èƒ½é‚„原到舊版。詳情請åƒè€ƒæ­¤å¤–掛的發行資訊。 +PluginManager.parentDepCompatWarning=下列外掛ä¸ç›¸å®¹\: +PluginManager.parentCompatWarning=下列外掛會å—到影響\: +PluginManager.coreWarning=警告\: 這個外掛程å¼æ˜¯ç‚º Jenkins {0} 之後的版本設計。在您目å‰çš„ Jenkins ä¸è¦‹å¾—å¯ä»¥æ­£å¸¸é‹ä½œã€‚ +PluginManager.depCoreWarning=警告\: 這個外掛的相ä¾æ€§å¤–æŽ›éœ€è¦ Jenkins {0} 或更新版本。Jenkins 將會拒絕載入該相ä¾æ€§å¤–掛,這會導致這個外掛載入失敗。 +PluginManager.securityWarning=警告\: 這個版本的外掛用起來å¯èƒ½ä¸å®‰å…¨ã€‚請查看下列安全性須知\: +PluginManager.ago={0}å‰ +PluginManager.adoptThisPlugin=此外掛開放èªé¤Šï¼æˆ‘們正在尋找新的維護者,請造訪 Adopt a Plugin å–得更多資訊。 +PluginManager.newerVersionExists=å·²æ供更新版本 (版本 {0})。這通常是外掛的è¦æ±‚,例如\: ä¸ç›¸å®¹æ–¼æœ€è¿‘çš„ Jenkins 版本。 +PluginManager.newerVersionEntry=已有此版本的外掛但ä¸ä½œç‚ºæ›´æ–°æ供。這通常是外掛的è¦æ±‚,例如\: ä¸ç›¸å®¹æ–¼æœ€è¿‘çš„ Jenkins 版本。詳情請查看外掛文件以了解此è¦æ±‚。 +PluginManager.unavailable=無法使用 +PluginManager.deprecationWarning=此外掛已棄用。這通常表示它å¯èƒ½å·²éŽæ™‚ã€ä¸å†ç¹¼çºŒé–‹ç™¼ã€ä¸å†æ­£å¸¸é‹ä½œç­‰ã€‚了解更多。 +PluginManager.insecureUrl=您正在使用ä¸å®‰å…¨çš„ URL ä¸‹è¼‰è©²å¤–æŽ›ï¼Œé¢¨éšªè«‹è‡ªè² ï¼ +PluginManager.invalidUrl=您正在使用無效的 URL 下載該外掛,åªæ”¯æ´ https å’Œ http (ä¸å»ºè­°)。 -AboutJenkins.DisplayName=\u95dc\u65bc Jenkins -AboutJenkins.Description=\u67e5\u770b\u7248\u672c\u53ca\u6388\u6b0a\u8cc7\u8a0a +AboutJenkins.DisplayName=關於 Jenkins +AboutJenkins.Description=查看版本åŠæŽˆæ¬Šè³‡è¨Š -ProxyConfiguration.TestUrlRequired=\u6e2c\u8a66 URL \u70ba\u5fc5\u586b\u6b04\u4f4d\u3002 -ProxyConfiguration.MalformedTestUrl=\u6e2c\u8a66 URL {0} \u4e0d\u6b63\u78ba\u3002 -ProxyConfiguration.FailedToConnectViaProxy=\u7121\u6cd5\u9023\u7dda\u5230 {0}\u3002 -ProxyConfiguration.FailedToConnect=\u7121\u6cd5\u9023\u7dda\u5230 {0} (\u4ee3\u78bc {1})\u3002 -ProxyConfiguration.Success=\u6210\u529f +ProxyConfiguration.TestUrlRequired=測試 URL 為必填欄ä½ã€‚ +ProxyConfiguration.MalformedTestUrl=測試 URL {0} ä¸æ­£ç¢ºã€‚ +ProxyConfiguration.FailedToConnectViaProxy=無法連線到 {0}。 +ProxyConfiguration.FailedToConnect=無法連線到 {0} (代碼 {1})。 +ProxyConfiguration.Success=æˆåŠŸ -Functions.NoExceptionDetails=\u6c92\u6709\u4f8b\u5916\u72c0\u6cc1\u7684\u8a73\u7d30\u8cc7\u8a0a +Functions.NoExceptionDetails=沒有例外狀æ³çš„詳細資訊 -PluginWrapper.missing=\u907a\u5931\u5916\u639b\: {0} ({1}) -PluginWrapper.failed_to_load_plugin_2=\u8f09\u5165\u5931\u6557\: {0} ({1} {2}) -PluginWrapper.failed_to_load_dependency_2=\u8f09\u5165\u5931\u6557\: {0} ({1} {2}) -PluginWrapper.disabled_2=\u5fc5\u8981\u7684\u5916\u639b\u5df2\u88ab\u505c\u7528\: {0} ({1}) -PluginWrapper.obsolete_2=\u9700\u8981\u66f4\u65b0\: {0} ({1} {2}) \u9700\u8981\u66f4\u65b0\u5230 {3} \u6216\u66f4\u65b0\u7684\u7248\u672c -PluginWrapper.obsoleteCore=\u9700\u8981 Jenkins ({1}) \u6216\u66f4\u65b0\u7248\u672c -PluginWrapper.PluginWrapperAdministrativeMonitor.DisplayName=\u8f09\u5165\u5916\u639b\u5931\u6557 -PluginWrapper.Already.Disabled=\u5916\u639b\u300c{0}\u300d\u65e9\u5df2\u505c\u7528 -PluginWrapper.Plugin.Has.Dependent=\u5916\u639b\u300c{0}\u300d\u6709\u81f3\u5c11\u4e00\u500b\u76f8\u4f9d\u6027\u5916\u639b ({1}) \u4e14\u505c\u7528\u7b56\u7565\u70ba {2}\uff0c\u56e0\u6b64\u7121\u6cd5\u88ab\u505c\u7528 -PluginWrapper.Plugin.Disabled=\u5df2\u505c\u7528\u5916\u639b\u300c{0}\u300d -PluginWrapper.NoSuchPlugin=\u627e\u4e0d\u5230\u540d\u70ba\u300c{0}\u300d\u7684\u5916\u639b -PluginWrapper.Error.Disabling=\u505c\u7528\u5916\u639b\u300c{0}\u300d\u6642\u767c\u751f\u932f\u8aa4\uff0c\u932f\u8aa4\: \u300c{1}\u300d -TcpSlaveAgentListener.PingAgentProtocol.displayName=Ping \u5354\u5b9a +PluginWrapper.missing=éºå¤±å¤–掛\: {0} ({1}) +PluginWrapper.failed_to_load_plugin_2=載入失敗\: {0} ({1} {2}) +PluginWrapper.failed_to_load_dependency_2=載入失敗\: {0} ({1} {2}) +PluginWrapper.disabled_2=å¿…è¦çš„外掛已被åœç”¨\: {0} ({1}) +PluginWrapper.obsolete_2=需è¦æ›´æ–°\: {0} ({1} {2}) 需è¦æ›´æ–°åˆ° {3} 或更新的版本 +PluginWrapper.obsoleteCore=éœ€è¦ Jenkins ({1}) 或更新版本 +PluginWrapper.PluginWrapperAdministrativeMonitor.DisplayName=載入外掛失敗 +PluginWrapper.Already.Disabled=外掛「{0}ã€æ—©å·²åœç”¨ +PluginWrapper.Plugin.Has.Dependent=外掛「{0}ã€æœ‰è‡³å°‘一個相ä¾æ€§å¤–掛 ({1}) 且åœç”¨ç­–略為 {2},因此無法被åœç”¨ +PluginWrapper.Plugin.Disabled=å·²åœç”¨å¤–掛「{0}〠+PluginWrapper.NoSuchPlugin=找ä¸åˆ°å為「{0}ã€çš„外掛 +PluginWrapper.Error.Disabling=åœç”¨å¤–掛「{0}ã€æ™‚發生錯誤,錯誤\: 「{1}〠+TcpSlaveAgentListener.PingAgentProtocol.displayName=Ping å”定 diff --git a/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/description_pt_BR.properties b/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/description_pt_BR.properties index 4e8e52be63af..2b48ffb453de 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/description_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/description_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Quando o Jenkins detecta uma depend\u00EAncia c\u00EDclica entre extens\u00F5es (um bug em um ou mais extens\u00F5es) esta mensagem \u00E9 mostrada. +blurb=Quando o Jenkins detecta uma dependência cíclica entre extensões (um bug em um ou mais extensões) esta mensagem é mostrada. diff --git a/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/description_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/description_zh_TW.properties index 42e11b8ec068..fd658a9a1c7c 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/description_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/description_zh_TW.properties @@ -1 +1 @@ -blurb=\u7576 Jenkins \u5075\u6e2c\u5230\u5916\u639b\u9593\u6709\u5faa\u74b0\u76f8\u4f9d\u6642 (\u67d0\u500b\u5916\u639b\u51fa\u932f\u4e86) \u9019\u500b\u8a0a\u606f\u5c31\u6703\u986f\u793a\u3002 +blurb=當 Jenkins åµæ¸¬åˆ°å¤–掛間有循環相ä¾æ™‚ (æŸå€‹å¤–掛出錯了) 這個訊æ¯å°±æœƒé¡¯ç¤ºã€‚ diff --git a/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_bg.properties b/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_bg.properties index 1deca421ad0a..642fcc4a7332 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_bg.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_bg.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. PluginCycles=\ - \u0421\u043b\u0435\u0434\u043d\u0438\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438 \u0441\u0430 \u0438\u0437\u043a\u043b\u044e\u0447\u0435\u043d\u0438 \u043f\u043e\u0440\u0430\u0434\u0438 \u0446\u0438\u043a\u043b\u0438\u0447\u043d\u0438 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438. \u041d\u0430\u0439-\u0432\u0435\u0440\u043e\u044f\u0442\u043d\u043e \u0442\u043e\u0437\u0438\ - \u043f\u0440\u043e\u0431\u043b\u0435\u043c \u0449\u0435 \u0441\u0435 \u0440\u0435\u0448\u0438, \u043a\u043e\u0433\u0430\u0442\u043e \u0433\u0438 \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u0435. + Следните приÑтавки Ñа изключени поради циклични завиÑимоÑти. Ðай-вероÑтно този\ + проблем ще Ñе реши, когато ги обновите. diff --git a/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_de.properties b/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_de.properties index 275e6c1a75bb..13d2b668f3f1 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_de.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -PluginCycles=Die folgenden Plugins sind deaktiviert wegen zyklischen Abhängigkeiten. Höchstwahrscheinlich läßt sich dies durch Aktualisierung dieser Plugins auf eine neuere Version beheben. +PluginCycles=Die folgenden Plugins sind deaktiviert wegen zyklischen Abhängigkeiten. Höchstwahrscheinlich läßt sich dies durch Aktualisierung dieser Plugins auf eine neuere Version beheben. diff --git a/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_es.properties b/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_es.properties index bd61497091ae..931aa0cb0fb6 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_es.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -PluginCycles=Los siguientes plugins se han desactivado porque tienen dependencias cíclicas, probablemente puedas resolver el problema instalando nueva versiones. +PluginCycles=Los siguientes plugins se han desactivado porque tienen dependencias cíclicas, probablemente puedas resolver el problema instalando nueva versiones. diff --git a/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_it.properties b/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_it.properties index d153dfcf3aa0..b1da5c7a3411 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_it.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,5 +22,5 @@ # THE SOFTWARE. PluginCycles=I seguenti componenti aggiuntivi sono stati disabilitati a \ - causa di cicli di dipendenze, è molto probabile che si possa risolvere il \ - problema eseguendone l''aggiornamento a una versione più recente + causa di cicli di dipendenze, è molto probabile che si possa risolvere il \ + problema eseguendone l''aggiornamento a una versione più recente diff --git a/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_ja.properties b/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_ja.properties index 7848a8852b69..51c85627d6e2 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_ja.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_ja.properties @@ -22,4 +22,4 @@ PluginCycles=\ - \u6b21\u306e\u30d7\u30e9\u30b0\u30a4\u30f3\u306f\u4f9d\u5b58\u95a2\u4fc2\u304c\u5faa\u74b0\u3057\u3066\u3044\u308b\u305f\u3081\u3001\u7121\u52b9\u5316\u3055\u308c\u3066\u3044\u307e\u3059\u3002 \u305f\u3076\u3093\u3001\u65b0\u3057\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306b\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u3059\u308b\u3053\u3068\u3067\u89e3\u6c7a\u3067\u304d\u307e\u3059\u3002 + 次ã®ãƒ—ラグインã¯ä¾å­˜é–¢ä¿‚ãŒå¾ªç’°ã—ã¦ã„ã‚‹ãŸã‚ã€ç„¡åŠ¹åŒ–ã•ã‚Œã¦ã„ã¾ã™ã€‚ ãŸã¶ã‚“ã€æ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«ã‚¢ãƒƒãƒ—デートã™ã‚‹ã“ã¨ã§è§£æ±ºã§ãã¾ã™ã€‚ diff --git a/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_pt_BR.properties b/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_pt_BR.properties index db757e906eb9..601eb50d4c00 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. # The following plugins are deactivated because of cyclic dependencies, most likely you can resolve the issue by updating these to a newer version. -PluginCycles=Os seguintes plugins est\u00e3o desativados devido a depend\u00eancias ciclicas, provavelmente \u00e9 poss\u00edvel resolver este problema atualizando-os para uma vers\u00e3o mais nova. +PluginCycles=Os seguintes plugins estão desativados devido a dependências ciclicas, provavelmente é possível resolver este problema atualizando-os para uma versão mais nova. diff --git a/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_sr.properties b/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_sr.properties index a581c6ee19b3..9400403e951f 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_sr.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -PluginCycles=\u0421\u043B\u0435\u0434\u0435\u045B\u0435 \u043C\u043E\u0434\u0443\u043B\u0435 \u0441\u0443 \u0438\u0441\u043A\u0459\u0443\u0447\u0435\u043D\u0438 \u0437\u0431\u043E\u0433 \u043A\u0440\u0443\u0436\u043D\u0438\u0445 \u0437\u0430\u0432\u0438\u0441\u0442\u043D\u043E\u0441\u0442\u0438 \u0448\u0442\u043E \u0432\u0435\u0440\u043E\u0432\u0430\u043D\u0442\u043E \u043C\u043E\u0436\u0435\u0442\u0435 \u0440\u0435\u0448\u0438\u0442\u0438 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045A\u0435\u043C \u043D\u0430 \u043D\u043E\u0432\u0438\u0458\u0443 \u0432\u0435\u0440\u0437\u0438\u0458\u0443. +PluginCycles=Следеће модуле Ñу иÑкључени због кружних завиÑтноÑти што верованто можете решити ажурирањем на новију верзију. diff --git a/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_zh_TW.properties index 3dc07a8d52f6..304cc4df4c7b 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/message_zh_TW.properties @@ -19,4 +19,4 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -PluginCycles=\u4e0b\u5217\u5916\u639b\u5df2\u56e0\u5faa\u74b0\u76f8\u4f9d\u800c\u88ab\u505c\u7528\uff0c\u66f4\u65b0\u5b83\u5011\u6216\u8a31\u53ef\u4ee5\u89e3\u6c7a\u9019\u500b\u554f\u984c\u3002 +PluginCycles=下列外掛已因循環相ä¾è€Œè¢«åœç”¨ï¼Œæ›´æ–°å®ƒå€‘或許å¯ä»¥è§£æ±ºé€™å€‹å•é¡Œã€‚ diff --git a/core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/description_pt_BR.properties b/core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/description_pt_BR.properties index b6947b1a0dbb..34a9bca27498 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/description_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/description_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Informa administradores sobre a descontinua\u00E7\u00E3o de uma ou mais extens\u00F5es instaladas. \ -Estes metadados s\u00E3o providos pela configura\u00E7\u00E3o de atualiza\u00E7\u00E3o dos s\u00EDtios e a documenta\u00E7\u00E3o da extens\u00E3o geralmente explicar\u00E1 porque a mesma ser\u00E1 descontinuada. +blurb=Informa administradores sobre a descontinuação de uma ou mais extensões instaladas. \ +Estes metadados são providos pela configuração de atualização dos sítios e a documentação da extensão geralmente explicará porque a mesma será descontinuada. diff --git a/core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/description_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/description_zh_TW.properties index bfea84611620..7b92ec662660 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/description_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/description_zh_TW.properties @@ -1 +1 @@ -blurb=\u901a\u77e5\u7ba1\u7406\u54e1\u76ee\u524d\u6709\u5b89\u88dd\u5df2\u68c4\u7528\u7684\u5916\u639b\u3002\u6b64\u4e2d\u7e7c\u8cc7\u6599\u7531\u66f4\u65b0\u7ad9\u53f0\u63d0\u4f9b\uff0c\u8a72\u5916\u639b\u7684\u6587\u4ef6\u901a\u5e38\u6703\u8aaa\u660e\u88ab\u68c4\u7528\u7684\u539f\u56e0\u3002 +blurb=通知管ç†å“¡ç›®å‰æœ‰å®‰è£å·²æ£„用的外掛。此中繼資料由更新站å°æ供,該外掛的文件通常會說明被棄用的原因。 diff --git a/core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/message_pl.properties b/core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/message_pl.properties index 185d7ced6dd9..49f50e810ed2 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/message_pl.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/message_pl.properties @@ -19,7 +19,7 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -DeprecatedPlugins=Wymienione wtyczki s\u0105 przestarza\u0142e +DeprecatedPlugins=Wymienione wtyczki sÄ… przestarzaÅ‚e DeprecatedPluginsDescription=\ - W rzeczywisto\u015Bci oznacza to, \u017Ce wtyczki s\u0105 albo przestarza\u0142e, albo ju\u017C nie rozwijane, albo ju\u017C nie dzia\u0142aj\u0105 prawid\u0142owo.
    \ - Sprawd\u017A podany odno\u015Bnik, aby dowiedzie\u0107 si\u0119 wi\u0119cej na temat przestarza\u0142ej wtyczki lub porad, co mo\u017Cna z tym zrobi\u0107. + W rzeczywistości oznacza to, że wtyczki są albo przestarzałe, albo już nie rozwijane, albo już nie działają prawidłowo.
    \ + Sprawdź podany odnośnik, aby dowiedzieć się więcej na temat przestarzałej wtyczki lub porad, co można z tym zrobić. diff --git a/core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/message_pt_BR.properties b/core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/message_pt_BR.properties index ceacd298b407..0b9cf6db9531 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/message_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/message_pt_BR.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. DeprecatedPluginsDescription=\ -Em geral isto significa que estas extens\u00F5es est\u00E3o obsoletas, n\u00E3o est\u00E3o mais sendo ativamente desenvolvidas ou pode n\u00E3o mais funcionar.
    \ -Veja as p\u00E1ginas ligadas para mais informa\u00E7\u00F5es sobre a causa da descontinua\u00E7\u00E3o e sugest\u00F5es de como proceder. -DeprecatedPlugins=As seguintes extens\u00F5es foram descontinuadas. +Em geral isto significa que estas extensões estão obsoletas, não estão mais sendo ativamente desenvolvidas ou pode não mais funcionar.
    \ +Veja as páginas ligadas para mais informações sobre a causa da descontinuação e sugestões de como proceder. +DeprecatedPlugins=As seguintes extensões foram descontinuadas. diff --git a/core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/message_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/message_zh_TW.properties index 3e3714ab866d..00b56b869d80 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/message_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/message_zh_TW.properties @@ -19,5 +19,5 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -DeprecatedPlugins=\u4e0b\u5217\u5df2\u5b89\u88dd\u7684\u5916\u639b\u88ab\u6a19\u8a18\u70ba\u5df2\u68c4\u7528 -DeprecatedPluginsDescription=\u9019\u901a\u5e38\u8868\u793a\u9019\u4e9b\u5916\u639b\u53ef\u80fd\u5df2\u904e\u6642\u3001\u4e0d\u518d\u7e7c\u7e8c\u958b\u767c\u3001\u4e0d\u518d\u6b63\u5e38\u904b\u4f5c\u7b49\u3002
    \u67e5\u770b\u9023\u7d50\u7684\u7db2\u9801\u4ee5\u4e86\u89e3\u6709\u95dc\u68c4\u7528\u7684\u539f\u56e0\u548c\u5efa\u8b70\u7684\u8655\u7406\u65b9\u5f0f\u3002 +DeprecatedPlugins=下列已安è£çš„外掛被標記為已棄用 +DeprecatedPluginsDescription=這通常表示這些外掛å¯èƒ½å·²éŽæ™‚ã€ä¸å†ç¹¼çºŒé–‹ç™¼ã€ä¸å†æ­£å¸¸é‹ä½œç­‰ã€‚
    查看連çµçš„網é ä»¥äº†è§£æœ‰é—œæ£„用的原因和建議的處ç†æ–¹å¼ã€‚ diff --git a/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/description_pt_BR.properties b/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/description_pt_BR.properties index baa23d511d44..913a5c238e3c 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/description_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/description_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Informa administradores sobre uma atualiza\u00E7\u00E3o de extens\u00E3o necess\u00E1ria. \ -Isto n\u00E3o est\u00E1 relacionado com atualiza\u00E7\u00F5es de extens\u00F5es que estejam dispon\u00EDveis. +blurb=Informa administradores sobre uma atualização de extensão necessária. \ +Isto não está relacionado com atualizações de extensões que estejam disponíveis. diff --git a/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/description_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/description_zh_TW.properties index 63593cdf9a87..2c4db8723efb 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/description_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/description_zh_TW.properties @@ -1,2 +1,2 @@ # TODO Is this even used anymore? -blurb=\u901a\u77e5\u7ba1\u7406\u54e1\u95dc\u65bc\u5916\u639b\u9700\u8981\u66f4\u65b0\u3002\u9019\u548c\u5916\u639b\u6709\u66f4\u65b0\u4e0d\u76f8\u95dc\u3002 +blurb=通知管ç†å“¡é—œæ–¼å¤–掛需è¦æ›´æ–°ã€‚這和外掛有更新ä¸ç›¸é—œã€‚ diff --git a/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_bg.properties b/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_bg.properties index bc122f8ed3df..bae2adba9b38 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_bg.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. RequiredPluginUpdates=\ - \u0421\u043b\u0435\u0434\u043d\u0438\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438 \u0438\u0437\u0438\u0441\u043a\u0432\u0430\u0442 \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435. + Следните приÑтавки изиÑкват обновÑване. diff --git a/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_de.properties b/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_de.properties index 2780f9ebce51..da0862c6f906 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_de.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -RequiredPluginUpdates=Die folgenden Plugins müssen aktualisiert werden: +RequiredPluginUpdates=Die folgenden Plugins müssen aktualisiert werden: diff --git a/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_it.properties b/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_it.properties index 25455886e18c..4ec6bfbda072 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_it.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_ja.properties b/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_ja.properties index 5e6013714c69..9b22e2b726c2 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_ja.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_ja.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. -RequiredPluginUpdates=\u6b21\u306e\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u66f4\u65b0\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 +RequiredPluginUpdates=次ã®ãƒ—ラグインを更新ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ diff --git a/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_pl.properties b/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_pl.properties index 0ec232903818..a4b057266a77 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_pl.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_pl.properties @@ -19,5 +19,5 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -RequiredPluginUpdates=Nast\u0119puj\u0105ce wtyczki wymagaj\u0105 aktualizacji +RequiredPluginUpdates=NastÄ™pujÄ…ce wtyczki wymagajÄ… aktualizacji diff --git a/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_pt_BR.properties b/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_pt_BR.properties index 1a587f828c4a..c6412fbb33e0 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. # The following plugins require an update. -RequiredPluginUpdates=Os seguintes plugins requerem uma atualiza\u00e7\u00e3o. +RequiredPluginUpdates=Os seguintes plugins requerem uma atualização. diff --git a/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_sr.properties b/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_sr.properties index 97296e7de6f3..626787ea72ce 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_sr.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -RequiredPluginUpdates=\u0421\u043B\u0435\u0434\u0435\u045B\u0435 \u043C\u043E\u0434\u0443\u043B\u0435 \u0437\u0430\u0445\u0442\u0435\u0432\u0430\u0458\u0443 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045A\u0435. +RequiredPluginUpdates=Следеће модуле захтевају ажурирање. diff --git a/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_zh_TW.properties index ffff53b96e1f..37a6d2170004 100644 --- a/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/PluginUpdateMonitor/message_zh_TW.properties @@ -19,4 +19,4 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -RequiredPluginUpdates=\u4e0b\u5217\u5916\u639b\u9700\u8981\u66f4\u65b0 +RequiredPluginUpdates=下列外掛需è¦æ›´æ–° diff --git a/core/src/main/resources/hudson/PluginManager/_table.js b/core/src/main/resources/hudson/PluginManager/_table.js index 587b9b13a882..45e431338cdf 100644 --- a/core/src/main/resources/hudson/PluginManager/_table.js +++ b/core/src/main/resources/hudson/PluginManager/_table.js @@ -2,7 +2,7 @@ function checkPluginsWithoutWarnings() { var inputs = document.getElementsByTagName('input'); for(var i = 0; i < inputs.length; i++) { var candidate = inputs[i]; - if(candidate.type === "checkbox") { + if(candidate.type === "checkbox" && !candidate.disabled) { candidate.checked = candidate.dataset.compatWarning === 'false'; } } diff --git a/core/src/main/resources/hudson/PluginManager/advanced_bg.properties b/core/src/main/resources/hudson/PluginManager/advanced_bg.properties index 7ab840369ff6..6aa8d0ec075e 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_bg.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_bg.properties @@ -21,18 +21,18 @@ # THE SOFTWARE. File=\ - \u0424\u0430\u0439\u043B + Файл HTTP\ Proxy\ Configuration=\ - \u0421\u044A\u0440\u0432\u044A\u0440-\u043F\u043E\u0441\u0440\u0435\u0434\u043D\u0438\u043A \u0437\u0430 HTTP + Сървър-поÑредник за HTTP Update\ Site=\ - \u041E\u0431\u043D\u043E\u0432\u044F\u0432\u0430\u043D\u0435 \u043D\u0430 \u0441\u0430\u0439\u0442\u0430 + ОбновÑване на Ñайта Upload=\ - \u041A\u0430\u0447\u0432\u0430\u043D\u0435 + Качване Upload\ Plugin=\ - \u041A\u0430\u0447\u0432\u0430\u043D\u0435 \u043D\u0430 \u043F\u0440\u0438\u0441\u0442\u0430\u0432\u043A\u0430 + Качване на приÑтавка Other\ Sites=\ - \u0414\u0440\u0443\u0433\u0438 \u0441\u0430\u0439\u0442\u043E\u0432\u0435 + Други Ñайтове Update\ Center=\ - \u0421\u0430\u0439\u0442 \u0437\u0430 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F + Сайт за Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ URL=\ - \u0410\u0434\u0440\u0435\u0441 + ÐÐ´Ñ€ÐµÑ diff --git a/core/src/main/resources/hudson/PluginManager/advanced_cs.properties b/core/src/main/resources/hudson/PluginManager/advanced_cs.properties index 1d0183d7438f..2a18d48b82c3 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_cs.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_cs.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors File=Soubor -HTTP\ Proxy\ Configuration=Nastaven\u00ED HTTP Proxy -Update\ Site=\u00DAlo\u017Ei\u0161t\u011B aktualizac\u00ED -Upload=Nahr\u00E1t -Upload\ Plugin=Nahr\u00E1t Plugin -lastUpdated=Informace o aktualizoci z\u00EDsk\u00E1ny p\u0159ed: {0} +HTTP\ Proxy\ Configuration=Nastavení HTTP Proxy +Update\ Site=ÚložiÅ¡tÄ› aktualizací +Upload=Nahrát +Upload\ Plugin=Nahrát Plugin +lastUpdated=Informace o aktualizoci získány pÅ™ed: {0} diff --git a/core/src/main/resources/hudson/PluginManager/advanced_da.properties b/core/src/main/resources/hudson/PluginManager/advanced_da.properties index 34dc4ff63b2e..553fa3ed2e70 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_da.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_da.properties @@ -22,7 +22,7 @@ Update\ Site=Opdateringssite Password=Adgangskode -Upload=L\u00E6g op +Upload=Læg op User\ name=Brugernavn File=Fil URL=URL @@ -30,4 +30,4 @@ lastUpdated=Opdateringsinformation hentet: {0} dage siden Port=Port HTTP\ Proxy\ Configuration=HTTP proxykonfiguration Server=Server -Upload\ Plugin=L\u00E6g plugin op +Upload\ Plugin=Læg plugin op diff --git a/core/src/main/resources/hudson/PluginManager/advanced_es.properties b/core/src/main/resources/hudson/PluginManager/advanced_es.properties index 79599e678aa5..6bcb023ff7fc 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_es.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_es.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -lastUpdated=Informaci\u00F3n de actualizaci\u00F3n es de hace {0}. +lastUpdated=Información de actualización es de hace {0}. File=Archivo Upload\ Plugin=Subir un plugin Upload=Subir -HTTP\ Proxy\ Configuration=Configuraci\u00F3n de proxy -Update\ Site=Direcci\u00F3n para la actualizaci\u00F3n +HTTP\ Proxy\ Configuration=Configuración de proxy +Update\ Site=Dirección para la actualización URL=Url Update\ Center=Centro de actualizaciones diff --git a/core/src/main/resources/hudson/PluginManager/advanced_fi.properties b/core/src/main/resources/hudson/PluginManager/advanced_fi.properties index 46e6760dd780..6215bc9112e8 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_fi.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_fi.properties @@ -21,13 +21,13 @@ # THE SOFTWARE. File=Tiedosto -HTTP\ Proxy\ Configuration=HTTP-v\u00E4lipalvelinasetukset +HTTP\ Proxy\ Configuration=HTTP-välipalvelinasetukset Password=Salasana Port=Portti Server=Palvelin URL=URL -Update\ Site=P\u00E4ivityssivusto +Update\ Site=Päivityssivusto Upload=Lataa -Upload\ Plugin=Lataa liit\u00E4nn\u00E4inen -User\ name=K\u00E4ytt\u00E4j\u00E4 -lastUpdated=P\u00E4ivitystiedot haettu: {0} sitten +Upload\ Plugin=Lataa liitännäinen +User\ name=Käyttäjä +lastUpdated=Päivitystiedot haettu: {0} sitten diff --git a/core/src/main/resources/hudson/PluginManager/advanced_fr.properties b/core/src/main/resources/hudson/PluginManager/advanced_fr.properties index 241b7c6d9729..40cc50a775eb 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_fr.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_fr.properties @@ -23,10 +23,10 @@ HTTP\ Proxy\ Configuration=Configuration du proxy HTTP Upload\ Plugin=Soumettre un plugin File=Fichier -Update\ Site=Site de mise \u00E0 jour +Update\ Site=Site de mise à jour Upload=Soumettre -lastUpdated=Derni\u00E8re mise \u00E0 jour\u00A0: il y a {0} -Proxy\ Needs\ Authorization=Le proxy n\u00E9cessite une authentification +lastUpdated=Dernière mise à jour : il y a {0} +Proxy\ Needs\ Authorization=Le proxy nécessite une authentification Server=Serveur User\ name=Nom d''utilisateur No\ Proxy\ Host=Pas de proxy pour diff --git a/core/src/main/resources/hudson/PluginManager/advanced_hu.properties b/core/src/main/resources/hudson/PluginManager/advanced_hu.properties index 799a287123dd..965c64fcfe0f 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_hu.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_hu.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -File=\u00C1llom\u00E1ny -HTTP\ Proxy\ Configuration=HTTP Proxy Be\u00E1ll\u00EDt\u00E1sok -Update\ Site=Friss\u00EDt\u00E9si Oldal -Upload=Felt\u00F6lt -Upload\ Plugin=Be\u00E9p\u00FCl\u0151 Felt\u00F6lt\u00E9se -lastUpdated=Friss\u00EDt\u00E9si inform\u00E1ci\u00F3k utolj\u00E1ra lek\u00E9rve: {0} ezel\u0151tt +File=Ãllomány +HTTP\ Proxy\ Configuration=HTTP Proxy Beállítások +Update\ Site=Frissítési Oldal +Upload=Feltölt +Upload\ Plugin=BeépülÅ‘ Feltöltése +lastUpdated=Frissítési információk utoljára lekérve: {0} ezelÅ‘tt diff --git a/core/src/main/resources/hudson/PluginManager/advanced_it.properties b/core/src/main/resources/hudson/PluginManager/advanced_it.properties index 65f84bcf92a8..8273fc6957bf 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_it.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/PluginManager/advanced_ja.properties b/core/src/main/resources/hudson/PluginManager/advanced_ja.properties index d6941db70953..5216352d46ad 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_ja.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_ja.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -HTTP\ Proxy\ Configuration=HTTP Proxy\u306E\u8A2D\u5B9A -Upload\ Plugin=\u30D7\u30E9\u30B0\u30A4\u30F3\u306E\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9 -Upload=\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9 -File=\u30D5\u30A1\u30A4\u30EB -Update\ Site=\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u30B5\u30A4\u30C8 +HTTP\ Proxy\ Configuration=HTTP Proxyã®è¨­å®š +Upload\ Plugin=プラグインã®ã‚¢ãƒƒãƒ—ロード +Upload=アップロード +File=ファイル +Update\ Site=アップデートサイト URL=URL -Update\ Center=\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u30BB\u30F3\u30BF\u30FC -Other\ Sites=\u4ED6\u30B5\u30A4\u30C8 +Update\ Center=アップデートセンター +Other\ Sites=他サイト diff --git a/core/src/main/resources/hudson/PluginManager/advanced_ko.properties b/core/src/main/resources/hudson/PluginManager/advanced_ko.properties index 441e813787fc..80f5c9e1b7d0 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_ko.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_ko.properties @@ -20,14 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -File=\uD30C\uC77C -HTTP\ Proxy\ Configuration=HTTP \uD504\uB85D\uC2DC \uC124\uC815 -Password=\uC554\uD638 -Port=\uD3EC\uD2B8 -Server=\uC11C\uBC84 -URL=\uC0AC\uC774\uD2B8\uACBD\uB85C -Update\ Site=\uC5C5\uB370\uC774\uD2B8 \uC0AC\uC774\uD2B8 -Upload=\uC62C\uB9AC\uAE30 -Upload\ Plugin=\uD50C\uB7EC\uADF8\uC778 \uC62C\uB9AC\uAE30 -User\ name=\uC0AC\uC6A9\uC790\uBA85 -lastUpdated=\uBCC0\uACBD\uC815\uBCF4 \uD68D\uB4DD\uC2DC\uAE30 : {0} \uC804 +File=íŒŒì¼ +HTTP\ Proxy\ Configuration=HTTP 프ë¡ì‹œ 설정 +Password=암호 +Port=í¬íŠ¸ +Server=서버 +URL=사ì´íŠ¸ê²½ë¡œ +Update\ Site=ì—…ë°ì´íŠ¸ 사ì´íŠ¸ +Upload=올리기 +Upload\ Plugin=í”ŒëŸ¬ê·¸ì¸ ì˜¬ë¦¬ê¸° +User\ name=사용ìžëª… +lastUpdated=변경정보 íšë“시기 : {0} ì „ diff --git a/core/src/main/resources/hudson/PluginManager/advanced_lt.properties b/core/src/main/resources/hudson/PluginManager/advanced_lt.properties index 2031c4148293..5070f6598825 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_lt.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_lt.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors File=Failas -HTTP\ Proxy\ Configuration=HTTP \u0161liuzo konfig\u016Bracija -Update\ Site=Atnaujinimo svetain\u0117 -Upload=\u012Ekelti -Upload\ Plugin=\u012Ekelti pried\u0105 -lastUpdated=Atnaujinimo informacija gauta: prie\u0161 {0} +HTTP\ Proxy\ Configuration=HTTP Å¡liuzo konfigÅ«racija +Update\ Site=Atnaujinimo svetainÄ— +Upload=Ä®kelti +Upload\ Plugin=Ä®kelti priedÄ… +lastUpdated=Atnaujinimo informacija gauta: prieÅ¡ {0} diff --git a/core/src/main/resources/hudson/PluginManager/advanced_lv.properties b/core/src/main/resources/hudson/PluginManager/advanced_lv.properties index 034ccf16bbe0..a5de183e2684 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_lv.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_lv.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors File=Fails -HTTP\ Proxy\ Configuration=HTTP Starpniekservera konfigur\u0101cija -Update\ Site=Aug\u0161upl\u0101des vietne -Upload=Aug\u0161upl\u0101d\u0113t -Upload\ Plugin=Aug\u0161upl\u0101d\u0113t spraudni -lastUpdated=Atjaunin\u0101jumu inform\u0101cija ieg\u016Bta: pirms {0} +HTTP\ Proxy\ Configuration=HTTP Starpniekservera konfigurÄcija +Update\ Site=AugÅ¡uplÄdes vietne +Upload=AugÅ¡uplÄdÄ“t +Upload\ Plugin=AugÅ¡uplÄdÄ“t spraudni +lastUpdated=AtjauninÄjumu informÄcija iegÅ«ta: pirms {0} diff --git a/core/src/main/resources/hudson/PluginManager/advanced_pl.properties b/core/src/main/resources/hudson/PluginManager/advanced_pl.properties index e9522f1803ec..b134fec7b1b2 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_pl.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_pl.properties @@ -20,15 +20,15 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. Advanced\ Settings=Ustawienia zaawansowane -Plugin\ Manager=Mened\u017Cer wtyczek +Plugin\ Manager=Menedżer wtyczek File=Plik HTTP\ Proxy\ Configuration=Konfiguracja HTTP Proxy Or=albo URL=Adres URL Update\ Site=Strona z aktualizacjami -Upload=Prze\u015Blij -Upload\ Plugin=Prze\u015Blij wtyczk\u0119 -Update\ Center=Zarz\u0105dzaj Jenkinsem -Deploy\ Plugin=Zainstaluj wtyczk\u0119 -deploytext=Mo\u017Cesz wybra\u0107 wtyczk\u0119 z lokalnego dysku lub poda\u0107 adres URL, aby zainstalowa\u0107 j\u0105 spoza centralnego repozytorium wtyczek. +Upload=PrzeÅ›lij +Upload\ Plugin=PrzeÅ›lij wtyczkÄ™ +Update\ Center=ZarzÄ…dzaj Jenkinsem +Deploy\ Plugin=Zainstaluj wtyczkÄ™ +deploytext=Możesz wybrać wtyczkÄ™ z lokalnego dysku lub podać adres URL, aby zainstalować jÄ… spoza centralnego repozytorium wtyczek. Deploy=Zainstaluj diff --git a/core/src/main/resources/hudson/PluginManager/advanced_pt_BR.properties b/core/src/main/resources/hudson/PluginManager/advanced_pt_BR.properties index 682fb476c7aa..554c99f48f53 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_pt_BR.properties @@ -20,16 +20,16 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Update\ Site=Atualizar s\u00EDtio +Update\ Site=Atualizar sítio File=Arquivo -HTTP\ Proxy\ Configuration=Configura\u00E7\u00E3o de Proxy/HTTP +HTTP\ Proxy\ Configuration=Configuração de Proxy/HTTP URL=URL Other\ Sites=Outros sites Deploy=Implantar deploytext=-\ - Voc\u00EA pode selecionar uma extens\u00E3o do seu sistema local ou prover uma URL para instalar uma extens\u00E3o fora do \ - reposit\u00F3rio central de extens\u00F5es. + Você pode selecionar uma extensão do seu sistema local ou prover uma URL para instalar uma extensão fora do \ + repositório central de extensões. Or=Ou -Advanced\ Settings=Configura\u00E7\u00F5es\ avan\u00E7adas -Plugin\ Manager=Gerenciador\ de\ extens\u00F5es -Deploy\ Plugin=Implantar\ extens\u00E3o +Advanced\ Settings=Configurações\ avançadas +Plugin\ Manager=Gerenciador\ de\ extensões +Deploy\ Plugin=Implantar\ extensão diff --git a/core/src/main/resources/hudson/PluginManager/advanced_pt_PT.properties b/core/src/main/resources/hudson/PluginManager/advanced_pt_PT.properties index 4f3163319f9a..ead34539fffa 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_pt_PT.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_pt_PT.properties @@ -4,4 +4,4 @@ File=Ficheiro Update\ Site=Atualizar Site Upload=Enviar Upload\ Plugin=Enviar Plugin -lastUpdated=Verifica\u00E7\u00E3o de atualiza\u00E7\u00E3o obtida h\u00E1: {0} +lastUpdated=Verificação de atualização obtida há: {0} diff --git a/core/src/main/resources/hudson/PluginManager/advanced_ru.properties b/core/src/main/resources/hudson/PluginManager/advanced_ru.properties index e1d9e86f1eae..c4041785856c 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_ru.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_ru.properties @@ -20,14 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -File=\u0424\u0430\u0439\u043B -HTTP\ Proxy\ Configuration=\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F HTTP Proxy -Password=\u041F\u0430\u0440\u043E\u043B\u044C -Port=\u041F\u043E\u0440\u0442 -Server=\u0421\u0435\u0440\u0432\u0435\u0440 -URL=\u0410\u0434\u0440\u0435\u0441 URL -Update\ Site=\u0421\u0430\u0439\u0442 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0439 -Upload=\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C -Upload\ Plugin=\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C \u043F\u043B\u0430\u0433\u0438\u043D -User\ name=\u0418\u043C\u044F \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F -lastUpdated=\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F \u043E \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0445 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F\u0445 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0430: {0} \u043D\u0430\u0437\u0430\u0434 +File=Файл +HTTP\ Proxy\ Configuration=ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ HTTP Proxy +Password=Пароль +Port=Порт +Server=Сервер +URL=ÐÐ´Ñ€ÐµÑ URL +Update\ Site=Сайт обновлений +Upload=Загрузить +Upload\ Plugin=Загрузить плагин +User\ name=Ð˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ +lastUpdated=Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ доÑтупных обновлениÑÑ… обновлена: {0} назад diff --git a/core/src/main/resources/hudson/PluginManager/advanced_sk.properties b/core/src/main/resources/hudson/PluginManager/advanced_sk.properties index 5fda294bb9a2..3cc72735b04f 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_sk.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_sk.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -File=S\u00FAbor -HTTP\ Proxy\ Configuration=Konfigur\u00E1cia HTTP proxy -lastUpdated=Inform\u00E1cia o aktualiz\u00E1ci\u00E1ch z\u00EDskan\u00E1 pred: {0} +File=Súbor +HTTP\ Proxy\ Configuration=Konfigurácia HTTP proxy +lastUpdated=Informácia o aktualizáciách získaná pred: {0} diff --git a/core/src/main/resources/hudson/PluginManager/advanced_sr.properties b/core/src/main/resources/hudson/PluginManager/advanced_sr.properties index b173536cdedb..003847f76051 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_sr.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_sr.properties @@ -1,17 +1,17 @@ # This file is under the MIT License by authors -Update\ Center=\u0426\u0435\u043D\u0442\u0430\u0440 \u0437\u0430 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045A\u0435 -HTTP\ Proxy\ Configuration=\u041F\u043E\u0441\u0442\u0430\u0432\u0459\u0430\u045A\u0435 HTTP Proxy -Upload\ Plugin=\u041E\u0442\u043F\u0440\u0435\u043C\u0438 \u043C\u043E\u0434\u0443\u043B\u0443 -File=\u0414\u0430\u0442\u043E\u0442\u0435\u043A\u0430 -Upload=\u041E\u0442\u043F\u0440\u0435\u043C\u0438 -Update\ Site=\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u0458 \u0441\u0442\u0440\u0430\u043D\u0443 -URL=URL \u0430\u0434\u0440\u0435\u0441\u0430 -Other\ Sites=\u0414\u0440\u0443\u0433\u0435 \u0441\u0442\u0440\u0430\u043D\u0435 -lastUpdated=\u0417\u0430\u0434\u045A\u0435 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043D\u043E: \u043F\u0440\u0435 {0} -Password=\u041B\u043E\u0437\u0438\u043D\u043A\u0430 -Port=\u041F\u043E\u0440\u0442 -User\ name=\u041A\u043E\u0440\u0438\u043D\u0438\u0447\u043A\u043E \u0438\u043C\u0435 -Server=\u0421\u0435\u0440\u0432\u0435\u0440 -Proxy\ Needs\ Authorization=Proxy-\u0443 \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E \u0434\u043E\u0432\u043B\u0430\u0448\u045B\u0435\u045A\u0435 -No\ Proxy\ Host=\u041D\u0435 \u043F\u043E\u0441\u0442\u043E\u0458\u0438 Proxy Host +Update\ Center=Центар за ажурирање +HTTP\ Proxy\ Configuration=ПоÑтављање HTTP Proxy +Upload\ Plugin=Отпреми модулу +File=Датотека +Upload=Отпреми +Update\ Site=Ðжурирај Ñтрану +URL=URL адреÑа +Other\ Sites=Друге Ñтране +lastUpdated=Задње ажурирано: пре {0} +Password=Лозинка +Port=Порт +User\ name=Кориничко име +Server=Сервер +Proxy\ Needs\ Authorization=Proxy-у потребно довлашћење +No\ Proxy\ Host=Ðе поÑтоји Proxy Host diff --git a/core/src/main/resources/hudson/PluginManager/advanced_sv_SE.properties b/core/src/main/resources/hudson/PluginManager/advanced_sv_SE.properties index 5f5cae6124cb..c76a76e3d4cc 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_sv_SE.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_sv_SE.properties @@ -22,12 +22,12 @@ File=Fil HTTP\ Proxy\ Configuration=HTTP-proxykonfiguration -Password=L\u00F6senord +Password=Lösenord Port=Port Server=Server URL=URL Update\ Site=Updateringssajt Upload=Ladda upp Upload\ Plugin=Ladda upp insticksmodul -User\ name=Anv\u00E4ndarnamn +User\ name=Användarnamn lastUpdated=Information uppdaterad {0} sedan diff --git a/core/src/main/resources/hudson/PluginManager/advanced_tr.properties b/core/src/main/resources/hudson/PluginManager/advanced_tr.properties index 908fe20aca23..6d413678a67a 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_tr.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_tr.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -HTTP\ Proxy\ Configuration=HTTP Proxy Konfig\u00FCrasyonu -Upload\ Plugin=Eklenti Y\u00FCkle +HTTP\ Proxy\ Configuration=HTTP Proxy Konfigürasyonu +Upload\ Plugin=Eklenti Yükle File=Dosya -Update\ Site=G\u00FCncelleme sitesi -Upload=Y\u00FCkle -lastUpdated=Al\u0131nan son g\u00FCncelleme bilgisi : {0} \u00F6nce +Update\ Site=Güncelleme sitesi +Upload=Yükle +lastUpdated=Alınan son güncelleme bilgisi : {0} önce diff --git a/core/src/main/resources/hudson/PluginManager/advanced_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/advanced_zh_TW.properties index 90e0bb1b73fe..705271ca5598 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_zh_TW.properties @@ -20,17 +20,17 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -deploytext=\u60a8\u53ef\u4ee5\u5f9e\u672c\u5730\u9078\u64c7\u5916\u639b\u6a94\u6848\u6216\u63d0\u4f9b URL \u4ee5\u5f9e\u4e2d\u592e\u5916\u639b\u5132\u5b58\u5eab\u5916\u5b89\u88dd\u5916\u639b\u3002 -Update\ Center=\u66f4\u65b0\u4e2d\u5fc3 -HTTP\ Proxy\ Configuration=HTTP \u4ee3\u7406\u4f3a\u670d\u5668\u8a2d\u5b9a -Upload\ Plugin=\u4e0a\u50b3\u5916\u639b\u7a0b\u5f0f -File=\u6a94\u6848 -Upload=\u4e0a\u50b3 -Update\ Site=\u66f4\u65b0\u7ad9\u53f0 +deploytext=您å¯ä»¥å¾žæœ¬åœ°é¸æ“‡å¤–掛檔案或æä¾› URL 以從中央外掛儲存庫外安è£å¤–掛。 +Update\ Center=更新中心 +HTTP\ Proxy\ Configuration=HTTP 代ç†ä¼ºæœå™¨è¨­å®š +Upload\ Plugin=ä¸Šå‚³å¤–æŽ›ç¨‹å¼ +File=檔案 +Upload=上傳 +Update\ Site=æ›´æ–°ç«™å° URL=URL -Other\ Sites=\u5176\u4ed6\u7ad9\u53f0 -Plugin\ Manager=\u5916\u639b\u7e3d\u7ba1 -Deploy\ Plugin=\u90e8\u7f72\u5916\u639b -Deploy=\u90e8\u7f72 -Advanced\ Settings=\u9032\u968e\u8a2d\u5b9a -Or=\u6216 +Other\ Sites=å…¶ä»–ç«™å° +Plugin\ Manager=外掛總管 +Deploy\ Plugin=部署外掛 +Deploy=部署 +Advanced\ Settings=進階設定 +Or=或 diff --git a/core/src/main/resources/hudson/PluginManager/available_fr.properties b/core/src/main/resources/hudson/PluginManager/available_fr.properties index 3e0265320840..b5328ed8c1ac 100644 --- a/core/src/main/resources/hudson/PluginManager/available_fr.properties +++ b/core/src/main/resources/hudson/PluginManager/available_fr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Updates=Mises à jour +Updates=Mises à jour Available=Disponibles -Installed=Installés +Installed=Installés diff --git a/core/src/main/resources/hudson/PluginManager/available_nl.properties b/core/src/main/resources/hudson/PluginManager/available_nl.properties index 5951113a3c49..550af5bc01bb 100644 --- a/core/src/main/resources/hudson/PluginManager/available_nl.properties +++ b/core/src/main/resources/hudson/PluginManager/available_nl.properties @@ -22,4 +22,4 @@ Updates=Updates Available=Beschikbaar -Installed=Ge\u00EFnstalleerd +Installed=Geïnstalleerd diff --git a/core/src/main/resources/hudson/PluginManager/available_pl.properties b/core/src/main/resources/hudson/PluginManager/available_pl.properties index 6a70e79803da..1d0bd104e404 100644 --- a/core/src/main/resources/hudson/PluginManager/available_pl.properties +++ b/core/src/main/resources/hudson/PluginManager/available_pl.properties @@ -19,8 +19,8 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Available\ Plugins=Dost\u0119pne wtyczki -Plugin\ Manager=Mened\u017Cer wtyczek +Available\ Plugins=DostÄ™pne wtyczki +Plugin\ Manager=Menedżer wtyczek Search=Filtruj Install=Instaluj Name=Nazwa diff --git a/core/src/main/resources/hudson/PluginManager/available_pt_BR.properties b/core/src/main/resources/hudson/PluginManager/available_pt_BR.properties index 718c2ac9672a..ea8382d5b0d7 100644 --- a/core/src/main/resources/hudson/PluginManager/available_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginManager/available_pt_BR.properties @@ -25,7 +25,7 @@ Released=Liberado Search=Busca Install\ without\ restart=Instalar\ sem\ reiniciar Installed=Instalado -Download\ now\ and\ install\ after\ restart=Baixar agora e instalar ap\u00F3s rein\u00EDcio -Plugin\ Manager=Gerenciador\ de\ extens\u00F5es -Available\ Plugins=Extens\u00F5es\ dispon\u00EDveis +Download\ now\ and\ install\ after\ restart=Baixar agora e instalar após reinício +Plugin\ Manager=Gerenciador\ de\ extensões +Available\ Plugins=Extensões\ disponíveis Name=Nome diff --git a/core/src/main/resources/hudson/PluginManager/available_sr.properties b/core/src/main/resources/hudson/PluginManager/available_sr.properties index db2a8d6598a3..a10f894f1735 100644 --- a/core/src/main/resources/hudson/PluginManager/available_sr.properties +++ b/core/src/main/resources/hudson/PluginManager/available_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Updates=\u041D\u0430\u0434\u0433\u0440\u0430\u0434\u045A\u0435 -Available=\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u0435 -Installed=\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u0435 +Updates=Ðадградње +Available=ДоÑтупне +Installed=ИнÑталиране diff --git a/core/src/main/resources/hudson/PluginManager/available_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/available_zh_TW.properties index 6dc70b68037f..5afc6519e83a 100644 --- a/core/src/main/resources/hudson/PluginManager/available_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/available_zh_TW.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540d\u7a31 -Plugin\ Manager=\u5916\u639b\u7e3d\u7ba1 -Search=\u641c\u5c0b -Install=\u5b89\u88dd -Released=\u767c\u884c\u65bc -Install\ without\ restart=\u5b89\u88dd\u5f8c\u4e0d\u91cd\u65b0\u555f\u52d5 -Download\ now\ and\ install\ after\ restart=\u4e0b\u8f09\u4e26\u65bc\u91cd\u65b0\u555f\u52d5\u5f8c\u5b89\u88dd -Installed=\u5df2\u5b89\u88dd -Available\ Plugins=\u53ef\u7528\u7684\u5916\u639b +Name=å稱 +Plugin\ Manager=外掛總管 +Search=æœå°‹ +Install=å®‰è£ +Released=發行於 +Install\ without\ restart=安è£å¾Œä¸é‡æ–°å•Ÿå‹• +Download\ now\ and\ install\ after\ restart=下載並於é‡æ–°å•Ÿå‹•å¾Œå®‰è£ +Installed=å·²å®‰è£ +Available\ Plugins=å¯ç”¨çš„外掛 diff --git a/core/src/main/resources/hudson/PluginManager/check_bg.properties b/core/src/main/resources/hudson/PluginManager/check_bg.properties index f308d4fbed52..208c1d7f40c3 100644 --- a/core/src/main/resources/hudson/PluginManager/check_bg.properties +++ b/core/src/main/resources/hudson/PluginManager/check_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Check\ now=\ - \u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u0441\u0435\u0433\u0430 + Проверка Ñега lastUpdated=\ - \u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u0442\u0430 \u0437\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f\u0442\u0430 \u0435 \u043e\u0442 \u043f\u0440\u0435\u0434\u0438 {0} + ИнформациÑта за обновлениÑта е от преди {0} diff --git a/core/src/main/resources/hudson/PluginManager/check_cs.properties b/core/src/main/resources/hudson/PluginManager/check_cs.properties index 5b1339bc5e8f..e4998c6790f4 100644 --- a/core/src/main/resources/hudson/PluginManager/check_cs.properties +++ b/core/src/main/resources/hudson/PluginManager/check_cs.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Check\ now=Zkontrolovat nyn\u00ED +Check\ now=Zkontrolovat nyní diff --git a/core/src/main/resources/hudson/PluginManager/check_fr.properties b/core/src/main/resources/hudson/PluginManager/check_fr.properties index 6b10fb759b62..a0beee671364 100644 --- a/core/src/main/resources/hudson/PluginManager/check_fr.properties +++ b/core/src/main/resources/hudson/PluginManager/check_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ now=V\u00E9rifier maintenant +Check\ now=Vérifier maintenant diff --git a/core/src/main/resources/hudson/PluginManager/check_hu.properties b/core/src/main/resources/hudson/PluginManager/check_hu.properties index 43ba4fec4dea..1318075c9b33 100644 --- a/core/src/main/resources/hudson/PluginManager/check_hu.properties +++ b/core/src/main/resources/hudson/PluginManager/check_hu.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Check\ now=Ellen\u0151rz\u00E9s most +Check\ now=EllenÅ‘rzés most diff --git a/core/src/main/resources/hudson/PluginManager/check_it.properties b/core/src/main/resources/hudson/PluginManager/check_it.properties index a5dc07157560..87e37b3140f0 100644 --- a/core/src/main/resources/hudson/PluginManager/check_it.properties +++ b/core/src/main/resources/hudson/PluginManager/check_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/PluginManager/check_ja.properties b/core/src/main/resources/hudson/PluginManager/check_ja.properties index 7421eabbdf91..14bd106569b4 100644 --- a/core/src/main/resources/hudson/PluginManager/check_ja.properties +++ b/core/src/main/resources/hudson/PluginManager/check_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ now=\u66f4\u65b0 -lastUpdated=\u30c7\u30fc\u30bf\u66f4\u65b0\u6642\u523b: {0} +Check\ now=æ›´æ–° +lastUpdated=データ更新時刻: {0} diff --git a/core/src/main/resources/hudson/PluginManager/check_ko.properties b/core/src/main/resources/hudson/PluginManager/check_ko.properties index e91170c8c7fc..6521980a7bae 100644 --- a/core/src/main/resources/hudson/PluginManager/check_ko.properties +++ b/core/src/main/resources/hudson/PluginManager/check_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ now=\uC9C0\uAE08 \uD655\uC778 +Check\ now=지금 í™•ì¸ diff --git a/core/src/main/resources/hudson/PluginManager/check_lv.properties b/core/src/main/resources/hudson/PluginManager/check_lv.properties index 0ff80e36c820..b2373bf2d2ae 100644 --- a/core/src/main/resources/hudson/PluginManager/check_lv.properties +++ b/core/src/main/resources/hudson/PluginManager/check_lv.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Check\ now=P\u0101rbaud\u012Bt tagad +Check\ now=PÄrbaudÄ«t tagad diff --git a/core/src/main/resources/hudson/PluginManager/check_nb_NO.properties b/core/src/main/resources/hudson/PluginManager/check_nb_NO.properties index 0e129bdb9619..a464e2ab04bb 100644 --- a/core/src/main/resources/hudson/PluginManager/check_nb_NO.properties +++ b/core/src/main/resources/hudson/PluginManager/check_nb_NO.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ now=Sjekk n\u00E5 +Check\ now=Sjekk nÃ¥ diff --git a/core/src/main/resources/hudson/PluginManager/check_pl.properties b/core/src/main/resources/hudson/PluginManager/check_pl.properties index 5baa48e65b12..0cc3dcb65aa1 100644 --- a/core/src/main/resources/hudson/PluginManager/check_pl.properties +++ b/core/src/main/resources/hudson/PluginManager/check_pl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ now=Sprawd\u017A teraz +Check\ now=Sprawdź teraz lastUpdated=Ostatnie sprawdzenie: {0} temu diff --git a/core/src/main/resources/hudson/PluginManager/check_pt_BR.properties b/core/src/main/resources/hudson/PluginManager/check_pt_BR.properties index 4afadf63b68a..f51cf6354b46 100644 --- a/core/src/main/resources/hudson/PluginManager/check_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginManager/check_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Check\ now=Verificar\ agora -lastUpdated=Atualizar informa\u00E7\u00E3o obtida: {0} atr\u00E1s +lastUpdated=Atualizar informação obtida: {0} atrás diff --git a/core/src/main/resources/hudson/PluginManager/check_ru.properties b/core/src/main/resources/hudson/PluginManager/check_ru.properties index b43d090aa820..f6cd9bfe36e2 100644 --- a/core/src/main/resources/hudson/PluginManager/check_ru.properties +++ b/core/src/main/resources/hudson/PluginManager/check_ru.properties @@ -1,2 +1,2 @@ -Check\ now=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0441\u0435\u0439\u0447\u0430\u0441 -lastUpdated=\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u043e: {0} \u043d\u0430\u0437\u0430\u0434 +Check\ now=Проверить ÑÐµÐ¹Ñ‡Ð°Ñ +lastUpdated=Обновлено: {0} назад diff --git a/core/src/main/resources/hudson/PluginManager/check_sr.properties b/core/src/main/resources/hudson/PluginManager/check_sr.properties index 00cfe6bee196..480b384273b0 100644 --- a/core/src/main/resources/hudson/PluginManager/check_sr.properties +++ b/core/src/main/resources/hudson/PluginManager/check_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -lastUpdated=\ \u0417\u0430\u0434\u045A\u0435 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043D\u043E: \u043F\u0440\u0435 {0} -Check\ now=\u041F\u0440\u043E\u0432\u0435\u0440\u0438 \u0441\u0430\u0434\u0430 +lastUpdated=\ Задње ажурирано: пре {0} +Check\ now=Провери Ñада diff --git a/core/src/main/resources/hudson/PluginManager/check_tr.properties b/core/src/main/resources/hudson/PluginManager/check_tr.properties index a7188cd0440a..f043e3338f8b 100644 --- a/core/src/main/resources/hudson/PluginManager/check_tr.properties +++ b/core/src/main/resources/hudson/PluginManager/check_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ now=\u015eimdi kontrol et +Check\ now=Åžimdi kontrol et diff --git a/core/src/main/resources/hudson/PluginManager/check_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/check_zh_TW.properties index 90f242054689..5c27a2e468c6 100644 --- a/core/src/main/resources/hudson/PluginManager/check_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/check_zh_TW.properties @@ -20,5 +20,5 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -lastUpdated=\u66f4\u65b0\u8cc7\u8a0a\u53d6\u5f97\u6642\u9593\: {0}\u524d -Check\ now=\u99ac\u4e0a\u6aa2\u67e5 +lastUpdated=更新資訊å–得時間\: {0}å‰ +Check\ now=馬上檢查 diff --git a/core/src/main/resources/hudson/PluginManager/index_bg.properties b/core/src/main/resources/hudson/PluginManager/index_bg.properties index 91bf6b5e8bd3..365f0e1605a4 100644 --- a/core/src/main/resources/hudson/PluginManager/index_bg.properties +++ b/core/src/main/resources/hudson/PluginManager/index_bg.properties @@ -21,14 +21,14 @@ # THE SOFTWARE. All=\ - \u0412\u0441\u0438\u0447\u043a\u0438 + Ð’Ñички None=\ - \u041d\u0438\u043a\u043e\u0438 + Ðикои Select=\ - \u0418\u0437\u0431\u043e\u0440 + Избор UpdatePageDescription=\ - \u041d\u0430\u043b\u0438\u0447\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u043d\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0438\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438. + Ðалични Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð½Ð° използваните приÑтавки. UpdatePageLegend=\ - \u0420\u0435\u0434\u043e\u0432\u0435\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u043d\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0431\u0435\u0440\u0430\u0442, \u0441\u0430 \u0437\u0430 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0438\u0442\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f, \u043a\u043e\u0438\u0442\u043e\ - \u0438\u0437\u0438\u0441\u043a\u0432\u0430\u0442 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 Jenkins. \u041e\u0446\u0432\u0435\u0442\u0435\u043d\u0438\u0442\u0435 \u0440\u0435\u0434\u043e\u0432\u0435, \u043a\u043e\u0438\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435\ - \u0438\u0437\u0431\u0435\u0440\u0430\u0442, \u0441\u0430 \u0437\u0430 \u043f\u0440\u043e\u0442\u0438\u0447\u0430\u0449\u0438 \u0432 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0438\u043b\u0438 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f. + Редовете, които не могат да Ñе изберат, Ñа за инÑталираните обновлениÑ, които\ + изиÑкват реÑтартиране на Jenkins. Оцветените редове, които могат да Ñе\ + изберат, Ñа за протичащи в момента или неуÑпешни обновлениÑ. diff --git a/core/src/main/resources/hudson/PluginManager/index_ca.properties b/core/src/main/resources/hudson/PluginManager/index_ca.properties index 580c8f99e3ee..b5187211fb5f 100644 --- a/core/src/main/resources/hudson/PluginManager/index_ca.properties +++ b/core/src/main/resources/hudson/PluginManager/index_ca.properties @@ -3,4 +3,4 @@ All=Tots None=Cap Select=Seleccionar -UpdatePageDescription=Aquesta p\u00E0gina llista actualitzacions de plugins que estan en \u00FAs actualment +UpdatePageDescription=Aquesta pàgina llista actualitzacions de plugins que estan en ús actualment diff --git a/core/src/main/resources/hudson/PluginManager/index_cs.properties b/core/src/main/resources/hudson/PluginManager/index_cs.properties index b66b733535a8..eb20a7404bb6 100644 --- a/core/src/main/resources/hudson/PluginManager/index_cs.properties +++ b/core/src/main/resources/hudson/PluginManager/index_cs.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -All=V\u0161e +All=VÅ¡e None=Nic Select=Vybrat -UpdatePageDescription=Str\u00E1nka zobrazuje aktualizace plugin\u016F, kter\u00E9 aktu\u00E1ln\u011B pou\u017E\u00EDv\u00E1te. +UpdatePageDescription=Stránka zobrazuje aktualizace pluginů, které aktuálnÄ› používáte. diff --git a/core/src/main/resources/hudson/PluginManager/index_da.properties b/core/src/main/resources/hudson/PluginManager/index_da.properties index 1a8f0e8d583a..efeccc6dc2ed 100644 --- a/core/src/main/resources/hudson/PluginManager/index_da.properties +++ b/core/src/main/resources/hudson/PluginManager/index_da.properties @@ -22,6 +22,6 @@ All=Alle None=Ingen -Select=V\u00E6lg +Select=Vælg UpdatePageDescription=Denne side angiver opdateringer til de plugins, du allerede har installeret -UpdatePageLegend=R\u00e6kker der er sl\u00e5et fra er allerede opgraderede, og afventer genstart. \ +UpdatePageLegend=Rækker der er slÃ¥et fra er allerede opgraderede, og afventer genstart. \ diff --git a/core/src/main/resources/hudson/PluginManager/index_de.properties b/core/src/main/resources/hudson/PluginManager/index_de.properties index 5f883831bf51..6af229c81342 100644 --- a/core/src/main/resources/hudson/PluginManager/index_de.properties +++ b/core/src/main/resources/hudson/PluginManager/index_de.properties @@ -22,8 +22,8 @@ All=Alle None=Keine -Select=Ausw\u00E4hlen -UpdatePageDescription=Für diese installierten Plugins gibt es aktuellere Versionen. +Select=Auswählen +UpdatePageDescription=Für diese installierten Plugins gibt es aktuellere Versionen. UpdatePageLegend=Deaktivierte Zeilen zeigen bereits aktualisierte Plugins, die einen \ - Neustart erwarten. Grau hinterlegte, aber anwählbare Zeilen zeigen Plugins, deren \ - Aktualisierung noch läuft oder fehlschlug. + Neustart erwarten. Grau hinterlegte, aber anwählbare Zeilen zeigen Plugins, deren \ + Aktualisierung noch läuft oder fehlschlug. diff --git a/core/src/main/resources/hudson/PluginManager/index_es.properties b/core/src/main/resources/hudson/PluginManager/index_es.properties index eb869f12e47d..b193fa69bd35 100644 --- a/core/src/main/resources/hudson/PluginManager/index_es.properties +++ b/core/src/main/resources/hudson/PluginManager/index_es.properties @@ -23,6 +23,6 @@ All=Todo None=Ninguno Select=Seleccionar -UpdatePageDescription=Esta página muestra la lista de ''plugins'' que estás usando actualmente. +UpdatePageDescription=Esta página muestra la lista de ''plugins'' que estás usando actualmente. UpdatePageLegend=Las filas desactivadas ya han sido actualizadas, esperando para reiniciar. \ - Las filas que siguen activadas pero sombreadas han fallado o están siendo actualizadas. + Las filas que siguen activadas pero sombreadas han fallado o están siendo actualizadas. diff --git a/core/src/main/resources/hudson/PluginManager/index_es_AR.properties b/core/src/main/resources/hudson/PluginManager/index_es_AR.properties index 71fb5e5e9318..a82dd4c0dd10 100644 --- a/core/src/main/resources/hudson/PluginManager/index_es_AR.properties +++ b/core/src/main/resources/hudson/PluginManager/index_es_AR.properties @@ -23,4 +23,4 @@ All=Todo None=Ninguno Select=Seleccionar -UpdatePageDescription=Esta p\u00E1gina lista las actualizaciones de plugines actualmente instalados +UpdatePageDescription=Esta página lista las actualizaciones de plugines actualmente instalados diff --git a/core/src/main/resources/hudson/PluginManager/index_et.properties b/core/src/main/resources/hudson/PluginManager/index_et.properties index c477bce6d700..ca9120d31653 100644 --- a/core/src/main/resources/hudson/PluginManager/index_et.properties +++ b/core/src/main/resources/hudson/PluginManager/index_et.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -All=K\u00F5ik -None=Mitte \u00FCkski +All=Kõik +None=Mitte ükski Select=Vali -UpdatePageDescription=See lehek\u00FClg loeb \u00FCles k\u00F5ik uuendused pistikprogrammidele, mis on hetkel kasutusel. +UpdatePageDescription=See lehekülg loeb üles kõik uuendused pistikprogrammidele, mis on hetkel kasutusel. diff --git a/core/src/main/resources/hudson/PluginManager/index_fi.properties b/core/src/main/resources/hudson/PluginManager/index_fi.properties index 2157ffbe8f6a..2fe44cdf31f2 100644 --- a/core/src/main/resources/hudson/PluginManager/index_fi.properties +++ b/core/src/main/resources/hudson/PluginManager/index_fi.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. All=Kaikki -None=Ei mit\u00E4\u00E4n +None=Ei mitään Select=Valitse -UpdatePageDescription=T\u00E4m\u00E4 sivu n\u00E4ytt\u00E4\u00E4 k\u00E4ytt\u00E4miesi liit\u00E4nn\u00E4isten p\u00E4ivitykset. -UpdatePageLegend=Harmaat rivit ovat jo p\u00E4ivitetty ja odottavat uudelleenk\u00E4ynnistyst\u00E4. V\u00E4rj\u00E4tyt mutta valittavat rivit ovat kesken tai ep\u00E4onnistuneet. +UpdatePageDescription=Tämä sivu näyttää käyttämiesi liitännäisten päivitykset. +UpdatePageLegend=Harmaat rivit ovat jo päivitetty ja odottavat uudelleenkäynnistystä. Värjätyt mutta valittavat rivit ovat kesken tai epäonnistuneet. diff --git a/core/src/main/resources/hudson/PluginManager/index_fr.properties b/core/src/main/resources/hudson/PluginManager/index_fr.properties index 5ce204dc7acd..0d73d5903e46 100644 --- a/core/src/main/resources/hudson/PluginManager/index_fr.properties +++ b/core/src/main/resources/hudson/PluginManager/index_fr.properties @@ -22,6 +22,6 @@ All=Tous None=Aucun -Select=S\u00E9lectionner -UpdatePageDescription=Cette page liste les mises \u00E0 jour des plugins en cours d''utilisation. -UpdatePageLegend=Les lignes d\u00E9sactiv\u00E9es sont d\u00E9j\u00E0 mises \u00E0 jour et attendent un red\u00E9marrage. Les lignes gris\u00E9es mais s\u00E9lectionnables sont en cours ou en \u00E9chec. +Select=Sélectionner +UpdatePageDescription=Cette page liste les mises à jour des plugins en cours d''utilisation. +UpdatePageLegend=Les lignes désactivées sont déjà mises à jour et attendent un redémarrage. Les lignes grisées mais sélectionnables sont en cours ou en échec. diff --git a/core/src/main/resources/hudson/PluginManager/index_he.properties b/core/src/main/resources/hudson/PluginManager/index_he.properties index c183c1784377..432bc426924f 100644 --- a/core/src/main/resources/hudson/PluginManager/index_he.properties +++ b/core/src/main/resources/hudson/PluginManager/index_he.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -All=\u05D4\u05DB\u05DC -None=\u05DB\u05DC\u05D5\u05DD -Select=\u05D1\u05D7\u05E8 -UpdatePageDescription=\u05D3\u05E3 \u05D6\u05D4 \u05DE\u05E6\u05D9\u05D2 \u05E2\u05D3\u05DB\u05D5\u05E0\u05D9\u05DD \u05DC\u05EA\u05D5\u05E1\u05E4\u05D9\u05DD \u05E9\u05D4\u05E0\u05DA \u05DE\u05E9\u05EA\u05DE\u05E9 \u05DB\u05E8\u05D2\u05E2. +All=הכל +None=×›×œ×•× +Select=בחר +UpdatePageDescription=דף ×–×” מציג ×¢×“×›×•× ×™× ×œ×ª×•×¡×¤×™× ×©×”× ×š משתמש כרגע. diff --git a/core/src/main/resources/hudson/PluginManager/index_hu.properties b/core/src/main/resources/hudson/PluginManager/index_hu.properties index 3a0919d6ea68..c9698d4349c7 100644 --- a/core/src/main/resources/hudson/PluginManager/index_hu.properties +++ b/core/src/main/resources/hudson/PluginManager/index_hu.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -All=\u00D6sszes +All=Összes None=Semmi -Select=Kiv\u00E1laszt\u00E1s -UpdatePageDescription=Ezen az oldalon tal\u00E1lhat\u00F3 az \u00D6n \u00E1ltal haszn\u00E1lt plugin-ek list\u00E1ja. +Select=Kiválasztás +UpdatePageDescription=Ezen az oldalon található az Ön által használt plugin-ek listája. diff --git a/core/src/main/resources/hudson/PluginManager/index_it.properties b/core/src/main/resources/hudson/PluginManager/index_it.properties index 8d1bf9eaa8af..0f28332f82a7 100644 --- a/core/src/main/resources/hudson/PluginManager/index_it.properties +++ b/core/src/main/resources/hudson/PluginManager/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -27,6 +27,6 @@ None=Nessuno Select=Seleziona UpdatePageDescription=Questa pagina elenca gli aggiornamenti disponibili per \ i componenti aggiuntivi attualmente utilizzati. -UpdatePageLegend=Le righe disabilitate corrispondono ad aggiornamenti già \ +UpdatePageLegend=Le righe disabilitate corrispondono ad aggiornamenti già \ eseguiti e in attesa del riavvio di Jenkins. Le righe ombreggiate ma \ selezionabili sono aggiornamenti in corso o non riusciti. diff --git a/core/src/main/resources/hudson/PluginManager/index_ja.properties b/core/src/main/resources/hudson/PluginManager/index_ja.properties index 3bccb33a8268..5aefd9d0c77b 100644 --- a/core/src/main/resources/hudson/PluginManager/index_ja.properties +++ b/core/src/main/resources/hudson/PluginManager/index_ja.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -UpdatePageDescription=\u4f7f\u7528\u3057\u3066\u3044\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u3092\u4e00\u89a7\u8868\u793a\u3057\u307e\u3059\u3002 -UpdatePageLegend=\u9078\u629e\u3067\u304d\u306a\u3044\u884c\u306f\u3059\u3067\u306b\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u6e08\u307f\u3067\u518d\u8d77\u52d5\u5f85\u3061\u306e\u72b6\u614b\u3067\u3059\u3002\ - \u8584\u6697\u3044\u9078\u629e\u3067\u304d\u308b\u884c\u306f \u5b9f\u884c\u4e2d\u304b\u5931\u6557\u3067\u3059\u3002 -Select=\u9078\u629e -All=\u3059\u3079\u3066 -None=\u306a\u3057 +UpdatePageDescription=使用ã—ã¦ã„るプラグインã®ã‚¢ãƒƒãƒ—デートを一覧表示ã—ã¾ã™ã€‚ +UpdatePageLegend=é¸æŠžã§ããªã„è¡Œã¯ã™ã§ã«ã‚¢ãƒƒãƒ—グレード済ã¿ã§å†èµ·å‹•å¾…ã¡ã®çŠ¶æ…‹ã§ã™ã€‚\ + è–„æš—ã„é¸æŠžã§ãる行㯠実行中ã‹å¤±æ•—ã§ã™ã€‚ +Select=é¸æŠž +All=ã™ã¹ã¦ +None=ãªã— diff --git a/core/src/main/resources/hudson/PluginManager/index_ko.properties b/core/src/main/resources/hudson/PluginManager/index_ko.properties index d2df0ecb70b1..7257932a5d25 100644 --- a/core/src/main/resources/hudson/PluginManager/index_ko.properties +++ b/core/src/main/resources/hudson/PluginManager/index_ko.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -All=\uBAA8\uB450 \uC120\uD0DD -None=\uBAA8\uB450 \uC120\uD0DD \uC548\uD568 -Select=\uC120\uD0DD -UpdatePageDescription=\uC774 \uD398\uC774\uC9C0\uB294 \uD604\uC7AC \uC0AC\uC6A9\uD558\uB294 \uD50C\uB7EC\uADF8\uC778\uC5D0 \uB300\uD55C \uC5C5\uB370\uC774\uD2B8 \uBAA9\uB85D\uC785\uB2C8\uB2E4. -UpdatePageLegend=\uBE44\uD65C\uC131\uD654\uB41C \uD589\uB4E4\uC740 \uC774\uBBF8 \uC5C5\uADF8\uB808\uC774\uB4DC \uB418\uC5C8\uACE0, \uC7AC\uC2DC\uC791\uC744 \uAE30\uB2E4\uB9AC\uACE0 \uC788\uC2B5\uB2C8\uB2E4. \uC74C\uC601\uC774\uC9C0\uB9CC \uC120\uD0DD\uAC00\uB2A5\uD55C \uD589\uB4E4\uC740 \uC9C4\uD589\uC911\uC774\uAC70\uB098 \uC2E4\uD328\uD55C \uAC83\uC785\uB2C8\uB2E4. +All=ëª¨ë‘ ì„ íƒ +None=ëª¨ë‘ ì„ íƒ ì•ˆí•¨ +Select=ì„ íƒ +UpdatePageDescription=ì´ íŽ˜ì´ì§€ëŠ” 현재 사용하는 플러그ì¸ì— 대한 ì—…ë°ì´íŠ¸ 목ë¡ìž…니다. +UpdatePageLegend=ë¹„í™œì„±í™”ëœ í–‰ë“¤ì€ ì´ë¯¸ 업그레ì´ë“œ ë˜ì—ˆê³ , ìž¬ì‹œìž‘ì„ ê¸°ë‹¤ë¦¬ê³  있습니다. ìŒì˜ì´ì§€ë§Œ ì„ íƒê°€ëŠ¥í•œ í–‰ë“¤ì€ ì§„í–‰ì¤‘ì´ê±°ë‚˜ 실패한 것입니다. diff --git a/core/src/main/resources/hudson/PluginManager/index_lt.properties b/core/src/main/resources/hudson/PluginManager/index_lt.properties index 64d8f02f1e60..ee0f7c65a2be 100644 --- a/core/src/main/resources/hudson/PluginManager/index_lt.properties +++ b/core/src/main/resources/hudson/PluginManager/index_lt.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors All=Visi -None=N\u0117 vieno -Select=Pa\u017Eym\u0117ti -UpdatePageDescription=\u0160iame puslapyje rodomi j\u016Bs\u0173 naudojam\u0173 pried\u0173 atnaujinimai. +None=NÄ— vieno +Select=PažymÄ—ti +UpdatePageDescription=Å iame puslapyje rodomi jÅ«sų naudojamų priedų atnaujinimai. diff --git a/core/src/main/resources/hudson/PluginManager/index_lv.properties b/core/src/main/resources/hudson/PluginManager/index_lv.properties index cea2a3beda3b..3f6535268165 100644 --- a/core/src/main/resources/hudson/PluginManager/index_lv.properties +++ b/core/src/main/resources/hudson/PluginManager/index_lv.properties @@ -22,6 +22,6 @@ All=Visus None=Nevienu -Select=Iez\u012Bm\u0113t -UpdatePageDescription=\u0160\u012B lapa uzr\u0101da sarakstu ar pa\u0161laik lietotajiem spraud\u0146iem -UpdatePageLegend=Atsp\u0113jot\u0101s rindas jau tiku\u0161as atjaunotas un t\u0101s gaida p\u0101rstart\u0113\u0161ana. No\u0113not\u0101s, bet iez\u012Bm\u0113jam\u0101s rindas ir progres\u0101 vai neveiksm\u012Bgas. +Select=IezÄ«mÄ“t +UpdatePageDescription=Å Ä« lapa uzrÄda sarakstu ar paÅ¡laik lietotajiem spraudņiem +UpdatePageLegend=AtspÄ“jotÄs rindas jau tikuÅ¡as atjaunotas un tÄs gaida pÄrstartÄ“Å¡ana. NoÄ“notÄs, bet iezÄ«mÄ“jamÄs rindas ir progresÄ vai neveiksmÄ«gas. diff --git a/core/src/main/resources/hudson/PluginManager/index_pl.properties b/core/src/main/resources/hudson/PluginManager/index_pl.properties index 88b2e384cc00..76570f3138f8 100644 --- a/core/src/main/resources/hudson/PluginManager/index_pl.properties +++ b/core/src/main/resources/hudson/PluginManager/index_pl.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. All=Wszystkie -None=\u017Badne +None=Å»adne Select=Zaznacz -UpdatePageDescription=Ta strona zawiera aktualizacje wtyczek, kt\u00F3rych aktualnie u\u017Cywasz -UpdatePageLegend=Nieaktywne wiersze oznaczaj\u0105 ju\u017C wykonane aktualizacje, czekaj\u0105ce na restart. Zacieniowane ale aktywne wiersze s\u0105 w trakcie aktualizacji lub zako\u0144czy\u0142y si\u0119 b\u0142\u0119dnie. +UpdatePageDescription=Ta strona zawiera aktualizacje wtyczek, których aktualnie używasz +UpdatePageLegend=Nieaktywne wiersze oznaczajÄ… już wykonane aktualizacje, czekajÄ…ce na restart. Zacieniowane ale aktywne wiersze sÄ… w trakcie aktualizacji lub zakoÅ„czyÅ‚y siÄ™ bÅ‚Ä™dnie. Compatible=Kompatybilne diff --git a/core/src/main/resources/hudson/PluginManager/index_pt_BR.properties b/core/src/main/resources/hudson/PluginManager/index_pt_BR.properties index ebca9e2e19e4..9d1e9c785bc2 100644 --- a/core/src/main/resources/hudson/PluginManager/index_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginManager/index_pt_BR.properties @@ -23,6 +23,6 @@ All=Todos None=Nenhum Select=Selecionar -UpdatePageDescription=Essa p\u00E1gina lista as atualiza\u00E7\u00F5es das extens\u00F5es que voc\u00EA est\u00E1 usando. -UpdatePageLegend=Desativar as colunas que j\u00E1 est\u00E3o atualizadas, aguardando reiniciar. -Compatible=Compat\u00EDvel +UpdatePageDescription=Essa página lista as atualizações das extensões que você está usando. +UpdatePageLegend=Desativar as colunas que já estão atualizadas, aguardando reiniciar. +Compatible=Compatível diff --git a/core/src/main/resources/hudson/PluginManager/index_pt_PT.properties b/core/src/main/resources/hudson/PluginManager/index_pt_PT.properties index b8445cada816..b38ec135b2e6 100644 --- a/core/src/main/resources/hudson/PluginManager/index_pt_PT.properties +++ b/core/src/main/resources/hudson/PluginManager/index_pt_PT.properties @@ -3,4 +3,4 @@ All=Todos None=Nenhum Select=Selecionar -UpdatePageDescription=Esta p\u00E1gina lista as atualiza\u00E7\u00F5es aos plugins que est\u00E3o instalados. +UpdatePageDescription=Esta página lista as atualizações aos plugins que estão instalados. diff --git a/core/src/main/resources/hudson/PluginManager/index_ro.properties b/core/src/main/resources/hudson/PluginManager/index_ro.properties index d6c3d53dc119..8c894ecb5b2e 100644 --- a/core/src/main/resources/hudson/PluginManager/index_ro.properties +++ b/core/src/main/resources/hudson/PluginManager/index_ro.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -UpdatePageDescription=Aceast\u0103 pagin\u0103 prezinta actualiz\u0103ri pt plugin-urile folosite momentan. +UpdatePageDescription=Această pagină prezinta actualizări pt plugin-urile folosite momentan. diff --git a/core/src/main/resources/hudson/PluginManager/index_ru.properties b/core/src/main/resources/hudson/PluginManager/index_ru.properties index 9e8dbd520a18..754308a237ad 100644 --- a/core/src/main/resources/hudson/PluginManager/index_ru.properties +++ b/core/src/main/resources/hudson/PluginManager/index_ru.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -All=\u0412\u0441\u0435 -None=\u041D\u0438\u043A\u0430\u043A\u0438\u0435 -Select=\u0412\u044B\u0431\u043E\u0440 -UpdatePageDescription=\u041D\u0430 \u0434\u0430\u043D\u043D\u043E\u0439 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u044B \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u044B \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F \u0434\u043B\u044F \u0443\u0436\u0435 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044B\u0445 \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u0432. -UpdatePageLegend=\u0417\u0430\u0431\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0435 \u0441\u0442\u0440\u043E\u043A\u0438 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u044B \u0438 \u043E\u0436\u0438\u0434\u0430\u044E\u0442 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0430. \u0417\u0430\u0442\u0435\u043D\u0435\u043D\u043D\u044B\u0435 \u043D\u043E \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0435 \u0434\u043B\u044F \u0432\u044B\u0431\u043E\u0440\u0430 \u0443\u0441\u0442\u0430\u043D\u0430\u0432\u043B\u0438\u0432\u0430\u044E\u0442\u0441\u044F \u0438\u043B\u0438 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u043B\u0438\u0441\u044C \u043D\u0435\u0443\u0434\u0430\u0447\u043D\u043E. +All=Ð’Ñе +None=Ðикакие +Select=Выбор +UpdatePageDescription=Ðа данной Ñтраницы отображены Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð´Ð»Ñ ÑƒÐ¶Ðµ уÑтановленных плагинов. +UpdatePageLegend=Заблокированные Ñтроки обновлены и ожидают реÑтарта. Затененные но доÑтупные Ð´Ð»Ñ Ð²Ñ‹Ð±Ð¾Ñ€Ð° уÑтанавливаютÑÑ Ð¸Ð»Ð¸ уÑтановилиÑÑŒ неудачно. diff --git a/core/src/main/resources/hudson/PluginManager/index_sk.properties b/core/src/main/resources/hudson/PluginManager/index_sk.properties index aaa201773acb..6ff243a9e0dd 100644 --- a/core/src/main/resources/hudson/PluginManager/index_sk.properties +++ b/core/src/main/resources/hudson/PluginManager/index_sk.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -All=V\u0161etko -None=Ni\u010D -Select=Vybra\u0165 -UpdatePageDescription=T\u00E1to str\u00E1nka vymen\u00FAva aktualiz\u00E1cie pre roz\u0161\u00EDrenia (doplnky), ktor\u00E9 pr\u00E1ve pou\u017E\u00EDvate. +All=VÅ¡etko +None=NiÄ +Select=VybraÅ¥ +UpdatePageDescription=Táto stránka vymenúva aktualizácie pre rozšírenia (doplnky), ktoré práve používate. diff --git a/core/src/main/resources/hudson/PluginManager/index_sr.properties b/core/src/main/resources/hudson/PluginManager/index_sr.properties index c4d6e484813c..caee0da57356 100644 --- a/core/src/main/resources/hudson/PluginManager/index_sr.properties +++ b/core/src/main/resources/hudson/PluginManager/index_sr.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Select=\u0418\u0437\u0430\u0431\u0435\u0440\u0438 -All=\u0421\u0432\u0435 -None=\u041D\u0438\u0458\u0435\u0434\u043D\u0443 -UpdatePageDescription=\u041C\u043E\u0434\u0443\u043B\u0435 \u0441\u043F\u0440\u0435\u043C\u0435 \u0437\u0430 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045A\u0435. -UpdatePageLegend=\u041E\u043D\u0435\u043C\u043E\u0433\u0443\u045B\u0435\u043D\u0438 \u0440\u0435\u0434\u043E\u0432\u0438 \u0441\u0443 \u0432\u0435\u045B \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043D\u0438 \u0438 \u0447\u0435\u043A\u0430\u0458\u0443 \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0435.\ - \u041E\u0431\u043E\u0458\u0435\u043D\u0438 (\u0430\u043B\u0438 \u043F\u0440\u0438\u0441\u0442\u0443\u043F\u0430\u0447\u043D\u0438) \u0440\u0435\u0434\u043E\u0432\u0438 \u0441\u0443 \u0443 \u0442\u043E\u043A\u0443 \u0438\u043B\u0438 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0438. +Select=Изабери +All=Све +None=Ðиједну +UpdatePageDescription=Модуле Ñпреме за ажурирање. +UpdatePageLegend=Онемогућени редови Ñу већ ажурирани и чекају поново покретање.\ + Обојени (али приÑтупачни) редови Ñу у току или неуÑпешни. diff --git a/core/src/main/resources/hudson/PluginManager/index_sv_SE.properties b/core/src/main/resources/hudson/PluginManager/index_sv_SE.properties index 8c51c89b570b..b9e54cb65a36 100644 --- a/core/src/main/resources/hudson/PluginManager/index_sv_SE.properties +++ b/core/src/main/resources/hudson/PluginManager/index_sv_SE.properties @@ -22,5 +22,5 @@ All=Alla None=Inga -Select=V\u00E4lj -UpdatePageDescription=Den h\u00E4r sidan visar uppdateringar p\u00E5 insticksmoduler som du anv\u00E4nder. +Select=Välj +UpdatePageDescription=Den här sidan visar uppdateringar pÃ¥ insticksmoduler som du använder. diff --git a/core/src/main/resources/hudson/PluginManager/index_tr.properties b/core/src/main/resources/hudson/PluginManager/index_tr.properties index 7ef1159b1d8a..1b72430ee32e 100644 --- a/core/src/main/resources/hudson/PluginManager/index_tr.properties +++ b/core/src/main/resources/hudson/PluginManager/index_tr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -All=T\u00FCm\u00FC -None=Hi\u00E7biri -Select=Se\u00E7 -UpdatePageDescription=Bu sayfada mevcut kulland\u0131\u011f\u0131n\u0131z eklentiler listelenir. +All=Tümü +None=Hiçbiri +Select=Seç +UpdatePageDescription=Bu sayfada mevcut kullandığınız eklentiler listelenir. diff --git a/core/src/main/resources/hudson/PluginManager/index_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/index_zh_TW.properties index 41c98a0cf262..ae00e4f20e6f 100644 --- a/core/src/main/resources/hudson/PluginManager/index_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/index_zh_TW.properties @@ -20,9 +20,9 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -UpdatePageDescription=\u9019\u88e1\u5217\u51fa\u60a8\u4f7f\u7528\u7684\u5916\u639b\u7a0b\u5f0f\u7684\u66f4\u65b0\u3002 -UpdatePageLegend=\u5347\u7d1a\u6210\u529f\u7684\u5916\u639b\u7a0b\u5f0f\u6703\u4e0d\u80fd\u9078\u53d6\uff0c\u91cd\u65b0\u555f\u52d5\u5f8c\u5c31\u80fd\u4f7f\u7528\u3002\u7070\u8272\u4f46\u9084\u80fd\u9078\u53d6\u7684\u5916\u639b\u7a0b\u5f0f\u9084\u5728\u5b89\u88dd\u6216\u662f\u5b89\u88dd\u5931\u6557\u3002 -Select=\u9078\u53d6 -All=\u5168\u90e8 -None=\u7121 -Compatible=\u76f8\u5bb9 +UpdatePageDescription=這裡列出您使用的外掛程å¼çš„更新。 +UpdatePageLegend=å‡ç´šæˆåŠŸçš„外掛程å¼æœƒä¸èƒ½é¸å–,é‡æ–°å•Ÿå‹•å¾Œå°±èƒ½ä½¿ç”¨ã€‚ç°è‰²ä½†é‚„能é¸å–的外掛程å¼é‚„在安è£æˆ–是安è£å¤±æ•—。 +Select=é¸å– +All=全部 +None=ç„¡ +Compatible=相容 diff --git a/core/src/main/resources/hudson/PluginManager/installed_bg.properties b/core/src/main/resources/hudson/PluginManager/installed_bg.properties index 226fb9195259..a610613acf6f 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_bg.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_bg.properties @@ -21,47 +21,47 @@ # THE SOFTWARE. Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=\ - \u041f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435 \u0449\u0435 \u0432\u043b\u044f\u0437\u0430\u0442 \u0432 \u0441\u0438\u043b\u0430 \u0441\u043b\u0435\u0434 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 Jenkins + Промените ще влÑзат в Ñила Ñлед реÑтартиране на Jenkins Enabled=\ - \u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d + Разрешен Name=\ - \u0418\u043c\u0435 + Име Previously\ installed\ version=\ - \u041f\u0440\u0435\u0434\u0438\u0448\u043d\u043e \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u044f + Предишно инÑталирана верÑÐ¸Ñ Restart\ Once\ No\ Jobs\ Are\ Running=\ - \u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435, \u0432 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0431\u0435\u0437 \u0442\u0435\u043a\u0443\u0449\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f. + БезопаÑно реÑтартиране, в момента без текущи изгражданиÑ. Uncheck\ to\ disable\ the\ plugin=\ - \u041c\u0430\u0445\u043d\u0435\u0442\u0435 \u043e\u0442\u043c\u0435\u0442\u043a\u0430\u0442\u0430 \u0437\u0430 \u0437\u0430\u0431\u0440\u0430\u043d\u0430 \u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430\u0442\u0430 + Махнете отметката за забрана на приÑтавката Uninstall=\ - \u0414\u0435\u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435 + ДеинÑталиране Version=\ - \u0412\u0435\u0440\u0441\u0438\u044f + ВерÑÐ¸Ñ downgradeTo=\ - \u041a\u044a\u043c \u0432\u0435\u0440\u0441\u0438\u044f {0} + Към верÑÐ¸Ñ {0} No\ plugins\ installed.=\ - \u041d\u044f\u043c\u0430 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0438 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438. + ÐÑма инÑталирани приÑтавки. Update\ Center=\ - \u0421\u0430\u0439\u0442 \u0437\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f + Сайт за Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Uninstallation\ pending=\ - \u041f\u0440\u0435\u0434\u0441\u0442\u043e\u0438 \u0434\u0435\u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435 + ПредÑтои деинÑталиране Warning=\ - \u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435 + Предупреждение This\ plugin\ cannot\ be\ uninstalled=\ - \u0422\u0430\u0437\u0438 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0434\u0435\u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430 + Тази приÑтавка не може да Ñе деинÑталира It\ has\ one\ or\ more\ enabled\ dependents=\ - \u0418\u043c\u0430 \u043f\u043e\u043d\u0435 \u0435\u0434\u043d\u0430 \u0434\u0440\u0443\u0433\u0430 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430, \u043a\u043e\u044f\u0442\u043e \u0437\u0430\u0432\u0438\u0441\u0438 \u043e\u0442 \u043d\u0435\u044f + Има поне една друга включена приÑтавка, коÑто завиÑи от Ð½ÐµÑ It\ has\ one\ or\ more\ disabled\ dependencies=\ - \u0418\u043c\u0430 \u043f\u043e\u043d\u0435 \u0435\u0434\u043d\u0430 \u0434\u0440\u0443\u0433\u0430 \u0438\u0437\u043a\u043b\u044e\u0447\u0435\u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430, \u043a\u043e\u044f\u0442\u043e \u0437\u0430\u0432\u0438\u0441\u0438 \u043e\u0442 \u043d\u0435\u044f + Има поне една друга изключена приÑтавка, коÑто завиÑи от Ð½ÐµÑ This\ plugin\ cannot\ be\ disabled=\ - \u0422\u0430\u0437\u0438 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043a\u043b\u044e\u0447\u0438 + Тази приÑтавка не може да Ñе изключи This\ plugin\ cannot\ be\ enabled=\ - \u0422\u0430\u0437\u0438 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0432\u043a\u043b\u044e\u0447\u0438 + Тази приÑтавка не може да Ñе включи Filter=\ - \u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u0435 + Филтриране requires.restart=\ - \u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0442\u0435 Jenkins, \u043f\u0440\u0435\u0434\u0438 \u0434\u0430 \u043f\u0440\u0430\u0432\u0438\u0442\u0435 \u043f\u043e\u0432\u0435\u0447\u0435 \u043f\u0440\u043e\u043c\u0435\u043d\u0438 \u043f\u043e\ - \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438\u0442\u0435. \u041e\u043f\u0430\u0441\u043d\u043e \u0435 \u0434\u0430 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0438\u0442\u0435 \u0431\u0435\u0437 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435. + ТрÑбва да реÑтартирате Jenkins, преди да правите повече промени по\ + приÑтавките. ОпаÑно е да продължите без реÑтартиране. It\ has\ one\ or\ more\ installed\ dependents=\ - \u041a\u044a\u043c \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430\u0442\u0430 \u0435 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0430 \u043f\u043e\u043d\u0435 \u0435\u0434\u043d\u0430 \u0434\u0440\u0443\u0433\u0430 \u043a\u0430\u0442\u043e \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442. + Към приÑтавката е инÑталирана поне една друга като завиÑимоÑÑ‚. No\ description\ available.=\ - \u0411\u0435\u0437 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 + Без опиÑание diff --git a/core/src/main/resources/hudson/PluginManager/installed_cs.properties b/core/src/main/resources/hudson/PluginManager/installed_cs.properties index 9fb56abb6a89..9f9a026b610d 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_cs.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_cs.properties @@ -1,11 +1,11 @@ # This file is under the MIT License by authors -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Zm\u011Bny se projev\u00ED a\u017E po restartu Jenkinse -Enabled=Povolen\u00E9 -Name=Jm\u00E9no -Previously\ installed\ version=P\u0159edchoz\u00ED nainstalovan\u00E1 verze -Restart\ Once\ No\ Jobs\ Are\ Running=Restartovat a\u017E po dokon\u010Den\u00ED v\u0161ech \u00FAloh. -Uncheck\ to\ disable\ the\ plugin=Od\u0161krtnout pro deaktivaci modulu +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=ZmÄ›ny se projeví až po restartu Jenkinse +Enabled=Povolené +Name=Jméno +Previously\ installed\ version=PÅ™edchozí nainstalovaná verze +Restart\ Once\ No\ Jobs\ Are\ Running=Restartovat až po dokonÄení vÅ¡ech úloh. +Uncheck\ to\ disable\ the\ plugin=OdÅ¡krtnout pro deaktivaci modulu Uninstall=Odinstalovat Version=Verze -downgradeTo=Vr\u00E1tit se k {0} +downgradeTo=Vrátit se k {0} diff --git a/core/src/main/resources/hudson/PluginManager/installed_da.properties b/core/src/main/resources/hudson/PluginManager/installed_da.properties index 9e17d018924b..a41640bf7fe9 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_da.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_da.properties @@ -21,12 +21,12 @@ # THE SOFTWARE. Version=Version -Restart\ Once\ No\ Jobs\ Are\ Running=Genstart n\u00e5r ingen jobs k\u00f8rer -Previously\ installed\ version=Forudg\u00e5ende installerede version -New\ plugins\ will\ take\ effect\ once\ you\ restart\ Jenkins=Nye plugins tr\u00e6der i kraft efter du har genstartet Jenkins -Uncheck\ to\ disable\ the\ plugin=Fjern flueben for at sl\u00e5 plugin''et fra +Restart\ Once\ No\ Jobs\ Are\ Running=Genstart nÃ¥r ingen jobs kører +Previously\ installed\ version=ForudgÃ¥ende installerede version +New\ plugins\ will\ take\ effect\ once\ you\ restart\ Jenkins=Nye plugins træder i kraft efter du har genstartet Jenkins +Uncheck\ to\ disable\ the\ plugin=Fjern flueben for at slÃ¥ plugin''et fra No\ plugins\ installed.=Ingen installerede plugins. downgradeTo=Nedgrader til {0} Name=Navn -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=\u00c6ndringer tr\u00e6der i kraft efter Jenkins er genstartet -Enabled=Sl\u00e5et til +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Ændringer træder i kraft efter Jenkins er genstartet +Enabled=SlÃ¥et til diff --git a/core/src/main/resources/hudson/PluginManager/installed_de.properties b/core/src/main/resources/hudson/PluginManager/installed_de.properties index 2148e128add3..2745acb84a34 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_de.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_de.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. No\ plugins\ installed.=Keine Plugins installiert. -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=\u00C4nderungen treten nach einem Neustart von Jenkins in Kraft. +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Änderungen treten nach einem Neustart von Jenkins in Kraft. Uncheck\ to\ disable\ the\ plugin=Zum Deaktivieren des Plugins Markierung entfernen Enabled=Aktiviert Name=Name @@ -33,12 +33,12 @@ Uninstall=Deinstallieren Uninstallation\ pending=Zur Deinstallation vorgemerkt Update\ Center=Update-Center This\ plugin\ cannot\ be\ disabled=Dieses Plugin kann nicht deaktiviert werden. -requires.restart=Jenkins erfordert einen Neustart. Die Plugin-Konfiguration sollte nicht weiter ge\u00E4ndert werden. Starten Sie Jenkins neu, bevor Sie fortfahren. -It\ has\ one\ or\ more\ installed\ dependents=Mindestens ein Plugin ist von diesem abh\u00E4ngig +requires.restart=Jenkins erfordert einen Neustart. Die Plugin-Konfiguration sollte nicht weiter geändert werden. Starten Sie Jenkins neu, bevor Sie fortfahren. +It\ has\ one\ or\ more\ installed\ dependents=Mindestens ein Plugin ist von diesem abhängig Warning=Warnung Filter=Filter -It\ has\ one\ or\ more\ enabled\ dependents=Mindestens ein aktives Plugin ist von diesem abh\u00E4ngig -It\ has\ one\ or\ more\ disabled\ dependencies=Mindestens eine Abh\u00E4ngigkeit ist deaktiviert +It\ has\ one\ or\ more\ enabled\ dependents=Mindestens ein aktives Plugin ist von diesem abhängig +It\ has\ one\ or\ more\ disabled\ dependencies=Mindestens eine Abhängigkeit ist deaktiviert This\ plugin\ cannot\ be\ uninstalled=Dieses Plugin kann nicht deinstalliert werden. -No\ description\ available.=Keine Beschreibung verf\u00FCgbar. +No\ description\ available.=Keine Beschreibung verfügbar. This\ plugin\ cannot\ be\ enabled=Dieses Plugin kann nicht aktiviert werden. diff --git a/core/src/main/resources/hudson/PluginManager/installed_es.properties b/core/src/main/resources/hudson/PluginManager/installed_es.properties index 34f849e78dcc..d6d38b6cb892 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_es.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_es.properties @@ -24,10 +24,10 @@ No\ plugins\ installed.=No hay plugins instalados Uncheck\ to\ disable\ the\ plugin=Desmarca la casilla para desactivar el plugin Enabled=Activados Name=Nombre -Version=Versión -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Los cambios no estarán disponibles hasta que Jenkins se reinicie -Restart\ Once\ No\ Jobs\ Are\ Running=Reiniciar cuando no haya tareas en ejecución +Version=Versión +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Los cambios no estarán disponibles hasta que Jenkins se reinicie +Restart\ Once\ No\ Jobs\ Are\ Running=Reiniciar cuando no haya tareas en ejecución downgradeTo=Bajar a la version {0}. -Previously\ installed\ version=Versión previamente instalada. +Previously\ installed\ version=Versión previamente instalada. Uninstall=Desinstalar Update\ Center=Centro de actualizaciones diff --git a/core/src/main/resources/hudson/PluginManager/installed_fi.properties b/core/src/main/resources/hudson/PluginManager/installed_fi.properties index 209c8d6e2d39..85c143657eb3 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_fi.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_fi.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Muutokset astuvat voimaan kun Jenkins k\u00E4ynnistet\u00E4\u00E4n +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Muutokset astuvat voimaan kun Jenkins käynnistetään Enabled=Aktivoitu Name=Nimi Previously\ installed\ version=Aiemmin asennettu versio -Restart\ Once\ No\ Jobs\ Are\ Running=K\u00E4ynnist\u00E4 heti kun k\u00E4\u00E4nn\u00F6ksi\u00E4 ei ole ajossa -Uncheck\ to\ disable\ the\ plugin=Poist ruudun rasti poistaaksesi liit\u00E4nn\u00E4inen k\u00E4yt\u00F6st\u00E4 +Restart\ Once\ No\ Jobs\ Are\ Running=Käynnistä heti kun käännöksiä ei ole ajossa +Uncheck\ to\ disable\ the\ plugin=Poist ruudun rasti poistaaksesi liitännäinen käytöstä Version=Versio downgradeTo=Palaa versioon {0} diff --git a/core/src/main/resources/hudson/PluginManager/installed_fr.properties b/core/src/main/resources/hudson/PluginManager/installed_fr.properties index b3767a6e65ec..f57462593194 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_fr.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_fr.properties @@ -20,14 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ plugins\ installed.=Aucun plugin n''est install\u00e9. -New\ plugins\ will\ take\ effect\ once\ you\ restart\ Jenkins=Les nouveaux plugins seront pris en compte apr\u00e8s un red\u00e9marrage de Jenkins -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Les changements seront pris en compte apr\u00e8s un red\u00e9marrage de Jenkins -Restart\ Once\ No\ Jobs\ Are\ Running=Red\u00E9marrer quand tous les travaux sont finis -Uncheck\ to\ disable\ the\ plugin=D\u00e9cochez pour d\u00e9sactiver le plugin -Enabled=Activ\u00e9 +No\ plugins\ installed.=Aucun plugin n''est installé. +New\ plugins\ will\ take\ effect\ once\ you\ restart\ Jenkins=Les nouveaux plugins seront pris en compte après un redémarrage de Jenkins +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Les changements seront pris en compte après un redémarrage de Jenkins +Restart\ Once\ No\ Jobs\ Are\ Running=Redémarrer quand tous les travaux sont finis +Uncheck\ to\ disable\ the\ plugin=Décochez pour désactiver le plugin +Enabled=Activé Name=Nom -Uninstall=D\u00E9sinstaller +Uninstall=Désinstaller Version=Version -Previously\ installed\ version=Version pr\u00E9c\u00E9dente -downgradeTo=R\u00E9trograder \u00E0 {0} +Previously\ installed\ version=Version précédente +downgradeTo=Rétrograder à {0} diff --git a/core/src/main/resources/hudson/PluginManager/installed_hu.properties b/core/src/main/resources/hudson/PluginManager/installed_hu.properties index a71aafe3567e..06592354a416 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_hu.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_hu.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=A v\u00E1ltoztat\u00E1sok \u00E9rv\u00E9nyes\u00EDt\u00E9s\u00E9hez ind\u00EDtsa \u00FAjra a Jenkinst -Enabled=Enged\u00E9lyezett -Name=N\u00E9v -Previously\ installed\ version=Kor\u00E1bban telep\u00EDtett verzi\u00F3 -Restart\ Once\ No\ Jobs\ Are\ Running=\u00DAjraind\u00EDt\u00E1s ha m\u00E1r nincs fut\u00F3 folyamat -Uncheck\ to\ disable\ the\ plugin=T\u00F6r\u00F6lje a jel\u00F6l\u00E9st a be\u00E9p\u00FCl\u0151 kikapcsol\u00E1s\u00E1hoz -Version=Verzi\u00F3 -downgradeTo=Visszafriss\u00EDt\u00E9s {0} verzi\u00F3ra +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=A változtatások érvényesítéséhez indítsa újra a Jenkinst +Enabled=Engedélyezett +Name=Név +Previously\ installed\ version=Korábban telepített verzió +Restart\ Once\ No\ Jobs\ Are\ Running=Újraindítás ha már nincs futó folyamat +Uncheck\ to\ disable\ the\ plugin=Törölje a jelölést a beépülÅ‘ kikapcsolásához +Version=Verzió +downgradeTo=Visszafrissítés {0} verzióra diff --git a/core/src/main/resources/hudson/PluginManager/installed_it.properties b/core/src/main/resources/hudson/PluginManager/installed_it.properties index 8f05449f2de9..7336418ab29c 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_it.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,7 +21,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -adoptThisPlugin=Questo componente aggiuntivo è pronto per \ +adoptThisPlugin=Questo componente aggiuntivo è pronto per \ l''adozione! Stiamo cercando nuovi manutentori. Visitare la pagina \ dell''iniziativa Adotta un componente aggiuntivo per ulteriori \ @@ -30,7 +30,7 @@ Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Le modifiche \ avranno effetto al riavvio di Jenkins detached-disable=Potrebbe non essere sicuro disabilitare questo componente \ aggiuntivo -detached-possible-dependents=La sua funzionalità a un certo punto è stata \ +detached-possible-dependents=La sua funzionalità a un certo punto è stata \ rimossa dal core di Jenkins e un altro componente aggiuntivo con una \ dipendenza dal core dichiarata prima della rimozione potrebbe dipendere \ implicitamente da questo componente. @@ -39,30 +39,30 @@ detached-uninstall=Potrebbe non essere sicuro disinstallare questo componente \ downgradeTo=Esegui il downgrade alla versione {0} Enabled=Abilitato filter=Filtra -It\ has\ one\ or\ more\ enabled\ dependents=Ha uno o più componenti \ +It\ has\ one\ or\ more\ enabled\ dependents=Ha uno o più componenti \ aggiuntivi dipendenti abilitati -It\ has\ one\ or\ more\ installed\ dependents=Ha uno o più componenti \ +It\ has\ one\ or\ more\ installed\ dependents=Ha uno o più componenti \ aggiuntivi dipendenti installati -It\ has\ one\ or\ more\ unsatisfied\ dependencies=Ha una o più dipendenze non \ +It\ has\ one\ or\ more\ unsatisfied\ dependencies=Ha una o più dipendenze non \ soddisfatte Name=Nome No\ description\ available.=Nessuna descrizione disponibile. No\ plugins\ installed.=Nessun componente aggiuntivo installato. Previously\ installed\ version=Versione precedentemente installata -requires.restart=Per quest''istanza di Jenkins è richiesto un riavvio. La \ - modifica dello stato dei componenti aggiuntivi in questo momento è \ +requires.restart=Per quest''istanza di Jenkins è richiesto un riavvio. La \ + modifica dello stato dei componenti aggiuntivi in questo momento è \ fortemente sconsigliata. Riavviare Jenkins prima di procedere. -Restart\ Once\ No\ Jobs\ Are\ Running=Riavvia quando non c''è nessun processo \ +Restart\ Once\ No\ Jobs\ Are\ Running=Riavvia quando non c''è nessun processo \ in esecuzione search=Cerca securityWarning=Avviso: potrebbe non essere sicuro utilizzare la versione \ attualmente installata del componente aggiuntivo. Leggere i seguenti \ bollettini di sicurezza: -This\ plugin\ cannot\ be\ disabled=Questo componente aggiuntivo non può \ +This\ plugin\ cannot\ be\ disabled=Questo componente aggiuntivo non può \ essere disabilitato -This\ plugin\ cannot\ be\ enabled=Questo componente aggiuntivo non può \ +This\ plugin\ cannot\ be\ enabled=Questo componente aggiuntivo non può \ essere abilitato -This\ plugin\ cannot\ be\ uninstalled=Questo componente aggiuntivo non può \ +This\ plugin\ cannot\ be\ uninstalled=Questo componente aggiuntivo non può \ essere disinstallato Uncheck\ to\ disable\ the\ plugin=Deselezionare per disabilitare il \ componente aggiuntivo diff --git a/core/src/main/resources/hudson/PluginManager/installed_ja.properties b/core/src/main/resources/hudson/PluginManager/installed_ja.properties index 8e9aaf1ef60c..ab02fd3503d0 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_ja.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_ja.properties @@ -20,17 +20,17 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ plugins\ installed.=\u30d7\u30e9\u30b0\u30a4\u30f3\u306f\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002 -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Jenkins\u3092\u518d\u8d77\u52d5\u3059\u308b\u3068\u3001\u5909\u66f4\u304c\u53cd\u6620\u3055\u308c\u307e\u3059\u3002 -Uncheck\ to\ disable\ the\ plugin=\u30c1\u30a7\u30c3\u30af\u3092\u5916\u3057\u3066\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u7121\u52b9\u5316 -Enabled=\u6709\u52b9\u5316 -Name=\u540d\u524d -Version=\u30d0\u30fc\u30b8\u30e7\u30f3 -Restart\ Once\ No\ Jobs\ Are\ Running=\u30b8\u30e7\u30d6\u304c\u5b9f\u884c\u4e2d\u3067\u306a\u3051\u308c\u3070\u518d\u8d77\u52d5 -Previously\ installed\ version=\u524d\u56de\u30d0\u30fc\u30b8\u30e7\u30f3 -downgradeTo={0} \u306b\u30c0\u30a6\u30f3\u30b0\u30ec\u30fc\u30c9 -Update\ Center=\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u30bb\u30f3\u30bf\u30fc -Filter=\u30d5\u30a3\u30eb\u30bf\u30fc -No\ description\ available.=\u8aac\u660e\u304c\u3042\u308a\u307e\u305b\u3093\u3002 -Uninstall=\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb -Uninstallation\ pending=\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u5b9f\u884c\u5f85\u3061 +No\ plugins\ installed.=プラグインã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã¾ã›ã‚“。 +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Jenkinsã‚’å†èµ·å‹•ã™ã‚‹ã¨ã€å¤‰æ›´ãŒå映ã•ã‚Œã¾ã™ã€‚ +Uncheck\ to\ disable\ the\ plugin=ãƒã‚§ãƒƒã‚¯ã‚’外ã—ã¦ãƒ—ラグインを無効化 +Enabled=有効化 +Name=åå‰ +Version=ãƒãƒ¼ã‚¸ãƒ§ãƒ³ +Restart\ Once\ No\ Jobs\ Are\ Running=ジョブãŒå®Ÿè¡Œä¸­ã§ãªã‘ã‚Œã°å†èµ·å‹• +Previously\ installed\ version=å‰å›žãƒãƒ¼ã‚¸ãƒ§ãƒ³ +downgradeTo={0} ã«ãƒ€ã‚¦ãƒ³ã‚°ãƒ¬ãƒ¼ãƒ‰ +Update\ Center=アップデートセンター +Filter=フィルター +No\ description\ available.=説明ãŒã‚ã‚Šã¾ã›ã‚“。 +Uninstall=アンインストール +Uninstallation\ pending=アンインストール実行待㡠diff --git a/core/src/main/resources/hudson/PluginManager/installed_ko.properties b/core/src/main/resources/hudson/PluginManager/installed_ko.properties index 1d745838f474..8ea804fc994e 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_ko.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_ko.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Jenkins\uC744 \uC7AC\uC2DC\uC791\uD558\uBA74 \uBCC0\uACBD\uC0AC\uD56D\uC774 \uC801\uC6A9\uB429\uB2C8\uB2E4. -Enabled=\uC0AC\uC6A9\uAC00\uB2A5 -Name=\uC774\uB984 -Previously\ installed\ version=\uC774\uC804 \uC124\uCE58 \uBC84\uC804 -Restart\ Once\ No\ Jobs\ Are\ Running=\uB3D9\uC791\uC911\uC778 \uC791\uC5C5\uC774 \uC5C6\uC73C\uBA74 \uD55C\uBC88 \uC7AC\uAE30\uB3D9\uD569\uB2C8\uB2E4. -Uncheck\ to\ disable\ the\ plugin=\uC0AC\uC6A9\uBD88\uAC00 \uD50C\uB7EC\uADF8\uC778 \uCCB4\uD06C\uD574\uC81C -Uninstall=\uC124\uCE58 \uC81C\uAC70 -Uninstallation\ pending=\uC0AD\uC81C \uB300\uAE30 -Version=\uBC84\uC804 -downgradeTo={0}\uC73C\uB85C \uB2E4\uC6B4\uADF8\uB808\uC774\uB4DC +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Jenkinsì„ ìž¬ì‹œìž‘í•˜ë©´ ë³€ê²½ì‚¬í•­ì´ ì ìš©ë©ë‹ˆë‹¤. +Enabled=사용가능 +Name=ì´ë¦„ +Previously\ installed\ version=ì´ì „ 설치 버전 +Restart\ Once\ No\ Jobs\ Are\ Running=ë™ìž‘ì¤‘ì¸ ìž‘ì—…ì´ ì—†ìœ¼ë©´ 한번 재기ë™í•©ë‹ˆë‹¤. +Uncheck\ to\ disable\ the\ plugin=사용불가 í”ŒëŸ¬ê·¸ì¸ ì²´í¬í•´ì œ +Uninstall=설치 제거 +Uninstallation\ pending=ì‚­ì œ 대기 +Version=버전 +downgradeTo={0}으로 다운그레ì´ë“œ diff --git a/core/src/main/resources/hudson/PluginManager/installed_lt.properties b/core/src/main/resources/hudson/PluginManager/installed_lt.properties index 223d9bf44514..638b68ed28e8 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_lt.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_lt.properties @@ -1,9 +1,9 @@ # This file is under the MIT License by authors -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Pakeitimai \u012Fsigalios jums perstartavus Jenkins -Enabled=\u012Ejungtas +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Pakeitimai įsigalios jums perstartavus Jenkins +Enabled=Ä®jungtas Name=Pavadinimas -Previously\ installed\ version=Anks\u010Diau \u012Fdiegta versija -Restart\ Once\ No\ Jobs\ Are\ Running=Perstartuoti, kai nebus vykdom\u0173 darb\u0173 -Uncheck\ to\ disable\ the\ plugin=Nu\u017Eym\u0117kite, kad atjungtum\u0117te pried\u0105 +Previously\ installed\ version=AnksÄiau įdiegta versija +Restart\ Once\ No\ Jobs\ Are\ Running=Perstartuoti, kai nebus vykdomų darbų +Uncheck\ to\ disable\ the\ plugin=NužymÄ—kite, kad atjungtumÄ—te priedÄ… Version=Versija diff --git a/core/src/main/resources/hudson/PluginManager/installed_lv.properties b/core/src/main/resources/hudson/PluginManager/installed_lv.properties index 6539b07429a8..43ff0a827875 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_lv.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_lv.properties @@ -1,10 +1,10 @@ # This file is under the MIT License by authors -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Izmai\u0146as st\u0101sies sp\u0113k\u0101 p\u0113c Jenkins p\u0101rstart\u0113\u0161anas +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Izmaiņas stÄsies spÄ“kÄ pÄ“c Jenkins pÄrstartÄ“Å¡anas Enabled=Iespejots Name=Nosaukums -Previously\ installed\ version=Iepriek\u0161 instal\u0113t\u0101 versija -Restart\ Once\ No\ Jobs\ Are\ Running=P\u0101rstart\u0113 tikl\u012Bdz neviens uzdevums nestr\u0101d\u0101 -Uncheck\ to\ disable\ the\ plugin=At\u0137eks\u0113 lai atsp\u0113jotu spraudni -Uninstall=Atinstal\u0113t +Previously\ installed\ version=IepriekÅ¡ instalÄ“tÄ versija +Restart\ Once\ No\ Jobs\ Are\ Running=PÄrstartÄ“ tiklÄ«dz neviens uzdevums nestrÄdÄ +Uncheck\ to\ disable\ the\ plugin=AtÄ·eksÄ“ lai atspÄ“jotu spraudni +Uninstall=AtinstalÄ“t Version=Versija diff --git a/core/src/main/resources/hudson/PluginManager/installed_nb_NO.properties b/core/src/main/resources/hudson/PluginManager/installed_nb_NO.properties index 1c1b7f15a333..d552c2f0cea9 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_nb_NO.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_nb_NO.properties @@ -23,5 +23,5 @@ Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Endringer vil bli aktivert ved neste restart. Enabled=Aktivert Name=Navn -Uncheck\ to\ disable\ the\ plugin=Fjern avkryssing for \u00E5 deaktivere programtillegg +Uncheck\ to\ disable\ the\ plugin=Fjern avkryssing for Ã¥ deaktivere programtillegg Version=Versjon diff --git a/core/src/main/resources/hudson/PluginManager/installed_nl.properties b/core/src/main/resources/hudson/PluginManager/installed_nl.properties index 2133f18ddc80..cd61e96ae3b7 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_nl.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_nl.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ plugins\ installed.=Er werd nog geen enkele plugin ge\u00EFnstalleerd. +No\ plugins\ installed.=Er werd nog geen enkele plugin geïnstalleerd. New\ plugins\ will\ take\ effect\ once\ you\ restart\ Jenkins=Nieuw geregistreerde plugins worden pas actief na het herstarten van Jenkins. Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Uw wijzigingen zullen actief worden na het herstarten van Jenkins. Restart\ Once\ No\ Jobs\ Are\ Running=Opnieuw starten @@ -28,6 +28,6 @@ Uncheck\ to\ disable\ the\ plugin=Vink aan om de plugin te deactiveren. Enabled=Actief Name=Naam Version=Versie -Previously\ installed\ version=Vorige ge\u00EFnstalleerde versie +Previously\ installed\ version=Vorige geïnstalleerde versie Restart\ Now=Nu herstarten downgradeTo=Versie {0} terugzetten diff --git a/core/src/main/resources/hudson/PluginManager/installed_pl.properties b/core/src/main/resources/hudson/PluginManager/installed_pl.properties index 3b930c400462..f4437a4ed980 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_pl.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_pl.properties @@ -20,34 +20,34 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. Installed\ Plugins=Zainstalowane wtyczki -Plugin\ Manager=Mened\u017Cer wtyczek -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Zmiany zostan\u0105 wprowadzone po ponownym uruchomieniu Jenkinsa -Enabled=W\u0142\u0105czone wtyczki +Plugin\ Manager=Menedżer wtyczek +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Zmiany zostanÄ… wprowadzone po ponownym uruchomieniu Jenkinsa +Enabled=WÅ‚Ä…czone wtyczki Name=Nazwa Previously\ installed\ version=Poprzednia zainstalowana wersja -Restart\ Once\ No\ Jobs\ Are\ Running=Uruchom ponownie gdy \u017Cadne zadania nie s\u0105 wykonywane -Uncheck\ to\ disable\ the\ plugin=Odznacz aby wy\u0142\u0105czy\u0107 wtyczk\u0119 +Restart\ Once\ No\ Jobs\ Are\ Running=Uruchom ponownie gdy żadne zadania nie sÄ… wykonywane +Uncheck\ to\ disable\ the\ plugin=Odznacz aby wyÅ‚Ä…czyć wtyczkÄ™ Uninstall=Odinstaluj Version=Wersja -downgradeTo=Powr\u00F3\u0107 do wersji {0} -requires.restart=Wymagane jest ponowne uruchomienie Jenkinsa. Zmiany wtyczek w tym momencie s\u0105 bardzo niewskazane. Uruchom ponownie Jenkinsa, zanim wprowadzisz zmiany. +downgradeTo=Powróć do wersji {0} +requires.restart=Wymagane jest ponowne uruchomienie Jenkinsa. Zmiany wtyczek w tym momencie sÄ… bardzo niewskazane. Uruchom ponownie Jenkinsa, zanim wprowadzisz zmiany. Uninstallation\ pending=Trwa odinstalowywanie -detached-disable=Wy\u0142\u0105czenie tej wtyczki mo\u017Ce nie by\u0107 bezpieczne -This\ plugin\ cannot\ be\ enabled=Ta wtyczka nie mo\u017Ce by\u0107 w\u0142\u0105czona -This\ plugin\ cannot\ be\ disabled=Ta wtyczka nie mo\u017Ce by\u0107 wy\u0142\u0105czona -It\ has\ one\ or\ more\ enabled\ dependents=Ma jedn\u0105 lub wiele zainstalowanych zale\u017Cno\u015Bci -This\ plugin\ cannot\ be\ uninstalled=Ta wtyczka nie mo\u017Ce by\u0107 odinstalowana -It\ has\ one\ or\ more\ installed\ dependents=Ma jedn\u0105 lub wiele zainstalowanych zale\u017Cno\u015Bci +detached-disable=WyÅ‚Ä…czenie tej wtyczki może nie być bezpieczne +This\ plugin\ cannot\ be\ enabled=Ta wtyczka nie może być wÅ‚Ä…czona +This\ plugin\ cannot\ be\ disabled=Ta wtyczka nie może być wyÅ‚Ä…czona +It\ has\ one\ or\ more\ enabled\ dependents=Ma jednÄ… lub wiele zainstalowanych zależnoÅ›ci +This\ plugin\ cannot\ be\ uninstalled=Ta wtyczka nie może być odinstalowana +It\ has\ one\ or\ more\ installed\ dependents=Ma jednÄ… lub wiele zainstalowanych zależnoÅ›ci No\ plugins\ installed.=Brak zainstalowanych wtyczek Update\ Center=Centrum aktualizacji Filter=Filtruj -No\ description\ available.=Opis nie jest dost\u0119pny -Warning=Ostrze\u017Cenie -New\ plugins\ will\ take\ effect\ once\ you\ restart\ Jenkins=Nowe wtyczki zostan\u0105 w\u0142\u0105czone po ponownym uruchomieniu Jenkinsa. -detached-uninstall=Odinstalowanie tego rozszerzenia mo\u017Ce nie by\u0107 bezpieczne -detached-possible-dependents=Ta funkcjonalno\u015B\u0107 by\u0142a jedn\u0105 z tych, kt\u00F3re zosta\u0142y przeniesione z Jenkinsa, dlatego inne rozszerzenia mog\u0105 traktowa\u0107 j\u0105 jako bezpo\u015Brednia zale\u017Cno\u015B\u0107. -reportIssue=Zg\u0142o\u015B problem z t\u0105 wtyczk\u0105 -deprecationWarning=Ta wtyczka jest przestarza\u0142a. Najcz\u0119\u015Bciej oznacza to, \u017Ce jest przestarza\u0142a, ju\u017C nie rozwijana albo mo\u017Ce nie dzia\u0142a\u0107 poprawnie. Dowiedz si\u0119 wi\u0119cej. -securityWarning=Ostrze\u017Cenie: Zainstalowana wersja wtyczki mo\u017Ce nie by\u0107 bezpieczna. Zweryfikuj poni\u017Csze ostrze\u017Cenia dotycz\u0105ce bezpiecze\u0144stwa: -adoptThisPlugin=T\u0119 wtyczk\u0119 mo\u017Cna adoptowa\u0107! Szukamy nowych opiekun\u00F3w. \ - Sprawd\u017A nasz\u0105 inicjatyw\u0119 Adopt a Plugin aby dowiedzie\u0107 si\u0119 wi\u0119cej szczeg\u00F3\u0142\u00F3w. +No\ description\ available.=Opis nie jest dostÄ™pny +Warning=Ostrzeżenie +New\ plugins\ will\ take\ effect\ once\ you\ restart\ Jenkins=Nowe wtyczki zostanÄ… wÅ‚Ä…czone po ponownym uruchomieniu Jenkinsa. +detached-uninstall=Odinstalowanie tego rozszerzenia może nie być bezpieczne +detached-possible-dependents=Ta funkcjonalność byÅ‚a jednÄ… z tych, które zostaÅ‚y przeniesione z Jenkinsa, dlatego inne rozszerzenia mogÄ… traktować jÄ… jako bezpoÅ›rednia zależność. +reportIssue=ZgÅ‚oÅ› problem z tÄ… wtyczkÄ… +deprecationWarning=Ta wtyczka jest przestarzaÅ‚a. Najczęściej oznacza to, że jest przestarzaÅ‚a, już nie rozwijana albo może nie dziaÅ‚ać poprawnie. Dowiedz siÄ™ wiÄ™cej. +securityWarning=Ostrzeżenie: Zainstalowana wersja wtyczki może nie być bezpieczna. Zweryfikuj poniższe ostrzeżenia dotyczÄ…ce bezpieczeÅ„stwa: +adoptThisPlugin=TÄ™ wtyczkÄ™ można adoptować! Szukamy nowych opiekunów. \ + Sprawdź naszÄ… inicjatywÄ™ Adopt a Plugin aby dowiedzieć siÄ™ wiÄ™cej szczegółów. diff --git a/core/src/main/resources/hudson/PluginManager/installed_pt_BR.properties b/core/src/main/resources/hudson/PluginManager/installed_pt_BR.properties index a907122cd19e..2ef72bd70465 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_pt_BR.properties @@ -22,41 +22,41 @@ # THE SOFTWARE. No\ plugins\ installed.=Nenhum plugin instalado. -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=As mudan\u00E7as ter\u00E3o efeito quando o Jenkins for reiniciado +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=As mudanças terão efeito quando o Jenkins for reiniciado Enabled=Habilitar Restart\ Once\ No\ Jobs\ Are\ Running=Reiniciar assim que nenhuma tarefa estiver rodando Uninstall=Desinstalar -Version=Vers\u00E3o +Version=Versão Name=Nome downgradeTo=Regredir para {0} -No\ description\ available.=Nenhuma descri\u00E7\u00E3o dispon\u00EDvel -Uninstallation\ pending=Desinstala\u00E7\u00E3o pendente -detached-disable=Talvez n\u00E3o seja seguro desabilitar esta extens\u00E3o. -reportIssue=Relatar um problema com esta extens\u00E3o. +No\ description\ available.=Nenhuma descrição disponível +Uninstallation\ pending=Desinstalação pendente +detached-disable=Talvez não seja seguro desabilitar esta extensão. +reportIssue=Relatar um problema com esta extensão. Warning=Aviso -Installed\ plugins=Extens\u00F5es instaladas +Installed\ plugins=Extensões instaladas adoptThisPlugin=\ - Esta extens\u00E3o est\u00E1 dispon\u00EDvel para ado\u00E7\u00E3o! N\u00F3s estamos procurando por novos mantenedores. Visite a \ + Esta extensão está disponível para adoção! Nós estamos procurando por novos mantenedores. Visite a \ nossa iniciativa Adopt a Plugin para maiores informa\u00E7\u00F5es. -This\ plugin\ cannot\ be\ uninstalled=Esta\ extens\u00E3o\ n\u00E3o\ pode\ ser\ desinstalada -detached-possible-dependents=Sua funcionalidade a um ponto foi movida para fora do n\u00FAcleo do Jenkins e outra extens\u00E3o \ - com uma depend\u00EAncia do n\u00FAcleo anterior a divis\u00E3o pode depender dela implicitamente. -Installed\ Plugins=Extens\u00F5es instaladas -Plugin\ Manager=Gerenciador de extens\u00F5es -detached-many-dependents=Existem {0} extens\u00F5es instaladas com uma depend\u00EAncia impl\u00EDcita. + rel="noopener noreferrer" target="_blank">Adopt a Plugin para maiores informações. +This\ plugin\ cannot\ be\ uninstalled=Esta\ extensão\ não\ pode\ ser\ desinstalada +detached-possible-dependents=Sua funcionalidade a um ponto foi movida para fora do núcleo do Jenkins e outra extensão \ + com uma dependência do núcleo anterior a divisão pode depender dela implicitamente. +Installed\ Plugins=Extensões instaladas +Plugin\ Manager=Gerenciador de extensões +detached-many-dependents=Existem {0} extensões instaladas com uma dependência implícita. It\ has\ one\ or\ more\ installed\ dependents=Tem\ um\ ou\ mais\ dependentes\ instalados -It\ has\ one\ or\ more\ unsatisfied\ dependencies=Tem\ uma\ ou\ mais\ depend\u00EAncias\ n\u00E3o\ satisfeitas +It\ has\ one\ or\ more\ unsatisfied\ dependencies=Tem\ uma\ ou\ mais\ dependências\ não\ satisfeitas securityWarning= \ - Aviso: a vers\u00E3o atualmente instalada da extens\u00E3o pode n\u00E3o ser segura para uso. Por favor revise os seguintes avisos \ - de seguran\u00E7a: -deprecationWarning=Esta extens\u00E3o est\u00E1 descontinuada. Em geral isto significa que ela est\u00E1 ou \ - obsoleta, que n\u00E3o possui mais desenvolvimento ativo ou pode n\u00E3o mais funcionar. Saiba mais. -This\ plugin\ cannot\ be\ disabled=Esta\ extens\u00E3o\ n\u00E3o\ pode\ ser\ desabilitada +This\ plugin\ cannot\ be\ disabled=Esta\ extensão\ não\ pode\ ser\ desabilitada It\ has\ one\ or\ more\ enabled\ dependents=Tem\ um\ ou\ mais\ dependentes\ habilitados -requires.restart=Esta inst\u00E2ncia do Jenkins precisa ser reiniciada. Mudar o estado de extens\u00F5es neste momento \u00E9 \ +requires.restart=Esta instância do Jenkins precisa ser reiniciada. Mudar o estado de extensões neste momento é \ fortemente desencorajado. Reinicie o Jenkins antes de proceder. -detached-uninstall=Pode n\u00E3o ser seguro desinstalar esta extens\u00E3o +detached-uninstall=Pode não ser seguro desinstalar esta extensão Search=Busca -This\ plugin\ cannot\ be\ enabled=Esta\ extens\u00E3o\ n\u00E3o\ pode\ ser\ habilitada +This\ plugin\ cannot\ be\ enabled=Esta\ extensão\ não\ pode\ ser\ habilitada diff --git a/core/src/main/resources/hudson/PluginManager/installed_pt_PT.properties b/core/src/main/resources/hudson/PluginManager/installed_pt_PT.properties index e4464f490025..0b4a99e6ab7b 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_pt_PT.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_pt_PT.properties @@ -1,11 +1,11 @@ # This file is under the MIT License by authors -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=As altera\u00E7\u00F5es ser\u00E3o aplicadas quando reiniciares o Jenkins +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=As alterações serão aplicadas quando reiniciares o Jenkins Enabled=Ativado Name=Nome -Previously\ installed\ version=\u00DAltima vers\u00E3o instalada -Restart\ Once\ No\ Jobs\ Are\ Running=Reiniciar quando n\u00E3o estiverem Jobs em execu\u00E7\u00E3o +Previously\ installed\ version=Última versão instalada +Restart\ Once\ No\ Jobs\ Are\ Running=Reiniciar quando não estiverem Jobs em execução Uncheck\ to\ disable\ the\ plugin=Seleccione para desactivar o plugin Uninstall=Desinstalar -Version=Vers\u00E3o +Version=Versão downgradeTo=Downgrade para {0} diff --git a/core/src/main/resources/hudson/PluginManager/installed_ro.properties b/core/src/main/resources/hudson/PluginManager/installed_ro.properties index a0fc137d0938..7e95d70bd9a4 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_ro.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_ro.properties @@ -1,10 +1,10 @@ # This file is under the MIT License by authors -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Schimb\u0103rile vor avea efect c\u00E2nd ve\u021Bi reporni Jenkins +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Schimbările vor avea efect când veÈ›i reporni Jenkins Enabled=Activat Name=Denumire -Previously\ installed\ version=Versiunea instalat\u0103 anterior -Restart\ Once\ No\ Jobs\ Are\ Running=Reporne\u0219te odat\u0103 ce nu mai sunt joburi ce ruleaz\u0103 -Uncheck\ to\ disable\ the\ plugin=Debifa\u021Bi pentru a dezactiva pluginul +Previously\ installed\ version=Versiunea instalată anterior +Restart\ Once\ No\ Jobs\ Are\ Running=ReporneÈ™te odată ce nu mai sunt joburi ce rulează +Uncheck\ to\ disable\ the\ plugin=DebifaÈ›i pentru a dezactiva pluginul Version=Versiune -downgradeTo=Retrogradeaz\u0103 la +downgradeTo=Retrogradează la diff --git a/core/src/main/resources/hudson/PluginManager/installed_ru.properties b/core/src/main/resources/hudson/PluginManager/installed_ru.properties index 02ece9626713..64d8eb88c7b7 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_ru.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_ru.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432\u0441\u0442\u0443\u043f\u044f\u0442 \u0432 \u0441\u0438\u043b\u0443 \u043f\u043e\u0441\u043b\u0435 \u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 Jenkins -Enabled=\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0439 -Name=\u041d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435 -Previously\ installed\ version=\u0420\u0430\u043d\u0435\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0432\u0435\u0440\u0441\u0438\u0438 -Restart\ Once\ No\ Jobs\ Are\ Running=\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043f\u043e\u0441\u043b\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u0438 \u0432\u0441\u0435\u0445 \u0437\u0430\u0434\u0430\u0447 -Uncheck\ to\ disable\ the\ plugin=\u0421\u043d\u0438\u043c\u0438\u0442\u0435 \u0444\u043b\u0430\u0436\u043e\u043a, \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043b\u0430\u0433\u0438\u043d -Uninstall=\u0423\u0434\u0430\u043b\u0438\u0442\u044c -Uninstallation\ pending=\u041e\u0436\u0438\u0434\u0430\u043d\u0438\u0435 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u044f... -Version=\u0412\u0435\u0440\u0441\u0438\u044f -downgradeTo=\u0412\u0435\u0440\u043d\u0443\u0442\u044c \u043a \u0432\u0435\u0440\u0441\u0438\u0438 {0} +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Ð˜Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð²ÑтупÑÑ‚ в Ñилу поÑле перезагрузки Jenkins +Enabled=Ðктивный +Name=Ðаименование +Previously\ installed\ version=Ранее уÑтановленные верÑии +Restart\ Once\ No\ Jobs\ Are\ Running=ПерезапуÑтить поÑле завершении вÑех задач +Uncheck\ to\ disable\ the\ plugin=Снимите флажок, чтобы выключить плагин +Uninstall=Удалить +Uninstallation\ pending=Ожидание удалениÑ... +Version=ВерÑÐ¸Ñ +downgradeTo=Вернуть к верÑии {0} diff --git a/core/src/main/resources/hudson/PluginManager/installed_sk.properties b/core/src/main/resources/hudson/PluginManager/installed_sk.properties index a8be79712009..1df67b384e16 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_sk.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_sk.properties @@ -1,11 +1,11 @@ # This file is under the MIT License by authors -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Zmeny sa prejavia po re\u0161tarte Jenkins -Enabled=Povolen\u00E9 +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Zmeny sa prejavia po reÅ¡tarte Jenkins +Enabled=Povolené Name=Meno -Previously\ installed\ version=Predch\u00E1dzaj\u00FAca verzia -Restart\ Once\ No\ Jobs\ Are\ Running=Re\u0161tartuj ked nebud\u00FA be\u017Ea\u0165 \u017Eiadne zostavenia -Uncheck\ to\ disable\ the\ plugin=Odzna\u010Den\u00EDm zak\u00E1\u017Eete plugin -Uninstall=Odin\u0161taluj -Uninstallation\ pending=Odin\u0161tal\u00E1cia \u010Dak\u00E1 +Previously\ installed\ version=Predchádzajúca verzia +Restart\ Once\ No\ Jobs\ Are\ Running=ReÅ¡tartuj ked nebudú bežaÅ¥ žiadne zostavenia +Uncheck\ to\ disable\ the\ plugin=OdznaÄením zakážete plugin +Uninstall=OdinÅ¡taluj +Uninstallation\ pending=OdinÅ¡talácia Äaká Version=Verzia diff --git a/core/src/main/resources/hudson/PluginManager/installed_sr.properties b/core/src/main/resources/hudson/PluginManager/installed_sr.properties index 0d54c1472d9e..8f12234fb40c 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_sr.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_sr.properties @@ -1,26 +1,26 @@ # This file is under the MIT License by authors -Update\ Center=\u0426\u0435\u043D\u0442\u0430\u0440 \u0437\u0430 \u0410\u0436\u0443\u0440\u0438\u0440\u0430\u045A\u0435 -Filter=\u041F\u0440\u043E\u0444\u0438\u043B\u0442\u0440\u0438\u0440\u0430\u0458 -Warning=\u0423\u043F\u043E\u0437\u043E\u0440\u0435\u045A\u0435 -requires.restart=\u041F\u043E\u0442\u0440\u0435\u0431\u043D\u043E \u0458\u0435 \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u0438 Jenkins. \u041E\u043F\u0430\u0441\u043D\u043E \u0458\u0435 \u043C\u0435\u045A\u0430\u0442\u0438 \u043C\u043E\u0434\u0443\u043B\u0435 \u0443 \u043E\u0432\u043E \u0432\u0440\u0435\u043C\u0435 - \u043F\u043E\u043D\u043E\u0432\u043E Jenkins \u043F\u0440\u0435 \u043D\u0435\u0433\u043E \u0448\u0442\u043E \u0434\u0435\u043B\u0443\u0458\u0435\u0442\u0435 \u0434\u0430\u0459\u0435. -This\ plugin\ cannot\ be\ enabled=\u041E\u0432\u0430 \u043C\u043E\u0434\u0443\u043B\u0430 \u043D\u0435\u043C\u043E\u0436\u0435 \u0431\u0438\u0442\u0438 \u043E\u043C\u043E\u0433\u0443\u045B\u0435\u043D\u0430 -This\ plugin\ cannot\ be\ disabled=\u041E\u0432\u0430 \u043C\u043E\u0434\u0443\u043B\u0430 \u043D\u0435\u043C\u043E\u0436\u0435 \u0431\u0438\u0442\u0438 \u043E\u043D\u0435\u043C\u043E\u0433\u0443\u045B\u0435\u043D\u0430 -This\ plugin\ cannot\ be\ uninstalled=\u041E\u0432\u0430 \u043C\u043E\u0434\u0443\u043B\u0430 \u043D\u0435\u043C\u043E\u0436\u0435 \u0432\u0438\u0442\u0438 \u0434\u0435\u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u0430 -It\ has\ one\ or\ more\ disabled\ dependencies=\u041F\u043E\u0441\u0442\u043E\u0458\u0438 \u043D\u0430\u0458\u043C\u0430\u045A\u0435 \u0458\u0435\u0434\u043D\u0430 \u0438\u0441\u043A\u0459\u0443\u0447\u0435\u043D\u0430 \u043C\u043E\u0434\u0443\u043B\u0430 \u043E\u0434 \u043A\u043E\u0458\u0435 \u043E\u0432\u0430 \u0437\u0430\u0432\u0438\u0441\u0438 -It\ has\ one\ or\ more\ enabled\ dependents=\u041F\u043E\u0441\u0442\u043E\u0458\u0438 \u043D\u0430\u0458\u043C\u0430\u045A\u0435 \u0458\u0435\u043D\u0434\u0430 \u0434\u0440\u0443\u0433\u0430 \u043C\u043E\u0434\u0443\u043B\u0430 \u043A\u043E\u0458\u0430 \u0437\u0430\u0432\u0438\u0441\u0438 \u043E\u0434 \u045A\u0435 -It\ has\ one\ or\ more\ installed\ dependents=\u041F\u043E\u0441\u0442\u043E\u0458\u0438 \u043D\u0430\u0458\u043C\u0430\u045A\u0435 \u0458\u0435\u043D\u0434\u0430 \u0434\u0440\u0443\u0433\u0430 \u043C\u043E\u0434\u0443\u043B\u0430 \u043A\u043E\u0458\u0430 \u0437\u0430\u0432\u0438\u0441\u0438 \u043E\u0434 \u045A\u0435 -No\ plugins\ installed.=\u041D\u0435\u043C\u0430 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u0438\u0445 \u043C\u043E\u0434\u0443\u043B\u0430 -Uncheck\ to\ disable\ the\ plugin=\u0423\u043A\u043B\u043E\u043D\u0438\u0442\u0435 \u043A\u0432\u0430\u0447\u0438\u0446\u0443 \u0434\u0430 \u043E\u043D\u0435\u043C\u043E\u0433\u0443\u045B\u0438\u0442\u0435 \u043C\u043E\u0434\u0443\u043B\u0443 -Enabled=\u0410\u043A\u0442\u0438\u043D\u0432\u043E -Name=\u0418\u043C\u0435 -Version=\u0412\u0435\u0440\u0437\u0438\u0458\u0430 -Previously\ installed\ version=\u041F\u0440\u0435\u0442\u0445\u043E\u0434\u043D\u043E \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u0430 \u0432\u0435\u0440\u0437\u0438\u0458\u0430 -Uninstall=\u0414\u0435\u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430 -No\ description\ available.=\u041D\u0435\u043C\u0430 \u043E\u043F\u0438\u0441\u0430 -downgradeTo=\u0412\u0440\u0430\u0442\u0438 \u0432\u0435\u0440\u0437\u0438\u0458\u0443 \u043D\u0430\u0437\u0430\u0434 \u043D\u0430 {0} -Uninstallation\ pending=\u0414\u0435\u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430 \u0458\u0435 \u0443 \u0442\u043E\u043A\u0443 -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=\u041F\u0440\u043E\u043C\u0435\u043D\u0435 \u045B\u0435 \u0441\u0442\u0443\u043F\u0438\u0442\u0438 \u043D\u0430\u043A\u043E\u043D \u043F\u043E\u043D\u043E\u0432\u043D\u043E\u0433 \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0430 Jenkins -Restart\ Once\ No\ Jobs\ Are\ Running=\u041F\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0442\u0438 \u043A\u0430\u0434 \u043D\u0435 \u0431\u0443\u0434\u0435 \u0431\u0438\u043B\u043E \u0442\u0435\u043A\u0443\u045B\u0438\u0445 \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0430. -New\ plugins\ will\ take\ effect\ once\ you\ restart\ Jenkins=\u041D\u043E\u0432\u0435 \u043C\u043E\u0434\u0443\u043B\u0435 \u045B\u0435 \u0441\u0442\u0443\u043F\u0438\u0442\u0438 \u043D\u0430\u043A\u043E\u043D \u043F\u043E\u043D\u043E\u0432\u043E\u0433 \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0430 -Restart\ Now=\u041F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0438 \u0441\u0430\u0434\u0430 +Update\ Center=Центар за Ðжурирање +Filter=Профилтрирај +Warning=Упозорење +requires.restart=Потребно је поново покренути Jenkins. ОпаÑно је мењати модуле у ово време - поново Jenkins пре него што делујете даље. +This\ plugin\ cannot\ be\ enabled=Ова модула неможе бити омогућена +This\ plugin\ cannot\ be\ disabled=Ова модула неможе бити онемогућена +This\ plugin\ cannot\ be\ uninstalled=Ова модула неможе вити деинÑталирана +It\ has\ one\ or\ more\ disabled\ dependencies=ПоÑтоји најмање једна иÑкључена модула од које ова завиÑи +It\ has\ one\ or\ more\ enabled\ dependents=ПоÑтоји најмање јенда друга модула која завиÑи од ње +It\ has\ one\ or\ more\ installed\ dependents=ПоÑтоји најмање јенда друга модула која завиÑи од ње +No\ plugins\ installed.=Ðема инÑталираних модула +Uncheck\ to\ disable\ the\ plugin=Уклоните квачицу да онемогућите модулу +Enabled=Ðктинво +Name=Име +Version=Верзија +Previously\ installed\ version=Претходно инÑталирана верзија +Uninstall=ДеинÑталација +No\ description\ available.=Ðема опиÑа +downgradeTo=Врати верзију назад на {0} +Uninstallation\ pending=ДеинÑталација је у току +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Промене ће Ñтупити након поновног покретања Jenkins +Restart\ Once\ No\ Jobs\ Are\ Running=Пново покренти кад не буде било текућих задатака. +New\ plugins\ will\ take\ effect\ once\ you\ restart\ Jenkins=Ðове модуле ће Ñтупити након поновог покретања +Restart\ Now=Поново покрени Ñада diff --git a/core/src/main/resources/hudson/PluginManager/installed_sv_SE.properties b/core/src/main/resources/hudson/PluginManager/installed_sv_SE.properties index 45194bfc2994..cfd25a9bfd56 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_sv_SE.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_sv_SE.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=\u00C4ndringar tr\u00E4der i kraft n\u00E4r du startar om Jenkins +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Ändringar träder i kraft när du startar om Jenkins Enabled=Aktiverad Name=Namn Previously\ installed\ version=Tidigare installerad version -Restart\ Once\ No\ Jobs\ Are\ Running=Starta om n\u00E4r inga jobb k\u00F6rs -Uncheck\ to\ disable\ the\ plugin=Kryssa ur f\u00F6r att inaktivera pluginen +Restart\ Once\ No\ Jobs\ Are\ Running=Starta om när inga jobb körs +Uncheck\ to\ disable\ the\ plugin=Kryssa ur för att inaktivera pluginen Version=Version downgradeTo=Nedgradera till {0} diff --git a/core/src/main/resources/hudson/PluginManager/installed_tr.properties b/core/src/main/resources/hudson/PluginManager/installed_tr.properties index f99b752ca625..8a1c44d76b40 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_tr.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_tr.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ plugins\ installed.=Herhangi bir eklenti kurulu de\u011fil -Previously\ installed\ version=\u00D6nceki y\u00FCklenen versiyon -Uncheck\ to\ disable\ the\ plugin=Eklentiyi devre d\u0131\u015f\u0131 b\u0131rakmak i\u00e7in yan\u0131ndaki i\u015fareti kald\u0131r +No\ plugins\ installed.=Herhangi bir eklenti kurulu deÄŸil +Previously\ installed\ version=Önceki yüklenen versiyon +Uncheck\ to\ disable\ the\ plugin=Eklentiyi devre dışı bırakmak için yanındaki iÅŸareti kaldır Enabled=Devrede -Name=\u0130sim -Uninstall=Kald\u0131r +Name=Ä°sim +Uninstall=Kaldır Version=Versiyon -New\ plugins\ will\ take\ effect\ once\ you\ restart\ Jenkins=Yeni eklentiler Jenkins'i bir kere yeniden ba\u015flatt\u0131ktan sonra devreye girecektir -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=De\u011fi\u015fiklikler Jenkins'i yeniden ba\u015flatt\u0131ktan sonra devreye girecektir -downgradeTo={0} s\u00FCr\u00FCm\u00FCne al\u00E7alt +New\ plugins\ will\ take\ effect\ once\ you\ restart\ Jenkins=Yeni eklentiler Jenkins'i bir kere yeniden baÅŸlattıktan sonra devreye girecektir +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=DeÄŸiÅŸiklikler Jenkins'i yeniden baÅŸlattıktan sonra devreye girecektir +downgradeTo={0} sürümüne alçalt diff --git a/core/src/main/resources/hudson/PluginManager/installed_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/installed_zh_TW.properties index de0f215f13c4..93155b0f3e8e 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_zh_TW.properties @@ -20,37 +20,37 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -downgradeTo=\u964d\u7248\u6210 {0} -requires.restart=\u6b64 Jenkins \u57f7\u884c\u500b\u9ad4\u9700\u8981\u91cd\u65b0\u555f\u52d5\u3002\u5f37\u70c8\u5efa\u8b70\u60a8\u4e0d\u8981\u5728\u6b64\u6642\u8b8a\u66f4\u5916\u639b\u7684\u72c0\u614b\u3002\u8acb\u5728\u64cd\u4f5c\u524d\u91cd\u65b0\u555f\u52d5 Jenkins\u3002 -detached-disable=\u53ef\u80fd\u7121\u6cd5\u5b89\u5168\u5730\u505c\u7528\u6b64\u5916\u639b -detached-uninstall=\u53ef\u80fd\u7121\u6cd5\u5b89\u5168\u5730\u89e3\u9664\u5b89\u88dd\u6b64\u5916\u639b -detached-possible-dependents=\u5b83\u7684\u529f\u80fd\u66fe\u4e00\u5ea6\u5f9e Jenkins \u6838\u5fc3\u4e2d\u79fb\u51fa\uff0c\u800c\u53e6\u4e00\u500b\u5728\u62c6\u5206\u524d\u76f8\u4f9d\u65bc\u6838\u5fc3\u7684\u5916\u639b\u53ef\u80fd\u6703\u96b1\u542b\u5730\u4f9d\u8cf4\u5b83\u3002 -detached-many-dependents={0} \u500b\u5916\u639b\u6709\u5df2\u5b89\u88dd\u7684\u96b1\u542b\u76f8\u4f9d\u6027\u3002 -deprecationWarning=\u6b64\u5916\u639b\u5df2\u68c4\u7528\u3002\u9019\u901a\u5e38\u8868\u793a\u5b83\u53ef\u80fd\u5df2\u904e\u6642\u3001\u4e0d\u518d\u7e7c\u7e8c\u958b\u767c\u3001\u4e0d\u518d\u6b63\u5e38\u904b\u4f5c\u7b49\u3002\u4e86\u89e3\u66f4\u591a\u3002 -securityWarning=\u8b66\u544a\: \u76ee\u524d\u5b89\u88dd\u7684\u5916\u639b\u7248\u672c\u7528\u8d77\u4f86\u53ef\u80fd\u4e0d\u5b89\u5168\u3002\u8acb\u67e5\u770b\u4e0b\u5217\u5b89\u5168\u6027\u9808\u77e5\: -adoptThisPlugin=\u6b64\u5916\u639b\u958b\u653e\u8a8d\u990a\uff01\u6211\u5011\u6b63\u5728\u5c0b\u627e\u65b0\u7684\u7dad\u8b77\u8005\uff0c\u8acb\u9020\u8a2a Adopt a Plugin \u53d6\u5f97\u66f4\u591a\u8cc7\u8a0a\u3002 -reportIssue=\u56de\u5831\u6b64\u5916\u639b\u7684\u554f\u984c -Update\ Center=\u66f4\u65b0\u4e2d\u5fc3 -No\ plugins\ installed.=\u6c92\u6709\u5b89\u88dd\u4efb\u4f55\u5916\u639b\u7a0b\u5f0f\u3002 -Uncheck\ to\ disable\ the\ plugin=\u53d6\u6d88\u6838\u53d6\u4ee5\u505c\u7528\u5916\u639b -Enabled=\u5df2\u555f\u7528 -Name=\u540d\u7a31 -Version=\u7248\u672c -Previously\ installed\ version=\u524d\u4e00\u5b89\u88dd\u7248\u672c -Uninstallation\ pending=\u89e3\u9664\u5b89\u88dd\u4f5c\u696d\u64f1\u7f6e\u4e2d -Uninstall=\u89e3\u9664\u5b89\u88dd -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=\u91cd\u65b0\u555f\u52d5 Jenkins \u5f8c\u8b8a\u66f4\u5c31\u6703\u751f\u6548 -Restart\ Once\ No\ Jobs\ Are\ Running=\u7576\u6c92\u6709\u4f5c\u696d\u5728\u57f7\u884c\u6642\u91cd\u65b0\u555f\u52d5 -This\ plugin\ cannot\ be\ enabled=\u7121\u6cd5\u555f\u7528\u6b64\u5916\u639b -Installed\ Plugins=\u5df2\u5b89\u88dd\u7684\u5916\u639b -Installed\ plugins=\u5df2\u5b89\u88dd\u7684\u5916\u639b -It\ has\ one\ or\ more\ installed\ dependents=\u6709\u5df2\u5b89\u88dd\u7684\u5916\u639b\u76f8\u4f9d\u65bc\u5b83 -No\ description\ available.=\u6c92\u6709\u8aaa\u660e\u8cc7\u8a0a\u3002 -Search=\u641c\u5c0b -Filter=\u7be9\u9078 -Plugin\ Manager=\u5916\u639b\u7e3d\u7ba1 -This\ plugin\ cannot\ be\ disabled=\u7121\u6cd5\u505c\u7528\u6b64\u5916\u639b -It\ has\ one\ or\ more\ enabled\ dependents=\u6709\u5df2\u555f\u7528\u7684\u5916\u639b\u76f8\u4f9d\u65bc\u5b83 -Warning=\u8b66\u544a -It\ has\ one\ or\ more\ unsatisfied\ dependencies=\u5b83\u6709\u672a\u6eff\u8db3\u7684\u76f8\u4f9d\u6027 -This\ plugin\ cannot\ be\ uninstalled=\u7121\u6cd5\u89e3\u9664\u5b89\u88dd\u6b64\u5916\u639b +downgradeTo=é™ç‰ˆæˆ {0} +requires.restart=æ­¤ Jenkins 執行個體需è¦é‡æ–°å•Ÿå‹•ã€‚強烈建議您ä¸è¦åœ¨æ­¤æ™‚變更外掛的狀態。請在æ“作å‰é‡æ–°å•Ÿå‹• Jenkins。 +detached-disable=å¯èƒ½ç„¡æ³•å®‰å…¨åœ°åœç”¨æ­¤å¤–掛 +detached-uninstall=å¯èƒ½ç„¡æ³•å®‰å…¨åœ°è§£é™¤å®‰è£æ­¤å¤–掛 +detached-possible-dependents=它的功能曾一度從 Jenkins 核心中移出,而å¦ä¸€å€‹åœ¨æ‹†åˆ†å‰ç›¸ä¾æ–¼æ ¸å¿ƒçš„外掛å¯èƒ½æœƒéš±å«åœ°ä¾è³´å®ƒã€‚ +detached-many-dependents={0} 個外掛有已安è£çš„éš±å«ç›¸ä¾æ€§ã€‚ +deprecationWarning=此外掛已棄用。這通常表示它å¯èƒ½å·²éŽæ™‚ã€ä¸å†ç¹¼çºŒé–‹ç™¼ã€ä¸å†æ­£å¸¸é‹ä½œç­‰ã€‚了解更多。 +securityWarning=警告\: ç›®å‰å®‰è£çš„外掛版本用起來å¯èƒ½ä¸å®‰å…¨ã€‚請查看下列安全性須知\: +adoptThisPlugin=此外掛開放èªé¤Šï¼æˆ‘們正在尋找新的維護者,請造訪 Adopt a Plugin å–得更多資訊。 +reportIssue=回報此外掛的å•é¡Œ +Update\ Center=更新中心 +No\ plugins\ installed.=沒有安è£ä»»ä½•å¤–掛程å¼ã€‚ +Uncheck\ to\ disable\ the\ plugin=å–消核å–以åœç”¨å¤–掛 +Enabled=已啟用 +Name=å稱 +Version=版本 +Previously\ installed\ version=å‰ä¸€å®‰è£ç‰ˆæœ¬ +Uninstallation\ pending=解除安è£ä½œæ¥­æ“±ç½®ä¸­ +Uninstall=è§£é™¤å®‰è£ +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=é‡æ–°å•Ÿå‹• Jenkins 後變更就會生效 +Restart\ Once\ No\ Jobs\ Are\ Running=當沒有作業在執行時é‡æ–°å•Ÿå‹• +This\ plugin\ cannot\ be\ enabled=無法啟用此外掛 +Installed\ Plugins=已安è£çš„外掛 +Installed\ plugins=已安è£çš„外掛 +It\ has\ one\ or\ more\ installed\ dependents=有已安è£çš„外掛相ä¾æ–¼å®ƒ +No\ description\ available.=沒有說明資訊。 +Search=æœå°‹ +Filter=ç¯©é¸ +Plugin\ Manager=外掛總管 +This\ plugin\ cannot\ be\ disabled=無法åœç”¨æ­¤å¤–掛 +It\ has\ one\ or\ more\ enabled\ dependents=有已啟用的外掛相ä¾æ–¼å®ƒ +Warning=警告 +It\ has\ one\ or\ more\ unsatisfied\ dependencies=它有未滿足的相ä¾æ€§ +This\ plugin\ cannot\ be\ uninstalled=無法解除安è£æ­¤å¤–掛 diff --git a/core/src/main/resources/hudson/PluginManager/sidepanel_bg.properties b/core/src/main/resources/hudson/PluginManager/sidepanel_bg.properties index 18a142f1ce25..d3824da7e192 100644 --- a/core/src/main/resources/hudson/PluginManager/sidepanel_bg.properties +++ b/core/src/main/resources/hudson/PluginManager/sidepanel_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Back\ to\ Dashboard=\ - \u041a\u044a\u043c \u043e\u0441\u043d\u043e\u0432\u043d\u0438\u044f \u0435\u043a\u0440\u0430\u043d + Към оÑÐ½Ð¾Ð²Ð½Ð¸Ñ ÐµÐºÑ€Ð°Ð½ Manage\ Jenkins=\ - \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 Jenkins + Управление на Jenkins Update\ Center=\ - \u0421\u0430\u0439\u0442 \u0437\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f + Сайт за Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ diff --git a/core/src/main/resources/hudson/PluginManager/sidepanel_ca.properties b/core/src/main/resources/hudson/PluginManager/sidepanel_ca.properties index 8c6137b4197b..90a495ba6f8f 100644 --- a/core/src/main/resources/hudson/PluginManager/sidepanel_ca.properties +++ b/core/src/main/resources/hudson/PluginManager/sidepanel_ca.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Manage\ Jenkins=Configuraci\u00F3 de Jenkins +Manage\ Jenkins=Configuració de Jenkins diff --git a/core/src/main/resources/hudson/PluginManager/sidepanel_de.properties b/core/src/main/resources/hudson/PluginManager/sidepanel_de.properties index 779c59b609af..07533e69b009 100644 --- a/core/src/main/resources/hudson/PluginManager/sidepanel_de.properties +++ b/core/src/main/resources/hudson/PluginManager/sidepanel_de.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Zurück zur Übersicht +Back\ to\ Dashboard=Zurück zur Ãœbersicht Manage\ Jenkins=Jenkins verwalten Update\ Center=Update-Center diff --git a/core/src/main/resources/hudson/PluginManager/sidepanel_el.properties b/core/src/main/resources/hudson/PluginManager/sidepanel_el.properties index eca673e4534d..f88f01dcf757 100644 --- a/core/src/main/resources/hudson/PluginManager/sidepanel_el.properties +++ b/core/src/main/resources/hudson/PluginManager/sidepanel_el.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Manage\ Jenkins=\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 Jenkins +Manage\ Jenkins=ΔιαχείÏιση Jenkins diff --git a/core/src/main/resources/hudson/PluginManager/sidepanel_hu.properties b/core/src/main/resources/hudson/PluginManager/sidepanel_hu.properties index 9bec437eafac..57a6c8e75490 100644 --- a/core/src/main/resources/hudson/PluginManager/sidepanel_hu.properties +++ b/core/src/main/resources/hudson/PluginManager/sidepanel_hu.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Back\ to\ Dashboard=Vissza -Manage\ Jenkins=Jenkins Kezel\u00E9se +Manage\ Jenkins=Jenkins Kezelése diff --git a/core/src/main/resources/hudson/PluginManager/sidepanel_it.properties b/core/src/main/resources/hudson/PluginManager/sidepanel_it.properties index d863fa4dba56..2e870257f8f8 100644 --- a/core/src/main/resources/hudson/PluginManager/sidepanel_it.properties +++ b/core/src/main/resources/hudson/PluginManager/sidepanel_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/PluginManager/sidepanel_ja.properties b/core/src/main/resources/hudson/PluginManager/sidepanel_ja.properties index 6b4b4855ded2..55161ee906d8 100644 --- a/core/src/main/resources/hudson/PluginManager/sidepanel_ja.properties +++ b/core/src/main/resources/hudson/PluginManager/sidepanel_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u3078\u623b\u308b -Manage\ Jenkins=Jenkins\u306e\u7ba1\u7406 -Update\ Center=\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u30bb\u30f3\u30bf\u30fc +Back\ to\ Dashboard=ダッシュボードã¸æˆ»ã‚‹ +Manage\ Jenkins=Jenkinsã®ç®¡ç† +Update\ Center=アップデートセンター diff --git a/core/src/main/resources/hudson/PluginManager/sidepanel_ko.properties b/core/src/main/resources/hudson/PluginManager/sidepanel_ko.properties index 0b86de57bfd7..e88ae8e2a489 100644 --- a/core/src/main/resources/hudson/PluginManager/sidepanel_ko.properties +++ b/core/src/main/resources/hudson/PluginManager/sidepanel_ko.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\uB300\uC2DC\uBCF4\uB4DC\uB85C \uB3CC\uC544\uAC00\uAE30 -Manage\ Jenkins=Jenkins \uAD00\uB9AC +Back\ to\ Dashboard=대시보드로 ëŒì•„가기 +Manage\ Jenkins=Jenkins 관리 diff --git a/core/src/main/resources/hudson/PluginManager/sidepanel_pl.properties b/core/src/main/resources/hudson/PluginManager/sidepanel_pl.properties index a9f7a5356ebc..4b68883efb9b 100644 --- a/core/src/main/resources/hudson/PluginManager/sidepanel_pl.properties +++ b/core/src/main/resources/hudson/PluginManager/sidepanel_pl.properties @@ -19,6 +19,6 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Powr\u00F3t do tablicy -Manage\ Jenkins=Zarz\u0105dzaj Jenkinsem +Back\ to\ Dashboard=Powrót do tablicy +Manage\ Jenkins=ZarzÄ…dzaj Jenkinsem Update\ Center=Centrum aktualizacji diff --git a/core/src/main/resources/hudson/PluginManager/sidepanel_ru.properties b/core/src/main/resources/hudson/PluginManager/sidepanel_ru.properties index 303f0d9bf7fb..ed7111da3cf5 100644 --- a/core/src/main/resources/hudson/PluginManager/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/PluginManager/sidepanel_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u0414\u043E\u043C\u043E\u0439 -Manage\ Jenkins=\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c Jenkins +Back\ to\ Dashboard=Домой +Manage\ Jenkins=ÐаÑтроить Jenkins diff --git a/core/src/main/resources/hudson/PluginManager/sidepanel_sr.properties b/core/src/main/resources/hudson/PluginManager/sidepanel_sr.properties index b9b0779dfd03..8312cdfb2011 100644 --- a/core/src/main/resources/hudson/PluginManager/sidepanel_sr.properties +++ b/core/src/main/resources/hudson/PluginManager/sidepanel_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Back\ to\ Dashboard=\u041D\u0430\u0437\u0430\u0434 \u043A\u0430 \u043A\u043E\u043D\u0442\u043E\u0440\u043B\u043D\u043E\u0458 \u043F\u0430\u043D\u0435\u043B\u0438 -Manage\ Jenkins=\u0423\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 Jenkins-\u043E\u043C -Update\ Center=\u0426\u0435\u043D\u0442\u0430\u0440 \u0437\u0430 \u0410\u0436\u0443\u0440\u0438\u0440\u0430\u045A\u0435 +Back\ to\ Dashboard=Ðазад ка конторлној панели +Manage\ Jenkins=Управљање Jenkins-ом +Update\ Center=Центар за Ðжурирање diff --git a/core/src/main/resources/hudson/PluginManager/sidepanel_tr.properties b/core/src/main/resources/hudson/PluginManager/sidepanel_tr.properties index 6ebc26bd54d6..fcb6318ce0fb 100644 --- a/core/src/main/resources/hudson/PluginManager/sidepanel_tr.properties +++ b/core/src/main/resources/hudson/PluginManager/sidepanel_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Kontrol Merkezi''ne D\u00f6n -Manage\ Jenkins=Jenkins''i Y\u00f6net +Back\ to\ Dashboard=Kontrol Merkezi''ne Dön +Manage\ Jenkins=Jenkins''i Yönet diff --git a/core/src/main/resources/hudson/PluginManager/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/sidepanel_zh_TW.properties index 524f8e635ea0..717881bb7e68 100644 --- a/core/src/main/resources/hudson/PluginManager/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/sidepanel_zh_TW.properties @@ -21,6 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u8fd4\u56de\u8cc7\u8a0a\u4e3b\u9801 -Manage\ Jenkins=\u7ba1\u7406 Jenkins -Update\ Center=\u66f4\u65b0\u4e2d\u5fc3 +Back\ to\ Dashboard=è¿”å›žè³‡è¨Šä¸»é  +Manage\ Jenkins=ç®¡ç† Jenkins +Update\ Center=更新中心 diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_bg.properties b/core/src/main/resources/hudson/PluginManager/tabBar_bg.properties index 440d9b26d84a..91e696ba42a9 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_bg.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_bg.properties @@ -21,12 +21,12 @@ # THE SOFTWARE. Advanced=\ - \u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u0438 + Допълнителни Available=\ - \u041d\u0430\u043b\u0438\u0447\u043d\u0438 + Ðалични Installed=\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0438 + ИнÑталирани Updates=\ - \u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f + ÐžÐ±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Sites=\ - \u0421\u0430\u0439\u0442\u043e\u0432\u0435 + Сайтове diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_ca.properties b/core/src/main/resources/hudson/PluginManager/tabBar_ca.properties index 7465dffa99a8..41fe33290922 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_ca.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_ca.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Advanced=Avan\u00E7at +Advanced=Avançat Available=Disponible -Installed=Instal\u00B7lats +Installed=Instal·lats Updates=Actualitzacions diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_cs.properties b/core/src/main/resources/hudson/PluginManager/tabBar_cs.properties index 4d0f10e412bd..b416f2ccf205 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_cs.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_cs.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Advanced=Pokro\u010Dil\u00E9 -Available=Dostupn\u00E9 -Installed=Nainstalovan\u00E9 +Advanced=PokroÄilé +Available=Dostupné +Installed=Nainstalované Updates=Aktualizace diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_da.properties b/core/src/main/resources/hudson/PluginManager/tabBar_da.properties index 339e06393cdf..ab4523456c18 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_da.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_da.properties @@ -22,6 +22,6 @@ Installed=Installeret Sites=Sites -Available=Tilg\u00e6ngelige +Available=Tilgængelige Advanced=Avanceret Updates=Opdateringer diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_de.properties b/core/src/main/resources/hudson/PluginManager/tabBar_de.properties index 4dc2c8261748..f6b5ff8644d8 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_de.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_de.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Updates=Aktualisierungen -Available=Verfügbar +Available=Verfügbar Installed=Installiert Advanced=Erweiterte Einstellungen Sites=Quellen diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_et.properties b/core/src/main/resources/hudson/PluginManager/tabBar_et.properties index 607f644bf05d..ba99b46b74b1 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_et.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_et.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Advanced=Edasij\u00F5udnutele +Advanced=Edasijõudnutele Available=Saadaval Installed=Paigaldatud Updates=Uuendused diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_fi.properties b/core/src/main/resources/hudson/PluginManager/tabBar_fi.properties index b5ced1820791..bcec2eb7a318 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_fi.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_fi.properties @@ -23,4 +23,4 @@ Advanced=Edistyneet toiminnot Available=Saatavilla Installed=Asennetut -Updates=P\u00E4ivityksi\u00E4 +Updates=Päivityksiä diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_fr.properties b/core/src/main/resources/hudson/PluginManager/tabBar_fr.properties index cc02a5886f69..3f2ae8882469 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_fr.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_fr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Updates=Mises à jour +Updates=Mises à jour Available=Disponibles -Installed=Installés -Advanced=Avancé +Installed=Installés +Advanced=Avancé diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_he.properties b/core/src/main/resources/hudson/PluginManager/tabBar_he.properties index 5d16cda137af..4008b415372e 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_he.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_he.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Advanced=\u05DE\u05EA\u05E7\u05D3\u05DD -Available=\u05D6\u05DE\u05D9\u05E0\u05D9\u05DD -Installed=\u05DE\u05D5\u05EA\u05E7\u05E0\u05D9\u05DD -Updates=\u05E2\u05D3\u05DB\u05D5\u05E0\u05D9\u05DD +Advanced=×ž×ª×§×“× +Available=×–×ž×™× ×™× +Installed=×ž×•×ª×§× ×™× +Updates=×¢×“×›×•× ×™× diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_hu.properties b/core/src/main/resources/hudson/PluginManager/tabBar_hu.properties index f2196a289d4d..957536f3d570 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_hu.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_hu.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Advanced=Speci\u00E1lis -Available=El\u00E9rhet\u0151 -Installed=Feltelep\u00EDtett -Updates=Friss\u00EDt\u00E9sek +Advanced=Speciális +Available=ElérhetÅ‘ +Installed=Feltelepített +Updates=Frissítések diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_it.properties b/core/src/main/resources/hudson/PluginManager/tabBar_it.properties index 1149ed9ed15e..7d20ecb25387 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_it.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_ja.properties b/core/src/main/resources/hudson/PluginManager/tabBar_ja.properties index 20f6086a73af..3ad777c2d8c6 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_ja.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Updates=\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8 -Available=\u5229\u7528\u53ef\u80fd -Installed=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u6e08\u307f -Advanced=\u9ad8\u5ea6\u306a\u8a2d\u5b9a +Updates=アップデート +Available=利用å¯èƒ½ +Installed=インストール済㿠+Advanced=高度ãªè¨­å®š diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_ko.properties b/core/src/main/resources/hudson/PluginManager/tabBar_ko.properties index 4f0645848045..d84363beec82 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_ko.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_ko.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Advanced=\uACE0\uAE09 -Available=\uC124\uCE58 \uAC00\uB2A5 -Installed=\uC124\uCE58\uB41C \uD50C\uB7EC\uADF8\uC778 \uBAA9\uB85D -Updates=\uC5C5\uB370\uC774\uD2B8\uB41C \uD50C\uB7EC\uADF8\uC778 \uBAA9\uB85D +Advanced=고급 +Available=설치 가능 +Installed=ì„¤ì¹˜ëœ í”ŒëŸ¬ê·¸ì¸ ëª©ë¡ +Updates=ì—…ë°ì´íŠ¸ëœ í”ŒëŸ¬ê·¸ì¸ ëª©ë¡ diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_lt.properties b/core/src/main/resources/hudson/PluginManager/tabBar_lt.properties index 9e5fcd201066..79fbe32f4c2c 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_lt.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_lt.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Advanced=Sud\u0117tingesni +Advanced=SudÄ—tingesni Available=Prieinami -Installed=\u012Ediegti +Installed=Ä®diegti Updates=Atnaujinimai diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_lv.properties b/core/src/main/resources/hudson/PluginManager/tabBar_lv.properties index 5e3704446b75..2ed3b0c95f1e 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_lv.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_lv.properties @@ -22,5 +22,5 @@ Advanced=Papildus Available=Pieejamie -Installed=Uzst\u0101d\u012Btie -Updates=Atjaunin\u0101jumi +Installed=UzstÄdÄ«tie +Updates=AtjauninÄjumi diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_nl.properties b/core/src/main/resources/hudson/PluginManager/tabBar_nl.properties index 6340b93d79c6..609c0fbe9d3b 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_nl.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_nl.properties @@ -22,5 +22,5 @@ Updates=Nieuwere versies Available=Beschikbaar -Installed=Ge\u00EFnstalleerd +Installed=Geïnstalleerd Advanced=Uitgebreid diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_pl.properties b/core/src/main/resources/hudson/PluginManager/tabBar_pl.properties index 877a7ec8837d..02848b73f186 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_pl.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_pl.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Advanced=Zaawansowane -Available=Dost\u0119pne +Available=DostÄ™pne Installed=Zainstalowane Updates=Aktualizacje diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_pt_BR.properties b/core/src/main/resources/hudson/PluginManager/tabBar_pt_BR.properties index 9a80ac848295..69112318e332 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_pt_BR.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Updates=Atualiza\u00E7\u00F5es -Available=Dispon\u00edveis +Updates=Atualizações +Available=Disponíveis Installed=Instalados -Advanced=Avan\u00e7ado +Advanced=Avançado diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_pt_PT.properties b/core/src/main/resources/hudson/PluginManager/tabBar_pt_PT.properties index 6d226246e136..b9e220d03ab5 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_pt_PT.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_pt_PT.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Advanced=Avan\u00E7ado -Available=Dispon\u00EDveis +Advanced=Avançado +Available=Disponíveis Installed=Instalados -Updates=Atualiza\u00E7\u00F5es +Updates=Atualizações diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_ro.properties b/core/src/main/resources/hudson/PluginManager/tabBar_ro.properties index 49fb33b3d670..fd586ae0aca5 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_ro.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_ro.properties @@ -23,4 +23,4 @@ Advanced=Avansat Available=Disponibile Installed=Instalat -Updates=Actualiz\u0103ri +Updates=Actualizări diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_ru.properties b/core/src/main/resources/hudson/PluginManager/tabBar_ru.properties index 90365626937e..cfeeb9ebc52f 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_ru.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Advanced=\u0414\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u043E -Available=\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0435 -Installed=\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044B\u0435 -Updates=\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F +Advanced=Дополнительно +Available=ДоÑтупные +Installed=УÑтановленные +Updates=ÐžÐ±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_sk.properties b/core/src/main/resources/hudson/PluginManager/tabBar_sk.properties index f2231b7154a1..5e4985ee5b4d 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_sk.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_sk.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Advanced=Pokro\u010Dil\u00E9 -Available=Dostupn\u00E9 -Installed=In\u0161talovan\u00E9 -Updates=Aktualiz\u00E1cie +Advanced=PokroÄilé +Available=Dostupné +Installed=InÅ¡talované +Updates=Aktualizácie diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_sr.properties b/core/src/main/resources/hudson/PluginManager/tabBar_sr.properties index c7e4f8cb4bab..d9155b3d0672 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_sr.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_sr.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -Updates=\u041D\u0430\u0434\u0433\u0440\u0430\u0434\u045A\u0435 -Available=\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u043E -Installed=\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u043E -Advanced=\u041D\u0430\u043F\u0440\u0435\u0434\u043D\u043E -Sites=\u0421\u0442\u0440\u0430\u043D\u0438\u0446\u0435 +Updates=Ðадградње +Available=ДоÑтупно +Installed=ИнÑталирано +Advanced=Ðапредно +Sites=Странице diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_sv_SE.properties b/core/src/main/resources/hudson/PluginManager/tabBar_sv_SE.properties index bab5369732d4..ae8869408e96 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_sv_SE.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_sv_SE.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Advanced=Avancerat -Available=Tillg\u00E4ngliga +Available=Tillgängliga Installed=Installerade Updates=Uppdatering diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_tr.properties b/core/src/main/resources/hudson/PluginManager/tabBar_tr.properties index 4db04149c2b2..7b774e3aa3f7 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_tr.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_tr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Updates=G\u00fcncellemeler -Available=Kullan\u0131labilir -Installed=Y\u00fcklenmi\u015f -Advanced=Geli\u015fmi\u015f +Updates=Güncellemeler +Available=Kullanılabilir +Installed=YüklenmiÅŸ +Advanced=GeliÅŸmiÅŸ diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_uk.properties b/core/src/main/resources/hudson/PluginManager/tabBar_uk.properties index 291e6961d1d5..5c252daace6a 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_uk.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_uk.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Advanced=\u0414\u043E\u0434\u0430\u0442\u043A\u043E\u0432\u043E -Available=\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u0456 -Installed=\u0412\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u0456 -Updates=\u041E\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F +Advanced=Додатково +Available=ДоÑтупні +Installed=Ð’Ñтановлені +Updates=ÐžÐ½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/tabBar_zh_TW.properties index 9ef614b5fd98..3367838e1663 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_zh_TW.properties @@ -21,8 +21,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Updates=\u66f4\u65b0 -Available=\u53ef\u7528\u7684 -Installed=\u5df2\u5b89\u88dd -Sites=\u7ad9\u53f0 -Advanced=\u9032\u968e +Updates=æ›´æ–° +Available=å¯ç”¨çš„ +Installed=å·²å®‰è£ +Sites=ç«™å° +Advanced=進階 diff --git a/core/src/main/resources/hudson/PluginManager/table.jelly b/core/src/main/resources/hudson/PluginManager/table.jelly index feef003ce2a0..4f0976b5e121 100644 --- a/core/src/main/resources/hudson/PluginManager/table.jelly +++ b/core/src/main/resources/hudson/PluginManager/table.jelly @@ -206,7 +206,7 @@ THE SOFTWARE.
    - ${%newerVersionExists(p.latest)} + ${%newerVersionExists(p.latest, p.wiki)}
    diff --git a/core/src/main/resources/hudson/PluginManager/table.properties b/core/src/main/resources/hudson/PluginManager/table.properties index 78ee0550a203..0842a4991faf 100644 --- a/core/src/main/resources/hudson/PluginManager/table.properties +++ b/core/src/main/resources/hudson/PluginManager/table.properties @@ -48,7 +48,7 @@ newerVersionExists=\ A newer version than being offered for installation exists (version {0}), so the latest bug fixes or features are not available to you. \ This is typically the case when plugin requirements, e.g. a recent version of Jenkins, are not satisfied. \ If you are using the latest version of Jenkins offered to you, this plugin release may not be available to your release line yet. \ - See the plugin documentation for information about its requirements. + See the plugin documentation for information about its requirements. newerVersionEntry=\ This version of the plugin exists but it is not being offered for installation, so the latest bug fixes or features are not available to you. \ This is typically the case when plugin requirements, e.g. a recent version of Jenkins, are not satisfied. \ @@ -57,3 +57,4 @@ newerVersionEntry=\ unavailable=Unavailable deprecationWarning=This plugin is deprecated. In general, this means that it is either obsolete, no longer being developed, or may no longer work. Learn more. +loading=Loading \ No newline at end of file diff --git a/core/src/main/resources/hudson/PluginManager/table_bg.properties b/core/src/main/resources/hudson/PluginManager/table_bg.properties index 25e4b2ed410b..dfa68f6a4ee4 100644 --- a/core/src/main/resources/hudson/PluginManager/table_bg.properties +++ b/core/src/main/resources/hudson/PluginManager/table_bg.properties @@ -21,48 +21,48 @@ # THE SOFTWARE. Check\ to\ install\ the\ plugin=\ - \u0418\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430\u0442\u0430 \u0437\u0430 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435 + Изберете приÑтавката за инÑталиране Download\ now\ and\ install\ after\ restart=\ - \u0418\u0437\u0442\u0435\u0433\u043b\u044f\u043d\u0435 \u0432 \u043c\u043e\u043c\u0435\u043d\u0442\u0430, \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435 \u0441\u043b\u0435\u0434 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 + ИзтеглÑне в момента, инÑталиране Ñлед реÑтартиране Filter=\ - \u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u0435 + Филтриране Install=\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435 + ИнÑталиране Install\ without\ restart=\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435 \u0431\u0435\u0437 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 + ИнÑталиране без реÑтартиране Installed=\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0430 + ИнÑталирана Name=\ - \u0418\u043c\u0435 + Име No\ updates=\ - \u041d\u044f\u043c\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f + ÐÑма Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Version=\ - \u0412\u0435\u0440\u0441\u0438\u044f + ВерÑÐ¸Ñ depCoreWarning=\ - \u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435: \u0442\u0430\u0437\u0438 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430 \u0438\u0437\u0438\u0441\u043a\u0432\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0437\u0430 Jenkins \u0432\u0435\u0440\u0441\u0438\u044f\ - {0} \u0438\u043b\u0438 \u043f\u043e-\u043d\u043e\u0432\u0430. \u0418\u043c\u0430 \u0448\u0430\u043d\u0441 \u0442\u0435 \u0434\u0430 \u043d\u0435 \u0441\u0430 \u0441\u044a\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u0438 \u0441 \u0442\u0435\u043a\u0443\u0449\u0430\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430 Jenkins,\ - \u0442.\u0435. \u043d\u043e\u0432\u0430\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430\u0442\u0430 \u043c\u043e\u0436\u0435 \u0438 \u0434\u0430 \u043d\u0435 \u0441\u0440\u0430\u0431\u043e\u0442\u0438. + Предупреждение: тази приÑтавка изиÑква приÑтавки, които Ñа за Jenkins верÑиÑ\ + {0} или по-нова. Има ÑˆÐ°Ð½Ñ Ñ‚Ðµ да не Ñа ÑъвмеÑтими Ñ Ñ‚ÐµÐºÑƒÑ‰Ð°Ñ‚Ð° верÑÐ¸Ñ Ð½Ð° Jenkins,\ + Ñ‚.е. новата верÑÐ¸Ñ Ð½Ð° приÑтавката може и да не Ñработи. compatWarning=\ - \u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435: \u043d\u043e\u0432\u0430\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430\u0442\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 \u0440\u0430\u0437\u043b\u0438\u0447\u0435\u043d \u0444\u043e\u0440\u043c\u0430\u0442 \u043d\u0430\ - \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435 \u0441\u043f\u0440\u044f\u043c\u043e \u0442\u0435\u043a\u0443\u0449\u0430\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044f. \u0429\u0435 \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435 \u0437\u0430\u0434\u0430\u0447\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u044f\ - \u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u2014 \u0438\u043c\u0430 \u0448\u0430\u043d\u0441 \u0434\u0430 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430 \u0441\u0435 \u0432\u044a\u0440\u043d\u0435\u0442\u0435 \u043a\u044a\u043c \u043f\u0440\u0435\u0434\u0438\u0448\u043d\u0430\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044f, \u0431\u0435\u0437\ - \u043d\u0430\u043d\u043e\u0432\u043e \u0434\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u0435 \u0437\u0430\u0434\u0430\u0447\u0438\u0442\u0435. \u0417\u0430 \u043f\u043e\u0432\u0435\u0447\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043f\u043e\u0433\u043b\u0435\u0434\u043d\u0435\u0442\u0435 \u0431\u0435\u043b\u0435\u0436\u043a\u0438\u0442\u0435 \u043a\u044a\u043c\ - \u0432\u0435\u0440\u0441\u0438\u044f\u0442\u0430 \u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430\u0442\u0430. + Предупреждение: новата верÑÐ¸Ñ Ð½Ð° приÑтавката използва различен формат на\ + наÑтройките ÑпрÑмо текущата верÑиÑ. Ще Ñ‚Ñ€Ñбва да промените задачите, които Ñ\ + ползват — има ÑˆÐ°Ð½Ñ Ð´Ð° не можете да Ñе върнете към предишната верÑиÑ, без\ + наново да наÑтроите задачите. За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¿Ð¾Ð³Ð»ÐµÐ´Ð½ÐµÑ‚Ðµ бележките към\ + верÑиÑта на приÑтавката. Inactive=\ - \u041d\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u0430 + Ðеактивна Update\ Center=\ - \u0421\u0430\u0439\u0442 \u0437\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f + Сайт за Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Click\ this\ heading\ to\ sort\ by\ category=\ - \u041d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 \u0437\u0430\u0433\u043b\u0430\u0432\u043d\u0430\u0442\u0430 \u043a\u043b\u0435\u0442\u043a\u0430 \u0437\u0430 \u043f\u043e\u0434\u0440\u0435\u0434\u0431\u0430 \u043f\u043e \u0442\u0430\u0437\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f + ÐатиÑнете заглавната клетка за подредба по тази ÐºÐ°Ñ‚ÐµÐ³Ð¾Ñ€Ð¸Ñ coreWarning=\ - \u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435: \u0442\u0430\u0437\u0438 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430 \u0435 \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0430 \u0437\u0430 Jenkins \u0432\u0435\u0440\u0441\u0438\u044f {0} \u0438\u043b\u0438\ - \u043f\u043e-\u043d\u043e\u0432\u0430, \u043c\u043e\u0436\u0435 \u0438 \u0434\u0430 \u043d\u0435 \u0441\u0440\u0430\u0431\u043e\u0442\u0438 \u0441 \u0442\u0435\u043a\u0443\u0449\u0430\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430 Jenkins. + Предупреждение: тази приÑтавка е предназначена за Jenkins верÑÐ¸Ñ {0} или\ + по-нова, може и да не Ñработи Ñ Ñ‚ÐµÐºÑƒÑ‰Ð°Ñ‚Ð° верÑÐ¸Ñ Ð½Ð° Jenkins. depCompatWarning=\ - \u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435: \u0442\u0430\u0437\u0438 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430 \u0438\u0437\u0438\u0441\u043a\u0432\u0430 \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0432\u0438\u0441\u0435\u0449\u0438\u0442\u0435 \u043e\u0442 \u043d\u0435\u044f\ - \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438. \u0427\u0430\u0441\u0442 \u043e\u0442 \u0442\u044f\u0445 \u043d\u0435 \u0441\u0430 \u0441\u044a\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u0438 \u0441 \u0442\u0435\u043a\u0443\u0449\u0430\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430 Jenkins. \u0429\u0435\ - \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435 \u0437\u0430\u0434\u0430\u0447\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0433\u0438 \u043f\u043e\u043b\u0437\u0432\u0430\u0442. + Предупреждение: тази приÑтавка изиÑква обновÑване на завиÑещите от неÑ\ + приÑтавки. ЧаÑÑ‚ от Ñ‚ÑÑ… не Ñа ÑъвмеÑтими Ñ Ñ‚ÐµÐºÑƒÑ‰Ð°Ñ‚Ð° верÑÐ¸Ñ Ð½Ð° Jenkins. Ще\ + Ñ‚Ñ€Ñбва да промените задачите, които ги ползват. # \ # Warning: This plugin version may not be safe to use. Please review the following security notices: securityWarning=\ - \u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435: \u0442\u0430\u0437\u0438 \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430\u0442\u0430 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0438\u043c\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c \u0441\u044a\u0441\ - \u0441\u0438\u0433\u0443\u0440\u043d\u043e\u0441\u0442\u0442\u0430. \u041f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u0439\u0442\u0435 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u044f\u0442\u0430. + Предупреждение: тази верÑÐ¸Ñ Ð½Ð° приÑтавката може да има проблем ÑÑŠÑ\ + ÑигурноÑтта. Прегледайте предупреждениÑта. diff --git a/core/src/main/resources/hudson/PluginManager/table_ca.properties b/core/src/main/resources/hudson/PluginManager/table_ca.properties index da753772f0aa..421217d59d01 100644 --- a/core/src/main/resources/hudson/PluginManager/table_ca.properties +++ b/core/src/main/resources/hudson/PluginManager/table_ca.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Download\ now\ and\ install\ after\ restart=Descarrega ara i instal\u00B7la despr\u00E8s de reiniciar -Install=Instal\u00B7lar -Install\ without\ restart=Instal\u00B7la sense reiniciar -Installed=Instal\u00B7lat +Download\ now\ and\ install\ after\ restart=Descarrega ara i instal·la desprès de reiniciar +Install=Instal·lar +Install\ without\ restart=Instal·la sense reiniciar +Installed=Instal·lat Name=Nom -Version=Versi\u00F3 +Version=Versió diff --git a/core/src/main/resources/hudson/PluginManager/table_cs.properties b/core/src/main/resources/hudson/PluginManager/table_cs.properties index 6899e9470faa..25096b4028cf 100644 --- a/core/src/main/resources/hudson/PluginManager/table_cs.properties +++ b/core/src/main/resources/hudson/PluginManager/table_cs.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ to\ install\ the\ plugin=Pro nainstalov\u00E1n\u00ED pluginu za\u0161krtn\u011Bte +Check\ to\ install\ the\ plugin=Pro nainstalování pluginu zaÅ¡krtnÄ›te Filter=Filtr Install=Nainstalovat -Installed=Nainstalovan\u00E1 verze -Name=Jm\u00E9no -No\ updates=\u017D\u00E1dn\u00E9 aktualizace -Version=Aktu\u00E1ln\u00ED verze +Installed=Nainstalovaná verze +Name=Jméno +No\ updates=Žádné aktualizace +Version=Aktuální verze diff --git a/core/src/main/resources/hudson/PluginManager/table_da.properties b/core/src/main/resources/hudson/PluginManager/table_da.properties index 67a193a1874e..b9d5b0d09193 100644 --- a/core/src/main/resources/hudson/PluginManager/table_da.properties +++ b/core/src/main/resources/hudson/PluginManager/table_da.properties @@ -24,15 +24,15 @@ Version=Version Install\ without\ restart=Installer uden genstart Installed=Installeret Install=Installer -Click\ this\ heading\ to\ sort\ by\ category=Klik p\u00E5 denne overskrift for at sortere efter kategori +Click\ this\ heading\ to\ sort\ by\ category=Klik pÃ¥ denne overskrift for at sortere efter kategori coreWarning=\ Advarsel: Denne plugin er bygget til Jenkins {0} eller nyere. \ -Den vil m\u00e5ske, m\u00e5ske ikke fungere med din version af Jenkins. +Den vil mÃ¥ske, mÃ¥ske ikke fungere med din version af Jenkins. No\ updates=Ingen opdateringer Name=Navn compatWarning=\ Advarsel: Den nye version er ikke kompatibel med den installerede version. \ -Jobs der benytter sig af denne plugin skal m\u00e5ske konfigureres igen. +Jobs der benytter sig af denne plugin skal mÃ¥ske konfigureres igen. Download\ now\ and\ install\ after\ restart=Hent nu og installer efter genstart Inactive=Inaktive Check\ to\ install\ the\ plugin=Kryds af for at installere plugin''''et diff --git a/core/src/main/resources/hudson/PluginManager/table_de.properties b/core/src/main/resources/hudson/PluginManager/table_de.properties index 771d899c609e..13f6231c57a3 100644 --- a/core/src/main/resources/hudson/PluginManager/table_de.properties +++ b/core/src/main/resources/hudson/PluginManager/table_de.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ to\ install\ the\ plugin=Zum Aktualisieren anw\u00E4hlen +Check\ to\ install\ the\ plugin=Zum Aktualisieren anwählen Install=Installieren Name=Name Version=Version @@ -32,10 +32,10 @@ Update\ Center=Update-Center Install\ without\ restart=Installieren ohne Neustart Download\ now\ and\ install\ after\ restart=Jetzt herunterladen und bei Neustart installieren parentDepCompatWarning=Die folgenden Plugins sind inkompatibel: -parentCompatWarning=Die folgenden Plugins werden dadurch beeintr\u00E4chtigt: -compatWarning=Achtung: Die neue Version gibt an, mit der installierten Version inkompatibel zu sein. Projekte, welche dieses Plugin verwenden, m\u00FCssen gegebenenfalls neu konfiguriert werden. N\u00E4here Informationen finden Sie in den Versionshinweisen der Plugins. -coreWarning=Achtung: Dieses Plugin wurde f\u00FCr Jenkins {0} oder neuer entwickelt. Jenkins wird daher dieses Plugin nicht laden. +parentCompatWarning=Die folgenden Plugins werden dadurch beeinträchtigt: +compatWarning=Achtung: Die neue Version gibt an, mit der installierten Version inkompatibel zu sein. Projekte, welche dieses Plugin verwenden, müssen gegebenenfalls neu konfiguriert werden. Nähere Informationen finden Sie in den Versionshinweisen der Plugins. +coreWarning=Achtung: Dieses Plugin wurde für Jenkins {0} oder neuer entwickelt. Jenkins wird daher dieses Plugin nicht laden. Click\ this\ heading\ to\ sort\ by\ category=Hier klicken, um nach der Kategorie zu sortieren -depCoreWarning=Achtung: Dieses Plugin hat Abh\u00E4ngigkeiten, die Jenkins {0} oder neuer erfordern. Jenkins wird diese Abh\u00E4ngigkeiten nicht laden, und dadurch kann dieses Plugin ebenfalls nicht geladen werden. -depCompatWarning=Achtung: Dieses Plugin erfordert, dass Abh\u00E3ngigkeiten aktualisiert werden und mindestens eine dieser Abh\u00E4ngigkeiten gibt an, mit der installierten Version inkompatibel zu sein. Projekte, welche dieses Plugin verwenden, m\u00FCssen gegebenenfalls neu konfiguriert werden. N\u00E4here Informationen finden Sie in den Versionshinweisen der Plugins. -securityWarning=Warnung: Dieses Plugin ist m\u00F6glicherweise unsicher. Bitte pr\u00FCfen Sie die folgenden Sicherheitshinweise: +depCoreWarning=Achtung: Dieses Plugin hat Abhängigkeiten, die Jenkins {0} oder neuer erfordern. Jenkins wird diese Abhängigkeiten nicht laden, und dadurch kann dieses Plugin ebenfalls nicht geladen werden. +depCompatWarning=Achtung: Dieses Plugin erfordert, dass Abhãngigkeiten aktualisiert werden und mindestens eine dieser Abhängigkeiten gibt an, mit der installierten Version inkompatibel zu sein. Projekte, welche dieses Plugin verwenden, müssen gegebenenfalls neu konfiguriert werden. Nähere Informationen finden Sie in den Versionshinweisen der Plugins. +securityWarning=Warnung: Dieses Plugin ist möglicherweise unsicher. Bitte prüfen Sie die folgenden Sicherheitshinweise: diff --git a/core/src/main/resources/hudson/PluginManager/table_es.properties b/core/src/main/resources/hudson/PluginManager/table_es.properties index 12f2612c940f..f5d88f141f89 100644 --- a/core/src/main/resources/hudson/PluginManager/table_es.properties +++ b/core/src/main/resources/hudson/PluginManager/table_es.properties @@ -20,21 +20,21 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. compatWarning=\ - Cuidado: La nueva versión no es compatible con la versión instalada.\ - Los proyectos que estén usando este plugin deberán ser reconfigurados. + Cuidado: La nueva versión no es compatible con la versión instalada.\ + Los proyectos que estén usando este plugin deberán ser reconfigurados. coreWarning=\ - Cuidado: Este plugin sólo funciona en la version {0} de Jenkins o posterior.\ - No sirve para la versión que estás usando. + Cuidado: Este plugin sólo funciona en la version {0} de Jenkins o posterior.\ + No sirve para la versión que estás usando. -Version=Versión +Version=Versión Check\ to\ install\ the\ plugin=Comprobar para instalar el plugin No\ updates=No hay actualizaciones pendientes Inactive=Desactivado Installed=Instalado Name=Nombre Install=Instalar -Click\ this\ heading\ to\ sort\ by\ category=Pulse sobre este encabezado para ordenar por categoría -Download\ now\ and\ install\ after\ restart=Descargar ahora e instalar despu\u00E9s de reiniciar +Click\ this\ heading\ to\ sort\ by\ category=Pulse sobre este encabezado para ordenar por categoría +Download\ now\ and\ install\ after\ restart=Descargar ahora e instalar después de reiniciar Update\ Center=Centro de actualizadiones Filter=Filtrar Install\ without\ restart=Instalar sin reiniciar diff --git a/core/src/main/resources/hudson/PluginManager/table_et.properties b/core/src/main/resources/hudson/PluginManager/table_et.properties index 20cef741b0b6..821f2ab62968 100644 --- a/core/src/main/resources/hudson/PluginManager/table_et.properties +++ b/core/src/main/resources/hudson/PluginManager/table_et.properties @@ -1,11 +1,11 @@ # This file is under the MIT License by authors -Check\ to\ install\ the\ plugin=M\u00E4rgista, et paigaldada pistikprogramm -Download\ now\ and\ install\ after\ restart=Lae kohe alla ja paigalda p\u00E4rast taask\u00E4ivitus +Check\ to\ install\ the\ plugin=Märgista, et paigaldada pistikprogramm +Download\ now\ and\ install\ after\ restart=Lae kohe alla ja paigalda pärast taaskäivitus Filter=Filtreeri Inactive=Toimetu Install=Paigalda -Install\ without\ restart=Paigalda ilma taask\u00E4ivitamata +Install\ without\ restart=Paigalda ilma taaskäivitamata Installed=Paigaldatud Name=Nimi Version=Versioon diff --git a/core/src/main/resources/hudson/PluginManager/table_fi.properties b/core/src/main/resources/hudson/PluginManager/table_fi.properties index b5915403bc57..94fab16546f4 100644 --- a/core/src/main/resources/hudson/PluginManager/table_fi.properties +++ b/core/src/main/resources/hudson/PluginManager/table_fi.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ to\ install\ the\ plugin=Rastita asentaaksesi liit\u00E4nn\u00E4isen -Click\ this\ heading\ to\ sort\ by\ category=J\u00E4rjest\u00E4 klikkaamalla t\u00E4t\u00E4 otsikkoa -Download\ now\ and\ install\ after\ restart=Lataa ja asenna k\u00E4ynnistyksen j\u00E4lkeen +Check\ to\ install\ the\ plugin=Rastita asentaaksesi liitännäisen +Click\ this\ heading\ to\ sort\ by\ category=Järjestä klikkaamalla tätä otsikkoa +Download\ now\ and\ install\ after\ restart=Lataa ja asenna käynnistyksen jälkeen Filter=Suodatus Install=Asenna -Install\ without\ restart=Asenna ilman k\u00E4ynnistyst\u00E4 +Install\ without\ restart=Asenna ilman käynnistystä Installed=Asennettu Name=Nimi -No\ updates=Ei p\u00E4ivityksi\u00E4 +No\ updates=Ei päivityksiä Version=Versio diff --git a/core/src/main/resources/hudson/PluginManager/table_fr.properties b/core/src/main/resources/hudson/PluginManager/table_fr.properties index 5cbc0d016768..bf16337fdb8f 100644 --- a/core/src/main/resources/hudson/PluginManager/table_fr.properties +++ b/core/src/main/resources/hudson/PluginManager/table_fr.properties @@ -21,15 +21,15 @@ # THE SOFTWARE. Check\ to\ install\ the\ plugin=Cocher pour installer le plugin -Click\ this\ heading\ to\ sort\ by\ category=Cliquez sur l''en-t\u00EAte pour classer par cat\u00E9gorie -Download\ now\ and\ install\ after\ restart=T\u00E9l\u00E9charger maintenant et installer apr\u00E8s red\u00E9marrage +Click\ this\ heading\ to\ sort\ by\ category=Cliquez sur l''en-tête pour classer par catégorie +Download\ now\ and\ install\ after\ restart=Télécharger maintenant et installer après redémarrage Filter=Filtre Inactive=Inactif Install=Installer -Install\ without\ restart=Installer sans red\u00E9marrer -Installed=Install\u00E9 +Install\ without\ restart=Installer sans redémarrer +Installed=Installé Name=Nom Version=Version -No\ updates=Pas de mises \u00e0 jour -compatWarning=Avertissement: Cette nouvelle version n''est pas compatible avec la version install\u00E9e. Il peut \u00EAtre n\u00E9cessaire de reconfigurer les t\u00E2ches utilisant ce plugin. -coreWarning=Ce plugin est con\u00E7u pour Jenkins {0} ou une version plus r\u00E9cente. Il pourrait ne pas fonctionner avec votre version de Jenkins. +No\ updates=Pas de mises à jour +compatWarning=Avertissement: Cette nouvelle version n''est pas compatible avec la version installée. Il peut être nécessaire de reconfigurer les tâches utilisant ce plugin. +coreWarning=Ce plugin est conçu pour Jenkins {0} ou une version plus récente. Il pourrait ne pas fonctionner avec votre version de Jenkins. diff --git a/core/src/main/resources/hudson/PluginManager/table_he.properties b/core/src/main/resources/hudson/PluginManager/table_he.properties index 365d265c7b0f..2f7604e55ba1 100644 --- a/core/src/main/resources/hudson/PluginManager/table_he.properties +++ b/core/src/main/resources/hudson/PluginManager/table_he.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ to\ install\ the\ plugin=\u05E1\u05DE\u05DF \u05DC\u05D4\u05EA\u05E7\u05E0\u05EA \u05D4\u05EA\u05D5\u05E1\u05E3 -Download\ now\ and\ install\ after\ restart=\u05D4\u05D5\u05E8\u05D3 \u05DB\u05E2\u05EA \u05D5\u05D4\u05EA\u05E7\u05DF \u05DC\u05D0\u05D7\u05E8 \u05D0\u05EA\u05D7\u05D5\u05DC -Filter=\u05E1\u05E0\u05DF -Install=\u05D4\u05EA\u05E7\u05DF -Install\ without\ restart=\u05D4\u05EA\u05E7\u05DF \u05DC\u05DC\u05D0 \u05D0\u05EA\u05D7\u05D5\u05DC -Installed=\u05DE\u05D5\u05EA\u05E7\u05DF -Name=\u05E9\u05DD -Version=\u05D2\u05E8\u05E1\u05D4 +Check\ to\ install\ the\ plugin=סמן להתקנת התוסף +Download\ now\ and\ install\ after\ restart=הורד כעת והתקן ל×חר ×תחול +Filter=סנן +Install=התקן +Install\ without\ restart=התקן ×œ×œ× ×תחול +Installed=מותקן +Name=×©× +Version=גרסה diff --git a/core/src/main/resources/hudson/PluginManager/table_hu.properties b/core/src/main/resources/hudson/PluginManager/table_hu.properties index d9ad06d92613..e99b7e0e37dc 100644 --- a/core/src/main/resources/hudson/PluginManager/table_hu.properties +++ b/core/src/main/resources/hudson/PluginManager/table_hu.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ to\ install\ the\ plugin=Jel\u00F6lje ki a plugin telep\u00EDt\u00E9s\u00E9hez -Click\ this\ heading\ to\ sort\ by\ category=Nyomjon erre a c\u00EDmre kateg\u00F3ri\u00E1k szerinti rendez\u00E9shez -Download\ now\ and\ install\ after\ restart=Let\u00F6lti most \u00E9s \u00FAjraind\u00EDt\u00E1s ut\u00E1n telep\u00EDt -Install=Telep\u00EDt\u00E9s -Install\ without\ restart=Telep\u00EDt\u00E9s \u00FAjraind\u00EDt\u00E1s n\u00E9lk\u00FCl -Installed=Telep\u00EDtett -Name=N\u00E9v -No\ updates=Nincsenek el\u00E9rhet\u0151 friss\u00EDt\u00E9sek -Version=Verzi\u00F3 +Check\ to\ install\ the\ plugin=Jelölje ki a plugin telepítéséhez +Click\ this\ heading\ to\ sort\ by\ category=Nyomjon erre a címre kategóriák szerinti rendezéshez +Download\ now\ and\ install\ after\ restart=Letölti most és újraindítás után telepít +Install=Telepítés +Install\ without\ restart=Telepítés újraindítás nélkül +Installed=Telepített +Name=Név +No\ updates=Nincsenek elérhetÅ‘ frissítések +Version=Verzió diff --git a/core/src/main/resources/hudson/PluginManager/table_it.properties b/core/src/main/resources/hudson/PluginManager/table_it.properties index 4b62e3f54c4e..4845fcfdeff2 100644 --- a/core/src/main/resources/hudson/PluginManager/table_it.properties +++ b/core/src/main/resources/hudson/PluginManager/table_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,20 +21,20 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -adoptThisPlugin=Questo componente aggiuntivo è pronto per \ +adoptThisPlugin=Questo componente aggiuntivo è pronto per \ l''adozione! Stiamo cercando nuovi manutentori. Visitare la pagina \ dell''iniziativa Adotta un componente aggiuntivo per ulteriori \ informazioni. ago={0} fa Applying\ this\ update\ will\ address\ security\ vulnerabilities\ in\ the\ currently\ installed\ version.=\ - L''applicazione di questo aggiornamento correggerà delle vulnerabilità di \ + L''applicazione di questo aggiornamento correggerà delle vulnerabilità di \ sicurezza presenti nella versione attualmente installata. Check\ to\ install\ the\ plugin=Selezionare la casella per installare il \ componente aggiuntivo -compatWarning=Avviso: la nuova versione di questo componente aggiuntivo è \ - contrassegnata come non compatibile con la versione installata. Ciò accade \ - solitamente perché il suo comportamento è cambiato o perché utilizza un \ +compatWarning=Avviso: la nuova versione di questo componente aggiuntivo è \ + contrassegnata come non compatibile con la versione installata. Ciò accade \ + solitamente perché il suo comportamento è cambiato o perché utilizza un \ formato di salvataggio delle impostazioni diverso da quello della versione \ installata. Potrebbe essere necessario riconfigurare i processi che \ utilizzano questo componente aggiuntivo e/o non si potrebbe essere in grado \ @@ -42,12 +42,12 @@ compatWarning=Avviso: la nuova versione di questo componente aggiuntivo manualmente le vecchie impostazioni. Consultare le note di rilascio del \ componente aggiuntivo per i dettagli. coreWarning=Avviso: questo componente aggiuntivo richiede Jenkins {0} o \ - una versione più recente. Jenkins rifiuterà di avviarsi se questo \ - componente aggiuntivo è installato. + una versione più recente. Jenkins rifiuterà di avviarsi se questo \ + componente aggiuntivo è installato. depCompatWarning=Avviso: questo componente aggiuntivo richiede una versione \ - più recente di una o più dipendenze e almeno uno di questi componenti \ - aggiuntivi non è compatibile con la versione installata. Ciò accade \ - solitamente perché il suo comportamento è cambiato o perché utilizza un \ + più recente di una o più dipendenze e almeno uno di questi componenti \ + aggiuntivi non è compatibile con la versione installata. Ciò accade \ + solitamente perché il suo comportamento è cambiato o perché utilizza un \ formato di salvataggio delle impostazioni diverso da quello della versione \ installata. Potrebbe essere necessario riconfigurare i processi che \ utilizzano questo componente aggiuntivo e/o non si potrebbe essere in grado \ @@ -56,9 +56,9 @@ depCompatWarning=Avviso: questo componente aggiuntivo richiede una versione \ componente aggiuntivo per i dettagli. depCoreWarning=Avviso: questo componente aggiuntivo dipende da altri \ componenti che richiedono Jenkins {0} o una versione successiva. Jenkins si \ - rifiuterà di caricare le dipendenze che richiedono una versione più recente \ + rifiuterà di caricare le dipendenze che richiedono una versione più recente \ di Jenkins e, a sua volta, il caricamento di questo componente aggiuntivo \ - non riuscirà. + non riuscirà. Download\ now\ and\ install\ after\ restart=Scarica ora ed esegui \ l''installazione dopo il riavvio filter=Filtra @@ -70,16 +70,6 @@ instructions=Utilizzare la casella di ricerca soprastante per cercare i \ componenti aggiuntivi disponibili. loading=Caricamento elenco componenti aggiuntivi in corso... Name=Nome -newerVersionEntry=Questa versione del componente aggiuntivo esiste ma non è \ - offerta come aggiornamento. Questo è il caso tipico se non sono soddisfatti \ - dei requisiti relativi ai componenti aggiuntivi, ad es. disporre di una \ - versione recente di Jenkins. Si veda la \ - documentazione del componente aggiuntivo \ - per ulteriori informazioni relative ai suoi requisiti. -newerVersionExists=Per questo componente aggiuntivo esiste una versione più \ - recente di quella offerta per l''installazione (versione {0}). Questo è il \ - caso tipico se non sono soddisfatti dei requisiti relativi ai componenti \ - aggiuntivi, ad es. disporre di una versione recente di Jenkins. No\ updates=Nessun aggiornamento disponibile parentCompatWarning=I seguenti componenti aggiuntivi sono affetti da questo \ problema: diff --git a/core/src/main/resources/hudson/PluginManager/table_ja.properties b/core/src/main/resources/hudson/PluginManager/table_ja.properties index 18b4d1697a5d..bd748f6376b2 100644 --- a/core/src/main/resources/hudson/PluginManager/table_ja.properties +++ b/core/src/main/resources/hudson/PluginManager/table_ja.properties @@ -20,30 +20,30 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ to\ install\ the\ plugin=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u30c1\u30a7\u30c3\u30af -Click\ this\ heading\ to\ sort\ by\ category=\u30af\u30ea\u30c3\u30af\u3067\u30bd\u30fc\u30c8 -Name=\u540d\u524d -Version=\u30d0\u30fc\u30b8\u30e7\u30f3 -Installed=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u6e08\u307f -No\ updates=\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u5bfe\u8c61\u306a\u3057 -Install\ without\ restart=\u518d\u8d77\u52d5\u305b\u305a\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb +Check\ to\ install\ the\ plugin=インストールã™ã‚‹ãƒ—ラグインをãƒã‚§ãƒƒã‚¯ +Click\ this\ heading\ to\ sort\ by\ category=クリックã§ã‚½ãƒ¼ãƒˆ +Name=åå‰ +Version=ãƒãƒ¼ã‚¸ãƒ§ãƒ³ +Installed=インストール済㿠+No\ updates=アップデート対象ãªã— +Install\ without\ restart=å†èµ·å‹•ã›ãšã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ« compatWarning=\ - \u8b66\u544a: \u65b0\u3057\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u306f\u4e92\u63db\u6027\u304c\u3042\u308a\u307e\u305b\u3093\u3002\ - \u3053\u306e\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u4f7f\u7528\u3059\u308b\u30b8\u30e7\u30d6\u3092\u518d\u8a2d\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u3002 + 警告: æ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã‚‹ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã¨ã¯äº’æ›æ€§ãŒã‚ã‚Šã¾ã›ã‚“。\ + ã“ã®ãƒ—ラグインを使用ã™ã‚‹ã‚¸ãƒ§ãƒ–ã‚’å†è¨­å®šã™ã‚‹å¿…è¦ãŒã‚ã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。 coreWarning=\ - \u8b66\u544a: \u3053\u306e\u30d7\u30e9\u30b0\u30a4\u30f3\u306f\u3001Jenkins {0} \u4ee5\u4e0a\u7528\u306b\u30d3\u30eb\u30c9\u3055\u308c\u3066\u3044\u307e\u3059\u3002 \ - \u3042\u306a\u305f\u306eJenkins\u3067\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308b\u304b\u3069\u3046\u304b\u5206\u304b\u308a\u307e\u305b\u3093\u3002 + 警告: ã“ã®ãƒ—ラグインã¯ã€Jenkins {0} 以上用ã«ãƒ“ルドã•ã‚Œã¦ã„ã¾ã™ã€‚ \ + ã‚ãªãŸã®Jenkinsã§æ­£å¸¸ã«å‹•ä½œã™ã‚‹ã‹ã©ã†ã‹åˆ†ã‹ã‚Šã¾ã›ã‚“。 depCompatWarning=\ - \u8b66\u544a: \u3053\u306e\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u4f9d\u5b58\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\ - \u3053\u308c\u3089\u306e\u4f9d\u5b58\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u306b\u306f\u3001\u73fe\u5728\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u6e08\u307f\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u4e92\u63db\u6027\u304c\u306a\u3044\u3082\u306e\u304c\u3042\u308b\u306e\u3067\u3001\ - \u4f7f\u7528\u3057\u3066\u3044\u308b\u30b8\u30e7\u30d6\u3092\u518d\u8a2d\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u3002 + 警告: ã“ã®ãƒ—ラグインãŒä¾å­˜ã™ã‚‹ãƒ—ラグインをアップデートã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚\ + ã“れらã®ä¾å­˜ã™ã‚‹ãƒ—ラグインã«ã¯ã€ç¾åœ¨ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«æ¸ˆã¿ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã¨äº’æ›æ€§ãŒãªã„ã‚‚ã®ãŒã‚ã‚‹ã®ã§ã€\ + 使用ã—ã¦ã„るジョブをå†è¨­å®šã™ã‚‹å¿…è¦ãŒã‚ã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。 depCoreWarning=\ - \u8b66\u544a: \u3053\u306e\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u4f9d\u5b58\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u3001Jenkins {0} \u4ee5\u964d\u7528\u306b\u30d3\u30eb\u30c9\u3055\u308c\u3066\u3044\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\ - \u3053\u306e\u4f9d\u5b58\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u306f\u3001\u3042\u306a\u305f\u306eJenkins\u3067\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308b\u304b\u3069\u3046\u304b\u308f\u304b\u308a\u307e\u305b\u3093\u306e\u3067\u3001\ - \u3053\u306e\u30d7\u30e9\u30b0\u30a4\u30f3\u81ea\u8eab\u3082\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308b\u304b\u3069\u3046\u304b\u5206\u304b\u308a\u307e\u305b\u3093\u3002 + 警告: ã“ã®ãƒ—ラグインãŒä¾å­˜ã™ã‚‹ãƒ—ラグインãŒã€Jenkins {0} 以é™ç”¨ã«ãƒ“ルドã•ã‚Œã¦ã„ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚\ + ã“ã®ä¾å­˜ã™ã‚‹ãƒ—ラグインã¯ã€ã‚ãªãŸã®Jenkinsã§æ­£å¸¸ã«å‹•ä½œã™ã‚‹ã‹ã©ã†ã‹ã‚ã‹ã‚Šã¾ã›ã‚“ã®ã§ã€\ + ã“ã®ãƒ—ラグイン自身も正常ã«å‹•ä½œã™ã‚‹ã‹ã©ã†ã‹åˆ†ã‹ã‚Šã¾ã›ã‚“。 -Inactive=\u4e0d\u6d3b\u6027 -Update\ Center=\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u30bb\u30f3\u30bf\u30fc -Download\ now\ and\ install\ after\ restart=\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u3066\u518d\u8d77\u52d5\u5f8c\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb -Install=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb -Filter=\u30d5\u30a3\u30eb\u30bf\u30fc +Inactive=ä¸æ´»æ€§ +Update\ Center=アップデートセンター +Download\ now\ and\ install\ after\ restart=ダウンロードã—ã¦å†èµ·å‹•å¾Œã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ« +Install=インストール +Filter=フィルター diff --git a/core/src/main/resources/hudson/PluginManager/table_ko.properties b/core/src/main/resources/hudson/PluginManager/table_ko.properties index 015e6abae7fb..66d05a4f5832 100644 --- a/core/src/main/resources/hudson/PluginManager/table_ko.properties +++ b/core/src/main/resources/hudson/PluginManager/table_ko.properties @@ -20,14 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ to\ install\ the\ plugin=\uD50C\uB7EC\uADF8\uC778 \uC124\uCE58 \uD655\uC778 -Click\ this\ heading\ to\ sort\ by\ category=\uC815\uB82C\uD558\uB824\uBA74 \uC5EC\uAE30\uB97C \uD074\uB9AD -Download\ now\ and\ install\ after\ restart=\uC9C0\uAE08 \uB2E4\uC6B4\uB85C\uB4DC\uD558\uACE0 \uC7AC\uC2DC\uC791 \uD6C4 \uC124\uCE58\uD558\uAE30 -Filter=\uD544\uD130 -Install=\uC124\uCE58 -Install\ without\ restart=\uC7AC\uC2DC\uC791 \uC5C6\uC774 \uC124\uCE58\uD558\uAE30 -Installed=\uC124\uCE58\uB428 -Name=\uC774\uB984 -No\ updates=\uC5C5\uB370\uC774\uD2B8\uD560 \uAC83\uC774 \uC5C6\uC74C -Version=\uBC84\uC804 -coreWarning=\uC8FC\uC758: \uC774 \uD50C\uB7EC\uADF8\uC778\uC740 Jenkins {0} \uBC84\uC804 \uC774\uD6C4\uC5D0\uC11C \uB9CC\uB4E4\uC5B4\uC84C\uC2B5\uB2C8\uB2E4. \uD604 Jenkins\uC5D0\uC11C \uB3D9\uC791\uD558\uC9C0 \uC54A\uC744 \uC218 \uC788\uC2B5\uB2C8\uB2E4. +Check\ to\ install\ the\ plugin=í”ŒëŸ¬ê·¸ì¸ ì„¤ì¹˜ í™•ì¸ +Click\ this\ heading\ to\ sort\ by\ category=정렬하려면 여기를 í´ë¦­ +Download\ now\ and\ install\ after\ restart=지금 다운로드하고 재시작 후 설치하기 +Filter=í•„í„° +Install=설치 +Install\ without\ restart=재시작 ì—†ì´ ì„¤ì¹˜í•˜ê¸° +Installed=ì„¤ì¹˜ë¨ +Name=ì´ë¦„ +No\ updates=ì—…ë°ì´íŠ¸í•  ê²ƒì´ ì—†ìŒ +Version=버전 +coreWarning=주ì˜: ì´ í”ŒëŸ¬ê·¸ì¸ì€ Jenkins {0} 버전 ì´í›„ì—ì„œ 만들어졌습니다. 현 Jenkinsì—ì„œ ë™ìž‘하지 ì•Šì„ ìˆ˜ 있습니다. diff --git a/core/src/main/resources/hudson/PluginManager/table_lt.properties b/core/src/main/resources/hudson/PluginManager/table_lt.properties index bebbd9b96b7d..e861c3dce65a 100644 --- a/core/src/main/resources/hudson/PluginManager/table_lt.properties +++ b/core/src/main/resources/hudson/PluginManager/table_lt.properties @@ -1,11 +1,11 @@ # This file is under the MIT License by authors -Check\ to\ install\ the\ plugin=Pa\u017Eym\u0117kite, kad \u012Fdiegtum\u0117te pried\u0105 -Download\ now\ and\ install\ after\ restart=Atsi\u0173sti dabar ir \u012Fdiegti po perstartavimo +Check\ to\ install\ the\ plugin=PažymÄ—kite, kad įdiegtumÄ—te priedÄ… +Download\ now\ and\ install\ after\ restart=Atsiųsti dabar ir įdiegti po perstartavimo Filter=Filtras -Install=\u012Ediegti -Install\ without\ restart=\u012Ediegti be perstartavimo -Installed=\u012Ediegta +Install=Ä®diegti +Install\ without\ restart=Ä®diegti be perstartavimo +Installed=Ä®diegta Name=Pavadinimas Version=Versija -coreWarning=\u012Esp\u0117jimas: \u0161is priedas sukurtas {0} arba naujesnei Jenkins versijai. Jis gali veikti, o gali ir neveikti su j\u016Bs\u0173 Jenkins. +coreWarning=Ä®spÄ—jimas: Å¡is priedas sukurtas {0} arba naujesnei Jenkins versijai. Jis gali veikti, o gali ir neveikti su jÅ«sų Jenkins. diff --git a/core/src/main/resources/hudson/PluginManager/table_lv.properties b/core/src/main/resources/hudson/PluginManager/table_lv.properties index cf863360bbfe..718aa930a981 100644 --- a/core/src/main/resources/hudson/PluginManager/table_lv.properties +++ b/core/src/main/resources/hudson/PluginManager/table_lv.properties @@ -20,16 +20,16 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ to\ install\ the\ plugin=Ie\u0137es\u0113 lai uzst\u0101d\u012Btu spraud\u0146us -Click\ this\ heading\ to\ sort\ by\ category=Noklik\u0161\u0137ini \u0161o virsrakstu, lai k\u0101rtotu p\u0113c kategorijas -Download\ now\ and\ install\ after\ restart=Lejupl\u0101d\u0113t tagad un instal\u0113t p\u0113c p\u0101rstart\u0113\u0161anas +Check\ to\ install\ the\ plugin=IeÄ·esÄ“ lai uzstÄdÄ«tu spraudņus +Click\ this\ heading\ to\ sort\ by\ category=NoklikÅ¡Ä·ini Å¡o virsrakstu, lai kÄrtotu pÄ“c kategorijas +Download\ now\ and\ install\ after\ restart=LejuplÄdÄ“t tagad un instalÄ“t pÄ“c pÄrstartÄ“Å¡anas Filter=Filtrs -Inactive=Neakt\u012Bvs -Install=Uzst\u0101d\u012Bt -Install\ without\ restart=Instal\u0113t bez p\u0101rstart\u0113\u0161anas -Installed=Uzst\u0101d\u012Btie +Inactive=NeaktÄ«vs +Install=UzstÄdÄ«t +Install\ without\ restart=InstalÄ“t bez pÄrstartÄ“Å¡anas +Installed=UzstÄdÄ«tie Name=Nosaukums -No\ updates=Nav atjaunin\u0101jumu +No\ updates=Nav atjauninÄjumu Version=Versija -compatWarning=Br\u012Bdin\u0101jums: Jaun\u0101 versija nav savietojama ar eso\u0161o uzst\u0101d\u012Bto spraud\u0146a versiju. Jobs, kuri izmanto \u0161o spraudni, var b\u016Bt par iemeslu \u0161o Jobu p\u0101rkonfigur\u0101cijai. -coreWarning=Br\u012Bdin\u0101jums: \u0160is spraudnis ir paredz\u0113ts Jenkins {0} un jaun\u0101kai versijai. Tas var gan str\u0101d\u0101t, gan nestr\u0101d\u0101t ar J\u016Bsu Jenkins instal\u0101ciju. +compatWarning=BrÄ«dinÄjums: JaunÄ versija nav savietojama ar esoÅ¡o uzstÄdÄ«to spraudņa versiju. Jobs, kuri izmanto Å¡o spraudni, var bÅ«t par iemeslu Å¡o Jobu pÄrkonfigurÄcijai. +coreWarning=BrÄ«dinÄjums: Å is spraudnis ir paredzÄ“ts Jenkins {0} un jaunÄkai versijai. Tas var gan strÄdÄt, gan nestrÄdÄt ar JÅ«su Jenkins instalÄciju. diff --git a/core/src/main/resources/hudson/PluginManager/table_nb_NO.properties b/core/src/main/resources/hudson/PluginManager/table_nb_NO.properties index 1f9bf514c1c7..a99814ea1d65 100644 --- a/core/src/main/resources/hudson/PluginManager/table_nb_NO.properties +++ b/core/src/main/resources/hudson/PluginManager/table_nb_NO.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ to\ install\ the\ plugin=Huk av for \u00E5 installere tilleggsmodulen -Click\ this\ heading\ to\ sort\ by\ category=Klikk denne overskriften for \u00E5 sortere p\u00E5 kategori +Check\ to\ install\ the\ plugin=Huk av for Ã¥ installere tilleggsmodulen +Click\ this\ heading\ to\ sort\ by\ category=Klikk denne overskriften for Ã¥ sortere pÃ¥ kategori Install=Installer Installed=Installert Name=Navn diff --git a/core/src/main/resources/hudson/PluginManager/table_nl.properties b/core/src/main/resources/hudson/PluginManager/table_nl.properties index 695d44137d18..0a4b64fdbec7 100644 --- a/core/src/main/resources/hudson/PluginManager/table_nl.properties +++ b/core/src/main/resources/hudson/PluginManager/table_nl.properties @@ -25,7 +25,7 @@ Download\ now\ and\ install\ after\ restart=Nu downloaden en installeren tijdens Inactive=Inactief Install=Installeren Install\ without\ restart=Installeer zonder herstart -Installed=Ge\u00EFnstalleerd +Installed=Geïnstalleerd Name=Naam Version=Versie No\ updates=Geen nieuwere versies beschikbaar. diff --git a/core/src/main/resources/hudson/PluginManager/table_pl.properties b/core/src/main/resources/hudson/PluginManager/table_pl.properties index 97ba90495491..18edd25c5a0f 100644 --- a/core/src/main/resources/hudson/PluginManager/table_pl.properties +++ b/core/src/main/resources/hudson/PluginManager/table_pl.properties @@ -19,9 +19,9 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Plugin\ Manager=Mened\u017Cer wtyczek -Check\ to\ install\ the\ plugin=Zaznacz aby zainstalowa\u0107 wtyczk\u0119 -Click\ this\ heading\ to\ sort\ by\ category=Kliknij w nag\u0142\u00F3wek by posortowa\u0107 po kategorii +Plugin\ Manager=Menedżer wtyczek +Check\ to\ install\ the\ plugin=Zaznacz aby zainstalować wtyczkÄ™ +Click\ this\ heading\ to\ sort\ by\ category=Kliknij w nagłówek by posortować po kategorii Download\ now\ and\ install\ after\ restart=Pobierz teraz, zainstaluj po ponownym uruchomieniu Filter=Filtruj Inactive=Nieaktywne @@ -30,19 +30,15 @@ Install\ without\ restart=Zainstaluj bez ponownego uruchamiania Released=Opublikowano Installed=Zainstalowana Name=Nazwa -No\ updates=Brak dost\u0119pnych aktualizacji +No\ updates=Brak dostÄ™pnych aktualizacji Version=Wersja -coreWarning=UWAGA: Ten dodatek jest przygotowany dla Jenkinsa w wersji {0} lub nowszej. Mo\u017Ce nie dzia\u0142a\u0107 poprawnie z Twoj\u0105 wersj\u0105 Jenkinsa. +coreWarning=UWAGA: Ten dodatek jest przygotowany dla Jenkinsa w wersji {0} lub nowszej. Może nie dziaÅ‚ać poprawnie z TwojÄ… wersjÄ… Jenkinsa. Update\ Center=Centrum aktualizacji securityWarning= \ -Ostrze\u017Cenie: Ta wtyczka mo\u017Ce nie by\u0107 bezpieczna. Sprawd\u017A nast\u0119puj\u0105ce ostrze\u017Cenia dotycz\u0105ce bezpiecze\u0144stwa: +Ostrzeżenie: Ta wtyczka może nie być bezpieczna. Sprawdź nastÄ™pujÄ…ce ostrzeżenia dotyczÄ…ce bezpieczeÅ„stwa: ago={0} temu adoptThisPlugin=\ - Ta wtyczka czeka na adopcje! Szukamy os\u00F3b ch\u0119tnych rozwija\u0107 t\u0119 wtyczk\u0119. \ - Przeczytaj nasz\u0105 inicjatyw\u0119 Adopt a Plugin, aby uzyska\u0107 wi\u0119cej informacji. -newerVersionEntry=\ - Ta wersja wtyczki istnieje, ale nie jest dost\u0119pna jej aktualizacja. \ - Najcz\u0119\u015Bciej jest to spowodowane tym, \u017Ce np. wtyczka wymaga nowszej wersji Jenkinsa, co nie jest spe\u0142nione. \ - Sprawd\u017A dokumentacje wtyczki celem weryfikacji tych wymaga\u0144. -unavailable=Niedost\u0119pna -Applying\ this\ update\ will\ address\ security\ vulnerabilities\ in\ the\ currently\ installed\ version.=Zainstalowanie tej aktualizacji usunie podatno\u015Bci wyst\u0119puj\u0105ce w aktualnie zainstalowanej wersji. \ No newline at end of file + Ta wtyczka czeka na adopcje! Szukamy osób chÄ™tnych rozwijać tÄ™ wtyczkÄ™. \ + Przeczytaj naszÄ… inicjatywÄ™ Adopt a Plugin, aby uzyskać wiÄ™cej informacji. +unavailable=NiedostÄ™pna +Applying\ this\ update\ will\ address\ security\ vulnerabilities\ in\ the\ currently\ installed\ version.=Zainstalowanie tej aktualizacji usunie podatnoÅ›ci wystÄ™pujÄ…ce w aktualnie zainstalowanej wersji. diff --git a/core/src/main/resources/hudson/PluginManager/table_pt_BR.properties b/core/src/main/resources/hudson/PluginManager/table_pt_BR.properties index e4b00b50d3f1..96c57869dd84 100644 --- a/core/src/main/resources/hudson/PluginManager/table_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginManager/table_pt_BR.properties @@ -21,58 +21,58 @@ # THE SOFTWARE. coreWarning=\ - Aten\u00E7\u00E3o: Esta extens\u00E3o \u00E9 compat\u00EDvel com o Jenkins {0} ou anterior \ - Pode n\u00E3o funcionar corretamente no seu Jenkins + Atenção: Esta extensão é compatível com o Jenkins {0} ou anterior \ + Pode não funcionar corretamente no seu Jenkins compatWarning=\ - Aten\u00E7\u00E3o: Esse plugin n\u00E3o \u00E9 compat\u00EDvel com a vers\u00E3o instalada do Jenkins \ - Tarefas usando esta extens\u00E3o ter\u00E3o que ser reconfiguradas -Version=Vers\u00E3o + Atenção: Esse plugin não é compatível com a versão instalada do Jenkins \ + Tarefas usando esta extensão terão que ser reconfiguradas +Version=Versão Download\ now\ and\ install\ after\ restart=Baixar\ agora\ e\ instalar\ depois\ de\ reiniciar Inactive=Inativo -Check\ to\ install\ the\ plugin=Verifique\ a\ instala\u00E7\u00E3o\ dessa\ extens\u00E3o -No\ updates=Nenhuma\ atualiza\u00E7\u00E3o +Check\ to\ install\ the\ plugin=Verifique\ a\ instalação\ dessa\ extensão +No\ updates=Nenhuma\ atualização Install\ without\ restart=Instalar\ sem\ reiniciar Installed=Instalados Install=Instalar Name=Nome depCoreWarning= \ - Aten\u00E7\u00E3o: Esta extens\u00E3o requer extens\u00F5es de que depende que s\u00E3o constru\u00EDdas para o Jenkins {0} ou mais novo. As \ - extens\u00F5es das quais depende podem n\u00E3o funcionar em seu Jenkins e consequentemente esta extens\u00E3o pode n\u00E3o funcionar \ + Atenção: Esta extensão requer extensões de que depende que são construídas para o Jenkins {0} ou mais novo. As \ + extensões das quais depende podem não funcionar em seu Jenkins e consequentemente esta extensão pode não funcionar \ em seu Jenkins. depCompatWarning= \ - Aten\u00E7\u00E3o: Esta extens\u00E3o requer que extens\u00F5es das quais depende sejam atualizadas e alguns destas extens\u00F5es n\u00E3o s\u00E3o \ - compat\u00EDveis com a vers\u00E3o instalada atualmente. Tarefas usando essas extens\u00F5es podem precisar ser reconfiguradas. -Update\ Center=Central\ de\ Atualiza\u00E7\u00F5es + Atenção: Esta extensão requer que extensões das quais depende sejam atualizadas e alguns destas extensões não são \ + compatíveis com a versão instalada atualmente. Tarefas usando essas extensões podem precisar ser reconfiguradas. +Update\ Center=Central\ de\ Atualizações loading=carregando newerVersionExists= \ - Existe uma vers\u00E3o mais nova (vers\u00E3o {0}) que a oferecida para instala\u00E7\u00E3o portanto as \u00FAltimas corre\u00E7\u00F5es e \ - funcionalidades n\u00E3o estar\u00E3o dispon\u00EDveis para voc\u00EA. Isto \u00E9 tipicamente o caso quando requisitos para uma extens\u00E3o, \ - como por exemplo uma vers\u00E3o mais recente do Jenkins, n\u00E3o est\u00E3o satisfeitos. Se voc\u00EA estiver usando a \u00FAltima vers\u00E3o \ - do Jenkins oferecida esta vers\u00E3o de extens\u00E3o talvez n\u00E3o esteja dispon\u00EDvel para ainda para voc\u00EA. Veja a \ - documenta\u00E7\u00E3o da extens\u00E3o para mais informal\u00F5es sobre seus\ + Existe uma versão mais nova (versão {0}) que a oferecida para instalação portanto as últimas correções e \ + funcionalidades não estarão disponíveis para você. Isto é tipicamente o caso quando requisitos para uma extensão, \ + como por exemplo uma versão mais recente do Jenkins, não estão satisfeitos. Se você estiver usando a última versão \ + do Jenkins oferecida esta versão de extensão talvez não esteja disponível para ainda para você. Veja a \ + documentação da extensão para mais informalões sobre seus\ requisitos. newerVersionEntry= \ - Esta vers\u00E3o da extens\u00E3o existe mas n\u00E3o est\u00E1 sendo oferecida para instala\u00E7\u00E3o portanto as \u00FAltimas corre\u00E7\u00F5es ou \ - funcionalidades n\u00E3o est\u00E3o dispon\u00EDveis para voc\u00EA. Isto \u00E9 tipicamente o caso quando requisitos para uma extens\u00E3o, como\ - por exemplo uma vers\u00E3o mais recente do Jenkins, n\u00E3o est\u00E3o satisfeitos. Se voc\u00EA estiver usando a \u00FAltima vers\u00E3o do \ - Jenkins oferecida esta vers\u00E3o de extens\u00E3o talvez n\u00E3o esteja dispon\u00EDvel para ainda para voc\u00EA. Veja a \ - documenta\u00E7\u00E3o da extens\u00E3o para mais informal\u00F5es sobre \ + Esta versão da extensão existe mas não está sendo oferecida para instalação portanto as últimas correções ou \ + funcionalidades não estão disponíveis para você. Isto é tipicamente o caso quando requisitos para uma extensão, como\ + por exemplo uma versão mais recente do Jenkins, não estão satisfeitos. Se você estiver usando a última versão do \ + Jenkins oferecida esta versão de extensão talvez não esteja disponível para ainda para você. Veja a \ + documentação da extensão para mais informalões sobre \ seus requisitos. -parentDepCompatWarning=As seguintes extens\u00F5es s\u00E3o incompat\u00EDveis: +parentDepCompatWarning=As seguintes extensões são incompatíveis: securityWarning= \ - Aviso: esta vers\u00E3o de extens\u00E3o pode n\u00E3o ser segura para uso. Por favor revise as seguintes notas de seguran\u00E7a: -deprecationWarning=Esta extens\u00E3o est\u00E1 descontinuada.Em geral isto significa que est\u00E1 obsoleta, sem \ - desenvolvimento ativo ou pode n\u00E3o mais funcionar. Vide \ + Aviso: esta versão de extensão pode não ser segura para uso. Por favor revise as seguintes notas de segurança: +deprecationWarning=Esta extensão está descontinuada.Em geral isto significa que está obsoleta, sem \ + desenvolvimento ativo ou pode não mais funcionar. Vide \ maiores detalhes. Released=Liberada -unavailable=Indispon\u00EDvel +unavailable=Indisponível Search=Busca -ago={0} atr\u00E1s -Applying\ this\ update\ will\ address\ security\ vulnerabilities\ in\ the\ currently\ installed\ version.=Aplicar\ esta\ atualiza\u00E7\u00E3o\ ir\u00E1\ endere\u00E7ar\ vulnerabilidades\ de\ seguran\u00E7a\ na\ vers\u00E3o\ atualmente\ instalada. -instructions=instru\u00E7\u00F5es -parentCompatWarning=As seguintes extens\u00F5es ser\u00E3o afetadas: +ago={0} atrás +Applying\ this\ update\ will\ address\ security\ vulnerabilities\ in\ the\ currently\ installed\ version.=Aplicar\ esta\ atualização\ irá\ endereçar\ vulnerabilidades\ de\ segurança\ na\ versão\ atualmente\ instalada. +instructions=instruções +parentCompatWarning=As seguintes extensões serão afetadas: adoptThisPlugin= \ - Esta extens\u00E3o est\u00E1 dispon\u00EDvei para ado\u00E7\u00E3o! Estamos buscando novos mantenedores. Visite nossa \ + Esta extensão está disponívei para adoção! Estamos buscando novos mantenedores. Visite nossa \ iniciativa Adotar uma extens\u00E3o para maiores informa\u00E7\u00F5es. -Plugin\ Manager=Gerenciador de extens\u00F5es + rel="noopener noreferrer" target="_blank">Adotar uma extensão para maiores informações. +Plugin\ Manager=Gerenciador de extensões diff --git a/core/src/main/resources/hudson/PluginManager/table_pt_PT.properties b/core/src/main/resources/hudson/PluginManager/table_pt_PT.properties index df0b099ea039..c5a9654dcf9e 100644 --- a/core/src/main/resources/hudson/PluginManager/table_pt_PT.properties +++ b/core/src/main/resources/hudson/PluginManager/table_pt_PT.properties @@ -8,5 +8,5 @@ Install=Instalar Install\ without\ restart=Instalar sem reinciar Installed=Instalado Name=Nome -No\ updates=Sem atualiza\u00E7\u00F5es -Version=Vers\u00E3o +No\ updates=Sem atualizações +Version=Versão diff --git a/core/src/main/resources/hudson/PluginManager/table_ru.properties b/core/src/main/resources/hudson/PluginManager/table_ru.properties index 4cd524cbe0e9..b5778ff94828 100644 --- a/core/src/main/resources/hudson/PluginManager/table_ru.properties +++ b/core/src/main/resources/hudson/PluginManager/table_ru.properties @@ -20,16 +20,16 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ to\ install\ the\ plugin=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u043b\u0430\u0433\u0438\u043d\u0430 -Click\ this\ heading\ to\ sort\ by\ category=\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043d\u0430 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a \u0434\u043b\u044f \u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0438 \u043f\u043e \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f\u043c -Download\ now\ and\ install\ after\ restart=\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u043e\u0441\u043b\u0435 \u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 -Filter=\u0424\u0438\u043b\u044c\u0442\u0440 -Inactive=\u041d\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0435 -Install=\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c -Install\ without\ restart=\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0431\u0435\u0437 \u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 -Installed=\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e -Name=\u041d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435 -No\ updates=\u041d\u0435\u0442 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0439 -Version=\u0412\u0435\u0440\u0441\u0438\u044f -compatWarning=\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435: \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0435 \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u0430 \u0441 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0435\u0439. \u0414\u043b\u044f \u0437\u0430\u0434\u0430\u0447, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0449\u0438\u0445 \u0434\u0430\u043d\u043d\u044b\u0439 \u043f\u043b\u0430\u0433\u0438\u043d, \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a. -coreWarning=\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435: \u041f\u043b\u0430\u0433\u0438\u043d \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c \u0441 Jenkins \u0432\u0435\u0440\u0441\u0438\u0438 {0} \u0438\u043b\u0438 \u043d\u043e\u0432\u0435\u0435. \u0412\u043e\u0437\u043c\u043e\u0436\u043d\u0430 \u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u0430\u044f \u0440\u0430\u0431\u043e\u0442\u0430 \u043f\u043b\u0430\u0433\u0438\u043d\u0430 \u0441 \u0432\u0430\u0448\u0435\u0439 \u0432\u0435\u0440\u0441\u0438\u0435\u0439 Jenkins. +Check\ to\ install\ the\ plugin=Проверить возможноÑÑ‚ÑŒ уÑтановки плагина +Click\ this\ heading\ to\ sort\ by\ category=Ðажмите на заголовок Ð´Ð»Ñ Ñортировки по категориÑм +Download\ now\ and\ install\ after\ restart=Загрузить и уÑтановить поÑле перезагрузки +Filter=Фильтр +Inactive=Ðеактивные +Install=УÑтановить +Install\ without\ restart=УÑтановить без перезагрузки +Installed=УÑтановлено +Name=Ðаименование +No\ updates=Ðет обновлений +Version=ВерÑÐ¸Ñ +compatWarning=Внимание: Ð½Ð¾Ð²Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ Ð½Ðµ ÑовмеÑтима Ñ ÑƒÑтановленной верÑией. Ð”Ð»Ñ Ð·Ð°Ð´Ð°Ñ‡, иÑпользующих данный плагин, может потребоватьÑÑ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ðµ наÑтроек. +coreWarning=Предупреждение: Плагин ÑовмеÑтим Ñ Jenkins верÑии {0} или новее. Возможна Ð½ÐµÐºÐ¾Ñ€Ñ€ÐµÐºÑ‚Ð½Ð°Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ð° плагина Ñ Ð²Ð°ÑˆÐµÐ¹ верÑией Jenkins. diff --git a/core/src/main/resources/hudson/PluginManager/table_sk.properties b/core/src/main/resources/hudson/PluginManager/table_sk.properties index 67b4593c673e..c4445c33bd0a 100644 --- a/core/src/main/resources/hudson/PluginManager/table_sk.properties +++ b/core/src/main/resources/hudson/PluginManager/table_sk.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ to\ install\ the\ plugin=Ozna\u010Dte ked chcete nain\u0161talova\u0165 plugin -Click\ this\ heading\ to\ sort\ by\ category=Kliknite na z\u00E1hlavie na zoradenie pod\u013Ea kateg\u00F3rie -Download\ now\ and\ install\ after\ restart=Stiahni teraz a in\u0161taluj po re\u0161tarte -Inactive=Neakt\u00EDvny -Install=In\u0161talova\u0165 -Install\ without\ restart=In\u0161taluj bez re\u0161tartu -Installed=In\u0161talovan\u00E1 ver. -Name=N\u00E1zov -No\ updates=\u017Diadne aktualiz\u00E1cie +Check\ to\ install\ the\ plugin=OznaÄte ked chcete nainÅ¡talovaÅ¥ plugin +Click\ this\ heading\ to\ sort\ by\ category=Kliknite na záhlavie na zoradenie podľa kategórie +Download\ now\ and\ install\ after\ restart=Stiahni teraz a inÅ¡taluj po reÅ¡tarte +Inactive=Neaktívny +Install=InÅ¡talovaÅ¥ +Install\ without\ restart=InÅ¡taluj bez reÅ¡tartu +Installed=InÅ¡talovaná ver. +Name=Názov +No\ updates=Žiadne aktualizácie Version=Verzia diff --git a/core/src/main/resources/hudson/PluginManager/table_sr.properties b/core/src/main/resources/hudson/PluginManager/table_sr.properties index f1517b4aa23e..661d66c678b7 100644 --- a/core/src/main/resources/hudson/PluginManager/table_sr.properties +++ b/core/src/main/resources/hudson/PluginManager/table_sr.properties @@ -1,19 +1,19 @@ # This file is under the MIT License by authors -Update\ Center=\u0426\u0435\u043D\u0442\u0430\u0440 \u0437\u0430 \u0410\u0436\u0443\u0440\u0438\u0440\u0430\u045A\u0435 -Filter=\u0424\u0438\u043B\u0442\u0440\u0438\u0440\u0430\u0458 -Check\ to\ install\ the\ plugin=\u0418\u0437\u0430\u0431\u0435\u0440\u0438\u0442\u0435 \u043A\u0432\u0430\u0447\u0438\u0446\u0443 \u0434\u0430 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0442\u0435 \u043C\u043E\u0434\u0443\u043B\u0443 -Click\ this\ heading\ to\ sort\ by\ category=\u041A\u043B\u0438\u043A\u043D\u0438\u0442\u0435 \u043E\u0432\u0430\u0458 \u043D\u0430\u0441\u043B\u043E\u0432 \u0434\u0430 \u0441\u043E\u0440\u0442\u0438\u0440\u0430\u0442\u0435 \u043F\u043E \u043A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u0458\u0438 -Install=\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0458 -Name=\u0418\u043C\u0435 -Version=\u0412\u0435\u0440\u0437\u0438\u0458\u0430 -Installed=\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u043E +Update\ Center=Центар за Ðжурирање +Filter=Филтрирај +Check\ to\ install\ the\ plugin=Изаберите квачицу да инÑталирате модулу +Click\ this\ heading\ to\ sort\ by\ category=Кликните овај наÑлов да Ñортирате по категорији +Install=ИнÑталирај +Name=Име +Version=Верзија +Installed=ИнÑталирано compatWarning=\ - \u0423\u043F\u043E\u0437\u043E\u0440\u0435\u045A\u0435: \u043D\u043E\u0432\u0430 \u0432\u0435\u0440\u0437\u0438\u0458\u0430 \u043C\u043E\u0434\u0443\u043B\u0435 \u043A\u043E\u0440\u0438\u0441\u0442\u0438 \u0434\u0440\u0443\u0433\u0430 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u043D\u0430 \u043E\u0434\u043D\u043E\u0441\u0443 \u043D\u0430 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u0435 \u0432\u0435\u0440\u0437\u0438\u0458\u0435. \u0417\u0430\u0434\u0430\u0446\u0438 \u043A\u043E\u0458\u0438 \u043A\u043E\u0440\u0438\u0441\u0442\u0435 \u043E\u0432\u0443 \u043C\u043E\u0434\u0443\u043B\u0443 \u045B\u0435 \u043C\u043E\u0436\u0434\u0430 \u043C\u043E\u0440\u0430\u0442\u0438 \u0431\u0438\u0442\u0438 \u0434\u0440\u0443\u0433\u0430\u0447\u0438\u0458\u0435 \u043F\u043E\u0434\u0435\u0448\u0435\u043D\u0438, \u0438 \u043C\u043E\u0436\u0434\u0430 \u043D\u0435\u045B\u0435\u0442\u0435 \u043C\u043E\u045B\u0438 \u0432\u0440\u0430\u0442\u0438\u0442\u0438 \u043D\u0430 \u0441\u0442\u0430\u0440\u0438\u0458\u0443 \u0432\u0435\u0440\u0437\u0438\u0458\u0443 \u0431\u0435\u0437 \u0440\u0443\u0447\u043D\u043E\u0433 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430. \u0417\u0430 \u0432\u0438\u0448\u0435 \u0434\u0435\u0442\u0430\u0459\u0430, \u043F\u043E\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 \u0431\u0435\u043B\u0435\u0448\u043A\u0435 \u043E\u0432\u0435 \u043C\u043E\u0434\u0443\u043B\u0435. -coreWarning=\u0423\u043F\u043E\u0437\u043E\u0440\u0435\u045A\u0435: \u041C\u043E\u0434\u0443\u043B\u0430 \u0458\u0435 \u043A\u043E\u043C\u043F\u0430\u0442\u0438\u0431\u0438\u043B\u043D\u0430 \u0441\u0430 Jenkins \u0432\u0435\u0440\u0437\u0438\u0458\u0435 {0} \u0438\u043B\u0438 \u043D\u043E\u0432\u0438\u0458\u0435. \u041C\u043E\u0436\u0434\u0430 \u045B\u0435 \u0440\u0430\u0434\u0438\u0442\u0438 \u0441\u0430 \u0432\u0430\u0448\u043E\u0458 \u0432\u0435\u0440\u0437\u0438\u0458\u0438. -depCompatWarning=\u0423\u043F\u043E\u0437\u043E\u0440\u0435\u045A\u0435: \u043E\u0432\u0430 \u043C\u043E\u0434\u0443\u043B\u0430 \u0437\u0430\u0445\u0442\u0435\u0432\u0430 \u0438\u0441\u043F\u0440\u0430\u0432\u0435 \u043D\u0430\u0434 \u043C\u043E\u0434\u0443\u043B\u0438\u043C\u0430 \u043E\u0434 \u043A\u043E\u0458\u0435 \u043E\u0432\u0430 \u0437\u0430\u0432\u0438\u0441\u043D\u0438. \u041D\u0435\u043A\u0438 \u043E\u0434 \u045A\u0438\u0445 \u043D\u0438\u0441\u0443 \u043A\u043E\u043C\u043F\u0430\u0442\u0438\u0431\u0438\u043B\u043D\u0438 \u0441\u0430 \u0432\u0430\u0448\u043E\u043C \u0432\u0435\u0440\u0437\u0438\u0458\u043E\u043C Jenkins-\u0430. \u041C\u043E\u0440\u0430\u0442\u0435 \u0442\u0430\u043A\u043E\u0452\u0435 \u043F\u043E\u0434\u0435\u0441\u0438\u0442\u0438 \u0437\u0430\u0434\u0430\u0442\u043A\u0435 \u043A\u043E\u0458\u0435 \u0438\u0445 \u043A\u043E\u0440\u0438\u0441\u0442\u0435. -depCoreWarning=\u0423\u043F\u043E\u0437\u043E\u0440\u0435\u045A\u0435: \u043E\u0432\u0430 \u043C\u043E\u0434\u0443\u043B\u0430 \u0437\u0430\u0445\u0442\u0435\u0432\u0430 \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0443 \u0434\u0440\u0443\u0433\u0438\u0445 \u043C\u043E\u0434\u0443\u043B\u0430 \u043A\u043E\u0458\u0435 \u0441\u0443 \u0441\u0430\u043C\u043E \u0437\u0430 Jenkins \u0432\u0435\u0440\u0437\u0438\u0458\u0443 {0} \u0438\u043B\u0438 \u043D\u043E\u0432\u0438\u0458\u0435. \u041F\u043E\u0441\u0442\u043E\u0458\u0438 \u0448\u0430\u043D\u0441\u0430 \u0434\u0430 \u043E\u043D\u0438 \u043D\u0435\u045B\u0435 \u0440\u0430\u0434\u0438\u0442\u0438 \u0441\u0430 \u0432\u0430\u0448\u043E\u043C \u0432\u0435\u0440\u0437\u0438\u0458\u043E\u043C Jenkins-\u0430, \u0442\u0430\u043A\u043E\u0452\u0435 \u0438 \u043E\u0432\u0430. -Inactive=\u041D\u0435\u0430\u043A\u0442\u0438\u0432\u043D\u0435 -No\ updates=\u041D\u0435\u043C\u0430 \u043D\u0430\u0434\u0433\u0440\u0430\u0434\u045A\u0430 -Install\ without\ restart=\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0458 \u0431\u0435\u0437 \u043F\u043E\u043D\u043E\u0432\u043E\u0433 \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0430 -Download\ now\ and\ install\ after\ restart=\u041F\u0440\u0435\u0443\u0437\u043C\u0438 \u0441\u0430\u0434\u0430 \u0438 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0458\u0442\u0435 \u043D\u0430\u043A\u043E\u043D \u043F\u043E\u043D\u043E\u0432\u043E\u0433 \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0430 + Упозорење: нова верзија модуле кориÑти друга подешавања на одноÑу на инÑталиране верзије. Задаци који кориÑте ову модулу ће можда морати бити другачије подешени, и можда нећете моћи вратити на Ñтарију верзију без ручног подешавања. За више детаља, погледајте белешке ове модуле. +coreWarning=Упозорење: Модула је компатибилна Ñа Jenkins верзије {0} или новије. Можда ће радити Ñа вашој верзији. +depCompatWarning=Упозорење: ова модула захтева иÑправе над модулима од које ова завиÑни. Ðеки од њих ниÑу компатибилни Ñа вашом верзијом Jenkins-а. Морате такође подеÑити задатке које их кориÑте. +depCoreWarning=Упозорење: ова модула захтева инÑталацију других модула које Ñу Ñамо за Jenkins верзију {0} или новије. ПоÑтоји шанÑа да они неће радити Ñа вашом верзијом Jenkins-а, такође и ова. +Inactive=Ðеактивне +No\ updates=Ðема надградња +Install\ without\ restart=ИнÑталирај без поновог покретања +Download\ now\ and\ install\ after\ restart=Преузми Ñада и инÑталирајте након поновог покретања diff --git a/core/src/main/resources/hudson/PluginManager/table_sv_SE.properties b/core/src/main/resources/hudson/PluginManager/table_sv_SE.properties index 34fef1b6b030..1fd5fd92593a 100644 --- a/core/src/main/resources/hudson/PluginManager/table_sv_SE.properties +++ b/core/src/main/resources/hudson/PluginManager/table_sv_SE.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ to\ install\ the\ plugin=Markera f\u00F6r att installera insticksmodul -Click\ this\ heading\ to\ sort\ by\ category=Klicka p\u00E5 denna rubrik f\u00F6r att sortera efter kategori +Check\ to\ install\ the\ plugin=Markera för att installera insticksmodul +Click\ this\ heading\ to\ sort\ by\ category=Klicka pÃ¥ denna rubrik för att sortera efter kategori Download\ now\ and\ install\ after\ restart=Ladda ner nu och installera efter omstart. Inactive=Inaktiva Install=Installera @@ -30,5 +30,5 @@ Installed=Installerade Name=Namn No\ updates=Det finns inga uppdateringar Version=Version -compatWarning=Varning: Den nya versionen \u00E4r inte kompatibel med den installerade versionen. Jobb som anv\u00E4nder denna insticksmodulen kan kr\u00E4va omkonfigurering. -coreWarning=Varning: Denna plugin \u00E4r byggd f\u00F6r Jenkins {0} eller nyare. Det \u00E4r inte s\u00E4kert att den fungerar i er installation. +compatWarning=Varning: Den nya versionen är inte kompatibel med den installerade versionen. Jobb som använder denna insticksmodulen kan kräva omkonfigurering. +coreWarning=Varning: Denna plugin är byggd för Jenkins {0} eller nyare. Det är inte säkert att den fungerar i er installation. diff --git a/core/src/main/resources/hudson/PluginManager/table_tr.properties b/core/src/main/resources/hudson/PluginManager/table_tr.properties index b8c3787995e0..5304cdbad2eb 100644 --- a/core/src/main/resources/hudson/PluginManager/table_tr.properties +++ b/core/src/main/resources/hudson/PluginManager/table_tr.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ to\ install\ the\ plugin=Eklentiyi y\u00fcklemek i\u00e7in i\u015faretleyiniz -Download\ now\ and\ install\ after\ restart=\u015Eimdi indir ve yeniden ba\u015Flat\u0131ld\u0131ktan sonra y\u00FCkle +Check\ to\ install\ the\ plugin=Eklentiyi yüklemek için iÅŸaretleyiniz +Download\ now\ and\ install\ after\ restart=Åžimdi indir ve yeniden baÅŸlatıldıktan sonra yükle Filter=Filtre -Install=Y\u00fckle -Install\ without\ restart=Yeniden ba\u015Flatmadan y\u00FCkle -Installed=Y\u00FCkl\u00FC -Name=\u0130sim +Install=Yükle +Install\ without\ restart=Yeniden baÅŸlatmadan yükle +Installed=Yüklü +Name=Ä°sim Version=Versiyon -No\ updates=Herhangi bir g\u00fcncelleme bulunmuyor +No\ updates=Herhangi bir güncelleme bulunmuyor diff --git a/core/src/main/resources/hudson/PluginManager/table_uk.properties b/core/src/main/resources/hudson/PluginManager/table_uk.properties index e057ecf6afc9..4784cbe161df 100644 --- a/core/src/main/resources/hudson/PluginManager/table_uk.properties +++ b/core/src/main/resources/hudson/PluginManager/table_uk.properties @@ -1,9 +1,9 @@ # This file is under the MIT License by authors -Check\ to\ install\ the\ plugin=\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044C \u0434\u043E\u0434\u0430\u0442\u043E\u043A \u0434\u043B\u044F \u0439\u043E\u0433\u043E \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F -Download\ now\ and\ install\ after\ restart=\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438 \u0437\u0430\u0440\u0430\u0437 \u0442\u0430 \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u0438 \u043F\u0456\u0441\u043B\u044F \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A\u0443 -Filter=\u0424\u0456\u043B\u044C\u0442\u0440 -Install=\u0412\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u0438 -Install\ without\ restart=\u0412\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u0438 \u0431\u0435\u0437 \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A\u0443 -Name=\u041D\u0430\u0437\u0432\u0430 -Version=\u0412\u0435\u0440\u0441\u0456\u044F +Check\ to\ install\ the\ plugin=Виберіть додаток Ð´Ð»Ñ Ð¹Ð¾Ð³Ð¾ вÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ +Download\ now\ and\ install\ after\ restart=Завантажити зараз та вÑтановити піÑÐ»Ñ Ð¿ÐµÑ€ÐµÐ·Ð°Ð¿ÑƒÑку +Filter=Фільтр +Install=Ð’Ñтановити +Install\ without\ restart=Ð’Ñтановити без перезапуÑку +Name=Ðазва +Version=ВерÑÑ–Ñ diff --git a/core/src/main/resources/hudson/PluginManager/table_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/table_zh_TW.properties index 71b163f17409..fc8355832860 100644 --- a/core/src/main/resources/hudson/PluginManager/table_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/table_zh_TW.properties @@ -20,34 +20,34 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -compatWarning=\u8b66\u544a\: \u65b0\u7248\u672c\u4e0d\u76f8\u5bb9\u65bc\u73fe\u5728\u5b89\u88dd\u7684\u7248\u672c\u3002\u9019\u901a\u5e38\u662f\u56e0\u70ba\u5b83\u672c\u8eab\u7684\u884c\u70ba\u6a21\u5f0f\u6709\u66f4\u52d5\uff0c\u6216\u5b83\u7684\u8a2d\u5b9a\u503c\u683c\u5f0f\u4e0d\u540c\u65bc\u76ee\u524d\u7248\u672c\u3002\u4f7f\u7528\u6b64\u5916\u639b\u7684\u4f5c\u696d\u53ef\u80fd\u9700\u8981\u91cd\u65b0\u8a2d\u5b9a\u3002\u60a8\u53ef\u80fd\u5f97\u624b\u52d5\u9084\u539f\u820a\u8a2d\u5b9a\u503c\u624d\u80fd\u9084\u539f\u5230\u820a\u7248\u3002\u8a73\u60c5\u8acb\u53c3\u8003\u6b64\u5916\u639b\u7684\u767c\u884c\u8cc7\u8a0a\u3002 -parentDepCompatWarning=\u4e0b\u5217\u5916\u639b\u4e0d\u76f8\u5bb9\: -parentCompatWarning=\u4e0b\u5217\u5916\u639b\u6703\u53d7\u5230\u5f71\u97ff\: -coreWarning=\u8b66\u544a\: \u9019\u500b\u5916\u639b\u7a0b\u5f0f\u662f\u70ba Jenkins {0} \u4e4b\u5f8c\u7684\u7248\u672c\u8a2d\u8a08\u3002\u5728\u60a8\u76ee\u524d\u7684 Jenkins \u4e0d\u898b\u5f97\u53ef\u4ee5\u6b63\u5e38\u904b\u4f5c\u3002 -depCompatWarning=\u8b66\u544a\: \u6b64\u5916\u639b\u9700\u8981\u66f4\u65b0\u76f8\u4f9d\u6027\u5916\u639b\uff0c\u4e14\u5176\u4e2d\u81f3\u5c11\u6709\u4e00\u500b\u4e0d\u76f8\u5bb9\u65bc\u76ee\u524d\u7248\u672c\u3002\u9019\u901a\u5e38\u662f\u56e0\u70ba\u5b83\u672c\u8eab\u7684\u884c\u70ba\u6a21\u5f0f\u6709\u66f4\u52d5\uff0c\u6216\u5b83\u7684\u8a2d\u5b9a\u503c\u683c\u5f0f\u4e0d\u540c\u65bc\u76ee\u524d\u7248\u672c\u3002\u4f7f\u7528\u6b64\u5916\u639b\u7684\u4f5c\u696d\u53ef\u80fd\u9700\u8981\u91cd\u65b0\u8a2d\u5b9a\u3002\u60a8\u53ef\u80fd\u5f97\u624b\u52d5\u9084\u539f\u820a\u8a2d\u5b9a\u503c\u624d\u80fd\u9084\u539f\u5230\u820a\u7248\u3002\u8a73\u60c5\u8acb\u53c3\u8003\u6b64\u5916\u639b\u7684\u767c\u884c\u8cc7\u8a0a\u3002 -depCoreWarning=\u8b66\u544a\: \u9019\u500b\u5916\u639b\u7684\u76f8\u4f9d\u6027\u5916\u639b\u9700\u8981 Jenkins {0} \u6216\u66f4\u65b0\u7248\u672c\u3002Jenkins \u5c07\u6703\u62d2\u7d55\u8f09\u5165\u8a72\u76f8\u4f9d\u6027\u5916\u639b\uff0c\u9019\u6703\u5c0e\u81f4\u9019\u500b\u5916\u639b\u8f09\u5165\u5931\u6557\u3002 -securityWarning=\u8b66\u544a\: \u9019\u500b\u7248\u672c\u7684\u5916\u639b\u7528\u8d77\u4f86\u53ef\u80fd\u4e0d\u5b89\u5168\u3002\u8acb\u67e5\u770b\u4e0b\u5217\u5b89\u5168\u6027\u9808\u77e5\: -ago={0}\u524d -adoptThisPlugin=\u6b64\u5916\u639b\u958b\u653e\u8a8d\u990a\uff01\u6211\u5011\u6b63\u5728\u5c0b\u627e\u65b0\u7684\u7dad\u8b77\u8005\uff0c\u8acb\u9020\u8a2a Adopt a Plugin \u53d6\u5f97\u66f4\u591a\u8cc7\u8a0a\u3002 -newerVersionExists=\u5df2\u63d0\u4f9b\u6bd4\u5b89\u88dd\u9084\u6709\u66f4\u65b0\u7684\u7248\u672c (\u7248\u672c {0}) \u56e0\u6b64\u7121\u6cd5\u63d0\u4f9b\u60a8\u6700\u65b0\u7684\u932f\u8aa4\u4fee\u5fa9\u548c\u65b0\u529f\u80fd\u3002\u9019\u901a\u5e38\u662f\u5916\u639b\u7684\u8981\u6c42\uff0c\u4f8b\u5982\: \u4e0d\u76f8\u5bb9\u65bc\u6700\u8fd1\u7684 Jenkins \u7248\u672c\u3002\n\u5982\u679c\u60a8\u5df2\u7d93\u5728\u4f7f\u7528\u6700\u65b0\u7248\u7684 Jenkins\uff0c\u65b0\u7248\u7684\u5916\u639b\u53ef\u80fd\u9084\u6c92\u5411\u60a8\u7684 Release Line \u63a8\u51fa\u3002\u8a73\u60c5\u8acb\u67e5\u770b\u5916\u639b\u6587\u4ef6\u4ee5\u4e86\u89e3\u6b64\u8981\u6c42\u3002 -newerVersionEntry=\u6b64\u7248\u672c\u7684\u5916\u639b\u5b58\u5728\u4f46\u4e0d\u63d0\u4f9b\u5b89\u88dd\uff0c\u56e0\u6b64\u7121\u6cd5\u63d0\u4f9b\u60a8\u6700\u65b0\u7684\u932f\u8aa4\u4fee\u5fa9\u548c\u65b0\u529f\u80fd\u3002\u9019\u901a\u5e38\u662f\u5916\u639b\u7684\u8981\u6c42\uff0c\u4f8b\u5982\: \u4e0d\u76f8\u5bb9\u65bc\u6700\u8fd1\u7684 Jenkins \u7248\u672c\u3002\n\u5982\u679c\u60a8\u5df2\u7d93\u5728\u4f7f\u7528\u6700\u65b0\u7248\u7684 Jenkins\uff0c\u65b0\u7248\u7684\u5916\u639b\u53ef\u80fd\u9084\u6c92\u5411\u60a8\u7684 Release Line \u63a8\u51fa\u3002\u8a73\u60c5\u8acb\u67e5\u770b\u5916\u639b\u6587\u4ef6\u4ee5\u4e86\u89e3\u6b64\u8981\u6c42\u3002 -unavailable=\u7121\u6cd5\u4f7f\u7528 -deprecationWarning=\u6b64\u5916\u639b\u5df2\u68c4\u7528\u3002\u9019\u901a\u5e38\u8868\u793a\u5b83\u53ef\u80fd\u5df2\u904e\u6642\u3001\u4e0d\u518d\u7e7c\u7e8c\u958b\u767c\u3001\u4e0d\u518d\u6b63\u5e38\u904b\u4f5c\u7b49\u3002\u4e86\u89e3\u66f4\u591a\u3002 -Update\ Center=\u66f4\u65b0\u4e2d\u5fc3 -Filter=\u7be9\u9078 -Check\ to\ install\ the\ plugin=\u6838\u53d6\u4ee5\u5b89\u88dd\u5916\u639b -Click\ this\ heading\ to\ sort\ by\ category=\u5728\u6a19\u984c\u4e0a\u6309\u4e00\u4e0b\u53ef\u4ee5\u4f9d\u985e\u5225\u9032\u884c\u6392\u5e8f -Install=\u5b89\u88dd -Name=\u540d\u7a31 -Version=\u7248\u672c -Installed=\u5df2\u5b89\u88dd -Inactive=\u505c\u7528 -No\ updates=\u6c92\u6709\u66f4\u65b0 -Install\ without\ restart=\u5b89\u88dd\u5f8c\u4e0d\u91cd\u65b0\u555f\u52d5 -Download\ now\ and\ install\ after\ restart=\u4e0b\u8f09\u4e26\u65bc\u91cd\u65b0\u555f\u52d5\u5f8c\u5b89\u88dd -instructions=\u6307\u5357 -Applying\ this\ update\ will\ address\ security\ vulnerabilities\ in\ the\ currently\ installed\ version.=\u5957\u7528\u6b64\u66f4\u65b0\u53ef\u89e3\u6c7a\u76ee\u524d\u7248\u672c\u4e2d\u7684\u5b89\u5168\u6027\u6f0f\u6d1e\u3002 -loading=\u8f09\u5165\u4e2d -Released=\u767c\u884c\u65bc -Plugin\ Manager=\u5916\u639b\u7e3d\u7ba1 -Search=\u641c\u5c0b +compatWarning=警告\: 新版本ä¸ç›¸å®¹æ–¼ç¾åœ¨å®‰è£çš„版本。這通常是因為它本身的行為模å¼æœ‰æ›´å‹•ï¼Œæˆ–它的設定值格å¼ä¸åŒæ–¼ç›®å‰ç‰ˆæœ¬ã€‚使用此外掛的作業å¯èƒ½éœ€è¦é‡æ–°è¨­å®šã€‚您å¯èƒ½å¾—手動還原舊設定值æ‰èƒ½é‚„原到舊版。詳情請åƒè€ƒæ­¤å¤–掛的發行資訊。 +parentDepCompatWarning=下列外掛ä¸ç›¸å®¹\: +parentCompatWarning=下列外掛會å—到影響\: +coreWarning=警告\: 這個外掛程å¼æ˜¯ç‚º Jenkins {0} 之後的版本設計。在您目å‰çš„ Jenkins ä¸è¦‹å¾—å¯ä»¥æ­£å¸¸é‹ä½œã€‚ +depCompatWarning=警告\: 此外掛需è¦æ›´æ–°ç›¸ä¾æ€§å¤–掛,且其中至少有一個ä¸ç›¸å®¹æ–¼ç›®å‰ç‰ˆæœ¬ã€‚這通常是因為它本身的行為模å¼æœ‰æ›´å‹•ï¼Œæˆ–它的設定值格å¼ä¸åŒæ–¼ç›®å‰ç‰ˆæœ¬ã€‚使用此外掛的作業å¯èƒ½éœ€è¦é‡æ–°è¨­å®šã€‚您å¯èƒ½å¾—手動還原舊設定值æ‰èƒ½é‚„原到舊版。詳情請åƒè€ƒæ­¤å¤–掛的發行資訊。 +depCoreWarning=警告\: 這個外掛的相ä¾æ€§å¤–æŽ›éœ€è¦ Jenkins {0} 或更新版本。Jenkins 將會拒絕載入該相ä¾æ€§å¤–掛,這會導致這個外掛載入失敗。 +securityWarning=警告\: 這個版本的外掛用起來å¯èƒ½ä¸å®‰å…¨ã€‚請查看下列安全性須知\: +ago={0}å‰ +adoptThisPlugin=此外掛開放èªé¤Šï¼æˆ‘們正在尋找新的維護者,請造訪 Adopt a Plugin å–得更多資訊。 +newerVersionExists=å·²æ供比安è£é‚„有更新的版本 (版本 {0}) 因此無法æ供您最新的錯誤修復和新功能。這通常是外掛的è¦æ±‚,例如\: ä¸ç›¸å®¹æ–¼æœ€è¿‘çš„ Jenkins 版本。\n如果您已經在使用最新版的 Jenkins,新版的外掛å¯èƒ½é‚„æ²’å‘您的 Release Line 推出。詳情請查看外掛文件以了解此è¦æ±‚。 +newerVersionEntry=此版本的外掛存在但ä¸æ供安è£ï¼Œå› æ­¤ç„¡æ³•æ供您最新的錯誤修復和新功能。這通常是外掛的è¦æ±‚,例如\: ä¸ç›¸å®¹æ–¼æœ€è¿‘çš„ Jenkins 版本。\n如果您已經在使用最新版的 Jenkins,新版的外掛å¯èƒ½é‚„æ²’å‘您的 Release Line 推出。詳情請查看外掛文件以了解此è¦æ±‚。 +unavailable=無法使用 +deprecationWarning=此外掛已棄用。這通常表示它å¯èƒ½å·²éŽæ™‚ã€ä¸å†ç¹¼çºŒé–‹ç™¼ã€ä¸å†æ­£å¸¸é‹ä½œç­‰ã€‚了解更多。 +Update\ Center=更新中心 +Filter=ç¯©é¸ +Check\ to\ install\ the\ plugin=æ ¸å–以安è£å¤–掛 +Click\ this\ heading\ to\ sort\ by\ category=在標題上按一下å¯ä»¥ä¾é¡žåˆ¥é€²è¡ŒæŽ’åº +Install=å®‰è£ +Name=å稱 +Version=版本 +Installed=å·²å®‰è£ +Inactive=åœç”¨ +No\ updates=沒有更新 +Install\ without\ restart=安è£å¾Œä¸é‡æ–°å•Ÿå‹• +Download\ now\ and\ install\ after\ restart=下載並於é‡æ–°å•Ÿå‹•å¾Œå®‰è£ +instructions=æŒ‡å— +Applying\ this\ update\ will\ address\ security\ vulnerabilities\ in\ the\ currently\ installed\ version.=套用此更新å¯è§£æ±ºç›®å‰ç‰ˆæœ¬ä¸­çš„安全性æ¼æ´žã€‚ +loading=載入中 +Released=發行於 +Plugin\ Manager=外掛總管 +Search=æœå°‹ diff --git a/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/description_pt_BR.properties b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/description_pt_BR.properties index 2a8439dbae38..bf4bef8d69fd 100644 --- a/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/description_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/description_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Se qualquer uma das extens\u00F5es falharam ao carregar, isto informa aos administradores sobre o problema. \ -Este \u00E9 um problema severo j\u00E1 que gravar novamente a configura\u00E7\u00E3o neste momento pode resultar em perda de dados de configura\u00E7\u00E3o relacionadas as extens\u00F5es que n\u00E3o puderam ser carregadas. +blurb=Se qualquer uma das extensões falharam ao carregar, isto informa aos administradores sobre o problema. \ +Este é um problema severo já que gravar novamente a configuração neste momento pode resultar em perda de dados de configuração relacionadas as extensões que não puderam ser carregadas. diff --git a/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_bg.properties b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_bg.properties index 0081ab8a84df..d185710d340d 100644 --- a/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_bg.properties +++ b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_bg.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Correct=\ - \u041e\u0442\u0433\u043e\u0432\u0430\u0440\u044f + ÐžÑ‚Ð³Ð¾Ð²Ð°Ñ€Ñ # There are dependency errors loading some plugins DirectlyDependentPlugins.title=\ - \u0418\u043c\u0430 \u0433\u0440\u0435\u0448\u043a\u0438 \u0432 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438\u0442\u0435 \u043d\u0430 \u043d\u044f\u043a\u043e\u0438 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438: + Има грешки в завиÑимоÑтите на нÑкои приÑтавки: diff --git a/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_it.properties b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_it.properties index ba590b387c40..133dce06be89 100644 --- a/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_it.properties +++ b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,7 +21,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurbOriginal=Non è stato possibile caricare alcuni componenti aggiuntivi a \ +blurbOriginal=Non è stato possibile caricare alcuni componenti aggiuntivi a \ causa di alcune dipendenze non soddisfatte. Correggere tali problemi e \ riavviare Jenkins per riabilitare questi componenti aggiuntivi. blurbDerived=Alcuni dei problemi sopra elencati possono causare a loro volta \ diff --git a/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_pl.properties b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_pl.properties index da4136b915fc..7f3fd1f0c969 100644 --- a/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_pl.properties +++ b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_pl.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. Correct=Napraw -DirectlyDependentPlugins.title=Wyst\u0105pi\u0142y b\u0142\u0119dy podczas \u0142adowania niekt\u00F3rych wtyczek -blurbOriginal=Niekt\u00F3re wtyczki nie mog\u0142y zosta\u0107 za\u0142adowane z powodu niewystarczaj\u0105cych zale\u017Cno\u015Bci. Rozwi\u0105\u017C te problemy i uruchom ponownie Jenkinsa, aby korzysta\u0107 z funkcjonalno\u015Bci oferowanych przez te wtyczki. -blurbDerived=Nast\u0119puj\u0105ce wtyczki nie mog\u0142y zosta\u0107 za\u0142adowane z powodu problem\u00F3w wymienionych wy\u017Cej. Rozwi\u0105\u017C je, a wtyczki zostan\u0105 za\u0142adowane ponownie. -IndirectlyDependentPlugins.title=Po\u015Brednio zale\u017Cne wtyczki: +DirectlyDependentPlugins.title=WystÄ…piÅ‚y bÅ‚Ä™dy podczas Å‚adowania niektórych wtyczek +blurbOriginal=Niektóre wtyczki nie mogÅ‚y zostać zaÅ‚adowane z powodu niewystarczajÄ…cych zależnoÅ›ci. Rozwiąż te problemy i uruchom ponownie Jenkinsa, aby korzystać z funkcjonalnoÅ›ci oferowanych przez te wtyczki. +blurbDerived=NastÄ™pujÄ…ce wtyczki nie mogÅ‚y zostać zaÅ‚adowane z powodu problemów wymienionych wyżej. Rozwiąż je, a wtyczki zostanÄ… zaÅ‚adowane ponownie. +IndirectlyDependentPlugins.title=PoÅ›rednio zależne wtyczki: diff --git a/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_pt_BR.properties b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_pt_BR.properties index 33980e86944a..554d8fbbe6dc 100644 --- a/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_pt_BR.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Correct=Corrigir -DirectlyDependentPlugins.title=Erros de depend\u00EAncias -blurbOriginal=Algumas extens\u00F5es n\u00E3o puderam ser carregadas devido a depend\u00EAncias n\u00E3o satisfeitas. Corrigja esses problemas e reinicie o Jenkins para reabilitar essas extens\u00F5es. -IndirectlyDependentPlugins.title=Extens\u00F5es indiretamente dependentes. -blurbDerived=Algumas das falhas acima tamb\u00E9m resultam em extens\u00F5es indiretamente dependentes que n\u00E3o puderam ser carregadas. +DirectlyDependentPlugins.title=Erros de dependências +blurbOriginal=Algumas extensões não puderam ser carregadas devido a dependências não satisfeitas. Corrigja esses problemas e reinicie o Jenkins para reabilitar essas extensões. +IndirectlyDependentPlugins.title=Extensões indiretamente dependentes. +blurbDerived=Algumas das falhas acima também resultam em extensões indiretamente dependentes que não puderam ser carregadas. diff --git a/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_sr.properties b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_sr.properties index bca24ec78675..ae8d59eed009 100644 --- a/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_sr.properties +++ b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Correct=\u041F\u0440\u0430\u0432\u0438\u043B\u043D\u043E +Correct=Правилно diff --git a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_bg.properties b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_bg.properties index 884f05963cdd..c4002725a543 100644 --- a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_bg.properties +++ b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. No\ information\ recorded=\ - \u041b\u0438\u043f\u0441\u0432\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f + ЛипÑва Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ 3rd\ Party\ Dependencies=\ - \u0417\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438 \u043e\u0442 \u043c\u043e\u0434\u0443\u043b\u0438 \u043e\u0442 \u0442\u0440\u0435\u0442\u0438 \u0441\u0442\u0440\u0430\u043d\u0438 + ЗавиÑимоÑти от модули от трети Ñтрани about=\ - \u041e\u0442\u043d\u043e\u0441\u043d\u043e \u201e{0}\u201c + ОтноÑно „{0}“ diff --git a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_de.properties b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_de.properties index 84f1c402cef4..0aaf38630750 100644 --- a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_de.properties +++ b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_de.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -about=\u00DCber {0} -No\ information\ recorded=Keine Informationen verf\u00FCgbar -3rd\ Party\ Dependencies=Dritthersteller-Abh\u00E4ngigkeiten +about=Ãœber {0} +No\ information\ recorded=Keine Informationen verfügbar +3rd\ Party\ Dependencies=Dritthersteller-Abhängigkeiten diff --git a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_es.properties b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_es.properties index d52b8fe54f4a..8f49476795b8 100644 --- a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_es.properties +++ b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_es.properties @@ -22,4 +22,4 @@ about=Acerca de {0} 3rd\ Party\ Dependencies=Dependencias de terceros. -No\ information\ recorded=No se ha registrado ninguna información. +No\ information\ recorded=No se ha registrado ninguna información. diff --git a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_fr.properties b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_fr.properties index 125c66724dee..89e0f1438064 100644 --- a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_fr.properties +++ b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_fr.properties @@ -1,2 +1,2 @@ about=A propos de {0} -No\ information\ recorded=Aucune information renseign\u00e9e +No\ information\ recorded=Aucune information renseignée diff --git a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_it.properties b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_it.properties index f39736134fde..f45b771bb626 100644 --- a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_it.properties +++ b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_ja.properties b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_ja.properties index 210730fa6c34..437ee3f04466 100644 --- a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_ja.properties +++ b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -about={0} \u306b\u3064\u3044\u3066 -3rd\ Party\ Dependencies=\u30b5\u30fc\u30c9\u30d1\u30fc\u30c6\u30a3\u3078\u306e\u4f9d\u5b58 -No\ information\ recorded=\u60c5\u5831\u304c\u3042\u308a\u307e\u305b\u3093 +about={0} ã«ã¤ã„㦠+3rd\ Party\ Dependencies=サードパーティã¸ã®ä¾å­˜ +No\ information\ recorded=情報ãŒã‚ã‚Šã¾ã›ã‚“ diff --git a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_pl.properties b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_pl.properties index 940ca0bd1742..5b0b99397a49 100644 --- a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_pl.properties +++ b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_pl.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. about=O {0} No\ information\ recorded=Brak danych -3rd\ Party\ Dependencies=Biblioteki zale\u017Cne +3rd\ Party\ Dependencies=Biblioteki zależne diff --git a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_pt_BR.properties b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_pt_BR.properties index 42bee08ce803..ba330dd1989b 100644 --- a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_pt_BR.properties @@ -22,5 +22,5 @@ # About {0} about=Sobre {0} -3rd\ Party\ Dependencies=Depend\u00eancias de terceiros -No\ information\ recorded=Nenhuma informa\u00e7\u00e3o registrada +3rd\ Party\ Dependencies=Dependências de terceiros +No\ information\ recorded=Nenhuma informação registrada diff --git a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_ru.properties b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_ru.properties index 2f27fff8d93f..87b857ae4686 100644 --- a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_ru.properties +++ b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_ru.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -about=\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F \u043E {0} +about=Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ {0} diff --git a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_sr.properties b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_sr.properties index 5790695505a2..ac5ae8659a1c 100644 --- a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_sr.properties +++ b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -about=\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0430 \u043E {0} -3rd\ Party\ Dependencies=\u0417\u0430\u0432\u0438\u0441\u043D\u043E\u0441\u0442\u0438 \u0441\u0430 \u0440\u0430\u0437\u043D\u0438\u0445 \u0441\u0442\u0440\u0430\u043D\u0430 -No\ information\ recorded=\u041D\u0438\u0458\u0435 \u043D\u0438\u0448\u0442\u0430 \u0437\u0430\u043F\u0438\u0441\u0430\u043D\u043E +about=Информација о {0} +3rd\ Party\ Dependencies=ЗавиÑноÑти Ñа разних Ñтрана +No\ information\ recorded=Ðије ништа запиÑано diff --git a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_zh_TW.properties b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_zh_TW.properties index 32823741f37a..85293b26ce3e 100644 --- a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -about=\u95dc\u65bc {0} -3rd\ Party\ Dependencies=\u76f8\u4f9d\u7684\u7b2c\u4e09\u65b9\u5143\u4ef6 -No\ information\ recorded=\u6c92\u6709\u76f8\u95dc\u8cc7\u8a0a +about=關於 {0} +3rd\ Party\ Dependencies=相ä¾çš„第三方元件 +No\ information\ recorded=沒有相關資訊 diff --git a/core/src/main/resources/hudson/PluginWrapper/uninstall.groovy b/core/src/main/resources/hudson/PluginWrapper/uninstall.groovy index 5fa2525d01a9..b664ca20c436 100644 --- a/core/src/main/resources/hudson/PluginWrapper/uninstall.groovy +++ b/core/src/main/resources/hudson/PluginWrapper/uninstall.groovy @@ -12,13 +12,13 @@ l.layout(permission: Jenkins.ADMINISTER) { l.task(icon: "icon-gear icon-md", href: "${rootURL}/manage", title: _("Manage Jenkins")) } } - def title = _("title", my.shortName) + def title = _("title", my.displayName) l.header(title:title) l.main_panel { h1 { text(title) } - p { raw _("msg",my.shortName) } + p { raw _("msg", my.displayName) } f.form(method:"post",action:"doUninstall") { f.submit(value:_("Yes")) } diff --git a/core/src/main/resources/hudson/PluginWrapper/uninstall_it.properties b/core/src/main/resources/hudson/PluginWrapper/uninstall_it.properties index fe5e2f906cd4..66c69acdba1a 100644 --- a/core/src/main/resources/hudson/PluginWrapper/uninstall_it.properties +++ b/core/src/main/resources/hudson/PluginWrapper/uninstall_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,10 +22,10 @@ # THE SOFTWARE. msg=Si sta per disinstallare il componente aggiuntivo {0}. \ - Quest''operazione rimuoverà il binario del componente aggiuntivo dalla \ - directory $JENKINS_HOME, ma manterrà inalterati i file di \ + Quest''operazione rimuoverà il binario del componente aggiuntivo dalla \ + directory $JENKINS_HOME, ma manterrà inalterati i file di \ configurazione del componente aggiuntivo. title=Disinstallazione del componente aggiuntivo {0} -Yes=Sì +Yes=Sì Back\ to\ Dashboard=Torna al cruscotto Manage\ Jenkins=Gestisci Jenkins diff --git a/core/src/main/resources/hudson/PluginWrapper/uninstall_ja.properties b/core/src/main/resources/hudson/PluginWrapper/uninstall_ja.properties index e171310a2019..cd24b2a0589e 100644 --- a/core/src/main/resources/hudson/PluginWrapper/uninstall_ja.properties +++ b/core/src/main/resources/hudson/PluginWrapper/uninstall_ja.properties @@ -1,8 +1,8 @@ msg=\ - {0}\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u307e\u3059\u3002\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3068\u3001\ -$JENKINS_HOME\u304b\u3089\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u30d0\u30a4\u30ca\u30ea\u304c\u524a\u9664\u3055\u308c\u307e\u3059\u3002\ -\u3057\u304b\u3057\u3001\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u306a\u3044\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306f\u305d\u306e\u307e\u307e\u6b8b\u308a\u307e\u3059\u3002 -Yes=\u306f\u3044 -title={0}\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb -Back\ to\ Dashboard=\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u3078\u623b\u308b -Manage\ Jenkins=Jenkins\u306e\u7ba1\u7406 + {0}プラグインをアンインストールã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚アンインストールã™ã‚‹ã¨ã€\ +$JENKINS_HOMEã‹ã‚‰ãƒ—ラグインã®ãƒã‚¤ãƒŠãƒªãŒå‰Šé™¤ã•ã‚Œã¾ã™ã€‚\ +ã—ã‹ã—ã€ã‚¢ãƒ³ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãªã„プラグインã®è¨­å®šãƒ•ã‚¡ã‚¤ãƒ«ã¯ãã®ã¾ã¾æ®‹ã‚Šã¾ã™ã€‚ +Yes=ã¯ã„ +title={0}プラグインã®ã‚¢ãƒ³ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ« +Back\ to\ Dashboard=ダッシュボードã¸æˆ»ã‚‹ +Manage\ Jenkins=Jenkinsã®ç®¡ç† diff --git a/core/src/main/resources/hudson/PluginWrapper/uninstall_lt.properties b/core/src/main/resources/hudson/PluginWrapper/uninstall_lt.properties index f862b3ef68b6..fccb583b354f 100644 --- a/core/src/main/resources/hudson/PluginWrapper/uninstall_lt.properties +++ b/core/src/main/resources/hudson/PluginWrapper/uninstall_lt.properties @@ -1,5 +1,5 @@ -msg=J\u016bs tuoj i\u0161mesite pried\u0105 {0}. Priedo vykdomas kodas bus pa\u0161alintas i\u0161 j\u016bs\u0173 $JENKINS_HOME, \ - o priedo konfig\u016bravimo failai bus palikti nepaliesti. -title=I\u0161imamas priedas {0} -Back\ to\ Dashboard=\u041D\u0430\u0437\u0430\u0434 \u043A\u0430 \u043A\u043E\u043D\u0442\u043E\u0440\u043B\u043D\u043E\u0458 \u043F\u0430\u043D\u0435\u043B\u0438 -Manage\ Jenkins=\u0423\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 Jenkins-\u043E\u043C +msg=JÅ«s tuoj iÅ¡mesite priedÄ… {0}. Priedo vykdomas kodas bus paÅ¡alintas iÅ¡ jÅ«sų $JENKINS_HOME, \ + o priedo konfigÅ«ravimo failai bus palikti nepaliesti. +title=IÅ¡imamas priedas {0} +Back\ to\ Dashboard=Ðазад ка конторлној панели +Manage\ Jenkins=Управљање Jenkins-ом diff --git a/core/src/main/resources/hudson/PluginWrapper/uninstall_pl.properties b/core/src/main/resources/hudson/PluginWrapper/uninstall_pl.properties index af05c934e3f6..461995b96ee8 100644 --- a/core/src/main/resources/hudson/PluginWrapper/uninstall_pl.properties +++ b/core/src/main/resources/hudson/PluginWrapper/uninstall_pl.properties @@ -1,3 +1,3 @@ -msg=Czy na pewno chcesz usun\u0105\u0107 wtyczk\u0119 {0}? Ta operacja usunie wtyczk\u0119 z folderu $JENKINS_HOME, ale pozostawi pliki konfiguracyjne. +msg=Czy na pewno chcesz usunąć wtyczkÄ™ {0}? Ta operacja usunie wtyczkÄ™ z folderu $JENKINS_HOME, ale pozostawi pliki konfiguracyjne. title=Odinstalowywanie wtyczki {0} Yes=Tak diff --git a/core/src/main/resources/hudson/PluginWrapper/uninstall_sr.properties b/core/src/main/resources/hudson/PluginWrapper/uninstall_sr.properties index 2e93b89e1762..257a2e20cfd3 100644 --- a/core/src/main/resources/hudson/PluginWrapper/uninstall_sr.properties +++ b/core/src/main/resources/hudson/PluginWrapper/uninstall_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -title=\u0414\u0435\u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430 \u043C\u043E\u0434\u0443\u043B\u0435 {0} -Yes=\u0414\u0430 -msg=\u0414\u0435\u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0442\u0438 \u045B\u0435 \u0442\u0435 \u043C\u043E\u0434\u0443\u043B\u0443 {0}, \u0448\u0442\u043E \u045B\u0435 \u0458\u0435 \u0438\u0437\u0431\u0440\u0438\u0441\u0430\u0442\u0438 \u0441\u0430 \u043F\u0440\u043E\u043C\u0435\u043D\u0459\u0438\u0432\u0435 $JENKINS_HOME, \u0430\u043B\u0438 \u045B\u0435 \u043F\u0440\u0435\u043E\u0441\u0442\u0430\u0442\u0438 \u043F\u043E\u0434\u0430\u0446\u0438 \u043E \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0443. +title=ДеинÑталација модуле {0} +Yes=Да +msg=ДеинÑталирати ће те модулу {0}, што ће је избриÑати Ñа променљиве $JENKINS_HOME, али ће преоÑтати подаци о подешавању. diff --git a/core/src/main/resources/hudson/PluginWrapper/uninstall_zh_TW.properties b/core/src/main/resources/hudson/PluginWrapper/uninstall_zh_TW.properties index 550eecac5c63..01a2b6ea7012 100644 --- a/core/src/main/resources/hudson/PluginWrapper/uninstall_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginWrapper/uninstall_zh_TW.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=\u89e3\u9664\u5b89\u88dd {0} \u5916\u639b\u7a0b\u5f0f -msg=\u60a8\u6b63\u8981\u958b\u59cb\u89e3\u9664\u5b89\u88dd {0} \u5916\u639b\u7a0b\u5f0f\u3002\u9019\u500b\u52d5\u4f5c\u6703\u628a\u5916\u639b\u7a0b\u5f0f\u7531 $JENKINS_HOME\ - \u4e2d\u79fb\u9664\uff0c\u4f46\u662f\u5916\u639b\u7a0b\u5f0f\u7684\u8a2d\u5b9a\u6a94\u6703\u539f\u5c01\u4e0d\u52d5\u7684\u4fdd\u7559\u8457\u3002 -Yes=\u78ba\u5b9a -Back\ to\ Dashboard=\u8fd4\u56de\u8cc7\u8a0a\u4e3b\u9801 -Manage\ Jenkins=\u7ba1\u7406 Jenkins +title=è§£é™¤å®‰è£ {0} å¤–æŽ›ç¨‹å¼ +msg=您正è¦é–‹å§‹è§£é™¤å®‰è£ {0} 外掛程å¼ã€‚這個動作會把外掛程å¼ç”± $JENKINS_HOME\ + 中移除,但是外掛程å¼çš„設定檔會原å°ä¸å‹•çš„ä¿ç•™è‘—。 +Yes=確定 +Back\ to\ Dashboard=è¿”å›žè³‡è¨Šä¸»é  +Manage\ Jenkins=ç®¡ç† Jenkins diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_de.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_de.properties index 2a8d1cb3b923..ec044ad190de 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/config_de.properties +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_de.properties @@ -25,4 +25,4 @@ Port=Port User\ name=Benutzername Password=Passwort No\ Proxy\ Host=Proxy-Ausnahmen -Validate\ Proxy=Proxy-Konfiguration pr\u00FCfen +Validate\ Proxy=Proxy-Konfiguration prüfen diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_es.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_es.properties index 9ce49f8b1349..62292a3dc93f 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/config_es.properties +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_es.properties @@ -23,4 +23,4 @@ User\ name=Usuario Server=Servidor Port=Puerto -Password=Contrase\u00f1a +Password=Contraseña diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_fi.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_fi.properties index e66d57996521..390ebb8d2600 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/config_fi.properties +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_fi.properties @@ -23,4 +23,4 @@ Password=Salasana Port=Portti Server=Palvelin -User\ name=K\u00e4ytt\u00e4j\u00e4 +User\ name=Käyttäjä diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_fr.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_fr.properties index 461167fb10ad..ab726534e755 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/config_fr.properties +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_fr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Proxy\ Needs\ Authorization=Le proxy n\u00e9cessite une authentification +Proxy\ Needs\ Authorization=Le proxy nécessite une authentification Server=Serveur Port= User\ name=Nom d''utilisateur diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_it.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_it.properties index 668d06913bf9..c9a0c7ede097 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/config_it.properties +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_ja.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_ja.properties index c59634b6f4b3..7264bf0c143b 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/config_ja.properties +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_ja.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Server=\u30b5\u30fc\u30d0\u30fc -Port=\u30dd\u30fc\u30c8\u756a\u53f7 -User\ name=\u30e6\u30fc\u30b6\u30fc\u540d -Password=\u30d1\u30b9\u30ef\u30fc\u30c9 -No\ Proxy\ Host=\u5bfe\u8c61\u5916\u30db\u30b9\u30c8 -Test\ URL=\u30c6\u30b9\u30c8URL -Validate\ Proxy=Proxy\u306e\u63a5\u7d9a\u78ba\u8a8d +Server=サーãƒãƒ¼ +Port=ãƒãƒ¼ãƒˆç•ªå· +User\ name=ユーザーå +Password=パスワード +No\ Proxy\ Host=対象外ホスト +Test\ URL=テストURL +Validate\ Proxy=Proxyã®æŽ¥ç¶šç¢ºèª diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_ko.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_ko.properties index 3f049e1546de..ce65cece6a26 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/config_ko.properties +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_ko.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Password=\uc554\ud638 -Port=\ud3ec\ud2b8 -Server=\uc11c\ubc84 -User\ name=\uc0ac\uc6a9\uc790\uba85 +Password=암호 +Port=í¬íŠ¸ +Server=서버 +User\ name=사용ìžëª… diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_pl.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_pl.properties index fd2644805068..ed15b68f433b 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/config_pl.properties +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_pl.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Password=Has\u0142o +Password=HasÅ‚o Port=Port Server=Serwer -User\ name=Nazwa u\u017Cytkownika +User\ name=Nazwa użytkownika No\ Proxy\ Host=Brak hosta proxy -Validate\ Proxy=Sprawd\u017A proxy +Validate\ Proxy=Sprawdź proxy diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_pt_BR.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_pt_BR.properties index 8976514e9c86..8e2e85d5ef2f 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/config_pt_BR.properties +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_pt_BR.properties @@ -22,5 +22,5 @@ Server=Servidor Password=Senha -User\ name=Nomde de usu\u00e1rio +User\ name=Nomde de usuário Port=Porta diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_ru.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_ru.properties index eec64f2f09ac..9cfc212929e5 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/config_ru.properties +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Password=\u041f\u0430\u0440\u043e\u043b\u044c -Port=\u041f\u043e\u0440\u0442 -Server=\u0421\u0435\u0440\u0432\u0435\u0440 -User\ name=\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f +Password=Пароль +Port=Порт +Server=Сервер +User\ name=Ð˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_sr.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_sr.properties index 141ed9e30fc2..59c7a27b3e3a 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/config_sr.properties +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_sr.properties @@ -1,21 +1,21 @@ # This file is under the MIT License by authors -Password=\u041B\u043E\u0437\u0438\u043D\u043A\u0430 -User\ name=\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u043E \u0438\u043C\u0435 -Port=\u041F\u043E\u0440\u0442 -Server=\u0421\u0435\u0440\u0432\u0435\u0440 -No\ Proxy\ Host=\u041D\u0435\u043C\u0430 Proxy \u0425\u043E\u0441\u0442 -Validate\ Proxy=\u041F\u0440\u043E\u0432\u0435\u0440\u0438 Proxy -Proxy\ Needs\ Authorization=\u041F\u043E\u0442\u0440\u0435\u0431\u043D\u043E \u0430\u0443\u0442\u043E\u0440\u0438\u0437\u0430\u0446\u0438\u0458\u0430 \u0437\u0430 Proxy -No\ Proxy\ for=\u041D\u0435 \u043F\u043E\u0441\u0442\u043E\u0458\u0438 Proxy \u0437\u0430 -Check\ now=\u041F\u0440\u043E\u0432\u0435\u0440\u0438 \u0441\u0430\u0434\u0430 -HTTP\ Proxy\ Configuration=\u041F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 HTTP Proxy -Submit=\u041F\u043E\u0434\u043D\u0435\u0441\u0438 -lastUpdated=\u0417\u0430\u0434\u045A\u0435 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043D\u043E: \u043F\u0440\u0435 {0} -uploadtext=\u041C\u043E\u0436\u0435\u0442\u0435 \u043E\u0442\u043F\u0440\u0435\u043C\u0438\u0442\u0438 .hpi \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0443 \u0434\u0430 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0442\u0435 \u043C\u043E\u0434\u0443\u043B\u0443 \u043A\u043E\u0458\u0430 \u0458\u0435 \u0432\u0430\u043D \u0433\u043B\u0430\u0432\u043D\u043E\u0433 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C\u0430 \u0437\u0430 \u043C\u043E\u0434\u0443\u043B\u0435. -Test\ URL=URL \u0430\u0434\u0440\u0435\u0441\u0430 \u0437\u0430 \u0442\u0435\u0441\u0442\u0438\u0440\u0430\u045A\u0435 -Upload\ Plugin=\u041E\u0442\u043F\u0440\u0435\u043C\u0438 \u043C\u043E\u0434\u0443\u043B\u0443 -File=\u0414\u0430\u0442\u043E\u0442\u0435\u043A\u0430 -Upload=\u041E\u0442\u043F\u0440\u0435\u043C\u0438 -URL=URL \u0430\u0434\u0440\u0435\u0441\u0430 -Update\ Site=\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u0458 \u0441\u0442\u0440\u0430\u043D\u0443 +Password=Лозинка +User\ name=КориÑничко име +Port=Порт +Server=Сервер +No\ Proxy\ Host=Ðема Proxy ХоÑÑ‚ +Validate\ Proxy=Провери Proxy +Proxy\ Needs\ Authorization=Потребно ауторизација за Proxy +No\ Proxy\ for=Ðе поÑтоји Proxy за +Check\ now=Провери Ñада +HTTP\ Proxy\ Configuration=Подешавања HTTP Proxy +Submit=ПоднеÑи +lastUpdated=Задње ажурирано: пре {0} +uploadtext=Можете отпремити .hpi датотеку да инÑталирате модулу која је ван главног директоријума за модуле. +Test\ URL=URL адреÑа за теÑтирање +Upload\ Plugin=Отпреми модулу +File=Датотека +Upload=Отпреми +URL=URL адреÑа +Update\ Site=Ðжурирај Ñтрану diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_sv_SE.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_sv_SE.properties index d07169c071be..be56997326c1 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/config_sv_SE.properties +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_sv_SE.properties @@ -23,7 +23,7 @@ Check\ now=Kontrollera nu File=Fil HTTP\ Proxy\ Configuration=HTTP proxy konfiguration -Password=L\u00F6senord +Password=Lösenord Port=Port Server=Server Submit=Skicka @@ -31,6 +31,6 @@ URL=URL Update\ Site=Updatera sajt Upload=Ladda upp Upload\ Plugin=Ladda upp insticksmodul -User\ name=Anv\u00E4ndarnamn +User\ name=Användarnamn lastUpdated=Information uppdaterad {0} sedan -uploadtext=Du kan ladda upp en .hpi-fil f\u00F6r att installera en insticksmodul som ligger utanf\u00F6r den centrala instickskatalogen. +uploadtext=Du kan ladda upp en .hpi-fil för att installera en insticksmodul som ligger utanför den centrala instickskatalogen. diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_tr.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_tr.properties index 7d12d210c93d..b9754ac5f7ff 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/config_tr.properties +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_tr.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -HTTP\ Proxy\ Configuration=HTTP Proxy Konfig\u00fcrasyonu -Submit=G\u00f6nder -Upload\ Plugin=Eklenti Y\u00fckle +HTTP\ Proxy\ Configuration=HTTP Proxy Konfigürasyonu +Submit=Gönder +Upload\ Plugin=Eklenti Yükle uploadtext=\ -Merkezi eklenti repository''si d\u0131\u015f\u0131nda bir eklenti eklemek i\u00e7in .hpi dosyas\u0131n\u0131 y\u00fcklemeniz yeterli olacakt\u0131r. +Merkezi eklenti repository''si dışında bir eklenti eklemek için .hpi dosyasını yüklemeniz yeterli olacaktır. File=Dosya -Upload=Y\u00fckle -lastUpdated=Al\u0131nan son g\u00fcncelleme bilgisi : {0} \u00f6nce -Check\ now=\u015eimdi kontrol et +Upload=Yükle +lastUpdated=Alınan son güncelleme bilgisi : {0} önce +Check\ now=Åžimdi kontrol et diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_zh_TW.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_zh_TW.properties index 29e8b5da791d..3ab3322096cf 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/config_zh_TW.properties +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_zh_TW.properties @@ -21,8 +21,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Port=\u9023\u63a5\u57e0 -Server=\u4f3a\u670d\u5668 -User\ name=\u4f7f\u7528\u8005\u540d\u7a31 -Password=\u5bc6\u78bc -No\ Proxy\ Host=\u4e0d\u8981\u4ee3\u7406\u7684\u4e3b\u6a5f +Port=連接埠 +Server=伺æœå™¨ +User\ name=使用者å稱 +Password=密碼 +No\ Proxy\ Host=ä¸è¦ä»£ç†çš„主機 diff --git a/core/src/main/resources/hudson/cli/CLIAction/index_bg.properties b/core/src/main/resources/hudson/cli/CLIAction/index_bg.properties index 9ffe8075036c..549c200df2da 100644 --- a/core/src/main/resources/hudson/cli/CLIAction/index_bg.properties +++ b/core/src/main/resources/hudson/cli/CLIAction/index_bg.properties @@ -21,16 +21,16 @@ # THE SOFTWARE. Available\ Commands=\ - \u041d\u0430\u043b\u0438\u0447\u043d\u0438 \u043a\u043e\u043c\u0430\u043d\u0434\u0438 + Ðалични команди # You can access various features in Jenkins through a command-line tool. See \ # the Wiki for more details of this feature.\ # To get started, download jenkins-cli.jar, and run it as follows: blurb=\ - \u0418\u043c\u0430\u0442\u0435 \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 Jenkins \u0447\u0440\u0435\u0437 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u0430 \u0437\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u043d\u0438\u044f \u0440\u0435\u0434.\ - \u0417\u0430 \u043f\u043e\u0432\u0435\u0447\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u0439\u0442\u0435\ - \u0443\u0438\u043a\u0438\u0442\u043e.\ - \u0421\u0432\u0430\u043b\u0435\u0442\u0435 \u0444\u0430\u0439\u043b\u0430 jenkins-cli.jar \u0438 \u0433\u043e\ - \u0438\u0437\u043f\u044a\u043b\u043d\u0435\u0442\u0435 \u043f\u043e \u0441\u043b\u0435\u0434\u043d\u0438\u044f \u043d\u0430\u0447\u0438\u043d: + Имате доÑтъп до функционалноÑтта на Jenkins чрез програма за ÐºÐ¾Ð¼Ð°Ð½Ð´Ð½Ð¸Ñ Ñ€ÐµÐ´.\ + За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¿Ñ€ÐµÐ³Ð»ÐµÐ´Ð°Ð¹Ñ‚Ðµ\ + уикито.\ + Свалете файла jenkins-cli.jar и го\ + изпълнете по ÑÐ»ÐµÐ´Ð½Ð¸Ñ Ð½Ð°Ñ‡Ð¸Ð½: # Jenkins CLI Jenkins\ CLI=\ - Jenkins \u043e\u0442 \u043a\u043e\u043c\u0430\u043d\u0434\u043d\u0438\u044f \u0440\u0435\u0434 + Jenkins от ÐºÐ¾Ð¼Ð°Ð½Ð´Ð½Ð¸Ñ Ñ€ÐµÐ´ diff --git a/core/src/main/resources/hudson/cli/CLIAction/index_cs.properties b/core/src/main/resources/hudson/cli/CLIAction/index_cs.properties index 1ec4864812b6..22e2a3a870ff 100644 --- a/core/src/main/resources/hudson/cli/CLIAction/index_cs.properties +++ b/core/src/main/resources/hudson/cli/CLIAction/index_cs.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Available\ Commands=Dostupn\u00E9 p\u0159\u00EDkazy +Available\ Commands=Dostupné příkazy Jenkins\ CLI=Jenkins CLI diff --git a/core/src/main/resources/hudson/cli/CLIAction/index_da.properties b/core/src/main/resources/hudson/cli/CLIAction/index_da.properties index 8f8d70f07d4b..3de7765f1543 100644 --- a/core/src/main/resources/hudson/cli/CLIAction/index_da.properties +++ b/core/src/main/resources/hudson/cli/CLIAction/index_da.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Available\ Commands=Tilg\u00E6ngelige kommandoer +Available\ Commands=Tilgængelige kommandoer Jenkins\ CLI=Jenkins CLI -blurb=Du kan tilg\u00e5 diverse features i Jenkins igennem et kommandolinie v\u00e6rkt\u00f8j. Se \ +blurb=Du kan tilgÃ¥ diverse features i Jenkins igennem et kommandolinie værktøj. Se \ diff --git a/core/src/main/resources/hudson/cli/CLIAction/index_de.properties b/core/src/main/resources/hudson/cli/CLIAction/index_de.properties index 3a3f5b5f2bbd..3b4c21448499 100644 --- a/core/src/main/resources/hudson/cli/CLIAction/index_de.properties +++ b/core/src/main/resources/hudson/cli/CLIAction/index_de.properties @@ -1,7 +1,7 @@ -Available\ Commands=Verf\u00FCgbare Kommandos +Available\ Commands=Verfügbare Kommandos Jenkins\ CLI=Jenkins CLI blurb=\ - Sie können ausgewählte Funktionen von Jenkins über ein Kommandozeilenwerkzeug (engl.: Command Line Interface, CLI) nutzen. \ - Näheres dazu finden Sie in der Dokumentation. \ + Sie können ausgewählte Funktionen von Jenkins über ein Kommandozeilenwerkzeug (engl.: Command Line Interface, CLI) nutzen. \ + Näheres dazu finden Sie in der Dokumentation. \ Um Jenkins CLI einzusetzen, laden Sie jenkins-cli.jar \ lokal herunter und starten es wie folgt: diff --git a/core/src/main/resources/hudson/cli/CLIAction/index_es.properties b/core/src/main/resources/hudson/cli/CLIAction/index_es.properties index 8ae904d8c041..740b3e50c3f8 100644 --- a/core/src/main/resources/hudson/cli/CLIAction/index_es.properties +++ b/core/src/main/resources/hudson/cli/CLIAction/index_es.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. blurb=Puedes acceder a varias funcionalidades de Jenkins utilizando la linea de comandos. \ - Echa un vistazo a esta página para mas detalles. \ + Echa un vistazo a esta página para mas detalles. \ Para comenzar, descarga a href="{0}/jnlpJars/jenkins-cli.jar">jenkins-cli.jar, y ejecuta lo siguiente: Jenkins\ CLI=Interfaz de comandos (CLI) de Jenkins Available\ Commands=Comandos disponibles diff --git a/core/src/main/resources/hudson/cli/CLIAction/index_fr.properties b/core/src/main/resources/hudson/cli/CLIAction/index_fr.properties index 290f542e6568..f7d1f0c08220 100644 --- a/core/src/main/resources/hudson/cli/CLIAction/index_fr.properties +++ b/core/src/main/resources/hudson/cli/CLIAction/index_fr.properties @@ -22,4 +22,4 @@ Available\ Commands=Commandes disponibles Jenkins\ CLI=Ligne de commande (CLI) Jenkins -blurb=Vous pouvez acc\u00E9der \u00E0 diverses fonctionnalit\u00E9s de Jenkins \u00E0 travers une ligne de commande. Voir le wiki pour plus d''information sur cette fonctionnalit\u00E9. Pour d\u00E9buter, t\u00E9l\u00E9chargez jenkins-cli.jar et utilisez le comme suit: +blurb=Vous pouvez accéder à diverses fonctionnalités de Jenkins à travers une ligne de commande. Voir le wiki pour plus d''information sur cette fonctionnalité. Pour débuter, téléchargez jenkins-cli.jar et utilisez le comme suit: diff --git a/core/src/main/resources/hudson/cli/CLIAction/index_it.properties b/core/src/main/resources/hudson/cli/CLIAction/index_it.properties index 05e7dddf146d..beca5931cfb0 100644 --- a/core/src/main/resources/hudson/cli/CLIAction/index_it.properties +++ b/core/src/main/resources/hudson/cli/CLIAction/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,10 +22,10 @@ # THE SOFTWARE. Available\ Commands=Comandi disponibili -blurb=È possibile accedere a varie funzionalità di Jenkins tramite uno \ +blurb=È possibile accedere a varie funzionalità di Jenkins tramite uno \ strumento da riga di comando. Si veda \ la documentazione per \ - ulteriori dettagli su questa funzionalità. \ + ulteriori dettagli su questa funzionalità. \ Per iniziare, scaricare \ jenkins-cli.jar ed eseguirlo \ come segue: diff --git a/core/src/main/resources/hudson/cli/CLIAction/index_ja.properties b/core/src/main/resources/hudson/cli/CLIAction/index_ja.properties index fc38564d48b1..7fbaebe0f110 100644 --- a/core/src/main/resources/hudson/cli/CLIAction/index_ja.properties +++ b/core/src/main/resources/hudson/cli/CLIAction/index_ja.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u306e\u30c4\u30fc\u30eb\u304b\u3089Jenkins\u306e\u69d8\u3005\u306a\u6a5f\u80fd\u3092\u5229\u7528\u3067\u304d\u307e\u3059\u3002\ - \u8a73\u7d30\u306fWiki\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044\u3002\ - \u307e\u305a\u306f\u3001jenkins-cli.jar\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u3066\u6b21\u306e\u3088\u3046\u306b\u8d77\u52d5\u3057\u3066\u304f\u3060\u3055\u3044\u3002 +blurb=コマンドラインã®ãƒ„ールã‹ã‚‰Jenkinsã®æ§˜ã€…ãªæ©Ÿèƒ½ã‚’利用ã§ãã¾ã™ã€‚\ + 詳細ã¯Wikiã‚’å‚ç…§ã—ã¦ãã ã•ã„。\ + ã¾ãšã¯ã€jenkins-cli.jarをダウンロードã—ã¦æ¬¡ã®ã‚ˆã†ã«èµ·å‹•ã—ã¦ãã ã•ã„。 Jenkins\ CLI=Jenkins CLI -Available\ Commands=\u5229\u7528\u53ef\u80fd\u306a\u30b3\u30de\u30f3\u30c9 +Available\ Commands=利用å¯èƒ½ãªã‚³ãƒžãƒ³ãƒ‰ diff --git a/core/src/main/resources/hudson/cli/CLIAction/index_lv.properties b/core/src/main/resources/hudson/cli/CLIAction/index_lv.properties index 7d4d40565e0b..586a5c0b3f4d 100644 --- a/core/src/main/resources/hudson/cli/CLIAction/index_lv.properties +++ b/core/src/main/resources/hudson/cli/CLIAction/index_lv.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Available\ Commands=Pieejam\u0101s komandas +Available\ Commands=PieejamÄs komandas Jenkins\ CLI=Jenkins komandrindas saskarne diff --git a/core/src/main/resources/hudson/cli/CLIAction/index_pt_BR.properties b/core/src/main/resources/hudson/cli/CLIAction/index_pt_BR.properties index 515cc24a28aa..df50363df9e8 100644 --- a/core/src/main/resources/hudson/cli/CLIAction/index_pt_BR.properties +++ b/core/src/main/resources/hudson/cli/CLIAction/index_pt_BR.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Available\ Commands=Comandos dispon\u00EDveis +Available\ Commands=Comandos disponíveis Jenkins\ CLI=CLI do Jenkins -blurb=Voc\u00EA pode acessar v\u00E1rias funcionalidades do Jenkins atrav\u00E9s da ferramenta de linha de comando. Veja \ - a documenta\u00E7\u00E3o para maiores detalhes desta funcionalidade. \ - Para come\u00E7ar, baixe o jenkins-cli.jar e execute da seguinte forma: -Description=Descri\u00E7\u00E3o +blurb=Você pode acessar várias funcionalidades do Jenkins através da ferramenta de linha de comando. Veja \ + a documentação para maiores detalhes desta funcionalidade. \ + Para começar, baixe o jenkins-cli.jar e execute da seguinte forma: +Description=Descrição Name=Nome diff --git a/core/src/main/resources/hudson/cli/CLIAction/index_ru.properties b/core/src/main/resources/hudson/cli/CLIAction/index_ru.properties index db330be902d7..df9f44405ea3 100644 --- a/core/src/main/resources/hudson/cli/CLIAction/index_ru.properties +++ b/core/src/main/resources/hudson/cli/CLIAction/index_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Available\ Commands=\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u044B -Jenkins\ CLI=\u041A\u043E\u043D\u0441\u043E\u043B\u044C\u043D\u044B\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u044B Jenkins -blurb=\u0421 \u043F\u043E\u043C\u043E\u0449\u044C\u044E \u043A\u043E\u043D\u0441\u043E\u043B\u044C\u043D\u044B\u0445 \u043A\u043E\u043C\u0430\u043D\u0434 Jenkins \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u0434\u043E\u0441\u0442\u0443\u043F \u043A \u0431\u043E\u043B\u044C\u0448\u043E\u043C\u0443 \u043A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u0439. \u0411\u043E\u043B\u0435\u0435 \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u0430\u044F \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F \u043D\u0430\u0445\u043E\u0434\u0438\u0442\u0441\u044F \u0432 \u0431\u0430\u0437\u0435 \u0437\u043D\u0430\u043D\u0438\u0439 Jenkins. \u0414\u043B\u044F \u0442\u043E\u0433\u043E, \u0447\u0442\u043E\u0431\u044B \u043D\u0430\u0447\u0430\u0442\u044C \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C\u0441\u044F \u043A\u043E\u043D\u0441\u043E\u043B\u044C\u043D\u044B\u043C\u0438 \u043A\u043E\u043C\u0430\u043D\u0434\u0430\u043C\u0438, \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u043E \u0441\u043A\u0430\u0447\u0430\u0442\u044C jenkins-cli.jar, \u0438 \u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u043F\u0430\u043A\u0435\u0442 \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u043C \u043E\u0431\u0440\u0430\u0437\u043E\u043C: +Available\ Commands=ДоÑтупные команды +Jenkins\ CLI=КонÑольные команды Jenkins +blurb=С помощью конÑольных команд Jenkins вы можете получить доÑтуп к большому количеÑтву функций. Более Ð´ÐµÑ‚Ð°Ð»ÑŒÐ½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð½Ð°Ñ…Ð¾Ð´Ð¸Ñ‚ÑÑ Ð² базе знаний Jenkins. Ð”Ð»Ñ Ñ‚Ð¾Ð³Ð¾, чтобы начать пользоватьÑÑ ÐºÐ¾Ð½Ñольными командами, необходимо Ñкачать jenkins-cli.jar, и запуÑтить пакет Ñледующим образом: diff --git a/core/src/main/resources/hudson/cli/CLIAction/index_sr.properties b/core/src/main/resources/hudson/cli/CLIAction/index_sr.properties index 725fe9fffa9d..6e5f072b3753 100644 --- a/core/src/main/resources/hudson/cli/CLIAction/index_sr.properties +++ b/core/src/main/resources/hudson/cli/CLIAction/index_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Jenkins\ CLI=Jenkins \u0441\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u0435 \u043B\u0438\u043D\u0438\u0458\u0435 -blurb=\u041F\u043E\u043C\u043E\u045B\u0443 \u043A\u043E\u043D\u0437\u043E\u043B\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u0435 Jenkins \u043C\u043E\u0436\u0435\u0442\u0435 \u0434\u043E\u0431\u0438\u0442\u0438 \u043F\u0440\u0438\u0441\u0442\u0443\u043F \u0432\u0435\u043B\u0438\u043A\u043E\u043C \u0431\u0440\u043E\u0458\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u0458\u0430. \u0414\u0435\u0442\u0430\u0459\u043D\u0435 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0435 \u0441\u0435 \u043D\u0430\u043B\u0430\u0437\u0435 \u043D\u0430 \u0443 Jenkins \u0432\u0438\u043A\u0438. \u0423 \u0446\u0438\u0459\u0443 \u0434\u0430 \u043F\u043E\u0447\u043D\u0435\u0442\u0435 \u0434\u0430 \u043A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u0443, \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E \u0458\u0435 \u0434\u0430 \u043F\u0440\u0435\u0443\u0437\u043C\u0435\u0442\u0435 jenkins-cli.jar, \u0438 \u043F\u043E\u043A\u0440\u0435\u043D\u0435\u0442\u0435 \u043F\u0430\u043A\u0435\u0442 \u043D\u0430 \u0441\u043B\u0435\u0434\u0435\u045B\u0438 \u043D\u0430\u0447\u0438\u043D: -Available\ Commands=\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u0435 +Jenkins\ CLI=Jenkins Ñа командне линије +blurb=Помоћу конзоле команде Jenkins можете добити приÑтуп великом броју функција. Детаљне информације Ñе налазе на у Jenkins вики. У циљу да почнете да кориÑтите команду, потребно је да преузмете jenkins-cli.jar, и покренете пакет на Ñледећи начин: +Available\ Commands=ДоÑтупне команде diff --git a/core/src/main/resources/hudson/cli/CLIAction/index_zh_TW.properties b/core/src/main/resources/hudson/cli/CLIAction/index_zh_TW.properties index 5b9c09bebece..860d1fd97d12 100644 --- a/core/src/main/resources/hudson/cli/CLIAction/index_zh_TW.properties +++ b/core/src/main/resources/hudson/cli/CLIAction/index_zh_TW.properties @@ -21,9 +21,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ CLI=Jenkins \u547d\u4ee4\u5217\u4ecb\u9762 +Jenkins\ CLI=Jenkins å‘½ä»¤åˆ—ä»‹é¢ blurb=\ - \u60a8\u53ef\u4ee5\u900f\u904e\u547d\u4ee4\u5217\u5de5\u5177\u4f7f\u7528 Jenkins \u7684\u8af8\u591a\u529f\u80fd\u3002\ - \u5728 Wiki \u4e0a\u6709\u8a73\u7d30\u7684\u529f\u80fd\u8aaa\u660e\u3002\ - \u5fc3\u52d5\u4e0d\u5982\u99ac\u4e0a\u884c\u52d5\uff0c\u4e0b\u8f09 jenkins-cli.jar \u4e26\u57f7\u884c\u4ee5\u4e0b\u6307\u4ee4: -Available\ Commands=\u53ef\u7528\u6307\u4ee4 + 您å¯ä»¥é€éŽå‘½ä»¤åˆ—工具使用 Jenkins 的諸多功能。\ + 在 Wiki 上有詳細的功能說明。\ + 心動ä¸å¦‚馬上行動,下載 jenkins-cli.jar 並執行以下指令: +Available\ Commands=å¯ç”¨æŒ‡ä»¤ diff --git a/core/src/main/resources/hudson/cli/Messages.properties b/core/src/main/resources/hudson/cli/Messages.properties index 1f2eb6e5cda8..bc6068df321a 100644 --- a/core/src/main/resources/hudson/cli/Messages.properties +++ b/core/src/main/resources/hudson/cli/Messages.properties @@ -1,4 +1,4 @@ -InstallPluginCommand.DidYouMean={0} looks like a short plugin name. Did you mean \u2018{1}\u2019? +InstallPluginCommand.DidYouMean={0} looks like a short plugin name. Did you mean ‘{1}’? InstallPluginCommand.InstallingFromUpdateCenter=Installing {0} from update center InstallPluginCommand.InstallingPluginFromLocalFile=Installing a plugin from local file: {0} InstallPluginCommand.InstallingPluginFromStdin=Installing a plugin from standard input @@ -83,7 +83,7 @@ ClearQueueCommand.ShortDescription=Clears the build queue. ReloadConfigurationCommand.ShortDescription=Discard all the loaded data in memory and reload everything from file system. Useful when you modified config files directly on disk. ConnectNodeCommand.ShortDescription=Reconnect to a node(s) DisconnectNodeCommand.ShortDescription=Disconnects from a node. -QuietDownCommand.ShortDescription=Quiet down Jenkins, in preparation for a restart. Don\u2019t start any builds. +QuietDownCommand.ShortDescription=Quiet down Jenkins, in preparation for a restart. Don’t start any builds. CancelQuietDownCommand.ShortDescription=Cancel the effect of the "quiet-down" command. OfflineNodeCommand.ShortDescription=Stop using a node for performing builds temporarily, until the next "online-node" command. WaitNodeOnlineCommand.ShortDescription=Wait for a node to become online. diff --git a/core/src/main/resources/hudson/cli/Messages_bg.properties b/core/src/main/resources/hudson/cli/Messages_bg.properties index df64c3e82339..55b359b22948 100644 --- a/core/src/main/resources/hudson/cli/Messages_bg.properties +++ b/core/src/main/resources/hudson/cli/Messages_bg.properties @@ -21,129 +21,129 @@ # THE SOFTWARE. InstallPluginCommand.DidYouMean=\ - \u201e{0}\u201c \u0435 \u043a\u0440\u0430\u0442\u043a\u043e \u0438\u043c\u0435 \u0437\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430. \u201e{1}\u201c \u043b\u0438 \u0438\u043c\u0430\u0442\u0435 \u043f\u0440\u0435\u0434\u0432\u0438\u0434? + „{0}“ е кратко име за приÑтавка. „{1}“ ли имате предвид? InstallPluginCommand.InstallingFromUpdateCenter=\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430\u0442\u0430 \u201e{0}\u201c \u043e\u0442 \u0441\u0430\u0439\u0442\u0430 \u0437\u0430 \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 + ИнÑталиране на приÑтавката „{0}“ от Ñайта за обновÑване InstallPluginCommand.InstallingPluginFromLocalFile=\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430 \u043e\u0442 \u043b\u043e\u043a\u0430\u043b\u0435\u043d \u0444\u0430\u0439\u043b \u201e{0}\u201c + ИнÑталиране на приÑтавка от локален файл „{0}“ InstallPluginCommand.InstallingPluginFromUrl=\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430 \u043e\u0442 \u0430\u0434\u0440\u0435\u0441 \u201e{0}\u201c + ИнÑталиране на приÑтавка от Ð°Ð´Ñ€ÐµÑ â€ž{0}“ InstallPluginCommand.NoUpdateCenterDefined=\ - \u041d\u0435 \u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043d \u0441\u0430\u0439\u0442 \u0437\u0430 \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u0432 \u0442\u0430\u0437\u0438 \u0438\u043d\u0441\u0442\u0430\u043b\u0430\u0446\u0438\u044f \u043d\u0430 Jenkins. + Ðе е наÑтроен Ñайт за обновÑване в тази инÑÑ‚Ð°Ð»Ð°Ñ†Ð¸Ñ Ð½Ð° Jenkins. InstallPluginCommand.NoUpdateDataRetrieved=\ - \u0412\u0441\u0435 \u043e\u0449\u0435 \u043d\u0435 \u0441\u0430 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438 \u043d\u0438\u043a\u0430\u043a\u0432\u0438 \u0434\u0430\u043d\u043d\u0438 \u043e\u0442 \u0446\u0435\u043d\u0442\u044a\u0440\u0430 \u0437\u0430 \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435: {0} + Ð’Ñе още не Ñа получени никакви данни от центъра за обновÑване: {0} InstallPluginCommand.NotAValidSourceName=\ - \u201e{0}\u201c \u043d\u0435 \u0435 \u043d\u0438\u0442\u043e \u0444\u0430\u0439\u043b \u0441 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430, \u043d\u0438\u0442\u043e \u0430\u0434\u0440\u0435\u0441, \u043d\u0438\u0442\u043e \u0438\u043c\u0435 \u043d\u0430 \u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442 \u043e\u0442 \u0441\u0430\u0439\u0442\u0430 \u0437\u0430\ - \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435. + „{0}“ не е нито файл Ñ Ð¿Ñ€Ð¸Ñтавка, нито адреÑ, нито име на артефакт от Ñайта за\ + обновÑване. AddJobToViewCommand.ShortDescription=\ - \u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0438 \u043a\u044a\u043c \u0438\u0437\u0433\u043b\u0435\u0434. + ДобавÑне на задачи към изглед. BuildCommand.ShortDescription=\ - \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 \u0438 \u0438\u0437\u0447\u0430\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0432\u044a\u0440\u0448\u0432\u0430\u043d\u0435\u0442\u043e \u045d (\u043f\u043e \u0438\u0437\u0431\u043e\u0440). + Изграждане на задача и изчакване на завършването Ñ (по избор). ConsoleCommand.ShortDescription=\ - \u0418\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0445\u043e\u0434\u0430 \u043e\u0442 \u0437\u0430\u0434\u0430\u0447\u0430 \u043a\u044a\u043c \u043a\u043e\u043d\u0437\u043e\u043b\u0430\u0442\u0430. + Извеждане на изхода от задача към конзолата. CopyJobCommand.ShortDescription=\ - \u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430. + Копиране на задача. CreateJobCommand.ShortDescription=\ - \u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u043e\u0432\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 \u043d\u0430 \u0431\u0430\u0437\u0430\u0442\u0430 \u043d\u0430 \u043f\u0440\u043e\u0447\u0435\u0442\u0435\u043d\u043e\u0442\u043e \u043e\u0442 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438\u044f \u0432\u0445\u043e\u0434 \u0432\u044a\u0432\ - \u0444\u043e\u0440\u043c\u0430\u0442 XML. + Създаване на нова задача на базата на прочетеното от ÑÑ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚Ð½Ð¸Ñ Ð²Ñ…Ð¾Ð´ във\ + формат XML. CreateNodeCommand.ShortDescription=\ - \u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u043e\u0432\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 \u043d\u0430 \u0431\u0430\u0437\u0430\u0442\u0430 \u043d\u0430 \u043f\u0440\u043e\u0447\u0435\u0442\u0435\u043d\u043e\u0442\u043e \u043e\u0442 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438\u044f \u0432\u0445\u043e\u0434 \u0432\u044a\u0432\ - \u0444\u043e\u0440\u043c\u0430\u0442 XML. + Създаване на нова машина на базата на прочетеното от ÑÑ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚Ð½Ð¸Ñ Ð²Ñ…Ð¾Ð´ във\ + формат XML. DeleteBuildsCommand.ShortDescription=\ - \u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430\u0442\u0430 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f\u0442\u0430. + Изтриване на ÑтатиÑтиката за изгражданиÑта. DeleteViewCommand.ShortDescription=\ - \u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u043b\u0435\u0434\u0438. + Изтриване на изгледи. DeleteJobCommand.ShortDescription=\ - \u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0438. + Изтриване на задачи. GroovyCommand.ShortDescription=\ - \u0418\u0437\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u0441\u043a\u0440\u0438\u043f\u0442 \u043d\u0430 Groovy. + Изпълнение на Ñкрипт на Groovy. GroovyshCommand.ShortDescription=\ - \u0418\u0437\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u0438\u043d\u0442\u0435\u0440\u0430\u043a\u0442\u0438\u0432\u0435\u043d \u0438\u043d\u0442\u0435\u0440\u043f\u0440\u0435\u0442\u0430\u0442\u043e\u0440 \u043d\u0430 Groovy. + Изпълнение на интерактивен интерпретатор на Groovy. HelpCommand.ShortDescription=\ - \u0418\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u043a\u043e\u043c\u0430\u043d\u0434\u0438 \u0438\u043b\u0438 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043d\u0430 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0430. + Извеждане на вÑички команди или опиÑание на определена команда. InstallPluginCommand.ShortDescription=\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430 \u043e\u0442 \u0444\u0430\u0439\u043b, \u0430\u0434\u0440\u0435\u0441 \u0438\u043b\u0438 \u0446\u0435\u043d\u0442\u044a\u0440\u0430 \u0437\u0430 \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435. + ИнÑталиране на приÑтавка от файл, Ð°Ð´Ñ€ÐµÑ Ð¸Ð»Ð¸ центъра за обновÑване. ListChangesCommand.ShortDescription=\ - \u0418\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0436\u0443\u0440\u043d\u0430\u043b\u0430 \u0441 \u043f\u0440\u043e\u043c\u0435\u043d\u0438 \u0437\u0430 \u0443\u043a\u0430\u0437\u0430\u043d\u0438\u0442\u0435 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f. + Извеждане на журнала Ñ Ð¿Ñ€Ð¾Ð¼ÐµÐ½Ð¸ за указаните изгражданиÑ. ListJobsCommand.ShortDescription=\ - \u0418\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u0437\u0430\u0434\u0430\u0447\u0438 \u0432 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d \u0438\u0437\u0433\u043b\u0435\u0434 \u0438\u043b\u0438 \u0433\u0440\u0443\u043f\u0430. + Извеждане на вÑички задачи в определен изглед или група. ListPluginsCommand.ShortDescription=\ - \u0418\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0441\u043f\u0438\u0441\u044a\u043a\u0430 \u0441 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0438\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438. + Извеждане на ÑпиÑъка Ñ Ð¸Ð½Ñталираните приÑтавки. SetBuildDescriptionCommand.ShortDescription=\ - \u0417\u0430\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u0442\u043e \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435. + Задаване на опиÑанието на изграждане. RemoveJobFromViewCommand.ShortDescription=\ - \u0418\u0437\u0432\u0430\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0438 \u043e\u0442 \u0438\u0437\u0433\u043b\u0435\u0434. + Изваждане на задачи от изглед. VersionCommand.ShortDescription=\ - \u0418\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u044f\u0442\u0430 \u043d\u0430 Jenkins. + Извеждане на верÑиÑта на Jenkins. GetJobCommand.ShortDescription=\ - \u0418\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0434\u0435\u0444\u0438\u043d\u0438\u0446\u0438\u044f\u0442\u0430 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430\u0442\u0430 \u0432\u044a\u0432 \u0444\u043e\u0440\u043c\u0430\u0442 XML \u043a\u044a\u043c \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438\u044f \u0438\u0437\u0445\u043e\u0434. + Извеждане на дефинициÑта на задачата във формат XML към ÑÑ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚Ð½Ð¸Ñ Ð¸Ð·Ñ…Ð¾Ð´. GetNodeCommand.ShortDescription=\ - \u0418\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0434\u0435\u0444\u0438\u043d\u0438\u0446\u0438\u044f\u0442\u0430 \u043d\u0430 \u0441\u044a\u0440\u0432\u044a\u0440 \u0432\u044a\u0432 \u0444\u043e\u0440\u043c\u0430\u0442 XML \u043a\u044a\u043c \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438\u044f \u0438\u0437\u0445\u043e\u0434. + Извеждане на дефинициÑта на Ñървър във формат XML към ÑÑ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚Ð½Ð¸Ñ Ð¸Ð·Ñ…Ð¾Ð´. GetViewCommand.ShortDescription=\ - \u0418\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0434\u0435\u0444\u0438\u043d\u0438\u0446\u0438\u044f\u0442\u0430 \u043d\u0430 \u0438\u0437\u0433\u043b\u0435\u0434\u0430 \u0432\u044a\u0432 \u0444\u043e\u0440\u043c\u0430\u0442 XML \u043a\u044a\u043c \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438\u044f \u0438\u0437\u0445\u043e\u0434. + Извеждане на дефинициÑта на изгледа във формат XML към ÑÑ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚Ð½Ð¸Ñ Ð¸Ð·Ñ…Ð¾Ð´. SetBuildDisplayNameCommand.ShortDescription=\ - \u0417\u0430\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u043c\u0435\u0442\u043e (displayName) \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435. + Задаване на името (displayName) на изграждане. WhoAmICommand.ShortDescription=\ - \u0418\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438\u0442\u0435 \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u0438 \u043f\u0440\u0430\u0432\u0430\u0442\u0430. + Извеждане на данните за Ð¸Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð¸ правата. UpdateJobCommand.ShortDescription=\ - \u041e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0435\u0444\u0438\u043d\u0438\u0446\u0438\u044f\u0442\u0430 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 \u043e\u0442 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438\u044f \u0432\u0445\u043e\u0434 \u0432\u044a\u0432 \u0444\u043e\u0440\u043c\u0430\u0442 XML.\ - \u041e\u0431\u0440\u0430\u0442\u043d\u043e\u0442\u043e \u043d\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u0430 \u201eget-job\u201c. + ОбновÑване на дефинициÑта на задача от ÑÑ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚Ð½Ð¸Ñ Ð²Ñ…Ð¾Ð´ във формат XML.\ + Обратното на командата „get-job“. UpdateNodeCommand.ShortDescription=\ - \u041e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0435\u0444\u0438\u043d\u0438\u0446\u0438\u044f\u0442\u0430 \u043d\u0430 \u0441\u044a\u0440\u0432\u044a\u0440 \u043e\u0442 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438\u044f \u0432\u0445\u043e\u0434 \u0432\u044a\u0432 \u0444\u043e\u0440\u043c\u0430\u0442 XML.\ - \u041e\u0431\u0440\u0430\u0442\u043d\u043e\u0442\u043e \u043d\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u0430 \u201eget-node\u201c. + ОбновÑване на дефинициÑта на Ñървър от ÑÑ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚Ð½Ð¸Ñ Ð²Ñ…Ð¾Ð´ във формат XML.\ + Обратното на командата „get-node“. SessionIdCommand.ShortDescription=\ - \u0418\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u0430 \u043d\u0430 \u0441\u0435\u0441\u0438\u044f\u0442\u0430. \u0422\u043e\u0439 \u0441\u0435 \u0441\u043c\u0435\u043d\u044f \u043f\u0440\u0438 \u0432\u0441\u044f\u043a\u043e \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430\ + Извеждане на идентификатора на ÑеÑиÑта. Той Ñе ÑÐ¼ÐµÐ½Ñ Ð¿Ñ€Ð¸ вÑÑко Ñтартиране на\ Jenkins. UpdateViewCommand.ShortDescription=\ - \u041e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0435\u0444\u0438\u043d\u0438\u0446\u0438\u044f\u0442\u0430 \u043d\u0430 \u0438\u0437\u0433\u043b\u0435\u0434 \u043e\u0442 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438\u044f \u0432\u0445\u043e\u0434 \u0432\u044a\u0432 \u0444\u043e\u0440\u043c\u0430\u0442 XML.\ - \u041e\u0431\u0440\u0430\u0442\u043d\u043e\u0442\u043e \u043d\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u0430 \u201eget-view\u201c. + ОбновÑване на дефинициÑта на изглед от ÑÑ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚Ð½Ð¸Ñ Ð²Ñ…Ð¾Ð´ във формат XML.\ + Обратното на командата „get-view“. BuildCommand.CLICause.ShortDescription=\ - \u0417\u0430\u0434\u0430\u0447\u0430\u0442\u0430 \u0435 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0430 \u043e\u0442 \u043a\u043e\u043c\u0430\u043d\u0434\u043d\u0438\u044f \u0440\u0435\u0434 \u043e\u0442 \u201e{0}\u201c + Задачата е Ñтартирана от ÐºÐ¾Ð¼Ð°Ð½Ð´Ð½Ð¸Ñ Ñ€ÐµÐ´ от „{0}“ BuildCommand.CLICause.CannotBuildDisabled=\ - \u0417\u0430\u0434\u0430\u0447\u0430\u0442\u0430 \u201e{0}\u201c \u0435 \u0438\u0437\u043a\u043b\u044e\u0447\u0435\u043d\u0430 \u0438 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u0438. + Задачата „{0}“ е изключена и не може да Ñе изгради. BuildCommand.CLICause.CannotBuildConfigNotSaved=\ - \u0417\u0430\u0434\u0430\u0447\u0430\u0442\u0430 \u201e{0}\u201c \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u0438, \u0437\u0430\u0449\u043e\u0442\u043e \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435 \u045d \u043d\u0435 \u0441\u0430 \u0437\u0430\u043f\u0430\u0437\u0435\u043d\u0438. + Задачата „{0}“ не може да Ñе изгради, защото наÑтройките Ñ Ð½Ðµ Ñа запазени. BuildCommand.CLICause.CannotBuildUnknownReasons=\ - \u0417\u0430\u0434\u0430\u0447\u0430\u0442\u0430 \u201e{0}\u201c \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u0438 \u043f\u043e \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0438 \u043f\u0440\u0438\u0447\u0438\u043d\u0438. + Задачата „{0}“ не може да Ñе изгради по неизвеÑтни причини. ClearQueueCommand.ShortDescription=\ - \u0418\u0437\u0447\u0438\u0441\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043e\u043f\u0430\u0448\u043a\u0430\u0442\u0430 \u0441\u044a\u0441 \u0437\u0430\u0434\u0430\u0447\u0438. + ИзчиÑтване на опашката ÑÑŠÑ Ð·Ð°Ð´Ð°Ñ‡Ð¸. DisconnectNodeCommand.ShortDescription=\ - \u041f\u0440\u0435\u043a\u044a\u0441\u0432\u0430\u043d\u0435 \u043d\u0430 \u0432\u0440\u044a\u0437\u043a\u0430\u0442\u0430 \u0441 \u043c\u0430\u0448\u0438\u043d\u0430. + ПрекъÑване на връзката Ñ Ð¼Ð°ÑˆÐ¸Ð½Ð°. ReloadConfigurationCommand.ShortDescription=\ - \u0418\u0437\u0447\u0438\u0441\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0430\u043c\u0435\u0442\u0442\u0430 \u0438 \u043f\u0440\u0435\u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u043e \u043e\u0442 \u0444\u0430\u0439\u043b\u043e\u0432\u0430\u0442\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430.\ - \u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u043f\u0440\u0438 \u043f\u0440\u043e\u043c\u044f\u043d\u0430 \u043d\u0430 \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u0441 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043f\u043e \u0434\u0438\u0441\u043a\u0430. + ИзчиÑтване на паметта и презареждане на вÑичко от файловата ÑиÑтема.\ + Използвайте при промÑна на файлове Ñ Ð½Ð°Ñтройки по диÑка. QuietDownCommand.ShortDescription=\ - \u041f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043d\u0430 Jenkins \u0437\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435. \u0414\u0430 \u043d\u0435 \u0441\u0435 \u0434\u043e\u043f\u0443\u0441\u043a\u0430\u0442 \u043d\u043e\u0432\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f. + Подготовка на Jenkins за реÑтартиране. Да не Ñе допуÑкат нови изгражданиÑ. CancelQuietDownCommand.ShortDescription=\ - \u041e\u0442\u043c\u044f\u043d\u0430 \u043d\u0430 \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430\u0442\u0430 \u0437\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u2014 \u0449\u0435 \u0441\u0435 \u0434\u043e\u043f\u0443\u0441\u043a\u0430\u0442 \u043d\u043e\u0432\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f. + ОтмÑна на подготовката за реÑтартиране — ще Ñе допуÑкат нови изгражданиÑ. OfflineNodeCommand.ShortDescription=\ - \u0412\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u043f\u0440\u0435\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f \u0434\u043e\u043a\u0430\u0442\u043e \u043d\u0435 \u0441\u0435\ - \u0432\u044a\u0432\u0435\u0434\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u0430 \u201eonline-node\u201c. + Временно преуÑтановÑване на ползването на машина за Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ Ð´Ð¾ÐºÐ°Ñ‚Ð¾ не Ñе\ + въведе командата „online-node“. WaitNodeOnlineCommand.ShortDescription=\ - \u0418\u0437\u0447\u0430\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 \u0434\u0430 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f. + Изчакване на машина да е на линиÑ. WaitNodeOfflineCommand.ShortDescription=\ - \u0418\u0437\u0447\u0430\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 \u0434\u0430 \u043d\u0435 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f. + Изчакване на машина да не е на линиÑ. CreateViewCommand.ShortDescription=\ - \u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u043e\u0432 \u0438\u0437\u0433\u043b\u0435\u0434 \u043e\u0442 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438\u044f \u0432\u0445\u043e\u0434 \u0432\u044a\u0432 \u0444\u043e\u0440\u043c\u0430\u0442 XML. + Създаване на нов изглед от ÑÑ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚Ð½Ð¸Ñ Ð²Ñ…Ð¾Ð´ във формат XML. OnlineNodeCommand.ShortDescription=\ - \u041e\u0442\u043d\u043e\u0432\u043e \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f. \u0422\u043e\u0432\u0430 \u043e\u0442\u043c\u0435\u043d\u044f \u043f\u0440\u0435\u0434\u0438\u0448\u043d\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0430\ - \u201eoffline-node\u201c. + Отново ползване на машина за изгражданиÑ. Това Ð¾Ñ‚Ð¼ÐµÐ½Ñ Ð¿Ñ€ÐµÐ´Ð¸ÑˆÐ½Ð° команда\ + „offline-node“. ReloadJobCommand.ShortDescription=\ - \u041f\u0440\u0435\u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0438 + Презареждане на задачи DeleteNodeCommand.ShortDescription=\ - \u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043c\u0430\u0448\u0438\u043d\u0438 + Изтриване на машини # Reconnect to a node(s) ConnectNodeCommand.ShortDescription=\ - \u041d\u0430\u043d\u043e\u0432\u043e \u0441\u0432\u044a\u0440\u0437\u0432\u0430\u043d\u0435 \u043a\u044a\u043c \u043c\u0430\u0448\u0438\u043d\u0430 + Ðаново Ñвързване към машина # Jenkins CLI Protocol/2 CliProtocol2.displayName=\ - \u041f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u043d\u0430 Jenkins \u0437\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0435\u043d \u0440\u0435\u0434, \u0432\u0435\u0440\u0441\u0438\u044f 2 + Протокол на Jenkins за команден ред, верÑÐ¸Ñ 2 # Jenkins CLI Protocol/1 CliProtocol.displayName=\ - \u041f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u043d\u0430 Jenkins \u0437\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0435\u043d \u0440\u0435\u0434, \u0432\u0435\u0440\u0441\u0438\u044f 1 + Протокол на Jenkins за команден ред, верÑÐ¸Ñ 1 # Installing a plugin from standard input InstallPluginCommand.InstallingPluginFromStdin=\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430 \u043e\u0442 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438\u044f \u0432\u0445\u043e\u0434. + ИнÑталиране на приÑтавка от ÑÑ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚Ð½Ð¸Ñ Ð²Ñ…Ð¾Ð´. diff --git a/core/src/main/resources/hudson/cli/Messages_da.properties b/core/src/main/resources/hudson/cli/Messages_da.properties index bfd9e8d040cd..a48df1e25ee0 100644 --- a/core/src/main/resources/hudson/cli/Messages_da.properties +++ b/core/src/main/resources/hudson/cli/Messages_da.properties @@ -1,12 +1,12 @@ DeleteNodeCommand.ShortDescription=Sletter en node DeleteJobCommand.ShortDescription=Sletter et job OnlineNodeCommand.ShortDescription=Genoptag brugen af en byggenode, for at annullere en tidligere udstedt "offline-node" kommando. -ClearQueueCommand.ShortDescription=Ryd byggek\u00f8en -ReloadConfigurationCommand.ShortDescription=Genindl\u00e6s alle data fra filsystemet. \ +ClearQueueCommand.ShortDescription=Ryd byggekøen +ReloadConfigurationCommand.ShortDescription=Genindlæs alle data fra filsystemet. \ Nyttigt hvis du har modificeret konfigurationsfiler direkte, udenom Jenkins. DisconnectNodeCommand.ShortDescription=Afbryder forbindelsen til en node ConnectNodeCommand.ShortDescription=Gentilslut en node QuietDownCommand.ShortDescription=Forbereder nedlukning, starter ingen nye byg. -CancelQuietDownCommand.ShortDescription=Sl\u00e5 effekten af "quite-down" kommandoen fra. -OfflineNodeCommand.ShortDescription=Hold midlertidigt op med at bygge p\u00e5 en node, indtil n\u00e6ste "online-node" kommando. +CancelQuietDownCommand.ShortDescription=SlÃ¥ effekten af "quite-down" kommandoen fra. +OfflineNodeCommand.ShortDescription=Hold midlertidigt op med at bygge pÃ¥ en node, indtil næste "online-node" kommando. diff --git a/core/src/main/resources/hudson/cli/Messages_de.properties b/core/src/main/resources/hudson/cli/Messages_de.properties index 0dc0e6e5616b..1a390a6d1ecb 100644 --- a/core/src/main/resources/hudson/cli/Messages_de.properties +++ b/core/src/main/resources/hudson/cli/Messages_de.properties @@ -1,56 +1,56 @@ -AddJobToViewCommand.ShortDescription=F\u00FCgt Elemente zu einer Ansicht hinzu. +AddJobToViewCommand.ShortDescription=Fügt Elemente zu einer Ansicht hinzu. BuildCommand.CLICause.CannotBuildConfigNotSaved=Kann {0} nicht bauen, da dessen Konfiguration noch nicht gespeichert wurde. BuildCommand.CLICause.CannotBuildDisabled={0} kann nicht gebaut werden, da es deaktiviert ist. -BuildCommand.CLICause.CannotBuildUnknownReasons=Kann {0} aus unbekannten Gr\u00FCnden nicht bauen. +BuildCommand.CLICause.CannotBuildUnknownReasons=Kann {0} aus unbekannten Gründen nicht bauen. BuildCommand.CLICause.ShortDescription=Von {0} via Befehlszeile gestartet BuildCommand.ShortDescription=Startet einen Build, und wartet optional auf dessen Ende. CancelQuietDownCommand.ShortDescription=Wirkung des Befehls "quiet-down" wieder aufheben. ClearQueueCommand.ShortDescription=Build-Warteschlange leeren. -CliProtocol.displayName=Jenkins-CLI-Protokoll/1 (unverschl\u00FCsselt) -CliProtocol2.displayName=Jenkins-CLI-Protokoll/2 (Verschl\u00FCsselung der Transportschicht) +CliProtocol.displayName=Jenkins-CLI-Protokoll/1 (unverschlüsselt) +CliProtocol2.displayName=Jenkins-CLI-Protokoll/2 (Verschlüsselung der Transportschicht) ConnectNodeCommand.ShortDescription=Erneut mit Knoten verbinden. ConsoleCommand.ShortDescription=Gibt die Konsolenausgabe eines Builds aus. CopyJobCommand.ShortDescription=Kopiert ein Element. -CreateJobCommand.ShortDescription=Erstellt ein neues Element basierend auf der via Standardeingabe (stdin) bereitgestellten XML-Repr\u00E4sentation. -CreateNodeCommand.ShortDescription=Erstellt einen neuen Agenten basierend auf der via Standardeingabe (stdin) bereitgestellten XML-Repr\u00E4sentation. -CreateViewCommand.ShortDescription=Erstellt eine neue Ansicht basierend auf der via Standardeingabe (stdin) bereitgestellten XML-Repr\u00E4sentation. -DeleteBuildsCommand.ShortDescription=L\u00F6scht Builds. -DeleteJobCommand.ShortDescription=Element l\u00F6schen. -DeleteNodeCommand.ShortDescription=Knoten l\u00F6schen. +CreateJobCommand.ShortDescription=Erstellt ein neues Element basierend auf der via Standardeingabe (stdin) bereitgestellten XML-Repräsentation. +CreateNodeCommand.ShortDescription=Erstellt einen neuen Agenten basierend auf der via Standardeingabe (stdin) bereitgestellten XML-Repräsentation. +CreateViewCommand.ShortDescription=Erstellt eine neue Ansicht basierend auf der via Standardeingabe (stdin) bereitgestellten XML-Repräsentation. +DeleteBuildsCommand.ShortDescription=Löscht Builds. +DeleteJobCommand.ShortDescription=Element löschen. +DeleteNodeCommand.ShortDescription=Knoten löschen. DeleteViewCommand.ShortDescription=Entfernt die angegebene Ansicht. DisconnectNodeCommand.ShortDescription=Knoten trennen. -GetJobCommand.ShortDescription=Gibt die XML-Repr\u00E4sentation des angegebenen Elements aus. -GetNodeCommand.ShortDescription=Gibt die XML-Repr\u00E4sentation des angegebenen Agenten aus. -GetViewCommand.ShortDescription=Gibt die XML-Repr\u00E4sentation der angegebenen Ansicht aus. -GroovyCommand.ShortDescription=F\u00FChrt das angegebene Groovy-Skript aus. +GetJobCommand.ShortDescription=Gibt die XML-Repräsentation des angegebenen Elements aus. +GetNodeCommand.ShortDescription=Gibt die XML-Repräsentation des angegebenen Agenten aus. +GetViewCommand.ShortDescription=Gibt die XML-Repräsentation der angegebenen Ansicht aus. +GroovyCommand.ShortDescription=Führt das angegebene Groovy-Skript aus. GroovyshCommand.ShortDescription=Startet eine interaktive Groovy-Shell. -HelpCommand.ShortDescription=Zeigt eine Auflistung aller verf\u00FCgbaren Befehle oder die detaillierte Beschreibung eines einzelnen Befehls. -InstallPluginCommand.DidYouMean={0} sieht wie ein Plugin-Kurzname aus. Meinten Sie \u2018{1}\u2019? +HelpCommand.ShortDescription=Zeigt eine Auflistung aller verfügbaren Befehle oder die detaillierte Beschreibung eines einzelnen Befehls. +InstallPluginCommand.DidYouMean={0} sieht wie ein Plugin-Kurzname aus. Meinten Sie ‘{1}’? InstallPluginCommand.InstallingFromUpdateCenter=Installiere {0} aus dem Update-Center. InstallPluginCommand.InstallingPluginFromLocalFile=Installiere ein Plugin von einer lokalen Datei: {0} InstallPluginCommand.InstallingPluginFromUrl=Installiere ein Plugin von {0} -InstallPluginCommand.NotAValidSourceName={0} ist keine g\u00FCltige Datei, URL, oder ein Plugin-Name im Update-Center +InstallPluginCommand.NotAValidSourceName={0} ist keine gültige Datei, URL, oder ein Plugin-Name im Update-Center InstallPluginCommand.NoUpdateCenterDefined=Kein Update-Center ist konfiguriert InstallPluginCommand.NoUpdateDataRetrieved=Update-Center-Metadaten wurden noch nicht von {0} heruntergeladen. InstallPluginCommand.ShortDescription=Installiert ein Plugin von einer Datei, URL, oder aus dem Update-Center ListChangesCommand.ShortDescription=Zeigt das Changelog des angegebenen Builds. -ListJobsCommand.ShortDescription=Zeigt alle Elemente, die zu einer Ansicht oder einem Ordner geh\u00F6ren. +ListJobsCommand.ShortDescription=Zeigt alle Elemente, die zu einer Ansicht oder einem Ordner gehören. ListPluginsCommand.ShortDescription=Gibt eine Liste installierter Plugins aus. -OfflineNodeCommand.ShortDescription=Knoten wird bis zum n\u00E4chsten "online-node"-Kommando f\u00FCr keine neuen Builds verwendet. -OnlineNodeCommand.ShortDescription=Knoten wird wieder f\u00FCr neue Builds verwendet. Hebt ein vorausgegangenes "offline-node"-Kommando auf. +OfflineNodeCommand.ShortDescription=Knoten wird bis zum nächsten "online-node"-Kommando für keine neuen Builds verwendet. +OnlineNodeCommand.ShortDescription=Knoten wird wieder für neue Builds verwendet. Hebt ein vorausgegangenes "offline-node"-Kommando auf. QuietDownCommand.ShortDescription=Keine neuen Builds mehr starten, z.B. zur Vorbereitung eines Neustarts. -ReloadConfigurationCommand.ShortDescription=Alle Daten im Speicher verwerfen und Konfiguration neu von Festplatte laden. Dies ist n\u00FCtzlich, wenn Sie \u00C4nderungen direkt im Dateisystem vorgenommen haben. -ReloadJobCommand.ShortDescription=L\u00E4dt ein Element neu. +ReloadConfigurationCommand.ShortDescription=Alle Daten im Speicher verwerfen und Konfiguration neu von Festplatte laden. Dies ist nützlich, wenn Sie Änderungen direkt im Dateisystem vorgenommen haben. +ReloadJobCommand.ShortDescription=Lädt ein Element neu. RemoveJobFromViewCommand.ShortDescription=Entfernt Elemente aus einer Ansicht -SessionIdCommand.ShortDescription=Gibt die Session ID aus, die sich bei jedem Neustart von Jenkins \u00E4ndert. +SessionIdCommand.ShortDescription=Gibt die Session ID aus, die sich bei jedem Neustart von Jenkins ändert. SetBuildDescriptionCommand.ShortDescription=Setzt die Beschreibung eines Builds. SetBuildDisplayNameCommand.ShortDescription=Setzt den Anzeigenamen eines Builds. -UpdateJobCommand.ShortDescription=Aktualisiert die Konfiguration eines Elements basierend auf der via Standardeingabe (stdin) bereitgestellten XML-Repr\u00E4sentation. Das Gegenst\u00FCck zum Befehl get-job. -UpdateNodeCommand.ShortDescription=Aktualisiert die Konfiguration eines Knotens basierend auf der via Standardeingabe (stdin) bereitgestellten XML-Repr\u00E4sentation. Das Gegenst\u00FCck zum Befehl get-node. -UpdateViewCommand.ShortDescription=Aktualisiert die Konfiguration einer Ansicht basierend auf der via Standardeingabe (stdin) bereitgestellten XML-Repr\u00E4sentation. Das Gegenst\u00FCck zum Befehl get-view. +UpdateJobCommand.ShortDescription=Aktualisiert die Konfiguration eines Elements basierend auf der via Standardeingabe (stdin) bereitgestellten XML-Repräsentation. Das Gegenstück zum Befehl get-job. +UpdateNodeCommand.ShortDescription=Aktualisiert die Konfiguration eines Knotens basierend auf der via Standardeingabe (stdin) bereitgestellten XML-Repräsentation. Das Gegenstück zum Befehl get-node. +UpdateViewCommand.ShortDescription=Aktualisiert die Konfiguration einer Ansicht basierend auf der via Standardeingabe (stdin) bereitgestellten XML-Repräsentation. Das Gegenstück zum Befehl get-view. VersionCommand.ShortDescription=Zeigt die aktuelle Version an. -WaitNodeOfflineCommand.ShortDescription=Wartet bis ein Knoten nicht mehr f\u00FCr neue Builds verwendet werden kann. +WaitNodeOfflineCommand.ShortDescription=Wartet bis ein Knoten nicht mehr für neue Builds verwendet werden kann. # TODO temporarily offline? -WaitNodeOnlineCommand.ShortDescription=Wartet bis ein Knoten wieder f\u00FCr neue Builds verwendet werden kann. +WaitNodeOnlineCommand.ShortDescription=Wartet bis ein Knoten wieder für neue Builds verwendet werden kann. WhoAmICommand.ShortDescription=Zeigt Ihren Login und Berechtigungen an. diff --git a/core/src/main/resources/hudson/cli/Messages_es.properties b/core/src/main/resources/hudson/cli/Messages_es.properties index 10aab16272bf..a11fa09e208d 100644 --- a/core/src/main/resources/hudson/cli/Messages_es.properties +++ b/core/src/main/resources/hudson/cli/Messages_es.properties @@ -21,42 +21,42 @@ # THE SOFTWARE. InstallPluginCommand.InstallingPluginFromUrl=Instalando un plugin desde {0} -InstallPluginCommand.NotAValidSourceName={0} no es un fichero/url válido, ni existe en el centro de actualizaciones +InstallPluginCommand.NotAValidSourceName={0} no es un fichero/url válido, ni existe en el centro de actualizaciones InstallPluginCommand.InstallingFromUpdateCenter=Instalando {0} desde el centro de actualizaciones InstallPluginCommand.InstallingPluginFromLocalFile=Instalando un plugin desde un fichero local: {0} -InstallPluginCommand.NoUpdateDataRetrieved=No se recogió todavía información de actualizacion desde: {0} +InstallPluginCommand.NoUpdateDataRetrieved=No se recogió todavía información de actualizacion desde: {0} InstallPluginCommand.NoUpdateCenterDefined=No se ha definido un centro de actualizaciones en este Jenkins -InstallPluginCommand.DidYouMean={0} parece un nombre de plugin corto. ¿Quieres decir ''{1}''? -GetJobCommand.ShortDescription=Volcar el fichero XML de la definición de tarea a la salida estándard +InstallPluginCommand.DidYouMean={0} parece un nombre de plugin corto. ¿Quieres decir ''{1}''? +GetJobCommand.ShortDescription=Volcar el fichero XML de la definición de tarea a la salida estándard CopyJobCommand.ShortDescription=Copia una tarea DeleteBuildsCommand.ShortDescription=Permite borrar registros InstallPluginCommand.ShortDescription=Instala un plugin desde un fichero, una URL o desde el centro de actualizaciones. -VersionCommand.ShortDescription=Muestra la versión actual. +VersionCommand.ShortDescription=Muestra la versión actual. ListChangesCommand.ShortDescription=Vuelca el registro de cambios del trabajo actual. -CreateJobCommand.ShortDescription=Permite crear una nueva tarea leyendo un fichero XML por la entrada estándard. +CreateJobCommand.ShortDescription=Permite crear una nueva tarea leyendo un fichero XML por la entrada estándard. GroovyCommand.ShortDescription=Ejecuta el script de groovy especificado. SetBuildDisplayNameCommand.ShortDescription=Establece el nombre a mostrar de un trabajo. BuildCommand.ShortDescription=Ejecuta una tarea, y opcionalmente espera hasta que acabe. HelpCommand.ShortDescription=Muestra la lista de todos los comandos disponibles. WhoAmICommand.ShortDescription=Muestra tus credenciales y permisos -UpdateJobCommand.ShortDescription=Actualiza el fichero XML de la definición de una tarea desde la entrada estándard. Es lo contrario al comando get-job. +UpdateJobCommand.ShortDescription=Actualiza el fichero XML de la definición de una tarea desde la entrada estándard. Es lo contrario al comando get-job. GroovyshCommand.ShortDescription=Ejecuta una shell interactiva de groovy. -SetBuildDescriptionCommand.ShortDescription=Establece la descripción de una ejecución. +SetBuildDescriptionCommand.ShortDescription=Establece la descripción de una ejecución. DeleteJobCommand.ShortDescription=Borrar una tarea DeleteNodeCommand.ShortDescription=Borrar un nodo OnlineNodeCommand.ShortDescription=Continuar usando un nodo y candelar el comando "offline-node" mas reciente. ClearQueueCommand.ShortDescription=Limpiar la cola de trabajos -ReloadConfigurationCommand.ShortDescription=Descartar todos los datos presentes en memoria y recargar todo desde el disco duro. \u00datil cuando se han hecho modificaciones a mano en el disco duro. +ReloadConfigurationCommand.ShortDescription=Descartar todos los datos presentes en memoria y recargar todo desde el disco duro. Útil cuando se han hecho modificaciones a mano en el disco duro. ConnectNodeCommand.ShortDescription=Reconectarse con un nodo DisconnectNodeCommand.ShortDescription=Desconectarse de un nodo -QuietDownCommand.ShortDescription=Poner Jenkins en modo quieto y estar preparado para un reinicio. No comenzar ninguna ejecuci\u00f3n. +QuietDownCommand.ShortDescription=Poner Jenkins en modo quieto y estar preparado para un reinicio. No comenzar ninguna ejecución. CancelQuietDownCommand.ShortDescription=Cancelar el efecto del comando "quiet-down". OfflineNodeCommand.ShortDescription=Dejar de utilizar un nodo temporalmente hasta que se ejecute el comando "online-node". -WaitNodeOnlineCommand.ShortDescription=Esperando hasta que el nodo esté activado -WaitNodeOfflineCommand.ShortDescription=Esperando a que el nodo esté desactivado +WaitNodeOnlineCommand.ShortDescription=Esperando hasta que el nodo esté activado +WaitNodeOfflineCommand.ShortDescription=Esperando a que el nodo esté desactivado DisablePluginCommand.ShortDescription=\ -Deshabilita uno o más plugins instalados. +Deshabilita uno o más plugins instalados. DisablePluginCommand.NoSuchStrategy=Esta estrategia ({0}) no existe. Las estrategias permitidas son {1} DisablePluginCommand.PrintUsageSummary=\ -Deshabilita los plugins con los nombre cortos dados. Puede definir cómo proceder con los plugins dependientes y si se realiza un reinicio posterior. +Deshabilita los plugins con los nombre cortos dados. Puede definir cómo proceder con los plugins dependientes y si se realiza un reinicio posterior. DisablePluginCommand.StatusMessage=Deshabilitando {0}: {1} ({2}) diff --git a/core/src/main/resources/hudson/cli/Messages_it.properties b/core/src/main/resources/hudson/cli/Messages_it.properties index 1893f5e3c8cf..d5c2d9264a0d 100644 --- a/core/src/main/resources/hudson/cli/Messages_it.properties +++ b/core/src/main/resources/hudson/cli/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -23,8 +23,8 @@ AddJobToViewCommand.ShortDescription=Aggiunge dei processi alla vista. BuildCommand.CLICause.CannotBuildConfigNotSaved=Impossibile compilare {0} \ - perché la relativa configurazione non è stata salvata. -BuildCommand.CLICause.CannotBuildDisabled=Impossibile compilare {0} perché è \ + perché la relativa configurazione non è stata salvata. +BuildCommand.CLICause.CannotBuildDisabled=Impossibile compilare {0} perché è \ disabilitato. BuildCommand.CLICause.CannotBuildUnknownReasons=Impossibile compilare {0} per \ motivi sconosciuti. @@ -38,7 +38,7 @@ CliProtocol2.displayName=Protocollo Jenkins interfaccia da riga di comando/2 \ (trasporto criptato) CliProtocol.displayName=Protocollo Jenkins interfaccia da riga di comando/1 \ (non criptato) -ConnectNodeCommand.ShortDescription=Esegue la riconnessione a uno o più nodi. +ConnectNodeCommand.ShortDescription=Esegue la riconnessione a uno o più nodi. ConsoleCommand.ShortDescription=Recupera l''output console di una compilazione. CopyJobCommand.ShortDescription=Copia un processo. CreateJobCommand.ShortDescription=Crea un nuovo processo leggendo un file di \ @@ -47,26 +47,26 @@ CreateNodeCommand.ShortDescription=Crea un nuovo nodo leggendo un file di \ configurazione XML dallo standard input. CreateViewCommand.ShortDescription=Crea una nuova vista leggendo un file di \ configurazione XML dallo standard input. -DeleteBuildsCommand.ShortDescription=Elimina uno o più record di compilazione. -DeleteJobCommand.ShortDescription=Elimina uno o più processi. -DeleteNodeCommand.ShortDescription=Elimina uno o più nodi. -DeleteViewCommand.ShortDescription=Elimina una o più viste. +DeleteBuildsCommand.ShortDescription=Elimina uno o più record di compilazione. +DeleteJobCommand.ShortDescription=Elimina uno o più processi. +DeleteNodeCommand.ShortDescription=Elimina uno o più nodi. +DeleteViewCommand.ShortDescription=Elimina una o più viste. DisablePluginCommand.NoSuchStrategy=Questa strategia ({0}) non esiste. Le \ strategie consentite sono: {1} DisablePluginCommand.PrintUsageSummary=Disabilita i componenti aggiuntivi con \ - i nomi brevi dati. È possibile definire come procedere per i componenti \ - aggiuntivi dipendenti e se Jenkins dev''essere riavviato subito dopo. È \ - possibile anche impostare la modalità silenziosa per evitare che vengano \ + i nomi brevi dati. È possibile definire come procedere per i componenti \ + aggiuntivi dipendenti e se Jenkins dev''essere riavviato subito dopo. È \ + possibile anche impostare la modalità silenziosa per evitare che vengano \ stampate informazioni aggiuntive nella console. -DisablePluginCommand.ShortDescription=Disabilita uno o più componenti \ +DisablePluginCommand.ShortDescription=Disabilita uno o più componenti \ aggiuntivi installati. DisablePluginCommand.StatusMessage=Disabilitazione di "{0}" in corso: {1} ({2}) DisconnectNodeCommand.ShortDescription=Esegue la disconnessione da un nodo. -EnablePluginCommand.ShortDescription=Abilita transitivamente uno o più \ +EnablePluginCommand.ShortDescription=Abilita transitivamente uno o più \ componenti aggiuntivi installati. EnablePluginCommand.MissingDependencies=Impossibile abilitare il componente \ - aggiuntivo {0} perché la sua dipendenza {1} è mancante -EnablePluginCommand.NoSuchPlugin=Non è stato trovato alcun componente \ + aggiuntivo {0} perché la sua dipendenza {1} è mancante +EnablePluginCommand.NoSuchPlugin=Non è stato trovato alcun componente \ aggiuntivo di nome {0} GetJobCommand.ShortDescription=Stampa l''XML della definizione del processo \ sullo standard output. @@ -88,11 +88,11 @@ InstallPluginCommand.InstallingPluginFromStdin=Installazione di un componente \ aggiuntivo dallo standard input in corso InstallPluginCommand.InstallingPluginFromUrl=Installazione di un componente \ aggiuntivo da {0} in corso -InstallPluginCommand.NotAValidSourceName={0} non è né un file valido, né un \ - URL, né il nome di un artefatto componente aggiuntivo nel Centro \ +InstallPluginCommand.NotAValidSourceName={0} non è né un file valido, né un \ + URL, né il nome di un artefatto componente aggiuntivo nel Centro \ aggiornamenti InstallPluginCommand.NoUpdateCenterDefined=Si noti che su quest''istanza di \ - Jenkins non è definito alcun Centro aggiornamenti. + Jenkins non è definito alcun Centro aggiornamenti. InstallPluginCommand.NoUpdateDataRetrieved=Non sono ancora stati recuperati i \ dati Centro aggiornamenti da {0} InstallPluginCommand.ShortDescription=Installa un componente aggiuntivo da un \ @@ -110,9 +110,9 @@ OnlineNodeCommand.ShortDescription=Riprende ad usare un nodo per eseguire le \ QuietDownCommand.ShortDescription=Prepara Jenkins per lo spegnimento in \ preparazione ad un suo riavvio. Non fa avviare alcuna compilazione. ReloadConfigurationCommand.ShortDescription=Elimina tutti i dati caricati in \ - memoria e ricarica tutto dal file system. Quest''opzione è utile se si sono \ + memoria e ricarica tutto dal file system. Quest''opzione è utile se si sono \ modificati dei file di configurazione direttamente su disco. -ReloadJobCommand.ShortDescription=Ricarica uno o più processi. +ReloadJobCommand.ShortDescription=Ricarica uno o più processi. RemoveJobFromViewCommand.ShortDescription=Rimuove dei processi dalla vista. SessionIdCommand.ShortDescription=Restituisce l''ID di sessione (che viene \ modificato ad ogni riavvio di Jenkins). @@ -121,11 +121,11 @@ SetBuildDescriptionCommand.ShortDescription=Imposta la descrizione di una \ SetBuildDisplayNameCommand.ShortDescription=Imposta il nome visualizzato di \ una compilazione. UpdateJobCommand.ShortDescription=Aggiorna l''XML della definizione del \ - processo dallo standard input. È l''opposto del comando get-job. + processo dallo standard input. È l''opposto del comando get-job. UpdateNodeCommand.ShortDescription=Aggiorna l''XML del nodo del processo \ - dallo standard input. È l''opposto del comando get-node. + dallo standard input. È l''opposto del comando get-node. UpdateViewCommand.ShortDescription=Aggiorna l''XML della definizione della \ - vista dallo standard input. È l''opposto del comando get-view. + vista dallo standard input. È l''opposto del comando get-view. VersionCommand.ShortDescription=Restituisce la versione corrente. WaitNodeOfflineCommand.ShortDescription=Attende che un nodo vada non in linea. WaitNodeOnlineCommand.ShortDescription=Attende che un nodo torni in linea. diff --git a/core/src/main/resources/hudson/cli/Messages_ja.properties b/core/src/main/resources/hudson/cli/Messages_ja.properties index f5f67e813ecb..fbf308f1eaaa 100644 --- a/core/src/main/resources/hudson/cli/Messages_ja.properties +++ b/core/src/main/resources/hudson/cli/Messages_ja.properties @@ -1,72 +1,72 @@ -InstallPluginCommand.DidYouMean={0} \u306f\u7701\u7565\u540d\u306e\u3088\u3046\u3067\u3059\u304c\u3001''{1}''\u3067\u3088\u308d\u3057\u3044\u3067\u3059\u304b? -InstallPluginCommand.InstallingFromUpdateCenter=\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u30bb\u30f3\u30bf\u304b\u3089 {0} \u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059\u3002 -InstallPluginCommand.InstallingPluginFromLocalFile=\u30ed\u30fc\u30ab\u30eb\u30d5\u30a1\u30a4\u30eb: {0} \u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059\u3002 -InstallPluginCommand.InstallingPluginFromUrl={0} \u304b\u3089\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059\u3002 -InstallPluginCommand.NoUpdateCenterDefined=\u6ce8\u610f: Jenkins\u306b\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u30bb\u30f3\u30bf\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002 -InstallPluginCommand.NoUpdateDataRetrieved={0} \u304b\u3089\u30a2\u30c3\u30d7\u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u306e\u30c7\u30fc\u30bf\u3092\u307e\u3060\u53d6\u5f97\u3057\u3066\u3044\u307e\u305b\u3093\u3002 -InstallPluginCommand.NotAValidSourceName={0} \u306f\u3001\u6b63\u3057\u3044\u30d5\u30a1\u30a4\u30eb\u3001URL\u3082\u3057\u304f\u306f\u30d7\u30e9\u30b0\u30a4\u30f3\u540d\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 +InstallPluginCommand.DidYouMean={0} ã¯çœç•¥åã®ã‚ˆã†ã§ã™ãŒã€''{1}''ã§ã‚ˆã‚ã—ã„ã§ã™ã‹? +InstallPluginCommand.InstallingFromUpdateCenter=アップデートセンタã‹ã‚‰ {0} をインストールã—ã¾ã™ã€‚ +InstallPluginCommand.InstallingPluginFromLocalFile=ローカルファイル: {0} をインストールã—ã¾ã™ã€‚ +InstallPluginCommand.InstallingPluginFromUrl={0} ã‹ã‚‰ãƒ—ラグインをインストールã—ã¾ã™ã€‚ +InstallPluginCommand.NoUpdateCenterDefined=注æ„: Jenkinsã«ã‚¢ãƒƒãƒ—デートセンタãŒè¨­å®šã•ã‚Œã¦ã„ã¾ã›ã‚“。 +InstallPluginCommand.NoUpdateDataRetrieved={0} ã‹ã‚‰ã‚¢ãƒƒãƒ—データセンタã®ãƒ‡ãƒ¼ã‚¿ã‚’ã¾ã å–å¾—ã—ã¦ã„ã¾ã›ã‚“。 +InstallPluginCommand.NotAValidSourceName={0} ã¯ã€æ­£ã—ã„ファイルã€URLã‚‚ã—ãã¯ãƒ—ラグインåã§ã¯ã‚ã‚Šã¾ã›ã‚“。 BuildCommand.ShortDescription=\ - \u30b8\u30e7\u30d6\u3092\u30d3\u30eb\u30c9\u3057\u307e\u3059\u3002\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u5b8c\u4e86\u3059\u308b\u307e\u3067\u5f85\u3061\u307e\u3059\u3002 + ジョブをビルドã—ã¾ã™ã€‚オプションã§å®Œäº†ã™ã‚‹ã¾ã§å¾…ã¡ã¾ã™ã€‚ ConsoleCommand.ShortDescription=\ - \u30d3\u30eb\u30c9\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u51fa\u529b\u3092\u53d6\u5f97\u3057\u307e\u3059\u3002 -CopyJobCommand.ShortDescription=\u30b8\u30e7\u30d6\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059\u3002 + ビルドã®ã‚³ãƒ³ã‚½ãƒ¼ãƒ«å‡ºåŠ›ã‚’å–å¾—ã—ã¾ã™ã€‚ +CopyJobCommand.ShortDescription=ジョブをコピーã—ã¾ã™ã€‚ CreateJobCommand.ShortDescription=\ - \u6a19\u6e96\u5165\u529b\u3092Config XML\u3068\u3057\u3066\u8aad\u307f\u8fbc\u307f\u3001\u30b8\u30e7\u30d6\u3092\u65b0\u898f\u306b\u4f5c\u6210\u3057\u307e\u3059\u3002 + 標準入力をConfig XMLã¨ã—ã¦èª­ã¿è¾¼ã¿ã€ã‚¸ãƒ§ãƒ–ã‚’æ–°è¦ã«ä½œæˆã—ã¾ã™ã€‚ CreateNodeCommand.ShortDescription=\ - \u6a19\u6e96\u5165\u529b\u3092Config XML\u3068\u3057\u3066\u8aad\u307f\u8fbc\u307f\u3001\u30ce\u30fc\u30c9\u3092\u65b0\u898f\u306b\u4f5c\u6210\u3057\u307e\u3059\u3002 + 標準入力をConfig XMLã¨ã—ã¦èª­ã¿è¾¼ã¿ã€ãƒŽãƒ¼ãƒ‰ã‚’æ–°è¦ã«ä½œæˆã—ã¾ã™ã€‚ DeleteBuildsCommand.ShortDescription=\ - \u30d3\u30eb\u30c9\u3092\u524a\u9664\u3057\u307e\u3059\u3002 + ビルドを削除ã—ã¾ã™ã€‚ GroovyCommand.ShortDescription=\ - \u6307\u5b9a\u3057\u305fGroovy\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059\u3002 + 指定ã—ãŸGroovyスクリプトを実行ã—ã¾ã™ã€‚ GroovyshCommand.ShortDescription=\ - \u5bfe\u8a71\u5f0f\u306eGroovy\u30b7\u30a7\u30eb\u3092\u8d77\u52d5\u3057\u307e\u3059\u3002 + 対話å¼ã®Groovyシェルを起動ã—ã¾ã™ã€‚ HelpCommand.ShortDescription=\ - \u5229\u7528\u53ef\u80fd\u306a\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u89a7\u3092\u8868\u793a\u3057\u307e\u3059\u3002 + 利用å¯èƒ½ãªã‚³ãƒžãƒ³ãƒ‰ã®ä¸€è¦§ã‚’表示ã—ã¾ã™ã€‚ InstallPluginCommand.ShortDescription=\ - \u30d5\u30a1\u30a4\u30eb\u3001URL\u304a\u3088\u3073\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u30bb\u30f3\u30bf\u30fc\u304b\u3089\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059\u3002 + ファイルã€URLãŠã‚ˆã³ã‚¢ãƒƒãƒ—デートセンターã‹ã‚‰ãƒ—ラグインをインストールã—ã¾ã™ã€‚ ListChangesCommand.ShortDescription=\ - \u6307\u5b9a\u3057\u305f\u30d3\u30eb\u30c9\u306e\u5909\u66f4\u5c65\u6b74\u3092\u8868\u793a\u3057\u307e\u3059\u3002 + 指定ã—ãŸãƒ“ルドã®å¤‰æ›´å±¥æ­´ã‚’表示ã—ã¾ã™ã€‚ ListJobsCommand.ShortDescription=\ - \u6307\u5b9a\u3057\u305f\u30d3\u30e5\u30fc\u304bItem Group\u306e\u3059\u3079\u3066\u306e\u30b8\u30e7\u30d6\u3092\u4e00\u89a7\u8868\u793a\u3057\u307e\u3059\u3002 + 指定ã—ãŸãƒ“ューã‹Item Groupã®ã™ã¹ã¦ã®ã‚¸ãƒ§ãƒ–を一覧表示ã—ã¾ã™ã€‚ ListPluginsCommand.ShortDescription=\ - \u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u6e08\u307f\u306e\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u4e00\u89a7\u8868\u793a\u3057\u307e\u3059\u3002 + インストール済ã¿ã®ãƒ—ラグインを一覧表示ã—ã¾ã™ã€‚ SetBuildDescriptionCommand.ShortDescription=\ - \u30d3\u30eb\u30c9\u306e\u8aac\u660e\u3092\u8a2d\u5b9a\u3057\u307e\u3059\u3002 + ビルドã®èª¬æ˜Žã‚’設定ã—ã¾ã™ã€‚ VersionCommand.ShortDescription=\ - \u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8868\u793a\u3057\u307e\u3059\u3002 + ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’表示ã—ã¾ã™ã€‚ GetJobCommand.ShortDescription=\ - \u30b8\u30e7\u30d6\u5b9a\u7fa9XML\u3092\u6a19\u6e96\u51fa\u529b\u306b\u51fa\u529b\u3057\u307e\u3059\u3002 + ジョブ定義XMLを標準出力ã«å‡ºåŠ›ã—ã¾ã™ã€‚ GetNodeCommand.ShortDescription=\ - \u30ce\u30fc\u30c9\u5b9a\u7fa9XML\u3092\u6a19\u6e96\u51fa\u529b\u306b\u51fa\u529b\u3057\u307e\u3059\u3002 + ノード定義XMLを標準出力ã«å‡ºåŠ›ã—ã¾ã™ã€‚ SetBuildDisplayNameCommand.ShortDescription=\ - \u30d3\u30eb\u30c9\u306e\u540d\u79f0\u3092\u8a2d\u5b9a\u3057\u307e\u3059\u3002 + ビルドã®å称を設定ã—ã¾ã™ã€‚ WhoAmICommand.ShortDescription=\ - \u8a8d\u8a3c\u60c5\u5831\u3092\u8868\u793a\u3057\u307e\u3059\u3002 + èªè¨¼æƒ…報を表示ã—ã¾ã™ã€‚ UpdateJobCommand.ShortDescription=\ - \u6a19\u6e96\u5165\u529b\u304b\u3089\u306e\u60c5\u5831\u3067\u30b8\u30e7\u30d6\u5b9a\u7fa9XML\u3092\u66f4\u65b0\u3057\u307e\u3059\u3002get-job\u30b3\u30de\u30f3\u30c9\u306e\u6b63\u53cd\u5bfe\u306e\u3053\u3068\u3092\u884c\u3044\u307e\u3059\u3002 + 標準入力ã‹ã‚‰ã®æƒ…å ±ã§ã‚¸ãƒ§ãƒ–定義XMLã‚’æ›´æ–°ã—ã¾ã™ã€‚get-jobコマンドã®æ­£å対ã®ã“ã¨ã‚’è¡Œã„ã¾ã™ã€‚ UpdateNodeCommand.ShortDescription=\ - \u6a19\u6e96\u5165\u529b\u304b\u3089\u306e\u60c5\u5831\u3067\u30ce\u30fc\u30c9\u5b9a\u7fa9XML\u3092\u66f4\u65b0\u3057\u307e\u3059\u3002get-node\u30b3\u30de\u30f3\u30c9\u306e\u6b63\u53cd\u5bfe\u306e\u3053\u3068\u3092\u884c\u3044\u307e\u3059\u3002 + 標準入力ã‹ã‚‰ã®æƒ…å ±ã§ãƒŽãƒ¼ãƒ‰å®šç¾©XMLã‚’æ›´æ–°ã—ã¾ã™ã€‚get-nodeコマンドã®æ­£å対ã®ã“ã¨ã‚’è¡Œã„ã¾ã™ã€‚ SessionIdCommand.ShortDescription=\ - Jenkins\u306e\u518d\u8d77\u52d5\u3054\u3068\u306b\u5909\u5316\u3059\u308b\u30bb\u30c3\u30b7\u30e7\u30f3ID\u3092\u51fa\u529b\u3057\u307e\u3059\u3002 + Jenkinsã®å†èµ·å‹•ã”ã¨ã«å¤‰åŒ–ã™ã‚‹ã‚»ãƒƒã‚·ãƒ§ãƒ³IDを出力ã—ã¾ã™ã€‚ -BuildCommand.CLICause.ShortDescription=\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3 {0}\u306b\u3088\u308a\u8d77\u52d5 +BuildCommand.CLICause.ShortDescription=コマンドライン {0}ã«ã‚ˆã‚Šèµ·å‹• BuildCommand.CLICause.CannotBuildDisabled=\ - \u7121\u52b9\u5316\u3055\u308c\u3066\u3044\u308b\u306e\u3067{0}\u3092\u30d3\u30eb\u30c9\u3067\u304d\u307e\u305b\u3093\u3002 + 無効化ã•ã‚Œã¦ã„ã‚‹ã®ã§{0}をビルドã§ãã¾ã›ã‚“。 BuildCommand.CLICause.CannotBuildConfigNotSaved=\ - \u8a2d\u5b9a\u304c\u4fdd\u5b58\u3055\u308c\u3066\u3044\u306a\u3044\u306e\u3067{0}\u3092\u30d3\u30eb\u30c9\u3067\u304d\u307e\u305b\u3093\u3002 + 設定ãŒä¿å­˜ã•ã‚Œã¦ã„ãªã„ã®ã§{0}をビルドã§ãã¾ã›ã‚“。 BuildCommand.CLICause.CannotBuildUnknownReasons=\ - \u30d3\u30eb\u30c9\u3067\u304d\u307e\u305b\u3093(\u539f\u56e0\u4e0d\u660e)\u3002 -DeleteNodeCommand.ShortDescription=\u30ce\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059\u3002 -DeleteJobCommand.ShortDescription=\u30b8\u30e7\u30d6\u3092\u524a\u9664\u3057\u307e\u3059\u3002 -OnlineNodeCommand.ShortDescription=\u76f4\u524d\u306b\u5b9f\u884c\u3057\u305f"online-node"\u30b3\u30de\u30f3\u30c9\u3092\u53d6\u308a\u6d88\u3057\u3001\u30d3\u30eb\u30c9\u3092\u5b9f\u884c\u3059\u308b\u30ce\u30fc\u30c9\u306e\u4f7f\u7528\u3092\u518d\u958b\u3057\u307e\u3059\u3002 -ClearQueueCommand.ShortDescription=\u30d3\u30eb\u30c9\u30ad\u30e5\u30fc\u3092\u30af\u30ea\u30a2\u3057\u307e\u3059\u3002 -ReloadConfigurationCommand.ShortDescription=\u30e1\u30e2\u30ea\u306b\u3042\u308b\u3059\u3079\u3066\u306e\u30c7\u30fc\u30bf\u3092\u7834\u68c4\u3057\u3066\u3001\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u518d\u30ed\u30fc\u30c9\u3057\u307e\u3059\u3002\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u76f4\u63a5\u4fee\u6b63\u3057\u305f\u5834\u5408\u306b\u5f79\u306b\u7acb\u3061\u307e\u3059\u3002 -ConnectNodeCommand.ShortDescription=\u30ce\u30fc\u30c9\u3068\u518d\u63a5\u7d9a\u3057\u307e\u3059\u3002 -DisconnectNodeCommand.ShortDescription=\u30ce\u30fc\u30c9\u3068\u306e\u63a5\u7d9a\u3092\u5207\u65ad\u3057\u307e\u3059\u3002 -QuietDownCommand.ShortDescription=Jenkins\u306f\u518d\u8d77\u52d5\u306b\u5411\u3051\u3066\u7d42\u4e86\u51e6\u7406\u3092\u5b9f\u65bd\u4e2d\u3067\u3059\u3002\u30d3\u30eb\u30c9\u3092\u958b\u59cb\u3057\u306a\u3044\u3067\u304f\u3060\u3055\u3044\u3002 -CancelQuietDownCommand.ShortDescription="quiet-down"\u30b3\u30de\u30f3\u30c9\u306e\u51e6\u7406\u3092\u30ad\u30e3\u30f3\u30bb\u30eb\u3057\u307e\u3059\u3002 -OfflineNodeCommand.ShortDescription="online-node"\u30b3\u30de\u30f3\u30c9\u304c\u5b9f\u884c\u3055\u308c\u308b\u307e\u3067\u3001\u30d3\u30eb\u30c9\u3092\u5b9f\u884c\u3059\u308b\u30ce\u30fc\u30c9\u306e\u4f7f\u7528\u3092\u4e00\u6642\u7684\u306b\u505c\u6b62\u3057\u307e\u3059\u3002 -WaitNodeOnlineCommand.ShortDescription=\u30ce\u30fc\u30c9\u304c\u30aa\u30f3\u30e9\u30a4\u30f3\u306b\u306a\u308b\u306e\u3092\u5f85\u3061\u307e\u3059\u3002 -WaitNodeOfflineCommand.ShortDescription=\u30ce\u30fc\u30c9\u304c\u30aa\u30d5\u30e9\u30a4\u30f3\u306b\u306a\u308b\u306e\u3092\u5f85\u3061\u307e\u3059\u3002 + ビルドã§ãã¾ã›ã‚“(原因ä¸æ˜Ž)。 +DeleteNodeCommand.ShortDescription=ノードを削除ã—ã¾ã™ã€‚ +DeleteJobCommand.ShortDescription=ジョブを削除ã—ã¾ã™ã€‚ +OnlineNodeCommand.ShortDescription=ç›´å‰ã«å®Ÿè¡Œã—ãŸ"online-node"コマンドをå–り消ã—ã€ãƒ“ルドを実行ã™ã‚‹ãƒŽãƒ¼ãƒ‰ã®ä½¿ç”¨ã‚’å†é–‹ã—ã¾ã™ã€‚ +ClearQueueCommand.ShortDescription=ビルドキューをクリアã—ã¾ã™ã€‚ +ReloadConfigurationCommand.ShortDescription=メモリã«ã‚ã‚‹ã™ã¹ã¦ã®ãƒ‡ãƒ¼ã‚¿ã‚’破棄ã—ã¦ã€ãƒ•ã‚¡ã‚¤ãƒ«ã‹ã‚‰å†ãƒ­ãƒ¼ãƒ‰ã—ã¾ã™ã€‚設定ファイルを直接修正ã—ãŸå ´åˆã«å½¹ã«ç«‹ã¡ã¾ã™ã€‚ +ConnectNodeCommand.ShortDescription=ノードã¨å†æŽ¥ç¶šã—ã¾ã™ã€‚ +DisconnectNodeCommand.ShortDescription=ノードã¨ã®æŽ¥ç¶šã‚’切断ã—ã¾ã™ã€‚ +QuietDownCommand.ShortDescription=Jenkinsã¯å†èµ·å‹•ã«å‘ã‘ã¦çµ‚了処ç†ã‚’実施中ã§ã™ã€‚ビルドを開始ã—ãªã„ã§ãã ã•ã„。 +CancelQuietDownCommand.ShortDescription="quiet-down"コマンドã®å‡¦ç†ã‚’キャンセルã—ã¾ã™ã€‚ +OfflineNodeCommand.ShortDescription="online-node"コマンドãŒå®Ÿè¡Œã•ã‚Œã‚‹ã¾ã§ã€ãƒ“ルドを実行ã™ã‚‹ãƒŽãƒ¼ãƒ‰ã®ä½¿ç”¨ã‚’一時的ã«åœæ­¢ã—ã¾ã™ã€‚ +WaitNodeOnlineCommand.ShortDescription=ノードãŒã‚ªãƒ³ãƒ©ã‚¤ãƒ³ã«ãªã‚‹ã®ã‚’å¾…ã¡ã¾ã™ã€‚ +WaitNodeOfflineCommand.ShortDescription=ノードãŒã‚ªãƒ•ãƒ©ã‚¤ãƒ³ã«ãªã‚‹ã®ã‚’å¾…ã¡ã¾ã™ã€‚ diff --git a/core/src/main/resources/hudson/cli/Messages_lt.properties b/core/src/main/resources/hudson/cli/Messages_lt.properties index 43c692ea0b25..52a0d8a98d72 100644 --- a/core/src/main/resources/hudson/cli/Messages_lt.properties +++ b/core/src/main/resources/hudson/cli/Messages_lt.properties @@ -1,84 +1,84 @@ -InstallPluginCommand.DidYouMean={0} pana\u0161us \u012f trump\u0105 priedo pavadinim\u0105. Gal tur\u0117jote omenyje \u201e{1}\u201c? -InstallPluginCommand.InstallingFromUpdateCenter={0} diegiamas i\u0161 atnaujinim\u0173 centro -InstallPluginCommand.InstallingPluginFromLocalFile=Priedas diegiamas i\u0161 vietinio failo: {0} -InstallPluginCommand.InstallingPluginFromUrl=Priedas diegiamas i\u0161 {0} -InstallPluginCommand.NoUpdateCenterDefined=Pasteb\u0117tina, kad \u0161iame Jenkinse n\u0117ra nurodytas nei vienas atnaujinimo centras. -InstallPluginCommand.NoUpdateDataRetrieved=Dar neatsi\u0173sta joki\u0173 atnaujinimo centro duomen\u0173 i\u0161: {0} -InstallPluginCommand.NotAValidSourceName={0} n\u0117ra nei tinkamas failas, nei URL, nei priedo rezultat\u0173 pavadinimas atnaujinimo centre +InstallPluginCommand.DidYouMean={0} panaÅ¡us į trumpÄ… priedo pavadinimÄ…. Gal turÄ—jote omenyje „{1}“? +InstallPluginCommand.InstallingFromUpdateCenter={0} diegiamas iÅ¡ atnaujinimų centro +InstallPluginCommand.InstallingPluginFromLocalFile=Priedas diegiamas iÅ¡ vietinio failo: {0} +InstallPluginCommand.InstallingPluginFromUrl=Priedas diegiamas iÅ¡ {0} +InstallPluginCommand.NoUpdateCenterDefined=PastebÄ—tina, kad Å¡iame Jenkinse nÄ—ra nurodytas nei vienas atnaujinimo centras. +InstallPluginCommand.NoUpdateDataRetrieved=Dar neatsiųsta jokių atnaujinimo centro duomenų iÅ¡: {0} +InstallPluginCommand.NotAValidSourceName={0} nÄ—ra nei tinkamas failas, nei URL, nei priedo rezultatų pavadinimas atnaujinimo centre AddJobToViewCommand.ShortDescription=\ - Prideda darbus \u012f rodin\u012f. + Prideda darbus į rodinį. BuildCommand.ShortDescription=\ - Vykdo darb\u0105 ir, jei reikia, palaukia, kol vykdymas baigiamas. -ConsoleCommand.ShortDescription=I\u0161traukia vykdymo konsol\u0117s i\u0161vest\u012f. -CopyJobCommand.ShortDescription=Kopijuoja darb\u0105. + Vykdo darbÄ… ir, jei reikia, palaukia, kol vykdymas baigiamas. +ConsoleCommand.ShortDescription=IÅ¡traukia vykdymo konsolÄ—s iÅ¡vestį. +CopyJobCommand.ShortDescription=Kopijuoja darbÄ…. CreateJobCommand.ShortDescription=\ - Sukuria nauj\u0105 darb\u0105 skaitant stdin kaip konfig\u016bracin\u012f XML fail\u0105. + Sukuria naujÄ… darbÄ… skaitant stdin kaip konfigÅ«racinį XML failÄ…. CreateNodeCommand.ShortDescription=\ - Sukuria nauja mazg\u0105 skaitant stdin kaip XML konfig\u016bracij\u0105. + Sukuria nauja mazgÄ… skaitant stdin kaip XML konfigÅ«racijÄ…. CreateViewCommand.ShortDescription=\ Creates a new view by reading stdin as a XML configuration. DeleteBuildsCommand.ShortDescription=\ - I\u0161trina vykdymo \u012fra\u0161\u0105(-us). + IÅ¡trina vykdymo įraÅ¡Ä…(-us). DeleteViewCommand.ShortDescription=\ - I\u0161trina rodin\u012f(-ius). + IÅ¡trina rodinį(-ius). DeleteJobCommand.ShortDescription=\ - I\u0161trina darb\u0105(-us). + IÅ¡trina darbÄ…(-us). GroovyCommand.ShortDescription=\ - Vykdo nurodyt\u0105 Groovy scenarij\u0173. + Vykdo nurodytÄ… Groovy scenarijų. GroovyshCommand.ShortDescription=\ - Paleid\u017eia interaktyvi\u0105 groovy aplink\u0105. + Paleidžia interaktyviÄ… groovy aplinkÄ…. HelpCommand.ShortDescription=\ - Rodo visas galima komandas arba detal\u0173 vienos komandos apra\u0161ym\u0105. + Rodo visas galima komandas arba detalų vienos komandos apraÅ¡ymÄ…. InstallPluginCommand.ShortDescription=\ - \u012ediegia prieda i\u0161 failo, URL arba i\u0161 atanaujinimo centro. + Ä®diegia prieda iÅ¡ failo, URL arba iÅ¡ atanaujinimo centro. ListChangesCommand.ShortDescription=\ - I\u0161krauna nurodyt\u0173 vykdym\u0173 pakeitim\u0173 s\u0105ra\u0161\u0105. + IÅ¡krauna nurodytų vykdymų pakeitimų sÄ…raÅ¡Ä…. ListJobsCommand.ShortDescription=\ - Rodo visus darbus nurodytame rodinyje arba element\u0173 grup\u0117je. + Rodo visus darbus nurodytame rodinyje arba elementų grupÄ—je. ListPluginsCommand.ShortDescription=\ - Spausdina \u012fdiegt\u0173 pried\u0173 s\u0105ra\u0161\u0105. + Spausdina įdiegtų priedų sÄ…raÅ¡Ä…. SetBuildDescriptionCommand.ShortDescription=\ - Nustato vykdymo apra\u0161ym\u0105. + Nustato vykdymo apraÅ¡ymÄ…. RemoveJobFromViewCommand.ShortDescription=\ - I\u0161ima darbus i\u0161 rodinio. + IÅ¡ima darbus iÅ¡ rodinio. VersionCommand.ShortDescription=\ - Spausdina dabartin\u0119 versij\u0105. + Spausdina dabartinÄ™ versijÄ…. GetJobCommand.ShortDescription=\ - Spausdina darbo apra\u0161ymo XML \u012f stdout. + Spausdina darbo apraÅ¡ymo XML į stdout. GetNodeCommand.ShortDescription=\ - Spausdina mazgo apra\u0161ymo XML \u012f stdout. + Spausdina mazgo apraÅ¡ymo XML į stdout. GetViewCommand.ShortDescription=\ - Spausdina rodinio apra\u0161ymo XML \u012f stdout. + Spausdina rodinio apraÅ¡ymo XML į stdout. SetBuildDisplayNameCommand.ShortDescription=\ - Nurodo vykdymo rodom\u0105 pavadinim\u0105. + Nurodo vykdymo rodomÄ… pavadinimÄ…. WhoAmICommand.ShortDescription=\ - J\u016bs\u0173 prisijungimo duomen\u0173 ir teisi\u0173 ataskaita. + JÅ«sų prisijungimo duomenų ir teisių ataskaita. UpdateJobCommand.ShortDescription=\ - Atnaujina darbo apra\u0161ymo XML i\u0161 stdin. Prie\u0161ingas komandai \u201eget-job\u201c. + Atnaujina darbo apraÅ¡ymo XML iÅ¡ stdin. PrieÅ¡ingas komandai „get-job“. UpdateNodeCommand.ShortDescription=\ - Atnaujina mazgo apra\u0161ymo XML i\u0161 stdin. Prie\u0161ingas komandai \u201eget-node\u201c. -SessionIdCommand.ShortDescription=Spausdina sesijos ID, kuris pasikei\u010dia kiekvien\u0105 kart\u0105 i\u0161 naujo paleidus Jenkins'\u0105. + Atnaujina mazgo apraÅ¡ymo XML iÅ¡ stdin. PrieÅ¡ingas komandai „get-node“. +SessionIdCommand.ShortDescription=Spausdina sesijos ID, kuris pasikeiÄia kiekvienÄ… kartÄ… iÅ¡ naujo paleidus Jenkins'Ä…. UpdateViewCommand.ShortDescription=\ - Atnaujina rodinio apra\u0161ymo XML i\u0161 stdin. Prie\u0161ingas komandai \u201eget-view\u201c. + Atnaujina rodinio apraÅ¡ymo XML iÅ¡ stdin. PrieÅ¡ingas komandai „get-view“. -BuildCommand.CLICause.ShortDescription=I\u0161 komandin\u0117s eilut\u0117s paleido {0} +BuildCommand.CLICause.ShortDescription=IÅ¡ komandinÄ—s eilutÄ—s paleido {0} BuildCommand.CLICause.CannotBuildDisabled=\ -Negalima vykdyti {0}, nes jis i\u0161jungtas. +Negalima vykdyti {0}, nes jis iÅ¡jungtas. BuildCommand.CLICause.CannotBuildConfigNotSaved=\ -Negalima vykdyti {0}, nes jo konfig\u016bracija nebuvo \u012fra\u0161yta. +Negalima vykdyti {0}, nes jo konfigÅ«racija nebuvo įraÅ¡yta. BuildCommand.CLICause.CannotBuildUnknownReasons=\ -Negalima vykdyti {0} d\u0117l ne\u017einom\u0173 prie\u017eas\u010di\u0173. +Negalima vykdyti {0} dÄ—l nežinomų priežasÄių. -DeleteNodeCommand.ShortDescription=Trina mazg\u0105(-us) -ReloadJobCommand.ShortDescription=I\u0161 naujo \u012fkelti darb\u0105(-us) -OnlineNodeCommand.ShortDescription=V\u0117l naudoti mazg\u0105 vykdymams, atjungiant ankstesn\u012f re\u017eim\u0105 \u201eatsijung\u0119s\u201c. -ClearQueueCommand.ShortDescription=Valo vykdymo eil\u0119. -ReloadConfigurationCommand.ShortDescription=I\u0161mesti visus atminties duomenis ir visk\u0105 \u012fkelti i\u0161 fail\u0173 sistemos. Naudinga, jei konfig\u016bracinius failus keit\u0117te tiesiai diske. +DeleteNodeCommand.ShortDescription=Trina mazgÄ…(-us) +ReloadJobCommand.ShortDescription=IÅ¡ naujo įkelti darbÄ…(-us) +OnlineNodeCommand.ShortDescription=VÄ—l naudoti mazgÄ… vykdymams, atjungiant ankstesnį režimÄ… „atsijungÄ™s“. +ClearQueueCommand.ShortDescription=Valo vykdymo eilÄ™. +ReloadConfigurationCommand.ShortDescription=IÅ¡mesti visus atminties duomenis ir viskÄ… įkelti iÅ¡ failų sistemos. Naudinga, jei konfigÅ«racinius failus keitÄ—te tiesiai diske. DisconnectNodeCommand.ShortDescription=Atsijungia nuo mazgo. -QuietDownCommand.ShortDescription=Tyliai nuleisti Jenkins\u0105, pasiruo\u0161iant paleidimui i\u0161 naujo. Neprad\u0117ti joki\u0173 vykdym\u0173. -CancelQuietDownCommand.ShortDescription=Nutraukti \u201etylaus i\u0161jungimo\u201c komandos efekt\u0105. -OfflineNodeCommand.ShortDescription=Laikinai nebenaudoti mazgo darb\u0173 vykdymui, kol bus \u012fvykdyta kita \u201emazgas \u012fjungtas\u201c komanda. +QuietDownCommand.ShortDescription=Tyliai nuleisti JenkinsÄ…, pasiruoÅ¡iant paleidimui iÅ¡ naujo. NepradÄ—ti jokių vykdymų. +CancelQuietDownCommand.ShortDescription=Nutraukti „tylaus iÅ¡jungimo“ komandos efektÄ…. +OfflineNodeCommand.ShortDescription=Laikinai nebenaudoti mazgo darbų vykdymui, kol bus įvykdyta kita „mazgas įjungtas“ komanda. WaitNodeOnlineCommand.ShortDescription=Laukti, kol mazgas prisijungs. WaitNodeOfflineCommand.ShortDescription=Laukti, kol mazgas atsijungs. diff --git a/core/src/main/resources/hudson/cli/Messages_pt_BR.properties b/core/src/main/resources/hudson/cli/Messages_pt_BR.properties index 5cfa74bd4e87..bfa78781dafe 100644 --- a/core/src/main/resources/hudson/cli/Messages_pt_BR.properties +++ b/core/src/main/resources/hudson/cli/Messages_pt_BR.properties @@ -21,75 +21,75 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -CreateNodeCommand.ShortDescription=Cria um novo n\u00F3 lendo a entrada padr\u00E3o como uma configura\u00E7\u00E3o em XML. +CreateNodeCommand.ShortDescription=Cria um novo nó lendo a entrada padrão como uma configuração em XML. GroovyCommand.ShortDescription=Executa o script Groovy especificado. -GetNodeCommand.ShortDescription=Exibe a defini\u00E7\u00E3o XML do n\u00F3 na sa\u00EDda padr\u00E3o. -AddJobToViewCommand.ShortDescription=Adiciona uma tarefa \u00E0 uma vis\u00E3o. -BuildCommand.CLICause.CannotBuildConfigNotSaved=N\u00E3o foi poss\u00EDvel construir {0} pois sua configura\u00E7\u00E3o n\u00E3o foi salva. -VersionCommand.ShortDescription=Exibe a vers\u00E3o atual. -GetJobCommand.ShortDescription=Exibe a defini\u00E7\u00E3o XML da tarefa para a sa\u00EDda padr\u00E3o. -BuildCommand.ShortDescription=Constr\u00F3i uma tarefa e opcionalmente aguarda seu t\u00E9rmino. -SetBuildDisplayNameCommand.ShortDescription=Define o nome a ser exibido de uma constru\u00E7\u00E3o. -ConsoleCommand.ShortDescription=Retorna a sa\u00EDda de console de uma constru\u00E7\u00E3o. -UpdateJobCommand.ShortDescription=Atualiza a defini\u00E7\u00E3o XML da tarefa \u00E0 partir da entrada padr\u00E3o. \u00C9 o contr\u00E1rio do \ +GetNodeCommand.ShortDescription=Exibe a definição XML do nó na saída padrão. +AddJobToViewCommand.ShortDescription=Adiciona uma tarefa à uma visão. +BuildCommand.CLICause.CannotBuildConfigNotSaved=Não foi possível construir {0} pois sua configuração não foi salva. +VersionCommand.ShortDescription=Exibe a versão atual. +GetJobCommand.ShortDescription=Exibe a definição XML da tarefa para a saída padrão. +BuildCommand.ShortDescription=Constrói uma tarefa e opcionalmente aguarda seu término. +SetBuildDisplayNameCommand.ShortDescription=Define o nome a ser exibido de uma construção. +ConsoleCommand.ShortDescription=Retorna a saída de console de uma construção. +UpdateJobCommand.ShortDescription=Atualiza a definição XML da tarefa à partir da entrada padrão. É o contrário do \ comando get-job. -HelpCommand.ShortDescription=Lista todos os comandos dispon\u00EDveis ou uma descri\u00E7\u00E3o detalhada de um \u00FAnico comando. +HelpCommand.ShortDescription=Lista todos os comandos disponíveis ou uma descrição detalhada de um único comando. BuildCommand.CLICause.ShortDescription=Iniciado pela linha de comando por {0} -GetViewCommand.ShortDescription=Exibe a defini\u00E7\u00E3o em XML da vis\u00E3o para a sa\u00EDda padr\u00E3o. -ListChangesCommand.ShortDescription=Exibe o registro de mudan\u00E7as da(s) constru\u00E7\u00E3o(\u00F5es) especificada(s). -RemoveJobFromViewCommand.ShortDescription=Remove tarefas de uma vis\u00E3o. -InstallPluginCommand.InstallingFromUpdateCenter=Instalando {0} da central de atualiza\u00E7\u00F5es -BuildCommand.CLICause.CannotBuildUnknownReasons=N\u00E3o \u00E9 poss\u00EDvel construir {0} por raz\u00F5es desconhecidas. -BuildCommand.CLICause.CannotBuildDisabled=N\u00E3o \u00E9 poss\u00EDvel construir {0} pois est\u00E1 desabilitada. -DeleteViewCommand.ShortDescription=Remove a vis\u00E3o. -CreateViewCommand.ShortDescription=Cria uma nova vis\u00E3o lendo da entrada padr\u00E3o como uma configura\u00E7\u00E3o em XML. -UpdateNodeCommand.ShortDescription=Atualiza a defini\u00E7\u00E3o XML do n\u00F3 \u00E0 partir da entrada padr\u00E3o. \u00C9 o contr\u00E1rio do comando \ +GetViewCommand.ShortDescription=Exibe a definição em XML da visão para a saída padrão. +ListChangesCommand.ShortDescription=Exibe o registro de mudanças da(s) construção(ões) especificada(s). +RemoveJobFromViewCommand.ShortDescription=Remove tarefas de uma visão. +InstallPluginCommand.InstallingFromUpdateCenter=Instalando {0} da central de atualizações +BuildCommand.CLICause.CannotBuildUnknownReasons=Não é possível construir {0} por razões desconhecidas. +BuildCommand.CLICause.CannotBuildDisabled=Não é possível construir {0} pois está desabilitada. +DeleteViewCommand.ShortDescription=Remove a visão. +CreateViewCommand.ShortDescription=Cria uma nova visão lendo da entrada padrão como uma configuração em XML. +UpdateNodeCommand.ShortDescription=Atualiza a definição XML do nó à partir da entrada padrão. É o contrário do comando \ get-node. -InstallPluginCommand.NotAValidSourceName={0} n\u00E3o \u00E9 um arquivo v\u00E1lido, nem uma URL nem um nome de extens\u00E3o na central \ - de atualiza\u00E7\u00F5es -SetBuildDescriptionCommand.ShortDescription=Define a descri\u00E7\u00E3o de uma constru\u00E7\u00E3o. -InstallPluginCommand.InstallingPluginFromLocalFile=Instalando a extens\u00E3o do arquivo local: {0} -CreateJobCommand.ShortDescription=Cria uma nova tarefa lendo da entrada padr\u00E3o como uma configura\u00E7\u00E3o em XML. -InstallPluginCommand.NoUpdateCenterDefined=Observe que nenhuma central de atualiza\u00E7\u00F5es foi definida no Jenkins. -InstallPluginCommand.NoUpdateDataRetrieved=Nenhum dado da central de atualiza\u00E7\u00E3o foi recebido ainda de: {0} -ListJobsCommand.ShortDescription=Lista todas as tarefas em uma vis\u00E3o espec\u00EDfica ou grupo de \u00EDtens. -WhoAmICommand.ShortDescription=Exibe sua credencial e permiss\u00F5es. +InstallPluginCommand.NotAValidSourceName={0} não é um arquivo válido, nem uma URL nem um nome de extensão na central \ + de atualizações +SetBuildDescriptionCommand.ShortDescription=Define a descrição de uma construção. +InstallPluginCommand.InstallingPluginFromLocalFile=Instalando a extensão do arquivo local: {0} +CreateJobCommand.ShortDescription=Cria uma nova tarefa lendo da entrada padrão como uma configuração em XML. +InstallPluginCommand.NoUpdateCenterDefined=Observe que nenhuma central de atualizações foi definida no Jenkins. +InstallPluginCommand.NoUpdateDataRetrieved=Nenhum dado da central de atualização foi recebido ainda de: {0} +ListJobsCommand.ShortDescription=Lista todas as tarefas em uma visão específica ou grupo de ítens. +WhoAmICommand.ShortDescription=Exibe sua credencial e permissões. CopyJobCommand.ShortDescription=Copia uma tarefa. GroovyshCommand.ShortDescription=Executa um shell Groovy interativo. -UpdateViewCommand.ShortDescription=Atualiza a defini\u00E7\u00E3o XML de uma vis\u00E3o \u00E0 partir da entrada padr\u00E3o. \u00C9 o contr\u00E1rio do \ +UpdateViewCommand.ShortDescription=Atualiza a definição XML de uma visão à partir da entrada padrão. É o contrário do \ comando get-view. -InstallPluginCommand.DidYouMean={0} parece ser o nome curto de uma extens\u00E3o. Voc\u00EA quis dizer \u2018{1}\u2019? -DeleteBuildsCommand.ShortDescription=Remove os registros da(s) constru\u00E7\u00E3o(\u00F5es). -ListPluginsCommand.ShortDescription=Exibe a lista das extens\u00F5es atualmente instaladas. -SessionIdCommand.ShortDescription=Exibe o ID de sess\u00E3o, que muda toda vez que o Jenkins \u00E9 reiniciado. -InstallPluginCommand.InstallingPluginFromUrl=Instalando uma extens\u00E3o de {0} -InstallPluginCommand.ShortDescription=Instala uma extens\u00E3o \u00E0 partir de um arquivo, uma URL ou da central de \ - atualiza\u00E7\u00F5es. +InstallPluginCommand.DidYouMean={0} parece ser o nome curto de uma extensão. Você quis dizer ‘{1}’? +DeleteBuildsCommand.ShortDescription=Remove os registros da(s) construção(ões). +ListPluginsCommand.ShortDescription=Exibe a lista das extensões atualmente instaladas. +SessionIdCommand.ShortDescription=Exibe o ID de sessão, que muda toda vez que o Jenkins é reiniciado. +InstallPluginCommand.InstallingPluginFromUrl=Instalando uma extensão de {0} +InstallPluginCommand.ShortDescription=Instala uma extensão à partir de um arquivo, uma URL ou da central de \ + atualizações. DeleteJobCommand.ShortDescription=Remover uma (ou mais) tarefa(s) ReloadJobCommand.ShortDescription=Recarrega tarefa(s) do disco. -OnlineNodeCommand.ShortDescription=Continuar usando um n\u00F3 para realizar as constru\u00E7\u00F5es -ClearQueueCommand.ShortDescription=Limpa a fila de constru\u00E7\u00F5es -ReloadConfigurationCommand.ShortDescription=Descarta todo o conte\u00FAdo de mem\u00F3ria e recarrega novamente a partir do \ - arquivo. Indicado quando voc\u00EA modificou os arquivos diretamente no disco. -ConnectNodeCommand.ShortDescription=Reconectar ao n\u00F3 -DisconnectNodeCommand.ShortDescription=Desconectar do n\u00F3 -QuietDownCommand.ShortDescription=Desativar em modo silencioso, em prepara\u00E7\u00E3o para o rein\u00EDcio. N\u00E3o come\u00E7e nenhuma \ - constru\u00E7\u00E3o. +OnlineNodeCommand.ShortDescription=Continuar usando um nó para realizar as construções +ClearQueueCommand.ShortDescription=Limpa a fila de construções +ReloadConfigurationCommand.ShortDescription=Descarta todo o conteúdo de memória e recarrega novamente a partir do \ + arquivo. Indicado quando você modificou os arquivos diretamente no disco. +ConnectNodeCommand.ShortDescription=Reconectar ao nó +DisconnectNodeCommand.ShortDescription=Desconectar do nó +QuietDownCommand.ShortDescription=Desativar em modo silencioso, em preparação para o reinício. Não começe nenhuma \ + construção. CancelQuietDownCommand.ShortDescription=Cancela o comando "quiet-down" -OfflineNodeCommand.ShortDescription=Temporariamente n\u00E3o usando um n\u00F3 para as constru\u00E7\u00F5es. Aguardando o pr\u00F3ximo comando \ - de modo-dispon\u00EDvel -WaitNodeOnlineCommand.ShortDescription=Aguarda por um n\u00F3 que se torne dispon\u00EDvel -WaitNodeOfflineCommand.ShortDescription=Aguarde por um n\u00F3 ficar fora de servi\u00E7o. -CliProtocol.displayName=Protocolo/1 de CLI do Jenkins (n\u00E3o criptografado) +OfflineNodeCommand.ShortDescription=Temporariamente não usando um nó para as construções. Aguardando o próximo comando \ + de modo-disponível +WaitNodeOnlineCommand.ShortDescription=Aguarda por um nó que se torne disponível +WaitNodeOfflineCommand.ShortDescription=Aguarde por um nó ficar fora de serviço. +CliProtocol.displayName=Protocolo/1 de CLI do Jenkins (não criptografado) CliProtocol2.displayName=Protocolo/2 de CLI do Jenkins (criptografia de transporte) -DisablePluginCommand.NoSuchStrategy=Esta estrat\u00E9gia ({0}) n\u00E3o existe. Estrat\u00E9gias permitidas s\u00E3o {1} -InstallPluginCommand.InstallingPluginFromStdin=Instalando uma extens\u00E3o da entrada padr\u00E3o -DisablePluginCommand.ShortDescription=Desabilita uma ou mais extens\u00F5es instaladas. -EnablePluginCommand.ShortDescription=Habilita uma ou mais extens\u00F5es instaladas -EnablePluginCommand.NoSuchPlugin=Nenhuma extens\u00E3o encontrada com o nome {0} +DisablePluginCommand.NoSuchStrategy=Esta estratégia ({0}) não existe. Estratégias permitidas são {1} +InstallPluginCommand.InstallingPluginFromStdin=Instalando uma extensão da entrada padrão +DisablePluginCommand.ShortDescription=Desabilita uma ou mais extensões instaladas. +EnablePluginCommand.ShortDescription=Habilita uma ou mais extensões instaladas +EnablePluginCommand.NoSuchPlugin=Nenhuma extensão encontrada com o nome {0} DisablePluginCommand.StatusMessage=Desabilitando ''{0}'': {1} ({2}) -DeleteNodeCommand.ShortDescription=Apagar n\u00F3(s) -DisablePluginCommand.PrintUsageSummary=Desabilitar extens\u00F5es com os seguintes nomes curtos. Voc\u00EA pode definir como \ - proceder com extens\u00F5es dependentes e se um rein\u00EDcio deveria ser usado. Voc\u00EA tamb\u00E9m pode usar o modo silencioso para \ - evitar informa\u00E7\u00F5es extras no console. -EnablePluginCommand.MissingDependencies=N\u00E3o pode desabilitar a extens\u00E3o {0} j\u00E1 ela tem depend\u00EAncias {1} n\u00E3o atendidas +DeleteNodeCommand.ShortDescription=Apagar nó(s) +DisablePluginCommand.PrintUsageSummary=Desabilitar extensões com os seguintes nomes curtos. Você pode definir como \ + proceder com extensões dependentes e se um reinício deveria ser usado. Você também pode usar o modo silencioso para \ + evitar informações extras no console. +EnablePluginCommand.MissingDependencies=Não pode desabilitar a extensão {0} já ela tem dependências {1} não atendidas diff --git a/core/src/main/resources/hudson/cli/Messages_sr.properties b/core/src/main/resources/hudson/cli/Messages_sr.properties index eb620fb57048..d5d9fd9f5c85 100644 --- a/core/src/main/resources/hudson/cli/Messages_sr.properties +++ b/core/src/main/resources/hudson/cli/Messages_sr.properties @@ -1,62 +1,62 @@ # This file is under the MIT License by authors -InstallPluginCommand.DidYouMean={0} \u043B\u0438\u0447\u0438 \u043D\u0430 \u043A\u0440\u0430\u0442\u043A\u043E \u0438\u043C\u0435 \u0437\u0430 \u043C\u043E\u0434\u0443\u043B\u0443. \u0414\u0430 \u043B\u0438 \u0441\u0442\u0435 \u043C\u0438\u0441\u043B\u0438\u043B\u0438 \u2018{1}\u2019? -InstallPluginCommand.InstallingFromUpdateCenter=\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u045A\u0435 "{0}" \u0441\u0430 \u0446\u0435\u043D\u0442\u0440\u0430 \u0437\u0430 \u0430\u0436\u0443\u0440\u0438\u0430\u045A\u0430 -InstallPluginCommand.InstallingPluginFromLocalFile=\u0418\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430 \u043C\u043E\u0434\u0443\u043B\u0430 \u0441\u0430 \u043B\u043E\u043A\u0430\u043B\u0435 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435 "{0}" -InstallPluginCommand.InstallingPluginFromUrl=\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u045A\u0435 \u043C\u043E\u0434\u0443\u043B\u0435 \u0441\u0430 {0} -InstallPluginCommand.NoUpdateCenterDefined=\u041D\u0438\u0458\u0435 \u043D\u0430\u0432\u0435\u0434\u0435\u043D \u0441\u0430\u0458\u0442 \u0437\u0430 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045A\u0435 \u0443 \u043E\u0432\u043E\u0458 \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0438 Jenkins. -InstallPluginCommand.NoUpdateDataRetrieved=\ \u041D\u0438\u0441\u0443 \u0458\u043E\u0448 \u043F\u0440\u0435\u0443\u0437\u0435\u0442\u0438 \u043F\u043E\u0434\u0430\u0446\u0438 \u0438\u0437 \u0446\u0435\u043D\u0442\u0440\u0430 \u0437\u0430 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045A\u0435: {0} -InstallPluginCommand.NotAValidSourceName="{0}" \u043D\u0438\u0458\u0435 \u043D\u0438 \u0438\u043C\u0435 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435, URL \u0430\u0434\u0440\u0435\u0441\u0430, \u043D\u0438\u0442\u0438 \u0438\u043C\u0435 \u043C\u043E\u0434\u0443\u043B\u0435 \u043D\u0430 \u0446\u0435\u043D\u0442\u0440\u0443 \u0437\u0430 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045A\u0435 -AddJobToViewCommand.ShortDescription=\u041F\u0440\u0438\u043A\u0430\u0436\u0438 \u0437\u0430\u0434\u0430\u0442\u043A\u0435 \u0443 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0443 -BuildCommand.ShortDescription=\ \u041F\u043E\u043A\u0440\u0435\u043D\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0430 \u0438 \u043E\u043F\u0446\u0438\u043E\u043D\u043E \u0447\u0435\u043A\u0430 \u0437\u0430 \u045A\u0435\u0433\u043E\u0432 \u0437\u0430\u0432\u0440\u0448\u0435\u0442\u0430\u043A -ConsoleCommand.ShortDescription=\u041F\u0440\u0435\u0443\u0437\u043C\u0435 \u0440\u0435\u0437\u0443\u043B\u0442\u0430\u0442 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -CopyJobCommand.ShortDescription=\u0418\u0441\u043A\u043E\u043F\u0438\u0440\u0430 \u0437\u0430\u0434\u0430\u0442\u0430\u043A -CreateJobCommand.ShortDescription=\u041A\u0440\u0435\u0438\u0440\u0430 \u043D\u043E\u0432\u0438 \u0437\u0430\u0434\u0430\u0442\u0430\u043A \u0447\u0438\u0442\u0430\u0458\u0443\u045B\u0438 stdin \u043A\u0430\u043E \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u043E\u043D\u0443 XML \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0443 -CreateNodeCommand.ShortDescription=\u041A\u0440\u0435\u0438\u0440\u0430 \u043D\u043E\u0432\u0443 \u043C\u0430\u0448\u0438\u043D\u0443 \u0447\u0438\u0442\u0430\u0458\u0443\u045B\u0438 stdin \u043A\u0430\u043E \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u043E\u043D\u0443 XML \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0443 -CreateViewCommand.ShortDescription=\u041A\u0440\u0435\u0438\u0440\u0430 \u043D\u043E\u0432\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 \u0447\u0438\u0442\u0430\u0458\u0443\u045B\u0438 stdin \u043A\u0430\u043E \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u043E\u043D\u0443 XML \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0443 -DeleteBuildsCommand.ShortDescription=\u0418\u0437\u0431\u0440\u0438\u0448\u0435 \u043F\u043E\u0434\u0430\u0442\u043A\u0435 \u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0438 -DeleteViewCommand.ShortDescription=\u0418\u0437\u0431\u0440\u0438\u0448\u0435 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 -DeleteJobCommand.ShortDescription=\u0418\u0437\u0431\u0440\u0438\u0448\u0435 \u0437\u0430\u0434\u0430\u0442\u0430\u043A -GroovyCommand.ShortDescription=\u0418\u0437\u0432\u0440\u0448\u0438 \u043D\u0430\u0432\u0435\u0434\u0435\u043D Groovy \u043F\u0440\u043E\u0433\u0440\u0430\u043C -GroovyshCommand.ShortDescription=\u041F\u043E\u043A\u0440\u0435\u043D\u0435 \u0438\u043D\u0442\u0435\u0440\u0430\u043A\u0442\u0438\u0432\u0430\u043D \u0438\u043D\u0442\u0435\u0440\u043F\u0440\u0435\u0442\u0430\u0442\u043E\u0440 \u0437\u0430 Groovy -HelpCommand.ShortDescription=\u0418\u0441\u043F\u0438\u0448\u0435 \u0441\u0432\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u0435 \u0438\u043B\u0438 \u0434\u0435\u0442\u0430\u0459\u043D\u0438 \u043E\u043F\u0438\u0441 \u043E\u0434\u0440\u0435\u0452\u0435\u043D\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u0435. -InstallPluginCommand.ShortDescription=\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430 \u043C\u043E\u0434\u0443\u043B\u0443 \u0441\u0430 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435, URL \u0430\u0434\u0440\u0435\u0441\u0435, \u0438\u043B\u0438 \u0446\u0435\u043D\u0442\u0440\u0430 \u0437\u0430 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045A\u0435. -ListChangesCommand.ShortDescription=\u041F\u0440\u0438\u043A\u0430\u0436\u0435 \u0434\u043D\u0435\u0432\u043D\u0438\u043A \u0438\u0437\u043C\u0435\u043D\u0430 \u0437\u0430 \u043D\u0430\u0432\u0435\u0434\u0435\u043D\u0430 \u0438\u0437\u0433\u0440\u0430\u045A\u0430. -ListJobsCommand.ShortDescription=\u041F\u0440\u0438\u043A\u0430\u0436\u0435 \u0441\u0432\u0435 \u0437\u0430\u0434\u0430\u0442\u043A\u0435 \u043E\u0434\u0440\u0435\u0452\u0435\u043D\u0435 \u0432\u0440\u0441\u0442\u0435 \u0438\u043B\u0438 \u0433\u0440\u0443\u043F\u0435. -ListPluginsCommand.ShortDescription=\u041F\u0440\u0438\u043A\u0430\u0436\u0435 \u0441\u043F\u0438\u0441\u0430\u043A \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u0438\u0445 \u043C\u043E\u0434\u0443\u043B\u0430. -SetBuildDescriptionCommand.ShortDescription=\u041F\u043E\u0441\u0442\u0430\u0432\u0438 \u043E\u043F\u0438\u0441 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -RemoveJobFromViewCommand.ShortDescription=\u0423\u043A\u043B\u043E\u043D\u0438 \u0437\u0430\u0434\u0430\u0442\u043A\u0435 \u0441\u0430 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430 -VersionCommand.ShortDescription=\u041F\u0440\u0438\u043A\u0430\u0436\u0435 \u0432\u0435\u0440\u0437\u0438\u0458\u0443 Jenkins. -GetJobCommand.ShortDescription=\u0418\u0441\u043F\u0438\u0448\u0435 \u0434\u0435\u0444\u0438\u043D\u0438\u0446\u0438\u0458\u0443 \u0437\u0430\u0434\u0430\u0442\u043A\u0430 \u0443 XML \u0444\u043E\u0440\u043C\u0430\u0442\u0443 \u043D\u0430 stdout. -GetNodeCommand.ShortDescription=\u0418\u0441\u043F\u0438\u0448\u0435 \u0434\u0435\u0444\u0438\u043D\u0438\u0446\u0438\u0458\u0443 \u043C\u0430\u0448\u0438\u043D\u0435 \u0443 XML \u0444\u043E\u0440\u043C\u0430\u0442\u0443 \u043D\u0430 stdout. -GetViewCommand.ShortDescription=\u0418\u0441\u043F\u0438\u0448\u0435 \u0434\u0435\u0444\u0438\u043D\u0438\u0446\u0438\u0458\u0443 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430 \u0443 XML \u0444\u043E\u0440\u043C\u0430\u0442\u0443 \u043D\u0430 stdout. -SetBuildDisplayNameCommand.ShortDescription=\u041F\u043E\u0441\u0442\u0430\u0432\u0438 \u0438\u043C\u0435 (displayName) \u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0438. -WhoAmICommand.ShortDescription=\u0418\u0437\u0432\u0435\u0448\u0442\u0430je \u0432\u0430\u0448\u0435 \u0430\u043A\u0440\u0435\u0434\u0438\u0442\u0438\u0432\u0435 \u0438 \u043F\u0440\u0430\u0432\u0430. -UpdateJobCommand.ShortDescription=\u0410\u0436\u0443\u0440\u0438\u0440\u0430 XML \u0434\u0435\u0444\u0438\u043D\u0438\u0446\u0438\u0458\u0443 \u0437\u0430\u0434\u0430\u0442\u043A\u0430 \u0438\u0437 stdin, \u0437\u0430 \u0440\u0430\u0437\u043B\u0438\u043A\u0443 \u043E\u0434 get-job \u043A\u043E\u043C\u0430\u043D\u0434\u0435. -UpdateNodeCommand.ShortDescription=\u0410\u0436\u0443\u0440\u0438\u0440\u0430 XML \u0434\u0435\u0444\u0438\u043D\u0438\u0446\u0438\u0458\u0443 \u043C\u0430\u0448\u0438\u043D\u0435 \u0438\u0437 stdin, \u0437\u0430 \u0440\u0430\u0437\u043B\u0438\u043A\u0443 \u043E\u0434 get-node \u043A\u043E\u043C\u0430\u043D\u0434\u0435. -SessionIdCommand.ShortDescription=\u0418\u0437\u0458\u0430\u0432\u0438 \u0438\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0442\u043E\u0440\u0430 \u0441\u0435\u0441\u0438\u0458\u0435, \u0448\u0442\u043E \u0441\u0435 \u043C\u0435\u045A\u0430 \u0441\u0432\u0430\u043A\u0438 \u043F\u0443\u0442 \u043A\u0430\u0434\u0430 \u043F\u043E\u043A\u0440\u0435\u043D\u0435\u0442\u0435 Jenkins. -UpdateViewCommand.ShortDescription=\u0410\u0436\u0443\u0440\u0438\u0440\u0430 XML \u0434\u0435\u0444\u0438\u043D\u0438\u0446\u0438\u0458\u0443 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430 \u0438\u0437 stdin, \u0437\u0430 \u0440\u0430\u0437\u043B\u0438\u043A\u0443 \u043E\u0434 get-view \u043A\u043E\u043C\u0430\u043D\u0434\u0435. -BuildCommand.CLICause.ShortDescription=\u0417\u0430\u0434\u0430\u0442\u0430\u043A \u0458\u0435 \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u0442 \u043F\u0440\u0435\u043A\u043E \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u0435 \u043B\u0438\u043D\u0438\u0458\u0435 \u0441\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u043E\u043C "{0}" +InstallPluginCommand.DidYouMean={0} личи на кратко име за модулу. Да ли Ñте миÑлили ‘{1}’? +InstallPluginCommand.InstallingFromUpdateCenter=ИнÑталирање "{0}" Ñа центра за ажуриања +InstallPluginCommand.InstallingPluginFromLocalFile=ИнÑталација модула Ñа локале датотеке "{0}" +InstallPluginCommand.InstallingPluginFromUrl=ИнÑталирање модуле Ñа {0} +InstallPluginCommand.NoUpdateCenterDefined=Ðије наведен Ñајт за ажурирање у овој инÑталацији Jenkins. +InstallPluginCommand.NoUpdateDataRetrieved=\ ÐиÑу још преузети подаци из центра за ажурирање: {0} +InstallPluginCommand.NotAValidSourceName="{0}" није ни име датотеке, URL адреÑа, нити име модуле на центру за ажурирање +AddJobToViewCommand.ShortDescription=Прикажи задатке у прегледу +BuildCommand.ShortDescription=\ Покрене изградњу задатака и опционо чека за његов завршетак +ConsoleCommand.ShortDescription=Преузме резултат изградње +CopyJobCommand.ShortDescription=ИÑкопира задатак +CreateJobCommand.ShortDescription=Креира нови задатак читајући stdin као конфигурациону XML датотеку +CreateNodeCommand.ShortDescription=Креира нову машину читајући stdin као конфигурациону XML датотеку +CreateViewCommand.ShortDescription=Креира нови преглед читајући stdin као конфигурациону XML датотеку +DeleteBuildsCommand.ShortDescription=Избрише податке о изградњи +DeleteViewCommand.ShortDescription=Избрише преглед +DeleteJobCommand.ShortDescription=Избрише задатак +GroovyCommand.ShortDescription=Изврши наведен Groovy програм +GroovyshCommand.ShortDescription=Покрене интерактиван интерпретатор за Groovy +HelpCommand.ShortDescription=ИÑпише Ñве команде или детаљни Ð¾Ð¿Ð¸Ñ Ð¾Ð´Ñ€ÐµÑ’ÐµÐ½Ðµ команде. +InstallPluginCommand.ShortDescription=ИнÑталира модулу Ñа датотеке, URL адреÑе, или центра за ажурирање. +ListChangesCommand.ShortDescription=Прикаже дневник измена за наведена изграња. +ListJobsCommand.ShortDescription=Прикаже Ñве задатке одређене врÑте или групе. +ListPluginsCommand.ShortDescription=Прикаже ÑпиÑак инÑталираних модула. +SetBuildDescriptionCommand.ShortDescription=ПоÑтави Ð¾Ð¿Ð¸Ñ Ð¸Ð·Ð³Ñ€Ð°Ð´ÑšÐµ +RemoveJobFromViewCommand.ShortDescription=Уклони задатке Ñа прегледа +VersionCommand.ShortDescription=Прикаже верзију Jenkins. +GetJobCommand.ShortDescription=ИÑпише дефиницију задатка у XML формату на stdout. +GetNodeCommand.ShortDescription=ИÑпише дефиницију машине у XML формату на stdout. +GetViewCommand.ShortDescription=ИÑпише дефиницију прегледа у XML формату на stdout. +SetBuildDisplayNameCommand.ShortDescription=ПоÑтави име (displayName) о изградњи. +WhoAmICommand.ShortDescription=Извештаje ваше акредитиве и права. +UpdateJobCommand.ShortDescription=Ðжурира XML дефиницију задатка из stdin, за разлику од get-job команде. +UpdateNodeCommand.ShortDescription=Ðжурира XML дефиницију машине из stdin, за разлику од get-node команде. +SessionIdCommand.ShortDescription=Изјави идентификатора ÑеÑије, што Ñе мења Ñваки пут када покренете Jenkins. +UpdateViewCommand.ShortDescription=Ðжурира XML дефиницију прегледа из stdin, за разлику од get-view команде. +BuildCommand.CLICause.ShortDescription=Задатак је покренут преко командне линије Ñа командом "{0}" BuildCommand.CLICause.CannotBuildDisabled=\ -\u041D\u0435 \u043C\u043E\u0436\u0435 \u0441\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u0438\u0442\u0438 \u0437\u0430\u0434\u0430\u0442\u0430\u043A "{0}" \u0437\u0430\u0448\u0442\u043E \u0458\u0435 \u043E\u043D\u0435\u043C\u043E\u0433\u0443\u045B\u0435\u043D\u043E. +Ðе може Ñе изградити задатак "{0}" зашто је онемогућено. BuildCommand.CLICause.CannotBuildConfigNotSaved=\ -\u041D\u0435 \u043C\u043E\u0436\u0435 \u0441\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u0438\u0442\u0438 \u0437\u0430\u0434\u0430\u0442\u0430\u043A "{0}" \u0437\u0430\u0448\u0442\u043E \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u043D\u0438\u0441\u0443 \u0441\u0430\u0447\u0443\u0432\u0430\u043D\u0430. +Ðе може Ñе изградити задатак "{0}" зашто подешавања ниÑу Ñачувана. BuildCommand.CLICause.CannotBuildUnknownReasons=\ -\u041D\u0435 \u043C\u043E\u0436\u0435 \u0441\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u0438\u0442\u0438 \u0437\u0430\u0434\u0430\u0442\u0430\u043A "{0}" \u0437\u0431\u043E\u0433 \u043D\u0435\u043F\u043E\u0437\u043D\u0430\u0442\u043E\u0433 \u0440\u0430\u0437\u043B\u043E\u0433\u0430. +Ðе може Ñе изградити задатак "{0}" због непознатог разлога. DeleteNodeCommand.ShortDescription=\ -\u0423\u043A\u043B\u043E\u043D\u0438 \u043C\u0430\u0448\u0438\u043D\u0443 +Уклони машину ReloadJobCommand.ShortDescription=\ -\u041F\u043E\u043D\u043E\u0432\u043E \u043F\u0440\u0435\u0443\u0437\u043C\u0435 \u0437\u0430\u0434\u0430\u0442\u043A\u0435 -OnlineNodeCommand.ShortDescription=\u041D\u0430\u0441\u0442\u0430\u0432\u0438 \u043A\u043E\u0440\u0438\u0448\u045B\u0435\u045A\u0435 \u043C\u0430\u0448\u0438\u043D\u0435 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443, \u0448\u0442\u043E \u043F\u043E\u043D\u0438\u0448\u0442\u0430\u0432\u0430 \u043F\u0440\u0435\u0442\u0445\u043E\u0434\u043D\u0443 \u043A\u043E\u043C\u0430\u043D\u0434\u0443 "offline-node". -ClearQueueCommand.ShortDescription=\u0418\u0437\u0431\u0440\u0438\u0448\u0435 \u0437\u0430\u043A\u0430\u0437\u0430\u043D\u0435 \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0435. -ReloadConfigurationCommand.ShortDescription=\u041E\u0434\u0431\u0430\u0446\u0438 \u0441\u0432\u0435 \u043F\u043E\u0434\u0430\u0442\u043A\u0435 \u0443 \u043C\u0435\u043C\u043E\u0440\u0438\u0458\u0438, \u0438 \u043F\u043E\u043D\u043E \u0443\u0447\u0438\u0442\u0430\u0458 \u0441\u0432\u0435 \u0438\u0437 \u0434\u0430\u0442\u043E\u0442\u0435\u0447\u043D\u043E\u0433 \u0441\u0438\u0441\u0442\u0435\u043C\u0430. \u041A\u043E\u0440\u0438\u0441\u043D\u043E \u043A\u0430\u0434 \u0441\u0442\u0435 \u043C\u0435\u045A\u0430\u043B\u0438 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0434\u0438\u0440\u0435\u043A\u0442\u043D\u043E. -ConnectNodeCommand.ShortDescription=\u041F\u043E\u043D\u043E\u0432\u043E \u0441\u0435 \u043F\u043E\u0432\u0435\u0436\u0438\u0442\u0435 \u043D\u0430 \u043C\u0430\u0448\u0438\u043D\u0443 -QuietDownCommand.ShortDescription=\u041F\u0440\u0438\u043F\u0440\u0435\u043C\u0438 Jenkins \u0437\u0430 \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0435. \u041D\u0438\u0441\u0443 \u0434\u043E\u0437\u0432\u043E\u0459\u0435\u043D\u0430 \u043D\u043E\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430. -DisconnectNodeCommand.ShortDescription=\u041F\u0440\u0435\u043A\u0438\u043D\u0435 \u0432\u0435\u0437\u0443 \u0441\u0430 \u043C\u0430\u0448\u0438\u043D\u043E\u043C. -CancelQuietDownCommand.ShortDescription=\u041F\u043E\u043D\u0438\u0448\u0442\u0438 \u043C\u0435\u0440\u0435 \u043F\u043E\u0447\u0435\u0442\u0435 \u0437\u0430 \u043F\u0440\u0438\u043F\u0440\u0435\u043C\u0443 \u043F\u043E\u043D\u043E\u0432\u043E\u0433 \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0430. -OfflineNodeCommand.ShortDescription=\u0421\u0443\u0441\u043F\u0435\u043D\u0437\u0438\u0458\u0430 \u0443\u043F\u043E\u0442\u0440\u0435\u0431\u0435 \u043C\u0430\u0448\u0438\u043D\u0435 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 \u0434\u043E \u0441\u043B\u0435\u0434\u0435\u045B\u0435 "online-node" \u043A\u043E\u043C\u0430\u043D\u0434\u0435. -WaitNodeOnlineCommand.ShortDescription=\u0421\u0430\u0447\u0435\u043A\u0430\u0458 \u0434\u043E\u043A \u043D\u0435\u043A\u0430 \u043C\u0430\u0448\u0438\u043D\u0430 \u0431\u0443\u0434\u0435 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430. -WaitNodeOfflineCommand.ShortDescription=\u0421\u0430\u0447\u0435\u043A\u0430\u0458 \u0434\u043E\u043A \u043D\u0435\u043A\u0430 \u043C\u0430\u0448\u0438\u043D\u0430 \u0431\u0443\u0434\u0435 \u043D\u0435\u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430. -CliProtocol.displayName=\u041F\u0440\u043E\u0442\u043E\u043A\u043E\u043B \u0437\u0430 Jenkins \u043F\u0440\u0435\u043A\u043E \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u0435 \u043B\u0438\u043D\u0438\u0458\u0435, \u0432\u0435\u0440\u0437\u0438\u0458\u0430 1 -CliProtocol2.displayName=\u041F\u0440\u043E\u0442\u043E\u043A\u043E\u043B \u0437\u0430 Jenkins \u043F\u0440\u0435\u043A\u043E \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u0435 \u043B\u0438\u043D\u0438\u0458\u0435, \u0432\u0435\u0440\u0437\u0438\u0458\u0430 2 -CLI.delete-node.shortDescription=\u0423\u043A\u043B\u043E\u043D\u0438 \u043C\u0430\u0448\u0438\u043D\u0443 +Поново преузме задатке +OnlineNodeCommand.ShortDescription=ÐаÑтави коришћење машине за изградњу, што поништава претходну команду "offline-node". +ClearQueueCommand.ShortDescription=Избрише заказане задатаке. +ReloadConfigurationCommand.ShortDescription=Одбаци Ñве податке у меморији, и поно учитај Ñве из датотечног ÑиÑтема. КориÑно кад Ñте мењали подешавања директно. +ConnectNodeCommand.ShortDescription=Поново Ñе повежите на машину +QuietDownCommand.ShortDescription=Припреми Jenkins за поново покретање. ÐиÑу дозвољена нова изградња. +DisconnectNodeCommand.ShortDescription=Прекине везу Ñа машином. +CancelQuietDownCommand.ShortDescription=Поништи мере почете за припрему поновог покретања. +OfflineNodeCommand.ShortDescription=СуÑпензија употребе машине за изградњу до Ñледеће "online-node" команде. +WaitNodeOnlineCommand.ShortDescription=Сачекај док нека машина буде доÑтупна. +WaitNodeOfflineCommand.ShortDescription=Сачекај док нека машина буде недоÑтупна. +CliProtocol.displayName=Протокол за Jenkins преко командне линије, верзија 1 +CliProtocol2.displayName=Протокол за Jenkins преко командне линије, верзија 2 +CLI.delete-node.shortDescription=Уклони машину diff --git a/core/src/main/resources/hudson/cli/Messages_zh_TW.properties b/core/src/main/resources/hudson/cli/Messages_zh_TW.properties index 1413df666497..c76efaf4340b 100644 --- a/core/src/main/resources/hudson/cli/Messages_zh_TW.properties +++ b/core/src/main/resources/hudson/cli/Messages_zh_TW.properties @@ -20,58 +20,58 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -InstallPluginCommand.DidYouMean={0} \u770b\u8d77\u4f86\u50cf\u662f\u5916\u639b\u7a0b\u5f0f\u7684\u77ed\u540d\u3002\u60a8\u662f\u6307 ''{1}'' \u55ce? -InstallPluginCommand.InstallingFromUpdateCenter=\u7531\u66f4\u65b0\u4e2d\u5fc3 {0} \u5b89\u88dd -InstallPluginCommand.InstallingPluginFromLocalFile=\u7531\u672c\u5730\u6a94\u6848 {0} \u5b89\u88dd\u5916\u639b\u7a0b\u5f0f -InstallPluginCommand.InstallingPluginFromUrl=\u7531 {0} \u5b89\u88dd\u5916\u639b\u7a0b\u5f0f -InstallPluginCommand.NoUpdateCenterDefined=\u6ce8\u610f\uff0cJenkins \u4e2d\u6c92\u6709\u8a2d\u5b9a\u66f4\u65b0\u4e2d\u5fc3\u3002 -InstallPluginCommand.NoUpdateDataRetrieved=\u66f4\u65b0\u4e2d\u5fc3\u7684\u8cc7\u6599\u9084\u6c92\u6709\u6293\u5230: {0} -InstallPluginCommand.NotAValidSourceName={0} \u4e0d\u662f\u6709\u6548\u7684\u6a94\u6848\u3001URL\uff0c\u4e5f\u4e0d\u662f\u66f4\u65b0\u4e2d\u5fc3\u4e2d\u7684\u5916\u639b\u7a0b\u5f0f\u6210\u54c1 (Artifact) \u540d\u7a31\u3002 +InstallPluginCommand.DidYouMean={0} 看起來åƒæ˜¯å¤–掛程å¼çš„短å。您是指 ''{1}'' å—Ž? +InstallPluginCommand.InstallingFromUpdateCenter=由更新中心 {0} å®‰è£ +InstallPluginCommand.InstallingPluginFromLocalFile=由本地檔案 {0} 安è£å¤–æŽ›ç¨‹å¼ +InstallPluginCommand.InstallingPluginFromUrl=ç”± {0} 安è£å¤–æŽ›ç¨‹å¼ +InstallPluginCommand.NoUpdateCenterDefined=注æ„,Jenkins 中沒有設定更新中心。 +InstallPluginCommand.NoUpdateDataRetrieved=更新中心的資料還沒有抓到: {0} +InstallPluginCommand.NotAValidSourceName={0} ä¸æ˜¯æœ‰æ•ˆçš„檔案ã€URL,也ä¸æ˜¯æ›´æ–°ä¸­å¿ƒä¸­çš„外掛程å¼æˆå“ (Artifact) å稱。 BuildCommand.ShortDescription=\ - \u5efa\u7f6e\u4f5c\u696d\uff0c\u4e26\u53ef\u4ee5\u4f9d\u8981\u7b49\u4faf\u5efa\u7f6e\u5b8c\u6210\u3002 -CopyJobCommand.ShortDescription=\u8907\u88fd\u4f5c\u696d\u3002 + 建置作業,並å¯ä»¥ä¾è¦ç­‰ä¾¯å»ºç½®å®Œæˆã€‚ +CopyJobCommand.ShortDescription=複製作業。 CreateJobCommand.ShortDescription=\ - \u5efa\u7acb\u65b0\u4f5c\u696d\uff0c\u7531 stdin \u8b80\u53d6\u8a2d\u5b9a XML \u6a94\u7684\u5167\u5bb9\u3002 + 建立新作業,由 stdin 讀å–設定 XML 檔的內容。 DeleteBuildsCommand.ShortDescription=\ - \u522a\u9664\u5efa\u7f6e\u8a18\u9304\u3002 + 刪除建置記錄。 GroovyCommand.ShortDescription=\ - \u57f7\u884c\u6307\u5b9a\u7684 Groovy Script\u3002 + 執行指定的 Groovy Script。 GroovyshCommand.ShortDescription=\ - \u4ee5\u4e92\u52d5\u5f0f Groovy Shell \u65b9\u5f0f\u57f7\u884c\u3002 + ä»¥äº’å‹•å¼ Groovy Shell æ–¹å¼åŸ·è¡Œã€‚ HelpCommand.ShortDescription=\ - \u5217\u51fa\u6240\u6709\u53ef\u7528\u7684\u6307\u4ee4\u3002 + 列出所有å¯ç”¨çš„指令。 InstallPluginCommand.ShortDescription=\ - \u7531\u6a94\u6848\u3001URL \u6216\u662f\u66f4\u65b0\u4e2d\u5fc3\u5b89\u88dd\u5916\u639b\u7a0b\u5f0f\u3002 + 由檔案ã€URL 或是更新中心安è£å¤–掛程å¼ã€‚ ListChangesCommand.ShortDescription=\ - \u5370\u51fa\u6307\u5b9a\u5efa\u7f6e\u7684\u8b8a\u66f4\u8a18\u9304\u3002 + å°å‡ºæŒ‡å®šå»ºç½®çš„變更記錄。 ListJobsCommand.ShortDescription=\ - \u5217\u51fa\u6307\u5b9a\u8996\u666f\u6216\u9805\u76ee\u7fa4\u7d44\u4e2d\u7684\u6240\u6709\u4f5c\u696d\u3002 + 列出指定視景或項目群組中的所有作業。 ListPluginsCommand.ShortDescription=\ - \u8f38\u51fa\u5b89\u88dd\u7684\u5916\u639b\u7a0b\u5f0f\u6e05\u55ae\u3002 + 輸出安è£çš„外掛程å¼æ¸…單。 SetBuildDescriptionCommand.ShortDescription=\ - \u8a2d\u5b9a\u5efa\u7f6e\u63cf\u8ff0\u8aaa\u660e\u3002 + 設定建置æ述說明。 VersionCommand.ShortDescription=\ - \u8f38\u51fa\u76ee\u524d\u7684\u7248\u672c\u3002 + 輸出目å‰çš„版本。 GetJobCommand.ShortDescription=\ - \u5c07\u4f5c\u696d\u5b9a\u7fa9 XML \u50be\u5370\u5230 stdout + 將作業定義 XML 傾å°åˆ° stdout SetBuildDisplayNameCommand.ShortDescription=\ - \u8a2d\u5b9a\u5efa\u7f6e\u7684\u986f\u793a\u540d\u7a31 + 設定建置的顯示å稱 WhoAmICommand.ShortDescription=\ - \u7522\u51fa\u60a8\u9a57\u8b49\u4ee5\u53ca\u6b0a\u9650\u8cc7\u8a0a\u7684\u5831\u8868 + 產出您驗證以åŠæ¬Šé™è³‡è¨Šçš„報表 UpdateJobCommand.ShortDescription=\ - \u7531 stdin \u66f4\u65b0\u4f5c\u696d\u5b9a\u7fa9 XML\u3002get-job \u6307\u4ee4\u7684\u76f8\u53cd -BuildCommand.CLICause.ShortDescription=\u7531 {0} \u7684\u547d\u4ee4\u5217\u4ecb\u9762\u555f\u52d5 + ç”± stdin 更新作業定義 XML。get-job 指令的相å +BuildCommand.CLICause.ShortDescription=ç”± {0} 的命令列介é¢å•Ÿå‹• -DeleteNodeCommand.ShortDescription=\u522a\u9664\u6307\u5b9a\u7bc0\u9ede\u3002 -DeleteJobCommand.ShortDescription=\u522a\u9664\u4f5c\u696d\u3002 -ClearQueueCommand.ShortDescription=\u6e05\u9664\u5efa\u7f6e\u4f47\u5217\u3002 -DisconnectNodeCommand.ShortDescription=\u4e2d\u65b7\u8207\u6307\u5b9a\u7bc0\u9ede\u7684\u9023\u7dda\u3002 -ReloadConfigurationCommand.ShortDescription=\u653e\u68c4\u6240\u6709\u8a18\u61b6\u9ad4\u88e1\u7684\u8cc7\u6599\uff0c\u7531\u6a94\u6848\u7cfb\u7d71\u4e2d\u91cd\u65b0\u8f09\u5165\u3002\u9069\u5408\u5728\u76f4\u63a5\u4fee\u6539\u8a2d\u5b9a\u6a94\u5f8c\u4f7f\u7528\u3002 -ConnectNodeCommand.ShortDescription=\u9023\u7dda\u5230\u6307\u5b9a\u7bc0\u9ede\u3002 -QuietDownCommand.ShortDescription=\u8b93 Jenkins \u6c89\u6fb1\u4e00\u4e0b\uff0c\u6e96\u5099\u91cd\u65b0\u555f\u52d5\u3002\u5148\u4e0d\u8981\u518d\u5efa\u7f6e\u4efb\u4f55\u4f5c\u696d\u3002 -CancelQuietDownCommand.ShortDescription=\u53d6\u6d88 "quiet-down" \u6307\u4ee4\u3002 -OfflineNodeCommand.ShortDescription=\u66ab\u6642\u4e0d\u4f7f\u7528\u6307\u5b9a\u7bc0\u9ede\u4f86\u5efa\u7f6e\uff0c\u76f4\u5230\u57f7\u884c "online-node" \u6307\u4ee4\u70ba\u6b62\u3002 -WaitNodeOnlineCommand.ShortDescription=\u7b49\u5019\u6307\u5b9a\u7bc0\u9ede\u4e0a\u7dda\u3002 -WaitNodeOfflineCommand.ShortDescription=\u7b49\u5019\u6307\u5b9a\u7bc0\u9ede\u96e2\u7dda\u3002 +DeleteNodeCommand.ShortDescription=刪除指定節點。 +DeleteJobCommand.ShortDescription=刪除作業。 +ClearQueueCommand.ShortDescription=清除建置佇列。 +DisconnectNodeCommand.ShortDescription=中斷與指定節點的連線。 +ReloadConfigurationCommand.ShortDescription=放棄所有記憶體裡的資料,由檔案系統中é‡æ–°è¼‰å…¥ã€‚é©åˆåœ¨ç›´æŽ¥ä¿®æ”¹è¨­å®šæª”後使用。 +ConnectNodeCommand.ShortDescription=連線到指定節點。 +QuietDownCommand.ShortDescription=讓 Jenkins 沉澱一下,準備é‡æ–°å•Ÿå‹•ã€‚å…ˆä¸è¦å†å»ºç½®ä»»ä½•ä½œæ¥­ã€‚ +CancelQuietDownCommand.ShortDescription=å–消 "quiet-down" 指令。 +OfflineNodeCommand.ShortDescription=暫時ä¸ä½¿ç”¨æŒ‡å®šç¯€é»žä¾†å»ºç½®ï¼Œç›´åˆ°åŸ·è¡Œ "online-node" 指令為止。 +WaitNodeOnlineCommand.ShortDescription=等候指定節點上線。 +WaitNodeOfflineCommand.ShortDescription=等候指定節點離線。 diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/description_pt_BR.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/description_pt_BR.properties index e84b8e781a3b..030540b593d1 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/description_pt_BR.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/description_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Este aviso aparece quando o espa\u00E7o em disco dispon\u00EDvel para o diret\u00F3rio de origem do Jenkins atinge um valor abaixo de certo limite. +blurb=Este aviso aparece quando o espaço em disco disponível para o diretório de origem do Jenkins atinge um valor abaixo de certo limite. diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_bg.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_bg.properties index bbe6a2420a6a..5cce5c99010e 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_bg.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_bg.properties @@ -22,27 +22,27 @@ # Clean up some files from this partition to make more room. solution.1=\ - \u0418\u0437\u0442\u0440\u0438\u0439\u0442\u0435 \u0447\u0430\u0441\u0442 \u043e\u0442 \u0444\u0430\u0439\u043b\u043e\u0432\u0435\u0442\u0435 \u043e\u0442 \u0442\u043e\u0437\u0438 \u0434\u044f\u043b, \u0437\u0430 \u0434\u0430 \u043e\u0441\u0432\u043e\u0431\u043e\u0434\u0438\u0442\u0435 \u043f\u043e\u0432\u0435\u0447\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e. + Изтрийте чаÑÑ‚ от файловете от този дÑл, за да оÑвободите повече проÑтранÑтво. # \ # Move JENKINS_HOME to a bigger partition. \ # See our Wiki for how to do this. solution.2=\ - \u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0435\u0442\u0435 JENKINS_HOME \u043d\u0430 \u043f\u043e-\u0433\u043e\u043b\u044f\u043c \u0434\u044f\u043b.\ - \u0412\u0438\u0436\u0442\u0435: \ - \u0443\u0438\u043a\u0438\u0442\u043e \u0437\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0442\u043e\u0432\u0430. + ПремеÑтете JENKINS_HOME на по-голÑм дÑл.\ + Вижте: \ + уикито за Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° това. # JENKINS_HOME is almost full blurb=\ - \u0424\u0430\u0439\u043b\u043e\u0432\u0430\u0442\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430, \u043d\u0430 \u043a\u043e\u044f\u0442\u043e \u0435 JENKINS_HOME, \u0435 \u043f\u043e\u0447\u0442\u0438 \u043f\u044a\u043b\u043d\u0430 + Файловата ÑиÑтема, на коÑто е JENKINS_HOME, е почти пълна JENKINS_HOME\ is\ almost\ full=\ - \u0424\u0430\u0439\u043b\u043e\u0432\u0430\u0442\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430, \u043d\u0430 \u043a\u043e\u044f\u0442\u043e \u0435 JENKINS_HOME, \u0435 \u043f\u043e\u0447\u0442\u0438 \u043f\u044a\u043b\u043d\u0430 + Файловата ÑиÑтема, на коÑто е JENKINS_HOME, е почти пълна # \ # Your JENKINS_HOME ({0}) is almost full. \ # When this directory completely fills up, it\'ll wreak havoc because Jenkins can\'t store any more data. description.1=\ \ - \u0424\u0430\u0439\u043b\u043e\u0432\u0430\u0442\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430 {0}, \u043d\u0430 \u043a\u043e\u044f\u0442\u043e \u0435 JENKINS_HOME ({0}) \u0435 \u043f\u043e\u0447\u0442\u0438 \u043f\u044a\u043b\u043d\u0430.\ - \u041a\u043e\u0433\u0430\u0442\u043e \u0434\u0438\u0441\u043a\u043e\u0432\u043e\u0442\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u0441\u0432\u044a\u0440\u0448\u0438, Jenkinns \u043d\u044f\u043c\u0430 \u0434\u0430 \u0440\u0430\u0431\u043e\u0442\u0438 \u043f\u0440\u0430\u0432\u0438\u043b\u043d\u043e, \u0437\u0430\u0449\u043e\u0442\u043e\ - \u043d\u044f\u043c\u0430 \u043a\u044a\u0434\u0435 \u0434\u0430 \u0441\u044a\u0445\u0440\u0430\u043d\u044f\u0432\u0430 \u043d\u043e\u0432\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u0438. + Файловата ÑиÑтема {0}, на коÑто е JENKINS_HOME ({0}) е почти пълна.\ + Когато диÑковото проÑтранÑтво Ñвърши, Jenkinns нÑма да работи правилно, защото\ + нÑма къде да ÑъхранÑва новите данни. # To prevent that problem, you should act now. description.2=\ - \u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0440\u0435\u0430\u0433\u0438\u0440\u0430\u0442\u0435 \u043d\u0435\u0437\u0430\u0431\u0430\u0432\u043d\u043e, \u0437\u0430 \u0434\u0430 \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u0438\u0442\u0435 \u0442\u043e\u0437\u0438 \u043f\u0440\u043e\u0431\u043b\u0435\u043c. + ТрÑбва да реагирате незабавно, за да предотвратите този проблем. diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_da.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_da.properties index 3e038deff8af..e5c38996acc8 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_da.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_da.properties @@ -21,11 +21,11 @@ # THE SOFTWARE. description.1=\ -Dit JENKINS_HOME ({0}) er n\u00e6sten fyldt. \ -N\u00e5r dette direktorie fylder helt op vil det sprede d\u00f8d og \u00f8del\u00e6ggelse, da Jenkins ikke vil kunne gemme mere data. +Dit JENKINS_HOME ({0}) er næsten fyldt. \ +NÃ¥r dette direktorie fylder helt op vil det sprede død og ødelæggelse, da Jenkins ikke vil kunne gemme mere data. solution.2=\ -Flyt JENKINS_HOME til et st\u00f8rre diskafsnit. -JENKINS_HOME\ is\ almost\ full=JENKINS_HOME er n\u00e6sten fyldt op -blurb=JENKINS_HOME er n\u00e6sten fyldt op -solution.1=Slet nogle filer p\u00e5 dette diskafsnit for at frig\u00f8re mere plads -description.2=For at undg\u00e5 problemer skal du handle nu. +Flyt JENKINS_HOME til et større diskafsnit. +JENKINS_HOME\ is\ almost\ full=JENKINS_HOME er næsten fyldt op +blurb=JENKINS_HOME er næsten fyldt op +solution.1=Slet nogle filer pÃ¥ dette diskafsnit for at frigøre mere plads +description.2=For at undgÃ¥ problemer skal du handle nu. diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_de.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_de.properties index 6e3001116946..d06e33696427 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_de.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_de.properties @@ -1,8 +1,8 @@ -JENKINS_HOME\ is\ almost\ full=Der Speicherplatz für JENKINS_HOME is fast erschöpft. -blurb=Der Speicherplatz für JENKINS_HOME is fast erschöpft. +JENKINS_HOME\ is\ almost\ full=Der Speicherplatz für JENKINS_HOME is fast erschöpft. +blurb=Der Speicherplatz für JENKINS_HOME is fast erschöpft. description.1=Das Verzeichnis JENKINS_HOME ({0}) ist fast voll. Ist dieser Speicherplatz \ - vollständig erschöpft, kann Jenkins keine weiteren Daten mehr speichern und wird abstürzen. + vollständig erschöpft, kann Jenkins keine weiteren Daten mehr speichern und wird abstürzen. description.2=Um dieses Problem zu vermeiden, sollten Sie jetzt handeln. -solution.1=Löschen Sie Dateien dieses Laufwerks, um Speicherplatz wieder freizugeben. +solution.1=Löschen Sie Dateien dieses Laufwerks, um Speicherplatz wieder freizugeben. solution.2=Verschieben Sie JENKINS_HOME auf ein Laufwerk mit mehr freiem Platz. \ Eine Anleitung dazu finden Sie im Wiki. diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_es.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_es.properties index 40104a53cee3..af7a00b7fd3d 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_es.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_es.properties @@ -20,14 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=El directorio de Jenkins (JENKINS_HOME) está casi lleno +blurb=El directorio de Jenkins (JENKINS_HOME) está casi lleno description.1=\ - El directirio JENKINS_HOME ({0}) está casi lleno. \ - Cuando este directorio se llene completamente Jenkins no podrá guardar nada mas y pueden ocurrir problemas imprevistos. + El directirio JENKINS_HOME ({0}) está casi lleno. \ + Cuando este directorio se llene completamente Jenkins no podrá guardar nada mas y pueden ocurrir problemas imprevistos. description.2=Debes hacer algo ahora para prevenir el problema. -solution.1=Borra ficheros de esta partición para liberar espacio. +solution.1=Borra ficheros de esta partición para liberar espacio. solution.2=\ - Mueve el directorio de JENKINS_HOME a una partción mayor. \ - Echa un vistazo a esta página para saber cómo hacerlo. -JENKINS_HOME\ is\ almost\ full=El directirio JENKINS_HOME ({0}) está casi lleno. + Mueve el directorio de JENKINS_HOME a una partción mayor. \ + Echa un vistazo a esta página para saber cómo hacerlo. +JENKINS_HOME\ is\ almost\ full=El directirio JENKINS_HOME ({0}) está casi lleno. diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_fr.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_fr.properties index 09ca4c684dcc..7d6d9294b2aa 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_fr.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_fr.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. blurb=JENKINS_HOME est presque plein -description.1=Votre r\u00E9pertoire JENKINS_HOME ({0}) est presque plein. Quand il n''y aura plus d''espace disponible dans ce r\u00E9pertoire, Jenkins aura un comportement erratique, car il ne pourra plus stocker de donn\u00E9es. -description.2=Pour \u00E9viter ce probl\u00E8me, vous devez agir maintenant. +description.1=Votre répertoire JENKINS_HOME ({0}) est presque plein. Quand il n''y aura plus d''espace disponible dans ce répertoire, Jenkins aura un comportement erratique, car il ne pourra plus stocker de données. +description.2=Pour éviter ce problème, vous devez agir maintenant. solution.1=Supprimez des fichiers sur cette partition afin de faire plus de place. -solution.2=D\u00E9placez JENKINS_HOME sur une partition plus grande. Consultez notre Wiki pour la d\u00E9marche \u00E0 suivre. +solution.2=Déplacez JENKINS_HOME sur une partition plus grande. Consultez notre Wiki pour la démarche à suivre. JENKINS_HOME\ is\ almost\ full=JENKINS_HOME est presque plein diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_it.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_it.properties index 0edcc54fe290..1c3375549610 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_it.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,15 +21,15 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=La directory JENKINS_HOME è quasi piena +blurb=La directory JENKINS_HOME è quasi piena description.1=\ - La directory JENKINS_HOME ({0}) è quasi piena. Quando questa \ - directory sarà stata riempita, ciò creerà problemi perché Jenkins non sarà \ - più in grado di salvare ulteriori dati. -description.2=Per prevenire tale problema è opportuno agire ora. -JENKINS_HOME\ is\ almost\ full=La directory JENKINS_HOME è quasi piena + La directory JENKINS_HOME ({0}) è quasi piena. Quando questa \ + directory sarà stata riempita, ciò creerà problemi perché Jenkins non sarà \ + più in grado di salvare ulteriori dati. +description.2=Per prevenire tale problema è opportuno agire ora. +JENKINS_HOME\ is\ almost\ full=La directory JENKINS_HOME è quasi piena solution.1=Rimuovere alcuni file da questa partizione per liberare altro \ spazio. -solution.2=Spostare JENKINS_HOME in una partizione più grande. Si \ +solution.2=Spostare JENKINS_HOME in una partizione più grande. Si \ veda la nostra \ documentazione per ulteriori dettagli su come procedere. diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_ja.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_ja.properties index 7d3df47bedc5..1f567fc4287f 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_ja.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_ja.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=JENKINS_HOME\u306E\u5BB9\u91CF\u304C\u307B\u307C\u3044\u3063\u3071\u3044\u3067\u3059\u3002 +blurb=JENKINS_HOMEã®å®¹é‡ãŒã»ã¼ã„ã£ã±ã„ã§ã™ã€‚ description.1=\ - JENKINS_HOME ({0}) \u306E\u5BB9\u91CF\u304C\u307B\u307C\u3044\u3063\u3071\u3044\u3067\u3059\u3002\ - \u3053\u306E\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u304C\u3044\u3063\u3071\u3044\u306B\u306A\u3063\u305F\u3089\u3001\u3082\u3046\u3053\u308C\u4EE5\u4E0A\u30C7\u30FC\u30BF\u3092\u4FDD\u5B58\u3067\u304D\u306A\u3044\u306E\u3067\u304A\u304B\u3057\u304F\u306A\u308A\u307E\u3059\u3002 -description.2=\u554F\u984C\u304C\u8D77\u304D\u306A\u3044\u3088\u3046\u306B\u3001\u4ECA\u3059\u3050\u5BFE\u51E6\u3057\u306A\u304F\u3066\u306F\u306A\u308A\u307E\u305B\u3093\u3002 -solution.1=\u3053\u306E\u30D1\u30FC\u30C6\u30A3\u30B7\u30E7\u30F3\u306E\u30D5\u30A1\u30A4\u30EB\u3092\u524A\u9664\u3057\u3066\u3001\u7A7A\u304D\u3092\u4F5C\u308A\u307E\u3059\u3002 + JENKINS_HOME ({0}) ã®å®¹é‡ãŒã»ã¼ã„ã£ã±ã„ã§ã™ã€‚\ + ã“ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãŒã„ã£ã±ã„ã«ãªã£ãŸã‚‰ã€ã‚‚ã†ã“れ以上データをä¿å­˜ã§ããªã„ã®ã§ãŠã‹ã—ããªã‚Šã¾ã™ã€‚ +description.2=å•é¡ŒãŒèµ·ããªã„よã†ã«ã€ä»Šã™ã対処ã—ãªãã¦ã¯ãªã‚Šã¾ã›ã‚“。 +solution.1=ã“ã®ãƒ‘ーティションã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’削除ã—ã¦ã€ç©ºãを作りã¾ã™ã€‚ solution.2=\ - JENKINS_HOME\u3092\u3082\u3063\u3068\u5BB9\u91CF\u306E\u3042\u308B\u30D1\u30FC\u30C6\u30A3\u30B7\u30E7\u30F3\u306B\u79FB\u3057\u307E\u3059\u3002\ - \u8A73\u3057\u3044\u65B9\u6CD5\u306F\u3001Wiki\u3092\u53C2\u7167\u3057\u3066\u304F\u3060\u3055\u3044\u3002 -JENKINS_HOME\ is\ almost\ full=JENKINS_HOME\u306E\u5BB9\u91CF\u304C\u307B\u307C\u3044\u3063\u3071\u3044\u3067\u3059\u3002 + JENKINS_HOMEã‚’ã‚‚ã£ã¨å®¹é‡ã®ã‚るパーティションã«ç§»ã—ã¾ã™ã€‚\ + 詳ã—ã„方法ã¯ã€Wikiã‚’å‚ç…§ã—ã¦ãã ã•ã„。 +JENKINS_HOME\ is\ almost\ full=JENKINS_HOMEã®å®¹é‡ãŒã»ã¼ã„ã£ã±ã„ã§ã™ã€‚ diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_pt_BR.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_pt_BR.properties index 6736c038a596..a31a7759ace6 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_pt_BR.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_pt_BR.properties @@ -21,22 +21,22 @@ # THE SOFTWARE. # To prevent that problem, you should act now. -description.2=Para prevenir este problema, voc\ufffd deveria agir agora. +description.2=Para prevenir este problema, voc� deveria agir agora. # \ # Your JENKINS_HOME ({0}) is almost full. \ # When this directory completely fills up, it\'ll wreak havoc because Jenkins can\'t store any more data. -description.1=Seu diret\ufffdrio JENKINS_HOME ({0}) est\ufffd quase cheio. \ - Quando este diret\ufffdrio ficar completamente cheio, ocorrer\ufffd problemas porque o Jenkins n\ufffdo pode mais armazenar dados. +description.1=Seu diret�rio JENKINS_HOME ({0}) est� quase cheio. \ + Quando este diret�rio ficar completamente cheio, ocorrer� problemas porque o Jenkins n�o pode mais armazenar dados. # \ # Move JENKINS_HOME to a bigger partition. \ # See our Wiki for how to do this. solution.2=\ - Mova o diret\ufffdrio JENKINS_HOME para uma parti\ufffd\ufffdo maior. \ + Mova o diret�rio JENKINS_HOME para uma parti��o maior. \ Veja nosso Wiki para saber como fazer isto. -JENKINS_HOME\ is\ almost\ full=JENKINS_HOME est\ufffd quase cheio +JENKINS_HOME\ is\ almost\ full=JENKINS_HOME est� quase cheio # JENKINS_HOME is almost full -blurb=O diret\ufffdrio JENKINS_HOME est\ufffd quase cheio +blurb=O diret�rio JENKINS_HOME est� quase cheio # Clean up some files from this partition to make more room. -solution.1=Limpe alguns arquivos desta parti\ufffd\ufffdo para liberar espa\ufffdo. +solution.1=Limpe alguns arquivos desta parti��o para liberar espa�o. diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_sr.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_sr.properties index 41f612cc6310..aaf05fc246e7 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_sr.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_sr.properties @@ -1,14 +1,14 @@ # This file is under the MIT License by authors -JENKINS_HOME\ is\ almost\ full=JENKINS_HOME \u0458\u0435 \u0441\u043A\u043E\u0440\u043E \u043F\u0440\u0435\u043F\u0443\u043D\u043E -blurb=JENKINS_HOME \u0458\u0435 \u0441\u043A\u043E\u0440\u043E \u043F\u0440\u0435\u043F\u0443\u043D\u043E -description.1=\ \u0412\u0430\u0448 JENKINS_HOME ({0}) \u0458\u0435 \u0441\u043A\u043E\u0440\u043E \u043F\u0440\u0435\u043F\u0443\u043D. \ - \u041A\u0430\u0434 \u0441\u0435 \u0441\u043A\u0440\u043E\u0437 \u043D\u0430\u043F\u0443\u043D\u0438 \u043E\u0432\u0430\u0458 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0443\u043C, Jenkins \u043D\u0435\u045B\u0435 \u043C\u043E\u045B\u0438 \u043F\u0438\u0441\u0430\u0442\u0438 \u0432\u0438\u0448\u0435 \u043F\u043E\u0434\u0430\u0442\u0430\u043A\u0430. -description.2=\u0414\u0430 \u0431\u0438 \u0441\u0435 \u0441\u043F\u0440\u0435\u0447\u0438\u043E \u043E\u0432\u0430\u0458 \u043F\u0440\u043E\u0431\u043B\u0435\u043C, \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E \u0458\u0435 \u0434\u0435\u043B\u043E\u0432\u0430\u0442\u0438 \u043E\u0434\u043C\u0430\u0445. -solution.1=\u041E\u0431\u0440\u0438\u0448\u0435\u0442\u0435 \u043D\u0435\u043A\u0435 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435 \u0441\u0430 \u043E\u0432\u0435 \u043F\u0430\u0440\u0442\u0438\u0446\u0438\u0458\u0435 \u0434\u0430 \u0431\u0438 \u0441\u0435 \u043E\u0441\u043B\u043E\u0431\u043E\u0434\u0438\u043B\u043E \u043C\u0435\u0441\u0442\u0430. +JENKINS_HOME\ is\ almost\ full=JENKINS_HOME је Ñкоро препуно +blurb=JENKINS_HOME је Ñкоро препуно +description.1=\ Ваш JENKINS_HOME ({0}) је Ñкоро препун. \ + Кад Ñе Ñкроз напуни овај директориум, Jenkins неће моћи пиÑати више података. +description.2=Да би Ñе Ñпречио овај проблем, потребно је деловати одмах. +solution.1=Обришете неке датотеке Ñа ове партиције да би Ñе оÑлободило меÑта. solution.2=\ -\u041F\u0440\u0435\u0431\u0430\u0446\u0438\u0442\u0435 <\u0422\u0422>JENKINS_HOME \u0432\u0435\u045B\u043E\u0458 \u043F\u0430\u0440\u0442\u0438\u0446\u0438\u0458\u0438.\ -\u041F\u043E\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 <\u0430 href="https://www.jenkins.io/redirect/migrate-jenkins-home">\u0412\u0438\u043A\u0438 \u0442\u043E\u043C\u0435 \u043A\u0430\u043A\u043E \u0434\u0430 \u0442\u043E \u0443\u0440\u0430\u0434\u0438\u0442\u0438. +Пребаците <ТТ>JENKINS_HOME већој партицији.\ +Погледајте <а href="https://www.jenkins.io/redirect/migrate-jenkins-home">Вики томе како да то урадити. Dit= # TODO FIXME This file looks completely messed up? diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_zh_TW.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_zh_TW.properties index 929c82643c33..0c09063cf104 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_zh_TW.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_zh_TW.properties @@ -21,13 +21,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=JENKINS_HOME \u5feb\u6eff\u4e86 +blurb=JENKINS_HOME 快滿了 description.1=\ - \u60a8\u7684 JENKINS_HOME ({0}) \u5feb\u6eff\u4e86\u3002\ - \u7576\u9019\u500b\u76ee\u9304\u5b8c\u5168\u6c92\u6709\u4efb\u4f55\u7a7a\u9593\u6642\uff0c\u5c07\u5c0e\u81f4 Jenkins \u767c\u751f\u56b4\u91cd\u7684\u932f\u8aa4\u3002 -description.2=\u70ba\u4e86\u907f\u514d\u767c\u751f\u61be\u4e8b\uff0c\u60a8\u61c9\u8a72\u99ac\u4e0a\u63a1\u53d6\u884c\u52d5\u3002 -solution.1=\u6e05\u6389\u9019\u500b\u5206\u5272\u5340\u4e0a\u7684\u67d0\u4e9b\u6a94\u6848\uff0c\u7a7a\u51fa\u4e00\u4e9b\u7a7a\u9593\u3002 + 您的 JENKINS_HOME ({0}) 快滿了。\ + 當這個目錄完全沒有任何空間時,將導致 Jenkins 發生嚴é‡çš„錯誤。 +description.2=為了é¿å…發生憾事,您應該馬上採å–行動。 +solution.1=清掉這個分割å€ä¸Šçš„æŸäº›æª”案,空出一些空間。 solution.2=\ - \u5c07 JENKINS_HOME \u79fb\u5230\u6bd4\u8f03\u5927\u7684\u5206\u5272\u5340\u88e1\u3002\ - \u5728\u6211\u5011\u7684 Wiki \u4e0a\u6709\u4f5c\u6cd5\u8aaa\u660e\u3002 -JENKINS_HOME\ is\ almost\ full=JENKINS_HOME \u5feb\u6eff\u4e86 + å°‡ JENKINS_HOME 移到比較大的分割å€è£¡ã€‚\ + 在我們的 Wiki 上有作法說明。 +JENKINS_HOME\ is\ almost\ full=JENKINS_HOME 快滿了 diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_bg.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_bg.properties index 248d4877a91d..45e2465c3f0d 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_bg.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_bg.properties @@ -22,7 +22,7 @@ Dismiss= Tell\ me\ more=\ - \u041f\u043e\u0432\u0435\u0447\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f + Повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ # Your Jenkins data directory "{0}" (AKA JENKINS_HOME) is almost full. You should act on it before it gets completely full. blurb=\ - \u0414\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f\u0442\u0430 \u0441\u0430 \u0434\u0430\u043d\u043d\u0438 \u043d\u0430 Jenkins \u201e{0}\u201c \u2014 JENKINS_HOME) + ДиректориÑта Ñа данни на Jenkins „{0}“ — JENKINS_HOME) diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_da.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_da.properties index 79ee0bc6c122..86b08f0a84ae 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_da.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_da.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Dit Jenkins data direktorie "{0}" (ogs\u00e5 kendt som JENKINS_HOME) er n\u00e6sten fyldt. Du b\u00f8r handle f\u00f8r det fylder helt op. +blurb=Dit Jenkins data direktorie "{0}" (ogsÃ¥ kendt som JENKINS_HOME) er næsten fyldt. Du bør handle før det fylder helt op. Dismiss=Luk -Tell\ me\ more=Fort\u00e6l mig mere +Tell\ me\ more=Fortæl mig mere diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_de.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_de.properties index 4dd9c9286f34..d9a7dc21fdc1 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_de.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_de.properties @@ -1,5 +1,5 @@ Tell\ me\ more=Mehr Informationen dazu Dismiss=Zur Kenntnis genommen blurb=\ - Ihr Jenkins Datenverzeichnis \u201E{0}\u201C (alias JENKINS_HOME) ist fast voll. \ - Sie sollten handeln, bevor der Speicherplatz komplett erschöpft ist. + Ihr Jenkins Datenverzeichnis „{0}“ (alias JENKINS_HOME) ist fast voll. \ + Sie sollten handeln, bevor der Speicherplatz komplett erschöpft ist. diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_es.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_es.properties index 943aae1d8148..713730d01cce 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_es.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_es.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=El directorio de Jenkins "{0}" (JENKINS_HOME) está casi lleno. Haga algo antes de que se llene completamente. +blurb=El directorio de Jenkins "{0}" (JENKINS_HOME) está casi lleno. Haga algo antes de que se llene completamente. Dismiss=Descartar -Tell\ me\ more=Más informacion +Tell\ me\ more=Más informacion diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_fr.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_fr.properties index 985732b3b613..58665bb562c7 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_fr.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_fr.properties @@ -22,4 +22,4 @@ Tell\ me\ more=Je veux en savoir plus Dismiss=J''ai compris -blurb=Votre r\u00E9pertoire de donn\u00E9es Jenkins "{0}" (c-\u00E0-d JENKINS_HOME) est presque plein. Vous devriez agir avant qu''il soit compl\u00E8tement rempli. +blurb=Votre répertoire de données Jenkins "{0}" (c-à-d JENKINS_HOME) est presque plein. Vous devriez agir avant qu''il soit complètement rempli. diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_it.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_it.properties index ff3d2d6bfa94..9c9181e995be 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_it.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,7 +22,7 @@ # THE SOFTWARE. blurb=La directory dati di Jenkins {0} (nota come \ - JENKINS_HOME) è quasi piena. È opportuno intervenire prima che \ + JENKINS_HOME) è quasi piena. È opportuno intervenire prima che \ si riempia completamente. Dismiss=Nascondi Tell\ me\ more=Ulteriori informazioni diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_ja.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_ja.properties index ad2a72d47187..55699c250189 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_ja.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_ja.properties @@ -1,3 +1,3 @@ -Tell\ me\ more=\u8A73\u7D30 -Dismiss=\u7121\u8996 -blurb=Jenkins\u306E\u30C7\u30FC\u30BF\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA "{0}" (JENKINS_HOME)\u306E\u5BB9\u91CF\u304C\u307B\u307C\u3044\u3063\u3071\u3044\u306B\u306A\u3063\u3066\u3044\u307E\u3059\u3002\u5BB9\u91CF\u30AA\u30FC\u30D0\u30FC\u306B\u306A\u308B\u524D\u306B\u5BFE\u51E6\u3057\u3066\u304F\u3060\u3055\u3044\u3002 +Tell\ me\ more=詳細 +Dismiss=無視 +blurb=Jenkinsã®ãƒ‡ãƒ¼ã‚¿ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒª "{0}" (JENKINS_HOME)ã®å®¹é‡ãŒã»ã¼ã„ã£ã±ã„ã«ãªã£ã¦ã„ã¾ã™ã€‚容é‡ã‚ªãƒ¼ãƒãƒ¼ã«ãªã‚‹å‰ã«å¯¾å‡¦ã—ã¦ãã ã•ã„。 diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_pt_BR.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_pt_BR.properties index 811f6137269d..8258c2ea7c33 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_pt_BR.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_pt_BR.properties @@ -22,6 +22,6 @@ Dismiss=Descartar # Your Jenkins data directory "{0}" (AKA JENKINS_HOME) is almost full. You should act on it before it gets completely full. -blurb=O diret\u00F3rio do Jenkins "{0}" (JENKINS_HOME) est\u00E1 quase cheio. Algo deve ser feito antes que fique completamente cheio. -# Estes usu\u00E1rios podem se logar no Jenkins. Este \u00E9 um super conjunto desta lista, \ -Tell\ me\ more=Mais informa\u00E7\u00F5es +blurb=O diretório do Jenkins "{0}" (JENKINS_HOME) está quase cheio. Algo deve ser feito antes que fique completamente cheio. +# Estes usuários podem se logar no Jenkins. Este é um super conjunto desta lista, \ +Tell\ me\ more=Mais informações diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_ru.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_ru.properties index 03914c42e04b..ca0f50ee9da1 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_ru.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_ru.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Dismiss=\u041E\u0442\u043A\u043B\u043E\u043D\u0438\u0442\u044C -Tell\ me\ more=\u0411\u043E\u043B\u044C\u0448\u0435 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438 -blurb=\u0412\u0430\u0448\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u044F "{0}" (JENKINS_HOME) \u043F\u043E\u0447\u0442\u0438 \u0437\u0430\u043F\u043E\u043B\u043D\u0435\u043D\u0430. \u0412\u0430\u043C \u0441\u0442\u043E\u0438\u0442 \u043E\u0447\u0438\u0441\u0442\u0438\u0442\u044C \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u044E, \u043F\u043E\u043A\u0430 \u043E\u043D\u0430 \u043D\u0435 \u0437\u0430\u043F\u043E\u043B\u043D\u0438\u043B\u0430\u0441\u044C. +Dismiss=Отклонить +Tell\ me\ more=Больше информации +blurb=Ваши Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ "{0}" (JENKINS_HOME) почти заполнена. Вам Ñтоит очиÑтить директорию, пока она не заполнилаÑÑŒ. diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_sr.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_sr.properties index 7f5e6eac953e..525cd1df96d5 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_sr.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Tell\ me\ more=\u041E\u0431\u0458\u0430\u0441\u043D\u0438 -Dismiss=\u041E\u0442\u043A\u0430\u0436\u0438 -blurb=\u0412\u0430\u0448 Jenkins \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C "{0}" (<\u0422\u0422>JENKINS_HOME) \u0458\u0435 \u0441\u043A\u043E\u0440\u043E \u043F\u0440\u0435\u043F\u0443\u043D. \u0414\u0435\u043B\u0443\u0458\u0442\u0435 \u043F\u0440\u0435 \u043D\u0435\u0433\u043E \u0448\u0442\u043E \u0458\u0435 \u0441\u043A\u0440\u043E\u0437 \u043F\u0440\u0435\u043F\u0443\u043D. +Tell\ me\ more=ОбјаÑни +Dismiss=Откажи +blurb=Ваш Jenkins директоријум "{0}" (<ТТ>JENKINS_HOME) је Ñкоро препун. Делујте пре него што је Ñкроз препун. diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_zh_TW.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_zh_TW.properties index 9af5ba90b76d..d444bb984a75 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_zh_TW.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_zh_TW.properties @@ -21,6 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Tell\ me\ more=\u8a73\u7d30\u8aaa\u660e -blurb=\u60a8 Jenkins \u7684\u8cc7\u6599\u76ee\u9304 "{0}" (\u4e5f\u5c31\u662f JENKINS_HOME) \u5feb\u6eff\u4e86\u3002\u60a8\u61c9\u8a72\u5728\u5b83\u7206\u6389\u524d\u76e1\u5feb\u8655\u7406\u3002 -Dismiss=\u4e0d\u7ba1 +Tell\ me\ more=詳細說明 +blurb=您 Jenkins 的資料目錄 "{0}" (也就是 JENKINS_HOME) 快滿了。您應該在它爆掉å‰ç›¡å¿«è™•ç†ã€‚ +Dismiss=ä¸ç®¡ diff --git a/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_bg.properties b/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_bg.properties index 17fcc9d499ab..0407157c12cf 100644 --- a/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_bg.properties +++ b/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_bg.properties @@ -21,12 +21,12 @@ # THE SOFTWARE. Long=\ - \u0414\u044a\u043b\u044a\u0433 + Дълъг Timespan=\ - \u041f\u0435\u0440\u0438\u043e\u0434 + Период Short=\ - \u041a\u0440\u0430\u0442\u044a\u043a + Кратък Medium=\ - \u0421\u0440\u0435\u0434\u0435\u043d + Среден JVM\ Memory\ Usage=\ - \u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0430\u043c\u0435\u0442 \u043e\u0442 \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u043d\u0430\u0442\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 \u043d\u0430 Java + Използване на памет от виртуалната машина на Java diff --git a/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_es.properties b/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_es.properties index fc4a82ba3a99..2c68bdb5175d 100644 --- a/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_es.properties +++ b/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_es.properties @@ -22,6 +22,6 @@ JVM\ Memory\ Usage=Uso de la memoria por java Timespan=Timespan -Short=Pequeño +Short=Pequeño Medium=Mediano Long=Grande diff --git a/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_fr.properties b/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_fr.properties index dbceec5bba67..c3037aeb3d8c 100644 --- a/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_fr.properties +++ b/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_fr.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -JVM\ Memory\ Usage=Utilisation m\u00E9moire par la JVM -Timespan=Dur\u00E9e de vie +JVM\ Memory\ Usage=Utilisation mémoire par la JVM +Timespan=Durée de vie Short=Courte Medium=Moyenne Long=Longue diff --git a/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_it.properties b/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_it.properties index a09eaf1c511d..ad869ea447d6 100644 --- a/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_it.properties +++ b/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_ja.properties b/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_ja.properties index 2e05136a61cd..4a46e9c8eb93 100644 --- a/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_ja.properties +++ b/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_ja.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -JVM\ Memory\ Usage=JVM \u30E1\u30E2\u30EA\u4F7F\u7528\u91CF -Timespan=\u671F\u9593 -Short=\u77ED -Medium=\u4E2D -Long=\u9577 +JVM\ Memory\ Usage=JVM ãƒ¡ãƒ¢ãƒªä½¿ç”¨é‡ +Timespan=期間 +Short=短 +Medium=中 +Long=é•· diff --git a/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_pt_BR.properties b/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_pt_BR.properties index 8779a9b61aab..6ddbda1ab527 100644 --- a/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_pt_BR.properties +++ b/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_pt_BR.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Short=Pequeno -Timespan=Dura\ufffd\ufffdo -JVM\ Memory\ Usage=Uso da mem\ufffdria pela JVM -Medium=M\ufffddio +Timespan=Dura��o +JVM\ Memory\ Usage=Uso da mem�ria pela JVM +Medium=M�dio Long=Longo diff --git a/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_sr.properties b/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_sr.properties index 1f7374f74686..515465c688f3 100644 --- a/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_sr.properties +++ b/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_sr.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -JVM\ Memory\ Usage=\u0423\u043F\u043E\u0442\u0440\u0435\u0431\u0430 \u043C\u0435\u043C\u043E\u0440\u0438\u0458\u0435 Java \u0432\u0438\u0440\u0442\u0443\u0435\u043B\u043D\u0435 \u043C\u0430\u0448\u0438\u043D\u0435 -Timespan=\u0412\u0440\u0435\u043C\u0435 -Short=\u041A\u0440\u0430\u0442\u043A\u043E -Medium=\u0421\u0440\u0435\u0434\u045A\u0435 -Long=\u0414\u0443\u0433\u043E +JVM\ Memory\ Usage=Употреба меморије Java виртуелне машине +Timespan=Време +Short=Кратко +Medium=Средње +Long=Дуго diff --git a/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_zh_TW.properties b/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_zh_TW.properties index c4fe30e95d2c..789f4b0ad478 100644 --- a/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_zh_TW.properties +++ b/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_zh_TW.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -JVM\ Memory\ Usage=JVM \u8a18\u61b6\u9ad4\u7528\u91cf -Timespan=\u671f\u9593 -Short=\u77ed -Medium=\u4e2d -Long=\u9577 +JVM\ Memory\ Usage=JVM è¨˜æ†¶é«”ç”¨é‡ +Timespan=期間 +Short=短 +Medium=中 +Long=é•· diff --git a/core/src/main/resources/hudson/diagnosis/Messages_bg.properties b/core/src/main/resources/hudson/diagnosis/Messages_bg.properties index 25432bc2ea3f..383db427d693 100644 --- a/core/src/main/resources/hudson/diagnosis/Messages_bg.properties +++ b/core/src/main/resources/hudson/diagnosis/Messages_bg.properties @@ -21,22 +21,22 @@ # THE SOFTWARE. MemoryUsageMonitor.USED=\ - \u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0438 + Използвани MemoryUsageMonitor.TOTAL=\ - \u041e\u0431\u0449\u043e + Общо OldDataMonitor.Description=\ - \u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0444\u0430\u0439\u043b\u043e\u0432\u0435\u0442\u0435 \u0441 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0447\u0438\u0441\u0442\u044f\u0442 \u043e\u0441\u0442\u0430\u0442\u044a\u0446\u0438\u0442\u0435 \u043e\u0442 \u0441\u0442\u0430\u0440\u0438\ - \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438 \u0438 \u0432\u0435\u0440\u0441\u0438\u0438. + Изтриване на файловете Ñ Ð½Ð°Ñтройки, за да Ñе изчиÑÑ‚ÑÑ‚ оÑтатъците от Ñтари\ + приÑтавки и верÑии. OldDataMonitor.DisplayName=\ - \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u0441\u0442\u0430\u0440\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u0438 + Управление на Ñтарите данни HudsonHomeDiskUsageMonitor.DisplayName=\ - \u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u043e \u0434\u0438\u0441\u043a\u043e\u0432\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e + Използвано диÑково проÑтранÑтво # Reverse Proxy Setup ReverseProxySetupMonitor.DisplayName=\ - \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0441\u044a\u0440\u0432\u044a\u0440\u0430-\u043e\u0431\u0440\u0430\u0442\u0435\u043d \u043f\u043e\u0441\u0440\u0435\u0434\u043d\u0438\u043a + ÐаÑтройки на Ñървъра-обратен поÑредник # Too Many Jobs Not Organized in Views TooManyJobsButNoView.DisplayName=\ - \u041f\u0440\u0435\u043a\u0430\u043b\u0435\u043d\u043e \u043c\u043d\u043e\u0433\u043e \u0437\u0430\u0434\u0430\u0447\u0438 \u043d\u0435 \u0441\u0430 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u043f\u043e \u0438\u0437\u0433\u043b\u0435\u0434\u0438 + Прекалено много задачи не Ñа организирани по изгледи # Missing Descriptor ID NullIdDescriptorMonitor.DisplayName=\ - \u041b\u0438\u043f\u0441\u0432\u0430\u0449 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043d\u0430 \u0434\u0435\u0441\u043a\u0440\u0438\u043f\u0442\u043e\u0440 + ЛипÑващ идентификатор на деÑкриптор diff --git a/core/src/main/resources/hudson/diagnosis/Messages_de.properties b/core/src/main/resources/hudson/diagnosis/Messages_de.properties index 39c9577a0c0f..8e7ea3d41e94 100644 --- a/core/src/main/resources/hudson/diagnosis/Messages_de.properties +++ b/core/src/main/resources/hudson/diagnosis/Messages_de.properties @@ -23,7 +23,7 @@ MemoryUsageMonitor.USED=Verwendet MemoryUsageMonitor.TOTAL=Total OldDataMonitor.DisplayName=Veraltete Daten verwalten -OldDataMonitor.Description=Konfiguration bereinigen, um \u00DCberbleibsel alter Plugins und fr\u00FCherer Versionen zu entfernen. +OldDataMonitor.Description=Konfiguration bereinigen, um Ãœberbleibsel alter Plugins und früherer Versionen zu entfernen. HudsonHomeDiskUsageMonitor.DisplayName=Speicherplatz-Monitor NullIdDescriptorMonitor.DisplayName=Fehlende Descriptor-ID ReverseProxySetupMonitor.DisplayName=Reverse-Proxy-Konfiguration diff --git a/core/src/main/resources/hudson/diagnosis/Messages_fr.properties b/core/src/main/resources/hudson/diagnosis/Messages_fr.properties index dff771a56da9..671d7f52d61e 100644 --- a/core/src/main/resources/hudson/diagnosis/Messages_fr.properties +++ b/core/src/main/resources/hudson/diagnosis/Messages_fr.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. MemoryUsageMonitor.TOTAL=Total -OldDataMonitor.Description=Nettoyer les fichiers de configuration des restes de vieux plugins et des versions ant\u00e9rieures. -OldDataMonitor.DisplayName=G\u00e9rer les anciennes donn\u00e9es +OldDataMonitor.Description=Nettoyer les fichiers de configuration des restes de vieux plugins et des versions antérieures. +OldDataMonitor.DisplayName=Gérer les anciennes données diff --git a/core/src/main/resources/hudson/diagnosis/Messages_it.properties b/core/src/main/resources/hudson/diagnosis/Messages_it.properties index 7c32d838f6c5..5e1d2742d630 100644 --- a/core/src/main/resources/hudson/diagnosis/Messages_it.properties +++ b/core/src/main/resources/hudson/diagnosis/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/diagnosis/Messages_ja.properties b/core/src/main/resources/hudson/diagnosis/Messages_ja.properties index 56ebaace8b5e..72bed1e83532 100644 --- a/core/src/main/resources/hudson/diagnosis/Messages_ja.properties +++ b/core/src/main/resources/hudson/diagnosis/Messages_ja.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -MemoryUsageMonitor.USED=\u4f7f\u7528 -MemoryUsageMonitor.TOTAL=\u5408\u8a08 -OldDataMonitor.DisplayName=\u65e7\u30c7\u30fc\u30bf\u306e\u7ba1\u7406 +MemoryUsageMonitor.USED=使用 +MemoryUsageMonitor.TOTAL=åˆè¨ˆ +OldDataMonitor.DisplayName=旧データã®ç®¡ç† OldDataMonitor.Description=\ - \u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u6574\u7406\u3057\u3066\u3001\u53e4\u3044\u30d7\u30e9\u30b0\u30a4\u30f3\u3084\u524d\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4e0d\u8981\u306a\u60c5\u5831\u3092\u53d6\u308a\u9664\u304d\u307e\u3059\u3002 -HudsonHomeDiskUsageMonitor.DisplayName=\u30c7\u30a3\u30b9\u30af\u4f7f\u7528\u91cf\u30e2\u30cb\u30bf + 設定ファイルを整ç†ã—ã¦ã€å¤ã„プラグインやå‰ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ä¸è¦ãªæƒ…報をå–り除ãã¾ã™ã€‚ +HudsonHomeDiskUsageMonitor.DisplayName=ディスク使用é‡ãƒ¢ãƒ‹ã‚¿ diff --git a/core/src/main/resources/hudson/diagnosis/Messages_pl.properties b/core/src/main/resources/hudson/diagnosis/Messages_pl.properties index ef9b80b04ff6..e80143b533c4 100644 --- a/core/src/main/resources/hudson/diagnosis/Messages_pl.properties +++ b/core/src/main/resources/hudson/diagnosis/Messages_pl.properties @@ -19,7 +19,7 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -OldDataMonitor.DisplayName=Zarz\u0105dzanie starymi danymi -OldDataMonitor.Description=Usuwanie danych po nieu\u017Cywanych lub starszych wersjach wtyczek. -HudsonHomeDiskUsageMonitor.DisplayName=Monitoring zu\u017Cycia dysku -TooManyJobsButNoView.DisplayName=Zbyt wiele projekt\u00F3w jest nie przypisanych do widok\u00F3w +OldDataMonitor.DisplayName=ZarzÄ…dzanie starymi danymi +OldDataMonitor.Description=Usuwanie danych po nieużywanych lub starszych wersjach wtyczek. +HudsonHomeDiskUsageMonitor.DisplayName=Monitoring zużycia dysku +TooManyJobsButNoView.DisplayName=Zbyt wiele projektów jest nie przypisanych do widoków diff --git a/core/src/main/resources/hudson/diagnosis/Messages_pt_BR.properties b/core/src/main/resources/hudson/diagnosis/Messages_pt_BR.properties index 34300fd43638..01b6a4ed92e7 100644 --- a/core/src/main/resources/hudson/diagnosis/Messages_pt_BR.properties +++ b/core/src/main/resources/hudson/diagnosis/Messages_pt_BR.properties @@ -23,9 +23,9 @@ MemoryUsageMonitor.USED=Usada MemoryUsageMonitor.TOTAL=Total OldDataMonitor.DisplayName=Dados antigos -OldDataMonitor.Description=Vasculhar arquivos de configura\u00E7\u00E3o para eliminar remanescentes de extens\u00F5es antigas e de \ - vers\u00F5es anteriores. +OldDataMonitor.Description=Vasculhar arquivos de configuração para eliminar remanescentes de extensões antigas e de \ + versões anteriores. HudsonHomeDiskUsageMonitor.DisplayName=Monitor de uso de disco -ReverseProxySetupMonitor.DisplayName=Configura\u00E7\u00E3o de proxy reverso -TooManyJobsButNoView.DisplayName=Muitas tarefas n\u00E3o organizados nas vis\u00F5es -NullIdDescriptorMonitor.DisplayName=Identifica\u00E7\u00E3o do descritor ausente +ReverseProxySetupMonitor.DisplayName=Configuração de proxy reverso +TooManyJobsButNoView.DisplayName=Muitas tarefas não organizados nas visões +NullIdDescriptorMonitor.DisplayName=Identificação do descritor ausente diff --git a/core/src/main/resources/hudson/diagnosis/Messages_ru.properties b/core/src/main/resources/hudson/diagnosis/Messages_ru.properties index de440e214a55..0e8441d4e988 100644 --- a/core/src/main/resources/hudson/diagnosis/Messages_ru.properties +++ b/core/src/main/resources/hudson/diagnosis/Messages_ru.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -MemoryUsageMonitor.TOTAL=\u0412\u0441\u0435\u0433\u043E -OldDataMonitor.Description=\u041E\u0447\u0438\u0441\u0442\u043A\u0430 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 \u0434\u043B\u044F \u0443\u0434\u0430\u043B\u0435\u043D\u0438\u044F \u043E\u0441\u0442\u0430\u0442\u043A\u043E\u0432 \u0441\u0442\u0430\u0440\u044B\u0445 \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u0432 \u0438 \u0431\u043E\u043B\u0435\u0435 \u0440\u0430\u043D\u043D\u0438\u0445 \u0432\u0435\u0440\u0441\u0438\u0439. -OldDataMonitor.DisplayName=\u0423\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u0443\u0441\u0442\u0430\u0440\u0435\u0432\u0448\u0438\u043C\u0438 \u0434\u0430\u043D\u043D\u044B\u043C\u0438 -HudsonHomeDiskUsageMonitor.DisplayName=\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u043C\u043E\u0435 \u0434\u0438\u0441\u043A\u043E\u0432\u043E\u0435 \u043F\u0440\u043E\u0441\u0442\u0440\u0430\u043D\u0441\u0442\u0432\u043E -NullIdDescriptorMonitor.DisplayName=\u041E\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0438\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0442\u043E\u0440 \u0434\u0435\u0441\u043A\u0440\u0438\u043F\u0442\u043E\u0440\u0430 -ReverseProxySetupMonitor.DisplayName=\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 Reverse Proxy +MemoryUsageMonitor.TOTAL=Ð’Ñего +OldDataMonitor.Description=ОчиÑтка конфигурации Ð´Ð»Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð¾Ñтатков Ñтарых плагинов и более ранних верÑий. +OldDataMonitor.DisplayName=Управление уÑтаревшими данными +HudsonHomeDiskUsageMonitor.DisplayName=ИÑпользуемое диÑковое проÑтранÑтво +NullIdDescriptorMonitor.DisplayName=ОтÑутÑтвует идентификатор деÑкриптора +ReverseProxySetupMonitor.DisplayName=ÐаÑтройка Reverse Proxy diff --git a/core/src/main/resources/hudson/diagnosis/Messages_sr.properties b/core/src/main/resources/hudson/diagnosis/Messages_sr.properties index 671408b144f7..5fdb51c7593c 100644 --- a/core/src/main/resources/hudson/diagnosis/Messages_sr.properties +++ b/core/src/main/resources/hudson/diagnosis/Messages_sr.properties @@ -1,5 +1,5 @@ -# This file is under the MIT License by authorsMemoryUsageMonitor.USED=\u041A\u043E\u0440\u0438\u0441\u0442\u0438 +# This file is under the MIT License by authorsMemoryUsageMonitor.USED=КориÑти -MemoryUsageMonitor.TOTAL=\u0423\u043A\u0443\u043F\u043D\u043E -OldDataMonitor.Description=\u0418\u0437\u0431\u0440\u0438\u0448\u0438\u0442\u0435 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0434\u0430 \u0431\u0438\u0441\u0442\u0435 \u0443\u043A\u043B\u043E\u043D\u0438\u043B\u0438 \u0441\u0432\u0435 \u043E\u0441\u0442\u0430\u0442\u043A\u0435 \u043E\u0434 \u0441\u0442\u0430\u0440\u0438\u0445 \u043C\u043E\u0434\u0443\u043B\u0430 \u0438 \u0432\u0435\u0440\u0437\u0438\u0458\u0430. -OldDataMonitor.DisplayName=\u0423\u0440\u0435\u0434\u0438 \u0441\u0442\u0430\u0440\u0435 \u043F\u043E\u0434\u0430\u0442\u043A\u0435 +MemoryUsageMonitor.TOTAL=Укупно +OldDataMonitor.Description=Избришите подешавања да биÑте уклонили Ñве оÑтатке од Ñтарих модула и верзија. +OldDataMonitor.DisplayName=Уреди Ñтаре податке diff --git a/core/src/main/resources/hudson/diagnosis/Messages_zh_TW.properties b/core/src/main/resources/hudson/diagnosis/Messages_zh_TW.properties index cf22c260cbec..d2e4c8d95eba 100644 --- a/core/src/main/resources/hudson/diagnosis/Messages_zh_TW.properties +++ b/core/src/main/resources/hudson/diagnosis/Messages_zh_TW.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -MemoryUsageMonitor.USED=\u4f7f\u7528 -MemoryUsageMonitor.TOTAL=\u7e3d\u8a08 -OldDataMonitor.DisplayName=\u820a\u7248\u8cc7\u6599 -OldDataMonitor.Description=\u6e05\u4e7e\u6de8\u820a\u7248\u5916\u639b\u7a0b\u5f0f\u6216\u662f Jenkins \u907a\u7559\u4e0b\u4f86\u7684\u8a2d\u5b9a\u3002 +MemoryUsageMonitor.USED=使用 +MemoryUsageMonitor.TOTAL=總計 +OldDataMonitor.DisplayName=舊版資料 +OldDataMonitor.Description=清乾淨舊版外掛程å¼æˆ–是 Jenkins éºç•™ä¸‹ä¾†çš„設定。 diff --git a/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/description_pt_BR.properties b/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/description_pt_BR.properties index 204874424d76..9fb8a37c69d8 100644 --- a/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/description_pt_BR.properties +++ b/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/description_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Informa administradores sobre o problema com extens\u00F5es em alguns plug\u00E1veis legados. +blurb=Informa administradores sobre o problema com extensões em alguns plugáveis legados. diff --git a/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_bg.properties b/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_bg.properties index 82eaa1e162ff..844495ed0c3f 100644 --- a/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_bg.properties +++ b/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_bg.properties @@ -23,9 +23,9 @@ # The following extensions have no ID value and therefore likely cause a problem. Please upgrade these plugins if they are not the latest, \ # and if they are the latest, please file a bug so that we can fix them. blurb=\ - \u0421\u043b\u0435\u0434\u043d\u0438\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438 \u0441\u0430 \u0431\u0435\u0437 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 (ID), \u043a\u043e\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0434\u043e\u0432\u0435\u0434\u0435 \u0434\u043e \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0438.\ - \u041e\u0431\u043d\u043e\u0432\u0435\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438\u0442\u0435 \u043a\u044a\u043c \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0430\u0442\u0430 \u0438\u043c \u0432\u0435\u0440\u0441\u0438\u044f. \u0410\u043a\u043e \u0432\u0435\u0447\u0435 \u0441\u0430 \u043e\u0431\u043d\u043e\u0432\u0435\u043d\u0438, \u043c\u043e\u043b\u0438\u043c \u0434\u0430\ - \u043f\u043e\u0434\u0430\u0434\u0435\u0442\u0435 \u0434\u043e\u043a\u043b\u0430\u0434 \u0437\u0430 \u0433\u0440\u0435\u0448\u043a\u0430, \u0437\u0430 \u0434\u0430 \u043a\u043e\u0440\u0438\u0433\u0438\u0440\u0430\u043c\u0435 \u0442\u043e\u0432\u0430. + Следните приÑтавки Ñа без идентификатор (ID), което може да доведе до проблеми.\ + Обновете приÑтавките към поÑледната им верÑиÑ. Ðко вече Ñа обновени, молим да\ + подадете доклад за грешка, за да коригираме това. # Descriptor {0} from plugin {2} with display name {1} problem=\ - \u0414\u0435\u0441\u043a\u0440\u0438\u043f\u0442\u043e\u0440 {0} \u043e\u0442 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430\u0442\u0430 {2} \u0441 \u0438\u043c\u0435 {1} + ДеÑкриптор {0} от приÑтавката {2} Ñ Ð¸Ð¼Ðµ {1} diff --git a/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_de.properties b/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_de.properties index a9069d83ddec..9b05c5bca7dd 100644 --- a/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_de.properties +++ b/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_de.properties @@ -23,6 +23,6 @@ blurb=Die folgenden Erweiterungen haben keine ID und verursachen deshalb vermutlich Probleme. \ Aktualisieren Sie diese Plugins auf die neueste Version. \ Falls sie schon die aktuelle Version einsetzen, erstellen Sie bitte einen Fehlerbericht, \ - damit wir das Problem beheben k\u00F6nnen. + damit wir das Problem beheben können. problem=Descriptor {0} von Plugin {2} mit Anzeigename {1} diff --git a/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_es.properties b/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_es.properties index 6a5ad678a6cd..457c6a604bad 100644 --- a/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_es.properties +++ b/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_es.properties @@ -22,4 +22,4 @@ problem=Descriptor: {0} del plugin {2} con nombre {1} blurb=Las siguientes extensiones no tienen un valor the ID y por tanto son la causa de un problema.\ - Por favor, actualice estos plugins si no son la última versión, si ya están actualizados, abra un ticket para que podamos arreglarlo. + Por favor, actualice estos plugins si no son la última versión, si ya están actualizados, abra un ticket para que podamos arreglarlo. diff --git a/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_it.properties b/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_it.properties index c987d6ae1f9f..27e1152befa4 100644 --- a/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_it.properties +++ b/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_ja.properties b/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_ja.properties index 99f3138e6524..e6c6867051b6 100644 --- a/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_ja.properties +++ b/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_ja.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. blurb=\ - \u6b21\u306e\u30d7\u30e9\u30b0\u30a4\u30f3\u306f\u3001ID\u3092\u6301\u3063\u3066\u3044\u306a\u3044\u306e\u3067\u554f\u984c\u3092\u8d77\u3053\u3059\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u6700\u65b0\u306e\u7269\u306b\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3057\u3066\u304f\u3060\u3055\u3044\u3002\ - \u6700\u65b0\u306e\u7269\u3067\u3042\u308c\u3070\u3001\u4fee\u6b63\u3067\u304d\u308b\u3088\u3046\u306bJIRA\u306b\u30d0\u30b0\u3068\u3057\u3066\u767b\u9332\u3057\u3066\u304f\u3060\u3055\u3044\u3002 -problem=\u30d7\u30e9\u30b0\u30a4\u30f3 {2} \u306e\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf {0} (\u8868\u793a\u540d {1}) + 次ã®ãƒ—ラグインã¯ã€IDã‚’æŒã£ã¦ã„ãªã„ã®ã§å•é¡Œã‚’èµ·ã“ã™å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚プラグインを最新ã®ç‰©ã«ã‚¢ãƒƒãƒ—グレードã—ã¦ãã ã•ã„。\ + 最新ã®ç‰©ã§ã‚ã‚Œã°ã€ä¿®æ­£ã§ãるよã†ã«JIRAã«ãƒã‚°ã¨ã—ã¦ç™»éŒ²ã—ã¦ãã ã•ã„。 +problem=プラグイン {2} ã®ãƒ‡ã‚£ã‚¹ã‚¯ãƒªãƒ—ã‚¿ {0} (表示å {1}) diff --git a/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_pt_BR.properties b/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_pt_BR.properties index 9b1ef0db56dc..fd98e008547a 100644 --- a/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_pt_BR.properties +++ b/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_pt_BR.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. # Descriptor {0} from plugin {2} with display name {1} -problem=Descritor {0} para o plugin {2} com nome de exibi\u00e7\u00e3o {1} +problem=Descritor {0} para o plugin {2} com nome de exibição {1} # The following extensions have no ID value and therefore likely cause a problem. Please upgrade these plugins if they are not the latest, \ # and if they are the latest, please file a bug so that we can fix them. -blurb=As seguintes extens\u00f5es n\u00e3o possuem ID e, portanto, podem causar problemas. Por favor atualize estes plugins caso n\u00e3o sejam a vers\u00e3o mais nova, \ - e caso seja, por favor abra um bug para que possamos corrig\u00ed-lo. +blurb=As seguintes extensões não possuem ID e, portanto, podem causar problemas. Por favor atualize estes plugins caso não sejam a versão mais nova, \ + e caso seja, por favor abra um bug para que possamos corrigí-lo. diff --git a/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_sr.properties b/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_sr.properties index 352d8fc5cf00..7bba38bb1a84 100644 --- a/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_sr.properties +++ b/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -blurb=\u0421\u043B\u0435\u0434\u0435\u045B\u0438 \u0434\u043E\u0434\u0430\u0446\u0438 \u043D\u0435\u043C\u0430\u0458\u0443 \u0418\u0414 \u0438 \u0442\u0430\u043A\u043E, \u0432\u0435\u0440\u043E\u0432\u0430\u0442\u043D\u043E, \u0443\u0437\u0440\u043E\u043A \u043D\u0435\u043A\u043E\u0433 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0430. \u041C\u043E\u043B\u0438\u043C\u043E \u0432\u0430\u0441, \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u0458\u0442\u0435 \u043E\u0432\u0435 \u043C\u043E\u0434\u0443\u043B\u0435 \u0430\u043A\u043E \u043D\u0438\u0441\u0443 \u043F\u043E\u0441\u043B\u0435\u0434\u045A\u0435 \u0432\u0435\u0440\u0437\u0438\u0458\u0435. \u0410\u043A\u043E \u0432\u0435\u045B \u0458\u0435\u0441\u0443 \u043F\u043E\u0441\u043B\u0435\u0434\u045A\u0435, \u0434\u0430\u0458\u0442\u0435 \u0438\u0437\u0432\u0435\u0448\u0442\u0430\u0458 \u043E \u0433\u0440\u0435\u0448\u043A\u0430\u043C\u0430 \u0434\u0430 \u043C\u043E\u0436\u0435\u043C\u043E \u0434\u0430 \u0438\u0445 \u0438\u0441\u043F\u0440\u0430\u0432\u0438\u043C\u043E. -problem=\u0414\u0435\u0441\u043A\u0440\u0438\u043F\u0442\u043E\u0440 {0} \u0438\u0437 \u043C\u043E\u0434\u0443\u043B\u0435 {2} \u0441\u0430 \u0438\u043C\u0435\u043D\u043E\u043C {1} +blurb=Следећи додаци немају ИД и тако, вероватно, узрок неког проблема. Молимо ваÑ, ажурирајте ове модуле ако ниÑу поÑледње верзије. Ðко већ јеÑу поÑледње, дајте извештај о грешкама да можемо да их иÑправимо. +problem=ДеÑкриптор {0} из модуле {2} Ñа именом {1} diff --git a/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_zh_TW.properties b/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_zh_TW.properties index ee495b8a9ef1..9cb8bbcca006 100644 --- a/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_zh_TW.properties +++ b/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_zh_TW.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. blurb=\ - \u4e0b\u5217\u5916\u639b\u7a0b\u5f0f\u6c92\u6709 ID \u503c\uff0c\u5f88\u53ef\u80fd\u6703\u9020\u6210\u554f\u984c\u3002\ - \u8acb\u76e1\u53ef\u80fd\u5347\u7d1a\u7248\u672c; \u5982\u679c\u5df2\u7d93\u5347\u5230\u6700\u65b0\u7248\u4e86\uff0c\u8acb\u56de\u5831 bug \u8b93\u6211\u5011\u80fd\u5728\u6700\u5feb\u7684\u6642\u9593\u4fee\u597d\u5b83\u5011\u3002 -problem=\u5916\u639b\u7a0b\u5f0f {2} (\u986f\u793a\u540d\u7a31 {1}) \u7684 Descriptor {0} + 下列外掛程å¼æ²’有 ID 值,很å¯èƒ½æœƒé€ æˆå•é¡Œã€‚\ + 請盡å¯èƒ½å‡ç´šç‰ˆæœ¬; 如果已經å‡åˆ°æœ€æ–°ç‰ˆäº†ï¼Œè«‹å›žå ± bug 讓我們能在最快的時間修好它們。 +problem=å¤–æŽ›ç¨‹å¼ {2} (顯示å稱 {1}) çš„ Descriptor {0} diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/description_pt_BR.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/description_pt_BR.properties index 0d74a75ed48c..b23fb228e014 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/description_pt_BR.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/description_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Quando os arquivos de configura\u00E7\u00E3o contem dados n\u00E3o carregados, isto informa os administradores sobre o problema. \ -Um motivo comum \u00E9 extens\u00F5es terem tido suas vers\u00F5es rebaixadas ou promovido altera\u00E7\u00F5es que forma incompat\u00EDvel. +blurb=Quando os arquivos de configuração contem dados não carregados, isto informa os administradores sobre o problema. \ +Um motivo comum é extensões terem tido suas versões rebaixadas ou promovido alterações que forma incompatível. diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage.jelly b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage.jelly index 276ecde22964..a98dabaff982 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage.jelly +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage.jelly @@ -30,39 +30,43 @@ THE SOFTWARE.

    ${%Manage Old Data}

    ${%blurb.1}

    ${%blurb.2}

    - - - - - - - - - - - - - - - - - - - - - - - - +
    ${%Type}${%Name}${%Version}${%Error}
    ${obj.class.name}${obj.fullName?:obj.fullDisplayName?:obj.displayName?:obj.name} - - - ${item.value} - - - ${item.value} - - - ${item.value.extra}
    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ${%Type}${%Name}${%Version}${%Error}
    ${obj.class.name}${obj.fullName?:obj.fullDisplayName?:obj.displayName?:obj.name} + + + ${item.value} + + + ${item.value} + + + ${item.value.extra}
    @@ -90,22 +94,26 @@ THE SOFTWARE.

    ${%Unreadable Data}

    ${%blurb.6}

    - - +
    + + - - - - - - - - - - - + + + + + + + + + + + + + +
    ${%Type} ${%Name} ${%Error}
    ${obj.class.name}${obj.fullName?:obj.fullDisplayName?:obj.displayName?:obj.name}${item.value.extra}
    ${obj.class.name}${obj.fullName?:obj.fullDisplayName?:obj.displayName?:obj.name}${item.value.extra}

    diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_bg.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_bg.properties index d2d172a03685..aeb3bebdcdd3 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_bg.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_bg.properties @@ -21,30 +21,30 @@ # THE SOFTWARE. Name=\ - \u0418\u043c\u0435 + Име # \ # Eventually the code supporting these data migrations may be removed. Compatibility will be \ # retained for at least 150 releases since the structure change. Versions older than this are \ # in bold above, and it is recommended to resave these files. Upgrade=\ - \u041e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 + ОбновÑване Manage\ Old\ Data=\ - \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u0441\u0442\u0430\u0440\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u0438 + Управление на Ñтарите данни Discard\ Unreadable\ Data=\ - \u041e\u0442\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u043d\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u043f\u0440\u043e\u0447\u0435\u0442\u0430\u0442 + ОтхвърлÑне на данните, които не могат да Ñе прочетат Unreadable\ Data=\ - \u0414\u0430\u043d\u043d\u0438, \u043a\u043e\u0438\u0442\u043e \u043d\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u043f\u0440\u043e\u0447\u0435\u0442\u0430\u0442 + Данни, които не могат да Ñе прочетат No\ old\ data\ was\ found.=\ - \u041d\u0435 \u0441\u0430 \u043e\u0442\u043a\u0440\u0438\u0442\u0438 \u0441\u0442\u0430\u0440\u0438 \u0434\u0430\u043d\u043d\u0438. + Ðе Ñа открити Ñтари данни. Version=\ - \u0412\u0435\u0440\u0441\u0438\u044f + ВерÑÐ¸Ñ Resave\ data\ files\ with\ structure\ changes\ no\ newer\ than\ Jenkins=\ - \u041f\u0440\u0435\u0437\u0430\u043f\u0438\u0441\u0432\u0430\u043d\u0435 \u043d\u0430 \u0444\u0430\u0439\u043b\u043e\u0432\u0435\u0442\u0435 \u0441 \u043f\u0440\u043e\u043c\u0435\u043d\u0438 \u043f\u043e \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430\u0442\u0430 \u043d\u0435 \u043f\u043e \u043d\u043e\u0432\u0438, \u043e\u0442 \u0442\u0435\u043a\u0443\u0449\u0430\u0442\u0430\ - \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430 Jenkins. + ПрезапиÑване на файловете Ñ Ð¿Ñ€Ð¾Ð¼ÐµÐ½Ð¸ по Ñтруктурата не по нови, от текущата\ + верÑÐ¸Ñ Ð½Ð° Jenkins. Error=\ - \u0413\u0440\u0435\u0448\u043a\u0430 + Грешка Type=\ - \u0412\u0438\u0434 + Вид # \ # Sometimes errors occur while reading data (if a plugin adds some data and that plugin is \ # later disabled, if migration code is not written for structure changes, or if Jenkins is \ @@ -52,8 +52,8 @@ Type=\ # These errors are logged, but the unreadable data is then skipped over, allowing Jenkins to \ # startup and function properly. blurb.2=\ - \u0412 \u043d\u044f\u043a\u043e\u0438 \u0441\u043b\u0443\u0447\u0430\u0438 \u0432\u044a\u0437\u043d\u0438\u043a\u0432\u0430\u0442 \u0433\u0440\u0435\u0448\u043a\u0438 \u043f\u0440\u0438 \u0447\u0435\u0442\u0435\u043d\u0435\u0442\u043e \u043d\u0430 \u0434\u0430\u043d\u043d\u0438\u0442\u0435 (\u043d\u0430\u043f\u0440. \u0430\u043a\u043e \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430\ - \u0434\u043e\u0431\u0430\u0432\u0438 \u0434\u0430\u043d\u043d\u0438, \u043d\u043e \u0441\u043b\u0435\u0434 \u0442\u043e\u0432\u0430 \u0431\u0438\u0432\u0430 \u0438\u0437\u043a\u043b\u044e\u0447\u0435\u043d\u0430, \u0430\u043a\u043e \u043e\u0449\u0435 \u043d\u0435 \u0435 \u043d\u0430\u043f\u0438\u0441\u0430\u043d \u043a\u043e\u0434 \u0437\u0430\ - \u043c\u0438\u0433\u0440\u0430\u0446\u0438\u044f \u0438\u043b\u0438 \u0430\u043a\u043e Jenkins \u0431\u0438\u0432\u0430 \u0441\u043c\u0435\u043d\u0435\u043d \u0441 \u043f\u043e-\u0441\u0442\u0430\u0440\u0430 \u0432\u0435\u0440\u0441\u0438\u044f, \u043d\u043e \u043d\u043e\u0432\u0430\u0442\u0430 \u0432\u0435\u0447\u0435 \u0435\ - \u0437\u0430\u043f\u0438\u0441\u0430\u043b\u0430 \u0434\u0430\u043d\u043d\u0438). \u0422\u0435\u0437\u0438 \u0433\u0440\u0435\u0448\u043a\u0438 \u0441\u0435 \u0432\u043f\u0438\u0441\u0432\u0430\u0442 \u0432 \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0442\u0435, \u043d\u043e \u0434\u0430\u043d\u043d\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u043d\u0435\ - \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u043f\u0440\u043e\u0447\u0435\u0442\u0430\u0442, \u0441\u0435 \u043f\u0440\u0435\u0441\u043a\u0430\u0447\u0430\u0442, \u0437\u0430 \u0434\u0430 \u043c\u043e\u0436\u0435 Jenkins \u0434\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430 \u043d\u043e\u0440\u043c\u0430\u043b\u043d\u043e. + Ð’ нÑкои Ñлучаи възникват грешки при четенето на данните (напр. ако приÑтавка\ + добави данни, но Ñлед това бива изключена, ако още не е напиÑан код за\ + Ð¼Ð¸Ð³Ñ€Ð°Ñ†Ð¸Ñ Ð¸Ð»Ð¸ ако Jenkins бива Ñменен Ñ Ð¿Ð¾-Ñтара верÑиÑ, но новата вече е\ + запиÑала данни). Тези грешки Ñе впиÑват в журналите, но данните, които не\ + могат да Ñе прочетат, Ñе преÑкачат, за да може Jenkins да Ñтартира нормално. diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_da.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_da.properties index cc8e7307afc0..a8e7df246693 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_da.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_da.properties @@ -21,18 +21,18 @@ # THE SOFTWARE. blurb.2=\ -Sommetider opst\u00e5r der fejl under l\u00e6sning af data (hvis en plugin tilf\u00f8jer data og selv samme \ -plugin senere bliver sl\u00e5et fra, hvis migrerings/opdaterings kode ikke er skrevet til struktur\u00e6ndringer, \ -eller hvis Jenkins bliver nedgraderet efter der allerede er skrevet data der ikke kan l\u00e6ses af den \u00e6ldre version. \ -Disse fejl bliver logget, men ul\u00e6selig data bliver blot sprunget over, hvilket tillader Jenkins at starte op \ -og k\u00f8re videre (omend uden adgang til ul\u00e6selig data)). +Sommetider opstÃ¥r der fejl under læsning af data (hvis en plugin tilføjer data og selv samme \ +plugin senere bliver slÃ¥et fra, hvis migrerings/opdaterings kode ikke er skrevet til strukturændringer, \ +eller hvis Jenkins bliver nedgraderet efter der allerede er skrevet data der ikke kan læses af den ældre version. \ +Disse fejl bliver logget, men ulæselig data bliver blot sprunget over, hvilket tillader Jenkins at starte op \ +og køre videre (omend uden adgang til ulæselig data)). Error=Fejl Type=Type -Unreadable\ Data=Ul\u00e6selig data -Resave\ data\ files\ with\ structure\ changes\ no\ newer\ than\ Jenkins=Gem datafilerne med strukturelle \u00e6ndringer ikke nyere end Jenkins +Unreadable\ Data=Ulæselig data +Resave\ data\ files\ with\ structure\ changes\ no\ newer\ than\ Jenkins=Gem datafilerne med strukturelle ændringer ikke nyere end Jenkins No\ old\ data\ was\ found.=Ingen gamle data blev fundet -Discard\ Unreadable\ Data=Smid ul\u00e6selig data v\u00e6k. +Discard\ Unreadable\ Data=Smid ulæselig data væk. Version=Version Upgrade=Opdater Name=Navn -Manage\ Old\ Data=H\u00e5ndter Gamle Data +Manage\ Old\ Data=HÃ¥ndter Gamle Data diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_de.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_de.properties index 75c3c6c776ce..1bb6f6080499 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_de.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_de.properties @@ -25,16 +25,16 @@ Manage\ Old\ Data=Veraltete Daten verwalten Name=Name No\ old\ data\ was\ found.=Keine veralteten Daten gefunden. Resave\ data\ files\ with\ structure\ changes\ no\ newer\ than\ Jenkins=\ - Aktualisiere Dateien mit Strukturänderungen nicht aktueller als Jenkins + Aktualisiere Dateien mit Strukturänderungen nicht aktueller als Jenkins Type=Typ Unreadable\ Data=Nicht lesbare Daten Discard\ Unreadable\ Data=Nicht lesbare Daten entfernen Upgrade=Aktualisieren Version=Version blurb.2=\ - Beim Einlesen von Konfigurationsdateien können Fehler auftreten, z.B. wenn ein Plugin \ - Daten hinzufügt und später deaktiviert wird, wenn kein Migrationscode für Strukturänderungen \ - geschrieben wurde oder Jenkins auf eine ältere Version zurückgesetzt wird, nachdem die neuere \ + Beim Einlesen von Konfigurationsdateien können Fehler auftreten, z.B. wenn ein Plugin \ + Daten hinzufügt und später deaktiviert wird, wenn kein Migrationscode für Strukturänderungen \ + geschrieben wurde oder Jenkins auf eine ältere Version zurückgesetzt wird, nachdem die neuere \ Version bereits Dateien mit einer neuen Struktur geschrieben hatte. Diese Fehler werden beim \ Hochfahren von Jenkins zwar protokolliert, die nicht-lesbaren Daten werden aber einfach \ - übersprungen, damit Jenkins trotzdem starten und arbeiten kann. + übersprungen, damit Jenkins trotzdem starten und arbeiten kann. diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_es.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_es.properties index 27a05769dbe2..e5a47372fb75 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_es.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_es.properties @@ -21,18 +21,18 @@ # THE SOFTWARE. blurb.2=\ - Algunas veces se producen errores mientras se leen datos, por ejemplo cuando un plugin añade \ - datos y después se desactiva, o cuando no hay código que actualice los datos cuando cambia la \ - estructura, o cuando Jenkins es degradado a una versión anterior. \ + Algunas veces se producen errores mientras se leen datos, por ejemplo cuando un plugin añade \ + datos y después se desactiva, o cuando no hay código que actualice los datos cuando cambia la \ + estructura, o cuando Jenkins es degradado a una versión anterior. \ Jenkins avisa de todos estos errores y no carga los datos, lo que le permite arrancar y \ funcionar adecuadamente. -Manage\ Old\ Data=Gestión de datos antiguos +Manage\ Old\ Data=Gestión de datos antiguos Type=Tipo Name=Nombre -Version=Versión +Version=Versión Error=Error No\ old\ data\ was\ found.=No hay datos antiguos Discard\ Unreadable\ Data=Deshechar datos ilegibles Unreadable\ Data=Datos ilegibles -Resave\ data\ files\ with\ structure\ changes\ no\ newer\ than\ Jenkins=Salvar datos con una estructura menos moderna que la versión: +Resave\ data\ files\ with\ structure\ changes\ no\ newer\ than\ Jenkins=Salvar datos con una estructura menos moderna que la versión: Upgrade=Actualizar diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_fi.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_fi.properties index 5c17587bf1dd..075a1ee47e9a 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_fi.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_fi.properties @@ -22,7 +22,7 @@ Manage\ Old\ Data=Hallitse vanhoja tietoja Name=Nimi -No\ old\ data\ was\ found.=Vanhassa muodossa talletettua tietoa ei l\u00F6ytynyt. +No\ old\ data\ was\ found.=Vanhassa muodossa talletettua tietoa ei löytynyt. Type=Tyyppi Version=Versio -blurb.2=Joskus tietoja luettaessa tapahtuu virheit\u00E4 (esim. jos joku laajennus on lis\u00E4nyt tietoja ja t\u00E4m\u00E4 laajennus on my\u00F6hemmin k\u00E4\u00E4nnetty pois p\u00E4\u00E4lt\u00E4 tai Jenkins on vaihdettu vanhempaan versioon sen j\u00E4lkeen kun se on kirjoittanut tietoja levylle muotoon, jota vanhempi versio ei osaa viel\u00E4 lukea. Jotta Jenkins silti k\u00E4ynnistyisi ja toimisi kunnolla, n\u00E4m\u00E4 virheet kirjoitetaan lokiiin ja sitten hyp\u00E4t\u00E4\u00E4n niiden tietojen yli, joita ei pystyt\u00E4 lukemaan. +blurb.2=Joskus tietoja luettaessa tapahtuu virheitä (esim. jos joku laajennus on lisänyt tietoja ja tämä laajennus on myöhemmin käännetty pois päältä tai Jenkins on vaihdettu vanhempaan versioon sen jälkeen kun se on kirjoittanut tietoja levylle muotoon, jota vanhempi versio ei osaa vielä lukea. Jotta Jenkins silti käynnistyisi ja toimisi kunnolla, nämä virheet kirjoitetaan lokiiin ja sitten hypätään niiden tietojen yli, joita ei pystytä lukemaan. diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_fr.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_fr.properties index 8a48f021417a..6c9641cef51a 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_fr.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_fr.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Discard\ Unreadable\ Data=Supprimer les donn\u00E9es illisibles +Discard\ Unreadable\ Data=Supprimer les données illisibles Error=Erreur -Manage\ Old\ Data=G\u00E9rer les donn\u00E9es d''ancien format +Manage\ Old\ Data=Gérer les données d''ancien format Name=Nom -No\ old\ data\ was\ found.=Aucune ancienne donn\u00E9e trouv\u00E9e. +No\ old\ data\ was\ found.=Aucune ancienne donnée trouvée. Type=Type -Unreadable\ Data=Donn\u00E9es illisibles -Upgrade=Mettre \u00E0 jour +Unreadable\ Data=Données illisibles +Upgrade=Mettre à jour Version=Version -blurb.2=Quelques fois, des erreurs surviennent \u00E0 lecture des donn\u00E9es (si un plugin ajoute des donn\u00E9es et qu''il est ensuite d\u00E9sactiv\u00E9, si le code de traduction des donn\u00E9es n''est pas \u00E9crit, ou si Jenkins est r\u00E9trograd\u00E9 apr\u00E8s qu''il ait \u00E9crit des donn\u00E9es non lisibles par l''ancienne version). Ces erreurs sont trac\u00E9es, mais les donn\u00E9es illisibles ne sont pas prises en compte, permettant le d\u00E9marrage et le fonctionnement normal de Jenkins. +blurb.2=Quelques fois, des erreurs surviennent à lecture des données (si un plugin ajoute des données et qu''il est ensuite désactivé, si le code de traduction des données n''est pas écrit, ou si Jenkins est rétrogradé après qu''il ait écrit des données non lisibles par l''ancienne version). Ces erreurs sont tracées, mais les données illisibles ne sont pas prises en compte, permettant le démarrage et le fonctionnement normal de Jenkins. diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_it.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_it.properties index ecf55f4c37b7..1143064187f2 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_it.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -24,41 +24,41 @@ blurb.1=Quando vi sono delle modifiche al formato con cui i dati sono salvati \ su disco, Jenkins utilizza la seguente strategia: i dati vengono migrati \ alla nuova struttura quando sono caricati, ma gli elementi/i record non \ - sono salvati nuovamente nel nuovo formato. Ciò consente il downgrade di \ - Jenkins se necessario. Tuttavia, questa strategia può anche lasciare \ + sono salvati nuovamente nel nuovo formato. Ciò consente il downgrade di \ + Jenkins se necessario. Tuttavia, questa strategia può anche lasciare \ indefinitamente dei dati su disco nel vecchio formato. La tabella \ sottostante elenca gli elementi/i record contenenti tali dati e la/le \ - versioni di Jenkins in cui è stata modificata la struttura dati. + versioni di Jenkins in cui è stata modificata la struttura dati. blurb.2=A volte si verificano degli errori durante la lettura dei dati (se un \ componente aggiuntivo aggiunge dei dati e quel componente aggiuntivo viene \ - disabilitato in un secondo momento, se non è stato scritto del codice per \ + disabilitato in un secondo momento, se non è stato scritto del codice per \ gestire le migrazioni fra strutture dati, o se viene effettuato il \ - downgrade di Jenkins dopo che questo ha già scritto dei dati non leggibili \ + downgrade di Jenkins dopo che questo ha già scritto dei dati non leggibili \ dalla vecchia versione). Questi errori vengono registrati, ma i dati \ illeggibili vengono ignorati, consentendo a Jenkins di avviarsi e \ funzionare regolarmente. -blurb.3=Il modulo sottostante può essere utilizzato per aggiornare questi \ - elementi/record al formato corrente. Eseguire tale operazione implicherà il \ +blurb.3=Il modulo sottostante può essere utilizzato per aggiornare questi \ + elementi/record al formato corrente. Eseguire tale operazione implicherà il \ fatto che, se si esegue un downgrade di Jenkins o del componente \ aggiuntiva a una versione minore di quella selezionata, questi non saranno \ in grado di leggere i dati salvati nel nuovo formato. Si noti che il \ semplice utilizzo di Jenkins per creare e configurare processi ed eseguire \ - compilazioni può salvare dati che potrebbero non essere leggibili da \ + compilazioni può salvare dati che potrebbero non essere leggibili da \ vecchie versioni di Jenkins o dei componenti aggiuntivi, anche qualora \ questo modulo non venga utilizzato. Inoltre si noti che, se nella parte \ destra della tabella soprastante vengono riportati errori relativi a dati \ - illeggibili, tali dati andranno perduti quando l''elemento sarà salvato \ + illeggibili, tali dati andranno perduti quando l''elemento sarà salvato \ nuovamente. blurb.4=Al termine, il codice che consente tali migrazioni dei dati potrebbe \ - essere rimosso. La compatibilità sarà mantenuta per almeno 150 release di \ + essere rimosso. La compatibilità sarà mantenuta per almeno 150 release di \ Jenkins dopo le modifiche strutturali. Le versioni meno recenti di questa \ - sono elencate sopra in grassetto, ed è consigliato salvare nuovamente tali \ + sono elencate sopra in grassetto, ed è consigliato salvare nuovamente tali \ elementi/record. blurb.5=(il downgrade fino alla versione selezionata potrebbe essere ancora \ possibile) -blurb.6=È accettabile lasciare dati illeggibili in tali elementi/record \ - perché Jenkins semplicemente li ignorerà. Per evitare la comparsa di \ - messaggi di log all''avvio di Jenkins è possibile eliminare permanentemente \ +blurb.6=È accettabile lasciare dati illeggibili in tali elementi/record \ + perché Jenkins semplicemente li ignorerà. Per evitare la comparsa di \ + messaggi di log all''avvio di Jenkins è possibile eliminare permanentemente \ i dati illeggibili salvando nuovamente questi elementi/record utilizzando \ il pulsante sotto l''elenco. Discard\ Unreadable\ Data=Scarta dati illeggibili @@ -68,7 +68,7 @@ Name=Nome No\ old\ data\ was\ found.=Nessun dato vecchio trovato. Old\ Data\ Format=Formato dati vecchi Resave\ data\ files\ with\ structure\ changes\ no\ newer\ than\ Jenkins=Salva \ - nuovamente i file dati con modifiche strutturali non più recenti di Jenkins + nuovamente i file dati con modifiche strutturali non più recenti di Jenkins Type=Tipo Unreadable\ Data=Dati illeggibili Upgrade=Aggiorna diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_ja.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_ja.properties index 1d8dedfcce00..487704807f1d 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_ja.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_ja.properties @@ -21,17 +21,17 @@ # THE SOFTWARE. blurb.2=\ - \u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3059\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059\ - (\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u3042\u308b\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3057\u305f\u5f8c\u306b\u305d\u306e\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u7121\u52b9\u306b\u306a\u3063\u305f\u3001\u5f62\u5f0f\u5909\u66f4\u306b\u5bfe\u5fdc\u3059\u308b\u51e6\u7406\u304c\u5b9f\u88c5\u3055\u308c\u3066\u3044\u306a\u3044\u3001\ - \u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u8aad\u3081\u306a\u3044\u30c7\u30fc\u30bf\u3092\u3059\u3067\u306b\u66f8\u304d\u8fbc\u3093\u3060\u5f8c\u306bJenkins\u3092\u30c0\u30a6\u30f3\u30b0\u30ec\u30fc\u30c9\u3057\u305f\u306a\u3069)\u3002\ - Jenkins\u304c\u8d77\u52d5\u3057\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308b\u3088\u3046\u306b\u3001\u3053\u308c\u3089\u306e\u30a8\u30e9\u30fc\u3092\u30ed\u30b0\u306b\u51fa\u529b\u3057\u3001\u8aad\u3081\u306a\u3044\u30c7\u30fc\u30bf\u3092\u30b9\u30ad\u30c3\u30d7\u3057\u307e\u3059\u3002 -Manage\ Old\ Data=\u65e7\u30c7\u30fc\u30bf\u306e\u7ba1\u7406 -Type=\u578b -Name=\u540d\u524d -Version=\u30d0\u30fc\u30b8\u30e7\u30f3 -Upgrade=\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9 -Error=\u30a8\u30e9\u30fc -No\ old\ data\ was\ found.=\u65e7\u30c7\u30fc\u30bf\u306f\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002 -Discard\ Unreadable\ Data=\u8aad\u3081\u306a\u3044\u30c7\u30fc\u30bf\u3092\u7121\u8996 -Unreadable\ Data=\u8aad\u3081\u306a\u3044\u30c7\u30fc\u30bf + データロード中ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã™ã‚‹ã“ã¨ãŒã‚ã‚Šã¾ã™\ + (プラグインãŒã‚るデータを追加ã—ãŸå¾Œã«ãã®ãƒ—ラグインãŒç„¡åŠ¹ã«ãªã£ãŸã€å½¢å¼å¤‰æ›´ã«å¯¾å¿œã™ã‚‹å‡¦ç†ãŒå®Ÿè£…ã•ã‚Œã¦ã„ãªã„ã€\ + æ—§ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒèª­ã‚ãªã„データをã™ã§ã«æ›¸ã込んã å¾Œã«Jenkinsをダウングレードã—ãŸãªã©)。\ + JenkinsãŒèµ·å‹•ã—正常ã«å‹•ä½œã™ã‚‹ã‚ˆã†ã«ã€ã“れらã®ã‚¨ãƒ©ãƒ¼ã‚’ログã«å‡ºåŠ›ã—ã€èª­ã‚ãªã„データをスキップã—ã¾ã™ã€‚ +Manage\ Old\ Data=旧データã®ç®¡ç† +Type=åž‹ +Name=åå‰ +Version=ãƒãƒ¼ã‚¸ãƒ§ãƒ³ +Upgrade=アップグレード +Error=エラー +No\ old\ data\ was\ found.=旧データã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚ +Discard\ Unreadable\ Data=読ã‚ãªã„データを無視 +Unreadable\ Data=読ã‚ãªã„データ Resave\ data\ files\ with\ structure\ changes\ no\ newer\ than\ Jenkins= diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_lv.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_lv.properties index 22fdeca80759..b24249b0f4fb 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_lv.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_lv.properties @@ -1,10 +1,10 @@ # This file is under the MIT License by authors -Discard\ Unreadable\ Data=Nelietot nenolas\u0101mos datus -Error=K\u013C\u016Bda -Manage\ Old\ Data=P\u0101rvald\u012Bt vecos datus -Name=V\u0101rds +Discard\ Unreadable\ Data=Nelietot nenolasÄmos datus +Error=Kļūda +Manage\ Old\ Data=PÄrvaldÄ«t vecos datus +Name=VÄrds No\ old\ data\ was\ found.=Vecie dati nav atrasti. Type=Tips -Unreadable\ Data=Nenolas\u0101mi dati +Unreadable\ Data=NenolasÄmi dati Version=Versija diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pl.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pl.properties index c93304c3909b..68cfd0b5dea1 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pl.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pl.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Manage\ Old\ Data=Zarz\u0105dzanie starymi danymi +Manage\ Old\ Data=ZarzÄ…dzanie starymi danymi Name=Nazwa No\ old\ data\ was\ found.=Nie znaleziono starych danych Type=Typ diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pt_BR.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pt_BR.properties index 5c4ee47e5639..aa2d49a98e59 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pt_BR.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pt_BR.properties @@ -20,47 +20,47 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb.2=Algumas vezes ocorrem erros enquanto lendo dados (se uma extens\u00E3o adiciona algum dado e esta extens\u00E3o \u00E9 \ - desativada posteriormente, se o c\u00F3digo de migra\u00E7\u00E3o n\u00E3o suporta mudan\u00E7as de estrutura, ou se o Jenkins for \ - rebaixado de vers\u00E3o depois que j\u00E1 tiver dados escritos que n\u00E3o s\u00E3o leg\u00EDveis por vers\u00F5es mais antigas). Esses erros \ - s\u00E3o registrado mas os dados n\u00E3o alcan\u00E7\u00E1veis s\u00E3o ignorados, permitindo o Jenkins a iniciar e funcionar de maneira \ +blurb.2=Algumas vezes ocorrem erros enquanto lendo dados (se uma extensão adiciona algum dado e esta extensão é \ + desativada posteriormente, se o código de migração não suporta mudanças de estrutura, ou se o Jenkins for \ + rebaixado de versão depois que já tiver dados escritos que não são legíveis por versões mais antigas). Esses erros \ + são registrado mas os dados não alcançáveis são ignorados, permitindo o Jenkins a iniciar e funcionar de maneira \ adequada. Type=Tipo -Discard\ Unreadable\ Data=Descartar dados ileg\u00EDveis -Version=Vers\u00E3o +Discard\ Unreadable\ Data=Descartar dados ilegíveis +Version=Versão Upgrade=Atualizar Error=Erro -Unreadable\ Data=Dado Ileg\u00EDvel -Resave\ data\ files\ with\ structure\ changes\ no\ newer\ than\ Jenkins=Salvar arquivos de dados com mudan\u00E7as de \ - estruturas que n\u00E3o sejam mais novas que o Jenkins +Unreadable\ Data=Dado Ilegível +Resave\ data\ files\ with\ structure\ changes\ no\ newer\ than\ Jenkins=Salvar arquivos de dados com mudanças de \ + estruturas que não sejam mais novas que o Jenkins No\ old\ data\ was\ found.=Nenhum dado antigo foi encontrado. Name=Nome Manage\ Old\ Data=Administrar dados antigos -Very\ old\ version=Vers\u00E3o muito velha +Very\ old\ version=Versão muito velha Old\ Data\ Format=Formato de dados antigo blurb.1=\ - Quando h\u00E1 mudan\u00E7as em como os dados s\u00E3o escritos no disco, o Jenkins usa a seguinte estrat\u00E9gia: \ - dados s\u00E3o migrados para uma nova estrutura quando s\u00E3o carregados mas \u00EDtens/registros n\u00E3o s\u00E3o \ - salvos novamente no novo formato. Isto permite rabaixar o Jenkins de vers\u00E3o se necess\u00E1rio. \ - Entretanto, isto tamb\u00E9m pode deixar os dados no formato antigo indefinidamente em disco. A \ - tabela abaixo lista \u00EDtens/registros contendo tais dados e a(s) vers\u00E3o(\u00F5es) do Jenkins quando \ + Quando há mudanças em como os dados são escritos no disco, o Jenkins usa a seguinte estratégia: \ + dados são migrados para uma nova estrutura quando são carregados mas ítens/registros não são \ + salvos novamente no novo formato. Isto permite rabaixar o Jenkins de versão se necessário. \ + Entretanto, isto também pode deixar os dados no formato antigo indefinidamente em disco. A \ + tabela abaixo lista ítens/registros contendo tais dados e a(s) versão(ões) do Jenkins quando \ a estrutura de dados foi alterada. blurb.4= \ - Eventualmente o c\u00F3digo suportando essas migra\u00E7\u00F5es de dados podem ser removidas. Compatibilidade \ - ser\u00E1 mantida por pelo menos 150 lan\u00E7amentos do Jenkins depois da altera\u00E7\u00E3o de estrutura. Vers\u00F5es \ - mais velhas que isto est\u00E3o listadas abaixo em negrito e \u00E9 recomend\u00E1vel que voc\u00EA salve novamente \ - estes \u00EDtens/registros. + Eventualmente o código suportando essas migrações de dados podem ser removidas. Compatibilidade \ + será mantida por pelo menos 150 lançamentos do Jenkins depois da alteração de estrutura. Versões \ + mais velhas que isto estão listadas abaixo em negrito e é recomendável que você salve novamente \ + estes ítens/registros. blurb.6= \ - N\u00E3o tem problema deixar dados n\u00E3o leg\u00EDveis nestes \u00EDtens/registros j\u00E1 que o Jenkins ir\u00E1 simplesmente \ - ignor\u00E1-los. Para evitar mensagens de registro de atividade quando o Jenkins iniciar voc\u00EA pode apagar \ - permanentemente esses dados ileg\u00EDveis salvandos esses \u00EDtens/registros usando bot\u00E3o abaixo da lista. + Não tem problema deixar dados não legíveis nestes ítens/registros já que o Jenkins irá simplesmente \ + ignorá-los. Para evitar mensagens de registro de atividade quando o Jenkins iniciar você pode apagar \ + permanentemente esses dados ilegíveis salvandos esses ítens/registros usando botão abaixo da lista. blurb.3= \ - O formul\u00E1rio pode ser usado para atualizar estes \u00EDtens/registros no formato atual. Fazer isso \ - significa que rebaixar o Jenkins para um lan\u00E7amento ou extens\u00E3o mais velhos que a vers\u00E3o selecionada \ - impossibilitar\u00E1 a leitura dos dados armazenados no novo formato. Note que simplesmente usar o \ - Jenkins para criar e configurar tarefas e executar constru\u00E7\u00F5es pode salvar dados que ser\u00E3o ileg\u00EDveis \ - por vers\u00F5es mais velhas do Jenkins ou extens\u00F5es mesmo quando este formul\u00E1rio n\u00E3o for utilizado. \ - Adicionalmente, se qualquer erro de dados ileg\u00EDveis forem reportado no lado direito da tabela acima \ - note que estes dados ser\u00E3o perdidos quando o item for salvo novamente. + O formulário pode ser usado para atualizar estes ítens/registros no formato atual. Fazer isso \ + significa que rebaixar o Jenkins para um lançamento ou extensão mais velhos que a versão selecionada \ + impossibilitará a leitura dos dados armazenados no novo formato. Note que simplesmente usar o \ + Jenkins para criar e configurar tarefas e executar construções pode salvar dados que serão ilegíveis \ + por versões mais velhas do Jenkins ou extensões mesmo quando este formulário não for utilizado. \ + Adicionalmente, se qualquer erro de dados ilegíveis forem reportado no lado direito da tabela acima \ + note que estes dados serão perdidos quando o item for salvo novamente. blurb.5= \ - (rebaixe de vers\u00E3o tanto for poss\u00EDvel baseado na vers\u00E3o selecionada) + (rebaixe de versão tanto for possível baseado na versão selecionada) diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pt_PT.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pt_PT.properties index 3f0997d6e465..a6b50c9bdc33 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pt_PT.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pt_PT.properties @@ -2,6 +2,6 @@ Manage\ Old\ Data=Gerir dados antigos Name=Nome -No\ old\ data\ was\ found.=N\u00E3o foram encontrados dados passados. +No\ old\ data\ was\ found.=Não foram encontrados dados passados. Type=Tipo -Version=Vers\u00E3o +Version=Versão diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_sr.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_sr.properties index a4d662d56a95..88d8160a9623 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_sr.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_sr.properties @@ -1,13 +1,13 @@ # This file is under the MIT License by authors -Manage\ Old\ Data=\u0423\u0440\u0435\u0434\u0438 \u0441\u0442\u0430\u0440\u0435 \u043F\u043E\u0434\u0430\u0442\u043A\u0435 -blurb.2=\u041F\u043E\u043D\u0435\u043A\u0430\u0434 \u0441\u0435 \u043F\u043E\u0458\u0430\u0432\u0435 \u0433\u0440\u0435\u0448\u043A\u0435 \u043F\u0440\u0438\u043B\u0438\u043A\u043E\u043C \u0447\u0438\u0442\u0430\u045A\u0430 \u043F\u043E\u0434\u0430\u0442\u0430\u043A\u0430 (\u0430\u043A\u043E \u043D\u043F\u0440 \u043C\u043E\u0434\u0443\u043B\u0430 \u0431\u0443\u0434\u0435 \u043A\u0430\u0441\u043D\u0438\u0458\u0435 \u0438\u0441\u043A\u0459\u0443\u0447\u0435\u043D\u0430, \u043C\u0438\u0433\u0440\u0430\u0446\u0438\u043E\u043D\u0438 \u043A\u043E\u0434\u0435\u043A\u0441 \u043D\u0430\u043F\u0438\u0441\u0430\u043D \u043D\u0435 \u043F\u0440\u0435\u043F\u043E\u0437\u043D\u0430 \u043F\u0440\u043E\u043C\u0435\u043D\u0435 \u0443 \u0441\u0442\u0440\u0443\u043A\u0442\u0443\u0440\u0438, \u0438\u043B\u0438 \u0430\u043A\u043E \u0458\u0435 Jenkins \u0432\u0440\u0430\u045B\u0435\u043D \u043F\u0440\u0435\u0442\u0445\u043E\u0434\u043D\u043E\u0458 \u0432\u0435\u0440\u0437\u0438\u0458\u0438 \u043D\u0430\u043A\u043E\u043D \u0448\u0442\u043E \u0431\u0438 \u043D\u0435\u043A\u0438 \u043F\u043E\u0434\u0430\u0446\u0438 \u043D\u0435\u0431\u0438 \u043C\u043E\u0433\u043B\u0438 \u0431\u0438\u0442\u0438 \u0443\u0447\u0438\u0442\u0430\u043D\u0438). \u041E\u0432\u0435 \u0433\u0440\u0435\u0448\u043A\u0435 \u0441\u0443 \u0441\u0430\u0447\u0443\u0432\u0430\u043D\u0435, \u0430\u043B\u0438 \u043D\u0435\u043E\u0447\u0438\u0442\u0459\u0438\u0432\u0438 \u043F\u043E\u0434\u0430\u0446\u0438 \u0441\u0435 \u043F\u0440\u0435\u0434\u0441\u043A\u0430\u0447\u0443. -Type=\u0422\u0438\u043F -Name=\u0418\u043C\u0435 -Version=\u0412\u0435\u0440\u0437\u0438\u0458\u0430 -Resave\ data\ files\ with\ structure\ changes\ no\ newer\ than\ Jenkins=\u041F\u043E\u043D\u043E\u0432\u043E \u0441\u0430\u0447\u0443\u0432\u0430\u0458 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435 \u0441\u0430 \u043F\u0440\u043E\u043C\u0435\u043D\u0430\u043C\u0430 \u043A\u043E\u0458\u0435 \u043D\u0438\u0441\u0443 \u043D\u043E\u0432\u0438\u0458\u0430 \u043E\u0434 Jenkins -Upgrade=\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u0458 -No\ old\ data\ was\ found.=\u0417\u0430\u0441\u0442\u0430\u0440\u0435\u043B\u0438 \u043F\u043E\u0434\u0430\u0446\u0438 \u043D\u0438\u0441\u0443 \u043F\u0440\u043E\u043D\u0430\u0452\u0435\u043D\u0438. -Unreadable\ Data=\u041D\u0435\u043E\u0447\u0438\u0442\u0459\u0438\u0432\u0438 \u043F\u043E\u0434\u0430\u0446\u0438 -Error=\u0413\u0440\u0435\u0448\u043A\u0430 -Discard\ Unreadable\ Data=\u041E\u0434\u0431\u0430\u0446\u0438 \u043D\u0435\u0447\u0438\u0459\u0438\u0432\u0435 \u043F\u043E\u0434\u0430\u0442\u043A\u0435 +Manage\ Old\ Data=Уреди Ñтаре податке +blurb.2=Понекад Ñе појаве грешке приликом читања података (ако нпр модула буде каÑније иÑкључена, миграциони ÐºÐ¾Ð´ÐµÐºÑ Ð½Ð°Ð¿Ð¸Ñан не препозна промене у Ñтруктури, или ако је Jenkins враћен претходној верзији након што би неки подаци неби могли бити учитани). Ове грешке Ñу Ñачуване, али неочитљиви подаци Ñе предÑкачу. +Type=Тип +Name=Име +Version=Верзија +Resave\ data\ files\ with\ structure\ changes\ no\ newer\ than\ Jenkins=Поново Ñачувај датотеке Ñа променама које ниÑу новија од Jenkins +Upgrade=Ðжурирај +No\ old\ data\ was\ found.=ЗаÑтарели подаци ниÑу пронађени. +Unreadable\ Data=Ðеочитљиви подаци +Error=Грешка +Discard\ Unreadable\ Data=Одбаци нечиљиве податке diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_zh_TW.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_zh_TW.properties index f6ad024f780c..ab0e7135b523 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_zh_TW.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_zh_TW.properties @@ -22,17 +22,17 @@ # THE SOFTWARE. blurb.2=\ - \u8b80\u53d6\u8cc7\u6599\u6642\u4e5f\u6709\u53ef\u80fd\u767c\u751f\u932f\u8aa4 \ - (\u4f8b\u5982: \u67d0\u500b\u5916\u639b\u7a0b\u5f0f\u65b0\u589e\u8cc7\u6599\u9032\u4f86\uff0c\u4f46\u662f\u8a72\u5916\u639b\u7a0b\u5f0f\u5f8c\u4f86\u88ab\u95dc\u9589\u4e86; \ - \u7d50\u69cb\u8b8a\u66f4\u6642\u6c92\u6709\u5beb\u597d\u5c0d\u61c9\u7684\u8f49\u79fb\u7a0b\u5f0f; \u6216 Jenkins \u88ab\u964d\u7248\u524d\u5df2\u7d93\u5beb\u5165\u4e86\u820a\u7248\u7121\u6cd5\u8b80\u53d6\u7684\u8cc7\u6599)\u3002\ - \u9019\u4e9b\u932f\u8aa4\u90fd\u6703\u88ab\u8a18\u9304\u4e0b\u4f86\uff0c\u4f46\u662f\u8cc7\u6599\u6703\u76f4\u63a5\u88ab\u7565\u904e\uff0c\u8b93 Jenkins \u53ef\u4ee5\u7e7c\u7e8c\u555f\u52d5\u4e26\u9806\u5229\u904b\u4f5c\u3002 -Manage\ Old\ Data=\u7ba1\u7406\u820a\u7248\u8cc7\u6599 -Type=\u985e\u578b -Name=\u540d\u7a31 -Version=\u7248\u672c -Upgrade=\u5347\u7d1a -Error=\u932f\u8aa4 -No\ old\ data\ was\ found.=\u6c92\u6709\u627e\u5230\u820a\u7248\u8cc7\u6599\u3002 -Discard\ Unreadable\ Data=\u522a\u9664\u7121\u6cd5\u8b80\u53d6\u7684\u8cc7\u6599 -Unreadable\ Data=\u7121\u6cd5\u8b80\u53d6\u7684\u8cc7\u6599 -Resave\ data\ files\ with\ structure\ changes\ no\ newer\ than\ Jenkins=\u91cd\u65b0\u5132\u5b58\u8cc7\u6599\u6a94\u6848\uff0c\u4e26\u9650\u5236\u8cc7\u6599\u7d50\u69cb\u6700\u65b0\u7248\u672c\u5230 Jenkins + 讀å–資料時也有å¯èƒ½ç™¼ç”ŸéŒ¯èª¤ \ + (例如: æŸå€‹å¤–掛程å¼æ–°å¢žè³‡æ–™é€²ä¾†ï¼Œä½†æ˜¯è©²å¤–掛程å¼å¾Œä¾†è¢«é—œé–‰äº†; \ + çµæ§‹è®Šæ›´æ™‚沒有寫好å°æ‡‰çš„轉移程å¼; 或 Jenkins 被é™ç‰ˆå‰å·²ç¶“寫入了舊版無法讀å–的資料)。\ + 這些錯誤都會被記錄下來,但是資料會直接被略éŽï¼Œè®“ Jenkins å¯ä»¥ç¹¼çºŒå•Ÿå‹•ä¸¦é †åˆ©é‹ä½œã€‚ +Manage\ Old\ Data=管ç†èˆŠç‰ˆè³‡æ–™ +Type=é¡žåž‹ +Name=å稱 +Version=版本 +Upgrade=å‡ç´š +Error=錯誤 +No\ old\ data\ was\ found.=沒有找到舊版資料。 +Discard\ Unreadable\ Data=刪除無法讀å–的資料 +Unreadable\ Data=無法讀å–的資料 +Resave\ data\ files\ with\ structure\ changes\ no\ newer\ than\ Jenkins=é‡æ–°å„²å­˜è³‡æ–™æª”案,並é™åˆ¶è³‡æ–™çµæ§‹æœ€æ–°ç‰ˆæœ¬åˆ° Jenkins diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_bg.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_bg.properties index b8566357e90e..e9b8d26eda72 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_bg.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_bg.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. Dismiss=\ - \u041e\u0442\u043a\u0430\u0437 + Отказ Manage=\ - \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 + Управление You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=\ - \u0427\u0430\u0441\u0442 \u043e\u0442 \u0434\u0430\u043d\u043d\u0438\u0442\u0435 \u043d\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0440\u043e\u0447\u0435\u0442\u0435\u043d\u0438, \u0444\u043e\u0440\u043c\u0430\u0442\u044a\u0442 \u0438\u043c \u0435 \u043f\u0440\u0435\u043a\u0430\u043b\u0435\u043d\u043e \u0441\u0442\u0430\u0440 \u0438\u043b\u0438\ - \u0435 \u0441\u0433\u0440\u0435\u0448\u0435\u043d. + ЧаÑÑ‚ от данните не могат да бъдат прочетени, форматът им е прекалено Ñтар или\ + е Ñгрешен. diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_da.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_da.properties index 5f214ddcf301..147508e7844f 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_da.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_da.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Du har data gemt i et \u00e6ldre og/eller ul\u00e6seligt format. +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Du har data gemt i et ældre og/eller ulæseligt format. Dismiss=Luk -Manage=H\u00e5ndter +Manage=HÃ¥ndter diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_fi.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_fi.properties index 214ea5dbdf46..cdb27fb32cce 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_fi.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_fi.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=\u00C4l\u00E4 v\u00E4lit\u00E4 +Dismiss=Älä välitä Manage=Korjaa -You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Tietoja on talletettu vanhassa muodossa tai tietoja ei pystyt\u00E4 lukemaan. +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Tietoja on talletettu vanhassa muodossa tai tietoja ei pystytä lukemaan. diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_fr.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_fr.properties index cac9ecc14011..07baf034d085 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_fr.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_fr.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Dismiss=Abandonner -Manage=G\u00E9rer -You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Vous avez des donn\u00E9es stock\u00E9es dans un vieux format et/ou des donn\u00E9es illisibles +Manage=Gérer +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Vous avez des données stockées dans un vieux format et/ou des données illisibles diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_it.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_it.properties index be29fbbed328..21d1caff008c 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_it.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_ja.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_ja.properties index 31193fa7cfd7..3022c20b64ee 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_ja.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_ja.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.= \ - \u53E4\u3044\u5F62\u5F0F\u3082\u3057\u304F\u306F\u8AAD\u3081\u306A\u3044\u30C7\u30FC\u30BF\u304C\u3042\u308A\u307E\u3059\u3002 -Manage=\u7BA1\u7406 -Dismiss=\u7121\u8996 + å¤ã„å½¢å¼ã‚‚ã—ãã¯èª­ã‚ãªã„データãŒã‚ã‚Šã¾ã™ã€‚ +Manage=ç®¡ç† +Dismiss=無視 diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_ko.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_ko.properties index b0ee13823d6c..6b0b390d726f 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_ko.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_ko.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Dismiss=\uD45C\uC2DC \uC548\uD568 -Manage=\uAD00\uB9AC -You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=\uC624\uB798\uB41C \uD615\uC2DD\uC774\uAC70\uB098 \uC77D\uC744 \uC218 \uC5C6\uB294 \uB370\uC774\uD130\uAC00 \uC788\uC2B5\uB2C8\uB2E4. +Dismiss=표시 안함 +Manage=관리 +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=ì˜¤ëž˜ëœ í˜•ì‹ì´ê±°ë‚˜ ì½ì„ 수 없는 ë°ì´í„°ê°€ 있습니다. diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_lv.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_lv.properties index 355b6350343c..7e9c76be455c 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_lv.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_lv.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors Dismiss=Izlaist -Manage=P\u0101rvald\u012Bt -You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Jums ir saglab\u0101ti dati, kuri ir vec\u0101k\u0101 form\u0101ta vai ir nenolas\u0101mi. +Manage=PÄrvaldÄ«t +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Jums ir saglabÄti dati, kuri ir vecÄkÄ formÄta vai ir nenolasÄmi. diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_pl.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_pl.properties index ddf78ae7fe21..4ed5eeed4720 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_pl.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_pl.properties @@ -19,6 +19,6 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=Pomi\u0144 -Manage=Zarz\u0105dzaj -You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Dane s\u0105 zachowane w starszym lub niedost\u0119pnym formacie. +Dismiss=PomiÅ„ +Manage=ZarzÄ…dzaj +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Dane sÄ… zachowane w starszym lub niedostÄ™pnym formacie. diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_pt_BR.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_pt_BR.properties index 51ba8765bf7c..cccbb9821551 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_pt_BR.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_pt_BR.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Dismiss=Descartar -You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Voc\u00EA tem dados armazenados no formato antigo ou dados ileg\u00EDveis. +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Você tem dados armazenados no formato antigo ou dados ilegíveis. Manage=Administrar diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_ru.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_ru.properties index 27ba4a18b16a..c0cb7c88b65a 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_ru.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_ru.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Dismiss=\u0423\u0431\u0440\u0430\u0442\u044c -Manage=\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c -You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=\u0424\u0430\u0439\u043b\u044b \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442 \u0443\u0441\u0442\u0430\u0440\u0435\u0432\u0448\u0438\u0435 \u0438/\u0438\u043b\u0438 \u043d\u0435\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435. +Dismiss=Убрать +Manage=ÐаÑтроить +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Файлы конфигурации Ñодержат уÑтаревшие и/или нечитаемые данные. diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_sr.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_sr.properties index 9575d0a32398..8131ec9cd4d9 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_sr.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Manage=\u041F\u043E\u0434\u0435\u0441\u0438 -Dismiss=\u041E\u0442\u043A\u0430\u0436\u0438 -You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=\u0418\u043C\u0430\u0442\u0435 \u043F\u043E\u0434\u0430\u0442\u043A\u0435 \u0441\u0430\u0447\u0443\u0432\u0430\u043D\u0435 \u043F\u043E \u0441\u0442\u0430\u0440\u0438\u0458\u0435\u043C \u0444\u043E\u0440\u043C\u0430\u0442\u0443, \u0438\u043B\u0438 \u043D\u0435\u0443\u0447\u0438\u0442\u0459\u0438\u0432\u0435 \u043F\u043E\u0434\u0430\u0442\u043A\u0435. +Manage=ПодеÑи +Dismiss=Откажи +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Имате податке Ñачуване по Ñтаријем формату, или неучитљиве податке. diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_sv_SE.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_sv_SE.properties index ecb3f5d0ad37..c47c21b82b49 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_sv_SE.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_sv_SE.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=Avf\u00E4rda +Dismiss=Avfärda Manage=Hantera -You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Du har data lagrat i ett \u00E4ldre format och/eller ol\u00E4sbart data. +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Du har data lagrat i ett äldre format och/eller oläsbart data. diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_zh_TW.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_zh_TW.properties index faccfcd4ee1d..736a916e9ce7 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_zh_TW.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_zh_TW.properties @@ -21,6 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=\u60a8\u6709\u8cc7\u6599\u683c\u5f0f\u904e\u820a\u6216\u662f\u7121\u6cd5\u8b80\u53d6\u3002 -Manage=\u7ba1\u7406 -Dismiss=\u4e0d\u7ba1 +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=您有資料格å¼éŽèˆŠæˆ–是無法讀å–。 +Manage=ç®¡ç† +Dismiss=ä¸ç®¡ diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/description_pt_BR.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/description_pt_BR.properties index b17a3f250699..c647e23d8996 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/description_pt_BR.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/description_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Se o Jenkins estiver em execu\u00E7\u00E3o por tr\u00E1s de um proxy reverso, isto identifica problemas relacionados com uma configura\u00E7\u00E3o ruim. +blurb=Se o Jenkins estiver em execução por trás de um proxy reverso, isto identifica problemas relacionados com uma configuração ruim. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_bg.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_bg.properties index a30f17c1080a..046b5f7917ec 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_bg.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Dismiss=\ - \u041f\u0440\u043e\u043f\u0443\u0441\u043a\u0430\u043d\u0435 + ПропуÑкане More\ Info=\ - \u041f\u043e\u0432\u0435\u0447\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f + Повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ blurb=\ - \u0418\u0437\u0433\u043b\u0435\u0436\u0434\u0430, \u0447\u0435 \u0438\u043c\u0430 \u0433\u0440\u0435\u0448\u043a\u0430 \u0432 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u0442\u0430 \u043d\u0430 \u043d\u0430\u0441\u0440\u0435\u0449\u043d\u0438\u044f \u0441\u044a\u0440\u0432\u044a\u0440-\u043f\u043e\u0441\u0440\u0435\u0434\u043d\u0438\u043a. + Изглежда, че има грешка в наÑтройката на наÑÑ€ÐµÑ‰Ð½Ð¸Ñ Ñървър-поÑредник. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ca.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ca.properties index 426fb21a8ee3..2f719ebbabe1 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ca.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ca.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors Dismiss=Descartar -More\ Info=M\u00E9s informaci\u00F3 -blurb=Sembla que la configuraci\u00F3 del proxy revers \u00E9s incorrecta. +More\ Info=Més informació +blurb=Sembla que la configuració del proxy revers és incorrecta. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_cs.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_cs.properties index 5b520e5d8bca..673675f0015a 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_cs.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_cs.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Dismiss=Zahodit -More\ Info=V\u00EDce Informac\u00ED -blurb=Vypad\u00E1 to, \u017Ee je \u0161patn\u011B nastavena reverzn\u00ED proxy. +More\ Info=Více Informací +blurb=Vypadá to, že je Å¡patnÄ› nastavena reverzní proxy. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_de.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_de.properties index d483017eb60b..df6e5c6f2919 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_de.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_de.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=Schließen +Dismiss=Schließen More\ Info=Mehr Information blurb=Es scheint, dass die Konfiguration des Reverse-Proxy fehlerhaft ist. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_el.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_el.properties index 50ac02100002..cd96b1e28fa3 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_el.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_el.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -More\ Info=\u03A0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B5\u03C2 \u03A0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B5\u03C2 +More\ Info=ΠεÏισσότεÏες ΠληÏοφοÏίες diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_es.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_es.properties index 2ee41b3df454..7f9c192caadb 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_es.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_es.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Dismiss=Ocultar -More\ Info=Más información +More\ Info=Más información # It appears that your reverse proxy set up is broken. -blurb=Parece que la configuración de proxy inverso está mal +blurb=Parece que la configuración de proxy inverso está mal diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_es_AR.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_es_AR.properties index 82febec47df7..56e54c89f8f7 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_es_AR.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_es_AR.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -More\ Info=Mas informaci\u00F3n +More\ Info=Mas información diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fi.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fi.properties index 1fefbe6af559..109b9aa7d392 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fi.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fi.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=Hylk\u00E4\u00E4 -More\ Info=Lis\u00E4\u00E4 tietoa -blurb=Vaikuttaa silt\u00E4, ett\u00E4 edustapalvelimesi asetukset ovat rikkin\u00E4iset. +Dismiss=Hylkää +More\ Info=Lisää tietoa +blurb=Vaikuttaa siltä, että edustapalvelimesi asetukset ovat rikkinäiset. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fr.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fr.properties index 204ba99ab407..848bcab4d153 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fr.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fr.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Dismiss=Annuler -More\ Info=Plus d\u2019informations +More\ Info=Plus d’informations blurb=La configuration de votre proxy inverse est incorrecte. -missingContextMessage=L\u2019URL de votre instance ne semble pas comporter le chemin de contexte ("{0}"). +missingContextMessage=L’URL de votre instance ne semble pas comporter le chemin de contexte ("{0}"). diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_he.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_he.properties index 764377243ada..3dec0cbdbfaf 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_he.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_he.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=\u05D1\u05D8\u05DC -More\ Info=\u05DE\u05D9\u05D3\u05E2 \u05E0\u05D5\u05E1\u05E3 -blurb=\u05E0\u05E8\u05D0\u05D4 \u05E9\u05D4\u05D2\u05D3\u05E8\u05EA \u05E4\u05E8\u05D5\u05E7\u05E1\u05D9-\u05D7\u05D5\u05D6\u05E8 \u05E9\u05D2\u05D5\u05D9\u05D4 +Dismiss=בטל +More\ Info=מידע נוסף +blurb=נר××” שהגדרת פרוקסי-חוזר שגויה diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_hu.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_hu.properties index 385910ac5fd2..8e36c98d5285 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_hu.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_hu.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Dismiss=Elvet -More\ Info=Tov\u00E1bbi inf\u00F3k -blurb=A reverse proxy be\u00E1ll\u00EDt\u00E1sok rossznak t\u0171nnek. +More\ Info=További infók +blurb=A reverse proxy beállítások rossznak tűnnek. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_it.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_it.properties index 9b396ee6684a..deed64d95447 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_it.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ja.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ja.properties index 8e527fef163b..6c978f42b9ed 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ja.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -More\ Info=\u8a73\u7d30 -Dismiss=\u4e2d\u6b62 -blurb=\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed\u30ad\u30b7\u30fc\u306e\u8a2d\u5b9a\u304c\u304a\u304b\u3057\u3044\u3088\u3046\u3067\u3059\u3002 +More\ Info=詳細 +Dismiss=中止 +blurb=リãƒãƒ¼ã‚¹ãƒ—ロキシーã®è¨­å®šãŒãŠã‹ã—ã„よã†ã§ã™ã€‚ diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ko.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ko.properties index a5da1c273954..df2529918030 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ko.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ko.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=\uD574\uC81C -More\ Info=\uCD94\uAC00 \uC815\uBCF4 -blurb=\uC5ED\uBC29\uD5A5 \uD504\uB85D\uC2DC \uC124\uC815\uC774 \uC798\uBABB\uB41C \uAC83\uC73C\uB85C \uD30C\uC545\uB418\uC5C8\uC2B5\uB2C8\uB2E4. +Dismiss=í•´ì œ +More\ Info=추가 ì •ë³´ +blurb=ì—­ë°©í–¥ 프ë¡ì‹œ ì„¤ì •ì´ ìž˜ëª»ëœ ê²ƒìœ¼ë¡œ 파악ë˜ì—ˆìŠµë‹ˆë‹¤. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_lt.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_lt.properties index 97c7d542097a..8a4e19ed702e 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_lt.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_lt.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Dismiss=At\u0161aukti +Dismiss=AtÅ¡aukti More\ Info=Daugiau Informacijos -blurb=Pana\u0161u kad j\u016Bs\u0173 atvirk\u0161tinio proxy nustatymuose yra klaid\u0173. +blurb=PanaÅ¡u kad jÅ«sų atvirkÅ¡tinio proxy nustatymuose yra klaidų. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_lv.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_lv.properties index ee0cafeb8e77..595029641987 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_lv.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_lv.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Dismiss=Izlaist -More\ Info=Vair\u0101k inform\u0101cijas -blurb=Izskat\u0101s, ka atpaka\u013Cejo\u0161\u0101 starpniekservera uzst\u0101d\u012Bjums ir salauzts. +More\ Info=VairÄk informÄcijas +blurb=IzskatÄs, ka atpakaļejoÅ¡Ä starpniekservera uzstÄdÄ«jums ir salauzts. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pl.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pl.properties index db3951f6e379..002b40557563 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pl.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=Odrzu\u0107 -More\ Info=Wi\u0119cej informacji -blurb=Wygl\u0105da na to, \u017Ce Twoja konfiguracja (reverse) proxy jest niepoprawna. +Dismiss=Odrzuć +More\ Info=WiÄ™cej informacji +blurb=WyglÄ…da na to, że Twoja konfiguracja (reverse) proxy jest niepoprawna. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_BR.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_BR.properties index f375ee750a65..1b99e4e41bd5 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_BR.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_BR.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Dismiss=Descartar -More\ Info=Mais informa\u00E7\u00F5es -blurb=Parece que a configura\u00E7\u00E3o do proxy reverso est\u00E1 com problemas. -missingContextMessage=Sua URL raiz configurada n\u00E3o contem o contextPath ("{0}"). +More\ Info=Mais informações +blurb=Parece que a configuração do proxy reverso está com problemas. +missingContextMessage=Sua URL raiz configurada não contem o contextPath ("{0}"). diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_PT.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_PT.properties index 0a577af9d812..40e7166f2fe0 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_PT.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_PT.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Dismiss=Dispensar -More\ Info=Mais Informa\u00E7\u00E3o -blurb=Aparentemente a configura\u00E7\u00E3o do seu proxy de reserva est\u00E1 inv\u00E1lida. +More\ Info=Mais Informação +blurb=Aparentemente a configuração do seu proxy de reserva está inválida. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ro.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ro.properties index 5a2c60a82fff..d4138493f3ba 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ro.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ro.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Dismiss=Revocare -More\ Info=Mai multe informa\u021Bii -blurb=Se pare c\u0103 configurarea la proxy reversibil e stricat\u0103 +More\ Info=Mai multe informaÈ›ii +blurb=Se pare că configurarea la proxy reversibil e stricată diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ru.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ru.properties index 911e74809094..f225739841ef 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ru.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=\u041E\u0442\u043C\u0435\u043D\u0438\u0442\u044C -More\ Info=\u041F\u043E\u0434\u0440\u043E\u0431\u043D\u0435\u0435 -blurb=\u0415\u0441\u0442\u044C \u043F\u043E\u0434\u043E\u0437\u0440\u0435\u043D\u0438\u0435, \u0447\u0442\u043E \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u0432\u0430\u0448\u0435\u0433\u043E \u043E\u0431\u0440\u0430\u0442\u043D\u043E\u0433\u043E \u043F\u0440\u043E\u043A\u0441\u0438 \u043D\u0435\u043A\u043E\u0440\u0440\u0435\u043A\u0442\u043D\u044B. +Dismiss=Отменить +More\ Info=Подробнее +blurb=ЕÑÑ‚ÑŒ подозрение, что наÑтройки вашего обратного прокÑи некорректны. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sk.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sk.properties index 9c4c9ad81985..27fa9ffa3ceb 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sk.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sk.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Dismiss=Odmietni -More\ Info=Viac inform\u00E1ci\u00ED -blurb=Vyzer\u00E1 to tak, \u017Ee je zl\u00E9 nastavenie reverzn\u00E9ho proxy. +More\ Info=Viac informácií +blurb=Vyzerá to tak, že je zlé nastavenie reverzného proxy. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sl.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sl.properties index 61e28704bb7d..3a375db14f05 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sl.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sl.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors Dismiss=Zavrzite -More\ Info=Ve\u010D informacij -blurb=Izgleda, da je nastavitev va\u0161ega posredni\u0161kega stre\u017Enika nepravilna. +More\ Info=VeÄ informacij +blurb=Izgleda, da je nastavitev vaÅ¡ega posredniÅ¡kega strežnika nepravilna. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sr.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sr.properties index a61a9cb6dabd..0f0e005ac092 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sr.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -More\ Info=\u0412\u0438\u0448\u0435 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0430 -blurb=\u0418\u0437\u0433\u043B\u0435\u0434\u0430 \u0434\u0430 \u0438\u043C\u0435 \u0433\u0440\u0435\u0448\u043A\u0430 \u0443 \u0432\u0430\u0448\u043E\u0458 reverse proxy. -Dismiss=\u041E\u0442\u043A\u0430\u0436\u0438 +More\ Info=Више информација +blurb=Изгледа да име грешка у вашој reverse proxy. +Dismiss=Откажи diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sv_SE.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sv_SE.properties index db064fc3550e..4a519cfe4ab9 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sv_SE.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sv_SE.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=Avf\u00E4rda +Dismiss=Avfärda More\ Info=Mer Information -blurb=Du har troligen en felaktigt uppsatt bakl\u00E4ngesproxy. +blurb=Du har troligen en felaktigt uppsatt baklängesproxy. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_tr.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_tr.properties index 58b7bb4297f1..2ac4acc9ebbe 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_tr.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_tr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors More\ Info=Daha fazla Bilgi -blurb=Ters vekil sunucu yap\u0131land\u0131rman\u0131z bozuk g\u00F6r\u00FCn\u00FCyor. +blurb=Ters vekil sunucu yapılandırmanız bozuk görünüyor. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_uk.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_uk.properties index aad39d96601d..0d05605115a3 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_uk.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_uk.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=\u0421\u043A\u0430\u0441\u0443\u0432\u0430\u0442\u0438 -More\ Info=\u0414\u043E\u043A\u043B\u0430\u0434\u043D\u0456\u0448\u0435 -blurb=\u0421\u0445\u043E\u0436\u0435, \u0449\u043E \u0432\u0430\u0448\u0456 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u043E\u0431\u0435\u0440\u043D\u0435\u043D\u043E\u0433\u043E \u043F\u0440\u043E\u043A\u0441\u0456 \u043F\u043E\u043B\u0430\u043C\u0430\u043D\u043E. +Dismiss=СкаÑувати +More\ Info=Докладніше +blurb=Схоже, що ваші Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¾Ð±ÐµÑ€Ð½ÐµÐ½Ð¾Ð³Ð¾ прокÑÑ– поламано. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_zh_TW.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_zh_TW.properties index b7c62a2e805c..94ca42f434c0 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_zh_TW.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\u60a8\u7684 Reverse Proxy \u8a2d\u5b9a\u597d\u50cf\u6709\u9ede\u554f\u984c\u5594\u3002 -More\ Info=\u66f4\u591a\u8cc7\u8a0a -Dismiss=\u4e0d\u7ba1 +blurb=您的 Reverse Proxy 設定好åƒæœ‰é»žå•é¡Œå–”。 +More\ Info=更多資訊 +Dismiss=ä¸ç®¡ diff --git a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/description_pt_BR.properties b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/description_pt_BR.properties index 739cbb9fba8a..5cc3009b01ba 100644 --- a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/description_pt_BR.properties +++ b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/description_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Recomenda a cria\u00E7\u00E3o de vis\u00F5es adicionais para ajudar a categorizar se n\u00E3o h\u00E1 nenhum e se h\u00E1 muitas tarefas. +blurb=Recomenda a criação de visões adicionais para ajudar a categorizar se não há nenhum e se há muitas tarefas. diff --git a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_bg.properties b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_bg.properties index 8678416931f3..c6456f48735c 100644 --- a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_bg.properties +++ b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_bg.properties @@ -21,12 +21,12 @@ # THE SOFTWARE. Dismiss=\ - \u041e\u0442\u043a\u0430\u0437\u0432\u0430\u043d\u0435 + Отказване Create\ a\ view\ now=\ - \u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u043e\u0432 \u0438\u0437\u0433\u043b\u0435\u0434 + Създаване на нов изглед # There appears to be a large number of jobs. Did you know that you can organize your jobs to different views? \ # You can click '+' in the top page to create a new view any time. blurb=\ - \u0418\u0437\u0433\u043b\u0435\u0436\u0434\u0430, \u0447\u0435 \u0431\u0440\u043e\u044f\u0442 \u043d\u0430 \u0437\u0430\u0434\u0430\u043d\u0438\u044f\u0442\u0430 \u0435 \u043f\u0440\u0435\u043a\u0430\u043b\u0435\u043d\u043e \u0433\u043e\u043b\u044f\u043c. \u041c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430 \u0433\u0438 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0438\u0440\u0430\u0442\u0435\ - \u043f\u043e \u0438\u0437\u0433\u043b\u0435\u0434\u0438. \u0417\u0430 \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u0442\u0435 \u043d\u043e\u0432 \u0438\u0437\u0433\u043b\u0435\u0434, \u043d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 \u0431\u0443\u0442\u043e\u043d\u0430 \u201e+\u201c \u0432 \u0433\u043e\u0440\u043d\u0430\u0442\u0430 \u0447\u0430\u0441\u0442 \u043d\u0430\ - \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u0442\u0430. + Изглежда, че броÑÑ‚ на заданиÑта е прекалено голÑм. Можете да ги организирате\ + по изгледи. За да Ñъздадете нов изглед, натиÑнете бутона „+“ в горната чаÑÑ‚ на\ + Ñтраницата. diff --git a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_cs.properties b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_cs.properties index 6c42a34b8276..9d2db6e2c972 100644 --- a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_cs.properties +++ b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_cs.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Create\ a\ view\ now=Vytvo\u0159it pohled +Create\ a\ view\ now=VytvoÅ™it pohled Dismiss=Zahodit diff --git a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_da.properties b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_da.properties index dfa9ed050537..88ddc727adde 100644 --- a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_da.properties +++ b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_da.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. blurb=Det ser ud til at du har et stort antal jobs. Vidste du at man kan organisere sine jobs i forskellige visninger? \ -Du kan klikke '+' i topbj\u00e6lken p\u00e5 oversigtssiden hvorn\u00e5rsomhelst for at lave en ny visning. +Du kan klikke '+' i topbjælken pÃ¥ oversigtssiden hvornÃ¥rsomhelst for at lave en ny visning. Create\ a\ view\ now=Lav en ny visning Dismiss=Luk diff --git a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_de.properties b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_de.properties index 24b68f43083b..53bec58af1ea 100644 --- a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_de.properties +++ b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_de.properties @@ -1,5 +1,5 @@ Create\ a\ view\ now=Neue Ansicht jetzt erstellen -Dismiss=Schließen +Dismiss=Schließen blurb=Es sind zurzeit sehr viele Jobs angelegt. Wussten Sie schon, dass Sie Ihre Jobs in \ - unterschiedliche Ansichten gruppieren können? Klicken Sie auf '+' im Seitenkopf, \ + unterschiedliche Ansichten gruppieren können? Klicken Sie auf '+' im Seitenkopf, \ um eine neue Ansicht zu erstellen. diff --git a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_es.properties b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_es.properties index 70642fad6e17..2e0514bd6077 100644 --- a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_es.properties +++ b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_es.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Parece que hay un numero muy grande de proyectos en la pagina. ¿Sabías que puedes organizarlos en vistas? \ - Puedes pulsar sobre ''+'' en el principio de esta página para crear nuevas vistas. +blurb=Parece que hay un numero muy grande de proyectos en la pagina. ¿Sabías que puedes organizarlos en vistas? \ + Puedes pulsar sobre ''+'' en el principio de esta página para crear nuevas vistas. Create\ a\ view\ now=Crear una vista ahora Dismiss=Descartar diff --git a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_fr.properties b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_fr.properties index 82ce267577c1..bf9fc0c74800 100644 --- a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_fr.properties +++ b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_fr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Create\ a\ view\ now=Cr\u00E9er une vue maintenant +Create\ a\ view\ now=Créer une vue maintenant Dismiss=J''ai compris -blurb=Il semble y avoir un grand nombre de jobs. Saviez-vous que vous pouvez organiser vos jobs dans des vues s\u00E9par\u00E9es ? Pour cela, cliquez sur le ''+'' dans la page principale pour cr\u00E9er une nouvelle vue \u00E0 tout moment. +blurb=Il semble y avoir un grand nombre de jobs. Saviez-vous que vous pouvez organiser vos jobs dans des vues séparées ? Pour cela, cliquez sur le ''+'' dans la page principale pour créer une nouvelle vue à tout moment. diff --git a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_it.properties b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_it.properties index c2ba1f9a2068..f7739fd67366 100644 --- a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_it.properties +++ b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,8 +21,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Sembra che ci sia un numero elevato di processi. Forse non si sa che è \ - possibile organizzare i processi in viste differenti? È possibile cliccare \ +blurb=Sembra che ci sia un numero elevato di processi. Forse non si sa che è \ + possibile organizzare i processi in viste differenti? È possibile cliccare \ su "+" nella barra in alto per creare una nuova vista in qualunque momento. Create\ a\ view\ now=Crea una vista ora Dismiss=Nascondi diff --git a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_ja.properties b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_ja.properties index 6ba21f6f0e20..cd0fbc9fdf9c 100644 --- a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_ja.properties +++ b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_ja.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Create\ a\ view\ now=\u30D3\u30E5\u30FC\u3092\u65B0\u898F\u4F5C\u6210 -Dismiss=\u7121\u8996 +Create\ a\ view\ now=ビューを新è¦ä½œæˆ +Dismiss=無視 blurb=\ - \u30B8\u30E7\u30D6\u304C\u305F\u304F\u3055\u3093\u3042\u308B\u3088\u3046\u3067\u3059\u3002\u30B8\u30E7\u30D6\u3092\u9055\u3046\u30D3\u30E5\u30FC\u306B\u5206\u3051\u3066\u8868\u793A\u3059\u308B\u3053\u3068\u304C\u3067\u304D\u307E\u3059\u3002\ - \u30C8\u30C3\u30D7\u30DA\u30FC\u30B8\u3067'+'\u3092\u30AF\u30EA\u30C3\u30AF\u3059\u308B\u3068\u3001\u3044\u3064\u3067\u3082\u65B0\u3057\u3044\u30D3\u30E5\u30FC\u3092\u4F5C\u6210\u3067\u304D\u307E\u3059\u3002 + ジョブãŒãŸãã•ã‚“ã‚るよã†ã§ã™ã€‚ジョブをé•ã†ãƒ“ューã«åˆ†ã‘ã¦è¡¨ç¤ºã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚\ + トップページã§'+'をクリックã™ã‚‹ã¨ã€ã„ã¤ã§ã‚‚æ–°ã—ã„ビューを作æˆã§ãã¾ã™ã€‚ diff --git a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_nl.properties b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_nl.properties index 088de65b167f..4059ed8f645c 100644 --- a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_nl.properties +++ b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_nl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE -blurb=Er blijken een grote hoeveelheid jobs gedefinieerd. Wist U dat het mogelijk is om je jobs in aparte overzichtsschermen te groeperen? U kunt gelijk wanneer op de '+' bovenaan de pagina klikken om een nieuw overzichtsscherm te cre\u00EBren. +blurb=Er blijken een grote hoeveelheid jobs gedefinieerd. Wist U dat het mogelijk is om je jobs in aparte overzichtsschermen te groeperen? U kunt gelijk wanneer op de '+' bovenaan de pagina klikken om een nieuw overzichtsscherm te creëren. Dismiss=Ok -Create\ a\ view\ now=Cre\u00EBer nu een nieuw overzichtsscherm. +Create\ a\ view\ now=Creëer nu een nieuw overzichtsscherm. diff --git a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_pt_BR.properties b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_pt_BR.properties index cf4b81d1769a..aabb84dfabb5 100644 --- a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_pt_BR.properties +++ b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_pt_BR.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Dismiss=Descartar -blurb=Parece haver um n\u00FAmero grande de tarefas. Voc\u00EA sabia que pode organizar suas tarefas para diferentes \ - visualiza\u00E7\u00F5es? Voc\u00EA pode clicar ''+'' no topo da p\u00E1gina para criar uma nova visualiza\u00E7\u00E3o a qualquer hora. -Create\ a\ view\ now=Criar uma nova visualiza\u00E7\u00E3o agora +blurb=Parece haver um número grande de tarefas. Você sabia que pode organizar suas tarefas para diferentes \ + visualizações? Você pode clicar ''+'' no topo da página para criar uma nova visualização a qualquer hora. +Create\ a\ view\ now=Criar uma nova visualização agora diff --git a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_ru.properties b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_ru.properties index 83d179d917f1..8c78ce03d4be 100644 --- a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_ru.properties +++ b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=\u0423\u0431\u0440\u0430\u0442\u044c -blurb=\u041a\u0430\u0436\u0435\u0442\u0441\u044f, \u0443 \u0412\u0430\u0441 \u0431\u043e\u043b\u044c\u0448\u043e\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0437\u0430\u0434\u0430\u0447. \u0417\u043d\u0430\u0435\u0442\u0435 \u043b\u0438 \u0432\u044b, \u0447\u0442\u043e \u043c\u043e\u0436\u043d\u043e \u0441\u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0437\u0430\u0434\u0430\u0447\u0438 \u0432 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0435 \u0441\u043f\u0438\u0441\u043a\u0438? \u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043d\u0430\u0436\u0430\u0442\u044c "+" \u0432 \u0432\u0435\u0440\u0445\u0443 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b, \u0447\u0442\u043e\u0431\u044b \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a (\u0432\u0438\u0434) \u0432 \u043b\u044e\u0431\u043e\u0435 \u0432\u0440\u0435\u043c\u044f. +Dismiss=Убрать +blurb=КажетÑÑ, у Ð’Ð°Ñ Ð±Ð¾Ð»ÑŒÑˆÐ¾Ðµ количеÑтво задач. Знаете ли вы, что можно Ñгруппировать задачи в различные ÑпиÑки? Ð’Ñ‹ можете нажать "+" в верху Ñтраницы, чтобы Ñоздать новый ÑпиÑок (вид) в любое времÑ. diff --git a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_sr.properties b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_sr.properties index d025743f7361..139679d2cca7 100644 --- a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_sr.properties +++ b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Create\ a\ view\ now=\u041A\u0440\u0435\u0438\u0440\u0430\u0458 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 \u0441\u0430\u0434\u0430 -Dismiss=\u041E\u0442\u043A\u0430\u0436\u0438 -blurb=\u041F\u043E\u0441\u0442\u043E\u0458\u0438 \u0432\u0435\u043B\u0438\u043A\u0438 \u0431\u0440\u043E\u0458 \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0430. \u0414\u0430 \u043B\u0438 \u0437\u043D\u0430\u0442\u0435 \u0434\u0430 \u043C\u043E\u0436\u0435\u0442\u0435 \u0434\u0430 \u043E\u0440\u0433\u0430\u043D\u0438\u0437\u0443\u0458\u0435\u0442\u0435 \u0432\u0430\u0448\u0435 \u0437\u0430\u0434\u0430\u0442\u043A\u0435 \u043F\u043E \u0440\u0430\u0437\u043B\u0438\u0447\u0438\u0442\u0438\u043C \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0438\u043C\u0430? \u041F\u0440\u0438\u0442\u0438\u0441\u043D\u0435\u0442\u0435 " + " \u043D\u0430 \u043F\u043E\u0447\u0435\u0442\u043A\u0443 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0435 \u0431\u0438\u043B\u043E \u043A\u0430\u0434\u0430, \u0434\u0430 \u0434\u043E\u0434\u0430\u0442\u0435 \u043D\u043E\u0432\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434. +Create\ a\ view\ now=Креирај преглед Ñада +Dismiss=Откажи +blurb=ПоÑтоји велики број задатака. Да ли знате да можете да организујете ваше задатке по различитим прегледима? ПритиÑнете " + " на почетку Ñтранице било када, да додате нови преглед. diff --git a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_zh_TW.properties b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_zh_TW.properties index 793c26855ce7..b6284b572193 100644 --- a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_zh_TW.properties +++ b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_zh_TW.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\u770b\u8d77\u4f86\u6211\u5011\u6709\u592a\u591a\u4f5c\u696d\u4e86\u3002\u60a8\u77e5\u9053\u53ef\u4ee5\u900f\u904e\u4e0d\u540c\u7684\u8996\u666f\u8b93\u4f5c\u696d\u66f4\u6709\u689d\u7406\u55ce?\ - \u60a8\u96a8\u4fbf\u90fd\u53ef\u4ee5\u6309\u9801\u9762\u6700\u4e0a\u65b9\u7684 '+' \u4f86\u5efa\u7acb\u8996\u666f\u3002 -Create\ a\ view\ now=\u99ac\u4e0a\u5efa\u7acb\u8996\u666f -Dismiss=\u4e0d\u7ba1 +blurb=看起來我們有太多作業了。您知é“å¯ä»¥é€éŽä¸åŒçš„視景讓作業更有æ¢ç†å—Ž?\ + 您隨便都å¯ä»¥æŒ‰é é¢æœ€ä¸Šæ–¹çš„ '+' 來建立視景。 +Create\ a\ view\ now=馬上建立視景 +Dismiss=ä¸ç®¡ diff --git a/core/src/main/resources/hudson/fsp/Messages.properties b/core/src/main/resources/hudson/fsp/Messages.properties index 742e56f900bf..6610b40e96d7 100644 --- a/core/src/main/resources/hudson/fsp/Messages.properties +++ b/core/src/main/resources/hudson/fsp/Messages.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -WorkspaceSnapshotSCM.NoSuchJob=No such job \u2018{0}\u2019 exists. Perhaps you meant \u2018{1}\u2019? -WorkspaceSnapshotSCM.IncorrectJobType={0} isn\u2019t a job that has a workspace. -WorkspaceSnapshotSCM.NoBuild=There\u2019s no qualifying build for the {0} permalink in {1} -WorkspaceSnapshotSCM.NoSuchPermalink=No such permalink \u2018{0}\u2019 exists for {1} +WorkspaceSnapshotSCM.NoSuchJob=No such job ‘{0}’ exists. Perhaps you meant ‘{1}’? +WorkspaceSnapshotSCM.IncorrectJobType={0} isn’t a job that has a workspace. +WorkspaceSnapshotSCM.NoBuild=There’s no qualifying build for the {0} permalink in {1} +WorkspaceSnapshotSCM.NoSuchPermalink=No such permalink ‘{0}’ exists for {1} WorkspaceSnapshotSCM.NoWorkspace=\ - {0} {1} doesn\u2019t have a workspace snapshot attached,\n\ + {0} {1} doesn’t have a workspace snapshot attached,\n\ probably because when the build was done, no other jobs needed its workspace snapshot.\n\ Please run another build in {0} to get the workspace snapshot taken. diff --git a/core/src/main/resources/hudson/fsp/Messages_bg.properties b/core/src/main/resources/hudson/fsp/Messages_bg.properties index f51fe4ae7cd7..5328fbb1f63f 100644 --- a/core/src/main/resources/hudson/fsp/Messages_bg.properties +++ b/core/src/main/resources/hudson/fsp/Messages_bg.properties @@ -21,16 +21,16 @@ # THE SOFTWARE. WorkspaceSnapshotSCM.NoSuchJob=\ - \u0417\u0430\u0434\u0430\u0447\u0430 \u0441 \u0438\u043c\u0435 \u201e{0}\u201c \u043d\u0435 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430. \u201e{1}\u201c \u043b\u0438 \u0438\u043c\u0430\u0442\u0435 \u043f\u0440\u0435\u0434\u0432\u0438\u0434? + Задача Ñ Ð¸Ð¼Ðµ „{0}“ не ÑъщеÑтвува. „{1}“ ли имате предвид? WorkspaceSnapshotSCM.IncorrectJobType=\ - \u0417\u0430\u0434\u0430\u0447\u0430\u0442\u0430 \u201e{0}\u201c \u043d\u044f\u043c\u0430 \u0440\u0430\u0431\u043e\u0442\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e. + Задачата „{0}“ нÑма работно проÑтранÑтво. WorkspaceSnapshotSCM.NoBuild=\ - \u041d\u0438\u043a\u043e\u0435 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043d\u0435 \u0441\u044a\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0430 \u043d\u0430 \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u0430\u0442\u0430 \u0432\u0440\u044a\u0437\u043a\u0430 \u201e{0}\u201c \u043a\u044a\u043c \u043d\u0430\u0441\u043b\u0435\u0434\u0435\u043d\u043e\u0442\u043e\ - \u0440\u0430\u0431\u043e\u0442\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u043e\u0442 \u201e{1}\u201c. + Ðикое изграждане не ÑъответÑтва на поÑтоÑнната връзка „{0}“ към наÑледеното\ + работно проÑтранÑтво от „{1}“. WorkspaceSnapshotSCM.NoSuchPermalink=\ - \u041b\u0438\u043f\u0441\u0432\u0430 \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u0430\u0442\u0430 \u0432\u0440\u044a\u0437\u043a\u0430 \u201e{0}\u201c \u043a\u044a\u043c \u043d\u0430\u0441\u043b\u0435\u0434\u0435\u043d\u043e\u0442\u043e \u0440\u0430\u0431\u043e\u0442\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u043e\u0442 \u201e{1}\u201c. + ЛипÑва поÑтоÑнната връзка „{0}“ към наÑледеното работно проÑтранÑтво от „{1}“. WorkspaceSnapshotSCM.NoWorkspace=\ - \u041b\u0438\u043f\u0441\u0432\u0430 \u0440\u0430\u0431\u043e\u0442\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u043a\u044a\u043c \u0437\u0430\u0434\u0430\u0447\u0430 {0} \u0441 \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u0430 \u0432\u0440\u044a\u0437\u043a\u0430\ - {1}.\n\u041d\u0430\u0439-\u0432\u0435\u0440\u043e\u044f\u0442\u043d\u0430\u0442\u0430 \u043f\u0440\u0438\u0447\u0438\u043d\u0430 \u0435, \u0447\u0435 \u043d\u0438\u043a\u043e\u044f \u0434\u0440\u0443\u0433\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 \u043d\u0435 \u0441\u0435 \u0435 \u043d\u0443\u0436\u0434\u0430\u0435\u043b\u0430 \u043e\u0442\ - \u0440\u0430\u0431\u043e\u0442\u043d\u043e\u0442\u043e \u045d \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u043f\u043e \u0432\u0440\u0435\u043c\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e.\n\u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0439\u0442\u0435 \u043d\u043e\u0432\u043e\ - \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 {0}, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u0437\u0430\u043f\u0430\u0437\u0438 \u0441\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435\u0442\u043e \u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u043d\u043e\u0442\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e. + ЛипÑва работно проÑтранÑтво към задача {0} Ñ Ð¿Ð¾ÑтоÑнна връзка\ + {1}.\nÐай-вероÑтната причина е, че Ð½Ð¸ÐºÐ¾Ñ Ð´Ñ€ÑƒÐ³Ð° задача не Ñе е нуждаела от\ + работното Ñ Ð¿Ñ€Ð¾ÑтранÑтво по време на изграждането.\nСтартирайте ново\ + изграждане на {0}, за да Ñе запази ÑÑŠÑтоÑнието на работното проÑтранÑтво. diff --git a/core/src/main/resources/hudson/fsp/Messages_da.properties b/core/src/main/resources/hudson/fsp/Messages_da.properties index ab915ab31667..e1bb3bbddfc3 100644 --- a/core/src/main/resources/hudson/fsp/Messages_da.properties +++ b/core/src/main/resources/hudson/fsp/Messages_da.properties @@ -22,9 +22,9 @@ WorkspaceSnapshotSCM.NoSuchPermalink=Intet permalink ''{0}'' eksisterer for {1} WorkspaceSnapshotSCM.NoBuild=Der er intet kvalificeret byg til {0} permalinket i {1} -WorkspaceSnapshotSCM.IncorrectJobType={0} er ikke en jobtype der har et arbejdsomr\u00e5de. +WorkspaceSnapshotSCM.IncorrectJobType={0} er ikke en jobtype der har et arbejdsomrÃ¥de. WorkspaceSnapshotSCM.NoWorkspace=\ -{0} {1} har ikke noget arbejdsomr\u00e5de\u00f8jebliksbillede tilknyttet,\n\ -formentlig skyldes dette at ingen andre jobs havde behov for dette jobs arbejdsomr\u00e5de\u00f8jebliksbillede da bygget afsluttede\n\ -K\u00f8r endnu et byg i {0} for at f\u00e5 taget et arbejdsomr\u00e5de\u00f8jebliksbillede. -WorkspaceSnapshotSCM.NoSuchJob=Intet job ''{0}'' eksisterer. M\u00e5ske mente du ''{1}''? +{0} {1} har ikke noget arbejdsomrÃ¥deøjebliksbillede tilknyttet,\n\ +formentlig skyldes dette at ingen andre jobs havde behov for dette jobs arbejdsomrÃ¥deøjebliksbillede da bygget afsluttede\n\ +Kør endnu et byg i {0} for at fÃ¥ taget et arbejdsomrÃ¥deøjebliksbillede. +WorkspaceSnapshotSCM.NoSuchJob=Intet job ''{0}'' eksisterer. MÃ¥ske mente du ''{1}''? diff --git a/core/src/main/resources/hudson/fsp/Messages_de.properties b/core/src/main/resources/hudson/fsp/Messages_de.properties index eef15d1bb81d..de91b4c9a551 100644 --- a/core/src/main/resources/hudson/fsp/Messages_de.properties +++ b/core/src/main/resources/hudson/fsp/Messages_de.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -WorkspaceSnapshotSCM.NoSuchJob=Job \u201E{0}\u201C existiert nicht. Meinten Sie \u201E{1}\u201C? +WorkspaceSnapshotSCM.NoSuchJob=Job „{0}“ existiert nicht. Meinten Sie „{1}“? WorkspaceSnapshotSCM.IncorrectJobType={0} ist kein Job mit einem Arbeitsbereich. -WorkspaceSnapshotSCM.NoBuild=Es existiert kein passender Build f\u00fcr den Permalink \u201E{0}\u201C in {1}. -WorkspaceSnapshotSCM.NoSuchPermalink=Es existiert kein Permalink \u201E{0}\u201C f\u00fcr {1} +WorkspaceSnapshotSCM.NoBuild=Es existiert kein passender Build für den Permalink „{0}“ in {1}. +WorkspaceSnapshotSCM.NoSuchPermalink=Es existiert kein Permalink „{0}“ für {1} WorkspaceSnapshotSCM.NoWorkspace=\ - Mit {0} {1} ist kein Schnappschuss eines Arbeitsbereiches verkn\u00fcpft,\n\ - vermutlich weil zum Zeitpunkt des Builds kein anderer Job den Schnappschuss ben\u00f6tigte.\n\ + Mit {0} {1} ist kein Schnappschuss eines Arbeitsbereiches verknüpft,\n\ + vermutlich weil zum Zeitpunkt des Builds kein anderer Job den Schnappschuss benötigte.\n\ Starten Sie einen neuen Build in {0}, um einen Schnappschuss des Arbeitsbereiches erstellen zu lassen. diff --git a/core/src/main/resources/hudson/fsp/Messages_es.properties b/core/src/main/resources/hudson/fsp/Messages_es.properties index 31f6ea4dbf1a..5fc5ee0454aa 100644 --- a/core/src/main/resources/hudson/fsp/Messages_es.properties +++ b/core/src/main/resources/hudson/fsp/Messages_es.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -WorkspaceSnapshotSCM.NoSuchJob=No existe la tarea ''{0}'' . Quizás quieras decir ''{1}'' +WorkspaceSnapshotSCM.NoSuchJob=No existe la tarea ''{0}'' . Quizás quieras decir ''{1}'' WorkspaceSnapshotSCM.IncorrectJobType={0} no es una tarea con espacio de trabajo. -WorkspaceSnapshotSCM.NoBuild=No hay ninguna ejecución válida para el permalink {0} en {1} +WorkspaceSnapshotSCM.NoBuild=No hay ninguna ejecución válida para el permalink {0} en {1} WorkspaceSnapshotSCM.NoSuchPermalink=No existe el permalink ''{0}'' para {1} WorkspaceSnapshotSCM.NoWorkspace=\ - {0} {1} no tiene ningún espacio de trabajo,\n \ + {0} {1} no tiene ningún espacio de trabajo,\n \ es posible que no se haya ejecutado nunca o que ninguna otra tarea necesite su espacio de trabajo. diff --git a/core/src/main/resources/hudson/fsp/Messages_fr.properties b/core/src/main/resources/hudson/fsp/Messages_fr.properties index 6c129b6407dd..0158329643f0 100644 --- a/core/src/main/resources/hudson/fsp/Messages_fr.properties +++ b/core/src/main/resources/hudson/fsp/Messages_fr.properties @@ -25,6 +25,6 @@ WorkspaceSnapshotSCM.IncorrectJobType=Le job {0} n''a pas de workspace. WorkspaceSnapshotSCM.NoBuild=Il n''a pas de build pour le permalink {0} dans {1} WorkspaceSnapshotSCM.NoSuchPermalink=Il n''y a pas de permalink ''{0}'' pour {1} WorkspaceSnapshotSCM.NoWorkspace=\ - {0} {1} n''a pas de snapshot de workspace attach\u00E9,\n\ - probablement parce que quand le build s''est achev\u00E9, pas d''autre job n''avait besoin de son snapshot de workspace.\n\ + {0} {1} n''a pas de snapshot de workspace attaché,\n\ + probablement parce que quand le build s''est achevé, pas d''autre job n''avait besoin de son snapshot de workspace.\n\ Veuillez lancer un nouveau build dans {0} pour capturer le snapshot de workspace. diff --git a/core/src/main/resources/hudson/fsp/Messages_it.properties b/core/src/main/resources/hudson/fsp/Messages_it.properties index 9793964adaed..ff6c6038ddbe 100644 --- a/core/src/main/resources/hudson/fsp/Messages_it.properties +++ b/core/src/main/resources/hudson/fsp/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,7 +21,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -WorkspaceSnapshotSCM.IncorrectJobType={0} non è un lavoro con uno spazio di \ +WorkspaceSnapshotSCM.IncorrectJobType={0} non è un lavoro con uno spazio di \ lavoro. WorkspaceSnapshotSCM.NoBuild=Non esistono compilazioni qualificate per il \ collegamento permanente al/alla {0} in {1} @@ -30,7 +30,7 @@ WorkspaceSnapshotSCM.NoSuchJob=Non esiste un processo denominato "{0}". Forse \ WorkspaceSnapshotSCM.NoSuchPermalink=Il collegamento permanente "{0}" per \ "{1}" non esiste WorkspaceSnapshotSCM.NoWorkspace={0} {1} non ha un''istantanea spazio di \ - lavoro collegata,\nprobabilmente perché quando è stata eseguita la \ + lavoro collegata,\nprobabilmente perché quando è stata eseguita la \ compilazione nessun altro lavoro richiedeva la sua istantanea dello spazio \ di lavoro.\nEseguire un''altra compilazione in {0} per far generare \ l''istantanea dello spazio di lavoro. diff --git a/core/src/main/resources/hudson/fsp/Messages_ja.properties b/core/src/main/resources/hudson/fsp/Messages_ja.properties index 25d26e01aff5..c4084346e133 100644 --- a/core/src/main/resources/hudson/fsp/Messages_ja.properties +++ b/core/src/main/resources/hudson/fsp/Messages_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -WorkspaceSnapshotSCM.NoSuchJob=''{0}''\u3068\u3044\u3046\u30b8\u30e7\u30d6\u306f\u3042\u308a\u307e\u305b\u3093\u3002''{1}''\u306e\u3053\u3068\u3067\u3059\u304b? -WorkspaceSnapshotSCM.IncorrectJobType={0} \u306f\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9\u3092\u6301\u3064\u30b8\u30e7\u30d6\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 -WorkspaceSnapshotSCM.NoBuild={1} \u306e {0} \u3068\u3044\u3046\u6c38\u7d9a\u30ea\u30f3\u30af\u306b\u8a72\u5f53\u3059\u308b\u30d3\u30eb\u30c9\u306f\u3042\u308a\u307e\u305b\u3093\u3002 -WorkspaceSnapshotSCM.NoSuchPermalink={1}\u306b''{0}}''\u3068\u3044\u3046\u6c38\u7d9a\u30ea\u30f3\u30af\u306f\u3042\u308a\u307e\u305b\u3093\u3002 +WorkspaceSnapshotSCM.NoSuchJob=''{0}''ã¨ã„ã†ã‚¸ãƒ§ãƒ–ã¯ã‚ã‚Šã¾ã›ã‚“。''{1}''ã®ã“ã¨ã§ã™ã‹? +WorkspaceSnapshotSCM.IncorrectJobType={0} ã¯ãƒ¯ãƒ¼ã‚¯ã‚¹ãƒšãƒ¼ã‚¹ã‚’æŒã¤ã‚¸ãƒ§ãƒ–ã§ã¯ã‚ã‚Šã¾ã›ã‚“。 +WorkspaceSnapshotSCM.NoBuild={1} ã® {0} ã¨ã„ã†æ°¸ç¶šãƒªãƒ³ã‚¯ã«è©²å½“ã™ã‚‹ãƒ“ルドã¯ã‚ã‚Šã¾ã›ã‚“。 +WorkspaceSnapshotSCM.NoSuchPermalink={1}ã«''{0}}''ã¨ã„ã†æ°¸ç¶šãƒªãƒ³ã‚¯ã¯ã‚ã‚Šã¾ã›ã‚“。 diff --git a/core/src/main/resources/hudson/fsp/Messages_pt_BR.properties b/core/src/main/resources/hudson/fsp/Messages_pt_BR.properties index 29b6204710c5..be343e82ff53 100644 --- a/core/src/main/resources/hudson/fsp/Messages_pt_BR.properties +++ b/core/src/main/resources/hudson/fsp/Messages_pt_BR.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -WorkspaceSnapshotSCM.IncorrectJobType={0} n\u00E3o \u00E9 uma tarefa com um espa\u00E7o de trabalho +WorkspaceSnapshotSCM.IncorrectJobType={0} não é uma tarefa com um espaço de trabalho # No such permalink ''{0}'' exists for {1} -WorkspaceSnapshotSCM.NoSuchPermalink=N\u00E3o existe o link permanente ''{0}'' para {1} +WorkspaceSnapshotSCM.NoSuchPermalink=Não existe o link permanente ''{0}'' para {1} # There''s no qualifying build for the {0} permalink in {1} -WorkspaceSnapshotSCM.NoBuild=N\u00E3o h\u00E1 nenhuma constru\u00E7\u00E3o v\u00E1lida para o link permanente {0} em {1} +WorkspaceSnapshotSCM.NoBuild=Não há nenhuma construção válida para o link permanente {0} em {1} WorkspaceSnapshotSCM.NoWorkspace=\ - {0} {1} n\u00E3o tem um snapshot do workspace anexado, \n\ - provavelmente porque quando a constru\u00E7\u00E3o foi feita nenhuma outra tarefa precisou deste snapshot.\n\ - Por favor execute um outra constru\u00E7\u00E3o em {0} para que seja tirado um snapshot do espa\u00E7o de trabalho. -WorkspaceSnapshotSCM.NoSuchJob=N\u00E3o existe tal tarefa ''{0}''. Talvez voc\u00EA quis dizer ''{1}''? + {0} {1} não tem um snapshot do workspace anexado, \n\ + provavelmente porque quando a construção foi feita nenhuma outra tarefa precisou deste snapshot.\n\ + Por favor execute um outra construção em {0} para que seja tirado um snapshot do espaço de trabalho. +WorkspaceSnapshotSCM.NoSuchJob=Não existe tal tarefa ''{0}''. Talvez você quis dizer ''{1}''? diff --git a/core/src/main/resources/hudson/fsp/Messages_sr.properties b/core/src/main/resources/hudson/fsp/Messages_sr.properties index 067891e392c6..68a3f895e216 100644 --- a/core/src/main/resources/hudson/fsp/Messages_sr.properties +++ b/core/src/main/resources/hudson/fsp/Messages_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -WorkspaceSnapshotSCM.NoSuchJob=\u0417\u0430\u0434\u0430\u0442\u0430\u043A \u0441\u0430 \u0438\u043C\u0435\u043D\u043E\u043C "{0}" \u043D\u0435 \u043F\u043E\u0441\u0442\u043E\u0458\u0438. \u0414\u0430 \u043B\u0438 \u0441\u0442\u0435 \u043C\u0438\u0441\u043B\u0438\u043B\u0438 "{1}"? +WorkspaceSnapshotSCM.NoSuchJob=Задатак Ñа именом "{0}" не поÑтоји. Да ли Ñте миÑлили "{1}"? diff --git a/core/src/main/resources/hudson/fsp/Messages_zh_TW.properties b/core/src/main/resources/hudson/fsp/Messages_zh_TW.properties index 13ff4e6c4b7c..eb92b1f1d8ce 100644 --- a/core/src/main/resources/hudson/fsp/Messages_zh_TW.properties +++ b/core/src/main/resources/hudson/fsp/Messages_zh_TW.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -WorkspaceSnapshotSCM.NoSuchJob=\u6c92\u6709 ''{0}'' \u9019\u500b\u4f5c\u696d\u3002\u60a8\u6307\u7684\u662f ''{1}'' \u55ce? -WorkspaceSnapshotSCM.IncorrectJobType={0} \u4e26\u4e0d\u662f\u6709\u5de5\u4f5c\u5340\u7684\u4f5c\u696d\u3002 -WorkspaceSnapshotSCM.NoBuild={1} \u4e2d\u6c92\u6709\u7b26\u5408\u6c38\u7d50\u9023\u7d50 {0} \u7684\u5efa\u7f6e -WorkspaceSnapshotSCM.NoSuchPermalink={1} \u4e2d\u6c92\u6709\u6c38\u4e45\u9023\u7d50 ''{0}'' +WorkspaceSnapshotSCM.NoSuchJob=沒有 ''{0}'' 這個作業。您指的是 ''{1}'' å—Ž? +WorkspaceSnapshotSCM.IncorrectJobType={0} 並ä¸æ˜¯æœ‰å·¥ä½œå€çš„作業。 +WorkspaceSnapshotSCM.NoBuild={1} 中沒有符åˆæ°¸çµé€£çµ {0} 的建置 +WorkspaceSnapshotSCM.NoSuchPermalink={1} ä¸­æ²’æœ‰æ°¸ä¹…é€£çµ ''{0}'' WorkspaceSnapshotSCM.NoWorkspace=\ - {0} {1} \u6c92\u6709\u5de5\u4f5c\u5340\u5feb\u7167\uff0c\n\ - \u53ef\u80fd\u662f\u5efa\u7f6e\u5b8c\u6210\u6642\uff0c\u6c92\u6709\u5176\u4ed6\u4f5c\u696d\u9700\u8981\u5b83\u7684\u5de5\u4f5c\u5340\u5feb\u7167\u3002\n\ - \u8acb\u518d\u5efa\u7f6e {0} \u4e00\u6b21\uff0c\u7522\u751f\u5de5\u4f5c\u5340\u5feb\u7167\u3002 + {0} {1} 沒有工作å€å¿«ç…§ï¼Œ\n\ + å¯èƒ½æ˜¯å»ºç½®å®Œæˆæ™‚,沒有其他作業需è¦å®ƒçš„工作å€å¿«ç…§ã€‚\n\ + è«‹å†å»ºç½® {0} 一次,產生工作å€å¿«ç…§ã€‚ diff --git a/core/src/main/resources/hudson/init/impl/Messages_bg.properties b/core/src/main/resources/hudson/init/impl/Messages_bg.properties index daa25199de5d..a7d295b54989 100644 --- a/core/src/main/resources/hudson/init/impl/Messages_bg.properties +++ b/core/src/main/resources/hudson/init/impl/Messages_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. GroovyInitScript.init=\ - \u0418\u0437\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u0438\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u0449 \u0441\u043a\u0440\u0438\u043f\u0442 + Изпълнение на потребителÑки инициализиращ Ñкрипт InitialUserContent.init=\ - \u041f\u043e\u0434\u0433\u043e\u0442\u0432\u044f\u043d\u0435 \u043d\u0430 \u043f\u044a\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u043d\u043e\u0442\u043e \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 + ПодготвÑне на първоначалното потребителÑко Ñъдържание diff --git a/core/src/main/resources/hudson/init/impl/Messages_de.properties b/core/src/main/resources/hudson/init/impl/Messages_de.properties index 36f205d9fb23..3a1bd6db66ee 100644 --- a/core/src/main/resources/hudson/init/impl/Messages_de.properties +++ b/core/src/main/resources/hudson/init/impl/Messages_de.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -GroovyInitScript.init=Führe benutzerdefiniertes Initialisierungsskript aus +GroovyInitScript.init=Führe benutzerdefiniertes Initialisierungsskript aus InitialUserContent.init=Initialisiere benutzerdefinierte Inhalte diff --git a/core/src/main/resources/hudson/init/impl/Messages_it.properties b/core/src/main/resources/hudson/init/impl/Messages_it.properties index 5773717f4859..5aa31f840ee0 100644 --- a/core/src/main/resources/hudson/init/impl/Messages_it.properties +++ b/core/src/main/resources/hudson/init/impl/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/init/impl/Messages_ja.properties b/core/src/main/resources/hudson/init/impl/Messages_ja.properties index d02c1971e03e..4922f8cca190 100644 --- a/core/src/main/resources/hudson/init/impl/Messages_ja.properties +++ b/core/src/main/resources/hudson/init/impl/Messages_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -GroovyInitScript.init=\u30E6\u30FC\u30B6\u30FC\u5B9A\u7FA9\u306E\u521D\u671F\u5316\u30B9\u30AF\u30EA\u30D7\u30C8\u3092\u5B9F\u884C\u4E2D -InitialUserContent.init=\u30E6\u30FC\u30B6\u30FC\u30B3\u30F3\u30C6\u30F3\u30C4\u306E\u521D\u671F\u5316\u3092\u6E96\u5099\u4E2D +GroovyInitScript.init=ユーザー定義ã®åˆæœŸåŒ–スクリプトを実行中 +InitialUserContent.init=ユーザーコンテンツã®åˆæœŸåŒ–を準備中 diff --git a/core/src/main/resources/hudson/init/impl/Messages_pt_BR.properties b/core/src/main/resources/hudson/init/impl/Messages_pt_BR.properties index af3f923a900b..d9159b1ea3a4 100644 --- a/core/src/main/resources/hudson/init/impl/Messages_pt_BR.properties +++ b/core/src/main/resources/hudson/init/impl/Messages_pt_BR.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. # Executing user-defined init script -GroovyInitScript.init=Execu\u00e7\u00e3o de script de inicializa\u00e7\u00e3o definida pelo usu\u00e1rio +GroovyInitScript.init=Execução de script de inicialização definida pelo usuário # Preparing initial user content -InitialUserContent.init=Preparando o conte\u00fado inicial do usu\u00e1rio +InitialUserContent.init=Preparando o conteúdo inicial do usuário diff --git a/core/src/main/resources/hudson/init/impl/Messages_sr.properties b/core/src/main/resources/hudson/init/impl/Messages_sr.properties index 14020b90801e..779742dc3733 100644 --- a/core/src/main/resources/hudson/init/impl/Messages_sr.properties +++ b/core/src/main/resources/hudson/init/impl/Messages_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -GroovyInitScript.init=\u0418\u0437\u0432\u0440\u0448\u045A\u0430 \u043F\u0440\u0438\u043B\u0430\u0433\u043E\u0452\u0435\u043D\u0438\u0445 \u0438\u043D\u0438\u0446\u0438\u0430\u043B\u0438\u0437\u0430\u0446\u0438\u043E\u043D\u0438 \u043F\u0440\u043E\u0433\u0440\u0430\u043C -InitialUserContent.init=\u041F\u0440\u0438\u043F\u0440\u0435\u043C\u0430\u045A\u0435 \u043E\u0441\u043D\u043E\u0432\u043D\u0438 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0437\u0430 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430 +GroovyInitScript.init=Извршња прилагођених инициализациони програм +InitialUserContent.init=Припремање оÑновни Ñадржај за кориÑника diff --git a/core/src/main/resources/hudson/init/impl/Messages_zh_TW.properties b/core/src/main/resources/hudson/init/impl/Messages_zh_TW.properties index 124a122f1fce..d8634706fd67 100644 --- a/core/src/main/resources/hudson/init/impl/Messages_zh_TW.properties +++ b/core/src/main/resources/hudson/init/impl/Messages_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -GroovyInitScript.init=\u57f7\u884c\u4f7f\u7528\u8005\u81ea\u8a02\u521d\u59cb\u5316 Script -InitialUserContent.init=\u6e96\u5099\u521d\u59cb\u5316\u4f7f\u7528\u8005\u5167\u5bb9 +GroovyInitScript.init=執行使用者自訂åˆå§‹åŒ– Script +InitialUserContent.init=準備åˆå§‹åŒ–使用者內容 diff --git a/core/src/main/resources/hudson/lifecycle/Messages.properties b/core/src/main/resources/hudson/lifecycle/Messages.properties index d03001ae5095..3aa7c2b3135a 100644 --- a/core/src/main/resources/hudson/lifecycle/Messages.properties +++ b/core/src/main/resources/hudson/lifecycle/Messages.properties @@ -25,4 +25,4 @@ WindowsInstallerLink.Description=Installs Jenkins as a Windows service to this s WindowsSlaveInstaller.ConfirmInstallation=This will install an agent as a Windows service, so that a Jenkins agent starts automatically when the machine boots. WindowsSlaveInstaller.DotNetRequired=.NET Framework 4.0 or later is required for this feature WindowsSlaveInstaller.InstallationSuccessful=Installation was successful. Would you like to start the service now? -WindowsSlaveInstaller.RootFsDoesntExist=Agent root directory \u2018{0}\u2019 doesn\u2019t exist +WindowsSlaveInstaller.RootFsDoesntExist=Agent root directory ‘{0}’ doesn’t exist diff --git a/core/src/main/resources/hudson/lifecycle/Messages_bg.properties b/core/src/main/resources/hudson/lifecycle/Messages_bg.properties index b644b26d6422..2cde0c98caaf 100644 --- a/core/src/main/resources/hudson/lifecycle/Messages_bg.properties +++ b/core/src/main/resources/hudson/lifecycle/Messages_bg.properties @@ -21,17 +21,17 @@ # THE SOFTWARE. WindowsInstallerLink.DisplayName=\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435 \u043a\u0430\u0442\u043e \u0443\u0441\u043b\u0443\u0433\u0430 \u043d\u0430 Windows + ИнÑталиране като уÑлуга на Windows WindowsInstallerLink.Description=\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 Jenkins \u043a\u0430\u0442\u043e \u0443\u0441\u043b\u0443\u0433\u0430 \u043d\u0430 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0438\u044f \u043d\u0430 \u0442\u0430\u0437\u0438 \u0441\u0438\u0441\u0442\u0435\u043c\u0430 Windows, \u0437\u0430\ - \u0434\u0430 \u043c\u043e\u0436\u0435 \u0442\u043e\u0439 \u0434\u0430 \u0441\u0435 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430 \u0437\u0430\u0435\u0434\u043d\u043e \u0441 \u043c\u0430\u0448\u0438\u043d\u0430\u0442\u0430. + ИнÑталиране на Jenkins като уÑлуга на инÑÑ‚Ð°Ð»Ð¸Ñ€Ð°Ð½Ð¸Ñ Ð½Ð° тази ÑиÑтема Windows, за\ + да може той да Ñе Ñтартира заедно Ñ Ð¼Ð°ÑˆÐ¸Ð½Ð°Ñ‚Ð°. WindowsSlaveInstaller.DotNetRequired=\ - \u0417\u0430 \u0442\u043e\u0432\u0430 \u0441\u0435 \u0438\u0437\u0438\u0441\u043a\u0432\u0430 .NET Framework, \u0432\u0435\u0440\u0441\u0438\u044f 4.0 \u0438\u043b\u0438 \u043f\u043e-\u0432\u0438\u0441\u043e\u043a\u0430 + За това Ñе изиÑква .NET Framework, верÑÐ¸Ñ 4.0 или по-виÑока WindowsSlaveInstaller.InstallationSuccessful=\ - \u0423\u0441\u043f\u0435\u0448\u043d\u0430 \u0438\u043d\u0441\u0442\u0430\u043b\u0430\u0446\u0438\u044f. \u0414\u0430 \u0441\u0435 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430 \u043b\u0438 \u0443\u0441\u043b\u0443\u0433\u0430\u0442\u0430? + УÑпешна инÑталациÑ. Да Ñе Ñтартира ли уÑлугата? WindowsSlaveInstaller.RootFsDoesntExist=\ - \u041e\u0441\u043d\u043e\u0432\u043d\u0430\u0442\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u043d\u0430 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u0438\u044f \u0430\u0433\u0435\u043d\u0442 \u201e{0}\u201c \u043d\u0435 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430. + ОÑновната Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° Ð¿Ð¾Ð´Ñ‡Ð¸Ð½ÐµÐ½Ð¸Ñ Ð°Ð³ÐµÐ½Ñ‚ „{0}“ не ÑъщеÑтвува. # This will install an agent as a Windows service, so that a Jenkins agent starts automatically when the machine boots. WindowsSlaveInstaller.ConfirmInstallation=\ - \u0422\u043e\u0432\u0430 \u0449\u0435 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430 \u0443\u0441\u043b\u0443\u0433\u0430 \u043d\u0430 Windows, \u0442\u0430\u043a\u0430 \u0447\u0435 Jenkins \u0449\u0435 \u0441\u0435 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430 \u0437\u0430\u0435\u0434\u043d\u043e \u0441\ - \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u0430. + Това ще инÑталира уÑлуга на Windows, така че Jenkins ще Ñе Ñтартира заедно Ñ\ + компютъра. diff --git a/core/src/main/resources/hudson/lifecycle/Messages_da.properties b/core/src/main/resources/hudson/lifecycle/Messages_da.properties index 26777957b218..d4d3a4a4b1b9 100644 --- a/core/src/main/resources/hudson/lifecycle/Messages_da.properties +++ b/core/src/main/resources/hudson/lifecycle/Messages_da.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. WindowsInstallerLink.DisplayName=Installer som Windows service -WindowsSlaveInstaller.DotNetRequired=Denne feature kr\u00e6ver .NET framework 4.0 eller nyere +WindowsSlaveInstaller.DotNetRequired=Denne feature kræver .NET framework 4.0 eller nyere WindowsSlaveInstaller.InstallationSuccessful=Installationen lykkedes. Vil du gerne starte service''en nu ? -WindowsInstallerLink.Description=Installerer Jenkins som en Windows service p\u00e5 denne computer, s\u00e5 Jenkins starter automatisk n\u00e5r computeren starter op. +WindowsInstallerLink.Description=Installerer Jenkins som en Windows service pÃ¥ denne computer, sÃ¥ Jenkins starter automatisk nÃ¥r computeren starter op. diff --git a/core/src/main/resources/hudson/lifecycle/Messages_de.properties b/core/src/main/resources/hudson/lifecycle/Messages_de.properties index 44f53367576f..b134997c4299 100644 --- a/core/src/main/resources/hudson/lifecycle/Messages_de.properties +++ b/core/src/main/resources/hudson/lifecycle/Messages_de.properties @@ -24,7 +24,7 @@ WindowsInstallerLink.DisplayName=Als Windows-Dienst installieren WindowsInstallerLink.Description=\ Installiert Jenkins als Windows-Dienst: Dadurch wird Jenkins \ automatisch nach einem Neustart des Rechners gestartet. -WindowsSlaveInstaller.DotNetRequired=.NET Framework 4.0 oder h\u00F6her ist f\u00FCr diesen Vorgang erforderlich. -WindowsSlaveInstaller.InstallationSuccessful=Installation erfolgreich. M\u00F6chten Sie den Dienst jetzt starten? +WindowsSlaveInstaller.DotNetRequired=.NET Framework 4.0 oder höher ist für diesen Vorgang erforderlich. +WindowsSlaveInstaller.InstallationSuccessful=Installation erfolgreich. Möchten Sie den Dienst jetzt starten? WindowsSlaveInstaller.ConfirmInstallation=Dies wird den Agenten als Windows-Dienst installieren, so dass er automatisch gestartet wird, wenn das System startet. -WindowsSlaveInstaller.RootFsDoesntExist=Wurzelverzeichnis \u2018{0}\u2019 des Agenten existiert nicht. +WindowsSlaveInstaller.RootFsDoesntExist=Wurzelverzeichnis ‘{0}’ des Agenten existiert nicht. diff --git a/core/src/main/resources/hudson/lifecycle/Messages_es.properties b/core/src/main/resources/hudson/lifecycle/Messages_es.properties index f07530ef2ef0..2e119d1b6eca 100644 --- a/core/src/main/resources/hudson/lifecycle/Messages_es.properties +++ b/core/src/main/resources/hudson/lifecycle/Messages_es.properties @@ -22,7 +22,7 @@ WindowsInstallerLink.DisplayName=Instalar como un servicio de Windows WindowsInstallerLink.Description=Instalar Jenkins como un servicio de Windows en este sistema, de manera que Jenkins se inicie cuando el sistema arranque. -WindowsSlaveInstaller.ConfirmInstallation=Esto instalará el agente como un servicio de Windows. -WindowsSlaveInstaller.DotNetRequired=Es necesario tener instalado: .NET Framework 4.0 o posterior, para que esta característica funcione. -WindowsSlaveInstaller.InstallationSuccessful=La instalación ha sido correcta. ¿Quieres arrancar el servicio ahora? +WindowsSlaveInstaller.ConfirmInstallation=Esto instalará el agente como un servicio de Windows. +WindowsSlaveInstaller.DotNetRequired=Es necesario tener instalado: .NET Framework 4.0 o posterior, para que esta característica funcione. +WindowsSlaveInstaller.InstallationSuccessful=La instalación ha sido correcta. ¿Quieres arrancar el servicio ahora? WindowsSlaveInstaller.RootFsDoesntExist=El directorio raiz {0} en el agente no existe. diff --git a/core/src/main/resources/hudson/lifecycle/Messages_fr.properties b/core/src/main/resources/hudson/lifecycle/Messages_fr.properties index aa09ad4eb709..e76abc01cf83 100644 --- a/core/src/main/resources/hudson/lifecycle/Messages_fr.properties +++ b/core/src/main/resources/hudson/lifecycle/Messages_fr.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. WindowsInstallerLink.DisplayName=Installer en tant que Service Windows -WindowsInstallerLink.Description=Installe Jenkins comme un service Windows pour ce syst\u00E8me, afin que Jenkins puisse se lancer automatiquement au d\u00E9marrage de la machine. +WindowsInstallerLink.Description=Installe Jenkins comme un service Windows pour ce système, afin que Jenkins puisse se lancer automatiquement au démarrage de la machine. diff --git a/core/src/main/resources/hudson/lifecycle/Messages_it.properties b/core/src/main/resources/hudson/lifecycle/Messages_it.properties index 3bc9f08c9eb7..6b8cc4f8a28f 100644 --- a/core/src/main/resources/hudson/lifecycle/Messages_it.properties +++ b/core/src/main/resources/hudson/lifecycle/Messages_it.properties @@ -25,10 +25,10 @@ WindowsInstallerLink.Description=Installa Jenkins su questo sistema come \ servizio Windows in modo che possa avviarsi automaticamente all''avvio del \ sistema. WindowsInstallerLink.DisplayName=Installa come servizio Windows -WindowsSlaveInstaller.ConfirmInstallation=Quest''opzione installer\u00e0 un agente \ +WindowsSlaveInstaller.ConfirmInstallation=Quest''opzione installerà un agente \ come servizio Windows in modo da far avviare automaticamente un agente \ Jenkins all''avvio del sistema. -WindowsSlaveInstaller.DotNetRequired=Per questa funzionalit\u00e0 \u00e8 richiesto .NET \ +WindowsSlaveInstaller.DotNetRequired=Per questa funzionalità è richiesto .NET \ Framework 4.0 o una versione successiva WindowsSlaveInstaller.InstallationSuccessful=Installazione terminata con \ successo. Avviare il servizio ora? diff --git a/core/src/main/resources/hudson/lifecycle/Messages_ja.properties b/core/src/main/resources/hudson/lifecycle/Messages_ja.properties index d88b0a46f368..99da1c9e37ef 100644 --- a/core/src/main/resources/hudson/lifecycle/Messages_ja.properties +++ b/core/src/main/resources/hudson/lifecycle/Messages_ja.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -WindowsInstallerLink.DisplayName=Windows\u306E\u30B5\u30FC\u30D3\u30B9\u3068\u3057\u3066\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB -WindowsInstallerLink.Description=\u30DE\u30B7\u30F3\u304C\u30D6\u30FC\u30C8\u3057\u305F\u3068\u304D\u306BJenkins\u304C\u81EA\u52D5\u7684\u306B\u958B\u59CB\u3059\u308B\u3088\u3046\u306B\u3001Windows\u306E\u30B5\u30FC\u30D3\u30B9\u3068\u3057\u3066Jenkins\u3092\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3057\u307E\u3059\u3002 -WindowsSlaveInstaller.DotNetRequired=.NET Framework 4.0 \u4EE5\u964D\u304C\u5FC5\u8981\u3067\u3059\u3002 -WindowsSlaveInstaller.InstallationSuccessful=\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u304C\u6210\u529F\u3057\u307E\u3057\u305F\u3002\u4ECA\u3059\u3050\u30B5\u30FC\u30D3\u30B9\u3092\u958B\u59CB\u3057\u307E\u3059\u304B? -WindowsSlaveInstaller.RootFsDoesntExist=\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u306E\u30EB\u30FC\u30C8\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA ''{0}'' \u304C\u5B58\u5728\u3057\u307E\u305B\u3093\u3002 +WindowsInstallerLink.DisplayName=Windowsã®ã‚µãƒ¼ãƒ“スã¨ã—ã¦ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ« +WindowsInstallerLink.Description=マシンãŒãƒ–ートã—ãŸã¨ãã«JenkinsãŒè‡ªå‹•çš„ã«é–‹å§‹ã™ã‚‹ã‚ˆã†ã«ã€Windowsã®ã‚µãƒ¼ãƒ“スã¨ã—ã¦Jenkinsをインストールã—ã¾ã™ã€‚ +WindowsSlaveInstaller.DotNetRequired=.NET Framework 4.0 以é™ãŒå¿…è¦ã§ã™ã€‚ +WindowsSlaveInstaller.InstallationSuccessful=インストールãŒæˆåŠŸã—ã¾ã—ãŸã€‚今ã™ãサービスを開始ã—ã¾ã™ã‹? +WindowsSlaveInstaller.RootFsDoesntExist=エージェントã®ãƒ«ãƒ¼ãƒˆãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒª ''{0}'' ãŒå­˜åœ¨ã—ã¾ã›ã‚“。 diff --git a/core/src/main/resources/hudson/lifecycle/Messages_pl.properties b/core/src/main/resources/hudson/lifecycle/Messages_pl.properties index c9b3c71d6f5e..51a964e099f3 100644 --- a/core/src/main/resources/hudson/lifecycle/Messages_pl.properties +++ b/core/src/main/resources/hudson/lifecycle/Messages_pl.properties @@ -19,7 +19,7 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -WindowsInstallerLink.DisplayName=Zainstaluj jako us\u0142ug\u0119 systemow\u0105 -WindowsSlaveInstaller.DotNetRequired=.NET Framework 4.0 lub nowszy jest wymagany dla tej funkcjonalno\u015Bci -WindowsSlaveInstaller.InstallationSuccessful=Instalacja zako\u0144czona pomy\u015Blnie. Chcesz uruchomi\u0107 us\u0142ug\u0119 teraz? -WindowsInstallerLink.Description=Zainstaluj Jenkinsa jako us\u0142ug\u0119 systemow\u0105, aby uruchomi\u0107 Jenkinsa automatycznie po uruchomieniu systemu. +WindowsInstallerLink.DisplayName=Zainstaluj jako usÅ‚ugÄ™ systemowÄ… +WindowsSlaveInstaller.DotNetRequired=.NET Framework 4.0 lub nowszy jest wymagany dla tej funkcjonalnoÅ›ci +WindowsSlaveInstaller.InstallationSuccessful=Instalacja zakoÅ„czona pomyÅ›lnie. Chcesz uruchomić usÅ‚ugÄ™ teraz? +WindowsInstallerLink.Description=Zainstaluj Jenkinsa jako usÅ‚ugÄ™ systemowÄ…, aby uruchomić Jenkinsa automatycznie po uruchomieniu systemu. diff --git a/core/src/main/resources/hudson/lifecycle/Messages_pt_BR.properties b/core/src/main/resources/hudson/lifecycle/Messages_pt_BR.properties index aa6f8c00b455..f499828207b3 100644 --- a/core/src/main/resources/hudson/lifecycle/Messages_pt_BR.properties +++ b/core/src/main/resources/hudson/lifecycle/Messages_pt_BR.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -WindowsInstallerLink.DisplayName=Instalar como um servi\u00E7o do Windows -WindowsSlaveInstaller.DotNetRequired=Framework .NET 4.0 ou superior \u00E9 necess\u00E1rio -WindowsSlaveInstaller.InstallationSuccessful=Instala\u00E7\u00E3o efetuada com sucesso. Gostaria de iniciar o servi\u00E7o agora? -WindowsInstallerLink.Description=Instala o Jenkins como um servi\u00E7o do Windows, ent\u00E3o ser\u00E1 iniciado junto com o sistema operacional -WindowsSlaveInstaller.RootFsDoesntExist=O diret\u00F3rio raiz do agente '{0}' n\u00E3o existe -WindowsSlaveInstaller.ConfirmInstallation=Isto ir\u00E1 instalar o agente como um servi\u00E7o do Windows de forma que o agente do Jenkins iniciar\u00E1 automaticamente quando a m\u00E1quina iniciar. +WindowsInstallerLink.DisplayName=Instalar como um serviço do Windows +WindowsSlaveInstaller.DotNetRequired=Framework .NET 4.0 ou superior é necessário +WindowsSlaveInstaller.InstallationSuccessful=Instalação efetuada com sucesso. Gostaria de iniciar o serviço agora? +WindowsInstallerLink.Description=Instala o Jenkins como um serviço do Windows, então será iniciado junto com o sistema operacional +WindowsSlaveInstaller.RootFsDoesntExist=O diretório raiz do agente '{0}' não existe +WindowsSlaveInstaller.ConfirmInstallation=Isto irá instalar o agente como um serviço do Windows de forma que o agente do Jenkins iniciará automaticamente quando a máquina iniciar. diff --git a/core/src/main/resources/hudson/lifecycle/Messages_sr.properties b/core/src/main/resources/hudson/lifecycle/Messages_sr.properties index 915e8d88b3bc..e700411d9bf7 100644 --- a/core/src/main/resources/hudson/lifecycle/Messages_sr.properties +++ b/core/src/main/resources/hudson/lifecycle/Messages_sr.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -WindowsInstallerLink.DisplayName=\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0458 \u043A\u0430\u043E Windows \u0441\u0435\u0440\u0432\u0438\u0441 -WindowsInstallerLink.Description=\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430 Jenkins \u043A\u0430\u043E Windows \u0441\u0435\u0440\u0432\u0438\u0441 \u043A\u043E\u0458\u0438 \u0441\u0435 \u0430\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0435 \u043A\u0430\u0434\u0430 \u043F\u043E\u0447\u043D\u0435 \u043C\u0430\u0448\u0438\u043D\u0430. -WindowsSlaveInstaller.ConfirmInstallation=\u041E\u043F\u0435\u0440\u0430\u0446\u0438\u0458\u0430 \u045B\u0435 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0442\u0438 \u0430\u0433\u0435\u043D\u0442 \u043A\u043E\u0458\u0438 \u0441\u0435 \u0430\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0435 \u043A\u0430\u0434\u0430 \u043F\u043E\u0447\u043D\u0435 \u043C\u0430\u0448\u0438\u043D\u0430. -WindowsSlaveInstaller.InstallationSuccessful=\u0423\u0441\u043F\u0435\u0448\u043D\u0430 \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430. \u0414\u0430 \u0441\u0435 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u0441\u0430\u0434\u0430 \u043F\u043E\u043A\u0440\u0435\u043D\u0435\u0442\u0435 \u0441\u0435\u0440\u0432\u0438\u0441? -WindowsSlaveInstaller.DotNetRequired=\u0417\u0430 \u0442\u043E \u043D\u0438\u0458\u0435 \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E .NET Framework 4.0 \u0438\u043B\u0438 \u043D\u043E\u0432\u0438\u0458\u0435 -WindowsSlaveInstaller.RootFsDoesntExist=\u041E\u0441\u043D\u043E\u0432\u043D\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C \u0430\u0433\u0435\u043D\u0442\u0430 "{0}" \u043D\u0435 \u043F\u043E\u0441\u0442\u043E\u0458\u0438. +WindowsInstallerLink.DisplayName=ИнÑталирај као Windows ÑÐµÑ€Ð²Ð¸Ñ +WindowsInstallerLink.Description=ИнÑталира Jenkins као Windows ÑÐµÑ€Ð²Ð¸Ñ ÐºÐ¾Ñ˜Ð¸ Ñе аутоматÑко покрене када почне машина. +WindowsSlaveInstaller.ConfirmInstallation=Операција ће инÑталирати агент који Ñе аутоматÑко покрене када почне машина. +WindowsSlaveInstaller.InstallationSuccessful=УÑпешна инÑталација. Да Ñе желите да Ñада покренете ÑервиÑ? +WindowsSlaveInstaller.DotNetRequired=За то није потребно .NET Framework 4.0 или новије +WindowsSlaveInstaller.RootFsDoesntExist=ОÑновни директоријум агента "{0}" не поÑтоји. diff --git a/core/src/main/resources/hudson/lifecycle/Messages_zh_TW.properties b/core/src/main/resources/hudson/lifecycle/Messages_zh_TW.properties index 4f74a2c17ef0..27ef89ad12ec 100644 --- a/core/src/main/resources/hudson/lifecycle/Messages_zh_TW.properties +++ b/core/src/main/resources/hudson/lifecycle/Messages_zh_TW.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -WindowsInstallerLink.DisplayName=\u5b89\u88dd\u6210 Windows \u670d\u52d9 -WindowsInstallerLink.Description=\u5c07 Jenkins \u5b89\u88dd\u6210 Windows \u670d\u52d9\uff0c\u958b\u6a5f\u5f8c Jenkins \u5c31\u6703\u81ea\u52d5\u555f\u52d5\u3002 -WindowsSlaveInstaller.DotNetRequired=\u672c\u529f\u80fd\u9700\u8981 .NET Framework 4.0 \u6216\u662f\u66f4\u65b0\u7684\u7248\u672c -WindowsSlaveInstaller.InstallationSuccessful=\u5b89\u88dd\u5b8c\u6210\u3002\u60a8\u8981\u99ac\u4e0a\u555f\u52d5\u670d\u52d9\u55ce? +WindowsInstallerLink.DisplayName=安è£æˆ Windows æœå‹™ +WindowsInstallerLink.Description=å°‡ Jenkins 安è£æˆ Windows æœå‹™ï¼Œé–‹æ©Ÿå¾Œ Jenkins 就會自動啟動。 +WindowsSlaveInstaller.DotNetRequired=æœ¬åŠŸèƒ½éœ€è¦ .NET Framework 4.0 或是更新的版本 +WindowsSlaveInstaller.InstallationSuccessful=安è£å®Œæˆã€‚您è¦é¦¬ä¸Šå•Ÿå‹•æœå‹™å—Ž? diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_bg.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_bg.properties index bf31e3361a66..d0f209a05e09 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_bg.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_bg.properties @@ -24,11 +24,11 @@ # If for some reason the service fails to start, please check the Windows event log for errors and consult the wiki page \ # located at the official wiki. blurb=\ - \u0421\u043b\u0435\u0434 \u043d\u044f\u043a\u043e\u043b\u043a\u043e \u0441\u0435\u043a\u0443\u043d\u0434\u0438 \u0442\u0440\u044f\u0431\u0432\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0434\u0430 \u0431\u044a\u0434\u0435\u0442\u0435 \u043f\u0440\u0435\u043d\u0430\u0441\u043e\u0447\u0435\u043d\u0438 \u043a\u044a\u043c \u043d\u043e\u0432\u0438\u044f\ - Jenkins. \u0410\u043a\u043e \u0442\u043e\u0432\u0430 \u043d\u0435 \u0441\u0442\u0430\u043d\u0435 \u0432 \u043d\u044f\u043a\u0430\u043a\u0432\u043e \u0440\u0430\u0437\u0443\u043c\u043d\u043e \u0432\u0440\u0435\u043c\u0435, \u043f\u0440\u043e\u0432\u0435\u0440\u0435\u0442\u0435 \u0436\u0443\u0440\u043d\u0430\u043b\u0430 \u0437\u0430\ - \u0441\u044a\u0431\u0438\u0442\u0438\u044f \u043d\u0430 Windows \u0438 \u043f\u043e\u0441\u0435\u0442\u0435\u0442\u0435 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u0442\u0430\ - \u0437\u0430 \u0442\u043e\u0437\u0438 \u043f\u0440\u043e\u0431\u043b\u0435\u043c \u0432 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u043d\u043e\u0442\u043e \u0443\u0438\u043a\u0438 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430. + След нÑколко Ñекунди Ñ‚Ñ€Ñбва автоматично да бъдете пренаÑочени към новиÑ\ + Jenkins. Ðко това не Ñтане в нÑкакво разумно време, проверете журнала за\ + ÑÑŠÐ±Ð¸Ñ‚Ð¸Ñ Ð½Ð° Windows и поÑетете Ñтраницата\ + за този проблем в официалното уики на проекта. # located at the official wiki. Please\ wait\ while\ Jenkins\ is\ restarting=\ - \u0418\u0437\u0447\u0430\u043a\u0430\u0439\u0442\u0435 \u0434\u043e\u043a\u0430\u0442\u043e Jenkins \u0441\u0435 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430 + Изчакайте докато Jenkins Ñе реÑтартира diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_da.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_da.properties index 8c7dce761720..40b255f03e5c 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_da.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_da.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Please\ wait\ while\ Jenkins\ is\ restarting=Vent venligst imens Jenkins genstarter -blurb=Du vil automatisk blive taget til din nye Jenkins om f\u00e5 sekunder. \ -Hvis service''en af uvisse \u00e5rsager ikke starter op, kig i Windows event loggen for fejlmeddelelser og konsult\u00e9r \ +blurb=Du vil automatisk blive taget til din nye Jenkins om fÃ¥ sekunder. \ +Hvis service''en af uvisse Ã¥rsager ikke starter op, kig i Windows event loggen for fejlmeddelelser og konsultér \ diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_de.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_de.properties index 344f79ec77e9..a4a71e4c5046 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_de.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_de.properties @@ -1,4 +1,4 @@ -Please\ wait\ while\ Jenkins\ is\ restarting=Bitte warten Sie, während Jenkins neu gestartet wird +Please\ wait\ while\ Jenkins\ is\ restarting=Bitte warten Sie, während Jenkins neu gestartet wird blurb=Sie sollten automatisch in wenigen Sekunden auf die neue Jenkins-Instanz weitergeleitet werden. \ Sollte der Windows-Dienst nicht starten, suchen Sie im Windows Ereignisprotokoll nach Fehlermeldungen und lesen Sie \ weitere Hinweise im Wiki. diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_es.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_es.properties index 02896eb79850..eaf1dacc93fa 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_es.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_es.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Serás redirigido automáticamente al nuevo Jenkins en unos segundos. \ - Si por alguna razón el servicio falla, consulta el ''log'' de eventos de windows \ - y echa un vistazo a esta página. +blurb=Serás redirigido automáticamente al nuevo Jenkins en unos segundos. \ + Si por alguna razón el servicio falla, consulta el ''log'' de eventos de windows \ + y echa un vistazo a esta página. Please\ wait\ while\ Jenkins\ is\ restarting=Por favor espera mientras Jenkins es reiniciado diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_fr.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_fr.properties index a5ad147f2ab1..9a849c5412ca 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_fr.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_fr.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Please\ wait\ while\ Jenkins\ is\ restarting=Veuillez patienter pendant le red\u00E9marrage de Jenkins -blurb=Vous devriez \u00EAtre emmen\u00E9 automatiquement vers la nouvelle instance \ +Please\ wait\ while\ Jenkins\ is\ restarting=Veuillez patienter pendant le redémarrage de Jenkins +blurb=Vous devriez être emmené automatiquement vers la nouvelle instance \ de Jenkins dans quelques secondes. \ - Si par hasard le service ne parvient pas \u00E0 se lancer, v\u00E9rifiez les logs \ - d''\u00E9v\u00E8nements Windows et consultez \ + Si par hasard le service ne parvient pas à se lancer, vérifiez les logs \ + d''évènements Windows et consultez \ la page wiki. diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_it.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_it.properties index 4bd1de4a0b10..c35b5ce26f8f 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_it.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -27,6 +27,6 @@ blurb=Si dovrebbe essere reindirizzati alla nuova istanza di Jenkins entro \ errori e consultare la pagina wiki sul \ wiki \ ufficiale. -Please\ wait\ while\ Jenkins\ is\ restarting=Attendere finché Jenkins viene \ +Please\ wait\ while\ Jenkins\ is\ restarting=Attendere finché Jenkins viene \ riavviato Restarting\ Jenkins=Riavvio di Jenkins in corso diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_ja.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_ja.properties index 158b9370ad0d..2ff75d784458 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_ja.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\u6570\u79D2\u3067\u81EA\u52D5\u7684\u306B\u65B0\u3057\u3044Jenkins\u306B\u63A5\u7D9A\u3057\u307E\u3059\u3002\ - \u3082\u3057\u3001\u4F55\u3089\u304B\u306E\u7406\u7531\u3067\u30B5\u30FC\u30D3\u30B9\u306E\u958B\u59CB\u306B\u5931\u6557\u3059\u308B\u5834\u5408\u306F\u3001Windows\u306E\u30A4\u30D9\u30F3\u30C8\u30ED\u30B0\u306B\u30A8\u30E9\u30FC\u304C\u306A\u3044\u304B\u78BA\u8A8D\u3057\u3066\u3001\ - Wiki\u3092\u53C2\u7167\u3057\u3066\u304F\u3060\u3055\u3044\u3002 -Please\ wait\ while\ Jenkins\ is\ restarting=Jenkins\u3092\u518D\u8D77\u52D5\u3057\u307E\u3059\u306E\u3067\u3001\u3057\u3070\u3089\u304F\u304A\u5F85\u3061\u304F\u3060\u3055\u3044\u3002 +blurb=数秒ã§è‡ªå‹•çš„ã«æ–°ã—ã„Jenkinsã«æŽ¥ç¶šã—ã¾ã™ã€‚\ + ã‚‚ã—ã€ä½•ã‚‰ã‹ã®ç†ç”±ã§ã‚µãƒ¼ãƒ“スã®é–‹å§‹ã«å¤±æ•—ã™ã‚‹å ´åˆã¯ã€Windowsã®ã‚¤ãƒ™ãƒ³ãƒˆãƒ­ã‚°ã«ã‚¨ãƒ©ãƒ¼ãŒãªã„ã‹ç¢ºèªã—ã¦ã€\ + Wikiã‚’å‚ç…§ã—ã¦ãã ã•ã„。 +Please\ wait\ while\ Jenkins\ is\ restarting=Jenkinsã‚’å†èµ·å‹•ã—ã¾ã™ã®ã§ã€ã—ã°ã‚‰ããŠå¾…ã¡ãã ã•ã„。 diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_pt_BR.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_pt_BR.properties index 6c364485c332..99e8dbff6078 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_pt_BR.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_pt_BR.properties @@ -22,6 +22,6 @@ Please\ wait\ while\ Jenkins\ is\ restarting= Por favor aguarde enquanto o Jenkins reiniciar Restarting\ Jenkins=Reiniciando o Jenkins -blurb=Voc\u00EA deve ser levado automaticamente para o novo Jenkins em alguns segundos. \ - Se for alguma raz\u00E3o o servi\u00E7o falhar a ser iniciado por favor verifique o registrador de eventos do Windows e consulte a p\u00E1gina wiki \ +blurb=Você deve ser levado automaticamente para o novo Jenkins em alguns segundos. \ + Se for alguma razão o serviço falhar a ser iniciado por favor verifique o registrador de eventos do Windows e consulte a página wiki \ localizada no wiki oficial. diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_sr.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_sr.properties index 45a3755cbea8..7e73d6ecc890 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_sr.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Please\ wait\ while\ Jenkins\ is\ restarting=\u041C\u043E\u043B\u0438\u043C\u043E \u0432\u0430\u0441 \u0441\u0430\u0447\u0435\u043A\u0430\u0458\u0442\u0435 \u0434\u043E\u043A \u0441\u0435 \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0435 Jenkins -blurb=\u0411\u0438\u045B\u0435\u0442\u0435 \u043C\u043E\u043C\u0435\u043D\u0442\u0430\u043B\u043D\u043E \u0430\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0438 \u043D\u0430\u0432\u0435\u0441\u0442\u0438 \u043D\u0430 Jenkins.\ -\u0410\u043A\u043E \u0438\u0437 \u043D\u0435\u043A\u043E\u0433 \u0440\u0430\u0437\u043B\u043E\u0433\u0430 \u0441\u0435\u0440\u0432\u0438\u0441 \u043D\u0435 \u0440\u0430\u0434\u0438, \u043F\u0440\u043E\u0432\u0435\u0440\u0438\u0442\u0435 Windows \u0436\u0443\u0440\u043D\u0430\u043B \u0434\u043E\u0433\u0430\u0452\u0430\u0458\u0430 \u043D\u0430 \u0433\u0440\u0435\u0448\u043A\u0435 \u0438\u043B\u0438 \u0441\u0435 \u043E\u0431\u0440\u0430\u0442\u0438\u0442\u0435 \u0412\u0438\u043A\u0438 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0438 <\u0430 href="https://www.jenkins.io/redirect/troubleshooting/windows-service-fails-to-start"">\u0437\u0432\u0430\u043D\u0438\u0447\u043D\u043E\u0433 \u0412\u0438\u043A\u0438. +Please\ wait\ while\ Jenkins\ is\ restarting=Молимо Ð²Ð°Ñ Ñачекајте док Ñе поново покрене Jenkins +blurb=Бићете моментално аутоматÑки навеÑти на Jenkins.\ +Ðко из неког разлога ÑÐµÑ€Ð²Ð¸Ñ Ð½Ðµ ради, проверите Windows журнал догађаја на грешке или Ñе обратите Вики Ñтраници <а href="https://www.jenkins.io/redirect/troubleshooting/windows-service-fails-to-start"">званичног Вики. diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_zh_TW.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_zh_TW.properties index 1ffceb5225e5..6ca20c03ecbe 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_zh_TW.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_zh_TW.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\u5e7e\u79d2\u5f8c\u60a8\u5c31\u6703\u88ab\u5e36\u5230\u65b0\u7684 Jenkins \u88e1\u3002\ - \u5982\u679c\u670d\u52d9\u7121\u6cd5\u555f\u52d5\uff0c\u8acb\u6aa2\u67e5 Windows \u4e8b\u4ef6\u65e5\u8a8c\uff0c\u4e26\u53c3\u8003\u7dda\u4e0a Wiki \u5c08\u9801\u3002 +blurb=幾秒後您就會被帶到新的 Jenkins 裡。\ + 如果æœå‹™ç„¡æ³•å•Ÿå‹•ï¼Œè«‹æª¢æŸ¥ Windows 事件日誌,並åƒè€ƒç·šä¸Š Wiki å°ˆé ã€‚ -Please\ wait\ while\ Jenkins\ is\ restarting=Jenkins \u91cd\u65b0\u555f\u52d5\u4e2d\uff0c\u8acb\u7a0d\u5019 +Please\ wait\ while\ Jenkins\ is\ restarting=Jenkins é‡æ–°å•Ÿå‹•ä¸­ï¼Œè«‹ç¨å€™ diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_bg.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_bg.properties index 55244f7fc531..1f3cc3b854c8 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_bg.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_bg.properties @@ -21,21 +21,21 @@ # THE SOFTWARE. Install=\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435 + ИнÑталиране Install\ as\ Windows\ Service=\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435 \u043a\u0430\u0442\u043e \u0443\u0441\u043b\u0443\u0433\u0430 \u043d\u0430 Windows + ИнÑталиране като уÑлуга на Windows Installation\ Directory=\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0430\u0446\u0438\u043e\u043d\u043d\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f + ИнÑталационна Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Yes=\ - \u0414\u0430 + Да Installation\ Complete=\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0430\u0446\u0438\u044f\u0442\u0430 \u0437\u0430\u0432\u044a\u0440\u0448\u0438 + ИнÑталациÑта завърши # Installation is successfully completed. Do you want to stop this Jenkins and start a newly installed Windows service? restartBlurb=\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0430\u0446\u0438\u044f\u0442\u0430 \u0437\u0430\u0432\u044a\u0440\u0448\u0438 \u0443\u0441\u043f\u0435\u0448\u043d\u043e. \u0418\u0441\u043a\u0430\u0442\u0435 \u043b\u0438 \u0434\u0430 \u0441\u043f\u0440\u0435\u0442\u0435 \u0442\u0435\u043a\u0443\u0449\u0438\u044f Jenkins \u0438 \u0434\u0430\ - \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0442\u0435 \u0443\u0441\u043b\u0443\u0433\u0430\u0442\u0430 \u0437\u0430 Windows? + ИнÑталациÑта завърши уÑпешно. ИÑкате ли да Ñпрете Ñ‚ÐµÐºÑƒÑ‰Ð¸Ñ Jenkins и да\ + Ñтартирате уÑлугата за Windows? # Installing Jenkins as a Windows service allows you to start Jenkins as soon as the machine starts, and regardless of \ # who is interactively using Jenkins. installBlurb=\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435\u0442\u043e \u043d\u0430 Jenkins \u043a\u0430\u0442\u043e \u0443\u0441\u043b\u0443\u0433\u0430 \u043d\u0430 Windows \u0432\u0438 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0432\u0430 \u0442\u043e\u0439 \u0434\u0430 \u0441\u0435\ - \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430 \u0437\u0430\u0435\u0434\u043d\u043e \u0441 \u043c\u0430\u0448\u0438\u043d\u0430\u0442\u0430 \u043d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e \u043a\u043e\u0439 \u043f\u043e\u043b\u0437\u0432\u0430 Jenkins \u0438\u043d\u0442\u0435\u0440\u0430\u043a\u0442\u0438\u0432\u043d\u043e. + ИнÑталирането на Jenkins като уÑлуга на Windows ви позволÑва той да Ñе\ + Ñтартира заедно Ñ Ð¼Ð°ÑˆÐ¸Ð½Ð°Ñ‚Ð° незавиÑимо кой ползва Jenkins интерактивно. diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_da.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_da.properties index f80a64c018bb..32e6831cc21e 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_da.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_da.properties @@ -25,6 +25,6 @@ Yes=Ja restartBlurb=Installationen lykkedes. Vil du standse denne Jenkins og starte din nyligt installerede Windows service? Install=Installer Installation\ Directory=Installations direktorie -installBlurb=At installere Jenkins som en Windows service g\u00f8r det muligt for Jenkins at starte under Windows opstart, \ -uafh\u00e6ngig af hvilken bruger, om nogen, der logger ind interaktivt. -Installation\ Complete=Installation fuldf\u00f8rt +installBlurb=At installere Jenkins som en Windows service gør det muligt for Jenkins at starte under Windows opstart, \ +uafhængig af hvilken bruger, om nogen, der logger ind interaktivt. +Installation\ Complete=Installation fuldført diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_de.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_de.properties index 448b0d63bba0..3e82663da989 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_de.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_de.properties @@ -1,6 +1,6 @@ Install\ as\ Windows\ Service=Als Windows-Dienst installieren -installBlurb=Als Windows-Dienst wird Jenkins automatisch nach jedem Rechnerneustart ausgeführt, \ - ganz unabhängig davon, welcher Anwender den Rechner interaktiv verwendet. +installBlurb=Als Windows-Dienst wird Jenkins automatisch nach jedem Rechnerneustart ausgeführt, \ + ganz unabhängig davon, welcher Anwender den Rechner interaktiv verwendet. Installation\ Directory=Installationsverzeichnis Install=Installieren Installation\ Complete=Installation abgeschlossen. diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_es.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_es.properties index 75059c2ea5a8..0d658f7a60d2 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_es.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_es.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -installBlurb=Instalando Jenkins como un servicio de windows, esto arrancará Jenkins cuando la máquina arranca. -restartBlurb=La instalación se ha hecho correctamente. ¿Quieres cerrar que este Jenkins y que se arranque el nuevo servicio de Jenkins recien instalado en Windows? -Installation\ Directory=Directorio de instalación -Yes=Sí -Installation\ Complete=Instalación completa +installBlurb=Instalando Jenkins como un servicio de windows, esto arrancará Jenkins cuando la máquina arranca. +restartBlurb=La instalación se ha hecho correctamente. ¿Quieres cerrar que este Jenkins y que se arranque el nuevo servicio de Jenkins recien instalado en Windows? +Installation\ Directory=Directorio de instalación +Yes=Sí +Installation\ Complete=Instalación completa Install\ as\ Windows\ Service=Instalar como un servicio de Windows Install=Instalar diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_fr.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_fr.properties index 74a0f7bd2598..82f156f44bde 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_fr.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_fr.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installation\ Directory=R\u00E9pertoire d''installation +Installation\ Directory=Répertoire d''installation Install=Installation -Installation\ Complete=Installation termin\u00E9e -restartBlurb=L''installation s''est achev\u00E9e correctement. Voulez-vous arr\u00EAter cette instance de Jenkins et lancer ce nouveau service Windows? +Installation\ Complete=Installation terminée +restartBlurb=L''installation s''est achevée correctement. Voulez-vous arrêter cette instance de Jenkins et lancer ce nouveau service Windows? Yes=Oui Install\ as\ Windows\ Service=Installer en tant que Service Windows installBlurb=L''installation de Jenkins en tant que service Windows vous \ - permet de lancer Jenkins d\u00E9s le d\u00E9marrage de la machine, quel que soit \ + permet de lancer Jenkins dés le démarrage de la machine, quel que soit \ l''utilisateur qui interagit avec Jenkins. diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_it.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_it.properties index c4abf10bf335..7d3ec3e4a393 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_it.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -27,7 +27,7 @@ Installation\ Complete=Installazione completata Installation\ Directory=Directory di installazione installBlurb=L''installazione di Jenkins come servizio Windows consente di \ avviare Jenkins non appena viene avviato il sistema e indipendentemente da \ - chi sta usando Jenkins in modalità interattiva. -restartBlurb=L''installazione è stata completata con successo. Arrestare \ + chi sta usando Jenkins in modalità interattiva. +restartBlurb=L''installazione è stata completata con successo. Arrestare \ quest''istanza di Jenkins e avviare il servizio Windows appena installato? -Yes=Sì +Yes=Sì diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_ja.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_ja.properties index 28d60ca7cbb4..ade287a13920 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_ja.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_ja.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -installBlurb=Windows\u306E\u30B5\u30FC\u30D3\u30B9\u3068\u3057\u3066Jenkins\u3092\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3059\u308B\u3068\u3001\u8AB0\u304CJenkins\u3092\u4F7F\u7528\u3059\u308B\u304B\u554F\u308F\u305A\u3001\ - \u30DE\u30B7\u30FC\u30F3\u3092\u8D77\u52D5\u3059\u308B\u3068\u3059\u3050\u306BJenkins\u3092\u8D77\u52D5\u3059\u308B\u3053\u3068\u304C\u3067\u304D\u307E\u3059\u3002 -restartBlurb=\u6B63\u5E38\u306B\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u304C\u5B8C\u4E86\u3057\u307E\u3057\u305F\u3002\u73FE\u5728\u306EJenkins\u3092\u7D42\u4E86\u3057\u3066\u3001\u65B0\u898F\u306BWindwos\u306E\u30B5\u30FC\u30D3\u30B9\u3068\u3057\u3066Jenkins\u3092\u958B\u59CB\u3057\u307E\u3059\u304B? -Install\ as\ Windows\ Service=Windows\u306E\u30B5\u30FC\u30D3\u30B9\u3068\u3057\u3066\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB -Installation\ Directory=\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u5148 -Install=\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB -Installation\ Complete=\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u5B8C\u4E86 -Yes=\u5B9F\u884C +installBlurb=Windowsã®ã‚µãƒ¼ãƒ“スã¨ã—ã¦Jenkinsをインストールã™ã‚‹ã¨ã€èª°ãŒJenkinsを使用ã™ã‚‹ã‹å•ã‚ãšã€\ + マシーンを起動ã™ã‚‹ã¨ã™ãã«Jenkinsã‚’èµ·å‹•ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ +restartBlurb=正常ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ãŒå®Œäº†ã—ã¾ã—ãŸã€‚ç¾åœ¨ã®Jenkinsを終了ã—ã¦ã€æ–°è¦ã«Windwosã®ã‚µãƒ¼ãƒ“スã¨ã—ã¦Jenkinsを開始ã—ã¾ã™ã‹? +Install\ as\ Windows\ Service=Windowsã®ã‚µãƒ¼ãƒ“スã¨ã—ã¦ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ« +Installation\ Directory=インストール先 +Install=インストール +Installation\ Complete=インストール完了 +Yes=実行 diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_pl.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_pl.properties index 11b31afa40b5..2789793b8d7c 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_pl.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_pl.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. Installation\ Directory=Katalog instalacyjny -Install\ as\ Windows\ Service=Zainstaluj jako us\u0142ug\u0119 systemow\u0105 +Install\ as\ Windows\ Service=Zainstaluj jako usÅ‚ugÄ™ systemowÄ… Yes=Tak Install=Zainstaluj -Installation\ Complete=Instalacja zako\u0144czona -installBlurb=Instalacja jako us\u0142uga systemowa pozwoli uruchamia\u0107 Jenkinsa, gdy tylko system operacyjny b\u0119dzie gotowy niezale\u017Cnie od tego, kto go b\u0119dzie u\u017Cywa\u0142. +Installation\ Complete=Instalacja zakoÅ„czona +installBlurb=Instalacja jako usÅ‚uga systemowa pozwoli uruchamiać Jenkinsa, gdy tylko system operacyjny bÄ™dzie gotowy niezależnie od tego, kto go bÄ™dzie używaÅ‚. diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_pt_BR.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_pt_BR.properties index 9157a0aeafc1..90d05b84d586 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_pt_BR.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_pt_BR.properties @@ -21,12 +21,12 @@ # THE SOFTWARE. # Installation is successfully completed. Do you want to stop this Jenkins and start a newly installed Windows service? -restartBlurb=Instala\u00e7\u00e3o conclu\u00edda com sucesso. Voc\u00ea gostaria de parar o Jenkins e iniciar o rec\u00e9m instalado servi\u00e7o? -Installation\ Directory=Diret\u00f3rio de instala\u00e7\u00e3o -Install\ as\ Windows\ Service=Instala como um servi\u00e7o do Windows +restartBlurb=Instalação concluída com sucesso. Você gostaria de parar o Jenkins e iniciar o recém instalado serviço? +Installation\ Directory=Diretório de instalação +Install\ as\ Windows\ Service=Instala como um serviço do Windows Yes=Sim Install=Instalar # Installing Jenkins as a Windows service allows you to start Jenkins as soon as the machine starts, and regardless of \ # who is interactively using Jenkins. -installBlurb=Instalando Jenkins como um servi\u00e7o do Windows permite iniciar o Jenkins junto com o Windows, independente dos usu\u00e1rios. -Installation\ Complete= Instala\u00e7\u00e3o completa +installBlurb=Instalando Jenkins como um serviço do Windows permite iniciar o Jenkins junto com o Windows, independente dos usuários. +Installation\ Complete= Instalação completa diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_sr.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_sr.properties index b7283ad27b26..270058f308b6 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_sr.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_sr.properties @@ -1,10 +1,10 @@ # This file is under the MIT License by authors -Install\ as\ Windows\ Service=\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0458 \u043A\u0430\u043E Windows \u0441\u0435\u0440\u0432\u0438\u0441 -installBlurb=\u0418\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430 Jenkins \u043A\u0430\u043E Windows \u0441\u0435\u0440\u0432\u0438\u0441 \u0432\u0430\u043C \u043E\u043C\u043E\u0433\u0443\u045B\u0430\u0432\u0430 \u0434\u0430 \u043F\u043E\u043A\u0440\u0435\u043D\u0435\u0442\u0435 Jenkins \u043A\u0430\u0434\u0430 \u043F\u043E\u0447\u043D\u0435 \u043C\u0430\u0448\u0438\u043D\u0430, \u0431\u0435\u0437 \u043E\u0431\u0437\u0438\u0440\u0430 \u043D\u0430\ -\u043A\u043E \u043A\u043E\u0440\u0438\u0441\u0442\u0438 Jenkins. -Installation\ Directory=\u0414\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0443\u043C \u0437\u0430 \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0443 -Install=\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0458 -Installation\ Complete=\u0418\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430 \u0433\u043E\u0442\u043E\u0432\u0430 -restartBlurb=\u0418\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430 \u0458\u0435 \u0443\u0441\u043F\u0435\u0448\u043D\u043E \u0437\u0430\u0432\u0440\u0448\u0435\u043D\u0430. \u0414\u0430\u043B\u0438 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u0437\u0430\u0443\u0441\u0442\u0430\u0432\u0438\u0442\u0435 Jenkins \u0438 \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0435\u0442\u0435 \u043D\u043E\u0432\u043E-\u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u0438 Windows \u0441\u0435\u0440\u0432\u0438\u0441? -Yes=\u0414\u0430 +Install\ as\ Windows\ Service=ИнÑталирај као Windows ÑÐµÑ€Ð²Ð¸Ñ +installBlurb=ИнÑталација Jenkins као Windows ÑÐµÑ€Ð²Ð¸Ñ Ð²Ð°Ð¼ омогућава да покренете Jenkins када почне машина, без обзира на\ +ко кориÑти Jenkins. +Installation\ Directory=Директориум за инÑталацију +Install=ИнÑталирај +Installation\ Complete=ИнÑталација готова +restartBlurb=ИнÑталација је уÑпешно завршена. Дали желите да зауÑтавите Jenkins и поново покренете ново-инÑталирани Windows ÑервиÑ? +Yes=Да diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_zh_TW.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_zh_TW.properties index 364c3146a591..2e76bb422a87 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_zh_TW.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_zh_TW.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -installBlurb=\u5c07 Jenkins \u5b89\u88dd\u6210 Windows \u670d\u52d9\uff0c\u53ef\u4ee5\u5728\u958b\u6a5f\u5f8c\u7b2c\u4e00\u6642\u9593\u5c31\u555f\u52d5 Jenkins\uff0c\u4e5f\u4e0d\u7528\u9867\u616e\u8a72\u7531\u8ab0\u4f86\u624b\u52d5\u505a\u9019\u4ef6\u4e8b\u3002 -restartBlurb=\u5b89\u88dd\u5b8c\u6210\u3002\u60a8\u60f3\u8981\u505c\u6389\u76ee\u524d\u7684 Jenkins\uff0c\u4e26\u555f\u52d5\u65b0\u88dd\u597d\u7684 Windows \u670d\u52d9\u55ce? +installBlurb=å°‡ Jenkins 安è£æˆ Windows æœå‹™ï¼Œå¯ä»¥åœ¨é–‹æ©Ÿå¾Œç¬¬ä¸€æ™‚間就啟動 Jenkins,也ä¸ç”¨é¡§æ…®è©²ç”±èª°ä¾†æ‰‹å‹•åšé€™ä»¶äº‹ã€‚ +restartBlurb=安è£å®Œæˆã€‚您想è¦åœæŽ‰ç›®å‰çš„ Jenkins,並啟動新è£å¥½çš„ Windows æœå‹™å—Ž? -Install=\u5b89\u88dd -Installation\ Directory=\u5b89\u88dd\u76ee\u9304 -Install\ as\ Windows\ Service=\u5b89\u88dd\u6210 Windows \u670d\u52d9 -Installation\ Complete=\u5b89\u88dd\u5b8c\u6210 -Yes=\u662f +Install=å®‰è£ +Installation\ Directory=安è£ç›®éŒ„ +Install\ as\ Windows\ Service=安è£æˆ Windows æœå‹™ +Installation\ Complete=安è£å®Œæˆ +Yes=是 diff --git a/core/src/main/resources/hudson/logging/LogRecorder/configure_bg.properties b/core/src/main/resources/hudson/logging/LogRecorder/configure_bg.properties index 6ee757f52773..e1d89df8e005 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/configure_bg.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/configure_bg.properties @@ -21,14 +21,14 @@ # THE SOFTWARE. Loggers=\ - \u0416\u0443\u0440\u043d\u0430\u043b\u0438 + Журнали Logger=\ - \u0416\u0443\u0440\u043d\u0430\u043b + Журнал Save=\ - \u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 + Запазване Log\ level=\ - \u041d\u0438\u0432\u043e \u043d\u0430 \u0436\u0443\u0440\u043d\u0430\u043b\u043d\u0438\u0442\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 + Ðиво на журналните запиÑи Name=\ - \u0418\u043c\u0435 + Име List\ of\ loggers\ and\ the\ log\ levels\ to\ record=\ - \u0421\u043f\u0438\u0441\u044a\u043a \u0441 \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0442\u0435 \u0438 \u043d\u0438\u0432\u0430\u0442\u0430 \u0438\u043c + СпиÑък Ñ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð¸Ñ‚Ðµ и нивата им diff --git a/core/src/main/resources/hudson/logging/LogRecorder/configure_de.properties b/core/src/main/resources/hudson/logging/LogRecorder/configure_de.properties index 7f9f1066f854..88f393433d35 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/configure_de.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/configure_de.properties @@ -22,7 +22,7 @@ Name=Name Loggers=Logger -List\ of\ loggers\ and\ the\ log\ levels\ to\ record=Liste der Logger und der Prioritäten, die aufgezeichnet werden +List\ of\ loggers\ and\ the\ log\ levels\ to\ record=Liste der Logger und der Prioritäten, die aufgezeichnet werden Logger=Logger -Log\ level=Priorität +Log\ level=Priorität Save=Speichern diff --git a/core/src/main/resources/hudson/logging/LogRecorder/configure_fr.properties b/core/src/main/resources/hudson/logging/LogRecorder/configure_fr.properties index 0c93df6c630c..cc1873096feb 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/configure_fr.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/configure_fr.properties @@ -22,7 +22,7 @@ Name=Nom Loggers= -List\ of\ loggers\ and\ the\ log\ levels\ to\ record=Liste des loggers et des niveaux de log \u00E0 enregistrer +List\ of\ loggers\ and\ the\ log\ levels\ to\ record=Liste des loggers et des niveaux de log à enregistrer Logger= Log\ level=Niveau de log Save=Enregistrer diff --git a/core/src/main/resources/hudson/logging/LogRecorder/configure_it.properties b/core/src/main/resources/hudson/logging/LogRecorder/configure_it.properties index 364107c2355a..6634e39900a4 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/configure_it.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/configure_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -27,11 +27,11 @@ Enter\ the\ name\ of\ the\ logger\ you\ want\ to\ enable=Immettere il nome \ del registratore log che si desidera abilitare fine_warning=I registratori log che registrano messaggi ai livelli BUONO, \ MIGLIORE o anche OTTIMALE possono causare problemi di prestazioni qualora \ - vengano registrati molti messaggi. Inoltre, livelli di log più dettagliati \ - aumentano la possibilità che vengano registrate delle credenziali. È \ + vengano registrati molti messaggi. Inoltre, livelli di log più dettagliati \ + aumentano la possibilità che vengano registrate delle credenziali. È \ consigliato eliminare tali registratori log o aggiornarne le impostazioni \ - per far usare loro un livello meno dettagliato quando non se ne ha più la \ - necessità. + per far usare loro un livello meno dettagliato quando non se ne ha più la \ + necessità. Name=Nome List\ of\ loggers\ and\ the\ log\ levels\ to\ record=Elenco dei registratori \ log e dei livelli di log da registrare diff --git a/core/src/main/resources/hudson/logging/LogRecorder/configure_ja.properties b/core/src/main/resources/hudson/logging/LogRecorder/configure_ja.properties index 249c504f11dc..6f5f92b0053c 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/configure_ja.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/configure_ja.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540D\u524D -Loggers=\u30ED\u30AC\u30FC -List\ of\ loggers\ and\ the\ log\ levels\ to\ record=\u30ED\u30AC\u30FC\u306E\u4E00\u89A7\u3068\u8A18\u9332\u3059\u308B\u30ED\u30B0\u30EC\u30D9\u30EB -Logger=\u30ED\u30AC\u30FC -Log\ level=\u30ED\u30B0\u30EC\u30D9\u30EB -Save=\u4FDD\u5B58 +Name=åå‰ +Loggers=ロガー +List\ of\ loggers\ and\ the\ log\ levels\ to\ record=ロガーã®ä¸€è¦§ã¨è¨˜éŒ²ã™ã‚‹ãƒ­ã‚°ãƒ¬ãƒ™ãƒ« +Logger=ロガー +Log\ level=ログレベル +Save=ä¿å­˜ diff --git a/core/src/main/resources/hudson/logging/LogRecorder/configure_lv.properties b/core/src/main/resources/hudson/logging/LogRecorder/configure_lv.properties index 1ff5e4dcbf8e..1dda5b1c90e5 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/configure_lv.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/configure_lv.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -List\ of\ loggers\ and\ the\ log\ levels\ to\ record=Uzskait\u012Bt visu \u017Eurnal\u0113t\u0101jus un \u017Eurn\u0101l satura l\u012Bme\u0146us, kurus ierakst\u012Bt -Log\ level=\u017Durn\u0101la satura l\u012Bmenis -Logger=\u017Durnal\u0113tajs -Loggers=\u017Durnal\u0113t\u0101ji +List\ of\ loggers\ and\ the\ log\ levels\ to\ record=UzskaitÄ«t visu žurnalÄ“tÄjus un žurnÄl satura lÄ«meņus, kurus ierakstÄ«t +Log\ level=ŽurnÄla satura lÄ«menis +Logger=ŽurnalÄ“tajs +Loggers=ŽurnalÄ“tÄji Name=Nosaukums -Save=Saglab\u0101t +Save=SaglabÄt diff --git a/core/src/main/resources/hudson/logging/LogRecorder/configure_pt_BR.properties b/core/src/main/resources/hudson/logging/LogRecorder/configure_pt_BR.properties index d3693565ee63..44645bd57d9a 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/configure_pt_BR.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/configure_pt_BR.properties @@ -21,15 +21,15 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Log\ level=N\u00EDvel de registro de atividades -List\ of\ loggers\ and\ the\ log\ levels\ to\ record=Lista de registradores de atividade e n\u00EDveis para gravar +Log\ level=Nível de registro de atividades +List\ of\ loggers\ and\ the\ log\ levels\ to\ record=Lista de registradores de atividade e níveis para gravar Logger=registrador de atividades Save=Gravar Loggers=registradores de atividades Name=Nome Configure\ log\ recorder=Configurar o gravador de registro de atividades -fine_warning=Registradores de atividdes que registram mensagens nos n\u00EDveis FINE, FINER ou mesmo FINEST podem causam \ - problemas de desempenho quando muitas mensagens est\u00E3o sendo registradas. Adicionalmente, n\u00EDveis de registro de \ - atividades mais verbosos aumentar\u00E3o a probalidade de registrar credenciais. \u00C9 recomend\u00E1vel que voc\u00EA apague tais \ - registradores de atividade (ou os atualize para usarem um n\u00EDvel menos verboso) quando n\u00E3o precisar mais deles. -Additional\ information\ on\ log\ levels=Informa\u00E7\u00F5es adicionais sobre n\u00EDveis de registro de atividades +fine_warning=Registradores de atividdes que registram mensagens nos níveis FINE, FINER ou mesmo FINEST podem causam \ + problemas de desempenho quando muitas mensagens estão sendo registradas. Adicionalmente, níveis de registro de \ + atividades mais verbosos aumentarão a probalidade de registrar credenciais. É recomendável que você apague tais \ + registradores de atividade (ou os atualize para usarem um nível menos verboso) quando não precisar mais deles. +Additional\ information\ on\ log\ levels=Informações adicionais sobre níveis de registro de atividades diff --git a/core/src/main/resources/hudson/logging/LogRecorder/configure_ru.properties b/core/src/main/resources/hudson/logging/LogRecorder/configure_ru.properties index cc4ec0b6871e..ae315b9cad23 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/configure_ru.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/configure_ru.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -List\ of\ loggers\ and\ the\ log\ levels\ to\ record=\u0421\u043F\u0438\u0441\u043E\u043A \u0444\u0438\u043B\u044C\u0442\u0440\u043E\u0432 \u0438 \u0442\u0438\u043F\u044B \u0441\u043E\u0445\u0440\u0430\u043D\u044F\u0435\u043C\u044B\u0445 \u0441\u043E\u0431\u044B\u0442\u0438\u044F -Log\ level=\u0423\u0440\u043E\u0432\u0435\u043D\u044C \u0436\u0443\u0440\u043D\u0430\u043B\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F -Logger=\u0424\u0438\u043B\u044C\u0442\u0440 -Loggers=\u0424\u0438\u043B\u044C\u0442\u0440\u044B -Name=\u041D\u0430\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u0438\u0435 -Save=\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C +List\ of\ loggers\ and\ the\ log\ levels\ to\ record=СпиÑок фильтров и типы ÑохранÑемых ÑÐ¾Ð±Ñ‹Ñ‚Ð¸Ñ +Log\ level=Уровень Ð¶ÑƒÑ€Ð½Ð°Ð»Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ +Logger=Фильтр +Loggers=Фильтры +Name=Ðаименование +Save=Сохранить diff --git a/core/src/main/resources/hudson/logging/LogRecorder/configure_sr.properties b/core/src/main/resources/hudson/logging/LogRecorder/configure_sr.properties index 22db6a939b54..b1253adc5eee 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/configure_sr.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/configure_sr.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Name=\u0418\u043C\u0435 -Loggers=\u041F\u0440\u0435\u043F\u0438\u0441\u0438\u0432\u0430\u0447\u0438 -List\ of\ loggers\ and\ the\ log\ levels\ to\ record=\u0421\u043F\u0438\u0441\u0430\u043A \u043F\u0440\u0435\u043F\u0438\u0441\u0438\u0432\u0430\u0447\u0430 \u0438 \u043D\u0438\u0432\u043E\u0438 \u0437\u0430 \u043F\u0438\u0441\u0430\u045A\u0430\u045A\u0435 \u0437 \u0436\u0443\u0440\u043D\u0430\u043B -Logger=\u041F\u0440\u0435\u043F\u0438\u0441\u0438\u0432\u0430\u0447 -Save=\u0421\u0430\u0447\u0443\u0432\u0430\u0458 -Log\ level=\u041D\u0438\u0432\u043E \u0434\u0435\u0442\u0430\u0459\u0430 \u0436\u0443\u0440\u043D\u0430\u043B\u043E\u0432\u0430\u045A\u0430 +Name=Име +Loggers=ПрепиÑивачи +List\ of\ loggers\ and\ the\ log\ levels\ to\ record=СпиÑак препиÑивача и нивои за пиÑањање з журнал +Logger=ПрепиÑивач +Save=Сачувај +Log\ level=Ðиво детаља журналовања diff --git a/core/src/main/resources/hudson/logging/LogRecorder/configure_zh_TW.properties b/core/src/main/resources/hudson/logging/LogRecorder/configure_zh_TW.properties index 448af654cb98..2e3c1977c33b 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/configure_zh_TW.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/configure_zh_TW.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Loggers=\u8A18\u9304\u5668 -Log\ level=\u8A18\u9304\u7B49\u7D1A -List\ of\ loggers\ and\ the\ log\ levels\ to\ record=Logger \u6E05\u55AE\u4EE5\u53CA\u8981\u8A18\u9304\u7684\u65E5\u8A8C\u7B49\u7D1A -Logger=\u8A18\u9304\u5668 -Save=\u5132\u5B58 -Name=\u540D\u7A31 +Loggers=記錄器 +Log\ level=記錄等級 +List\ of\ loggers\ and\ the\ log\ levels\ to\ record=Logger 清單以åŠè¦è¨˜éŒ„的日誌等級 +Logger=記錄器 +Save=儲存 +Name=å稱 diff --git a/core/src/main/resources/hudson/logging/LogRecorder/delete.properties b/core/src/main/resources/hudson/logging/LogRecorder/delete.properties index 7e1444dc01f2..3d1cebc58572 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/delete.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/delete.properties @@ -1 +1 @@ -delete.logrecorder=Are you sure you want to delete the log recorder \u2018{0}\u2019? +delete.logrecorder=Are you sure you want to delete the log recorder ‘{0}’? diff --git a/core/src/main/resources/hudson/logging/LogRecorder/delete_bg.properties b/core/src/main/resources/hudson/logging/LogRecorder/delete_bg.properties index 3c86a02a4e13..b9327a102576 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/delete_bg.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/delete_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. delete.logrecorder=\ - \u0421\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u043f\u0440\u0435\u043c\u0430\u0445\u043d\u0435\u0442\u0435 \u0442\u043e\u0432\u0430 \u0437\u0430\u043f\u0438\u0441\u0432\u0430\u043d\u0435 \u043d\u0430 \u0436\u0443\u0440\u043d\u0430\u043b\u0438? + Сигурни ли Ñте, че иÑкате да премахнете това запиÑване на журнали? Yes=\ - \u0414\u0430 + Да diff --git a/core/src/main/resources/hudson/logging/LogRecorder/delete_da.properties b/core/src/main/resources/hudson/logging/LogRecorder/delete_da.properties index f544499085a4..be43db31bca8 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/delete_da.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/delete_da.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Yes=Ja -delete.logrecorder=Er du sikker p\u00e5 at du vil slette denne logopsamler? ({0}) +delete.logrecorder=Er du sikker pÃ¥ at du vil slette denne logopsamler? ({0}) diff --git a/core/src/main/resources/hudson/logging/LogRecorder/delete_de.properties b/core/src/main/resources/hudson/logging/LogRecorder/delete_de.properties index 30ba29363b68..d7864e085555 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/delete_de.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/delete_de.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -delete.logrecorder=Möchten Sie diesen Log-Rekorder wirklich löschen? ({0}) +delete.logrecorder=Möchten Sie diesen Log-Rekorder wirklich löschen? ({0}) Yes=Ja diff --git a/core/src/main/resources/hudson/logging/LogRecorder/delete_es.properties b/core/src/main/resources/hudson/logging/LogRecorder/delete_es.properties index eb2b584855e7..363e1044de17 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/delete_es.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/delete_es.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. delete.logrecorder=Estas seguro de querer borrar este registro de ''logs'' -Yes=Sí +Yes=Sí diff --git a/core/src/main/resources/hudson/logging/LogRecorder/delete_it.properties b/core/src/main/resources/hudson/logging/LogRecorder/delete_it.properties index a1edc5e87ba1..d29e75678d76 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/delete_it.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/delete_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,4 +22,4 @@ # THE SOFTWARE. delete.logrecorder=Eliminare il registratore log "{0}"? -Yes=Sì +Yes=Sì diff --git a/core/src/main/resources/hudson/logging/LogRecorder/delete_ja.properties b/core/src/main/resources/hudson/logging/LogRecorder/delete_ja.properties index 4ec703857a84..4c576da6f0d7 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/delete_ja.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/delete_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -delete.logrecorder=\u3053\u306E\u30ED\u30B0\u30EC\u30B3\u30FC\u30C0\u30FC\u3092\u524A\u9664\u3057\u3066\u3082\u3088\u308D\u3057\u3044\u3067\u3059\u304B? ({0}) +delete.logrecorder=ã“ã®ãƒ­ã‚°ãƒ¬ã‚³ãƒ¼ãƒ€ãƒ¼ã‚’削除ã—ã¦ã‚‚よã‚ã—ã„ã§ã™ã‹? ({0}) -Yes=\u306F\u3044 +Yes=ã¯ã„ diff --git a/core/src/main/resources/hudson/logging/LogRecorder/delete_pl.properties b/core/src/main/resources/hudson/logging/LogRecorder/delete_pl.properties index 51548be26aa5..736502ff8814 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/delete_pl.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/delete_pl.properties @@ -19,6 +19,6 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -delete.logrecorder=Czy na pewno chcesz usun\u0105\u0107 tego rejestratora log\u00F3w? ({0}) +delete.logrecorder=Czy na pewno chcesz usunąć tego rejestratora logów? ({0}) Yes=Tak diff --git a/core/src/main/resources/hudson/logging/LogRecorder/delete_ru.properties b/core/src/main/resources/hudson/logging/LogRecorder/delete_ru.properties index 6816685c32fa..4600f2e54e7e 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/delete_ru.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/delete_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -delete.logrecorder=\u0412\u044B \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u044C\u043D\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u044D\u0442\u043E\u0442 \u0436\u0443\u0440\u043D\u0430\u043B? ({0}) +delete.logrecorder=Ð’Ñ‹ дейÑтвительно хотите удалить Ñтот журнал? ({0}) -Yes=\u0414\u0430 +Yes=Да diff --git a/core/src/main/resources/hudson/logging/LogRecorder/delete_sr.properties b/core/src/main/resources/hudson/logging/LogRecorder/delete_sr.properties index d32a034957e6..4e75c5e45ec9 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/delete_sr.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/delete_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -delete.logrecorder=\u0414\u0430\u043B\u0438 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u0443\u043A\u043B\u043E\u043D\u0438\u0442\u0435 \u043E\u0432\u043E\u0433 \u043F\u0440\u0435\u043F\u0438\u0441\u0438\u0432\u0430\u0447\u0430? ({0}) +delete.logrecorder=Дали желите да уклоните овог препиÑивача? ({0}) -Yes=\u0414\u0430 +Yes=Да diff --git a/core/src/main/resources/hudson/logging/LogRecorder/delete_zh_TW.properties b/core/src/main/resources/hudson/logging/LogRecorder/delete_zh_TW.properties index b592d316764b..28b4a64a47bc 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/delete_zh_TW.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/delete_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -delete.logrecorder=\u60a8\u78ba\u5b9a\u8981\u522a\u9664\u9019\u500b\u8a18\u9304\u9304\u88fd\u5668\u55ce? ({0}) +delete.logrecorder=您確定è¦åˆªé™¤é€™å€‹è¨˜éŒ„錄製器嗎? ({0}) -Yes=\u662f +Yes=是 diff --git a/core/src/main/resources/hudson/logging/LogRecorder/index_bg.properties b/core/src/main/resources/hudson/logging/LogRecorder/index_bg.properties index 96ee80ccf8de..9073cd6dff10 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/index_bg.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/index_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Clear\ This\ Log=\ - \u0418\u0437\u0447\u0438\u0441\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u043e\u0437\u0438 \u0436\u0443\u0440\u043d\u0430\u043b + ИзчиÑтване на този журнал diff --git a/core/src/main/resources/hudson/logging/LogRecorder/index_de.properties b/core/src/main/resources/hudson/logging/LogRecorder/index_de.properties index 245cbe7dc4cb..bdf762c55c18 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/index_de.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/index_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Clear\ This\ Log=Dieses Log zur\u00FCcksetzen +Clear\ This\ Log=Dieses Log zurücksetzen diff --git a/core/src/main/resources/hudson/logging/LogRecorder/index_it.properties b/core/src/main/resources/hudson/logging/LogRecorder/index_it.properties index d5ad3c3418d3..b81333fcc654 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/index_it.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/logging/LogRecorder/index_ja.properties b/core/src/main/resources/hudson/logging/LogRecorder/index_ja.properties index 14d9e2bf96c7..d406d296df6a 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/index_ja.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/index_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Clear\ This\ Log=\u30af\u30ea\u30a2 +Clear\ This\ Log=クリア diff --git a/core/src/main/resources/hudson/logging/LogRecorder/index_pl.properties b/core/src/main/resources/hudson/logging/LogRecorder/index_pl.properties index a3fc012d5891..5e652b0bab6e 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/index_pl.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/index_pl.properties @@ -19,4 +19,4 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Clear\ This\ Log=Usu\u0144 logi +Clear\ This\ Log=UsuÅ„ logi diff --git a/core/src/main/resources/hudson/logging/LogRecorder/index_sr.properties b/core/src/main/resources/hudson/logging/LogRecorder/index_sr.properties index ab884fbbc937..b1fef4f7c1aa 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/index_sr.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/index_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Clear\ This\ Log=\u041F\u0440\u0435\u0431\u0440\u0438\u0448\u0438 \u0436\u0443\u0440\u043D\u0430\u043B +Clear\ This\ Log=Пребриши журнал diff --git a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_bg.properties b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_bg.properties index dfa27cde7e29..6bfd7999e794 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_bg.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_bg.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Delete=\ - \u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 + Изтриване Back\ to\ Loggers=\ - \u041a\u044a\u043c \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0442\u0435 + Към журналите Log\ records=\ - \u0416\u0443\u0440\u043d\u0430\u043b\u043d\u0438 \u0437\u0430\u043f\u0438\u0441\u0438 + Журнални запиÑи Configure=\ - \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 + ÐаÑтройки diff --git a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_de.properties b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_de.properties index e3c8a7ca1da4..da24af33f913 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_de.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_de.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Loggers=Zurück zu den Loggern +Back\ to\ Loggers=Zurück zu den Loggern Log\ records=Log-Aufzeichnungen Configure=Konfigurieren -Delete=Löschen +Delete=Löschen diff --git a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_es.properties b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_es.properties index 50f64015e219..613aef96bfe3 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_es.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_es.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Back\ to\ Loggers=Volver -Log\ records=Líneas de ''log'' +Log\ records=Líneas de ''log'' Configure=Configurar Delete=Borrar diff --git a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_it.properties b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_it.properties index aed58b705653..c820d76427c7 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_it.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_ja.properties b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_ja.properties index ca7335c720e2..7544cf386a89 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_ja.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Loggers=\u30ED\u30AC\u30FC\u3078\u623B\u308B -Log\ records=\u30ED\u30B0\u30EC\u30B3\u30FC\u30C9 -Configure=\u8A2D\u5B9A -Delete=\u524A\u9664 +Back\ to\ Loggers=ロガーã¸æˆ»ã‚‹ +Log\ records=ログレコード +Configure=設定 +Delete=削除 diff --git a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_lv.properties b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_lv.properties index d00a921a2907..e2b0794a222e 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_lv.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_lv.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Back\ to\ Loggers=Atpaka\u013C uz \u017Eurnal\u0113t\u0101jiem -Configure=Konfigur\u0113t -Delete=Dz\u0113st -Log\ records=\u017Durn\u0101la ieraksti +Back\ to\ Loggers=Atpakaļ uz žurnalÄ“tÄjiem +Configure=KonfigurÄ“t +Delete=DzÄ“st +Log\ records=ŽurnÄla ieraksti diff --git a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_pl.properties b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_pl.properties index 378dffae6e0b..f3c8624c39e1 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_pl.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_pl.properties @@ -19,7 +19,7 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Loggers=Powr\u00F3t do rejestrator\u00F3w log\u00F3w -Delete=Usu\u0144 -Log\ records=Zawarto\u015B\u0107 rejestratora log\u00F3w +Back\ to\ Loggers=Powrót do rejestratorów logów +Delete=UsuÅ„ +Log\ records=Zawartość rejestratora logów Configure=Skonfiguruj diff --git a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_ru.properties b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_ru.properties index a92d62e151f4..91d14e709dab 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Loggers=\u0412\u0435\u0440\u043D\u0443\u0442\u044C\u0441\u044F \u043A \u0436\u0443\u0440\u043D\u0430\u043B\u0430\u043C -Configure=\u041D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C -Delete=\u0423\u0434\u0430\u043B\u0438\u0442\u044C -Log\ records=\u0417\u0430\u043F\u0438\u0441\u0438 \u0436\u0443\u0440\u043D\u0430\u043B\u0430 +Back\ to\ Loggers=ВернутьÑÑ Ðº журналам +Configure=ÐаÑтроить +Delete=Удалить +Log\ records=ЗапиÑи журнала diff --git a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_sr.properties b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_sr.properties index 056edbafdc7b..4fa36bf1afb3 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_sr.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Back\ to\ Loggers=\u041D\u0430\u0437\u0430\u0434 \u043D\u0430 \u043F\u0440\u0435\u043F\u0438\u0441\u0438\u0432\u0430\u0447\u0435 -Log\ records=\u041D\u0438\u0432\u043E\u0438 \u0437\u0430 \u043F\u0438\u0441\u0430\u045A\u0435 \u0443 \u0436\u0443\u0440\u043D\u0430\u043B -Configure=\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0438\u0448\u0438 -Delete=\u0423\u043A\u043B\u043E\u043D\u0438 +Back\ to\ Loggers=Ðазад на препиÑиваче +Log\ records=Ðивои за пиÑање у журнал +Configure=Конфигуриши +Delete=Уклони diff --git a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_zh_TW.properties index dc0823900186..ac89f02074bf 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_zh_TW.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Log\ records=\u8A18\u9304\u5167\u5BB9 -Configure=\u8A2D\u5B9A -Back\ to\ Loggers=\u56DE\u5230\u65E5\u8A8C\u8A18\u9304 -Delete=\u522A\u9664 +Log\ records=記錄內容 +Configure=設定 +Back\ to\ Loggers=回到日誌記錄 +Delete=刪除 diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/all_bg.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/all_bg.properties index 57eb74754068..a9c5a23c304d 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/all_bg.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/all_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Jenkins\ Log=\ - \u0416\u0443\u0440\u043d\u0430\u043b \u043d\u0430 Jenkins + Журнал на Jenkins diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/all_it.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/all_it.properties index 34d64c6da8a8..fb192864dace 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/all_it.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/all_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/all_ja.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/all_ja.properties index f4b13b22ce23..fd3a7fd9d35d 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/all_ja.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/all_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ Log=Jenkins\u306E\u30ED\u30B0 +Jenkins\ Log=Jenkinsã®ãƒ­ã‚° diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/all_ko.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/all_ko.properties index 2e2ab0c1cc7b..a61395759840 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/all_ko.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/all_ko.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ Log=Jenkins \uB85C\uADF8 -Level=\uB808\uBCA8 -Logger\ Configuration=\uB85C\uADF8 \uC124\uC815 -Name=\uC774\uB984 -Submit=\uC804\uC1A1 +Jenkins\ Log=Jenkins 로그 +Level=레벨 +Logger\ Configuration=로그 설정 +Name=ì´ë¦„ +Submit=전송 diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/all_ru.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/all_ru.properties index b1793e142299..30a2310070b8 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/all_ru.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/all_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ Log=\u0416\u0443\u0440\u043D\u0430\u043B Jenkins +Jenkins\ Log=Журнал Jenkins diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/all_sr.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/all_sr.properties index 9e6ac59fabe5..e2957f4aa674 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/all_sr.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/all_sr.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -Jenkins\ Log=Jenkins \u0436\u0443\u0440\u043D\u0430\u043B -Level=\u041D\u0438\u0432\u043E -Logger\ Configuration=\u041F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0436\u0443\u0440\u043D\u0430\u043B\u0430 -Name=\u0418\u043C\u0435 -Submit=\u041F\u043E\u0434\u043D\u0435\u0441\u0438 +Jenkins\ Log=Jenkins журнал +Level=Ðиво +Logger\ Configuration=Подешавања журнала +Name=Име +Submit=ПоднеÑи diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/all_zh_TW.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/all_zh_TW.properties index 6894155a295f..0da7e03cf138 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/all_zh_TW.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/all_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ Log=Jenkins \u8a18\u9304 +Jenkins\ Log=Jenkins 記錄 diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_bg.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_bg.properties index b3eb8cbd67c0..46a6decbe24d 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_bg.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. >\ WARNING=\ - > \u041f\u0420\u0415\u0414\u0423\u041f\u0420\u0415\u0416\u0414\u0415\u041d\u0418\u0415 + > ПРЕДУПРЕЖДЕÐИЕ >\ SEVERE=\ - > \u041e\u041f\u0410\u0421\u041d\u041e\u0421\u0422 + > ОПÐСÐОСТ All=\ - \u0412\u0441\u0438\u0447\u043a\u0438 + Ð’Ñички diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_de.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_de.properties index 17b0e2cce6db..678ad821012e 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_de.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_de.properties @@ -1,3 +1,3 @@ -All=Alle Prioritäten +All=Alle Prioritäten >\ SEVERE=> SEVERE >\ WARNING=> WARNING diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_it.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_it.properties index 84fab8d3d360..0cfbd3e782f2 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_it.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_ja.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_ja.properties index a4499fd5b3ba..8c1d7851d5bd 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_ja.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -All=\u5168\u3066 ->\ SEVERE=> \u30B7\u30D3\u30A2 ->\ WARNING=> \u8B66\u544A +All=全㦠+>\ SEVERE=> シビア +>\ WARNING=> 警告 diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_ko.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_ko.properties index 1a8ff04bbec9..922e6206c9b5 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_ko.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -All=\uBAA8\uB450 +All=ëª¨ë‘ diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_lv.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_lv.properties index a97055944e72..8ff1d4ead2d0 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_lv.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_lv.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors >\ SEVERE=> SMAGS ->\ WARNING=> BR\u012ADIN\u0100JUMS +>\ WARNING=> BRĪDINÄ€JUMS All=Visi diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_pl.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_pl.properties index 0e34577cb473..e1721d73e38a 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_pl.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_pl.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors ->\ SEVERE=> POWA\u017BNE ->\ WARNING=> OSTRZE\u017BENIE +>\ SEVERE=> POWAÅ»NE +>\ WARNING=> OSTRZEÅ»ENIE All=Wszystko diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_ru.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_ru.properties index 3d0e90481de6..104806e26ef2 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_ru.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. ->\ SEVERE=> \u041E\u0448\u0438\u0431\u043A\u0438 ->\ WARNING=> \u041F\u0440\u0435\u0434\u0443\u043F\u0440\u0435\u0436\u0434\u0435\u043D\u0438\u044F -All=\u0412\u0441\u0435 +>\ SEVERE=> Ошибки +>\ WARNING=> ÐŸÑ€ÐµÐ´ÑƒÐ¿Ñ€ÐµÐ¶Ð´ÐµÐ½Ð¸Ñ +All=Ð’Ñе diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_sr.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_sr.properties index 89231883ddcc..2ab8393b565f 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_sr.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -All=\u0421\u0432\u0435 ->\ SEVERE=> \u0421\u0422\u0420\u041E\u0413\u041E ->\ WARNING=> \u0423\u041F\u041E\u0417\u041E\u0420\u0415\u040A\u0415 +All=Све +>\ SEVERE=> СТРОГО +>\ WARNING=> УПОЗОРЕЊЕ diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_zh_TW.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_zh_TW.properties index 667261ac221f..776bb9f3ba53 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_zh_TW.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -All=\u5168\u90e8 ->\ WARNING=> \u8b66\u544a ->\ SEVERE=> \u56b4\u91cd +All=全部 +>\ WARNING=> 警告 +>\ SEVERE=> åš´é‡ diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_bg.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_bg.properties index 27407089465d..3b63601bcdf9 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/index_bg.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_bg.properties @@ -21,12 +21,12 @@ # THE SOFTWARE. Log\ Recorders=\ - \u0416\u0443\u0440\u043d\u0430\u043b\u0438 + Журнали Name=\ - \u0418\u043c\u0435 + Име Add\ new\ log\ recorder=\ - \u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u043d\u043e\u0432 \u0436\u0443\u0440\u043d\u0430\u043b + ДобавÑне на нов журнал All\ Jenkins\ Logs=\ - \u0412\u0441\u0438\u0447\u043a\u0438 \u0436\u0443\u0440\u043d\u0430\u043b\u0438 \u043d\u0430 Jenkins + Ð’Ñички журнали на Jenkins Log=\ - \u0416\u0443\u0440\u043d\u0430\u043b + Журнал diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_da.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_da.properties index b501d19a77b9..388acb9f4680 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/index_da.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_da.properties @@ -22,6 +22,6 @@ All\ Jenkins\ Logs=Alle Jenkins logs Log\ Recorders=Logopsamlere -Add\ new\ log\ recorder=Tilf\u00f8j ny logopsamler +Add\ new\ log\ recorder=Tilføj ny logopsamler Name=Navn Log=Log diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_de.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_de.properties index 3384301fb6ba..a9add0a6e38e 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/index_de.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_de.properties @@ -24,4 +24,4 @@ Name=Name Log=Log Log\ Recorders=Log-Rekorder All\ Jenkins\ Logs=Alle Jenkins-Logs -Add\ new\ log\ recorder=Neuen Log-Rekorder hinzufügen +Add\ new\ log\ recorder=Neuen Log-Rekorder hinzufügen diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_es.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_es.properties index ed6871bda81b..cd4caf7d9eb7 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/index_es.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_es.properties @@ -24,4 +24,4 @@ Log=''Log'' Log\ Recorders=Registros de ''logs'' Name=Nombre All\ Jenkins\ Logs=Todos los ''logs'' de Jenkins -Add\ new\ log\ recorder=Añadir un nuevo registro de ''logs'' +Add\ new\ log\ recorder=Añadir un nuevo registro de ''logs'' diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_hu.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_hu.properties index 8ea10b75dc78..4a104561f770 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/index_hu.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_hu.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Add\ new\ log\ recorder=\u00DAj log felvev\u0151 hozz\u00E1ad\u00E1sa -All\ Jenkins\ Logs=\u00D6sszes Jenkins Log -Log\ Recorders=Log Felvev\u0151 -Name=N\u00E9v +Add\ new\ log\ recorder=Új log felvevÅ‘ hozzáadása +All\ Jenkins\ Logs=Összes Jenkins Log +Log\ Recorders=Log FelvevÅ‘ +Name=Név diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_it.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_it.properties index a56e669d00b3..55ede2ce4420 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/index_it.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_ja.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_ja.properties index fbb01b2effb7..f5719423432c 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/index_ja.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_ja.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Log=\u30ED\u30B0 -Log\ Recorders=\u30ED\u30B0\u30EC\u30B3\u30FC\u30C0\u30FC -Name=\u540D\u524D -All\ Jenkins\ Logs=\u3059\u3079\u3066\u306E\u30ED\u30B0 -Add\ new\ log\ recorder=\u65B0\u898F\u30ED\u30B0\u30EC\u30B3\u30FC\u30C0\u30FC\u306E\u8FFD\u52A0 +Log=ログ +Log\ Recorders=ログレコーダー +Name=åå‰ +All\ Jenkins\ Logs=ã™ã¹ã¦ã®ãƒ­ã‚° +Add\ new\ log\ recorder=æ–°è¦ãƒ­ã‚°ãƒ¬ã‚³ãƒ¼ãƒ€ãƒ¼ã®è¿½åŠ  diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_ko.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_ko.properties index e9b748a80f8b..7b9d306a3012 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/index_ko.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_ko.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ new\ log\ recorder=\uC2E0\uADDC \uB85C\uADF8 \uAE30\uB85D\uAE30 \uCD94\uAC00 -All\ Jenkins\ Logs=\uBAA8\uB4E0 Jenkins \uB85C\uADF8 -Log\ Recorders=\uB85C\uADF8 \uAE30\uB85D\uAE30 -Name=\uC774\uB984 +Add\ new\ log\ recorder=ì‹ ê·œ 로그 기ë¡ê¸° 추가 +All\ Jenkins\ Logs=모든 Jenkins 로그 +Log\ Recorders=로그 기ë¡ê¸° +Name=ì´ë¦„ diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_lt.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_lt.properties index 684991829bcb..62ce29d08711 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/index_lt.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_lt.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -All\ Jenkins\ Logs=Visi Jenkins \u017Eurnalai +All\ Jenkins\ Logs=Visi Jenkins žurnalai Name=Pavadinimas diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_lv.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_lv.properties index 017152741776..af77b9908417 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/index_lv.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_lv.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ new\ log\ recorder=Pievienot jaunu \u017Eurn\u0101la ieraskst\u012Bt\u0101ju -All\ Jenkins\ Logs=Visi Jenkins \u017Eurn\u0101li -Log\ Recorders=\u017Eurn\u0101la ierakstit\u0101ji -Name=V\u0101rds +Add\ new\ log\ recorder=Pievienot jaunu žurnÄla ieraskstÄ«tÄju +All\ Jenkins\ Logs=Visi Jenkins žurnÄli +Log\ Recorders=žurnÄla ierakstitÄji +Name=VÄrds diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_pl.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_pl.properties index 9557f45bddec..7f7d02f0ebc7 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/index_pl.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_pl.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Add\ new\ log\ recorder=Dodaj nowy rejestrator log\u00F3w +Add\ new\ log\ recorder=Dodaj nowy rejestrator logów All\ Jenkins\ Logs=Wszystkie zdarzenia Jenkinsa -Log\ Recorders=Rejestratory log\u00F3w +Log\ Recorders=Rejestratory logów Name=Nazwa diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_pt_BR.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_pt_BR.properties index 55e34a13f2ef..44bc74c6ea53 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/index_pt_BR.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_pt_BR.properties @@ -25,4 +25,4 @@ All\ Jenkins\ Logs=Todos os registros de atividades do Jenkins Log\ Recorders=Gravadores de registro de atividades Add\ new\ log\ recorder= Novos registros adicionados ao registro de atividades Log=Registro de atividades -Additional\ information\ on\ log\ recorders=Informa\u00E7\u00E3o\ adicional\ sobre\ gravadores\ de\ registro\ de\ atividades +Additional\ information\ on\ log\ recorders=Informação\ adicional\ sobre\ gravadores\ de\ registro\ de\ atividades diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_ru.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_ru.properties index 34c3fb24383a..e0480ec5210e 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/index_ru.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_ru.properties @@ -20,14 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Log\ Recorders=\u0416\u0443\u0440\u043D\u0430\u043B\u044B -Logger\ Configuration=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0436\u0443\u0440\u043d\u0430\u043b\u0430 -Name=\u0418\u043c\u044f -Level=\u0423\u0440\u043e\u0432\u0435\u043d\u044c -Submit=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c -Add\ new\ log\ recorder=\u0421\u043E\u0437\u0434\u0430\u0442\u044C \u043D\u043E\u0432\u044B\u0439 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0442\u043E\u0440 \u043B\u043E\u0433\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F -All=\u0412\u0441\u0435 \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442\u044b +Log\ Recorders=Журналы +Logger\ Configuration=ÐаÑтройка журнала +Name=Ð˜Ð¼Ñ +Level=Уровень +Submit=Отправить +Add\ new\ log\ recorder=Создать новый региÑтратор Ð»Ð¾Ð³Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ +All=Ð’Ñе приоритеты >\ SEVERE=> SEVERE >\ WARNING=> WARNING -All\ Jenkins\ Logs=\u0412\u0441\u0435 \u043B\u043E\u0433\u0438 Jenkins -Jenkins\ Log=\u0416\u0443\u0440\u043d\u0430\u043b Jenkins +All\ Jenkins\ Logs=Ð’Ñе логи Jenkins +Jenkins\ Log=Журнал Jenkins diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_sr.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_sr.properties index 3ace1a3e186e..11cf7fd31721 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/index_sr.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_sr.properties @@ -1,14 +1,14 @@ # This file is under the MIT License by authors -Log=\u0416\u0443\u0440\u043D\u0430\u043B -Log\ Recorders=\u0416\u0443\u0440\u043D\u0430\u043B\u0438 -Name=\u0418\u043C\u0435 -Add\ new\ log\ recorder=\u0414\u043E\u0434\u0430\u0458 \u043D\u043E\u0432\u043E\u0433 \u043F\u0440\u0435\u043F\u0438\u0441\u0438\u0432\u0430\u0447\u0430 -All\ Jenkins\ Logs=\u0421\u0432\u0438 Jenkins \u0436\u0443\u0440\u043D\u0430\u043B\u0438 -Jenkins\ Log=Jenkins \u0436\u0443\u0440\u043D\u0430\u043B -Level=\u041D\u0438\u0432\u043E -Logger\ Configuration=\u041F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0435 \u0436\u0443\u0440\u043D\u0430\u043B\u0430 -Submit=\u041F\u043E\u0434\u043D\u0435\u0441\u0438 -All=\u0421\u0432\u0435 ->\ SEVERE=> \u0421\u0422\u0420\u041E\u0413\u041E ->\ WARNING=> \u0423\u041F\u041E\u0417\u041E\u0420\u0415\u040A\u0415 +Log=Журнал +Log\ Recorders=Журнали +Name=Име +Add\ new\ log\ recorder=Додај новог препиÑивача +All\ Jenkins\ Logs=Сви Jenkins журнали +Jenkins\ Log=Jenkins журнал +Level=Ðиво +Logger\ Configuration=Подешавање журнала +Submit=ПоднеÑи +All=Све +>\ SEVERE=> СТРОГО +>\ WARNING=> УПОЗОРЕЊЕ diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_tr.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_tr.properties index 7e7e8e4e7161..fda902323bf2 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/index_tr.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_tr.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Jenkins\ Log=Jenkins Logu -Logger\ Configuration=Loglama Konfig\u00fcrasyonu -Name=\u0130sim +Logger\ Configuration=Loglama Konfigürasyonu +Name=Ä°sim Level=Seviye -Submit=G\u00f6nder +Submit=Gönder All=Hepsi >\ SEVERE=>\ SEVERE >\ WARNING=>\ WARNING diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_zh_TW.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_zh_TW.properties index 27d2ecdc46db..d2901be2a520 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/index_zh_TW.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_zh_TW.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ new\ log\ recorder=\u65b0\u589e\u8a18\u9304\u9304\u88fd\u5668 -All\ Jenkins\ Logs=\u6240\u6709 Jenkins \u8a18\u9304 -Log\ Recorders=\u8a18\u9304\u9304\u88fd\u5668 -Name=\u540d\u7a31 -Log=\u8a18\u9304 +Add\ new\ log\ recorder=新增記錄錄製器 +All\ Jenkins\ Logs=所有 Jenkins 記錄 +Log\ Recorders=記錄錄製器 +Name=å稱 +Log=記錄 diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_bg.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_bg.properties index 01ca51883d56..2506d7be9f91 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_bg.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_bg.properties @@ -23,16 +23,16 @@ # Logger with no name is the default logger. \ # This level will be inherited by all loggers without a configured level. defaultLoggerMsg=\ - \u0416\u0443\u0440\u043D\u0430\u043B\u044A\u0442 \u0431\u0435\u0437 \u0438\u043C\u0435 \u0435 \u043F\u043E \u043F\u043E\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043D\u0435. \u041D\u0435\u0433\u043E\u0432\u043E\u0442\u043E \u043D\u0438\u0432\u043E \u0441\u0435 \u043D\u0430\u0441\u043B\u0435\u0434\u044F\u0432\u0430 \u043E\u0442 \u0432\u0441\u0438\u0447\u043A\u0438\ - \u0436\u0443\u0440\u043D\u0430\u043B\u0438 \u0431\u0435\u0437 \u0438\u0437\u0440\u0438\u0447\u043D\u043E \u043D\u0430\u0441\u0442\u0440\u043E\u0435\u043D\u043E \u043D\u0438\u0432\u043E. + Журналът без име е по подразбиране. Ðеговото ниво Ñе наÑледÑва от вÑички\ + журнали без изрично наÑтроено ниво. Level=\ - \u041D\u0438\u0432\u043E + Ðиво Logger\ Configuration=\ - \u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u043D\u0430 \u0436\u0443\u0440\u043D\u0430\u043B\u0430 + ÐаÑтройки на журнала Adjust\ Levels=\ - \u041F\u0440\u043E\u043C\u044F\u043D\u0430 \u043D\u0430 \u043D\u0438\u0432\u0430\u0442\u0430 + ПромÑна на нивата Name=\ - \u0418\u043C\u0435 + Име # https://www.jenkins.io/redirect/log-levels url=\ https://www.jenkins.io/redirect/log-levels diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_de.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_de.properties index 2d7cb42d8be2..28f7b7f5a414 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_de.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_de.properties @@ -23,7 +23,7 @@ Logger\ Configuration=Logger-Konfiguration url=https://www.jenkins.io/redirect/log-levels Name=Name -Level=Priorit\u00e4t -Adjust\ Levels=Priorit\u00e4ten (levels) anpassen -defaultLoggerMsg=Der Logger ohne Namen ist der Default-Logger. Seine Priorit\u00e4t \ - wird von allen Loggern \u00fcbernommen, f\u00fcr die keine Priorit\u00e4t explizit angegeben wurde. +Level=Priorität +Adjust\ Levels=Prioritäten (levels) anpassen +defaultLoggerMsg=Der Logger ohne Namen ist der Default-Logger. Seine Priorität \ + wird von allen Loggern übernommen, für die keine Priorität explizit angegeben wurde. diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_es.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_es.properties index 1b8e2770720e..58fafead4e93 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_es.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_es.properties @@ -22,8 +22,8 @@ url=https://www.jenkins.io/redirect/log-levels Level=Nivel de log -Logger\ Configuration=Configuraci\u00f3n del logger +Logger\ Configuration=Configuración del logger Name=Nombre defaultLoggerMsg=Por defecto se usa un Logger sin mombre. \ - Este nivel ser\u00e0 heredado por todos los loggers que no est\u00e9n configurados con un nivel de log. + Este nivel serà heredado por todos los loggers que no estén configurados con un nivel de log. Adjust\ Levels=Ajustar niveles de log. diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_it.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_it.properties index 5dc3220bec45..d45fc5e986a6 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_it.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -24,8 +24,8 @@ Additional\ information\ on\ log\ levels=Informazioni aggiuntive sui livelli \ di log Adjust\ Levels=Modifica livelli -defaultLoggerMsg=Il registratore log senza nome è il registratore log \ - predefinito. Questo livello sarà ereditato da tutti i registratori log che \ +defaultLoggerMsg=Il registratore log senza nome è il registratore log \ + predefinito. Questo livello sarà ereditato da tutti i registratori log che \ non hanno un livello configurato. Level=Livello Logger\ Configuration=Configurazione registratore log diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ja.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ja.properties index e3c5d24cb69e..5db966ce343d 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ja.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ja.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Logger\ Configuration=\u30ED\u30AC\u30FC\u306E\u8A2D\u5B9A -Name=\u540D\u524D -Level=\u30EC\u30D9\u30EB +Logger\ Configuration=ロガーã®è¨­å®š +Name=åå‰ +Level=レベル url=https://www.jenkins.io/redirect/log-levels -defaultLoggerMsg=\u540D\u524D\u304C\u306A\u3044\u30ED\u30AC\u30FC\u306F\u30C7\u30D5\u30A9\u30EB\u30C8\u306E\u30ED\u30AC\u30FC\u3067\u3059\u3002\ - \u30C7\u30D5\u30A9\u30EB\u30C8\u306E\u30ED\u30AC\u30FC\u306E\u30EC\u30D9\u30EB\u306F\u3001\u8A2D\u5B9A\u3057\u306A\u304F\u3066\u3082\u5168\u3066\u306E\u30ED\u30AC\u30FC\u306B\u5F15\u304D\u7D99\u304C\u308C\u307E\u3059\u3002 -Adjust\ Levels=\u30EC\u30D9\u30EB\u306E\u8ABF\u6574 +defaultLoggerMsg=åå‰ãŒãªã„ロガーã¯ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã®ãƒ­ã‚¬ãƒ¼ã§ã™ã€‚\ + デフォルトã®ãƒ­ã‚¬ãƒ¼ã®ãƒ¬ãƒ™ãƒ«ã¯ã€è¨­å®šã—ãªãã¦ã‚‚å…¨ã¦ã®ãƒ­ã‚¬ãƒ¼ã«å¼•ã継ãŒã‚Œã¾ã™ã€‚ +Adjust\ Levels=レベルã®èª¿æ•´ diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ko.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ko.properties index 8229e5d2d39f..6493f03c4c55 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ko.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ko.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Adjust\ Levels=\uB808\uBCA8 \uC870\uC815 -Level=\uB808\uBCA8 -Logger\ Configuration=\uB85C\uAC70 \uC124\uC815 -Name=\uC774\uB984 -defaultLoggerMsg=\uC774\uB984\uC774 \uC5C6\uB294 Logger\uB294 \uAE30\uBCF8 Logger\uC785\uB2C8\uB2E4. \uB808\uBCA8\uC774 \uC124\uC815\uB418\uC9C0 \uC54A\uC740 \uBAA8\uB4E0 Logger\uB4E4\uC740 \uC774 \uB808\uBCA8\uC744 \uC0C1\uC18D\uD569\uB2C8\uB2E4. +Adjust\ Levels=레벨 ì¡°ì • +Level=레벨 +Logger\ Configuration=로거 설정 +Name=ì´ë¦„ +defaultLoggerMsg=ì´ë¦„ì´ ì—†ëŠ” Logger는 기본 Logger입니다. ë ˆë²¨ì´ ì„¤ì •ë˜ì§€ ì•Šì€ ëª¨ë“  Loggerë“¤ì€ ì´ ë ˆë²¨ì„ ìƒì†í•©ë‹ˆë‹¤. url=https://www.jenkins.io/redirect/log-levels diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_lv.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_lv.properties index f69399af5f89..2e2a5d42beb3 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_lv.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_lv.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Adjust\ Levels=Piel\u0101got l\u012Bme\u0146us -Level=L\u012Bmenis -Logger\ Configuration=\u017Durnal\u0113t\u0101ja Konfigur\u0101cija +Adjust\ Levels=PielÄgot lÄ«meņus +Level=LÄ«menis +Logger\ Configuration=ŽurnalÄ“tÄja KonfigurÄcija Name=Nosaukums diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_pl.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_pl.properties index f8a899292007..0a4ca0be94ba 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_pl.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_pl.properties @@ -4,4 +4,4 @@ Adjust\ Levels=Dopasuj poziomy Level=Poziom Logger\ Configuration=Konfiguracja rejestratora Name=Nazwa -defaultLoggerMsg=Rejestrator bez nazwy jest domy\u015Blnym rejestratorem. Ten poziom b\u0119dzie dziedziczony przez wszystkie rejestratory bez skonfigurowanego poziomu. +defaultLoggerMsg=Rejestrator bez nazwy jest domyÅ›lnym rejestratorem. Ten poziom bÄ™dzie dziedziczony przez wszystkie rejestratory bez skonfigurowanego poziomu. diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_pt_BR.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_pt_BR.properties index a07390a029ce..a9470ddaf162 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_pt_BR.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_pt_BR.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Level=N\u00EDvel -defaultLoggerMsg=O registrador de atividades sem nomes \u00E9 o de uso padr\u00E3o. \ - Este n\u00EDvel ser\u00E1 herdado por todos os registradores de atividade sem um n\u00EDvel configurado. +Level=Nível +defaultLoggerMsg=O registrador de atividades sem nomes é o de uso padrão. \ + Este nível será herdado por todos os registradores de atividade sem um nível configurado. Name=Nome -Adjust\ Levels=Ajustar os n\u00EDveis -Logger\ Configuration=Configura\u00E7\u00E3o do Registrador de Atividades +Adjust\ Levels=Ajustar os níveis +Logger\ Configuration=Configuração do Registrador de Atividades url=https://www.jenkins.io/redirect/log-levels -Additional\ information\ on\ log\ levels=Informa\u00E7\u00E3o adicional sobre n\u00EDveis de registro de atividade +Additional\ information\ on\ log\ levels=Informação adicional sobre níveis de registro de atividade Save=Gravar diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ru.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ru.properties index c8c142993440..f5ccd2bcba63 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ru.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ru.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Adjust\ Levels=\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 \u0443\u0440\u043E\u0432\u043D\u0435\u0439 \u0436\u0443\u0440\u043D\u0430\u043B\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F -Level=\u0422\u0438\u043F\u044B \u0441\u043E\u0431\u044B\u0442\u0438\u0439 -Logger\ Configuration=\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F \u0436\u0443\u0440\u043D\u0430\u043B\u0430 -Name=\u041D\u0430\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u0438\u0435 -defaultLoggerMsg=\u0416\u0443\u0440\u043D\u0430\u043B \u0431\u0435\u0437 \u0438\u043C\u0435\u043D\u0438 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0441\u044F \u043F\u043E-\u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E. \u0423\u0440\u043E\u0432\u0435\u043D\u044C \u0436\u0443\u0440\u043D\u0430\u043B\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F \u0437\u0430\u0434\u0430\u043D\u043D\u044B\u0439 \u0434\u043B\u044F \u043D\u0435\u0433\u043E \u043D\u0430\u0441\u043B\u0435\u0434\u0443\u0435\u0442\u0441\u044F \u0432\u0441\u0435\u043C\u0438 \u0436\u0443\u0440\u043D\u0430\u043B\u0430\u043C\u0438, \u0434\u043B\u044F \u043A\u043E\u0442\u043E\u0440\u044B\u0445 \u0443\u0440\u043E\u0432\u0435\u043D\u044C \u0436\u0443\u0440\u043D\u0430\u043B\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F \u043D\u0435 \u0437\u0430\u0434\u0430\u043D. +Adjust\ Levels=ÐаÑтройка уровней Ð¶ÑƒÑ€Ð½Ð°Ð»Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ +Level=Типы Ñобытий +Logger\ Configuration=ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð° +Name=Ðаименование +defaultLoggerMsg=Журнал без имени иÑпользуетÑÑ Ð¿Ð¾-умолчанию. Уровень Ð¶ÑƒÑ€Ð½Ð°Ð»Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð·Ð°Ð´Ð°Ð½Ð½Ñ‹Ð¹ Ð´Ð»Ñ Ð½ÐµÐ³Ð¾ наÑледуетÑÑ Ð²Ñеми журналами, Ð´Ð»Ñ ÐºÐ¾Ñ‚Ð¾Ñ€Ñ‹Ñ… уровень Ð¶ÑƒÑ€Ð½Ð°Ð»Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð½Ðµ задан. url=https://www.jenkins.io/redirect/log-levels diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_sr.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_sr.properties index 8e1e35846e9f..9c411afd47d7 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_sr.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_sr.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Logger\ Configuration=\u041F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0436\u0443\u0440\u043D\u0430\u043B\u043E\u0432\u0430\u045A\u0430 +Logger\ Configuration=Подешавања журналовања url=https://www.jenkins.io/redirect/log-levels -Name=\u0418\u043C\u0435 -Level=\u041D\u0438\u0432\u043E -defaultLoggerMsg=\u041F\u0440\u0435\u043F\u0438\u0441\u0438\u0432\u0430\u0447 \u0431\u0435\u0437 \u0438\u043C\u0435\u043D\u0430 \u0458\u0435 \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u043D\u0438 \u043F\u0440\u0435\u043F\u0438\u0441\u0438\u0432\u0430\u0447. \u0422\u0430\u0458 \u043D\u0438\u0432\u043E \u045B\u0435 \u0432\u0438\u0442\u0438 \u043D\u0430\u0441\u043B\u0435\u0452\u0435\u043D -Adjust\ Levels=\u041F\u043E\u0434\u0435\u0441\u0438 \u043D\u0438\u0432\u043E\u0435 +Name=Име +Level=Ðиво +defaultLoggerMsg=ПрепиÑивач без имена је Ñтандардни препиÑивач. Тај ниво ће вити наÑлеђен +Adjust\ Levels=ПодеÑи нивое diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_zh_TW.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_zh_TW.properties index 970544709fcd..3740f9695fb4 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_zh_TW.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_zh_TW.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Adjust\ Levels=\u8ABF\u6574\u7B49\u7D1A -Level=\u7B49\u7D1A -Logger\ Configuration=\u8A18\u9304\u5668\u8A2D\u5B9A -Name=\u540D\u7A31 -defaultLoggerMsg=\u6C92\u6709\u540D\u7A31\u7684\u8A18\u9304\u5668\u5C31\u662F\u9810\u8A2D\u8A18\u9304\u5668\u3002\u5B83\u7684\u7B49\u7D1A\u6703\u88AB\u6240\u6709\u6C92\u6709\u6307\u5B9A\u7B49\u7D1A\u7684\u8A18\u9304\u5668\u7E7C\u627F\u3002 +Adjust\ Levels=調整等級 +Level=等級 +Logger\ Configuration=記錄器設定 +Name=å稱 +defaultLoggerMsg=沒有å稱的記錄器就是é è¨­è¨˜éŒ„器。它的等級會被所有沒有指定等級的記錄器繼承。 url=https://www.jenkins.io/redirect/log-levels diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/new_bg.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/new_bg.properties index 0736fc63c290..0c48101ee9d8 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/new_bg.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/new_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Name=\ - \u0418\u043c\u0435 + Име diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/new_it.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/new_it.properties index e802c683045d..9815b8b2bca3 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/new_it.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/new_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/new_ja.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/new_ja.properties index bd287222d753..a406311441dd 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/new_ja.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/new_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540D\u524D +Name=åå‰ diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/new_ko.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/new_ko.properties index fd73b83c81bf..5191258ca481 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/new_ko.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/new_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\uC774\uB984 +Name=ì´ë¦„ diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/new_ru.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/new_ru.properties index e08ee3b50f04..50d6d4500b00 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/new_ru.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/new_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u0418\u043C\u044F +Name=Ð˜Ð¼Ñ diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/new_sr.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/new_sr.properties index 2fbb8bde3800..820b57dea569 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/new_sr.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/new_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Name=\u0418\u043C\u0435 +Name=Име diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/new_zh_TW.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/new_zh_TW.properties index c481a65382a6..a2a5504d17fb 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/new_zh_TW.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/new_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540D\u7A31 +Name=å稱 diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_bg.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_bg.properties index cf4d1a5f0cf4..16f1c974835d 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_bg.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_bg.properties @@ -21,14 +21,14 @@ # THE SOFTWARE. Back\ to\ Dashboard=\ - \u041a\u044a\u043c \u043a\u043e\u043c\u0430\u043d\u0434\u043d\u0438\u044f \u043f\u0430\u043d\u0435\u043b + Към ÐºÐ¾Ð¼Ð°Ð½Ð´Ð½Ð¸Ñ Ð¿Ð°Ð½ÐµÐ» Logger\ List=\ - \u0421\u043f\u0438\u0441\u044a\u043a \u0441 \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0442\u0435 + СпиÑък Ñ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð¸Ñ‚Ðµ Manage\ Jenkins=\ - \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 Jenkins + Управление на Jenkins New\ Log\ Recorder=\ - \u041d\u043e\u0432 \u0436\u0443\u0440\u043d\u0430\u043b + Ðов журнал All\ Logs=\ - \u0412\u0441\u0438\u0447\u043a\u0438 \u0436\u0443\u0440\u043d\u0430\u043b\u0438 + Ð’Ñички журнали Log\ Levels=\ - \u041d\u0438\u0432\u043e \u043d\u0430 \u0436\u0443\u0440\u043d\u0430\u043b\u043d\u0438\u0442\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 + Ðиво на журналните запиÑи diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_de.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_de.properties index 854224520892..315e2425b78e 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_de.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_de.properties @@ -1,6 +1,6 @@ -Back\ to\ Dashboard=Zur\u00fcck zur \u00dcbersicht +Back\ to\ Dashboard=Zurück zur Ãœbersicht Logger\ List=Logger-Liste All\ Logs=Alle Logs New\ Log\ Recorder=Neuer Log-Rekorder -Log\ Levels=Log-Priorit\u00e4ten (Levels) +Log\ Levels=Log-Prioritäten (Levels) Manage\ Jenkins=Jenkins verwalten diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_hu.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_hu.properties index 3843692f11ca..c73857167371 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_hu.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_hu.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -All\ Logs=\u00D6sszes Log +All\ Logs=Összes Log Back\ to\ Dashboard=Vissza a Dashboard-ra Log\ Levels=Log Szintek -Logger\ List=Loggol\u00F3k List\u00E1ja -Manage\ Jenkins=Jenkins Kezel\u00E9se -New\ Log\ Recorder=\u00DAj Log Felvev\u0151 +Logger\ List=Loggolók Listája +Manage\ Jenkins=Jenkins Kezelése +New\ Log\ Recorder=Új Log FelvevÅ‘ diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_it.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_it.properties index f6b171b1c99e..e79a4980230b 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_it.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_ja.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_ja.properties index 1f7a040b4f4b..f01d675575fe 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_ja.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_ja.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u3078\u623b\u308b -Manage\ Jenkins=Jenkins\u306e\u7ba1\u7406 -Logger\ List=\u30ed\u30ac\u30fc\u30ea\u30b9\u30c8 -All\ Logs=\u3059\u3079\u3066\u306e\u30ed\u30b0 -New\ Log\ Recorder=\u65b0\u898f\u30ec\u30b3\u30fc\u30c0\u30fc\u767b\u9332 -Log\ Levels=\u30ed\u30b0\u30ec\u30d9\u30eb +Back\ to\ Dashboard=ダッシュボードã¸æˆ»ã‚‹ +Manage\ Jenkins=Jenkinsã®ç®¡ç† +Logger\ List=ロガーリスト +All\ Logs=ã™ã¹ã¦ã®ãƒ­ã‚° +New\ Log\ Recorder=æ–°è¦ãƒ¬ã‚³ãƒ¼ãƒ€ãƒ¼ç™»éŒ² +Log\ Levels=ログレベル diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_ko.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_ko.properties index 6cf1b6d7c28a..ba9e06991a18 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_ko.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_ko.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -All\ Logs=\ubaa8\ub4e0 \ub85c\uadf8 -Manage\ Jenkins=Jenkins \uad00\ub9ac -Back\ to\ Dashboard=\ub300\uc2dc\ubcf4\ub4dc\ub85c \ub3cc\uc544\uac10 -Log\ Levels=\uB85C\uADF8 \uB808\uBCA8 -Logger\ List=\ub85c\uadf8 \ubaa9\ub85d -New\ Log\ Recorder=\uc0c8 \ub85c\uadf8 \uae30\ub85d\uae30 +All\ Logs=모든 로그 +Manage\ Jenkins=Jenkins 관리 +Back\ to\ Dashboard=대시보드로 ëŒì•„ê° +Log\ Levels=로그 레벨 +Logger\ List=로그 ëª©ë¡ +New\ Log\ Recorder=새 로그 기ë¡ê¸° diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_lt.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_lt.properties index 442871dc6995..4e8a37047877 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_lt.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_lt.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -All\ Logs=Visi \u017Eurnalai -Log\ Levels=\u017Durnal\u0173 lygiai +All\ Logs=Visi žurnalai +Log\ Levels=Žurnalų lygiai Manage\ Jenkins=Valdyti Jenkins diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_lv.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_lv.properties index 4ca046f2c3ee..7c53c42d7e81 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_lv.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_lv.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -All\ Logs=Visi \u017Eurn\u0101li -Back\ to\ Dashboard=Atpaka\u013C uz Uzdevumd\u0113li -Log\ Levels=\u017Durn\u0101la l\u012Bme\u0146i -Logger\ List=Ie\u017Eurnal\u0113t\u0101ja saraksts -Manage\ Jenkins=P\u0101rvald\u012Bt Jenkins -New\ Log\ Recorder=Jauns \u017Eurn\u0101la ieraksts +All\ Logs=Visi žurnÄli +Back\ to\ Dashboard=Atpakaļ uz UzdevumdÄ“li +Log\ Levels=ŽurnÄla lÄ«meņi +Logger\ List=IežurnalÄ“tÄja saraksts +Manage\ Jenkins=PÄrvaldÄ«t Jenkins +New\ Log\ Recorder=Jauns žurnÄla ieraksts diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pl.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pl.properties index 47ad32fa69ca..a62eaa6321ca 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pl.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pl.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. All\ Logs=Wszystkie Logi -Back\ to\ Dashboard=Powr\u00F3t do tablicy +Back\ to\ Dashboard=Powrót do tablicy Log\ Levels=Poziom logowania -Logger\ List=Lista rejestrator\u00F3w log\u00F3w -Manage\ Jenkins=Zarz\u0105dzaj Jenkinsem -New\ Log\ Recorder=Dodaj rejestratora log\u00F3w +Logger\ List=Lista rejestratorów logów +Manage\ Jenkins=ZarzÄ…dzaj Jenkinsem +New\ Log\ Recorder=Dodaj rejestratora logów diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pt_BR.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pt_BR.properties index 71dfbcf21c2e..b7c1fa1f30df 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pt_BR.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pt_BR.properties @@ -23,6 +23,6 @@ Back\ to\ Dashboard=Voltar Manage\ Jenkins=Gerenciar Jenkins -Log\ Levels=N\u00EDveis de registro de atividade +Log\ Levels=Níveis de registro de atividade All\ Log\ Messages=Todas as mensagens de registro de atividade Log\ Recorders=Gravadores de registro de atividade diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pt_PT.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pt_PT.properties index b8a9aa3d99a3..f90277997c87 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pt_PT.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pt_PT.properties @@ -2,7 +2,7 @@ All\ Logs=Todos os Logs Back\ to\ Dashboard=Voltar ao Painel -Log\ Levels=N\u00EDveis de Log +Log\ Levels=Níveis de Log Logger\ List=Lista de Loggers Manage\ Jenkins=Gerir o Jenkins New\ Log\ Recorder=Novo Gravador de Log diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_ru.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_ru.properties index 7615d49e66a8..8fd19b24a872 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_ru.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -All\ Logs=\u0412\u0441\u0435 \u0436\u0443\u0440\u043D\u0430\u043B\u044B -Back\ to\ Dashboard=\u0414\u043e\u043c\u043e\u0439 -Manage\ Jenkins=\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c Jenkins -Log\ Levels=\u0423\u0440\u043E\u0432\u043D\u0438 \u0436\u0443\u0440\u043D\u0430\u043B\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F -Logger\ List=\u0421\u043F\u0438\u0441\u043E\u043A \u0436\u0443\u0440\u043D\u0430\u043B\u043E\u0432 -New\ Log\ Recorder=\u041D\u043E\u0432\u044B\u0439 \u0436\u0443\u0440\u043D\u0430\u043B +All\ Logs=Ð’Ñе журналы +Back\ to\ Dashboard=Домой +Manage\ Jenkins=ÐаÑтроить Jenkins +Log\ Levels=Уровни Ð¶ÑƒÑ€Ð½Ð°Ð»Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ +Logger\ List=СпиÑок журналов +New\ Log\ Recorder=Ðовый журнал diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_sr.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_sr.properties index 332bbec552ce..27cc591ea0f4 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_sr.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_sr.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Back\ to\ Dashboard=\u041D\u0430\u0437\u0430\u0434 \u043D\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043D\u0443 \u043F\u0430\u043D\u0435\u043B\u0443 -Manage\ Jenkins=\u0423\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 Jenkins-\u043E\u043C -Logger\ List=\u041F\u0440\u0435\u043F\u0438\u0441\u0438\u0432\u0430\u0447\u0438 -New\ Log\ Recorder=\u041D\u043E\u0432\u0438 \u043F\u0440\u0435\u043F\u0438\u0441\u0438\u0432\u0430\u0447 -Log\ Levels=\u041D\u0438\u0432\u043E\u0438 \u0436\u0443\u0440\u043D\u0430\u043B\u0430 -All\ Logs=\u0421\u0432\u0438 \u0436\u0443\u0440\u043D\u0430\u043B\u0438 +Back\ to\ Dashboard=Ðазад на контролну панелу +Manage\ Jenkins=Управљање Jenkins-ом +Logger\ List=ПрепиÑивачи +New\ Log\ Recorder=Ðови препиÑивач +Log\ Levels=Ðивои журнала +All\ Logs=Сви журнали diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_sv_SE.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_sv_SE.properties index dd3059216c33..1f496cedc47c 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_sv_SE.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_sv_SE.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Back\ to\ Dashboard=Tillbaka till instrumentpanel -Log\ Levels=Loggningsniv\u00E5er +Log\ Levels=LoggningsnivÃ¥er Manage\ Jenkins=Hantera Jenkins diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_zh_TW.properties index 4737e60f6159..cf180e5f34bb 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_zh_TW.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -All\ Logs=\u6240\u6709\u8a18\u9304 -Log\ Levels=\u8a18\u9304\u7b49\u7d1a -Logger\ List=\u8a18\u9304\u5668\u6e05\u55ae -Manage\ Jenkins=\u7ba1\u7406 Jenkins -New\ Log\ Recorder=\u65b0\u589e\u8a18\u9304\u9304\u88fd\u5668 -Back\ to\ Dashboard=\u8fd4\u56de\u8cc7\u8a0a\u4e3b\u9801 +All\ Logs=所有記錄 +Log\ Levels=記錄等級 +Logger\ List=記錄器清單 +Manage\ Jenkins=ç®¡ç† Jenkins +New\ Log\ Recorder=新增記錄錄製器 +Back\ to\ Dashboard=è¿”å›žè³‡è¨Šä¸»é  diff --git a/core/src/main/resources/hudson/logging/Messages_bg.properties b/core/src/main/resources/hudson/logging/Messages_bg.properties index 71b30e1d27a9..4bd6b9075941 100644 --- a/core/src/main/resources/hudson/logging/Messages_bg.properties +++ b/core/src/main/resources/hudson/logging/Messages_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. LogRecorderManager.init=\ - \u041f\u043e\u0434\u0433\u043e\u0442\u0432\u044f\u043d\u0435 \u043d\u0430 \u0437\u0430\u043f\u0438\u0441\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0442\u0435 + ПодготвÑне на запиÑването на журналите LogRecorderManager.DisplayName=\ - \u0436\u0443\u0440\u043d\u0430\u043b + журнал diff --git a/core/src/main/resources/hudson/logging/Messages_fr.properties b/core/src/main/resources/hudson/logging/Messages_fr.properties index 9668bb94c0a8..489da5aa8063 100644 --- a/core/src/main/resources/hudson/logging/Messages_fr.properties +++ b/core/src/main/resources/hudson/logging/Messages_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -LogRecorderManager.DisplayName=Logs systèmes +LogRecorderManager.DisplayName=Logs systèmes diff --git a/core/src/main/resources/hudson/logging/Messages_it.properties b/core/src/main/resources/hudson/logging/Messages_it.properties index d4fe8d5b9363..b30abd9cdaf6 100644 --- a/core/src/main/resources/hudson/logging/Messages_it.properties +++ b/core/src/main/resources/hudson/logging/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/logging/Messages_ja.properties b/core/src/main/resources/hudson/logging/Messages_ja.properties index fd51f08d24d1..3cb7c402551a 100644 --- a/core/src/main/resources/hudson/logging/Messages_ja.properties +++ b/core/src/main/resources/hudson/logging/Messages_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -LogRecorderManager.init=\u30ed\u30b0\u30ec\u30b3\u30fc\u30c0\u30fc\u306e\u521d\u671f\u5316\u4e2d -LogRecorderManager.DisplayName=\u30ed\u30b0 +LogRecorderManager.init=ログレコーダーã®åˆæœŸåŒ–中 +LogRecorderManager.DisplayName=ログ diff --git a/core/src/main/resources/hudson/logging/Messages_pl.properties b/core/src/main/resources/hudson/logging/Messages_pl.properties index d9a98bbf3de5..1b2b1ae62f15 100644 --- a/core/src/main/resources/hudson/logging/Messages_pl.properties +++ b/core/src/main/resources/hudson/logging/Messages_pl.properties @@ -19,5 +19,5 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -LogRecorderManager.DisplayName=Rejestrator log\u00F3w -LogRecorderManager.init=Inicjalizowanie rejestrator\u00F3w log\u00F3w +LogRecorderManager.DisplayName=Rejestrator logów +LogRecorderManager.init=Inicjalizowanie rejestratorów logów diff --git a/core/src/main/resources/hudson/logging/Messages_pt_BR.properties b/core/src/main/resources/hudson/logging/Messages_pt_BR.properties index f9ccf9619388..6b41977b7364 100644 --- a/core/src/main/resources/hudson/logging/Messages_pt_BR.properties +++ b/core/src/main/resources/hudson/logging/Messages_pt_BR.properties @@ -21,11 +21,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -LogRecorderManager.init=Inicializando grava\u00E7\u00E3o de log +LogRecorderManager.init=Inicializando gravação de log LogRecorderManager.DisplayName=Registro de atividades do sistema -LogRecorderManager.LoggerNotFound=N\u00E3o existe um registrador de atividades chamado "{0}". \ +LogRecorderManager.LoggerNotFound=Não existe um registrador de atividades chamado "{0}". \ Adicione um registrador de atividades com este nome para um gravador de atividades de \ - registro ("logger") antes de tentar configurar seu n\u00EDvel. -LogRecorder.Target.Empty.Warning=Configurar o registrador de atividades Ra\u00EDz (vazio) como FINE or abaixo \u00E9 fortemente \ - desencorajado j\u00E1 que ele prejudica excessivamente o desempenho. Ele pode at\u00E9 mesmo quebrar o Jenkins e impedir que \ + registro ("logger") antes de tentar configurar seu nível. +LogRecorder.Target.Empty.Warning=Configurar o registrador de atividades Raíz (vazio) como FINE or abaixo é fortemente \ + desencorajado já que ele prejudica excessivamente o desempenho. Ele pode até mesmo quebrar o Jenkins e impedir que \ ele inicialize. diff --git a/core/src/main/resources/hudson/logging/Messages_sr.properties b/core/src/main/resources/hudson/logging/Messages_sr.properties index 205ec70bdc50..f49aefd80179 100644 --- a/core/src/main/resources/hudson/logging/Messages_sr.properties +++ b/core/src/main/resources/hudson/logging/Messages_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -LogRecorderManager.init=\u0418\u043D\u0438\u0446\u0438\u0430\u043B\u0438\u0437\u0430\u0446\u0438\u0458\u0430 \u043F\u0440\u0435\u043F\u0438\u0441\u0438\u0432\u0430\u0447\u0430 -LogRecorderManager.DisplayName=\u0436\u0443\u0440\u043D\u0430\u043B +LogRecorderManager.init=Инициализација препиÑивача +LogRecorderManager.DisplayName=журнал diff --git a/core/src/main/resources/hudson/logging/Messages_zh_TW.properties b/core/src/main/resources/hudson/logging/Messages_zh_TW.properties index 4abbb1884959..bf36d7d01e1b 100644 --- a/core/src/main/resources/hudson/logging/Messages_zh_TW.properties +++ b/core/src/main/resources/hudson/logging/Messages_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -LogRecorderManager.init=\u521d\u59cb\u5316\u8a18\u9304\u9304\u88fd\u5668 -LogRecorderManager.DisplayName=\u8a18\u9304 +LogRecorderManager.init=åˆå§‹åŒ–記錄錄製器 +LogRecorderManager.DisplayName=記錄 diff --git a/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_bg.properties b/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_bg.properties index b5bacd470ca9..de2e34fae103 100644 --- a/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_bg.properties +++ b/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_bg.properties @@ -22,6 +22,6 @@ # Treats all input as plain text. HTML unsafe characters like < and & are escaped to their respective character entities. blurb=\ - \u0414\u0430 \u0441\u0435 \u043f\u0440\u0438\u0435\u043c\u0435, \u0447\u0435 \u043f\u043e\u0434\u0430\u0434\u0435\u043d\u0438\u044f\u0442 \u0442\u0435\u043a\u0441\u0442 \u0432\u0438\u043d\u0430\u0433\u0438 \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0435 \u043e\u0431\u0438\u043a\u043d\u043e\u0432\u0435\u043d \u0442\u0435\u043a\u0441\u0442. \u0417\u043d\u0430\u0446\u0438\u0442\u0435,\ - \u043a\u043e\u0438\u0442\u043e \u043e\u0431\u044a\u0440\u043a\u0432\u0430\u0442 HTML, \u043a\u0430\u0442\u043e \u201e<\u201c \u0438 \u201e&\u201c \u0431\u0438\u0432\u0430\u0442 \u0437\u0430\u043c\u0435\u043d\u044f\u043d\u0438 \u0441\u044a\u0441 \u0441\u044a\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0430\u0449\u0438\u0442\u0435\ - \u0437\u0430\u043c\u0435\u0441\u0442\u0432\u0430\u0449\u0438 \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u043d\u043e\u0441\u0442\u0438. + Да Ñе приеме, че подадениÑÑ‚ текÑÑ‚ винаги Ñ‚Ñ€Ñбва да е обикновен текÑÑ‚. Знаците,\ + които объркват HTML, като „<“ и „&“ биват заменÑни ÑÑŠÑ ÑъответÑтващите\ + замеÑтващи поÑледователноÑти. diff --git a/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_it.properties b/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_it.properties index e35f8f285960..b565e0facd1e 100644 --- a/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_it.properties +++ b/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,5 +22,5 @@ # THE SOFTWARE. blurb=Considera tutto l''input come testo semplice. I caratteri HTML non \ - sicuri come < e & sono sottoposti ad escape e sostituiti con le entità \ + sicuri come < e & sono sottoposti ad escape e sostituiti con le entità \ carattere corrispondenti. diff --git a/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_ja.properties b/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_ja.properties index 996b78979c00..667262d61292 100644 --- a/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_ja.properties +++ b/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_ja.properties @@ -1 +1 @@ -blurb=\u5165\u529b\u3092\u3059\u3079\u3066\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u6271\u3044\u307e\u3059\u3002HTML\u3067\u5b89\u5168\u3067\u306a\u3044'<'\u3084'&'\u3092\u5bfe\u5fdc\u3059\u308b\u6587\u5b57\u53c2\u7167\u306b\u30a8\u30b9\u30b1\u30fc\u30d7\u3057\u307e\u3059\u3002 +blurb=入力をã™ã¹ã¦ãƒ†ã‚­ã‚¹ãƒˆã¨ã—ã¦æ‰±ã„ã¾ã™ã€‚HTMLã§å®‰å…¨ã§ãªã„'<'ã‚„'&'を対応ã™ã‚‹æ–‡å­—å‚ç…§ã«ã‚¨ã‚¹ã‚±ãƒ¼ãƒ—ã—ã¾ã™ã€‚ diff --git a/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_pt_BR.properties b/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_pt_BR.properties index a57f875dc543..8a02b9a4ea6d 100644 --- a/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_pt_BR.properties +++ b/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. # Treats all input as plain text. HTML unsafe characters like < and & are escaped to their respective character entities. -blurb=Trata todas as entradas como texto puro. Caracteres HTML inseguros como < e & s\u00e3o convertidos para suas respectivas entidades correspondentes. +blurb=Trata todas as entradas como texto puro. Caracteres HTML inseguros como < e & são convertidos para suas respectivas entidades correspondentes. diff --git a/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_sr.properties b/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_sr.properties index b8caf9dd6b91..56a07a16acbd 100644 --- a/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_sr.properties +++ b/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -blurb=\u0421\u043C\u0430\u0442\u0440\u0430 \u0441\u0432\u0435 \u043A\u0430\u043E \u043E\u0431\u0438\u0447\u0430\u043D \u0442\u0435\u043A\u0441\u0442. HTML \u0437\u043D\u0430\u0446\u0438 < \u0438 & \u0441\u0443 \u043F\u0440\u0435\u0442\u0432\u043E\u0440\u0435\u043D\u0438 \u0443 \u043E\u0434\u0433\u043E\u0432\u0430\u0440\u0430\u0458\u0443\u045B\u0435 \u0435\u043D\u0442\u0438\u0442\u0435\u0442\u0435. +blurb=Сматра Ñве као обичан текÑÑ‚. HTML знаци < и & Ñу претворени у одговарајуће ентитете. diff --git a/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_zh_TW.properties b/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_zh_TW.properties index 2ae6ee90e96c..02bf1a5a39cb 100644 --- a/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_zh_TW.properties +++ b/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_zh_TW.properties @@ -1 +1 @@ -blurb=\u5c07\u6240\u6709\u8f38\u5165\u8996\u70ba\u7d14\u6587\u5b57\u3002\u4e0d\u5b89\u5168\u7684 HTML \u5b57\u5143\u5982\u300c<\u300d \u548c\u300c&\u300d\u6703\u88ab\u8df3\u812b\u3002 +blurb=將所有輸入視為純文字。ä¸å®‰å…¨çš„ HTML 字元如「<〠和「&ã€æœƒè¢«è·³è„«ã€‚ diff --git a/core/src/main/resources/hudson/markup/Messages_bg.properties b/core/src/main/resources/hudson/markup/Messages_bg.properties index c7a2206baae9..98119e21f106 100644 --- a/core/src/main/resources/hudson/markup/Messages_bg.properties +++ b/core/src/main/resources/hudson/markup/Messages_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. EscapedMarkupFormatter.DisplayName=\ - \u041e\u0431\u0438\u043a\u043d\u043e\u0432\u0435\u043d \u0442\u0435\u043a\u0441\u0442 + Обикновен текÑÑ‚ diff --git a/core/src/main/resources/hudson/markup/Messages_it.properties b/core/src/main/resources/hudson/markup/Messages_it.properties index 11d3d38294a9..b9f6c69367cf 100644 --- a/core/src/main/resources/hudson/markup/Messages_it.properties +++ b/core/src/main/resources/hudson/markup/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/markup/Messages_ja.properties b/core/src/main/resources/hudson/markup/Messages_ja.properties index e32b5aed7fe7..d8ef36c25a26 100644 --- a/core/src/main/resources/hudson/markup/Messages_ja.properties +++ b/core/src/main/resources/hudson/markup/Messages_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -EscapedMarkupFormatter.DisplayName=HTML\u3092\u30a8\u30b9\u30b1\u30fc\u30d7 +EscapedMarkupFormatter.DisplayName=HTMLをエスケープ diff --git a/core/src/main/resources/hudson/markup/Messages_sr.properties b/core/src/main/resources/hudson/markup/Messages_sr.properties index fca7c4aaf024..af4c80da0e45 100644 --- a/core/src/main/resources/hudson/markup/Messages_sr.properties +++ b/core/src/main/resources/hudson/markup/Messages_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -EscapedMarkupFormatter.DisplayName=\u041E\u0431\u0438\u0447\u0430\u043D \u0442\u0435\u043A\u0441\u0442 +EscapedMarkupFormatter.DisplayName=Обичан текÑÑ‚ diff --git a/core/src/main/resources/hudson/markup/Messages_tr.properties b/core/src/main/resources/hudson/markup/Messages_tr.properties index 2fe17fdfca6f..3f641ca0454b 100644 --- a/core/src/main/resources/hudson/markup/Messages_tr.properties +++ b/core/src/main/resources/hudson/markup/Messages_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -EscapedMarkupFormatter.DisplayName=D\u00FCz metin +EscapedMarkupFormatter.DisplayName=Düz metin diff --git a/core/src/main/resources/hudson/markup/Messages_zh_TW.properties b/core/src/main/resources/hudson/markup/Messages_zh_TW.properties index 976ac5f75cb9..0713787a540f 100644 --- a/core/src/main/resources/hudson/markup/Messages_zh_TW.properties +++ b/core/src/main/resources/hudson/markup/Messages_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -EscapedMarkupFormatter.DisplayName=\u7d14\u6587\u5b57 +EscapedMarkupFormatter.DisplayName=純文字 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_bg.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_bg.properties index 8dc5346f7f95..e3d802f52222 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_bg.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Changes=\ - \u041f\u0440\u043e\u043c\u00e8\u043d\u0438 + Промèни Failed\ to\ determine=\ - \u0413\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u043d\u0435\u0442\u043e \u043d\u0430 \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435 + Грешка при определÑнето на промените log=\ - \u0436\u0443\u0440\u043d\u0430\u043b + журнал Not\ yet\ determined=\ - \u041f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435 \u043d\u0435 \u0441\u0430 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438 + Промените не Ñа определени diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_cs.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_cs.properties index 941993ddcf5e..ac8219caa066 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_cs.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_cs.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Changes=Zm\u011Bny +Changes=ZmÄ›ny diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_da.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_da.properties index a5beaf9d9e4b..632257836610 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_da.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=\u00c6ndringer +Changes=Ændringer diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_de.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_de.properties index 4ef6616435f3..a322c9ac3e2f 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_de.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_de.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=\u00C4nderungen +Changes=Änderungen log=Log -Failed\ to\ determine=\u00C4nderungen konnten nicht bestimmt werden. -Not\ yet\ determined=\u00C4nderungen noch nicht bestimmt. +Failed\ to\ determine=Änderungen konnten nicht bestimmt werden. +Not\ yet\ determined=Änderungen noch nicht bestimmt. diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_el.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_el.properties index f1f929b867fa..64ded833b774 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_el.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_el.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=\u0391\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2 +Changes=Αλλαγές diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_he.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_he.properties index 5a4a7cafae58..03d726799eb3 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_he.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Changes=\u05E9\u05D9\u05E0\u05D5\u05D9\u05D9\u05DD +Changes=×©×™× ×•×™×™× diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_hu.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_hu.properties index ecf46543055f..5da99113e9f4 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_hu.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=V\u00E1ltoz\u00E1sok +Changes=Változások diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_it.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_it.properties index 6ac450f9c42f..67f1b34a8fac 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_it.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_ja.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_ja.properties index a7236dbf4c7d..9284224f8178 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_ja.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=\u5909\u66f4\u5c65\u6b74 +Changes=変更履歴 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_ko.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_ko.properties index 8b51d43374d2..a7c7ab81861c 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_ko.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=\uBCC0\uACBD\uC0AC\uD56D +Changes=변경사항 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_lv.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_lv.properties index 8be382bdc97e..ad3647fc0791 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_lv.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=Izmai\u0146as +Changes=Izmaiņas diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_pt_BR.properties index c233cde0785e..e028f6becd7c 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_pt_BR.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=Mudan\u00e7as -Not\ yet\ determined=Ainda n\u00E3o definido +Changes=Mudanças +Not\ yet\ determined=Ainda não definido Failed\ to\ determine=Falha para definir log=log diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_pt_PT.properties index 388858325892..c775ec1b315a 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_pt_PT.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_pt_PT.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=Altera\u00E7\u00F5es +Changes=Alterações diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_ro.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_ro.properties index 8a5906df5bab..73521b7ff238 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_ro.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_ro.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=Schimb\u0103ri +Changes=Schimbări diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_ru.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_ru.properties index fd172166b7bc..94b330f669c5 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f +Changes=Ð˜Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_sr.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_sr.properties index 0a8f87fa885e..314b40f12b93 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_sr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Changes=\u041F\u0440\u043E\u043C\u0435\u043D\u0435 -Not\ yet\ determined=\u0408\u043E\u0448 \u043D\u0438\u0458\u0435 \u043E\u0434\u0440\u0435\u0452\u0435\u043D\u043E -Failed\ to\ determine=\u041D\u0438\u0458\u0435 \u043C\u043E\u0433\u0443\u045B\u0435 \u043E\u0434\u0440\u0435\u0434\u0438\u0442\u0438 -log=\u0436\u0443\u0440\u043D\u0430\u043B +Changes=Промене +Not\ yet\ determined=Још није одређено +Failed\ to\ determine=Ðије могуће одредити +log=журнал diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_sv_SE.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_sv_SE.properties index 6c29ba317d10..d60a8608d6a7 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_sv_SE.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=F\u00F6r\u00E4ndringar +Changes=Förändringar diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_tr.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_tr.properties index ad7c59e3fff2..5f1a7c50d0d3 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_tr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=De\u011fi\u015fiklikler +Changes=DeÄŸiÅŸiklikler diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_uk.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_uk.properties index 809022445abb..8c42cac15705 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_uk.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=\u0417\u043C\u0456\u043D\u0438 +Changes=Зміни diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_zh_TW.properties index d0ce38bd63e5..3132812a4811 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=\u8B8A\u66F4 +Changes=變更 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_bg.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_bg.properties index 25b57a73db29..da0b4e895879 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_bg.properties @@ -21,30 +21,30 @@ # THE SOFTWARE. Build=\ - \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + Изграждане Build\ Artifacts=\ - \u0410\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u0438 \u043e\u0442 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e + Ðртефакти от изграждането Took=\ - \u041e\u0442\u043d\u0435 + Отне beingExecuted=\ - \u0422\u043e\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0441\u0435 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430 \u0432\u0435\u0447\u0435 {0} + Това изграждане Ñе изпълнÑва вече {0} on=\ - \u043d\u0430 + на startedAgo=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u043e \u043f\u0440\u0435\u0434\u0438 {0} + Стартирано преди {0} Downstream\ Builds=\ - \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f, \u043e\u0442 \u043a\u043e\u0438\u0442\u043e \u0442\u043e\u0432\u0430 \u0437\u0430\u0432\u0438\u0441\u0438 + ИзгражданиÑ, от които това завиÑи Changes\ in\ dependency=\ - \u041f\u0440\u043e\u043c\u0435\u043d\u0438 \u0432 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438\u0442\u0435 + Промени в завиÑимоÑтите none=\ - \u043d\u044f\u043c\u0430 + нÑма Upstream\ Builds=\ - \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f, \u043a\u043e\u0438\u0442\u043e \u0437\u0430\u0432\u0438\u0441\u044f\u0442 \u043e\u0442 \u0442\u043e\u0432\u0430 + ИзгражданиÑ, които завиÑÑÑ‚ от това Not\ yet\ determined=\ - \u041f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435 \u043e\u0449\u0435 \u043d\u0435 \u0441\u0430 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438 + Промените още не Ñа определени Failed\ to\ determine=\ - \u041d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0438 + Ðе може да Ñе определи log=\ - \u0436\u0443\u0440\u043d\u0430\u043b\u0430 \u0441 \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435 + журнала Ñ Ð¿Ñ€Ð¾Ð¼ÐµÐ½Ð¸Ñ‚Ðµ detail=\ - \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f + подробна Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_ca.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_ca.properties index 76ae1b8e921f..c8442b2d5d19 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_ca.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_ca.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Build=Construcci\u00F3 +Build=Construcció Build\ Artifacts=Artefacte Took=Va trigar -beingExecuted=La construcci\u00F3 ha comen\u00E7at fa {0} +beingExecuted=La construcció ha començat fa {0} on=a -startedAgo=Llan\u00E7at fa {0} +startedAgo=Llançat fa {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_cs.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_cs.properties index 679d8b6c7d29..c14314a39e0f 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_cs.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_cs.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Sestaven\u00ED -Build\ Artifacts=Sestaven\u00ED -Not\ yet\ determined=Prozat\u00EDm nezji\u0161t\u011Bno +Build=Sestavení +Build\ Artifacts=Sestavení +Not\ yet\ determined=Prozatím nezjiÅ¡tÄ›no Took=Trvalo -beingExecuted=Sestaven\u00ED prob\u00EDh\u00E1 {0} -startedAgo=Zapo\u010Dato p\u0159ed {0} +beingExecuted=Sestavení probíhá {0} +startedAgo=ZapoÄato pÅ™ed {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_da.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_da.properties index 2b75a3c2d4dd..68b4e64f303d 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_da.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_da.properties @@ -26,11 +26,11 @@ Build\ Artifacts=Byggeartifakter Build=Byg startedAgo=Startede for {0} siden Took=Tog -Changes\ in\ dependency=\u00c6ndringer i afh\u00e6ngighed -on=p\u00e5 +Changes\ in\ dependency=Ændringer i afhængighed +on=pÃ¥ none=ingen beingExecuted=Har bygget i {0} detail=detaljer -Failed\ to\ determine=Kunne ikke fastl\u00e6gge +Failed\ to\ determine=Kunne ikke fastlægge log=log Downstream\ Builds=Downstreambyg diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_de.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_de.properties index 9771e81e478d..6f92727e3b98 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_de.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_de.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. startedAgo=Vor {0} gestartet -beingExecuted=Build läuft seit {0} +beingExecuted=Build läuft seit {0} Build=Build Build\ Artifacts=Build-Artefakte -Changes\ in\ dependency=Änderungen in den Abhängigkeiten +Changes\ in\ dependency=Änderungen in den Abhängigkeiten detail=Details Not\ yet\ determined=Noch nicht bestimmt Failed\ to\ determine=Konnte nicht bestimmt werden diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_el.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_el.properties index 54c2851bfea3..b28cee5b8e8b 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_el.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_el.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Build=Build -startedAgo=\u0386\u03C1\u03C7\u03B9\u03C3\u03B5 \u03C0\u03C1\u03B9\u03BD \u03B1\u03C0\u03CC {0} +startedAgo=ΆÏχισε Ï€Ïιν από {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_es.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_es.properties index eaa36e51d896..e04a30eaacf3 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_es.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_es.properties @@ -23,15 +23,15 @@ Build=Compilar Build\ Artifacts=Artefactos Generados -startedAgo=Comenzó hace {0} +startedAgo=Comenzó hace {0} none=ninguno Failed\ to\ determine=Imposible de determinar Upstream\ Builds=Proyectos padres Not\ yet\ determined=Sin determinar -Took=Tardó +Took=Tardó Changes\ in\ dependency=Cambios en dependencias on=en detail=detalles Downstream\ Builds=Proyectos hijos log=log -beingExecuted=Compilaci\u00F3n siendo ejecutada desde +beingExecuted=Compilación siendo ejecutada desde diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_et.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_et.properties index e450a7f40c39..f794631b4c07 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_et.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_et.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Build=J\u00E4rk -Took=V\u00F5ttis aega +Build=Järk +Took=Võttis aega startedAgo=Alustati {0} tagasi diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_fi.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_fi.properties index 5a1f17147f3c..fc0d23b07a8d 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_fi.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_fi.properties @@ -20,14 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=K\u00E4\u00E4nn\u00F6s +Build=Käännös Build\ Artifacts=Buildin tuotokset -Build\ number=K\u00E4\u00E4nn\u00F6snumero +Build\ number=Käännösnumero Changes\ in\ dependency=Muutokset riippuvuuksissa Permalinks=Staattiset linkit Took=Kesti -Upstream\ Builds=Yl\u00E4virran k\u00E4\u00E4nn\u00F6kset -beingExecuted=K\u00E4\u00E4nn\u00F6s on ollut ajossa {0} ajan +Upstream\ Builds=Ylävirran käännökset +beingExecuted=Käännös on ollut ajossa {0} ajan detail=yksityiskohdat on=koneella startedAgo=Aloitettiin {0} sitten diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_fr.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_fr.properties index e284efe2992c..f61d848b7be0 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_fr.properties @@ -21,18 +21,18 @@ # THE SOFTWARE. on=concernant -startedAgo=D\u00E9marr\u00E9e il y a {0}. -Changes\ in\ dependency=Changements dans les dépendances -beingExecuted=Le build est en cours d''ex\u00E9cution depuis {0} -detail=détails -Not\ yet\ determined=Non encore déterminé -Failed\ to\ determine=Impossible à déterminer +startedAgo=Démarrée il y a {0}. +Changes\ in\ dependency=Changements dans les dépendances +beingExecuted=Le build est en cours d''exécution depuis {0} +detail=détails +Not\ yet\ determined=Non encore déterminé +Failed\ to\ determine=Impossible à déterminer log= Upstream\ Builds=Builds en amont Downstream\ Builds=Builds en aval none=aucun Permalinks=Liens permanents -Build\ number=Num\u00E9ro de build +Build\ number=Numéro de build Build=Construction Build\ Artifacts=Artefacts du build -Took=A dur\u00E9 +Took=A duré diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_he.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_he.properties index d4378257ca16..b925347dee8e 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_he.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_he.properties @@ -1,9 +1,9 @@ # This file is under the MIT License by authors -Build=\u05D1\u05E0\u05D9\u05D4 -Build\ Artifacts=\u05EA\u05D5\u05E6\u05E8\u05D9 \u05D1\u05E0\u05D9\u05D4 -Not\ yet\ determined=\u05E2\u05D5\u05D3 \u05DC\u05D0 \u05E0\u05E7\u05D1\u05E2 -Took=\u05DC\u05E7\u05D7\u05D4 -beingExecuted=\u05DE\u05EA\u05D1\u05E6\u05E2 \u05DB\u05D1\u05E8 {0} -on=\u05D1 -startedAgo= \u05D4\u05EA\u05D7\u05DC \u05DC\u05E4\u05E0\u05D9 {0} +Build=בניה +Build\ Artifacts=תוצרי בניה +Not\ yet\ determined=עוד ×œ× × ×§×‘×¢ +Took=לקחה +beingExecuted=מתבצע כבר {0} +on=ב +startedAgo= התחל לפני {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_hu.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_hu.properties index 161a7cf0de02..c443a497df2b 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_hu.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_hu.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Ford\u00EDt\u00E1s -Build\ Artifacts=\u00C9p\u00EDt\u0151k\u00F6vek -Changes\ in\ dependency=V\u00E1ltoz\u00E1sok a f\u00FCgg\u0151s\u00E9g(ek)ben -Not\ yet\ determined=M\u00E9g nincs feldolgozva +Build=Fordítás +Build\ Artifacts=ÉpítÅ‘kövek +Changes\ in\ dependency=Változások a függÅ‘ség(ek)ben +Not\ yet\ determined=Még nincs feldolgozva Took=tartott beingExecuted=A build {0} perce fut -detail=b\u0151vebben +detail=bÅ‘vebben on=@ -startedAgo=Elkezd\u0151d\u00F6tt {0}-kor +startedAgo=ElkezdÅ‘dött {0}-kor diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_it.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_it.properties index 2b4acf092fca..907fcd882ca6 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_it.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,7 +21,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -beingExecuted=La compilazione è in corso da {0} +beingExecuted=La compilazione è in corso da {0} Build=Compilazione Build\ Artifacts=Artefatti compilazione Changes\ in\ dependency=Modifiche alle dipendenze diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_ja.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_ja.properties index ac57eeb2de79..cd069b223e5c 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_ja.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_ja.properties @@ -20,17 +20,17 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -startedAgo={0}\u306b\u958b\u59cb -Took=\u6240\u8981\u6642\u9593 -Build=\u30d3\u30eb\u30c9 -Build\ Artifacts=\u30d3\u30eb\u30c9\u306e\u6210\u679c\u7269 -Changes\ in\ dependency=\u4e0a\u6d41\u306e\u5909\u66f4 -detail=\u8a73\u7d30 -Not\ yet\ determined=\u73fe\u5728\u8a08\u7b97\u4e2d -Failed\ to\ determine=\u8a08\u7b97\u306b\u5931\u6557 -log=\u30ed\u30b0 -Upstream\ Builds=\u4e0a\u6d41\u30d3\u30eb\u30c9 -Downstream\ Builds=\u4e0b\u6d41\u30d3\u30eb\u30c9 -none=\u306a\u3057 +startedAgo={0}ã«é–‹å§‹ +Took=所è¦æ™‚é–“ +Build=ビルド +Build\ Artifacts=ビルドã®æˆæžœç‰© +Changes\ in\ dependency=上æµã®å¤‰æ›´ +detail=詳細 +Not\ yet\ determined=ç¾åœ¨è¨ˆç®—中 +Failed\ to\ determine=計算ã«å¤±æ•— +log=ログ +Upstream\ Builds=上æµãƒ“ルド +Downstream\ Builds=下æµãƒ“ルド +none=ãªã— on=on -beingExecuted=\u30d3\u30eb\u30c9\u304c\u5b9f\u884c\u4e2d\u3067\u3059\u3002{0} +beingExecuted=ビルドãŒå®Ÿè¡Œä¸­ã§ã™ã€‚{0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_ko.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_ko.properties index 7cb867b33d00..a306fa10a5b2 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_ko.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_ko.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=\uBE4C\uB4DC -Build\ Artifacts=\uBE4C\uB4DC\uB41C \uC774\uBBF8\uC9C0 -Build\ number=\uBE4C\uB4DC \uBC88\uD638 -Not\ yet\ determined=\uC544\uC9C1 \uC815\uBCF4 \uC5C6\uC74C -Permalinks=\uC601\uAD6C\uB9C1\uD06C -Took=\uC18C\uC694 -beingExecuted=\uBE4C\uB4DC\uAC00 \uB2E4\uC74C \uC2DC\uAC04\uB3D9\uC548 \uC2E4\uD589 \uC911: {0} +Build=빌드 +Build\ Artifacts=ë¹Œë“œëœ ì´ë¯¸ì§€ +Build\ number=빌드 번호 +Not\ yet\ determined=ì•„ì§ ì •ë³´ ì—†ìŒ +Permalinks=ì˜êµ¬ë§í¬ +Took=소요 +beingExecuted=빌드가 ë‹¤ìŒ ì‹œê°„ë™ì•ˆ 실행 중: {0} on=on -startedAgo={0} \uC804\uC5D0 \uC5C5\uB370\uC774\uB4DC \uB428. +startedAgo={0} ì „ì— ì—…ë°ì´ë“œ ë¨. diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_lt.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_lt.properties index a5b4ccd647ee..604ac4a13d93 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_lt.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_lt.properties @@ -22,7 +22,7 @@ Build=Darbas Build\ Artifacts=Vykdymo rezultatai -Took=U\u017Etruko +Took=Užtruko beingExecuted=Darbas jau vykdomas {0} on=aplinkoje -startedAgo=Prad\u0117ta prie\u0161 {0} +startedAgo=PradÄ—ta prieÅ¡ {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_lv.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_lv.properties index a6b5bec5dbcb..f420a666a684 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_lv.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_lv.properties @@ -20,16 +20,16 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=B\u016Bv\u0113jums +Build=BÅ«vÄ“jums Build\ Artifacts=Artefakti -Changes\ in\ dependency=Atkar\u012Bbu izmai\u0146as -Downstream\ Builds=Lejupstraumes b\u016Bv\u0113jumi -Failed\ to\ determine=Neizdev\u0101s noteikt -Not\ yet\ determined=V\u0113l nav noteikts -Took=Aiz\u0146\u0113ma -beingExecuted=B\u016Bv\u0113jums tiek izpild\u012Bts {0} -detail=s\u012Bk\u0101k -log=\u017Eurn\u0101ls +Changes\ in\ dependency=AtkarÄ«bu izmaiņas +Downstream\ Builds=Lejupstraumes bÅ«vÄ“jumi +Failed\ to\ determine=NeizdevÄs noteikt +Not\ yet\ determined=VÄ“l nav noteikts +Took=Aizņēma +beingExecuted=BÅ«vÄ“jums tiek izpildÄ«ts {0} +detail=sÄ«kÄk +log=žurnÄls none=neviens on=uz -startedAgo=Uzs\u0101kts pirms {0} +startedAgo=UzsÄkts pirms {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_nb_NO.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_nb_NO.properties index eb7c0d2fabaf..b29ff9f10413 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_nb_NO.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_nb_NO.properties @@ -23,10 +23,10 @@ Build=Versjon Build\ Artifacts=Byggeartifakter Build\ number=Bygg nummer -Not\ yet\ determined=Enn\u00E5 ikke bestemt +Not\ yet\ determined=EnnÃ¥ ikke bestemt Permalinks=Permanente lenker Took=Tok beingExecuted=Har bygget i {0} log=logg -on=p\u00E5 +on=pÃ¥ startedAgo=Startet for {0} siden diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_pl.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_pl.properties index 23661662c63d..1e9ca5a95d25 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_pl.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_pl.properties @@ -22,11 +22,11 @@ Build=Zadanie Build\ Artifacts=Artefakty zadania -Changes\ in\ dependency=Zmiany w zale\u017Cno\u015Bciach -Downstream\ Builds=Zadania podrz\u0119dne +Changes\ in\ dependency=Zmiany w zależnoÅ›ciach +Downstream\ Builds=Zadania podrzÄ™dne Not\ yet\ determined=Jeszcze nie ustalono -Took=Trwa\u0142o -Upstream\ Builds=Zadania nadrz\u0119dne +Took=TrwaÅ‚o +Upstream\ Builds=Zadania nadrzÄ™dne beingExecuted=Zadanie jest wykonywane od {0} detail=Detale none=brak diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_pt_BR.properties index f5c85d0eb8af..fb12114d530b 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_pt_BR.properties @@ -21,16 +21,16 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -startedAgo=Iniciado {0} atr\u00E1s -Build\ Artifacts=Artefatos da constru\u00E7\u00E3o -Changes\ in\ dependency=Mudan\u00E7as na depend\u00EAncia -beingExecuted=Tempo de execu\u00E7\u00E3o da constru\u00E7\u00E3o {0} +startedAgo=Iniciado {0} atrás +Build\ Artifacts=Artefatos da construção +Changes\ in\ dependency=Mudanças na dependência +beingExecuted=Tempo de execução da construção {0} detail=detalhe -Not\ yet\ determined=Ainda n\u00E3o determinado +Not\ yet\ determined=Ainda não determinado Failed\ to\ determine=Falhou ao determinar log=log -Upstream\ Builds=constru\u00E7\u00F5es pai -Downstream\ Builds=constru\u00E7\u00F5es filho +Upstream\ Builds=construções pai +Downstream\ Builds=construções filho none=nenhum Took=Levou Build=Construir diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_pt_PT.properties index 8a54bd9d030a..ca17fd05d45e 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_pt_PT.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_pt_PT.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Constru\u00E7\u00E3o -Build\ Artifacts=Constru\u00E7\u00E3o de artefactos +Build=Construção +Build\ Artifacts=Construção de artefactos Took=Demorou -beingExecuted=Compila\u00E7\u00E3o a ser executada h\u00E1 {0} +beingExecuted=Compilação a ser executada há {0} on=em -startedAgo=Iniciado {0} atr\u00E1s +startedAgo=Iniciado {0} atrás diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_ru.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_ru.properties index 398bc5012c2a..ab12097b519b 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_ru.properties @@ -20,19 +20,19 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -on=\u043d\u0430 -startedAgo=\u0417\u0430\u043F\u0443\u0449\u0435\u043D\u0430 {0} \u043D\u0430\u0437\u0430\u0434 -Build=\u0421\u0431\u043e\u0440\u043a\u0430 -Build\ Artifacts=\u0410\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b \u0441\u0431\u043e\u0440\u043a\u0438 -Changes\ in\ dependency=\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u044f\u0445 -beingExecuted=\u0412\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f {0} -detail=\u0414\u0435\u0442\u0430\u043b\u0438 -Not\ yet\ determined=\u0415\u0449\u0435 \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e -Failed\ to\ determine=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0438\u0442\u044c -log=\u041b\u043e\u0433 -Upstream\ Builds=\u0412\u043e\u0441\u0445\u043e\u0434\u044f\u0449\u0438\u0435 \u0441\u0431\u043e\u0440\u043a\u0438 -Downstream\ Builds=\u041d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0438\u0435 \u0441\u0431\u043e\u0440\u043a\u0438 -none=\u043d\u0435\u0442 -Permalinks=\u041f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u044b\u0435 \u0441\u0441\u044b\u043b\u043a\u0438 -Build\ number=\u041d\u043e\u043c\u0435\u0440 \u0441\u0431\u043e\u0440\u043a\u0438 -Took=\u0417\u0430\u043d\u044f\u043b\u043e: +on=на +startedAgo=Запущена {0} назад +Build=Сборка +Build\ Artifacts=Ðртефакты Ñборки +Changes\ in\ dependency=Ð˜Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð² завиÑимоÑÑ‚ÑÑ… +beingExecuted=ВыполнÑетÑÑ {0} +detail=Детали +Not\ yet\ determined=Еще не определено +Failed\ to\ determine=Ðевозможно определить +log=Лог +Upstream\ Builds=ВоÑходÑщие Ñборки +Downstream\ Builds=ÐиÑходÑщие Ñборки +none=нет +Permalinks=ПоÑтоÑнные ÑÑылки +Build\ number=Ðомер Ñборки +Took=ЗанÑло: diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_sk.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_sk.properties index 4355230af2f5..1c26c02991d9 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_sk.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_sk.properties @@ -22,8 +22,8 @@ Build=Beh Build\ Artifacts=Artefakty zostavenia -Not\ yet\ determined=E\u0161te nezisten\u00E9 +Not\ yet\ determined=EÅ¡te nezistené Took=Trvalo -beingExecuted=Zostavenie bolo spusten\u00E9 pred {0} +beingExecuted=Zostavenie bolo spustené pred {0} on=na -startedAgo=Spusten\u00E9 pred {0} +startedAgo=Spustené pred {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_sl.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_sl.properties index 7eeb08b69483..bc05074624b9 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_sl.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_sl.properties @@ -23,4 +23,4 @@ Build=Prevajanje Build\ Artifacts=Izdelki Took=Trajanje -startedAgo=Za\u010Del pred {0} +startedAgo=ZaÄel pred {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_sr.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_sr.properties index 8015f80d9cec..cb94754f808d 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_sr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_sr.properties @@ -1,16 +1,16 @@ # This file is under the MIT License by authors -Build=\u0418\u0437\u0433\u0440\u0430\u0434\u045A\u0430 +Build=Изградња Build\ Artifacts=Artifakti projekta -Took=\u0422\u0440\u0430\u0458\u0430\u043B\u043E: -on=\u043D\u0430 -startedAgo=\u0417\u0430\u043F\u043E\u0447\u0435\u0442\u043E \u043F\u0440\u0435 {0} -beingExecuted=\u0418\u0437\u0432\u0440\u0448\u0430\u0432\u0430 \u0441\u0435 {0} -Changes\ in\ dependency=\u041F\u0440\u043E\u043C\u0435\u043D\u0435 \u0443 \u0437\u0430\u0432\u0438\u0441\u043D\u043E\u043C \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0443 -detail=\u0434\u0435\u0442\u0430\u0459\u043D\u0435 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0435 -Not\ yet\ determined=\u041D\u0438\u0458\u0435 \u0458\u043E\u0448 \u043E\u0434\u0440\u0435\u0452\u0435\u043D\u043E -Failed\ to\ determine=\u041D\u0438\u0458\u0435 \u043C\u043E\u0433\u043B\u043E \u043E\u0434\u0440\u0435\u0434\u0438\u0442\u0438 -log=\u0436\u0443\u0440\u043D\u0430\u043B -Upstream\ Builds=Upstream \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -Downstream\ Builds=Downstream \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -none=\u043D\u0438\u0458\u0435\u0434\u043D\u043E +Took=Трајало: +on=на +startedAgo=Започето пре {0} +beingExecuted=Извршава Ñе {0} +Changes\ in\ dependency=Промене у завиÑном пројекту +detail=детаљне информације +Not\ yet\ determined=Ðије још одређено +Failed\ to\ determine=Ðије могло одредити +log=журнал +Upstream\ Builds=Upstream изградње +Downstream\ Builds=Downstream изградње +none=ниједно diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_sv_SE.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_sv_SE.properties index 7c0577fd487b..c1d9be42cf5c 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_sv_SE.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_sv_SE.properties @@ -23,14 +23,14 @@ Build=Bygge Build\ Artifacts=Byggartefakter Build\ number=Byggnummer -Changes\ in\ dependency=F\u00F6r\u00E4ndringar i beroende -Downstream\ Builds=Byggen nedstr\u00F6ms -Not\ yet\ determined=\u00C4nnu inte best\u00E4mt +Changes\ in\ dependency=Förändringar i beroende +Downstream\ Builds=Byggen nedströms +Not\ yet\ determined=Ännu inte bestämt Took=Tog -Upstream\ Builds=Byggen uppstr\u00F6ms -beingExecuted=Bygge exekveras f\u00F6r {0} +Upstream\ Builds=Byggen uppströms +beingExecuted=Bygge exekveras för {0} detail=detalj log=logg none=inga -on=p\u00E5 -startedAgo=Startad f\u00F6r {0} sedan +on=pÃ¥ +startedAgo=Startad för {0} sedan diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_tr.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_tr.properties index 52776c9b9156..5bba12b93c9e 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_tr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_tr.properties @@ -20,18 +20,18 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -startedAgo={0} \u00f6nce ba\u015flad\u0131 -Build=Yap\u0131land\u0131rma -Build\ Artifacts=Yap\u0131land\u0131rma Hatalar\u0131 -Changes\ in\ dependency=Ba\u011f\u0131ml\u0131l\u0131ktaki de\u011fi\u015fiklikler -beingExecuted=Yap\u0131land\u0131rma {0} d\u0131r \u00E7al\u0131\u015Fmaktad\u0131r +startedAgo={0} önce baÅŸladı +Build=Yapılandırma +Build\ Artifacts=Yapılandırma Hataları +Changes\ in\ dependency=Bağımlılıktaki deÄŸiÅŸiklikler +beingExecuted=Yapılandırma {0} dır çalışmaktadır detail=detay -Not\ yet\ determined=Hen\u00fcz belirlenmedi -Failed\ to\ determine=Belirleme esnas\u0131nda hata olu\u015ftu +Not\ yet\ determined=Henüz belirlenmedi +Failed\ to\ determine=Belirleme esnasında hata oluÅŸtu log=log -Upstream\ Builds=Upstream Yap\u0131land\u0131rmalar -Downstream\ Builds=Downstream Yap\u0131land\u0131rmalar -none=hi\u00e7birisi +Upstream\ Builds=Upstream Yapılandırmalar +Downstream\ Builds=Downstream Yapılandırmalar +none=hiçbirisi Permalinks=Permalinks -Build\ number=Yap\u0131land\u0131rma numaras\u0131 -Took=S\u00fcrd\u00fc +Build\ number=Yapılandırma numarası +Took=Sürdü diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_uk.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_uk.properties index 328afe908ecb..f78dafcb1432 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_uk.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_uk.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=\u0417\u0431\u0456\u0440\u043A\u0430 -Build\ Artifacts=\u0411\u0456\u043B\u0434 \u0410\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0438 -Changes\ in\ dependency=\u0417\u043C\u0456\u043D\u0438 \u0432 \u0437\u0430\u043B\u0435\u0436\u043D\u043E\u0441\u0442\u0456 -Not\ yet\ determined=\u0429\u0435 \u043D\u0435 \u0432\u0438\u0437\u043D\u0430\u0447\u0435\u043D\u043E -Took=\u0422\u0440\u0438\u0432\u0430\u043B\u043E -beingExecuted=\u041B\u0438\u0448\u0438\u043B\u043E\u0441\u044F \u043F\u0440\u0438\u0431\u043B\u0438\u0437\u043D\u043E {0} -detail=\u0434\u0435\u0442\u0430\u043B\u0456 -on=\u043D\u0430 -startedAgo=\u0420\u043E\u0437\u043F\u043E\u0447\u0430\u0442\u043E {0} \u0442\u043E\u043C\u0443 +Build=Збірка +Build\ Artifacts=Білд Ðртефакти +Changes\ in\ dependency=Зміни в залежноÑÑ‚Ñ– +Not\ yet\ determined=Ще не визначено +Took=Тривало +beingExecuted=ЛишилоÑÑ Ð¿Ñ€Ð¸Ð±Ð»Ð¸Ð·Ð½Ð¾ {0} +detail=деталі +on=на +startedAgo=Розпочато {0} тому diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_zh_TW.properties index 9f07e747c0af..d4b74c25db72 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_zh_TW.properties @@ -21,20 +21,20 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -startedAgo={0}\u524d\u958b\u59cb -beingExecuted=\u5EFA\u69CB\u5DF2\u7D93\u57F7\u884C\u4E86 -Took=\u8cbb\u6642 -on=\uff0c\u57f7\u884c\u7bc0\u9ede +startedAgo={0}å‰é–‹å§‹ +beingExecuted=建構已經執行了 +Took=費時 +on=,執行節點 -Build=\u5EFA\u69CB +Build=建構 -Build\ Artifacts=\u5EFA\u69CB\u7522\u51FA\u6A94\u6848 -Changes\ in\ dependency=\u76f8\u4f9d\u5c08\u6848\u4e2d\u7684\u8b8a\u66f4 -detail=\u8a73\u7d30\u8cc7\u6599 -Not\ yet\ determined=\u9084\u6c92\u6709\u7d50\u679c -Failed\ to\ determine=\u8A55\u4F30\u904E\u7A0B\u5931\u6557 -log=\u8A18\u9304 +Build\ Artifacts=建構產出檔案 +Changes\ in\ dependency=相ä¾å°ˆæ¡ˆä¸­çš„變更 +detail=詳細資料 +Not\ yet\ determined=還沒有çµæžœ +Failed\ to\ determine=è©•ä¼°éŽç¨‹å¤±æ•— +log=記錄 -Upstream\ Builds=\u4E0A\u6E38\u5EFA\u7F6E -Downstream\ Builds=\u4e0b\u6e38\u5efa\u7f6e -none=\u7121 +Upstream\ Builds=上游建置 +Downstream\ Builds=下游建置 +none=ç„¡ diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_bg.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_bg.properties index e543476a9f4c..812f9e43e6bd 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Next\ Build=\ - \u0421\u043b\u0435\u0434\u0432\u0430\u0449\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + Следващо изграждане Previous\ Build=\ - \u041f\u0440\u0435\u0434\u0438\u0448\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + Предишно изграждане diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ca.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ca.properties index a1a23db17599..b6745ba29892 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ca.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ca.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=Construcci\u00F3 seg\u00FCent +Next\ Build=Construcció següent Previous\ Build=Build anterior diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_cs.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_cs.properties index 9dae71dbf2c4..64c0cab2703a 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_cs.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_cs.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=Dal\u0161\u00ED sestaven\u00ED -Previous\ Build=P\u0159edchoz\u00ED build +Next\ Build=Další sestavení +Previous\ Build=PÅ™edchozí build diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_da.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_da.properties index 2211ad7c64e6..963830f6a9a3 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_da.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_da.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Previous\ Build=Forrige build -Next\ Build=N\u00E6ste byg +Next\ Build=Næste byg diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_el.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_el.properties index 42832dc86cb1..e5d653711cea 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_el.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_el.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Previous\ Build=\u03A0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF Build +Previous\ Build=ΠÏοηγοÏμενο Build diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_es.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_es.properties index 3d1ba0e6c323..6cfe3c1564c1 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_es.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Previous\ Build=Ejecuci\u00F3n previa -Next\ Build=Ejecuci\u00F3n siguiente +Previous\ Build=Ejecución previa +Next\ Build=Ejecución siguiente diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_es_AR.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_es_AR.properties index 45d9dfaeae77..87c8dccdb04b 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_es_AR.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_es_AR.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Previous\ Build=Compilaci\u00F3n Anterior +Previous\ Build=Compilación Anterior diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_et.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_et.properties index dcf992246c0a..647cec76e666 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_et.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_et.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Next\ Build=J\u00E4rgmine ehitus -Previous\ Build=Eelmine J\u00E4rk +Next\ Build=Järgmine ehitus +Previous\ Build=Eelmine Järk diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fi.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fi.properties index bf564ceab511..a3fe7b0da324 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fi.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fi.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=Seuraava k\u00E4\u00E4nn\u00F6s +Next\ Build=Seuraava käännös Previous\ Build=Edellinen buildi diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fr.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fr.properties index 3d82b087f63f..cbccb3cd7d6c 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Previous\ Build=Build pr\u00E9c\u00E9dent +Previous\ Build=Build précédent Next\ Build=Build suivant diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_he.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_he.properties index e9b2d4df1533..e8b7656a7121 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_he.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_he.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=\u05D2\u05E8\u05E1\u05D0 \u05D4\u05D1\u05D0\u05D4 -Previous\ Build=\u05D1\u05D9\u05DC\u05D3 \u05E7\u05D5\u05D3\u05DD +Next\ Build=×’×¨×¡× ×”×‘××” +Previous\ Build=בילד ×§×•×“× diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hu.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hu.properties index fd5add7ab824..fc5987ed2962 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hu.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hu.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=K\u00F6vetkez\u0151 \u00E9p\u00EDt\u00E9s -Previous\ Build=El\u0151z\u0151 \u00C9p\u00EDt\u00E9s +Next\ Build=KövetkezÅ‘ építés +Previous\ Build=ElÅ‘zÅ‘ Építés diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_it.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_it.properties index f3f195467dd6..a4e449948465 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_it.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ja.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ja.properties index 88a9e6bd376e..4856bebfe8a3 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ja.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Previous\ Build=\u524D\u306E\u30D3\u30EB\u30C9 -Next\ Build=\u6B21\u306E\u30D3\u30EB\u30C9 +Previous\ Build=å‰ã®ãƒ“ルド +Next\ Build=次ã®ãƒ“ルド diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ko.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ko.properties index 28e8f6d19488..69b2256b8776 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ko.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ko.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=\uB2E4\uC74C \uBE4C\uB4DC -Previous\ Build=\uC774\uC804 \uBE4C\uB4DC +Next\ Build=ë‹¤ìŒ ë¹Œë“œ +Previous\ Build=ì´ì „ 빌드 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_lv.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_lv.properties index 138e4e363831..a46590bbebec 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_lv.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_lv.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=N\u0101kamais b\u016Bv\u0113jums -Previous\ Build=Iepriek\u0161\u0113jais b\u016Bv\u0113jums +Next\ Build=NÄkamais bÅ«vÄ“jums +Previous\ Build=IepriekÅ¡Ä“jais bÅ«vÄ“jums diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pl.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pl.properties index aa0cc1a6f557..6548b3f59e8c 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pl.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=Nast\u0119pne zadanie +Next\ Build=NastÄ™pne zadanie Previous\ Build=Poprzednie zadanie diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_BR.properties index 3a4a948a119b..d3587e21661e 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Previous\ Build=Constru\u00E7\u00E3o anterior -Next\ Build=Pr\u00F3xima constru\u00E7\u00E3o +Previous\ Build=Construção anterior +Next\ Build=Próxima construção diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_PT.properties index 8695d88bf5bf..b81550dfd31f 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_PT.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_PT.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=Pr\u00F3xima build -Previous\ Build=Prever/ver constru\u00E7\u00E3o +Next\ Build=Próxima build +Previous\ Build=Prever/ver construção diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ru.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ru.properties index c74d402c34fb..540cad9b100b 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Previous\ Build=\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u0441\u0431\u043e\u0440\u043a\u0430 -Next\ Build=\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u0441\u0431\u043e\u0440\u043a\u0430 +Previous\ Build=ÐŸÑ€ÐµÐ´Ñ‹Ð´ÑƒÑ‰Ð°Ñ Ñборка +Next\ Build=Ð¡Ð»ÐµÐ´ÑƒÑŽÑ‰Ð°Ñ Ñборка diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sk.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sk.properties index c4969e8dfb8e..b5e48d406c24 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sk.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sk.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=Nasleduj\u00FAci beh -Previous\ Build=Predch\u00E1dzaj\u00FAci build +Next\ Build=Nasledujúci beh +Previous\ Build=Predchádzajúci build diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sl.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sl.properties index 7e02b2fbcf07..6b43bc517b46 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sl.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sl.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Next\ Build=Naslednje prevajanje -Previous\ Build=Prej\u0161nje prevajanje +Previous\ Build=PrejÅ¡nje prevajanje diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sr.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sr.properties index 639db57af036..1810d2ba3087 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Previous\ Build=\u041F\u0440\u0435\u0442\u0445\u043E\u0434\u043D\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -Next\ Build=\u0421\u043B\u0435\u0434\u0435\u045B\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 +Previous\ Build=Претходно изградње +Next\ Build=Следећа изградња diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sv_SE.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sv_SE.properties index e7d79fe1987a..7ef9aad1ff56 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sv_SE.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sv_SE.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=N\u00E4sta bygge -Previous\ Build=F\u00F6reg\u00E5ende bygge +Next\ Build=Nästa bygge +Previous\ Build=FöregÃ¥ende bygge diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_tr.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_tr.properties index 5e65db5af0d9..4071ccb3a6ce 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_tr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Previous\ Build=\u00d6nceki Yap\u0131land\u0131rma -Next\ Build=Sonraki Yap\u0131land\u0131rma +Previous\ Build=Önceki Yapılandırma +Next\ Build=Sonraki Yapılandırma diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_uk.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_uk.properties index c0d50fd1f3ce..d93f88b14b66 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_uk.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_uk.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=\u041D\u0430\u0441\u0442\u0443\u043F\u043D\u0430 \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0430 -Previous\ Build=\u041F\u043E\u043F\u0435\u0440\u0435\u0434\u043D\u044F \u0437\u0431\u0456\u0440\u043A\u0430 +Next\ Build=ÐаÑтупна побудова +Previous\ Build=ÐŸÐ¾Ð¿ÐµÑ€ÐµÐ´Ð½Ñ Ð·Ð±Ñ–Ñ€ÐºÐ° diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_zh_TW.properties index f1515b50b4b2..7867a7ff66f2 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=\u4E0B\u4E00\u6B21\u5EFA\u7F6E -Previous\ Build=\u524D\u4E00\u6B21\u5EFA\u69CB +Next\ Build=下一次建置 +Previous\ Build=å‰ä¸€æ¬¡å»ºæ§‹ diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_bg.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_bg.properties index b32a0ed30a84..08e5f0683ea8 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_bg.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Back\ to\ Project=\ - \u041e\u0431\u0440\u0430\u0442\u043d\u043e \u043a\u044a\u043c \u043f\u0440\u043e\u0435\u043a\u0442\u0430 + Обратно към проекта Changes=\ - \u041f\u0440\u043e\u043c\u0450\u043d\u0438 + ПромÑни Edit\ Build\ Information=\ - \u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u0442\u0430 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e + Редактиране на информациÑта за изграждането Status=\ - \u0421\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435 + СъÑтоÑние diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ca.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ca.properties index 5679e6c73f94..954011a5f33e 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ca.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ca.properties @@ -24,5 +24,5 @@ Back\ to\ Project=Tornar al projecte Changes=Canvis Console\ Output=Sortida de la consola View\ as\ plain\ text=Veure com a texte pla -Edit\ Build\ Information=Editar Informaci\u00F3 del Build +Edit\ Build\ Information=Editar Informació del Build Status=Estat diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_cs.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_cs.properties index 6f0704f4abd6..6095094fa0f5 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_cs.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_cs.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=Zp\u011Bt na projekt -Changes=Zm\u011Bny -Console\ Output=V\u00FDstup na konzoli -View\ Build\ Information=Zobrazit informace o sestaven\u00ED +Back\ to\ Project=ZpÄ›t na projekt +Changes=ZmÄ›ny +Console\ Output=Výstup na konzoli +View\ Build\ Information=Zobrazit informace o sestavení View\ as\ plain\ text=Zobrazit jako text -Edit\ Build\ Information=Zm\u011Bnit informace o buildu -raw=origin\u00E1l +Edit\ Build\ Information=ZmÄ›nit informace o buildu +raw=originál diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_da.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_da.properties index 48a691813c12..1fb035e7498b 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_da.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_da.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=\u00c6ndringer -raw=r\u00e5 +Changes=Ændringer +raw=rÃ¥ Edit\ Build\ Information=Rediger jobbeskrivelse Status=Status Console\ Output=Konsoloutput diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_de.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_de.properties index 62705f7913c6..3411093f57a8 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_de.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_de.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=Zur\u00FCck zum Projekt +Back\ to\ Project=Zurück zum Projekt Status=Status -Changes=\u00C4nderungen +Changes=Änderungen Edit\ Build\ Information=Build-Informationen editieren diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_el.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_el.properties index 1f954fe24bb3..141b832d43bf 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_el.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_el.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=\u0395\u03C0\u03B9\u03C3\u03C4\u03C1\u03BF\u03C6\u03AE \u03C3\u03C4\u03BF Project -Changes=\u0391\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2 -Console\ Output=\u03A0\u03B1\u03C1\u03AC\u03B3\u03C9\u03B3\u03B1 \u039A\u03BF\u03BD\u03C3\u03CC\u03BB\u03B1\u03C2 -View\ as\ plain\ text=\u03A0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AE \u03C9\u03C2 \u03B1\u03C0\u03BB\u03CC \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF -Edit\ Build\ Information=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03A0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03B9\u03CE\u03BD Build -Status=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 +Back\ to\ Project=ΕπιστÏοφή στο Project +Changes=Αλλαγές +Console\ Output=ΠαÏάγωγα Κονσόλας +View\ as\ plain\ text=ΠÏοβολή ως απλό κείμενο +Edit\ Build\ Information=ΕπεξεÏγασία ΠληÏοφοÏιών Build +Status=Κατάσταση diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_es.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_es.properties index ff1fd573a9f3..cf379c046a75 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_es.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_es.properties @@ -24,8 +24,8 @@ Console\ Output=Salida de Consola Back\ to\ Project=Volver al proyecto Changes=Cambios -Edit\ Build\ Information=Editar informaci\u00F3n de la ejecuci\u00F3n +Edit\ Build\ Information=Editar información de la ejecución Status=Estatus -View\ Build\ Information=Ver informaci\u00F3n de la ejecuci\u00F3n +View\ Build\ Information=Ver información de la ejecución View\ as\ plain\ text=Mostrar como texto plano raw= diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_es_AR.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_es_AR.properties index ba6bd66f73ee..59e081d41898 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_es_AR.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_es_AR.properties @@ -3,8 +3,8 @@ Back\ to\ Project=Vuelta al Proyecto Changes=Cambios Console\ Output=Salida de Consola -Edit\ Build\ Information=Editar informaci\u00F3n de compilaci\u00F3n +Edit\ Build\ Information=Editar información de compilación Status=Estado -View\ Build\ Information=Ver Informacion de Compilaci\u00F3n +View\ Build\ Information=Ver Informacion de Compilación View\ as\ plain\ text=Ver como texto plano raw=Cruda diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_et.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_et.properties index 7f4e8e5be760..d68b93cccca5 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_et.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_et.properties @@ -22,8 +22,8 @@ Back\ to\ Project=Tagasi projekti juurde. Changes=Muudatused -Console\ Output=konsooli v\u00E4ljund -Edit\ Build\ Information=Redigeeri J\u00E4rgu Informatsiooni +Console\ Output=konsooli väljund +Edit\ Build\ Information=Redigeeri Järgu Informatsiooni Status=Staatus View\ Build\ Information=Kuva ehituse informatsioon View\ as\ plain\ text=Vaata tavalise tekstina diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_fi.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_fi.properties index df7200fa1243..154cb5631e5d 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_fi.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_fi.properties @@ -23,8 +23,8 @@ Back\ to\ Project=Takaisin projektiin Changes=Muutokset Console\ Output=Konsolituloste -View\ Build\ Information=Katse k\u00E4\u00E4nn\u00F6ksen tietoja -View\ as\ plain\ text=N\u00E4yt\u00E4 pelkk\u00E4n\u00E4 tekstin\u00E4 -Edit\ Build\ Information=Muokkaa k\u00E4\u00E4nn\u00F6ksen tietoja +View\ Build\ Information=Katse käännöksen tietoja +View\ as\ plain\ text=Näytä pelkkänä tekstinä +Edit\ Build\ Information=Muokkaa käännöksen tietoja Status=Tila raw=muotoilemattomana diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_fr.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_fr.properties index 5eb454b36e5d..865ddf5a0c40 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_fr.properties @@ -25,6 +25,6 @@ Changes=Modifications Console\ Output=Sortie de la console View\ as\ plain\ text=Voir en texte brut Edit\ Build\ Information=Informations de la construction -Status=\u00C9tat +Status=État View\ Build\ Information=Voir les informations du build raw=brut diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_he.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_he.properties index 91dc9e6bec14..9966f940c6c5 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_he.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_he.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=\u05D7\u05D6\u05E8\u05D4 \u05DC\u05E4\u05E8\u05D5\u05D9\u05D9\u05E7\u05D8 -Changes=\u05E9\u05D9\u05E0\u05D5\u05D9\u05D9\u05DD -Console\ Output=\u05E4\u05DC\u05D8 \u05DE\u05E1\u05DA -View\ Build\ Information=\u05D4\u05E6\u05D2 \u05DE\u05D9\u05D3\u05E2 \u05D1\u05E0\u05D5\u05D2\u05E2 \u05DC\u05D1\u05E0\u05D9\u05D4 -View\ as\ plain\ text=\u05E6\u05E4\u05D4 \u05DB\u05D8\u05E7\u05E1\u05D8 \u05E4\u05E9\u05D5\u05D8 -Edit\ Build\ Information=\u05E2\u05E8\u05D5\u05DA -Status=\u05E1\u05D8\u05D8\u05D5\u05E1 -raw=\u05D2\u05D5\u05DC\u05DE\u05D9 +Back\ to\ Project=חזרה לפרוייקט +Changes=×©×™× ×•×™×™× +Console\ Output=פלט מסך +View\ Build\ Information=הצג מידע בנוגע לבניה +View\ as\ plain\ text=צפה כטקסט פשוט +Edit\ Build\ Information=ערוך +Status=סטטוס +raw=גולמי diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_hu.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_hu.properties index 272cbb4a2a64..9b0641375866 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_hu.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_hu.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Back\ to\ Project=Vissza a projekthez -Changes=V\u00E1ltoz\u00E1sok +Changes=Változások Console\ Output=Konzol kimenet -View\ as\ plain\ text=Egyszer\u0171 sz\u00F6vegk\u00E9nt -Edit\ Build\ Information=\u00C9p\u00EDt\u00E9s szerkeszt\u00E9se -Status=St\u00E1tusz -View\ Build\ Information=Ford\u00EDt\u00E1s inform\u00E1ci\u00F3k megtekint\u00E9se +View\ as\ plain\ text=Egyszerű szövegként +Edit\ Build\ Information=Építés szerkesztése +Status=Státusz +View\ Build\ Information=Fordítás információk megtekintése raw=nyers diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_it.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_it.properties index d4732d41402c..aa73f02d75aa 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_it.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ja.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ja.properties index 1782f6be5e80..b057ccdaed8a 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ja.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3078\u623b\u308b -Status=\u72b6\u614b -Changes=\u5909\u66f4\u5c65\u6b74 -Edit\ Build\ Information=\u8aac\u660e\u306e\u7de8\u96c6 +Back\ to\ Project=プロジェクトã¸æˆ»ã‚‹ +Status=状態 +Changes=変更履歴 +Edit\ Build\ Information=説明ã®ç·¨é›† diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ko.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ko.properties index bff32e3091e6..b60fcd31e7fb 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ko.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ko.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=\uD504\uB85C\uC81D\uD2B8\uB85C \uB3CC\uC544\uAC00\uAE30 -Changes=\uBC14\uB010\uC810 -Console\ Output=\uCF58\uC194 \uCD9C\uB825 -View\ Build\ Information=\uBE4C\uB4DC \uC815\uBCF4 \uBCF4\uAE30 -View\ as\ plain\ text=\uC77C\uBC18 \uD14D\uC2A4\uD2B8\uB85C \uBCF4\uAE30 -Edit\ Build\ Information=\uBE4C\uB4DC \uC815\uBCF4 \uC218\uC815 -Status=\uC0C1\uD0DC -raw=\uC5F4 +Back\ to\ Project=프로ì íŠ¸ë¡œ ëŒì•„가기 +Changes=ë°”ë€ì  +Console\ Output=콘솔 출력 +View\ Build\ Information=빌드 ì •ë³´ 보기 +View\ as\ plain\ text=ì¼ë°˜ í…스트로 보기 +Edit\ Build\ Information=빌드 ì •ë³´ 수정 +Status=ìƒíƒœ +raw=ì—´ diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_lt.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_lt.properties index 6f09674285f0..81a5b0e9b618 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_lt.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_lt.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=Gr\u012F\u017Eti prie projekto +Back\ to\ Project=Grįžti prie projekto Changes=Pakeitimai -Console\ Output=Konsol\u0117s i\u0161vestis -View\ Build\ Information=Per\u017Ei\u016Br\u0117ti vykdymo informacij\u0105 -View\ as\ plain\ text=\u017Di\u016Br\u0117ti kaip tekst\u0105 -Edit\ Build\ Information=Redaguoti konstrukcijos informacij\u0105 -Status=B\u016Bsena +Console\ Output=KonsolÄ—s iÅ¡vestis +View\ Build\ Information=PeržiÅ«rÄ—ti vykdymo informacijÄ… +View\ as\ plain\ text=ŽiÅ«rÄ—ti kaip tekstÄ… +Edit\ Build\ Information=Redaguoti konstrukcijos informacijÄ… +Status=BÅ«sena raw=grynas diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_lv.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_lv.properties index 588b980b9cc4..76574313c901 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_lv.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_lv.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=Atpaka\u013C uz projektu -Changes=Izmai\u0146as +Back\ to\ Project=Atpakaļ uz projektu +Changes=Izmaiņas Console\ Output=Konsoles izvads -View\ as\ plain\ text=Rad\u012Bt k\u0101 neformat\u0113tu tekstu -Edit\ Build\ Information=Labot b\u016Bv\u0113juma inform\u0101ciju +View\ as\ plain\ text=RadÄ«t kÄ neformatÄ“tu tekstu +Edit\ Build\ Information=Labot bÅ«vÄ“juma informÄciju Status=Statuss -View\ Build\ Information=Att\u0113lot b\u016Bv\u0113juma inform\u0101ciju +View\ Build\ Information=AttÄ“lot bÅ«vÄ“juma informÄciju raw=pamatforma diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_nb_NO.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_nb_NO.properties index 3a8f26f4a480..9331719c23a7 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_nb_NO.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_nb_NO.properties @@ -27,4 +27,4 @@ View\ as\ plain\ text=Vis som vanlig tekst Edit\ Build\ Information=Rediger bygg-informasjon Status=Status View\ Build\ Information=Vis byggeinformasjon -raw=r\u00E5format +raw=rÃ¥format diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_pl.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_pl.properties index ef9d00dfba9d..7b07071ca35b 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_pl.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_pl.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=Powr\u00F3t do projektu +Back\ to\ Project=Powrót do projektu Changes=Rejestr zmian Edit\ Build\ Information=Edytuj informacje o zadaniu Status=Status diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_BR.properties index 49ae1e411c5f..983587819201 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_BR.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Back\ to\ Project=Voltar ao projeto -Changes=Altera\u00E7\u00F5es -Edit\ Build\ Information=Editar informa\u00E7\u00F5es de compila\u00E7\u00E3o +Changes=Alterações +Edit\ Build\ Information=Editar informações de compilação Status=Estado pessoal diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_PT.properties index 0a680cf4881c..669ef30ccf29 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_PT.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_PT.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Back\ to\ Project=Retroceder ao Projeto -Changes=Mudan\u00E7as +Changes=Mudanças Console\ Output=Consola View\ as\ plain\ text=Ver como texto -Edit\ Build\ Information=Editar informa\u00E7\u00F5es da compila\u00E7\u00E3o +Edit\ Build\ Information=Editar informações da compilação Status=Estado -View\ Build\ Information=Visualizar informa\u00E7\u00F5es de compila\u00E7\u00E3o +View\ Build\ Information=Visualizar informações de compilação raw=texto diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ro.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ro.properties index bfa5cd19964a..1d80c4ae85fa 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ro.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ro.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=\u00CEnapoi la proiect -Changes=Schimb\u0103ri -Console\ Output=Afi\u0219aj consola +Back\ to\ Project=ÃŽnapoi la proiect +Changes=Schimbări +Console\ Output=AfiÈ™aj consola View\ as\ plain\ text=Vezi ca text -Edit\ Build\ Information=Modific\u0103 informa\u021Biile build-ului +Edit\ Build\ Information=Modifică informaÈ›iile build-ului Status=Stare -View\ Build\ Information=Vezi informa\u0163iile despre build +View\ Build\ Information=Vezi informaÅ£iile despre build raw=Neformatat diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ru.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ru.properties index 6836f42e6f1f..01c07ac2fdad 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ru.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=\u041D\u0430\u0437\u0430\u0434 \u043A \u043F\u0440\u043E\u0435\u043A\u0442\u0443 -Changes=\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F -Console\ Output=\u0412\u044B\u0432\u043E\u0434 \u043D\u0430 \u043A\u043E\u043D\u0441\u043E\u043B\u044C -View\ as\ plain\ text=\u0412\u044B\u0432\u0435\u0441\u0442\u0438 \u0431\u0435\u0437 \u0444\u043E\u0440\u043C\u0430\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F -Edit\ Build\ Information=\u0420\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044E \u0441\u0431\u043E\u0440\u043A\u0438 -Status=\u0421\u0442\u0430\u0442\u0443\u0441 -View\ Build\ Information=\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044E \u043E \u0421\u0431\u043E\u0440\u043A\u0435 -raw=\u043D\u0435 \u0444\u043E\u0440\u043C\u0430\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0439 \u0432\u0438\u0434 +Back\ to\ Project=Ðазад к проекту +Changes=Ð˜Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ +Console\ Output=Вывод на конÑоль +View\ as\ plain\ text=ВывеÑти без Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ +Edit\ Build\ Information=Редактировать информацию Ñборки +Status=Ð¡Ñ‚Ð°Ñ‚ÑƒÑ +View\ Build\ Information=Показать Информацию о Сборке +raw=не форматированный вид diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_sk.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sk.properties index 335cd9bfccdf..535fb0638495 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_sk.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sk.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=Sp\u00E4\u0165 na projekt +Back\ to\ Project=Späť na projekt Changes=Zmeny -Console\ Output=Konzolov\u00FD v\u00FDstup -View\ Build\ Information=Zobrazi\u0165 inform\u00E1cie o zostaven\u00ED -View\ as\ plain\ text=Pozrie\u0165 ako \u010Dist\u00FD text -Edit\ Build\ Information=Editova\u0165 inform\u00E1cie +Console\ Output=Konzolový výstup +View\ Build\ Information=ZobraziÅ¥ informácie o zostavení +View\ as\ plain\ text=PozrieÅ¥ ako Äistý text +Edit\ Build\ Information=EditovaÅ¥ informácie Status=Stav -raw=hrub\u00E9 d\u00E1ta +raw=hrubé dáta diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_sr.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sr.properties index f980312c413e..6e50c4b586b2 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_sr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sr.properties @@ -1,10 +1,10 @@ # This file is under the MIT License by authors -Changes=\u041F\u0440\u043E\u043C\u0435\u043D\u0435 -Console\ Output=\u0418\u0441\u0445\u043E\u0434 \u0438\u0437 \u043A\u043E\u043D\u0437\u043E\u043B\u0435 -Edit\ Build\ Information=\u0423\u0440\u0435\u0434\u0438 \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0435 \u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0438 -View\ Build\ Information=\u041F\u043E\u0441\u0442\u0430\u0432\u043A\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -View\ as\ plain\ text=\u041F\u0440\u0435\u0433\u043B\u0435\u0434 \u043E\u0431\u0438\u0447\u043D\u043E\u0433 \u0442\u0435\u043A\u0441\u0442\u0430 -raw=\u043D\u0435\u0444\u043E\u0440\u043C\u0430\u0442\u0438\u0437\u043E\u0432\u0430\u043D \u043F\u0440\u0435\u0433\u043B\u0435\u0434 -Status=\u0421\u0442\u0430\u045A\u0435 -Back\ to\ Project=\u041D\u0430\u0437\u0430\u0434 \u043A\u0430 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0443 +Changes=Промене +Console\ Output=ИÑход из конзоле +Edit\ Build\ Information=Уреди поÑтавке о изградњи +View\ Build\ Information=ПоÑтавке изградње +View\ as\ plain\ text=Преглед обичног текÑта +raw=неформатизован преглед +Status=Стање +Back\ to\ Project=Ðазад ка пројекту diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_sv_SE.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sv_SE.properties index adb0224fe42d..b61c96ed0872 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_sv_SE.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sv_SE.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Back\ to\ Project=Tillbaka till projektet -Changes=F\u00F6r\u00E4ndringar +Changes=Förändringar Console\ Output=Konsollutskrift View\ Build\ Information=Se information om bygge View\ as\ plain\ text=Visa som oformaterad text diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_tr.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_tr.properties index e6a2d92a9867..44b25e7482bc 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_tr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_tr.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=Projeye geri d\u00F6n -Changes=De\u011Fi\u015Fiklikler -Console\ Output=Konsol \u00C7\u0131kt\u0131s\u0131 -View\ Build\ Information=in\u015Fa bilgisi g\u00F6r\u00FCnt\u00FCle -View\ as\ plain\ text=D\u00fcz metin olarak g\u00f6ster -Edit\ Build\ Information=S\u00FCr\u00FCm Bilgisini D\u00FCzenle +Back\ to\ Project=Projeye geri dön +Changes=DeÄŸiÅŸiklikler +Console\ Output=Konsol Çıktısı +View\ Build\ Information=inÅŸa bilgisi görüntüle +View\ as\ plain\ text=Düz metin olarak göster +Edit\ Build\ Information=Sürüm Bilgisini Düzenle Status=Durum raw=ham diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_uk.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_uk.properties index b58067cd84b8..58e3529daa65 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_uk.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_uk.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=\u041D\u0430\u0437\u0430\u0434 \u0434\u043E \u043F\u0440\u043E\u0435\u043A\u0442\u0443 -Changes=\u0417\u043C\u0456\u043D\u0438 -Console\ Output=\u041A\u043E\u043D\u0441\u043E\u043B\u044C\u043D\u0438\u0439 \u0432\u0438\u0432\u0456\u0434 -View\ Build\ Information=\u041F\u0435\u0440\u0435\u0433\u043B\u044F\u043D\u0443\u0442\u0438 \u0456\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u044E \u0437\u0431\u0456\u0440\u043A\u0438 -View\ as\ plain\ text=\u041F\u0435\u0440\u0435\u0433\u043B\u044F\u043D\u0443\u0442\u0438 \u044F\u043A \u043F\u0440\u043E\u0441\u0442\u0438\u0439 \u0442\u0435\u043A\u0441\u0442 -Edit\ Build\ Information=\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043E\u043F\u0438\u0441 -Status=\u0421\u0442\u0430\u043D -raw=\u043D\u0435\u0444\u043E\u0440\u043C\u0430\u0442\u043E\u0432\u0430\u043D\u0438\u0439 +Back\ to\ Project=Ðазад до проекту +Changes=Зміни +Console\ Output=КонÑольний вивід +View\ Build\ Information=ПереглÑнути інформацію збірки +View\ as\ plain\ text=ПереглÑнути Ñк проÑтий текÑÑ‚ +Edit\ Build\ Information=Редагувати Ð¾Ð¿Ð¸Ñ +Status=Стан +raw=неформатований diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_zh_TW.properties index 7a7d147f0bba..e8ac2182643c 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_zh_TW.properties @@ -21,11 +21,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=\u56de\u5230\u5c08\u6848 -Status=\u72c0\u614b -Changes=\u8b8a\u66f4 -Console\ Output=\u7D42\u7AEF\u6A5F\u8F38\u51FA -raw=\u539f\u59cb\u8cc7\u6599 -View\ as\ plain\ text=\u7d14\u6587\u5b57\u6aa2\u8996 -Edit\ Build\ Information=\u7DE8\u8F2F\u5EFA\u69CB\u8CC7\u8A0A -View\ Build\ Information=\u6aa2\u8996\u5efa\u7f6e\u8cc7\u8a0a +Back\ to\ Project=回到專案 +Status=狀態 +Changes=變更 +Console\ Output=終端機輸出 +raw=原始資料 +View\ as\ plain\ text=純文字檢視 +Edit\ Build\ Information=編輯建構資訊 +View\ Build\ Information=檢視建置資訊 diff --git a/core/src/main/resources/hudson/model/AbstractItem/confirm-rename_it.properties b/core/src/main/resources/hudson/model/AbstractItem/confirm-rename_it.properties index 2f95d04704bc..0240a1c0cd36 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/confirm-rename_it.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/confirm-rename_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/AbstractItem/confirm-rename_ja.properties b/core/src/main/resources/hudson/model/AbstractItem/confirm-rename_ja.properties index 63f502084327..6ad646ee86a0 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/confirm-rename_ja.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/confirm-rename_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -DescribeRename=\u540d\u524d\u306e\u5909\u66f4 {0} {1} -NewName=\u65b0\u3057\u3044\u540d\u524d -Rename=\u540d\u524d\u306e\u5909\u66f4 +DescribeRename=åå‰ã®å¤‰æ›´ {0} {1} +NewName=æ–°ã—ã„åå‰ +Rename=åå‰ã®å¤‰æ›´ diff --git a/core/src/main/resources/hudson/model/AbstractItem/confirm-rename_pl.properties b/core/src/main/resources/hudson/model/AbstractItem/confirm-rename_pl.properties index d0cc0858d167..b227beb31b8e 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/confirm-rename_pl.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/confirm-rename_pl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Rename=Zmie\u0144 nazw\u0119 -DescribeRename=Zmie\u0144 nazw\u0119 {0} +Rename=ZmieÅ„ nazwÄ™ +DescribeRename=ZmieÅ„ nazwÄ™ {0} NewName=Nowa nazwa diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete.properties b/core/src/main/resources/hudson/model/AbstractItem/delete.properties index f9ad2089c05e..c44d24477161 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete.properties @@ -1 +1 @@ -blurb=Delete the {0} \u2018{1}\u2019? +blurb=Delete the {0} ‘{1}’? diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_bg.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_bg.properties index 3a70a40083b0..1e9ddbaaa5fd 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. blurb=\ - \u0421\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u0438\u0437\u0442\u0440\u0438\u0435\u0442\u0435 {0} \u201e{1}\u201c? + Сигурни ли Ñте, че иÑкате да изтриете {0} „{1}“? Yes=\ - \u0414\u0430 + Да diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_da.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_da.properties index c99bd2f5c4ff..24b534dffb0f 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_da.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_da.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Yes=Ja -blurb=Er du sikker p\u00e5 at du vil slette dette {0}? +blurb=Er du sikker pÃ¥ at du vil slette dette {0}? diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_de.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_de.properties index fb60aacaafc3..425852fa8b12 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_de.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_de.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Soll {0} \u201E{1}\u201C wirklich gelöscht werden? +blurb=Soll {0} „{1}“ wirklich gelöscht werden? Yes=Ja diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_el.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_el.properties index 5c661499045e..cc921280cabc 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_el.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_el.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Yes=\u039D\u03B1\u03B9 -blurb=\u0395\u03B9\u03C3\u03C4\u03AD \u03C3\u03AF\u03B3\u03BF\u03C5\u03C1\u03BF\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03BF \u03C3\u03B2\u03AE\u03C3\u03B9\u03BC\u03BF \u03C4\u03BF\u03C5 {0} ''''{1}''''; +Yes=Îαι +blurb=Ειστέ σίγουÏος για το σβήσιμο του {0} ''''{1}''''; diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_es.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_es.properties index 8e4eeef0c673..4a6e6cd4119a 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_es.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_es.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Yes=Sí +Yes=Sí # Are you sure about deleting the {0} ''{1}''? -blurb=¿Estás seguro de querer borrar: {0} ''{1}''? +blurb=¿Estás seguro de querer borrar: {0} ''{1}''? diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_fr.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_fr.properties index 91e17f1422e8..0e75ff30dc62 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_fr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ deleting\ the\ job?=Etes-vous sûr de vouloir supprimer ce job? +Are\ you\ sure\ about\ deleting\ the\ job?=Etes-vous sûr de vouloir supprimer ce job? Yes=Oui -blurb=\u00CAtes-vous s\u00FBr de vouloir supprimer ce {0} "{1}"? +blurb=Êtes-vous sûr de vouloir supprimer ce {0} "{1}"? diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_hu.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_hu.properties index 50a8998a990f..9b7122cfffe5 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_hu.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_hu.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ deleting\ the\ job?=Biztos benne, hogy t\u00F6r\u00F6lni szeretn\u00E9 a munk\u00E1t? +Are\ you\ sure\ about\ deleting\ the\ job?=Biztos benne, hogy törölni szeretné a munkát? Yes=Igen -blurb=Biztosan t\u00F6r\u00F6lni akarja a {0} ''''{1}''''? +blurb=Biztosan törölni akarja a {0} ''''{1}''''? diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_it.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_it.properties index e2edf861db3d..39b6f5c2dcdf 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_it.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,4 +22,4 @@ # THE SOFTWARE. blurb=Eliminare il/la {0} "{1}"? -Yes=Sì +Yes=Sì diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_ja.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_ja.properties index 69d36e47510f..ccb40e3993d9 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_ja.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb={0} "{1}"\u3092\u524a\u9664\u3057\u307e\u3059\u304b? -Yes=\u306f\u3044 +blurb={0} "{1}"を削除ã—ã¾ã™ã‹? +Yes=ã¯ã„ diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_ko.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_ko.properties index 2c2de1fcbfdc..e0f5c51a5e15 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_ko.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_ko.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ deleting\ the\ job?=\uC815\uB9D0\uB85C \uC774 \uC791\uC5C5\uC744 \uC0AD\uC81C\uD569\uB2C8\uAE4C? -Yes=\uC608 -blurb=\uC815\uB9D0 "{1}" \uD504\uB85C\uC81D\uD2B8\uB97C \uC0AD\uC81C \uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C? +Are\ you\ sure\ about\ deleting\ the\ job?=ì •ë§ë¡œ ì´ ìž‘ì—…ì„ ì‚­ì œí•©ë‹ˆê¹Œ? +Yes=예 +blurb=ì •ë§ "{1}" 프로ì íŠ¸ë¥¼ ì‚­ì œ 하시겠습니까? diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_lt.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_lt.properties index 3dc124314b7d..4eec5fbb48cb 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_lt.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_lt.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors Yes=Taip -blurb=At tikrai norite i\u0161trinti {0} "{1}"? +blurb=At tikrai norite iÅ¡trinti {0} "{1}"? diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_lv.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_lv.properties index 3da1af636261..d04dabf0cc5b 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_lv.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_lv.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Yes=J\u0101 -blurb=Vai j\u016Bs esat dro\u0161s par {0} ''''{1}'''' dz\u0113s\u0161anu? +Yes=JÄ +blurb=Vai jÅ«s esat droÅ¡s par {0} ''''{1}'''' dzÄ“sÅ¡anu? diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_pl.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_pl.properties index e37de58541f3..226139be9d27 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_pl.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_pl.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Yes=Tak -blurb=Czy na pewno chcesz usun\u0105\u0107 {0} "{1}"? +blurb=Czy na pewno chcesz usunąć {0} "{1}"? diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_ru.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_ru.properties index 66114af436e7..fcdffee05ac2 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Yes=\u0414\u0430 -blurb=\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c {0} ''''''''{1}''''''''? +Yes=Да +blurb=Ð’Ñ‹ уверены, что хотите удалить {0} ''''''''{1}''''''''? diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_sk.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_sk.properties index 3e539ee38fe1..622565a79fad 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_sk.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_sk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Yes=\u00C1no +Yes=Ãno diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_sr.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_sr.properties index 4777801d8ff0..38b9b7842576 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_sr.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -blurb=\u0414\u0430 \u043B\u0438 \u0441\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043D\u0438 \u0434\u0430 \u0436\u0435\u043B\u0438\u0442\u0435 \u0438\u0437\u0431\u0440\u0438\u0441\u0430\u0442\u0438 {0} "{1}"? -Yes=\u0414\u0430 -Are\ you\ sure\ about\ deleting\ the\ job?=\u0414\u0430 \u043B\u0438 \u0441\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043D\u0438 \u0434\u0430 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u0443\u043A\u043B\u043E\u043D\u0438\u0442\u0435 \u0437\u0430\u0434\u0430\u0442\u0430\u043A? +blurb=Да ли Ñте Ñигурни да желите избриÑати {0} "{1}"? +Yes=Да +Are\ you\ sure\ about\ deleting\ the\ job?=Да ли Ñте Ñигурни да желите да уклоните задатак? diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_sv_SE.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_sv_SE.properties index 492820c2b550..11c211d29d4e 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_sv_SE.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_sv_SE.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ deleting\ the\ job?=\u00C4r du s\u00E4ker p\u00E5 att du vill ta bort projektet? +Are\ you\ sure\ about\ deleting\ the\ job?=Är du säker pÃ¥ att du vill ta bort projektet? Yes=Ja -blurb=\u00C4r du s\u00E4ker p\u00E5 att du vill ta bort {0} "{1}"? +blurb=Är du säker pÃ¥ att du vill ta bort {0} "{1}"? diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_tr.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_tr.properties index 07eca89db6b3..4b036be59fd0 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_tr.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_tr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ deleting\ the\ job?=Bu i\u015fi silmek istedi\u011finize emin misiniz? +Are\ you\ sure\ about\ deleting\ the\ job?=Bu iÅŸi silmek istediÄŸinize emin misiniz? Yes=Evet -blurb={0} ''''{1}'''' Silmek istedi\u011Finizden eminmisiniz ? +blurb={0} ''''{1}'''' Silmek istediÄŸinizden eminmisiniz ? diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_uk.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_uk.properties index 9f81280cc6c7..0a1581f52d2f 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_uk.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_uk.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Yes=\u0422\u0430\u043A -blurb=\u0412\u0438 \u0432\u043F\u0435\u0432\u043D\u0435\u043D\u0456, \u0449\u043E \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0432\u0438\u0434\u0430\u043B\u0438\u0442\u0438 {0} ''''{1}''''? +Yes=Так +blurb=Ви впевнені, що бажаєте видалити {0} ''''{1}''''? diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_zh_TW.properties index 0d6a64a63bca..21115c46a7eb 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_zh_TW.properties @@ -21,5 +21,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\u78BA\u5B9A\u8981\u522A\u9664 {0} ''''{1}'''' \u55CE? -Yes=\u662f +blurb=確定è¦åˆªé™¤ {0} ''''{1}'''' å—Ž? +Yes=是 diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_bg.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_bg.properties index fbec109035d7..44ddd2d48283 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_bg.properties @@ -21,24 +21,24 @@ # THE SOFTWARE. The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new\ name.=\ - \u041f\u0440\u043e\u0435\u043a\u0442\u044a\u0442 \u0431\u0435 \u043f\u0440\u0435\u0438\u043c\u0435\u043d\u0443\u0432\u0430\u043d \u0441\u043a\u043e\u0440\u043e. \u0412\u0441\u0435 \u043e\u0449\u0435 \u043d\u044f\u043c\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f \u0441 \u0442\u043e\u0432\u0430 \u0438\u043c\u0435. + Проектът бе преименуван Ñкоро. Ð’Ñе още нÑма Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ Ñ Ñ‚Ð¾Ð²Ð° име. # The workspace directory ({0}) is removed outside Jenkins. li3=\ - \u0420\u0430\u0431\u043e\u0442\u043d\u043e\u0442\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u201e{0}\u201c \u0435 \u043f\u0440\u043e\u043c\u0435\u043d\u044f\u043d\u043e \u0438\u0437\u0432\u044a\u043d Jenkins. + Работното проÑтранÑтво „{0}“ е променÑно извън Jenkins. There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=\ - \u0420\u0430\u0431\u043e\u0442\u043d\u043e\u0442\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u043d\u0430 \u0442\u043e\u0437\u0438 \u043f\u0440\u043e\u0435\u043a\u0442 \u043b\u0438\u043f\u0441\u0432\u0430. \u0412\u044a\u0437\u043c\u043e\u0436\u043d\u0438 \u043f\u0440\u0438\u0447\u0438\u043d\u0438 \u0441\u0430: + Работното проÑтранÑтво на този проект липÑва. Възможни причини Ñа: text=\ - \u0418\u0437\u043f\u044a\u043b\u043d\u0435\u0442\u0435 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438 Jenkins \u0449\u0435 \u0441\u044a\u0437\u0434\u0430\u0434\u0435 \u0440\u0430\u0431\u043e\u0442\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e. + Изпълнете изграждане и Jenkins ще Ñъздаде работно проÑтранÑтво. Error\:\ no\ workspace=\ - \u0413\u0440\u0435\u0448\u043a\u0430: \u043b\u0438\u043f\u0441\u0432\u0430 \u0440\u0430\u0431\u043e\u0442\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e + Грешка: липÑва работно проÑтранÑтво The\ workspace\ was\ wiped\ out\ and\ no\ build\ has\ been\ done\ since\ then.=\ - \u0420\u0430\u0431\u043e\u0442\u043d\u043e\u0442\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u0435 \u0431\u0438\u043b\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u043e \u0438 \u043e\u0442\u0442\u043e\u0433\u0430\u0432\u0430 \u043d\u044f\u043c\u0430 \u043d\u043e\u0432\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f. + Работното проÑтранÑтво е било изтрито и оттогава нÑма нови изгражданиÑ. A\ project\ won''t\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=\ - \u0417\u0430 \u0434\u0430 \u0441\u0435 \u0441\u044a\u0437\u0434\u0430\u0434\u0435 \u0440\u0430\u0431\u043e\u0442\u043d\u043e\u0442\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u043d\u0430 \u0435\u0434\u0438\u043d \u043f\u0440\u043e\u0435\u043a\u0442, \u0442\u043e\u0439 \u0442\u0440\u044f\u0431\u0432\u0430 \u043f\u044a\u0440\u0432\u043e \u0434\u0430 \u0441\u0435\ - \u0438\u0437\u0433\u0440\u0430\u0434\u0438. + За да Ñе Ñъздаде работното проÑтранÑтво на един проект, той Ñ‚Ñ€Ñбва първо да Ñе\ + изгради. The\ slave\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=\ - \u041a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u044a\u0442, \u043d\u0430 \u043a\u043e\u0439\u0442\u043e \u0442\u043e\u0437\u0438 \u043f\u0440\u043e\u0435\u043a\u0442 \u0435 \u0431\u0438\u043b \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d, \u0435 \u0438\u0437\u0432\u0430\u0434\u0435\u043d \u043e\u0442\ - \u043a\u043b\u044a\u0441\u0442\u044a\u0440\u0430. + Компютърът, на който този проект е бил поÑледно изграждан, е изваден от\ + клъÑтъра. The\ agent\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=\ - \u041a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u044a\u0442, \u043d\u0430 \u043a\u043e\u0439\u0442\u043e \u0442\u043e\u0437\u0438 \u043f\u0440\u043e\u0435\u043a\u0442 \u0435 \u0431\u0438\u043b \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d, \u0435 \u0438\u0437\u0432\u0430\u0434\u0435\u043d \u043e\u0442\ - \u043a\u043b\u044a\u0441\u0442\u044a\u0440\u0430. + Компютърът, на който този проект е бил поÑледно изграждан, е изваден от\ + клъÑтъра. diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ca.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ca.properties index 8dae3702bb8f..4cb02ec3273f 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ca.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ca.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors Error\:\ no\ workspace=Error: sense espai de treball -text=Construir ara perqu\u00E8 Jenkins construeixi un espai de treball. +text=Construir ara perquè Jenkins construeixi un espai de treball. diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_da.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_da.properties index 38f08ccf26d7..44807e2fe461 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_da.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_da.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -li3=Arbejdsomr\u00e5de direktoriet ({0}) er fjernet udenfor Jenkins. -There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=Der er ikke noget arbejdsomr\u00e5de til dette projekt. Mulige grunde kan v\u00e6re: -A\ project\ won''t\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=At projektet ikke har et arbejdsomr\u00e5de f\u00f8r mindst et byg er udf\u00f8rt. +li3=ArbejdsomrÃ¥de direktoriet ({0}) er fjernet udenfor Jenkins. +There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=Der er ikke noget arbejdsomrÃ¥de til dette projekt. Mulige grunde kan være: +A\ project\ won''t\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=At projektet ikke har et arbejdsomrÃ¥de før mindst et byg er udført. The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new\ name.=\ -Projektet er blevet omd\u00f8bt for nyligt og ingen byg er endnu udf\u00f8rt under det nye navn -Error\:\ no\ workspace=Fejl: intet arbejdsomr\u00e5de -text=K\u00f8r et byg for at f\u00e5 Jenkins til at lave et arbejdsomr\u00e5de. +Projektet er blevet omdøbt for nyligt og ingen byg er endnu udført under det nye navn +Error\:\ no\ workspace=Fejl: intet arbejdsomrÃ¥de +text=Kør et byg for at fÃ¥ Jenkins til at lave et arbejdsomrÃ¥de. diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_de.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_de.properties index 2c42ae6b53be..87f869de04c9 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_de.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_de.properties @@ -22,10 +22,10 @@ Error\:\ no\ workspace=Fehler: Kein Arbeitsbereich. The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new\ name.=\ - Das Projekt wurde vor kurzem umbenannt und es wurde noch kein Build unter dem neuen Namen ausgef\u00FChrt. -li3=Das Arbeitsbereichsverzeichnis ({0}) wurde au\u00DFerhalb von Jenkins entfernt. + Das Projekt wurde vor kurzem umbenannt und es wurde noch kein Build unter dem neuen Namen ausgeführt. +li3=Das Arbeitsbereichsverzeichnis ({0}) wurde außerhalb von Jenkins entfernt. text=Starten Sie einen Build, um von Jenkins einen Arbeitsbereich anlegen zu lassen. -The\ workspace\ was\ wiped\ out\ and\ no\ build\ has\ been\ done\ since\ then.=Der Arbeitsbereich wurde gel\u00F6scht und es wurde seitdem kein Build durchgef\u00FChrt. -A\ project\ won''t\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=Ein Projekt hat keinen Arbeitsbereich, bevor nicht mindestens ein Build durchgef\u00FChrt wurde. -There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=Es gibt f\u00FCr dieses Projekt keinen Arbeitsbereich. M\u00F6gliche Gr\u00FCnde: -The\ agent\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=Der Agent, auf dem dieses Projekt zuletzt ausgef\u00FChrt wurde, wurde entfernt. +The\ workspace\ was\ wiped\ out\ and\ no\ build\ has\ been\ done\ since\ then.=Der Arbeitsbereich wurde gelöscht und es wurde seitdem kein Build durchgeführt. +A\ project\ won''t\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=Ein Projekt hat keinen Arbeitsbereich, bevor nicht mindestens ein Build durchgeführt wurde. +There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=Es gibt für dieses Projekt keinen Arbeitsbereich. Mögliche Gründe: +The\ agent\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=Der Agent, auf dem dieses Projekt zuletzt ausgeführt wurde, wurde entfernt. diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_es.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_es.properties index 873d4814c73d..b96e1457d0c2 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_es.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_es.properties @@ -21,11 +21,11 @@ # THE SOFTWARE. There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=No hay un espacio de trabajo para este proyecto. Las posibles razones son: -li3=El directorio de trabajo ({0}) se moverá fuera de Jenkins. -text=Lanzar una ejecución para que Jenkins cree el directorio de trabajo. +li3=El directorio de trabajo ({0}) se moverá fuera de Jenkins. +text=Lanzar una ejecución para que Jenkins cree el directorio de trabajo. The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new\ name.=El proyecto se ha renombrado y no se a ejecutado desde entonces Error\:\ no\ workspace=Error, no hay espacio de trabajo -The\ agent\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=El agente donde se ejecutó la última vez se ha eliminado +The\ agent\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=El agente donde se ejecutó la última vez se ha eliminado The\ workspace\ was\ wiped\ out\ and\ no\ build\ has\ been\ done\ since\ then.=El espacio de trabajo se ha borrado, y no se ha ejecutado la tarea desde entonces. diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_et.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_et.properties index 8ad854612ee8..db094050f155 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_et.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_et.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Error\:\ no\ workspace=Viga: sellist t\u00F6\u00F6 keskkonda pole -There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=Sellel projektil ei ole t\u00F6\u00F6keskkonda. V\u00F5imalikud p\u00F5hjused on: -li3=T\u00F6\u00F6 keskkonna kataloog {{0}} on eemaldatud v\u00E4ljaspool Jenkinsit. -text=Kompileeri bild t\u00F6\u00F6 keskkonna loomiseks. +Error\:\ no\ workspace=Viga: sellist töö keskkonda pole +There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=Sellel projektil ei ole töökeskkonda. Võimalikud põhjused on: +li3=Töö keskkonna kataloog {{0}} on eemaldatud väljaspool Jenkinsit. +text=Kompileeri bild töö keskkonna loomiseks. diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_fr.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_fr.properties index 09aa43473944..cf6abf30556e 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_fr.properties @@ -23,6 +23,6 @@ Error\:\ no\ workspace=Erreur : pas de workspace A\ project\ won't\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=Un projet n''a pas de workspace avant un premier build. There's\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=Il n''y a pas de workspace existant pour ce projet. Les raisons possibles sont : -The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new\ name.=Le projet a \u00e9t\u00e9 renomm\u00e9 r\u00e9cemment et aucun build n''a \u00e9t\u00e9 fait avec ce nouveau nom. -li3=Le r\u00e9pertoire de travail ({0}) a \u00e9t\u00e9 d\u00e9plac\u00e9 hors de Jenkins. -text=Lancer un build afin de faire cr\u00e9er un workspace par Jenkins. +The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new\ name.=Le projet a été renommé récemment et aucun build n''a été fait avec ce nouveau nom. +li3=Le répertoire de travail ({0}) a été déplacé hors de Jenkins. +text=Lancer un build afin de faire créer un workspace par Jenkins. diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_it.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_it.properties index 1065d19c5e90..3c9ce4372f5b 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_it.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,20 +22,20 @@ # THE SOFTWARE. A\ project\ won't\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=Un \ - progetto non avrà alcuno spazio di lavoro finché non sarà stata eseguita \ + progetto non avrà alcuno spazio di lavoro finché non sarà stata eseguita \ almeno una compilazione. Error\:\ no\ workspace=Errore: nessuno spazio di lavoro presente -li3=La directory dello spazio di lavoro ({0}) è stata eliminata al di fuori \ +li3=La directory dello spazio di lavoro ({0}) è stata eliminata al di fuori \ di Jenkins. The\ agent\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=L''agente \ - su cui è stato eseguito l''ultima volta questo progetto è stato rimosso. + su cui è stato eseguito l''ultima volta questo progetto è stato rimosso. The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new\ name.=Il \ - progetto è stato rinominato recentemente e non è stata eseguita alcuna \ + progetto è stato rinominato recentemente e non è stata eseguita alcuna \ compilazione con il nuovo nome. The\ workspace\ was\ wiped\ out\ and\ no\ build\ has\ been\ done\ since\ then.=Lo \ - spazio di lavoro è stato ripulito e da quel momento non sono state \ + spazio di lavoro è stato ripulito e da quel momento non sono state \ eseguite compilazioni. There's\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=Non \ esiste nessuno spazio di lavoro per questo progetto. I motivi possibili sono: -text=Eseguire una compilazione per far sì che Jenkins crei uno spazio di \ +text=Eseguire una compilazione per far sì che Jenkins crei uno spazio di \ lavoro. diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ja.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ja.properties index 3a4395e7c2d8..10fdb5549ec2 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ja.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ja.properties @@ -20,14 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Error\:\ no\ workspace=\u30a8\u30e9\u30fc\uff1a\u3000\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9\u304c\u5b58\u5728\u3057\u307e\u305b\u3093 +Error\:\ no\ workspace=エラー: ワークスペースãŒå­˜åœ¨ã—ã¾ã›ã‚“ A\ project\ won''t\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=\ - \u5c11\u306a\u304f\u3068\u30821\u3064\u306e\u30d3\u30eb\u30c9\u304c\u5b9f\u884c\u3055\u308c\u306a\u3044\u9650\u308a\u3001\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306b\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9\u306f\u4f5c\u6210\u3055\u308c\u307e\u305b\u3093\u3002 + å°‘ãªãã¨ã‚‚1ã¤ã®ãƒ“ルドãŒå®Ÿè¡Œã•ã‚Œãªã„é™ã‚Šã€ãƒ—ロジェクトã«ãƒ¯ãƒ¼ã‚¯ã‚¹ãƒšãƒ¼ã‚¹ã¯ä½œæˆã•ã‚Œã¾ã›ã‚“。 There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=\ - \u3053\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9\u304c\u5b58\u5728\u3057\u307e\u305b\u3093\u3002\u4ee5\u4e0b\u306e\u7406\u7531\u304c\u8003\u3048\u3089\u308c\u307e\u3059\u3002 + ã“ã®ãƒ—ロジェクトã®ãƒ¯ãƒ¼ã‚¯ã‚¹ãƒšãƒ¼ã‚¹ãŒå­˜åœ¨ã—ã¾ã›ã‚“。以下ã®ç†ç”±ãŒè€ƒãˆã‚‰ã‚Œã¾ã™ã€‚ The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new\ name.=\ - \u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u304c\u65b0\u3057\u3044\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u540d\u306b\u5909\u66f4\u3055\u308c\u305f\u5f8c\u306b\u3001\u305d\u306e\u540d\u524d\u3067\u30d3\u30eb\u30c9\u304c\u5b9f\u884c\u3055\u308c\u3066\u3044\u306a\u3044\u3002 -li3=\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\uff08{0}\uff09\u304cJenkins\u306e\u7ba1\u7406\u5916\u3078\u53d6\u308a\u9664\u304b\u308c\u305f\u3002 -text=\u30d3\u30eb\u30c9\u3092\u5b9f\u884c\u3057\u3066\u3001\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u3066\u304f\u3060\u3055\u3044\u3002 + プロジェクトãŒæ–°ã—ã„プロジェクトåã«å¤‰æ›´ã•ã‚ŒãŸå¾Œã«ã€ãã®åå‰ã§ãƒ“ルドãŒå®Ÿè¡Œã•ã‚Œã¦ã„ãªã„。 +li3=ワークスペースディレクトリ({0})ãŒJenkinsã®ç®¡ç†å¤–ã¸å–り除ã‹ã‚ŒãŸã€‚ +text=ビルドを実行ã—ã¦ã€ãƒ¯ãƒ¼ã‚¯ã‚¹ãƒšãƒ¼ã‚¹ã‚’作æˆã—ã¦ãã ã•ã„。 The\ workspace\ was\ wiped\ out\ and\ no\ build\ has\ been\ done\ since\ then.=\ - \u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9\u304c\u524a\u9664\u3055\u308c\u3066\u304b\u3089\u4e00\u5ea6\u3082\u30d3\u30eb\u30c9\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002 + ワークスペースãŒå‰Šé™¤ã•ã‚Œã¦ã‹ã‚‰ä¸€åº¦ã‚‚ビルドã•ã‚Œã¦ã„ã¾ã›ã‚“。 diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ko.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ko.properties index 4773b9ccacc7..729cc78ac20b 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ko.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ko.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Error\:\ no\ workspace=\uC5D0\uB7EC: \uC791\uC5C5\uACF5\uAC04\uC774 \uC5C6\uC2B5\uB2C8\uB2E4. -text=\uC820\uD0A8\uC2A4\uAC00 \uC791\uC5C5\uACF5\uAC04\uC744 \uB9CC\uB4E4\uAE30 \uC704\uD574 \uBE4C\uB4DC\uC2E4\uD589. +Error\:\ no\ workspace=ì—러: ìž‘ì—…ê³µê°„ì´ ì—†ìŠµë‹ˆë‹¤. +text=젠킨스가 ìž‘ì—…ê³µê°„ì„ ë§Œë“¤ê¸° 위해 빌드실행. diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_lt.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_lt.properties index 10ca7cd673be..46bef3ea7262 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_lt.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_lt.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Error\:\ no\ workspace=Klaida: n\u0117ra darbalaukio -text=Paleisti konstrukcij\u0105, kad Jenkins sukurt\u0173 darbalauk\u012F. +Error\:\ no\ workspace=Klaida: nÄ—ra darbalaukio +text=Paleisti konstrukcijÄ…, kad Jenkins sukurtų darbalaukį. diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_lv.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_lv.properties index 3e34d61d0445..898e44510c02 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_lv.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_lv.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=\u0160im projektam nav nevienas darbavietas. Tam var\u0113tu b\u016Bt \u0161\u0101di iemesli: -text=Palaist b\u016Bv\u0113jumu lai izveidotu darbavietu priek\u0161 Jenkins. +There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=Å im projektam nav nevienas darbavietas. Tam varÄ“tu bÅ«t Å¡Ädi iemesli: +text=Palaist bÅ«vÄ“jumu lai izveidotu darbavietu priekÅ¡ Jenkins. diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_nl.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_nl.properties index 0e2a65ed2225..18a93ade5dfe 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_nl.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_nl.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Error\:\ no\ workspace=Fout : geen werkplaats beschikbaar -A\ project\ won't\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=Een project zal geen werkplaats hebben tot er op zijn minst \u00E9\u00E9n bouwpoging plaatsgevonden heeft. +A\ project\ won't\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=Een project zal geen werkplaats hebben tot er op zijn minst één bouwpoging plaatsgevonden heeft. There's\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=Er is geen werkplaats beschikbaar voor dit project. Mogelijke redenen zijn : The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new\ name.=Dit project werd hernoemd en heeft nog bouwpoging plaats gevonden onder de nieuwe naam. li3=Het pad naar de werkplaats ({0}) werd buiten Jenkins verwijderd. -text=Lanceer een bouwpoging om Jenkins de werkplaats te laten cre\u00EBren. +text=Lanceer een bouwpoging om Jenkins de werkplaats te laten creëren. diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_pt_BR.properties index d520f7a62ddb..a4efaf4b79d7 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_pt_BR.properties @@ -20,16 +20,16 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Error\:\ no\ workspace=Erro: nenhum espa\u00E7o de trabalho +Error\:\ no\ workspace=Erro: nenhum espaço de trabalho The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new\ name.=O projeto foi renomeado \ - recentemente e nenhuma constru\u00E7\u00E3o foi feita com um novo nome. -li3=O diret\u00F3rio de workspace ({0}) foi removido externamente ao Jenkins. -text=Execute uma constru\u00E7\u00E3o para que o Jenkins crie um espa\u00E7o de trabalho. -There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=N\u00E3o existe nenhum espa\u00E7o de trabalho dispon\u00EDvel \ + recentemente e nenhuma construção foi feita com um novo nome. +li3=O diretório de workspace ({0}) foi removido externamente ao Jenkins. +text=Execute uma construção para que o Jenkins crie um espaço de trabalho. +There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=Não existe nenhum espaço de trabalho disponível \ para esse projeto -A\ project\ won''t\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=Um projeto n\u00E3o tem nenhum \ - espa\u00E7o de trabalho at\u00E9 que pelo menos uma constru\u00E7\u00E3o seja constru\u00EDda. -The\ workspace\ was\ wiped\ out\ and\ no\ build\ has\ been\ done\ since\ then.=O espa\u00E7o de trabalho foi removido e \ - nenhuma constru\u00E7\u00E3o foi feita desde ent\u00E3o. +A\ project\ won''t\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=Um projeto não tem nenhum \ + espaço de trabalho até que pelo menos uma construção seja construída. +The\ workspace\ was\ wiped\ out\ and\ no\ build\ has\ been\ done\ since\ then.=O espaço de trabalho foi removido e \ + nenhuma construção foi feita desde então. The\ agent\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=O agente que este projeto tem executado \ - at\u00E9 a \u00FAltima vez foi removido. + até a última vez foi removido. diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_pt_PT.properties index 2f8d8ff14721..bfde19158fdb 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_pt_PT.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_pt_PT.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Error\:\ no\ workspace=Erro: nenhum espa\u00E7od e trabalho -text=Executa um build para que o Jenkins crie um espa\u00E7o de trabalho. +Error\:\ no\ workspace=Erro: nenhum espaçod e trabalho +text=Executa um build para que o Jenkins crie um espaço de trabalho. diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ru.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ru.properties index 8511a3199897..b45f273792ae 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ru.properties @@ -20,16 +20,16 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Error\:\ no\ workspace=\u041e\u0448\u0438\u0431\u043a\u0430: \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430 \u0441\u0431\u043e\u0440\u043e\u0447\u043d\u0430\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f +Error\:\ no\ workspace=Ошибка: не найдена ÑÐ±Ð¾Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ A\ project\ won''t\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=\ -\u041f\u0440\u043e\u0435\u043a\u0442 \u043d\u0435 \u0431\u0443\u0434\u0435\u0442 \u0438\u043c\u0435\u0442\u044c \u0441\u0431\u043e\u0440\u043e\u0447\u043d\u0443\u044e \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044e \u043f\u043e\u043a\u0430 \u0445\u043e\u0442\u044f \u0431\u044b \u043e\u0434\u043d\u0430 \u0441\u0431\u043e\u0440\u043a\u0430 \u043d\u0435 \u0431\u0443\u0434\u0435\u0442 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430. +Проект не будет иметь Ñборочную директорию пока Ñ…Ð¾Ñ‚Ñ Ð±Ñ‹ одна Ñборка не будет запущена. There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=\ - \u0421\u0431\u043e\u0440\u043e\u0447\u043d\u0430\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u0434\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442. \u0412\u043e\u0437\u043c\u043e\u0436\u043d\u044b\u0435 \u043f\u0440\u0438\u0447\u0438\u043d\u044b: + Ð¡Ð±Ð¾Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð´Ð»Ñ Ð´Ð°Ð½Ð½Ð¾Ð³Ð¾ проекта отÑутÑтвует. Возможные причины: The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new\ name.=\ - \u041f\u0440\u043e\u0435\u043a\u0442 \u0431\u044b\u043b \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d \u0438 \u0441\u0431\u043e\u0440\u043e\u043a \u043f\u043e\u0434 \u043d\u043e\u0432\u044b\u043c \u0438\u043c\u0435\u043d\u0435\u043c \u0435\u0449\u0435 \u043d\u0435 \u0431\u044b\u043b\u043e. -li3=\u0421\u0431\u043e\u0440\u043e\u0447\u043d\u0430\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f ({0}) \u0431\u044b\u043b\u0430 \u0443\u0434\u0430\u043b\u0435\u043d\u0430 \u0438\u0437 \u0440\u0430\u0431\u043e\u0447\u0435\u0433\u043e \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0430 Jenkins. -text=\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u0435 \u0441\u0431\u043e\u0440\u043a\u0443, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0437\u0432\u043e\u043b\u0438\u0442\u044c Jenkins \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0441\u0431\u043e\u0440\u043e\u0447\u043d\u0443\u044e \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044e. + Проект был недавно переименован и Ñборок под новым именем еще не было. +li3=Ð¡Ð±Ð¾Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ ({0}) была удалена из рабочего каталога Jenkins. +text=ЗапуÑтите Ñборку, чтобы позволить Jenkins Ñоздать Ñборочную директорию. The\ agent\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=\ - \u0410\u0433\u0435\u043d\u0442, \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u044d\u0442\u043e\u0442 \u043f\u0440\u043e\u0435\u043a\u0442 \u0431\u044b\u043b \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 \u0440\u0430\u0437 \u0437\u0430\u043f\u0443\u0449\u0435\u043d, \u0443\u0434\u0430\u043b\u0451\u043d. + Ðгент, на котором Ñтот проект был поÑледний раз запущен, удалён. The\ workspace\ was\ wiped\ out\ and\ no\ build\ has\ been\ done\ since\ then.=\ - \u0421\u0431\u043e\u0440\u043e\u0447\u043d\u0430\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u0431\u044b\u043b\u0430 \u043e\u0447\u0438\u0449\u0435\u043d\u0430, \u0438 \u0441\u0431\u043e\u0440\u043e\u043a \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0431\u044b\u043b\u043e. + Ð¡Ð±Ð¾Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð±Ñ‹Ð»Ð° очищена, и Ñборок больше не было. diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_sk.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_sk.properties index 9e867a30cd86..a1b36fce4f8b 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_sk.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_sk.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Error\:\ no\ workspace=Chyba: neexistuje pracovn\u00FD priestor -There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=Neexistuje pracovn\u00FD priestor pre tento projekt. Mo\u017En\u00E9 pr\u00ED\u010Diny s\u00FA: -li3=Adres\u00E1r pracovn\u00E9ho priestoru ({0}) bol odstr\u00E1nen\u00FD mimo Jenkinsu. -text=Spusti zostavenie a Jenkins vytvor\u00ED pracovn\u00FD priestor. +Error\:\ no\ workspace=Chyba: neexistuje pracovný priestor +There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=Neexistuje pracovný priestor pre tento projekt. Možné príÄiny sú: +li3=Adresár pracovného priestoru ({0}) bol odstránený mimo Jenkinsu. +text=Spusti zostavenie a Jenkins vytvorí pracovný priestor. diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_sr.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_sr.properties index 7c8d5110c9a3..09a333fceb25 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_sr.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_sr.properties @@ -1,14 +1,14 @@ # This file is under the MIT License by authors -Error\:\ no\ workspace=\u0413\u0440\u0435\u0448\u043A\u0430: \u043D\u0435\u043C\u0430 \u0440\u0430\u0434\u043D\u0438 \u043F\u0440\u043E\u0441\u0442\u043E\u0440 -A\ project\ won't\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=\u041F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 \u043D\u0435\u045B\u0435 \u0438\u043C\u0430\u0442\u0438 \u0440\u0430\u0434\u043D\u0438 \u043F\u0440\u043E\u0441\u0442\u043E\u0440 \u0434\u043E\u043A \u0441\u0435 \u043D\u0435 \u0438\u0437\u0432\u0440\u0448\u0438 \u0458\u0435\u0434\u043D\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435. -There's\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=\u041D\u0435\u043C\u0430 \u0440\u0430\u0434\u043D\u0438 \u043F\u0440\u043E\u0441\u0442\u043E\u0440 \u0437\u0430 \u043E\u0432\u0430\u0458 \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442. \u041C\u043E\u0433\u0443\u045B\u0435 \u0458\u0435: -The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new\ name.=\u041F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 \u0458\u0435 \u0441\u043A\u043E\u0440\u043E \u043F\u0440\u0435\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u043D, \u0438 \u0458\u043E\u0448 \u043D\u0435\u043C\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 \u043F\u043E \u043D\u043E\u0432\u0438\u043C \u0438\u043C\u0435\u043D\u043E\u043C. -The\ agent\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=\u0410\u0433\u0435\u043D\u0442 \u043E\u0432\u043E\u043C \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0443 \u043D\u0430 \u043A\u043E\u043C \u0458\u0435 \u0437\u0430\u0434\u045A\u0435 \u0438\u0437\u0432\u0440\u0448\u0435\u043D\u043E \u0458\u0435 \u0438\u0437\u0431\u0440\u0438\u0441\u0430\u043D. -li3=\u0420\u0430\u0434\u043D\u0438 \u043F\u0440\u043E\u0441\u0442\u043E\u0440 "{0}" \u0458\u0435 \u0438\u0437\u0431\u0430\u0447\u0435\u043D \u0438\u0437 Jenkins. -The\ workspace\ was\ wiped\ out\ and\ no\ build\ has\ been\ done\ since\ then.=\u041D\u0438\u0458\u0435 \u0431\u0438\u043B\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u043E\u0442\u043A\u0430\u0434 \u0458\u0435 \u0440\u0430\u0434\u043D\u0438 \u043F\u0440\u043E\u0441\u0442\u043E\u0440 \u0438\u0437\u0431\u0440\u0438\u0441\u0430\u043D. -text=\u041F\u043E\u043A\u0440\u0435\u043D\u0438\u0442\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 \u0438 Jenkins \u045B\u0435 \u0441\u0442\u0432\u043E\u0440\u0438\u0442\u0438 \u0440\u0430\u0434\u043D\u0438 \u043F\u0440\u043E\u0441\u0442\u043E\u0440. -Error=\ no workspace=\u0413\u0440\u0435\u0448\u043A\u0430: \u043D\u0435\u043C\u0430 \u0440\u0430\u0434\u043D\u043E\u0433 \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0430 -There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=\u041D\u0435\u043C\u0430 \u0440\u0430\u0434\u043D\u043E\u0433 \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0430 \u0437\u0430 \u043E\u0432\u0430\u0458 \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442. \u041C\u043E\u0433\u0443\u045B\u0435 \u0458\u0435: -A\ project\ won''t\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=\u041F\u0440\u043E\u0458\u043A\u0442\u0438 \u043D\u0435\u045B\u0435 \u0438\u043C\u0430\u0442\u0438 \u0440\u0430\u0434\u043D\u0438\u0445 \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0430 \u0434\u043E\u043A \u0441\u0435 \u043D\u0435 \u0438\u0437\u0432\u0440\u0448\u0438 \u0458\u0435\u0434\u043D\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430. -The\ slave\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=\u041F\u043E\u043C\u043E\u045B\u043D\u0438\u043A \u043E\u0432\u043E\u043C \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0443 \u043D\u0430 \u043A\u043E\u043C \u0458\u0435 \u0437\u0430\u0434\u045A\u0435 \u0438\u0437\u0432\u0440\u0448\u0435\u043D\u043E \u0458\u0435 \u0438\u0437\u0431\u0440\u0438\u0441\u0430\u043D. +Error\:\ no\ workspace=Грешка: нема радни проÑтор +A\ project\ won't\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=Пројекат неће имати радни проÑтор док Ñе не изврши једно изградње. +There's\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=Ðема радни проÑтор за овај пројекат. Могуће је: +The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new\ name.=Пројекат је Ñкоро преименован, и још нема изградње по новим именом. +The\ agent\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=Ðгент овом пројекту на ком је задње извршено је избриÑан. +li3=Радни проÑтор "{0}" је избачен из Jenkins. +The\ workspace\ was\ wiped\ out\ and\ no\ build\ has\ been\ done\ since\ then.=Ðије било изградња откад је радни проÑтор избриÑан. +text=Покрените изградњу и Jenkins ће Ñтворити радни проÑтор. +Error=\ no workspace=Грешка: нема радног проÑтора +There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=Ðема радног проÑтора за овај пројекат. Могуће је: +A\ project\ won''t\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=Пројкти неће имати радних проÑтора док Ñе не изврши једна изградња. +The\ slave\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=Помоћник овом пројекту на ком је задње извршено је избриÑан. diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_tr.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_tr.properties index 6d52903a1cff..8e708b755794 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_tr.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_tr.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -li3=\u00c7al\u0131\u015fma alan\u0131 dizini ({0}), Jenkins''in kontrol\u00fc d\u0131\u015f\u0131nda silindi. -text=Jenkins''in bir \u00e7al\u0131\u015fma alan\u0131 yaratmas\u0131 i\u00e7in bir yap\u0131land\u0131rma \u00e7al\u0131\u015ft\u0131r\u0131n. -Error\:\ no\ workspace=Hata\: \u00c7al\u0131\u015fma Alan\u0131 mevcut de\u011fil -A\ project\ won't\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=Bir proje, en az\u0131ndan bir yap\u0131land\u0131rma \u00e7al\u0131\u015ft\u0131r\u0131lmadan bir \u00e7al\u0131\u015fma alan\u0131na sahip olamaz. -There's\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=Bu projenin bir \u00e7al\u0131\u015fma alan\u0131 yok. Muhtemel sebepler\: -The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new\ name.=Projenin ismi yeni de\u011fi\u015ftirildi ve yeni isim alt\u0131nda herhangi bir yap\u0131land\u0131rma \u00e7al\u0131\u015ft\u0131r\u0131lmad\u0131. +li3=Çalışma alanı dizini ({0}), Jenkins''in kontrolü dışında silindi. +text=Jenkins''in bir çalışma alanı yaratması için bir yapılandırma çalıştırın. +Error\:\ no\ workspace=Hata\: Çalışma Alanı mevcut deÄŸil +A\ project\ won't\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=Bir proje, en azından bir yapılandırma çalıştırılmadan bir çalışma alanına sahip olamaz. +There's\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=Bu projenin bir çalışma alanı yok. Muhtemel sebepler\: +The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new\ name.=Projenin ismi yeni deÄŸiÅŸtirildi ve yeni isim altında herhangi bir yapılandırma çalıştırılmadı. diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_zh_TW.properties index c3b0d8184ad5..70aba14e2e85 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_zh_TW.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Error\:\ no\ workspace=\u932f\u8aa4: \u6c92\u6709\u5de5\u4f5c\u5340 +Error\:\ no\ workspace=錯誤: æ²’æœ‰å·¥ä½œå€ A\ project\ won't\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=\ - \u5c08\u6848\u5728\u57f7\u884c\u904e\u5efa\u7f6e\u4e4b\u524d\u662f\u4e0d\u6703\u6709\u5de5\u4f5c\u5340\u7684\u3002 + 專案在執行éŽå»ºç½®ä¹‹å‰æ˜¯ä¸æœƒæœ‰å·¥ä½œå€çš„。 There's\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=\ - \u5c08\u6848\u6c92\u6709\u5de5\u4f5c\u5340\u3002\u53ef\u80fd\u7684\u539f\u56e0\u6709: -The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new\ name.=\u5C08\u6848\u6700\u8FD1\u6539\u540D\u4E86\uFF0C\u800C\u4E14\u6539\u540D\u5F8C\u9084\u6C92\u5EFA\u7F6E\u904E\u3002 -li3=\u5DE5\u4F5C\u5340\u76EE\u9304 ({0}) \u5728 Jenkins \u5916\u88AB\u522A\u9664\u4E86\u3002 -The\ workspace\ was\ wiped\ out\ and\ no\ build\ has\ been\ done\ since\ then.=\u5DE5\u4F5C\u5340\u88AB\u6E05\u9664\uFF0C\u800C\u4E14\u5230\u76EE\u524D\u70BA\u6B62\u9084\u6C92\u6709\u5EFA\u7F6E\u904E\u3002 + 專案沒有工作å€ã€‚å¯èƒ½çš„原因有: +The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new\ name.=專案最近改å了,而且改å後還沒建置éŽã€‚ +li3=工作å€ç›®éŒ„ ({0}) 在 Jenkins 外被刪除了。 +The\ workspace\ was\ wiped\ out\ and\ no\ build\ has\ been\ done\ since\ then.=工作å€è¢«æ¸…除,而且到目å‰ç‚ºæ­¢é‚„沒有建置éŽã€‚ -text=\u57F7\u884C\u5EFA\u7F6E\u8B93 Jenkins \u7522\u751F\u5DE5\u4F5C\u5340\u3002 +text=執行建置讓 Jenkins 產生工作å€ã€‚ diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/error_bg.properties b/core/src/main/resources/hudson/model/AbstractModelObject/error_bg.properties index 1f47752c3f91..371cbccb36dd 100644 --- a/core/src/main/resources/hudson/model/AbstractModelObject/error_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractModelObject/error_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Error=\ - \u0413\u0440\u0435\u0448\u043a\u0430 + Грешка Detail...=\ - \u041f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u0438\u2026 + ПодробноÑти… diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/error_fi.properties b/core/src/main/resources/hudson/model/AbstractModelObject/error_fi.properties index 9a2affea3550..97cf0953a01c 100644 --- a/core/src/main/resources/hudson/model/AbstractModelObject/error_fi.properties +++ b/core/src/main/resources/hudson/model/AbstractModelObject/error_fi.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Detail...=Lis\u00E4tiedot... +Detail...=Lisätiedot... Error=Virhe diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/error_fr.properties b/core/src/main/resources/hudson/model/AbstractModelObject/error_fr.properties index 5ae81465407d..864217c59909 100644 --- a/core/src/main/resources/hudson/model/AbstractModelObject/error_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractModelObject/error_fr.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Error=Erreur -Detail...=Détails... +Detail...=Détails... diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/error_it.properties b/core/src/main/resources/hudson/model/AbstractModelObject/error_it.properties index 76768f5b06f2..1260bedfff50 100644 --- a/core/src/main/resources/hudson/model/AbstractModelObject/error_it.properties +++ b/core/src/main/resources/hudson/model/AbstractModelObject/error_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/error_ja.properties b/core/src/main/resources/hudson/model/AbstractModelObject/error_ja.properties index 2fc2120897ad..c4790bae33d3 100644 --- a/core/src/main/resources/hudson/model/AbstractModelObject/error_ja.properties +++ b/core/src/main/resources/hudson/model/AbstractModelObject/error_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Error=\u30a8\u30e9\u30fc -Detail...=\u8a73\u7d30... +Error=エラー +Detail...=詳細... diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/error_lv.properties b/core/src/main/resources/hudson/model/AbstractModelObject/error_lv.properties index 567829432abf..b2715463842d 100644 --- a/core/src/main/resources/hudson/model/AbstractModelObject/error_lv.properties +++ b/core/src/main/resources/hudson/model/AbstractModelObject/error_lv.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Detail...=S\u012Bk\u0101k... -Error=K\u013C\u016Bda +Detail...=SÄ«kÄk... +Error=Kļūda diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/error_ru.properties b/core/src/main/resources/hudson/model/AbstractModelObject/error_ru.properties index 1b2351ff62c5..292729b079fc 100644 --- a/core/src/main/resources/hudson/model/AbstractModelObject/error_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractModelObject/error_ru.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Error=\u041E\u0448\u0438\u0431\u043A\u0430 +Error=Ошибка diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/error_sr.properties b/core/src/main/resources/hudson/model/AbstractModelObject/error_sr.properties index 29271bc5b99d..6eddde82af26 100644 --- a/core/src/main/resources/hudson/model/AbstractModelObject/error_sr.properties +++ b/core/src/main/resources/hudson/model/AbstractModelObject/error_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Error=\u0413\u0440\u0435\u0448\u043A\u0430 -Detail...=\u0414\u0435\u0442\u0430\u0459\u0438... +Error=Грешка +Detail...=Детаљи... diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/error_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractModelObject/error_zh_TW.properties index 3d89a507b853..c5b5289c3d7b 100644 --- a/core/src/main/resources/hudson/model/AbstractModelObject/error_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractModelObject/error_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Error=\u932f\u8aa4 -Detail...=\u8a73\u7d30\u8cc7\u6599 +Error=錯誤 +Detail...=詳細資料 diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_bg.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_bg.properties index deadd5410fb7..23873a4455f7 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_bg.properties @@ -21,12 +21,12 @@ # THE SOFTWARE. Changes=\ - \u041f\u0440\u043e\u043c\u0450\u043d\u0438 + ПромÑни to.label=\ - \u0434\u043e #{0} + до #{0} from.label=\ - \u043e\u0442 #{0} + от #{0} changes.title=\ - {0} \u043f\u0440\u043e\u043c\u0450\u043d\u0438 + {0} промÑни range.label=\ - \u043e\u0442 #{0} \u0434\u043e #{1} + от #{0} до #{1} diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_cs.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_cs.properties index 70ed68027340..8b9ec2003ba6 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_cs.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=Zm\u011Bny +Changes=ZmÄ›ny diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_da.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_da.properties index aa34c5954161..62eba5366ed3 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_da.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_da.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=\u00c6ndringer +Changes=Ændringer from.label=# fra #{0} to.label=# til #{0} range.label=fra #{0} til #{1} -changes.title=# {0} \u00c6ndringer +changes.title=# {0} Ændringer diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_de.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_de.properties index e2eedb1b4f29..106157de3455 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_de.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_de.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=Änderungen -changes.title=Änderungen in {0} +Changes=Änderungen +changes.title=Änderungen in {0} from.label=seit #{0} to.label=bis #{0} range.label=zwischen #{0} und #{1} diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_el.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_el.properties index 4108c7d261ba..d67eaa7618c3 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_el.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_el.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Changes=\u0391\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2 +Changes=Αλλαγές diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_fr.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_fr.properties index d118a3158a2b..c4e65520f259 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_fr.properties @@ -23,5 +23,5 @@ changes.title=Changements dans {0} Changes=Modifications from.label=de #{0} -to.label=à #{0} -range.label=de #{0} à #{1} +to.label=à #{0} +range.label=de #{0} à #{1} diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_hu.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_hu.properties index ecf46543055f..5da99113e9f4 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_hu.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=V\u00E1ltoz\u00E1sok +Changes=Változások diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_it.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_it.properties index c006883b2fb6..c3d7baac5cea 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_it.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_ja.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_ja.properties index eb551492af9d..5ae39c547a8e 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_ja.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_ja.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -changes.title={0}\u306e\u5909\u66f4 -Changes=\u5909\u66f4\u5c65\u6b74 -from.label=#{0} \u304b\u3089 -to.label=#{0} \u307e\u3067 -range.label=#{0} \u304b\u3089 #{1} \u307e\u3067 +changes.title={0}ã®å¤‰æ›´ +Changes=変更履歴 +from.label=#{0} ã‹ã‚‰ +to.label=#{0} ã¾ã§ +range.label=#{0} ã‹ã‚‰ #{1} ã¾ã§ diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_ko.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_ko.properties index 84fd0c14e9bf..6e16ca1e93f8 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_ko.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=\uBCC0\uACBD \uC0AC\uD56D +Changes=변경 사항 diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_lv.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_lv.properties index 0bc7170878e8..4711ddd64522 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_lv.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_lv.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=Izmai\u0146as +Changes=Izmaiņas from.label=no #{0} -to.label=l\u012Bdz #{0} -range.label=no #{0} l\u012Bdz #{1} +to.label=lÄ«dz #{0} +range.label=no #{0} lÄ«dz #{1} diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_pt_BR.properties index 427ebf3de592..8c8f81e4bfa6 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_pt_BR.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=Mudan\u00e7as +Changes=Mudanças # from #{0} from.label=de #{0} # to #{0} to.label= para #{0} range.label=de #{0} para #{1} # {0} Changes -changes.title={0} Mudan\u00e7as +changes.title={0} Mudanças diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_pt_PT.properties index 85e5a78e4237..9603a92f1f82 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_pt_PT.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_pt_PT.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Changes=Altera\u00E7\u00F5es +Changes=Alterações diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_ru.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_ru.properties index 4f52ea693ec3..916b20695b3e 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f -from.label=\u0441 #{0} -to.label=\u0434\u043E #{0} -range.label=\u0441 #{0} \u0434\u043E #{1} +Changes=Ð˜Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ +from.label=Ñ #{0} +to.label=до #{0} +range.label=Ñ #{0} до #{1} diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_sr.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_sr.properties index d12d7fda35cf..e36e4bcb6dcb 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_sr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_sr.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -changes.title={0} \u043F\u0440\u043E\u043C\u0435\u043D\u0435 -Changes=\u041F\u0440\u043E\u043C\u0435\u043D\u0435 -range.label=\ \u043E\u0434 #{0} \u0434\u043E #{1} -from.label=\ \u043E\u0434 #{0} -to.label=\ \u0434\u043E #{0} +changes.title={0} промене +Changes=Промене +range.label=\ од #{0} до #{1} +from.label=\ од #{0} +to.label=\ до #{0} diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_sv_SE.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_sv_SE.properties index 6c29ba317d10..d60a8608d6a7 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_sv_SE.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=F\u00F6r\u00E4ndringar +Changes=Förändringar diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_tr.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_tr.properties index b8de2b1c3139..ff3e8b71db2a 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_tr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_tr.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=De\u011fi\u015fiklikler -changes.title={0} degi\u015fiklik +Changes=DeÄŸiÅŸiklikler +changes.title={0} degiÅŸiklik from.label=#{0}'dan to.label=#{0}'a range.label=#{0}'dan #{1}'a diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_uk.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_uk.properties index 7a22d04db85a..c251aec2c87c 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_uk.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Changes=\u0417\u043C\u0456\u043D\u0438 +Changes=Зміни diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_zh_TW.properties index 1e4364901d75..53ed51312644 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_zh_TW.properties @@ -21,8 +21,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -changes.title={0} \u8b8a\u66f4 -Changes=\u8b8a\u66f4 -from.label=\u5f9e #{0} -to.label=\u5230 #{0} -range.label=\u5f9e #{0} \u5230 #{1} +changes.title={0} 變更 +Changes=變更 +from.label=從 #{0} +to.label=到 #{0} +range.label=從 #{0} 到 #{1} diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_bg.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_bg.properties index aab9d48983cc..0cf2a8e9d77c 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_bg.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Keep\ the\ build\ logs\ of\ dependencies=\ - \u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0442\u0435 \u0441 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f\u0442\u0430 \u043d\u0430 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438\u0442\u0435 + Запазване на журналите Ñ Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñта на завиÑимоÑтите Advanced\ Project\ Options=\ - \u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 + Допълнителни наÑтройки на проекта JDK\ to\ be\ used\ for\ this\ project=\ - JDK \u0437\u0430 \u0442\u043e\u0437\u0438 \u043f\u0440\u043e\u0435\u043a\u0442 + JDK за този проект Display\ Name=\ - \u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e \u0438\u043c\u0435 + Информационно име diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_ca.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_ca.properties index 0ef5b09b5d67..944246a68b1d 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_ca.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_ca.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Advanced\ Project\ Options=Opcions avan\u00E7ades de Projecte +Advanced\ Project\ Options=Opcions avançades de Projecte Display\ Name=Nom a mostrar diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_da.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_da.properties index bcee6beb9f23..63f288cd3dea 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_da.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_da.properties @@ -23,4 +23,4 @@ default.value=(Standard) Advanced\ Project\ Options=Avancerede projektindstillinger JDK\ to\ be\ used\ for\ this\ project=JDK der skal benyttes til dette projekt -Keep\ the\ build\ logs\ of\ dependencies=Behold byggelogs for afh\u00e6ngigheder +Keep\ the\ build\ logs\ of\ dependencies=Behold byggelogs for afhængigheder diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_de.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_de.properties index 4b4632d9bcd3..fefb5cb495d2 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_de.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_de.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -JDK\ to\ be\ used\ for\ this\ project=JDK, das f\u00fcr dieses Projekt verwendet wird +JDK\ to\ be\ used\ for\ this\ project=JDK, das für dieses Projekt verwendet wird Display\ Name=Anzeigename -Keep\ the\ build\ logs\ of\ dependencies=Behalte die Build-Protokolle aller Abh\u00e4ngigkeiten. +Keep\ the\ build\ logs\ of\ dependencies=Behalte die Build-Protokolle aller Abhängigkeiten. diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_es.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_es.properties index 5249391a4075..9c567482ddc3 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_es.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_es.properties @@ -24,4 +24,4 @@ default.value=(por defecto) Advanced\ Project\ Options=Opciones avanzadas del proyecto JDK\ to\ be\ used\ for\ this\ project=JDK que se debe usar para este proyecto Display\ Name=Nombre a mostrar -Keep\ the\ build\ logs\ of\ dependencies=\u00bfConservar los ''logs'' de dependencias de las ejecuciones? +Keep\ the\ build\ logs\ of\ dependencies=¿Conservar los ''logs'' de dependencias de las ejecuciones? diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_fr.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_fr.properties index fc2f5a23a7b9..b28d345c5aa8 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_fr.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Advanced\ Project\ Options=Options avanc\u00e9es du projet -Tie\ this\ project\ to\ a\ node=Associer ce projet \u00e0 un noeud +Advanced\ Project\ Options=Options avancées du projet +Tie\ this\ project\ to\ a\ node=Associer ce projet à un noeud Node=Noeud -JDK\ to\ be\ used\ for\ this\ project=Le JDK \u00e0 utiliser pour ce projet -default.value=(Valeur par d\u00e9faut) -Keep\ the\ build\ logs\ of\ dependencies=Conserver les logs de build des d\u00e9pendances +JDK\ to\ be\ used\ for\ this\ project=Le JDK à utiliser pour ce projet +default.value=(Valeur par défaut) +Keep\ the\ build\ logs\ of\ dependencies=Conserver les logs de build des dépendances diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_he.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_he.properties index c8f7b3a751b6..94fd1c691bd9 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_he.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_he.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Advanced\ Project\ Options\ configure-common=\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05E4\u05E8\u05D5\u05D9\u05E7\u05D8 \u05DE\u05EA\u05E7\u05D3\u05DE\u05D5\u05EA -Display\ Name=\u05E9\u05DD \u05EA\u05E6\u05D5\u05D2\u05D4 -title.concurrentbuilds=\u05D4\u05E8\u05E5 \u05D1\u05E0\u05D9\u05D5\u05EA \u05D1\u05DE\u05E7\u05D1\u05D9\u05DC \u05D0\u05DD \u05D9\u05E9 \u05E6\u05D5\u05E8\u05DA +Advanced\ Project\ Options\ configure-common=הגדרות פרויקט מתקדמות +Display\ Name=×©× ×ª×¦×•×’×” +title.concurrentbuilds=הרץ בניות במקביל ×× ×™×© צורך diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_hu.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_hu.properties index db8d90f7de9e..aeae750ef044 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_hu.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_hu.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Advanced\ Project\ Options=Halad\u00F3 projekt-be\u00E1ll\u00EDt\u00E1sok -Display\ Name=Megjelen\u00EDt\u00E9si n\u00E9v +Advanced\ Project\ Options=Haladó projekt-beállítások +Display\ Name=Megjelenítési név diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_it.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_it.properties index 5080f3a4afb9..ff55165e4112 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_it.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_ja.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_ja.properties index e80eeec69ee8..d0210496fed4 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_ja.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -JDK\ to\ be\ used\ for\ this\ project=\u3053\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3067\u4f7f\u7528\u3059\u308bJDK -Advanced\ Project\ Options=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u9ad8\u5ea6\u306a\u30aa\u30d7\u30b7\u30e7\u30f3 -Display\ Name=\u8868\u793a\u7528\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u540d -Keep\ the\ build\ logs\ of\ dependencies=\u4f9d\u5b58\u3057\u3066\u3044\u308b\u4e0a\u6d41\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u30d3\u30eb\u30c9\u3092\u4fdd\u5b58 +JDK\ to\ be\ used\ for\ this\ project=ã“ã®ãƒ—ロジェクトã§ä½¿ç”¨ã™ã‚‹JDK +Advanced\ Project\ Options=プロジェクトã®é«˜åº¦ãªã‚ªãƒ—ション +Display\ Name=表示用プロジェクトå +Keep\ the\ build\ logs\ of\ dependencies=ä¾å­˜ã—ã¦ã„る上æµãƒ—ロジェクトã®ãƒ“ルドをä¿å­˜ diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_ko.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_ko.properties index 16ab8c083fd7..27482ce481fc 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_ko.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_ko.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Advanced\ Project\ Options=\uACE0\uAE09 \uD504\uB85C\uC81D\uD2B8 \uC635\uC158 -Display\ Name=\uD45C\uC2DC \uC774\uB984 -JDK\ to\ be\ used\ for\ this\ project=JDK\uAC00 \uC774 \uD504\uB85C\uC81D\uD2B8\uC5D0 \uC0AC\uC6A9\uB420 \uAC83\uC785\uB2C8\uB2E4. -default.value=(\uAE30\uBCF8) +Advanced\ Project\ Options=고급 프로ì íŠ¸ 옵션 +Display\ Name=표시 ì´ë¦„ +JDK\ to\ be\ used\ for\ this\ project=JDKê°€ ì´ í”„ë¡œì íŠ¸ì— ì‚¬ìš©ë  ê²ƒìž…ë‹ˆë‹¤. +default.value=(기본) diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_lt.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_lt.properties index bc54a279095e..a16422a9be0b 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_lt.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_lt.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Advanced\ Project\ Options\ configure-common=Sud\u0117tingesn\u0117s projekto parinktys +Advanced\ Project\ Options\ configure-common=SudÄ—tingesnÄ—s projekto parinktys Display\ Name=Rodomas pavadinimas -Restrict\ where\ this\ project\ can\ be\ run=Apriboti, kur gali b\u016Bti vykdomas \u0161is darbas +Restrict\ where\ this\ project\ can\ be\ run=Apriboti, kur gali bÅ«ti vykdomas Å¡is darbas diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_lv.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_lv.properties index c65f457e99ef..60d7c2d226c1 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_lv.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_lv.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -JDK\ to\ be\ used\ for\ this\ project=Lietotais JDK \u0161im projektam -default.value=(Noklus\u0113ti) +JDK\ to\ be\ used\ for\ this\ project=Lietotais JDK Å¡im projektam +default.value=(NoklusÄ“ti) diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_nb_NO.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_nb_NO.properties index c516f60331a6..49a8702f1eba 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_nb_NO.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_nb_NO.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors Advanced\ Project\ Options\ configure-common=Avanserte innstillinger for prosjektet -title.concurrentbuilds=Utf\u00F8r samtidige build hvis n\u00F8dvendig +title.concurrentbuilds=Utfør samtidige build hvis nødvendig diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_pl.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_pl.properties index 7f251d1bedfe..852314e4ce9d 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_pl.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_pl.properties @@ -19,6 +19,6 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Display\ Name=Nazwa wy\u015Bwietlana -JDK\ to\ be\ used\ for\ this\ project=JDK u\u017Cyte do budowy projektu -Keep\ the\ build\ logs\ of\ dependencies=Trzymaj logi konsoli projekt\u00F3w zale\u017Cnych +Display\ Name=Nazwa wyÅ›wietlana +JDK\ to\ be\ used\ for\ this\ project=JDK użyte do budowy projektu +Keep\ the\ build\ logs\ of\ dependencies=Trzymaj logi konsoli projektów zależnych diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_pt_BR.properties index 77e591b10dc0..a8e2d8b24dcf 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Display\ Name=Nome de exibi\u00e7\u00e3o -JDK\ to\ be\ used\ for\ this\ project=Necess\u00e1rio usar JDK nesse projeto -Keep\ the\ build\ logs\ of\ dependencies=Manter os 'logs' de constru\ufffd\ufffdo das depend\ufffdncias +Display\ Name=Nome de exibição +JDK\ to\ be\ used\ for\ this\ project=Necessário usar JDK nesse projeto +Keep\ the\ build\ logs\ of\ dependencies=Manter os 'logs' de constru��o das depend�ncias diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_ru.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_ru.properties index d07daf914226..405204832ad2 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_ru.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Advanced\ Project\ Options=\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 -Display\ Name=\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c\u043e\u0435 \u0438\u043c\u044f -JDK\ to\ be\ used\ for\ this\ project=JDK \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u0443\u0434\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d \u0432 \u044d\u0442\u043e\u043c \u043f\u0440\u043e\u0435\u043a\u0442\u0435 -Tie\ this\ project\ to\ a\ node=\u041f\u0440\u0438\u0432\u044f\u0437\u0430\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442 \u043a \u0443\u0437\u043b\u0443 -Node=\u0423\u0437\u0435\u043b -title.concurrentbuilds=\u0412\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u0441\u0431\u043e\u0440\u043a\u0438, \u0435\u0441\u043b\u0438 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e -Keep\ the\ build\ logs\ of\ dependencies=\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u0436\u0443\u0440\u043d\u0430\u043b \u0441\u0431\u043e\u0440\u043a\u0438 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0435\u0439 +Advanced\ Project\ Options=РаÑширенные наÑтройки проекта +Display\ Name=Отображаемое Ð¸Ð¼Ñ +JDK\ to\ be\ used\ for\ this\ project=JDK который будет иÑпользован в Ñтом проекте +Tie\ this\ project\ to\ a\ node=ПривÑзать проект к узлу +Node=Узел +title.concurrentbuilds=ВыполнÑÑ‚ÑŒ одновременные Ñборки, еÑли необходимо +Keep\ the\ build\ logs\ of\ dependencies=СохранÑÑ‚ÑŒ журнал Ñборки завиÑимоÑтей diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_sk.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_sk.properties index 9ba89204677f..65b35f90267d 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_sk.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_sk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Advanced\ Project\ Options=Roz\u0161\u00EDren\u00E9 nastavenia projektu -Display\ Name=Zobrazen\u00E9 meno +Advanced\ Project\ Options=Rozšírené nastavenia projektu +Display\ Name=Zobrazené meno diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_sr.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_sr.properties index 6f82603f0a88..657f21b58d75 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_sr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_sr.properties @@ -1,13 +1,13 @@ # This file is under the MIT License by authors -JDK\ to\ be\ used\ for\ this\ project=JDK \u043A\u043E\u0458\u0438 \u045B\u0435 \u0441\u0435 \u043A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0438 \u0437\u0430 \u043E\u0432\u0430\u0458 \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 -Display\ Name=\u0418\u043C\u0435 -Keep\ the\ build\ logs\ of\ dependencies=\u0417\u0430\u0434\u0440\u0436\u0438 \u0436\u0443\u0440\u043D\u0430\u043B \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 \u043E\u0434 \u0437\u0430\u0432\u0438\u0441\u043D\u0438\u0445 -Advanced\ Project\ Options=\u041D\u0430\u043F\u0440\u0435\u0434\u043D\u0430 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 -default.value=(\u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0434) -Restrict\ where\ this\ project\ can\ be\ run=O\u0433\u0440\u0430\u043D\u0438\u0447\u0438 \u0433\u0434\u0435 \u0458\u0435 \u043E\u0432\u0430\u0458 \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 \u043C\u043E\u0436\u0435 \u0431\u0438\u0442\u0438 \u0438\u0437\u0432\u0440\u0448\u0435\u043D -Tie\ this\ project\ to\ a\ node=\u041F\u043E\u0432\u0435\u0436\u0438 \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 \u0441\u0430 \u043C\u0430\u0448\u0438\u043D\u043E\u043C -Node=\u041C\u0430\u0448\u0438\u043D\u0430 -Advanced\ Project\ Options\ configure-common=\u041D\u0430\u043F\u0440\u0435\u0434\u043D\u0430 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 -title.concurrentbuilds=\u041E\u0431\u0430\u0432\u0459\u0430 \u043F\u0430\u0440\u0430\u043B\u0435\u043B\u043D\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 \u0430\u043A\u043E \u0431\u0443\u0434\u0435 \u0431\u0438\u043B\u043E \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E -Label\ Expression=\u041D\u0430\u043F\u0440\u0435\u0434\u043D\u0430 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 +JDK\ to\ be\ used\ for\ this\ project=JDK који ће Ñе кориÑтити за овај пројекат +Display\ Name=Име +Keep\ the\ build\ logs\ of\ dependencies=Задржи журнал изградње од завиÑних +Advanced\ Project\ Options=Ðапредна подешавања +default.value=(Ñтандард) +Restrict\ where\ this\ project\ can\ be\ run=Oграничи где је овај пројекат може бити извршен +Tie\ this\ project\ to\ a\ node=Повежи пројекат Ñа машином +Node=Машина +Advanced\ Project\ Options\ configure-common=Ðапредна подешавања +title.concurrentbuilds=Обавља паралелно изградње ако буде било потребно +Label\ Expression=Ðапредна подешавања diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_sv_SE.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_sv_SE.properties index f9efdc2530b1..62989e44775d 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_sv_SE.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_sv_SE.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Advanced\ Project\ Options=Avancerade Projektinst\u00E4llningar +Advanced\ Project\ Options=Avancerade Projektinställningar Advanced\ Project\ Options\ configure-common=Avancerade projektval Display\ Name=Visningsnamn -JDK\ to\ be\ used\ for\ this\ project=JDK att anv\u00E4nda f\u00F6r detta projekt +JDK\ to\ be\ used\ for\ this\ project=JDK att använda för detta projekt Label\ Expression=Etikett -Restrict\ where\ this\ project\ can\ be\ run=Begr\u00E4nsa var detta projekt kan k\u00F6ras +Restrict\ where\ this\ project\ can\ be\ run=Begränsa var detta projekt kan köras default.value=(Standard) -title.concurrentbuilds=K\u00F6r samtidiga byggen om n\u00F6dv\u00E4ndigt +title.concurrentbuilds=Kör samtidiga byggen om nödvändigt diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_tr.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_tr.properties index 9fdb13988f5a..45c42666702c 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_tr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_tr.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Advanced\ Project\ Options=Geli\u015fmi\u015f Proje Se\u00e7enekleri -JDK\ to\ be\ used\ for\ this\ project=Bu proje i\u00e7in kullan\u0131lacak olan JDK -default.value=(Varsay\u0131lan) -Tie\ this\ project\ to\ a\ node=Bu projeyi bir noda ba\u011fla +Advanced\ Project\ Options=GeliÅŸmiÅŸ Proje Seçenekleri +JDK\ to\ be\ used\ for\ this\ project=Bu proje için kullanılacak olan JDK +default.value=(Varsayılan) +Tie\ this\ project\ to\ a\ node=Bu projeyi bir noda baÄŸla Node=Nod -Keep\ the\ build\ logs\ of\ dependencies=Ba\u011f\u0131ml\u0131l\u0131klar\u0131n yap\u0131land\u0131rma loglar\u0131n\u0131 sakla +Keep\ the\ build\ logs\ of\ dependencies=Bağımlılıkların yapılandırma loglarını sakla diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_uk.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_uk.properties index 77ec75876d09..980522b7acd2 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_uk.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_uk.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Advanced\ Project\ Options=\u0414\u043E\u0434\u0430\u0442\u043A\u043E\u0432\u0456 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u043F\u0440\u043E\u0435\u043A\u0442\u0443 -Advanced\ Project\ Options\ configure-common=\u0420\u043E\u0437\u0448\u0438\u0440\u0435\u043D\u0456 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0438 \u043F\u0440\u043E\u0435\u043A\u0442\u0443 -Display\ Name=\u0412\u0456\u0434\u043E\u0431\u0440\u0430\u0436\u0443\u0432\u0430\u043D\u0430 \u043D\u0430\u0437\u0432\u0430 -title.concurrentbuilds=\u0411\u0443\u0434\u0443\u0432\u0430\u0442\u0438 \u043F\u0430\u0440\u0430\u043B\u0435\u043B\u044C\u043D\u043E \u043A\u043E\u043B\u0438 \u043F\u043E\u0442\u0440\u0456\u0431\u043D\u043E +Advanced\ Project\ Options=Додаткові Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ñ€Ð¾ÐµÐºÑ‚Ñƒ +Advanced\ Project\ Options\ configure-common=Розширені параметри проекту +Display\ Name=Відображувана назва +title.concurrentbuilds=Будувати паралельно коли потрібно diff --git a/core/src/main/resources/hudson/model/AbstractProject/configure-common_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_zh_TW.properties index f46352436793..ef611e73ee13 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_zh_TW.properties @@ -21,10 +21,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -JDK\ to\ be\ used\ for\ this\ project=\u8981\u4f7f\u7528\u7684 JDK -default.value=(\u9810\u8a2d) +JDK\ to\ be\ used\ for\ this\ project=è¦ä½¿ç”¨çš„ JDK +default.value=(é è¨­) -Advanced\ Project\ Options=\u9032\u968e\u5c08\u6848\u9078\u9805 -Advanced\ Project\ Options\ configure-common=\u9032\u968e\u5c08\u6848\u9078\u9805 -Display\ Name=\u986f\u793a\u540d\u7a31 -Keep\ the\ build\ logs\ of\ dependencies=\u4fdd\u7559\u76f8\u4f9d\u6a21\u7d44\u7684\u5efa\u7f6e\u8a18\u9304 +Advanced\ Project\ Options=進階專案é¸é … +Advanced\ Project\ Options\ configure-common=進階專案é¸é … +Display\ Name=顯示å稱 +Keep\ the\ build\ logs\ of\ dependencies=ä¿ç•™ç›¸ä¾æ¨¡çµ„的建置記錄 diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_bg.properties b/core/src/main/resources/hudson/model/AbstractProject/main_bg.properties index 3c18c1b18d00..84910fb34e2d 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Last\ Successful\ Artifacts=\ - \u0410\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u0438 \u043e\u0442 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0442\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f + Ðртефакти от поÑледните уÑпешни Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ Recent\ Changes=\ - \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u043f\u0440\u043e\u043c\u0450\u043d\u0438 + ПоÑледни промÑни Workspace=\ - \u0420\u0430\u0431\u043e\u0442\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e + Работно проÑтранÑтво diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_ca.properties b/core/src/main/resources/hudson/model/AbstractProject/main_ca.properties index b47c9fe23df8..ac1b35896d41 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_ca.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_ca.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Successful\ Artifacts=\u00DAltim Artefacte Correcte +Last\ Successful\ Artifacts=Últim Artefacte Correcte Recent\ Changes=Canvis recents Workspace=Espai de treball diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_cs.properties b/core/src/main/resources/hudson/model/AbstractProject/main_cs.properties index 672b6f782a42..0d4c3eded890 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_cs.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_cs.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Successful\ Artifacts=Posledn\u00E9 \u00FAsp\u011B\u0161n\u00E9 artefakty -Recent\ Changes=Posledn\u00ED zm\u011Bny -Workspace=Pracovn\u00ED prostor +Last\ Successful\ Artifacts=Posledné úspěšné artefakty +Recent\ Changes=Poslední zmÄ›ny +Workspace=Pracovní prostor diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_da.properties b/core/src/main/resources/hudson/model/AbstractProject/main_da.properties index 299a394a9524..b8d7ffa2b834 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_da.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_da.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Workspace=Arbejdsomr\u00e5de +Workspace=ArbejdsomrÃ¥de Last\ Successful\ Artifacts=Seneste succesfulde artifakter -Recent\ Changes=Nylige \u00E6ndringer +Recent\ Changes=Nylige ændringer diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_de.properties b/core/src/main/resources/hudson/model/AbstractProject/main_de.properties index 84e0a8800dc3..08b1d6e6a07b 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_de.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_de.properties @@ -22,4 +22,4 @@ Workspace=Arbeitsbereich Last\ Successful\ Artifacts=Artefakte des letzten erfolgreichen Builds -Recent\ Changes=Letzte \u00C4nderungen +Recent\ Changes=Letzte Änderungen diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_el.properties b/core/src/main/resources/hudson/model/AbstractProject/main_el.properties index 0857a348ecaa..d423efb35e2f 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_el.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_el.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Successful\ Artifacts=\u03A4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1 \u0395\u03C0\u03B9\u03C4\u03C5\u03C7\u03AE \u0391\u03BD\u03C4\u03B9\u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03B1 -Recent\ Changes=\u03A4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B5\u03C2 \u0391\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2 +Last\ Successful\ Artifacts=Τελευταία Επιτυχή Αντικείμενα +Recent\ Changes=Τελευταίες Αλλαγές diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_es.properties b/core/src/main/resources/hudson/model/AbstractProject/main_es.properties index 8382a858a62f..aae68734c9e8 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_es.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_es.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Workspace=Espacio de trabajo -Last\ Successful\ Artifacts=\u00DAltima Ejecuci\u00F3n Exitosa +Last\ Successful\ Artifacts=Última Ejecución Exitosa Recent\ Changes=Cambios recientes diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_et.properties b/core/src/main/resources/hudson/model/AbstractProject/main_et.properties index 5596aa05523f..81b2a0b55842 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_et.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_et.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Last\ Successful\ Artifacts=Viimased \u00F5nnestunud artefaktid +Last\ Successful\ Artifacts=Viimased õnnestunud artefaktid Recent\ Changes=Hiljutised muudatused -Workspace=T\u00F6\u00F6ruum +Workspace=Tööruum diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_fi.properties b/core/src/main/resources/hudson/model/AbstractProject/main_fi.properties index 3586511694e6..3c3c672df762 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_fi.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_fi.properties @@ -22,4 +22,4 @@ Last\ Successful\ Artifacts=Viimeiset onnistuneet tuotokset Recent\ Changes=Viimeaikaiset muutokset -Workspace=Ty\u00F6hakemisto +Workspace=Työhakemisto diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_fr.properties b/core/src/main/resources/hudson/model/AbstractProject/main_fr.properties index cab31ebce6d5..5a741b867228 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_fr.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Workspace=Espace de travail -Recent\ Changes=Changements récents -Latest\ Console\ output=Derni\u00E8re sortie de la console -Last\ Successful\ Artifacts=Derniers artefacts obtenus avec succès +Recent\ Changes=Changements récents +Latest\ Console\ output=Dernière sortie de la console +Last\ Successful\ Artifacts=Derniers artefacts obtenus avec succès diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_he.properties b/core/src/main/resources/hudson/model/AbstractProject/main_he.properties index 4b689c2b8b01..7511ffaa7882 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_he.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_he.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Last\ Successful\ Artifacts=\u05EA\u05D5\u05E6\u05E8\u05D9\u05DD \u05E9\u05DC \u05D1\u05E0\u05D9\u05D4 \u05DE\u05D5\u05E6\u05DC\u05D7\u05EA \u05D0\u05D7\u05E8\u05D5\u05E0\u05D4 -Recent\ Changes=\u05E9\u05D9\u05E0\u05D5\u05D9\u05D9\u05DD \u05D0\u05D7\u05E8\u05D5\u05E0\u05D9\u05DD -Workspace=\u05E9\u05D8\u05D7-\u05E2\u05D1\u05D5\u05D3\u05D4 +Last\ Successful\ Artifacts=×ª×•×¦×¨×™× ×©×œ בניה מוצלחת ×חרונה +Recent\ Changes=×©×™× ×•×™×™× ××—×¨×•× ×™× +Workspace=שטח-עבודה diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_hu.properties b/core/src/main/resources/hudson/model/AbstractProject/main_hu.properties index 675681f4789a..e6840799c557 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_hu.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_hu.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Last\ Successful\ Artifacts=Az utols\u00F3 sikeres eredm\u00E9nyek -Recent\ Changes=Az ut\u00F3bbi v\u00E1ltoztat\u00E1sok -Workspace=Munkater\u00FClet +Last\ Successful\ Artifacts=Az utolsó sikeres eredmények +Recent\ Changes=Az utóbbi változtatások +Workspace=Munkaterület diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_it.properties b/core/src/main/resources/hudson/model/AbstractProject/main_it.properties index 7999a70546d6..ee1d632a6f73 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_it.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_ja.properties b/core/src/main/resources/hudson/model/AbstractProject/main_ja.properties index 3671af3b0b36..4e17f7bcdcce 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_ja.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Workspace=\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9 -Recent\ Changes=\u5909\u66f4\u5c65\u6b74 -Last\ Successful\ Artifacts=\u6700\u65b0\u6210\u529f\u30d3\u30eb\u30c9\u306e\u6210\u679c\u7269 +Workspace=ワークスペース +Recent\ Changes=変更履歴 +Last\ Successful\ Artifacts=最新æˆåŠŸãƒ“ルドã®æˆæžœç‰© diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_ko.properties b/core/src/main/resources/hudson/model/AbstractProject/main_ko.properties index 04ccfc81b7dc..582e57055998 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_ko.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_ko.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Successful\ Artifacts=\uCD5C\uADFC \uC131\uACF5\uD55C \uACB0\uACFC\uBB3C\uB4E4 -Recent\ Changes=\uCD5C\uADFC \uBCC0\uACBD\uC0AC\uD56D -Workspace=\uC791\uC5C5 \uACF5\uAC04 +Last\ Successful\ Artifacts=최근 성공한 결과물들 +Recent\ Changes=최근 변경사항 +Workspace=ìž‘ì—… 공간 diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_lt.properties b/core/src/main/resources/hudson/model/AbstractProject/main_lt.properties index 59a8dc76c529..c754ce1d011b 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_lt.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_lt.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Last\ Successful\ Artifacts=Paskutiniai s\u0117kmingi artifaktai +Last\ Successful\ Artifacts=Paskutiniai sÄ—kmingi artifaktai Recent\ Changes=Paskutiniai pakeitimai Workspace=Darbalaukis diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_lv.properties b/core/src/main/resources/hudson/model/AbstractProject/main_lv.properties index 9c5adf96fbed..bfe7837e16c3 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_lv.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_lv.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Successful\ Artifacts=P\u0113d\u0113jie veiksm\u012Bgie artefakti -Recent\ Changes=Nesen\u0101s izmai\u0146as +Last\ Successful\ Artifacts=PÄ“dÄ“jie veiksmÄ«gie artefakti +Recent\ Changes=NesenÄs izmaiņas Workspace=Darbavirsma diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_nb_NO.properties b/core/src/main/resources/hudson/model/AbstractProject/main_nb_NO.properties index 25d545648b86..8ffd2196d3f4 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_nb_NO.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_nb_NO.properties @@ -22,4 +22,4 @@ Last\ Successful\ Artifacts=Siste vellykkede artifakter Recent\ Changes=Nylige endringer -Workspace=Arbeidsomr\u00E5de +Workspace=ArbeidsomrÃ¥de diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_pl.properties b/core/src/main/resources/hudson/model/AbstractProject/main_pl.properties index 55645387b97c..48f33bcf3d32 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_pl.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_pl.properties @@ -22,4 +22,4 @@ Last\ Successful\ Artifacts=Ostatnie Powiedzione Artefakty Recent\ Changes=Rejestr zmian -Workspace=Przestrze\u0144 robocza +Workspace=PrzestrzeÅ„ robocza diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractProject/main_pt_BR.properties index e129dfe13dcd..bda7018cdea6 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_pt_BR.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Workspace=Workspace -Last\ Successful\ Artifacts=\u00DAltimos artefatos que obtiveram sucesso -Recent\ Changes=Mudan\u00e7as recentes +Last\ Successful\ Artifacts=Últimos artefatos que obtiveram sucesso +Recent\ Changes=Mudanças recentes diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractProject/main_pt_PT.properties index 82cbaf56b326..607bf700e8b5 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_pt_PT.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_pt_PT.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Last\ Successful\ Artifacts=\u00DAltimos artefatos bem sucedidos -Recent\ Changes=Altera\u00E7\u00F5es Recentes -Workspace=Espa\u00E7o de Trabalho +Last\ Successful\ Artifacts=Últimos artefatos bem sucedidos +Recent\ Changes=Alterações Recentes +Workspace=Espaço de Trabalho diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_ru.properties b/core/src/main/resources/hudson/model/AbstractProject/main_ru.properties index 5a8424130e39..370f591656d8 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Workspace=\u0421\u0431\u043e\u0440\u043e\u0447\u043d\u0430\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f -Last\ Successful\ Artifacts=\u0410\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0445 \u0443\u0434\u0430\u0447\u043d\u044b\u0445 \u0441\u0431\u043e\u0440\u043e\u043a -Recent\ Changes=\u041d\u0435\u0434\u0430\u0432\u043d\u0438\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f +Workspace=Ð¡Ð±Ð¾Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ +Last\ Successful\ Artifacts=Ðртефакты поÑледних удачных Ñборок +Recent\ Changes=Ðедавние Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_sk.properties b/core/src/main/resources/hudson/model/AbstractProject/main_sk.properties index 0a6785cdd1f0..e2a0865c584a 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_sk.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_sk.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Last\ Successful\ Artifacts=Posledn\u00FD \u00FAspe\u0161n\u00FD artefakt -Recent\ Changes=Ned\u00E1vne zmeny -Workspace=Pracovn\u00FD priestor +Last\ Successful\ Artifacts=Posledný úspeÅ¡ný artefakt +Recent\ Changes=Nedávne zmeny +Workspace=Pracovný priestor diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_sl.properties b/core/src/main/resources/hudson/model/AbstractProject/main_sl.properties index 574f8b554543..4193e23c7702 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_sl.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_sl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Successful\ Artifacts=Zadnji uspe\u0161en izdelek +Last\ Successful\ Artifacts=Zadnji uspeÅ¡en izdelek Recent\ Changes=Zadnje spremembe Workspace=Delovno okolje diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_sr.properties b/core/src/main/resources/hudson/model/AbstractProject/main_sr.properties index 9ae2b613dc46..0778375bb505 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_sr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Recent\ Changes=\u041D\u0435\u0434\u0430\u0432\u043D\u0435 \u043F\u0440\u043E\u043C\u0435\u043D\u0435 -Workspace=\u0420\u0430\u0434\u043D\u0438 \u043F\u0440\u043E\u0441\u0442\u043E\u0440 -Last\ Successful\ Artifacts=\u041F\u043E\u0441\u043B\u0435\u0434\u045A\u0435 \u0443\u0441\u043F\u0435\u0448\u043D\u0438 Artifacts -Latest\ Console\ output=\u041F\u043E\u0441\u043B\u0435\u0434\u045A\u0438 \u0438\u0441\u0445\u043E\u0434 \u0438\u0437 \u043A\u043E\u043D\u0437\u043E\u043B\u0435 +Recent\ Changes=Ðедавне промене +Workspace=Радни проÑтор +Last\ Successful\ Artifacts=ПоÑледње уÑпешни Artifacts +Latest\ Console\ output=ПоÑледњи иÑход из конзоле diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_sv_SE.properties b/core/src/main/resources/hudson/model/AbstractProject/main_sv_SE.properties index d984f35711c4..0560f5248444 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_sv_SE.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_sv_SE.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Last\ Successful\ Artifacts=Senaste lyckade artefakter -Recent\ Changes=Senaste f\u00F6r\u00E4ndringar +Recent\ Changes=Senaste förändringar Workspace=Arbetsyta diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_tr.properties b/core/src/main/resources/hudson/model/AbstractProject/main_tr.properties index 7b8cee0e83a3..b1ecbaaba81e 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_tr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_tr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Workspace=\u00c7al\u0131\u015fma Alan\u0131 -Last\ Successful\ Artifacts=Son Ba\u015far\u0131l\u0131 Artefaktlar -Recent\ Changes=Son De\u011fi\u015fiklikler +Workspace=Çalışma Alanı +Last\ Successful\ Artifacts=Son BaÅŸarılı Artefaktlar +Recent\ Changes=Son DeÄŸiÅŸiklikler diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_uk.properties b/core/src/main/resources/hudson/model/AbstractProject/main_uk.properties index 4bf11538e4e3..291dcfd64d00 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_uk.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_uk.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Last\ Successful\ Artifacts=\u041E\u0441\u0442\u0430\u043D\u043D\u0456 \u0443\u0441\u043F\u0456\u0448\u043D\u0456 \u0437\u0431\u0456\u0440\u043A\u0438 -Recent\ Changes=\u041E\u0441\u0442\u0430\u043D\u043D\u0456 \u0437\u043C\u0456\u043D\u0438 -Workspace=\u0420\u043E\u0431\u043E\u0447\u0438\u0439 \u043A\u0430\u0442\u0430\u043B\u043E\u0433 +Last\ Successful\ Artifacts=ОÑтанні уÑпішні збірки +Recent\ Changes=ОÑтанні зміни +Workspace=Робочий каталог diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractProject/main_zh_TW.properties index 01d8920bb4f1..8ba7ee65cf33 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_zh_TW.properties @@ -21,6 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Workspace=\u5de5\u4f5c\u5340 -Recent\ Changes=\u6700\u8fd1\u8b8a\u66f4 -Last\ Successful\ Artifacts=\u6700\u65b0\u6210\u54c1 +Workspace=å·¥ä½œå€ +Recent\ Changes=最近變更 +Last\ Successful\ Artifacts=最新æˆå“ diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_bg.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_bg.properties index d5845c54d551..7c7c4e563466 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_bg.properties @@ -21,16 +21,16 @@ # THE SOFTWARE. Back\ to\ Dashboard=\ - \u041a\u044a\u043c \u043e\u0441\u043d\u043e\u0432\u043d\u0438\u044f \u0435\u043a\u0440\u0430\u043d + Към оÑÐ½Ð¾Ð²Ð½Ð¸Ñ ÐµÐºÑ€Ð°Ð½ Changes=\ - \u041f\u0440\u043e\u043c\u0450\u043d\u0438 + ПромÑни Status=\ - \u0421\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435 + СъÑтоÑние Wipe\ Out\ Workspace=\ - \u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u043d\u043e\u0442\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e + Изтриване на работното проÑтранÑтво Workspace=\ - \u0420\u0430\u0431\u043e\u0442\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e + Работно проÑтранÑтво wipe.out.confirm=\ - \u0421\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u0438\u0437\u0442\u0440\u0438\u0435\u0442\u0435 \u0440\u0430\u0431\u043e\u0442\u043d\u043e\u0442\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e? + Сигурни ли Ñте, че иÑкате да изтриете работното проÑтранÑтво? Up=\ - \u041d\u0430\u0433\u043e\u0440\u0435 + Ðагоре diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ca.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ca.properties index afc4fd99e0f1..a72785ceed51 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ca.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ca.properties @@ -25,4 +25,4 @@ Changes=Canvis Status=Estat Wipe\ Out\ Workspace=Neteja l''''''''espai de treball Workspace=Espai de treball -wipe.out.confirm=Est\u00e0s segur que vols netejar l''espai de treball? +wipe.out.confirm=Estàs segur que vols netejar l''espai de treball? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_cs.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_cs.properties index 443bedcc5e12..294a4f18839e 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_cs.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_cs.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Zp\u011bt na \u00favodn\u00ed stranu -Changes=Zm\u011bny +Back\ to\ Dashboard=ZpÄ›t na úvodní stranu +Changes=ZmÄ›ny Status=Stav -Wipe\ Out\ Workspace=Smazat pracovn\u00ed prostor -Workspace=Pracovn\u00ed prostor -wipe.out.confirm=Jste si jisti, \u017ee chcete vy\u010distit pracovn\u00ed prostor? +Wipe\ Out\ Workspace=Smazat pracovní prostor +Workspace=Pracovní prostor +wipe.out.confirm=Jste si jisti, že chcete vyÄistit pracovní prostor? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_da.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_da.properties index 2a2e546aa358..248f4717c936 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_da.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_da.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=\u00c6ndringer +Changes=Ændringer Back\ to\ Dashboard=Tilbage til oversigtssiden Status=Status -Workspace=Arbejdsomr\u00e5de -Wipe\ Out\ Workspace=Slet arbejdsomr\u00e5det -wipe.out.confirm=Er du sikker p\u00e5 at du vil slette arbejdsomr\u00e5det? +Workspace=ArbejdsomrÃ¥de +Wipe\ Out\ Workspace=Slet arbejdsomrÃ¥det +wipe.out.confirm=Er du sikker pÃ¥ at du vil slette arbejdsomrÃ¥det? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_de.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_de.properties index 553909c2686a..6e78913f0647 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_de.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_de.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Zur\u00fcck zur \u00dcbersicht -Up=Zur\u00fcck +Back\ to\ Dashboard=Zurück zur Ãœbersicht +Up=Zurück Status=Status -Changes=\u00c4nderungen +Changes=Änderungen Workspace=Arbeitsbereich -Wipe\ Out\ Workspace=Arbeitsbereich l\u00f6schen -wipe.out.confirm=Sind Sie sicher, dass Sie den Arbeitsbereich l\u00f6schen m\u00f6chten? +Wipe\ Out\ Workspace=Arbeitsbereich löschen +wipe.out.confirm=Sind Sie sicher, dass Sie den Arbeitsbereich löschen möchten? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_el.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_el.properties index 27c47c816a3b..823f62a7f484 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_el.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_el.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03c3\u03c4\u03bf Dashboard -Changes=\u0391\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 -Status=\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 -Wipe\ Out\ Workspace=\u039a\u03b1\u03b8\u03b1\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03a7\u03ce\u03c1\u03bf\u03c5 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 -Workspace=\u03a7\u03ce\u03c1\u03bf\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 +Back\ to\ Dashboard=ΕπιστÏοφή στο Dashboard +Changes=Αλλαγές +Status=Κατάσταση +Wipe\ Out\ Workspace=ΚαθαÏισμός ΧώÏου ΕÏγασίας +Workspace=ΧώÏος ΕÏγασίας diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_es.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_es.properties index 553f7b4d3902..bb878c1bd638 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_es.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_es.properties @@ -25,4 +25,4 @@ Status=Estado Actual Wipe\ Out\ Workspace=Limpiar el espacio de trabajo Workspace=Zona de Trabajo Back\ to\ Dashboard=Volver al Panel de Control -wipe.out.confirm=\u00bfEst\u00e1s seguro de que quieres limpiar el espacio de trabajo? +wipe.out.confirm=¿Estás seguro de que quieres limpiar el espacio de trabajo? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_et.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_et.properties index b88e1b5f7d04..3d720d7cf319 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_et.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_et.properties @@ -3,6 +3,6 @@ Back\ to\ Dashboard=Tagasi pealehele Changes=Muudatused Status=Staatus -Wipe\ Out\ Workspace=Tee t\u00f6\u00f6ruum t\u00fchjaks -Workspace=T\u00f6\u00f6ruum -wipe.out.confirm=Oled kindel et soovid t\u00f6\u00f6ala kustutada? +Wipe\ Out\ Workspace=Tee tööruum tühjaks +Workspace=Tööruum +wipe.out.confirm=Oled kindel et soovid tööala kustutada? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fi.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fi.properties index 1e0e1bd7ab8f..69a1ece78b7c 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fi.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fi.properties @@ -23,6 +23,6 @@ Back\ to\ Dashboard=Takaisin kojetauluun Changes=Muutokset Status=Tila -Wipe\ Out\ Workspace=Tyhjenn\u00e4 ty\u00f6tila -Workspace=Ty\u00f6hakemisto -wipe.out.confirm=Oletko varma t\u00e4m\u00e4n ty\u00f6p\u00f6yd\u00e4n poistamisesta? +Wipe\ Out\ Workspace=Tyhjennä työtila +Workspace=Työhakemisto +wipe.out.confirm=Oletko varma tämän työpöydän poistamisesta? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fr.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fr.properties index 27af159a3b9d..fd9ad8ec72ef 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fr.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. Back\ to\ Dashboard=Retour au tableau de bord -Status=\u00c9tat +Status=État Changes=Modifications -Workspace=R\u00e9pertoire de travail +Workspace=Répertoire de travail Wipe\ Out\ Workspace=Effacer l''espace de travail -wipe.out.confirm=Voulez-vous vraiment effacer le r\u00e9pertoire de travail\u00a0? +wipe.out.confirm=Voulez-vous vraiment effacer le répertoire de travail ? Rename=Renommer diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_he.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_he.properties index 6ae926b69763..689de5ed8b15 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_he.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_he.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u05d7\u05d6\u05e8\u05d4 \u05dc\u05e8\u05d0\u05e9\u05d9 -Changes=\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd -Status=\u05de\u05e6\u05d1 -Wipe\ Out\ Workspace=\u05de\u05d7\u05e7 \u05d0\u05ea \u05e9\u05d8\u05d7 \u05d4\u05e2\u05d1\u05d5\u05d3\u05d4 -Workspace=\u05e9\u05d8\u05d7 \u05e2\u05d1\u05d5\u05d3\u05d4 -wipe.out.confirm=\u05d4\u05d0\u05dd \u05d0\u05ea\u05d4 \u05d1\u05d8\u05d5\u05d7 \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05de\u05e9\u05d8\u05d7 \u05d4\u05e2\u05d1\u05d5\u05d3\u05d4? +Back\ to\ Dashboard=חזרה לר×שי +Changes=×©×™× ×•×™×™× +Status=מצב +Wipe\ Out\ Workspace=מחק ×ת שטח העבודה +Workspace=שטח עבודה +wipe.out.confirm=×”×× ×תה בטוח שברצונך למחוק ×ת משטח העבודה? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_hu.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_hu.properties index c79140e90809..9a220720cf6a 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_hu.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_hu.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Vissza a ir\u00e1ny\u00edt\u00f3pultra -Changes=V\u00e1ltoz\u00e1sok -Status=St\u00e1tusz -Wipe\ Out\ Workspace=Munkater\u00fclet kipucol\u00e1sa -Workspace=Munkater\u00fclet +Back\ to\ Dashboard=Vissza a irányítópultra +Changes=Változások +Status=Státusz +Wipe\ Out\ Workspace=Munkaterület kipucolása +Workspace=Munkaterület -wipe.out.confirm=Biztosan t\u00f6r\u00f6lni akarja a munkater\u00fcletet? +wipe.out.confirm=Biztosan törölni akarja a munkaterületet? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_it.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_it.properties index d19b56ee5c7c..020bd835f500 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_it.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ja.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ja.properties index 2c71c780aaa5..1fd50994b3f2 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ja.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ja.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u3078\u623b\u308b -Status=\u72b6\u614b -Changes=\u5909\u66f4\u5c65\u6b74 -Workspace=\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9 -Wipe\ Out\ Workspace=\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9\u306e\u30af\u30ea\u30a2 -wipe.out.confirm=\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9\u3092\u30af\u30ea\u30a2\u3057\u3066\u3082\u3088\u308d\u3057\u3044\u3067\u3059\u304b? -Up=\u4e0a\u3078 +Back\ to\ Dashboard=ダッシュボードã¸æˆ»ã‚‹ +Status=状態 +Changes=変更履歴 +Workspace=ワークスペース +Wipe\ Out\ Workspace=ワークスペースã®ã‚¯ãƒªã‚¢ +wipe.out.confirm=ワークスペースをクリアã—ã¦ã‚‚よã‚ã—ã„ã§ã™ã‹? +Up=上㸠diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ko.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ko.properties index 12755400f293..7a2789b7b401 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ko.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ko.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\ub300\uc2dc\ubcf4\ub4dc\ub85c \ub3cc\uc544\uac00\uae30 -Changes=\ubcc0\uacbd\uc0ac\ud56d -Status=\uc0c1\ud0dc -Wipe\ Out\ Workspace=\uc791\uc5c5\uacf5\uac04 \ucd08\uae30\ud654 -Workspace=\uc791\uc5c5\uacf5\uac04 -wipe.out.confirm=\uc791\uc5c5\uacf5\uac04\uc744 \ucd08\uae30\ud654\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +Back\ to\ Dashboard=대시보드로 ëŒì•„가기 +Changes=변경사항 +Status=ìƒíƒœ +Wipe\ Out\ Workspace=작업공간 초기화 +Workspace=작업공간 +wipe.out.confirm=ìž‘ì—…ê³µê°„ì„ ì´ˆê¸°í™”í•˜ì‹œê² ìŠµë‹ˆê¹Œ? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lt.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lt.properties index ac78adfaab52..29111bedadc4 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lt.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lt.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Gr\u012f\u017eti \u012f Prietais\u0173 skydel\u012f +Back\ to\ Dashboard=Grįžti į Prietaisų skydelį Changes=Pakeitimai -Status=B\u016bsena -Wipe\ Out\ Workspace=I\u0161valyti vis\u0105 darbalauk\u012f +Status=BÅ«sena +Wipe\ Out\ Workspace=IÅ¡valyti visÄ… darbalaukį Workspace=Darbalaukis -wipe.out.confirm=Ar j\u016bs tikri, kad norite i\u0161trinti visus duomenis darbalaukyje? +wipe.out.confirm=Ar jÅ«s tikri, kad norite iÅ¡trinti visus duomenis darbalaukyje? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lv.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lv.properties index 4feda737a621..c56fa07dd59a 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lv.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lv.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Atpaka\u013c uz m\u0113rinstrumentu paneli -Changes=Izmai\u0146as +Back\ to\ Dashboard=Atpakaļ uz mÄ“rinstrumentu paneli +Changes=Izmaiņas Status=Statuss -Wipe\ Out\ Workspace=Izt\u012br\u012bt darbavirsmu +Wipe\ Out\ Workspace=IztÄ«rÄ«t darbavirsmu Workspace=Darbavirsma -wipe.out.confirm=Vai esi p\u0101rliecin\u0101ts, ka v\u0113lies izt\u012br\u012bt darba mapi? +wipe.out.confirm=Vai esi pÄrliecinÄts, ka vÄ“lies iztÄ«rÄ«t darba mapi? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_nb_NO.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_nb_NO.properties index b15503ed266b..d2af5074844c 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_nb_NO.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_nb_NO.properties @@ -23,6 +23,6 @@ Back\ to\ Dashboard=Tilbake til oversikt Changes=Endringer Status=Status -Wipe\ Out\ Workspace=Nullstill arbeidsomr\u00e5de -Workspace=Arbeidsomr\u00e5de -wipe.out.confirm=Er du sikker p\u00e5 at du vil slette filene i arbeids omr\u00e5de +Wipe\ Out\ Workspace=Nullstill arbeidsomrÃ¥de +Workspace=ArbeidsomrÃ¥de +wipe.out.confirm=Er du sikker pÃ¥ at du vil slette filene i arbeids omrÃ¥de diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pl.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pl.properties index 9e14bfa982b6..4c1f7dc1b103 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pl.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pl.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Powr\u00F3t do tablicy +Back\ to\ Dashboard=Powrót do tablicy Changes=Rejestr zmian -Wipe\ Out\ Workspace=Wyczy\u015B\u0107 przestrze\u0144 robocz\u0105 -Workspace=Przestrze\u0144 robocza -wipe.out.confirm=Czy na pewno wyczy\u015Bci\u0107 przestrze\u0144 robocz\u0105? +Wipe\ Out\ Workspace=Wyczyść przestrzeÅ„ roboczÄ… +Workspace=PrzestrzeÅ„ robocza +wipe.out.confirm=Czy na pewno wyczyÅ›cić przestrzeÅ„ roboczÄ…? Status=Status -Up=Powr\u00F3t +Up=Powrót diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pt_BR.properties index e82bf688b814..bd80e45b81ff 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pt_BR.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Back\ to\ Dashboard=Voltar para o Dashboard -Status=Situa\u00e7\u00e3o -Changes=Altera\u00e7\u00f5es +Status=Situação +Changes=Alterações Wipe\ Out\ Workspace=Limpar workspace wipe.out.confirm=Tem certeza que quer remover o workspace? Workspace=Workspace diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pt_PT.properties index 2aa9f3f43a3a..ebeaff3f20c4 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pt_PT.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pt_PT.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Back\ to\ Dashboard=Voltar para o Dashboard -Changes=Altera\u00e7\u00f5es +Changes=Alterações Status=Estado -Wipe\ Out\ Workspace=Limpe para fora o espa\u00e7o de trabalho atual -wipe.out.confirm=Tem certeza acabando com o espa\u00e7o de trabalho? +Wipe\ Out\ Workspace=Limpe para fora o espaço de trabalho atual +wipe.out.confirm=Tem certeza acabando com o espaço de trabalho? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ro.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ro.properties index a35313f3140f..a61141401afc 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ro.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ro.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Back\ to\ Dashboard=Inapoi la Dashboard -Changes=Schimb\u0103ri +Changes=Schimbări Status=Stare -Wipe\ Out\ Workspace=Cur\u0103\u021b\u0103 spa\u021biul de lucru -Workspace=Spa\u021biul de lucru -wipe.out.confirm=E\u0219ti sigur c\u0103 vrei s\u0103 cure\u021bi spa\u021biul de lucru? +Wipe\ Out\ Workspace=Curăță spaÈ›iul de lucru +Workspace=SpaÈ›iul de lucru +wipe.out.confirm=EÈ™ti sigur că vrei să cureÈ›i spaÈ›iul de lucru? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ru.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ru.properties index cab30ebfd70e..5d72a6b99867 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ru.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u041d\u0430 \u0433\u043b\u0430\u0432\u043d\u0443\u044e -Status=\u0421\u0442\u0430\u0442\u0443\u0441 -Changes=\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f -Wipe\ Out\ Workspace=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0432\u0441\u0435 \u0432 \u0441\u0431\u043e\u0440\u043e\u0447\u043d\u043e\u0439 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u0438 -Workspace=\u0421\u0431\u043e\u0440\u043e\u0447\u043d\u0430\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f -wipe.out.confirm=\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435, \u0447\u0442\u043e \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u0444\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u0438 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0432\u0441\u0435 \u0444\u0430\u0439\u043b\u044b \u0438\u0437 \u0440\u0430\u0431\u043e\u0447\u0435\u0433\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430? +Back\ to\ Dashboard=Ðа главную +Status=Ð¡Ñ‚Ð°Ñ‚ÑƒÑ +Changes=Ð˜Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ +Wipe\ Out\ Workspace=Удалить вÑе в Ñборочной директории +Workspace=Ð¡Ð±Ð¾Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ +wipe.out.confirm=Подтвердите, что вы хотите физичеÑки удалить вÑе файлы из рабочего проÑтранÑтва? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sk.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sk.properties index a85399d897f8..2aa13a066718 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sk.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sk.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Sp\u00e4\u0165 na Dashboard +Back\ to\ Dashboard=Späť na Dashboard Changes=Zmeny -Status=S\u00fahrn -Wipe\ Out\ Workspace=Vy\u010disti\u0165 pracovn\u00fd priestor -Workspace=Pracovn\u00fd priestor -wipe.out.confirm=Si si ist\u00fd vymazan\u00edm pracovn\u00e9ho priestoru? +Status=Súhrn +Wipe\ Out\ Workspace=VyÄistiÅ¥ pracovný priestor +Workspace=Pracovný priestor +wipe.out.confirm=Si si istý vymazaním pracovného priestoru? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sl.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sl.properties index 52226789c128..1069a48603bf 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sl.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sl.properties @@ -23,6 +23,6 @@ Back\ to\ Dashboard=Nazaj na Pregledni zapis Changes=Spremembe Status=Stanje -Wipe\ Out\ Workspace=Bri\u0161i delovno okolje +Wipe\ Out\ Workspace=BriÅ¡i delovno okolje Workspace=Delovno okolje -wipe.out.confirm=Ali ste prepri\u010dani, da bi izbrisal delovno okolje? +wipe.out.confirm=Ali ste prepriÄani, da bi izbrisal delovno okolje? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sr.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sr.properties index ef47d9183d63..1dc5d5715864 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sr.properties @@ -1,10 +1,10 @@ # This file is under the MIT License by authors -Back\ to\ Dashboard=\u041D\u0430\u0437\u0430\u0434 \u043D\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043D\u0443 \u043F\u0430\u043D\u0435\u043B\u0443 -Changes=\u041F\u0440\u043E\u043C\u0435\u043D\u0435 -Wipe\ Out\ Workspace=\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u0440\u0430\u0434\u043D\u0438 \u043F\u0440\u043E\u0441\u0442\u043E\u0440 -wipe.out.confirm=\u0414\u0430 \u043B\u0438 \u0441\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043D\u0438 \u0434\u0430 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u043F\u043E\u043D\u0438\u0448\u0442\u0438\u0442\u0435 \u0440\u0430\u0434\u043D\u0438 \u043F\u0440\u043E\u0441\u0442\u043E\u0440? -Up=\u041D\u0430\u0433\u043E\u0440\u0435 -Status=\u0421\u0442\u0430\u045A\u0435 -Workspace=\u0420\u0430\u0434\u043D\u0438 \u043F\u0440\u043E\u0441\u0442\u043E\u0440 -View\ Configuration=\u041F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458 \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0435 +Back\ to\ Dashboard=Ðазад на контролну панелу +Changes=Промене +Wipe\ Out\ Workspace=Избриши радни проÑтор +wipe.out.confirm=Да ли Ñте Ñигурни да желите да поништите радни проÑтор? +Up=Ðагоре +Status=Стање +Workspace=Радни проÑтор +View\ Configuration=Прегледај поÑтавке diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sv_SE.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sv_SE.properties index 2eb380d534cf..499a7719fa7a 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sv_SE.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sv_SE.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Tillbaka till \u00d6versikten -Changes=F\u00f6r\u00e4ndringar +Back\ to\ Dashboard=Tillbaka till Översikten +Changes=Förändringar Status=Status Wipe\ Out\ Workspace=Ta bort arbetsyta Workspace=Arbetsyta -wipe.out.confirm=\u00c4r du s\u00e4ker p\u00e5 att du vill rensa arbetsytan? +wipe.out.confirm=Är du säker pÃ¥ att du vill rensa arbetsytan? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_tr.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_tr.properties index e093cae2c284..16e1eb0eb3c6 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_tr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_tr.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Kontrol Merkezi''ne D\u00f6n +Back\ to\ Dashboard=Kontrol Merkezi''ne Dön Status=Durum -Changes=De\u011fi\u015fiklikler -Wipe\ Out\ Workspace=\u00c7al\u0131\u015fma alan\u0131n\u0131 sil -Workspace=\u00c7al\u0131\u015fma Alan\u0131 -wipe.out.confirm=T\u00fcm alan\u0131 silmek istedi\u011finize emin misiniz? +Changes=DeÄŸiÅŸiklikler +Wipe\ Out\ Workspace=Çalışma alanını sil +Workspace=Çalışma Alanı +wipe.out.confirm=Tüm alanı silmek istediÄŸinize emin misiniz? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_uk.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_uk.properties index ab36cd129af5..e005db12adcb 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_uk.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_uk.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u041d\u0430\u0437\u0430\u0434 \u0434\u043e \u041f\u0430\u043d\u0435\u043b\u0456 -Changes=\u0417\u043c\u0456\u043d\u0438 -Status=\u0421\u0442\u0430\u0442\u0443\u0441 -Wipe\ Out\ Workspace=\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u0440\u043e\u0431\u043e\u0447\u0438\u0439 \u043f\u0440\u043e\u0441\u0442\u0456\u0440 -Workspace=\u0420\u043e\u0431\u043e\u0447\u0438\u0439 \u041f\u0440\u043e\u0441\u0442\u0456\u0440 -wipe.out.confirm=\u0412\u0438 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u0456, \u0449\u043e \u0445\u043e\u0447\u0435\u0442\u0435 \u0432\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0440\u043e\u0431\u043e\u0447\u0456 \u0444\u0430\u0439\u043b\u0438? +Back\ to\ Dashboard=Ðазад до Панелі +Changes=Зміни +Status=Ð¡Ñ‚Ð°Ñ‚ÑƒÑ +Wipe\ Out\ Workspace=ОчиÑтити робочий проÑÑ‚Ñ–Ñ€ +Workspace=Робочий ПроÑÑ‚Ñ–Ñ€ +wipe.out.confirm=Ви впевнені, що хочете видалити робочі файли? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_zh_TW.properties index 02f094c04949..526e96f86c7e 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_zh_TW.properties @@ -21,10 +21,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status=\u72c0\u614b -Changes=\u8b8a\u66f4 -Workspace=\u5de5\u4f5c\u76ee\u9304 -Wipe\ Out\ Workspace=\u6e05\u9664\u5de5\u4f5c\u76ee\u9304 +Status=狀態 +Changes=變更 +Workspace=工作目錄 +Wipe\ Out\ Workspace=清除工作目錄 -wipe.out.confirm=\u78ba\u5b9a\u8981\u6e05\u9664\u5de5\u4f5c\u5340? -Back\ to\ Dashboard=\u8fd4\u56de\u8cc7\u8a0a\u4e3b\u9801 +wipe.out.confirm=確定è¦æ¸…除工作å€? +Back\ to\ Dashboard=è¿”å›žè³‡è¨Šä¸»é  diff --git a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_bg.properties b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_bg.properties index 0b71e014b2ed..d243077238cd 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. The\ SCM\ for\ this\ project\ has\ blocked\ this\ attempt\ to\ wipe\ out\ the\ project''s\ workspace.=\ - \u0421\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430 \u0437\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b \u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u0438 \u0438\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430\ - \u0440\u0430\u0431\u043e\u0442\u043d\u043e\u0442\u043e \u043c\u0443 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e. + СиÑтемата за контрол на верÑиите на проекта предотврати изтриването на\ + работното му проÑтранÑтво. Error\:\ Wipe\ Out\ Workspace\ blocked\ by\ SCM=\ - \u0413\u0440\u0435\u0448\u043a\u0430: \u0438\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u043d\u043e\u0442\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u0435 \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u0435\u043d\u043e \u043e\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430 \u0437\u0430\ - \u043a\u043e\u043d\u0442\u0440\u043e\u043b \u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435 + Грешка: изтриването на работното проÑтранÑтво е предотвратено от ÑиÑтемата за\ + контрол на верÑиите diff --git a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_da.properties b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_da.properties index 052ddd6f4bca..d2b6c4bdf119 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_da.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_da.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Error\:\ Wipe\ Out\ Workspace\ blocked\ by\ SCM=Fejl: Arbejdsomr\u00e5desletning blokeret af kildekodestyring (SCM) +Error\:\ Wipe\ Out\ Workspace\ blocked\ by\ SCM=Fejl: ArbejdsomrÃ¥desletning blokeret af kildekodestyring (SCM) The\ SCM\ for\ this\ project\ has\ blocked\ this\ attempt\ to\ wipe\ out\ the\ project''s\ workspace.=\ -Kildekodestyringen (SCM) for dette projekt har blokeret dette fors\u00f8g p\u00e5 at slette projektets arbejdsomr\u00e5de. +Kildekodestyringen (SCM) for dette projekt har blokeret dette forsøg pÃ¥ at slette projektets arbejdsomrÃ¥de. diff --git a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_de.properties b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_de.properties index 928764782132..435991cde968 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_de.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_de.properties @@ -1,2 +1,2 @@ -Error\:\ Wipe\ Out\ Workspace\ blocked\ by\ SCM=Fehler: L\u00F6schen des Arbeitsbereichs blockiert durch SCM -The\ SCM\ for\ this\ project\ has\ blocked\ this\ attempt\ to\ wipe\ out\ the\ project''s\ workspace.=Das f\u00FCr dieses Projekt konfigurierte SCM hat das Entfernen des Arbeitsbereits verhindert. +Error\:\ Wipe\ Out\ Workspace\ blocked\ by\ SCM=Fehler: Löschen des Arbeitsbereichs blockiert durch SCM +The\ SCM\ for\ this\ project\ has\ blocked\ this\ attempt\ to\ wipe\ out\ the\ project''s\ workspace.=Das für dieses Projekt konfigurierte SCM hat das Entfernen des Arbeitsbereits verhindert. diff --git a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_es.properties b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_es.properties index 8f366236cfb6..66a4a8862d34 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_es.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_es.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Error\:\ Wipe\ Out\ Workspace\ blocked\ by\ SCM=Error: La limpieza del espacio de trabajo está bloqueada por el software de gestion del repositorio (SCM) +Error\:\ Wipe\ Out\ Workspace\ blocked\ by\ SCM=Error: La limpieza del espacio de trabajo está bloqueada por el software de gestion del repositorio (SCM) The\ SCM\ for\ this\ project\ has\ blocked\ this\ attempt\ to\ wipe\ out\ the\ project''s\ workspace.= Algun comando de gestion del repositorio (SCM) ha bloqueado el intento de limpieza dle espacio de trabajo. diff --git a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_it.properties b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_it.properties index c298babcf2a6..f08eb5caa192 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_it.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_ja.properties b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_ja.properties index 95beb4d8d580..2389a3916248 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_ja.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Error\:\ Wipe\ Out\ Workspace\ blocked\ by\ SCM=\u30A8\u30E9\u30FC: SCM\u306B\u30D6\u30ED\u30C3\u30AF\u3055\u308C\u305F\u305F\u3081\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u3092\u30AF\u30EA\u30A2\u3067\u304D\u307E\u305B\u3093\u3002 +Error\:\ Wipe\ Out\ Workspace\ blocked\ by\ SCM=エラー: SCMã«ãƒ–ロックã•ã‚ŒãŸãŸã‚ワークスペースをクリアã§ãã¾ã›ã‚“。 The\ SCM\ for\ this\ project\ has\ blocked\ this\ attempt\ to\ wipe\ out\ the\ project''s\ workspace.=\ - \u3053\u306E\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u306ESCM\u304C\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u306E\u30AF\u30EA\u30A2\u3092\u30D6\u30ED\u30C3\u30AF\u3057\u307E\u3057\u305F\u3002 + ã“ã®ãƒ—ロジェクトã®SCMãŒãƒ¯ãƒ¼ã‚¯ã‚¹ãƒšãƒ¼ã‚¹ã®ã‚¯ãƒªã‚¢ã‚’ブロックã—ã¾ã—ãŸã€‚ diff --git a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_pt_BR.properties index 8f4b8e6ee6fd..0ce89016badf 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Error\:\ Wipe\ Out\ Workspace\ blocked\ by\ SCM=workspace bloqueado por SCM -The\ SCM\ for\ this\ project\ has\ blocked\ this\ attempt\ to\ wipe\ out\ the\ project''s\ workspace.=SCM bloqueou a exclus\u00e3o desse workspace +The\ SCM\ for\ this\ project\ has\ blocked\ this\ attempt\ to\ wipe\ out\ the\ project''s\ workspace.=SCM bloqueou a exclusão desse workspace diff --git a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_sr.properties b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_sr.properties index 239c6b464bdf..ade6aace5251 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_sr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Error\:\ Wipe\ Out\ Workspace\ blocked\ by\ SCM=\u0413\u0440\u0435\u0448\u043A\u0430: \u0431\u0440\u0438\u0441\u0430\u045A\u0435 \u0440\u0430\u0434\u043D\u043E\u0433 \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0430 \u0458\u0435 \u0441\u043F\u0440\u0435\u0447\u0438\u0458\u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0430 \u0438\u0437\u0432\u043E\u0440\u043D\u043E\u0433 \u043A\u043E\u0434\u0430 -The\ SCM\ for\ this\ project\ has\ blocked\ this\ attempt\ to\ wipe\ out\ the\ project's\ workspace.=\u0421\u0438\u0441\u0442\u0435\u043C \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0430 \u0438\u0437\u0432\u043E\u0440\u043D\u043E\u0433 \u043A\u043E\u0434\u0430 \u0458\u0435 \u0441\u043F\u0440\u0435\u0447\u0438\u0458\u043E \u0431\u0440\u0438\u0441\u0430\u045A\u0435 \u0440\u0430\u0434\u043D\u043E\u0433 \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0430. +Error\:\ Wipe\ Out\ Workspace\ blocked\ by\ SCM=Грешка: бриÑање радног проÑтора је Ñпречијо ÑиÑтема управљања изворног кода +The\ SCM\ for\ this\ project\ has\ blocked\ this\ attempt\ to\ wipe\ out\ the\ project's\ workspace.=СиÑтем управљања изворног кода је Ñпречијо бриÑање радног проÑтора. diff --git a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_zh_TW.properties index 608545713421..f78629b72572 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Error\:\ Wipe\ Out\ Workspace\ blocked\ by\ SCM=\u932f\u8aa4: SCM \u5c0e\u81f4\u7121\u6cd5\u6e05\u9664\u5de5\u4f5c\u5340 +Error\:\ Wipe\ Out\ Workspace\ blocked\ by\ SCM=錯誤: SCM å°Žè‡´ç„¡æ³•æ¸…é™¤å·¥ä½œå€ The\ SCM\ for\ this\ project\ has\ blocked\ this\ attempt\ to\ wipe\ out\ the\ project's\ workspace.=\ - \u5c08\u6848\u7684\u7a0b\u5f0f\u78bc\u7ba1\u7406 (SCM) \u6a5f\u5236\u5c0e\u81f4\u76ee\u524d\u7121\u6cd5\u6e05\u9664\u5c08\u6848\u5de5\u4f5c\u5340\u3002 + 專案的程å¼ç¢¼ç®¡ç† (SCM) 機制導致目å‰ç„¡æ³•æ¸…除專案工作å€ã€‚ diff --git a/core/src/main/resources/hudson/model/AllView/newViewDetail_bg.properties b/core/src/main/resources/hudson/model/AllView/newViewDetail_bg.properties index 8dc4aeb4ba8e..3161cdf4bdc6 100644 --- a/core/src/main/resources/hudson/model/AllView/newViewDetail_bg.properties +++ b/core/src/main/resources/hudson/model/AllView/newViewDetail_bg.properties @@ -22,4 +22,4 @@ # This view shows all the jobs on Jenkins. blurb=\ - \u0422\u043e\u0432\u0430 \u0435 \u0438\u0437\u0433\u043b\u0435\u0434 \u0441 \u0432\u0441\u0438\u0447\u043a\u0438 \u0437\u0430\u0434\u0430\u0447\u0438 \u043d\u0430 Jenkins. + Това е изглед Ñ Ð²Ñички задачи на Jenkins. diff --git a/core/src/main/resources/hudson/model/AllView/newViewDetail_it.properties b/core/src/main/resources/hudson/model/AllView/newViewDetail_it.properties index 46ac2b8081f9..87077463b0ea 100644 --- a/core/src/main/resources/hudson/model/AllView/newViewDetail_it.properties +++ b/core/src/main/resources/hudson/model/AllView/newViewDetail_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/AllView/newViewDetail_ja.properties b/core/src/main/resources/hudson/model/AllView/newViewDetail_ja.properties index 1bce5b7f36e6..fbe12665507b 100644 --- a/core/src/main/resources/hudson/model/AllView/newViewDetail_ja.properties +++ b/core/src/main/resources/hudson/model/AllView/newViewDetail_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\u3059\u3079\u3066\u306E\u30B8\u30E7\u30D6\u3092\u8868\u793A\u3059\u308B\u30D3\u30E5\u30FC\u3067\u3059\u3002 +blurb=ã™ã¹ã¦ã®ã‚¸ãƒ§ãƒ–を表示ã™ã‚‹ãƒ“ューã§ã™ã€‚ diff --git a/core/src/main/resources/hudson/model/AllView/newViewDetail_lt.properties b/core/src/main/resources/hudson/model/AllView/newViewDetail_lt.properties index 3080ff7a0ba6..0c7cd4934fd9 100644 --- a/core/src/main/resources/hudson/model/AllView/newViewDetail_lt.properties +++ b/core/src/main/resources/hudson/model/AllView/newViewDetail_lt.properties @@ -1 +1 @@ -blurb=\u0160is rodinys rodo visus Jenkinso darbus. +blurb=Å is rodinys rodo visus Jenkinso darbus. diff --git a/core/src/main/resources/hudson/model/AllView/newViewDetail_pt_BR.properties b/core/src/main/resources/hudson/model/AllView/newViewDetail_pt_BR.properties index 7da28bc9f064..ce0ed2c0000c 100644 --- a/core/src/main/resources/hudson/model/AllView/newViewDetail_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AllView/newViewDetail_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Essa vis\u00E3o mostra todas as tarefas do Jenkins +blurb=Essa visão mostra todas as tarefas do Jenkins diff --git a/core/src/main/resources/hudson/model/AllView/newViewDetail_ru.properties b/core/src/main/resources/hudson/model/AllView/newViewDetail_ru.properties index d2ad07217f67..42ffa3d24420 100644 --- a/core/src/main/resources/hudson/model/AllView/newViewDetail_ru.properties +++ b/core/src/main/resources/hudson/model/AllView/newViewDetail_ru.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -blurb=\u042D\u0442\u043E\u0442 \u0432\u0438\u0434 \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0430\u0435\u0442 \u0432\u0441\u0435 \u0437\u0430\u0434\u0430\u0447\u0438 \u0434\u0430\u043D\u043D\u043E\u0433\u043E Jenkins. +blurb=Этот вид отображает вÑе задачи данного Jenkins. diff --git a/core/src/main/resources/hudson/model/AllView/newViewDetail_sr.properties b/core/src/main/resources/hudson/model/AllView/newViewDetail_sr.properties index 6c827494b85e..fddfe3c7ba3f 100644 --- a/core/src/main/resources/hudson/model/AllView/newViewDetail_sr.properties +++ b/core/src/main/resources/hudson/model/AllView/newViewDetail_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -blurb=\u041E\u0432\u0430\u0458 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 \u043F\u0440\u0438\u043A\u0430\u0436\u0435 \u0441\u0432\u0435 \u0437\u0430\u0434\u0430\u0442\u043A\u0435 \u043D\u0430 Jenkins. +blurb=Овај преглед прикаже Ñве задатке на Jenkins. diff --git a/core/src/main/resources/hudson/model/AllView/newViewDetail_zh_TW.properties b/core/src/main/resources/hudson/model/AllView/newViewDetail_zh_TW.properties index db4e229f6650..f7a6e1c45c23 100644 --- a/core/src/main/resources/hudson/model/AllView/newViewDetail_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AllView/newViewDetail_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\u986f\u793a\u6240\u6709 Jenkins \u4f5c\u696d\u7684\u8996\u666f\u3002 +blurb=顯示所有 Jenkins 作業的視景。 diff --git a/core/src/main/resources/hudson/model/AllView/noJob_bg.properties b/core/src/main/resources/hudson/model/AllView/noJob_bg.properties index d0e7adb550fd..4986ca028b52 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_bg.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Welcome\ to\ Jenkins!=\ - \u0414\u043e\u0431\u0440\u0435 \u0434\u043e\u0448\u043b\u0438 \u0432 Jenkins! + Добре дошли в Jenkins! diff --git a/core/src/main/resources/hudson/model/AllView/noJob_cs.properties b/core/src/main/resources/hudson/model/AllView/noJob_cs.properties index 0957a1ce970d..15a41eceaafc 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_cs.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Welcome\ to\ Jenkins!=V\u00EDtejte v Jenkins! +Welcome\ to\ Jenkins!=Vítejte v Jenkins! diff --git a/core/src/main/resources/hudson/model/AllView/noJob_el.properties b/core/src/main/resources/hudson/model/AllView/noJob_el.properties index 514531bd3ec7..a41c8c212001 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_el.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_el.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Welcome\ to\ Jenkins!=O Jenkins \u03C3\u03B5 \u03BA\u03B1\u03BB\u03C9\u03C3\u03BF\u03C1\u03AF\u03B6\u03B5\u03B9. +Welcome\ to\ Jenkins!=O Jenkins σε καλωσοÏίζει. diff --git a/core/src/main/resources/hudson/model/AllView/noJob_es.properties b/core/src/main/resources/hudson/model/AllView/noJob_es.properties index 79abf56b4fa1..3e230b7129a4 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_es.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Welcome\ to\ Jenkins!=\u00a1Bienvenido a Jenkins! +Welcome\ to\ Jenkins!=¡Bienvenido a Jenkins! diff --git a/core/src/main/resources/hudson/model/AllView/noJob_fr.properties b/core/src/main/resources/hudson/model/AllView/noJob_fr.properties index df6de9c75171..32d9fa71c5bf 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_fr.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_fr.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Welcome\ to\ Jenkins\!=Bienvenue sur Jenkins ! -noJobDescription=Vos jobs Jenkins seront affich\u00e9s sur cette page. Pour commencer, vous pouvez mettre en place un build distribu\u00e9 ou commencer \u00e0 cr\u00e9er un projet. -startBuilding=Commencer \u00e0 cr\u00e9er votre projet -createJob=Cr\u00e9er un job -setUpDistributedBuilds=Configurer un build distribu\u00e9 +noJobDescription=Vos jobs Jenkins seront affichés sur cette page. Pour commencer, vous pouvez mettre en place un build distribué ou commencer à créer un projet. +startBuilding=Commencer à créer votre projet +createJob=Créer un job +setUpDistributedBuilds=Configurer un build distribué setUpAgent=Mettre en place un agent setUpCloud=Configurer un cloud -learnMoreDistributedBuilds=En apprendre plus sur les builds distribu\u00e9s +learnMoreDistributedBuilds=En apprendre plus sur les builds distribués diff --git a/core/src/main/resources/hudson/model/AllView/noJob_he.properties b/core/src/main/resources/hudson/model/AllView/noJob_he.properties index 0d224d270303..d52a070bb068 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_he.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Welcome\ to\ Jenkins!=\u05D1\u05E8\u05D5\u05DA \u05D4\u05D1\u05D0 \u05DC Jenkins! +Welcome\ to\ Jenkins!=ברוך ×”×‘× ×œ Jenkins! diff --git a/core/src/main/resources/hudson/model/AllView/noJob_hu.properties b/core/src/main/resources/hudson/model/AllView/noJob_hu.properties index 415fcd73356c..6212d8a48e89 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_hu.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Welcome\ to\ Jenkins!=\u00DCdv\u00F6zli a Jenkins! +Welcome\ to\ Jenkins!=Ãœdvözli a Jenkins! diff --git a/core/src/main/resources/hudson/model/AllView/noJob_ja.properties b/core/src/main/resources/hudson/model/AllView/noJob_ja.properties index f4467475add8..5bbdbc61bad0 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_ja.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Welcome\ to\ Jenkins!=Jenkins\u3078\u3088\u3046\u3053\u305d\uff01 +Welcome\ to\ Jenkins!=Jenkinsã¸ã‚ˆã†ã“ãï¼ diff --git a/core/src/main/resources/hudson/model/AllView/noJob_ko.properties b/core/src/main/resources/hudson/model/AllView/noJob_ko.properties index baf43e096784..eb00551b1ca1 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_ko.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Welcome\ to\ Jenkins\!=Jenkins\uC5D0 \uC624\uC2E0 \uAC83\uC744 \uD658\uC601\uD569\uB2C8\uB2E4. +Welcome\ to\ Jenkins\!=Jenkinsì— ì˜¤ì‹  ê²ƒì„ í™˜ì˜í•©ë‹ˆë‹¤. diff --git a/core/src/main/resources/hudson/model/AllView/noJob_ru.properties b/core/src/main/resources/hudson/model/AllView/noJob_ru.properties index 3906caef680b..a7deb3a46df1 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_ru.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Welcome\ to\ Jenkins!=\u0414\u043e\u0431\u0440\u043e \u043f\u043e\u0436\u0430\u043b\u043e\u0432\u0430\u0442\u044c \u0432 Jenkins! +Welcome\ to\ Jenkins!=Добро пожаловать в Jenkins! diff --git a/core/src/main/resources/hudson/model/AllView/noJob_sr.properties b/core/src/main/resources/hudson/model/AllView/noJob_sr.properties index 7791089d4618..69a19d828858 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_sr.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Welcome\ to\ Jenkins!=\u0414\u043E\u0431\u0440\u043E\u0434\u043E\u0448\u043B\u0438 \u0443 Jenkins! +Welcome\ to\ Jenkins!=Добродошли у Jenkins! diff --git a/core/src/main/resources/hudson/model/AllView/noJob_sv_SE.properties b/core/src/main/resources/hudson/model/AllView/noJob_sv_SE.properties index aa99c7557f50..d3ac99ffe376 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_sv_SE.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Welcome\ to\ Jenkins!=V\u00E4lkommen till Jenkins! +Welcome\ to\ Jenkins!=Välkommen till Jenkins! diff --git a/core/src/main/resources/hudson/model/AllView/noJob_tr.properties b/core/src/main/resources/hudson/model/AllView/noJob_tr.properties index 1273d1ba8663..f11e7258733e 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_tr.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_tr.properties @@ -20,21 +20,21 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Welcome\ to\ Jenkins\!=Jenkins''e ho\u015f geldiniz\! +Welcome\ to\ Jenkins\!=Jenkins''e hoÅŸ geldiniz\! -noJobDescription=Bu sayfa, Jenkins i\u015flerinin g\u00f6r\u00fcnt\u00fclenece\u011fi yerdir. Ba\u015flamak i\u00e7in da\u011f\u0131t\u0131lm\u0131\u015f yap\u0131land\u0131rmalar kurabilir veya bir yaz\u0131l\u0131m projesi yap\u0131land\u0131rmaya ba\u015flayabilirsiniz. -This\ folder\ is\ empty=Bu klas\u00f6r bo\u015f +noJobDescription=Bu sayfa, Jenkins iÅŸlerinin görüntüleneceÄŸi yerdir. BaÅŸlamak için dağıtılmış yapılandırmalar kurabilir veya bir yazılım projesi yapılandırmaya baÅŸlayabilirsiniz. +This\ folder\ is\ empty=Bu klasör boÅŸ -setUpDistributedBuilds=Da\u011f\u0131t\u0131lm\u0131\u015f bir yap\u0131land\u0131rma kurun +setUpDistributedBuilds=Dağıtılmış bir yapılandırma kurun setUpAgent=Bir ajan kur setUpCloud=Bir bulut ayarla -learnMoreDistributedBuilds=Da\u011f\u0131t\u0131lm\u0131\u015f yap\u0131land\u0131rmalar hakk\u0131nda daha fazla bilgi edinin +learnMoreDistributedBuilds=Dağıtılmış yapılandırmalar hakkında daha fazla bilgi edinin -startBuilding=Yaz\u0131l\u0131m projenizi yap\u0131land\u0131rmaya ba\u015flay\u0131n +startBuilding=Yazılım projenizi yapılandırmaya baÅŸlayın -createJob=Bir i\u015f olu\u015ftur +createJob=Bir iÅŸ oluÅŸtur -anonymousDescription=\u0130\u015fleri g\u00f6r\u00fcnt\u00fclemek veya is olu\u015fturmak i\u00e7in \u015fimdi giri\u015f yap\u0131n. -anonymousDescriptionSignUpEnabled=\u0130\u015fleri g\u00f6r\u00fcnt\u00fclemek veya i\u015f olu\u015fturmak i\u00e7in \u015fimdi giri\u015f yap\u0131n. Hen\u00fcz bir hesab\u0131n\u0131z yoksa kaydolabilirsiniz. -Log\ in\ to\ Jenkins=Jenkins''e giri\u015f yap -Sign\ up\ for\ Jenkins=Jenkins''e kay\u0131t ol +anonymousDescription=Ä°ÅŸleri görüntülemek veya is oluÅŸturmak için ÅŸimdi giriÅŸ yapın. +anonymousDescriptionSignUpEnabled=Ä°ÅŸleri görüntülemek veya iÅŸ oluÅŸturmak için ÅŸimdi giriÅŸ yapın. Henüz bir hesabınız yoksa kaydolabilirsiniz. +Log\ in\ to\ Jenkins=Jenkins''e giriÅŸ yap +Sign\ up\ for\ Jenkins=Jenkins''e kayıt ol diff --git a/core/src/main/resources/hudson/model/AllView/noJob_uk.properties b/core/src/main/resources/hudson/model/AllView/noJob_uk.properties index 23222c7ff72a..b995ef9827d3 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_uk.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Welcome\ to\ Jenkins!=\u041B\u0430\u0441\u043A\u0430\u0432\u043E \u043F\u0440\u043E\u0441\u0438\u043C\u043E \u0443 \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441! +Welcome\ to\ Jenkins!=ЛаÑкаво проÑимо у ДженкінÑ! diff --git a/core/src/main/resources/hudson/model/AllView/noJob_zh_TW.properties b/core/src/main/resources/hudson/model/AllView/noJob_zh_TW.properties index c83ca424ef84..fc2e20d0b91b 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Welcome\ to\ Jenkins!=\u6B61\u8FCE\u4F7F\u7528Jenkins! +Welcome\ to\ Jenkins!=歡迎使用Jenkins! diff --git a/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_bg.properties b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_bg.properties index 92f2cdb1c64c..3586af9405da 100644 --- a/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_bg.properties +++ b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Default\ Value=\ - \u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 + Стандартна ÑтойноÑÑ‚ Description=\ - \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 + ОпиÑание Name=\ - \u0418\u043c\u0435 + Име diff --git a/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_da.properties b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_da.properties index 67a5ea420c9d..bcd95267b093 100644 --- a/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_da.properties +++ b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_da.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Name=Navn -Set\ by\ Default=Standardv\u00e6rdi +Set\ by\ Default=Standardværdi Description=Beskrivelse diff --git a/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_es.properties b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_es.properties index 866f50415953..306070464cbf 100644 --- a/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_es.properties +++ b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_es.properties @@ -22,4 +22,4 @@ Name=Nombre Set\ by\ Default=Valor por defecto -Description=Descripción +Description=Descripción diff --git a/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_fr.properties b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_fr.properties index 6b0bb760a0ba..88ab77ccd4bd 100644 --- a/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_fr.properties +++ b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_fr.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Name=Nom -Set\ by\ Default=Valeur par d\u00E9faut +Set\ by\ Default=Valeur par défaut Description=Description diff --git a/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_ja.properties b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_ja.properties index 82a093e6013c..4e9cc050c55a 100644 --- a/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_ja.properties +++ b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540D\u524D -Set\ by\ Default=\u30C7\u30D5\u30A9\u30EB\u30C8\u5024 -Description=\u8AAC\u660E +Name=åå‰ +Set\ by\ Default=デフォルト値 +Description=説明 diff --git a/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_pl.properties b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_pl.properties index 39916fd8a9b8..fe9dcc728d86 100644 --- a/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_pl.properties +++ b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_pl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. Name=Nazwa -Set\ by\ Default=Domy\u015Blna warto\u015B\u0107 +Set\ by\ Default=DomyÅ›lna wartość Description=Opis diff --git a/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_pt_BR.properties b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_pt_BR.properties index eb2839cc7d91..0d810bcb15a1 100644 --- a/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_pt_BR.properties +++ b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_pt_BR.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Name=Nome -Set\ by\ Default=Valor padr\u00e3o -Description=Descri\u00e7\u00e3o +Set\ by\ Default=Valor padrão +Description=Descrição diff --git a/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_ru.properties b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_ru.properties index e2b5bba7640e..71e44ba2afaa 100644 --- a/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_ru.properties +++ b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Set\ by\ Default=\u0417\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u043F\u043E-\u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E -Description=\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 -Name=\u0418\u043C\u044F +Set\ by\ Default=Значение по-умолчанию +Description=ОпиÑание +Name=Ð˜Ð¼Ñ diff --git a/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_sr.properties b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_sr.properties index 00c613919dae..ef57a63c0180 100644 --- a/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_sr.properties +++ b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Name=\u0418\u043C\u0435 -Set\ by\ Default=\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u043D\u0430 \u0432\u0440\u0435\u0434\u043D\u043E\u0441\u0442 -Description=\u041E\u043F\u0438\u0441 +Name=Име +Set\ by\ Default=Стандардна вредноÑÑ‚ +Description=ÐžÐ¿Ð¸Ñ diff --git a/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_zh_TW.properties b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_zh_TW.properties index f0944741073c..be35e608bb3e 100644 --- a/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_zh_TW.properties +++ b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540d\u7a31 -Set\ by\ Default=\u9810\u8a2d\u503c -Description=\u8aaa\u660e +Name=å稱 +Set\ by\ Default=é è¨­å€¼ +Description=說明 diff --git a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_bg.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_bg.properties index 947407587c24..cac35fd18e82 100644 --- a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_bg.properties +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_bg.properties @@ -21,15 +21,15 @@ # THE SOFTWARE. e.g.,\ from\ scripts=\ - \u043d\u0430\u043f\u0440. \u043e\u0442 \u0441\u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0435 + напр. от Ñкриптове Trigger\ builds\ remotely=\ - \u041e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d\u043e \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + Отдалечено Ñтартиране на изграждане Optionally\ append\ &cause\=Cause+Text\ to\ provide\ text\ that\ will\ be\ included\ in\ the\ recorded\ build\ cause.=\ - \u0410\u043a\u043e \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u0442\u0435\u043a\u0441\u0442-\u043e\u0431\u044f\u0441\u043d\u0435\u043d\u0438\u0435 \u0437\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e,\ - \u0434\u043e\u0431\u0430\u0432\u0435\u0442\u0435 &cause\=\u043e\u0431\u044f\u0441\u043d\u0435\u043d\u0438\u0435+\u0437\u0430+\u043f\u0440\u0438\u0447\u0438\u043d\u0430\u0442\u0430 + Ðко иÑкате да добавите текÑÑ‚-обÑÑнение за Ñтартирането на изграждането,\ + добавете &cause\=обÑÑнение+за+причината Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=\ - \u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u0441\u043b\u0435\u0434\u043d\u0438\u044f \u0430\u0434\u0440\u0435\u0441, \u0437\u0430 \u0434\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0442\u0435 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f \u043e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d\u043e: + Използвайте ÑÐ»ÐµÐ´Ð½Ð¸Ñ Ð°Ð´Ñ€ÐµÑ, за да Ñтартирате Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ Ð¾Ñ‚Ð´Ð°Ð»ÐµÑ‡ÐµÐ½Ð¾: Authentication\ Token=\ - \u041d\u0438\u0437 \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f + Ðиз за Ð¸Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ or=\ - \u0438\u043b\u0438 + или diff --git a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_da.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_da.properties index 57f95495f9ae..c620680f134d 100644 --- a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_da.properties +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_da.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=Benyt f\u00f8lgende URL til at fjernstarte et byg: +Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=Benyt følgende URL til at fjernstarte et byg: Authentication\ Token=Authentificerings token Optionally\ append\ &cause\=Cause+Text\ to\ provide\ text\ that\ will\ be\ included\ in\ the\ recorded\ build\ cause.=\ -Du kan h\u00e6fte en valgfri &cause\=Cause+Text til bev\u00e6ggrunden for at starte bygget. +Du kan hæfte en valgfri &cause\=Cause+Text til bevæggrunden for at starte bygget. Trigger\ builds\ remotely=Fjernstart byg e.g.,\ from\ scripts=for eksempel fra et skript or=eller diff --git a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_de.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_de.properties index d4c5262b69f4..0397823f1722 100644 --- a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_de.properties +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_de.properties @@ -1,8 +1,8 @@ -Trigger\ builds\ remotely=Builds von au\u00DFerhalb starten +Trigger\ builds\ remotely=Builds von außerhalb starten e.g.,\ from\ scripts=z.B. skriptgesteuert Authentication\ Token=Authentifizierungstoken -Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=Folgende URL verwenden, um einen entfernte Build auszulösen: +Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=Folgende URL verwenden, um einen entfernte Build auszulösen: Optionally\ append\ &cause\=Cause+Text\ to\ provide\ text\ that\ will\ be\ included\ in\ the\ recorded\ build\ cause.=\ - Fügen Sie optional ein &cause=Grund+des+Builds an die URL an. \ - Dieser Text wird dann in den aufgezeichneten Grund für diesen Build aufgenommen. + Fügen Sie optional ein &cause=Grund+des+Builds an die URL an. \ + Dieser Text wird dann in den aufgezeichneten Grund für diesen Build aufgenommen. or=oder diff --git a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_es.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_es.properties index cdc5d008018d..d7d446abe007 100644 --- a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_es.properties +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_es.properties @@ -23,7 +23,7 @@ Trigger\ builds\ remotely=Lanzar ejecuciones remotas e.g.,\ from\ scripts=ejem: desde ''scripts'' Authentication\ Token=Identificador de seguridad -Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=Usar esta dirección web para lanzar la ejecución remota +Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=Usar esta dirección web para lanzar la ejecución remota Optionally\ append\ &cause\=Cause+Text\ to\ provide\ text\ that\ will\ be\ included\ in\ the\ recorded\ build\ cause.=\ - Añadir el parámetro &cause=Cause+Text para componer el texto que será incluido en el texto describiendo la causa de la ejecución + Añadir el parámetro &cause=Cause+Text para componer el texto que será incluido en el texto describiendo la causa de la ejecución or=o diff --git a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_fr.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_fr.properties index 76215f970a79..b552e9c447e1 100644 --- a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_fr.properties +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_fr.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Authentication\ Token=Jeton d''authentification -Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=Utilisez l''URL qui suit pour lancer un build \u00e0 distance : -Trigger\ builds\ remotely=D\u00e9clencher les builds \u00e0 distance -e.g.,\ from\ scripts=Par exemple, \u00e0 partir de scripts -Optionally\ append\ &cause\=Cause+Text\ to\ provide\ text\ that\ will\ be\ included\ in\ the\ recorded\ build\ cause.=Optionnellement, ajoute le suffixe &cause=Cause+Text pour fournir du texte qui sera inclu dans la cause enregistr\u00e9e pour le build. +Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=Utilisez l''URL qui suit pour lancer un build à distance : +Trigger\ builds\ remotely=Déclencher les builds à distance +e.g.,\ from\ scripts=Par exemple, à partir de scripts +Optionally\ append\ &cause\=Cause+Text\ to\ provide\ text\ that\ will\ be\ included\ in\ the\ recorded\ build\ cause.=Optionnellement, ajoute le suffixe &cause=Cause+Text pour fournir du texte qui sera inclu dans la cause enregistrée pour le build. or=ou diff --git a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_it.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_it.properties index cafe89cfbf5e..51944b0da883 100644 --- a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_it.properties +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -24,8 +24,8 @@ Authentication\ Token=Token di autenticazione e.g.,\ from\ scripts=ad esempio da uno script Optionally\ append\ &cause\=Cause+Text\ to\ provide\ text\ that\ will\ be\ included\ in\ the\ recorded\ build\ cause.=Facoltativamente, \ - è possibile aggiungere &cause=Motivo per fornire del testo che \ - verrà incluso nella motivazione registrata della compilazione. + è possibile aggiungere &cause=Motivo per fornire del testo che \ + verrà incluso nella motivazione registrata della compilazione. or=oppure Trigger\ builds\ remotely=Scatena compilazioni da remoto Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=Utilizzare il \ diff --git a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_ja.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_ja.properties index cd8e9dce0894..fbf48649ca76 100644 --- a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_ja.properties +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_ja.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Authentication\ Token=\u8a8d\u8a3c\u30c8\u30fc\u30af\u30f3 -Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=\u30ea\u30e2\u30fc\u30c8\u304b\u3089\u30d3\u30eb\u30c9\u3092\u5b9f\u884c\u3059\u308b\u306b\u306f\u6b21\u306eURL\u3092\u4f7f\u7528\u3057\u307e\u3059: -Trigger\ builds\ remotely=\u30ea\u30e2\u30fc\u30c8\u304b\u3089\u30d3\u30eb\u30c9 -e.g.,\ from\ scripts=\u4f8b: \u30b9\u30af\u30ea\u30d7\u30c8\u304b\u3089 +Authentication\ Token=èªè¨¼ãƒˆãƒ¼ã‚¯ãƒ³ +Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=リモートã‹ã‚‰ãƒ“ルドを実行ã™ã‚‹ã«ã¯æ¬¡ã®URLを使用ã—ã¾ã™: +Trigger\ builds\ remotely=リモートã‹ã‚‰ãƒ“ルド +e.g.,\ from\ scripts=例: スクリプトã‹ã‚‰ Optionally\ append\ &cause\=Cause+Text\ to\ provide\ text\ that\ will\ be\ included\ in\ the\ recorded\ build\ cause.=\ - &cause=\u8981\u56e0\u3092\u8ffd\u52a0\u3059\u308b(\u30aa\u30d7\u30b7\u30e7\u30f3\uff09\u3068\u3001\u30d3\u30eb\u30c9\u3092\u5b9f\u884c\u3057\u305f\u8981\u56e0\u3068\u3057\u3066\u8a18\u9332\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 -or=\u3082\u3057\u304f\u306f\u3001 + &cause=è¦å› ã‚’追加ã™ã‚‹(オプション)ã¨ã€ãƒ“ルドを実行ã—ãŸè¦å› ã¨ã—ã¦è¨˜éŒ²ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ +or=ã‚‚ã—ãã¯ã€ diff --git a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_ko.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_ko.properties index 5027f76760df..a88a7ed57f7c 100644 --- a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_ko.properties +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_ko.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Trigger\ builds\ remotely=\uBE4C\uB4DC\uB97C \uC6D0\uACA9\uC73C\uB85C \uC720\uBC1C -Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=\uB2E4\uC74C URL\uC744 \uC0AC\uC6A9\uD558\uC5EC \uC6D0\uACA9 \uBE4C\uB4DC \uC720\uBC1C: -e.g.,\ from\ scripts=\uC608: \uC2A4\uD06C\uB9BD\uD2B8 \uC0AC\uC6A9 +Trigger\ builds\ remotely=빌드를 ì›ê²©ìœ¼ë¡œ 유발 +Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=ë‹¤ìŒ URLì„ ì‚¬ìš©í•˜ì—¬ ì›ê²© 빌드 유발: +e.g.,\ from\ scripts=예: 스í¬ë¦½íŠ¸ 사용 diff --git a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_pl.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_pl.properties index 753d5f7d6477..2c560d0cbc91 100644 --- a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_pl.properties +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_pl.properties @@ -19,8 +19,8 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Optionally\ append\ &cause\=Cause+Text\ to\ provide\ text\ that\ will\ be\ included\ in\ the\ recorded\ build\ cause.=Opcjonalnie do\u0142\u0105cz &cause=Cause+Text, aby dostarczy\u0107 tekst, kt\u00F3y b\u0119dzie informowa\u0142 o \u017Ar\u00F3dle budowania. -Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=U\u017Cyj tego adresu URL, aby wyzwoli\u0107 budowanie zdalnie +Optionally\ append\ &cause\=Cause+Text\ to\ provide\ text\ that\ will\ be\ included\ in\ the\ recorded\ build\ cause.=Opcjonalnie doÅ‚Ä…cz &cause=Cause+Text, aby dostarczyć tekst, któy bÄ™dzie informowaÅ‚ o źródle budowania. +Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=Użyj tego adresu URL, aby wyzwolić budowanie zdalnie Authentication\ Token=Token autentyfikacji Trigger\ builds\ remotely=Wyzwalaj budowanie zdalnie e.g.,\ from\ scripts=np. przez skrypt diff --git a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_pt_BR.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_pt_BR.properties index b45143cfce72..60a75fd60bb6 100644 --- a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_pt_BR.properties +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_pt_BR.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=Use a seguinte URL para iniciar uma constru\u00E7\u00E3o remota: -Authentication\ Token=Passe de autentica\u00E7\u00E3o -Trigger\ builds\ remotely=Dispare constru\u00E7\u00F5es remotamente -e.g.,\ from\ scripts=exemplo, \u00E0 partir dos scripts +Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=Use a seguinte URL para iniciar uma construção remota: +Authentication\ Token=Passe de autenticação +Trigger\ builds\ remotely=Dispare construções remotamente +e.g.,\ from\ scripts=exemplo, à partir dos scripts or=ou Optionally\ append\ &cause\=Cause+Text\ to\ provide\ text\ that\ will\ be\ included\ in\ the\ recorded\ build\ cause.=\ - Opcionalmente anexar &cause\=Causa+Texto para prover texto que ser\u00E1 incluso na causa de constru\u00E7\u00E3o \ + Opcionalmente anexar &cause\=Causa+Texto para prover texto que será incluso na causa de construção \ registrada. diff --git a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_sr.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_sr.properties index 1af10217de2e..251d5012986c 100644 --- a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_sr.properties +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_sr.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Trigger\ builds\ remotely=\u041F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 \u0441\u0430 \u0434\u0430\u043B\u0435\u043A\u0430 -e.g.,\ from\ scripts=\u043D\u043F\u0440. \u043E\u0434 \u0441\u043A\u0440\u0438\u043F\u0442\u043E\u0432\u0430 -Authentication\ Token=\u0422\u043E\u043A\u0435\u043D \u0437\u0430 \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u043A\u0430\u0446\u0438\u0458\u0443 -Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=\u041A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u0441\u043B\u0435\u0434\u0435\u045B\u0443 \u0430\u0434\u0440\u0435\u0441\u0443 \u0434\u0430 \u0431\u0438 \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u043B\u0438 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 \u0441\u0430 \u0434\u0430\u043B\u0435\u043A\u0430: -or=\u0438\u043B\u0438 -Optionally\ append\ &cause\=Cause+Text\ to\ provide\ text\ that\ will\ be\ included\ in\ the\ recorded\ build\ cause.=\u041C\u043E\u0436\u0435\u0442\u0435 \u043D\u0430\u0432\u0435\u0441\u0442\u0438 \u043E\u0431\u0458\u0430\u0448\u045A\u0435\u045A\u0435 \u0437\u0430 \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443, &cause\=\u043E\u0431\u0458\u0430\u0448\u045A\u0435\u045A\u0435+\u0437\u0430+\u0440\u0430\u0437\u043B\u043E\u0433 +Trigger\ builds\ remotely=Покретање изградње Ñа далека +e.g.,\ from\ scripts=нпр. од Ñкриптова +Authentication\ Token=Токен за аутентикацију +Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=КориÑтите Ñледећу адреÑу да би покренули изградњу Ñа далека: +or=или +Optionally\ append\ &cause\=Cause+Text\ to\ provide\ text\ that\ will\ be\ included\ in\ the\ recorded\ build\ cause.=Можете навеÑти објашњење за покретање изградњу, &cause\=објашњење+за+разлог diff --git a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_tr.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_tr.properties index 4e260ef83a7d..5798222f6aec 100644 --- a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_tr.properties +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_tr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Trigger\ builds\ remotely=Yap\u0131land\u0131rmalar\u0131 uzaktan tetikle -e.g.,\ from\ scripts=\u00f6rn., scriptlerden -Authentication\ Token=Kimlik Denetleme Token''\u0131 -Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=Yap\u0131land\u0131rmay\u0131 uzaktan tetiklemek i\u00e7in belirtilen URL'i kullan\u0131n +Trigger\ builds\ remotely=Yapılandırmaları uzaktan tetikle +e.g.,\ from\ scripts=örn., scriptlerden +Authentication\ Token=Kimlik Denetleme Token''ı +Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=Yapılandırmayı uzaktan tetiklemek için belirtilen URL'i kullanın diff --git a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_zh_TW.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_zh_TW.properties index 9de286b6274d..73391aadc1ab 100644 --- a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_zh_TW.properties +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_zh_TW.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Trigger\ builds\ remotely=\u9060\u7aef\u89f8\u767c\u5efa\u7f6e -e.g.,\ from\ scripts=\u4F8B\u5982: \u900F\u904E Script \u8173\u672C +Trigger\ builds\ remotely=é ç«¯è§¸ç™¼å»ºç½® +e.g.,\ from\ scripts=例如: é€éŽ Script 腳本 -Authentication\ Token=\u9a57\u8b49 Token -Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=\u53ef\u4ee5\u900f\u904e\u4e0b\u5217 URL \u89f8\u767c\u5efa\u7f6e: -or=\u6216 +Authentication\ Token=é©—è­‰ Token +Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=å¯ä»¥é€éŽä¸‹åˆ— URL 觸發建置: +or=或 Optionally\ append\ &cause\=Cause+Text\ to\ provide\ text\ that\ will\ be\ included\ in\ the\ recorded\ build\ cause.=\ - \u53ef\u4ee5\u518d\u52a0\u4e0a &cause=\u539f\u56e0\uff0c\u53c3\u6578\u5167\u5bb9\u5c07\u88ab\u8a18\u9304\u5230\u5efa\u7f6e\u539f\u56e0\u4e2d\u3002 + å¯ä»¥å†åŠ ä¸Š &cause=原因,åƒæ•¸å…§å®¹å°‡è¢«è¨˜éŒ„到建置原因中。 diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_bg.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_bg.properties index fb6513a12ab9..1a457e8c8ce2 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_bg.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_bg.properties @@ -21,11 +21,11 @@ # THE SOFTWARE. started_by_project_with_deleted_build=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u043e \u0437\u0430\u0440\u0430\u0434\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0430, \u043e\u0442 \u043a\u043e\u0439\u0442\u043e \u0442\u043e\u0437\u0438 \u0437\u0430\u0432\u0438\u0441\u0438:\ - {0}, \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u2116\u200a{1} + Стартирано заради проекта, от който този завиÑи:\ + {0}, изграждане № {1} caused_by=\ - \u043f\u044a\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u043d\u043e \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u043e \u043f\u043e\u0440\u0430\u0434\u0438: + първоначално Ñтартирано поради: started_by_project=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u043e \u0437\u0430\u0440\u0430\u0434\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0430, \u043e\u0442 \u043a\u043e\u0439\u0442\u043e \u0442\u043e\u0437\u0438 \u0437\u0430\u0432\u0438\u0441\u0438:\ - {0}, \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\ - \u2116\u200a{1} + Стартирано заради проекта, от който този завиÑи:\ + {0}, изграждане\ + № {1} diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_cs.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_cs.properties index a774d761620e..a52f7268e736 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_cs.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_cs.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -started_by_project=Spu\u0161t\u011Bno nad\u0159azen\u00FDm projektem {0} build \u010D\u00EDslo {1} -started_by_project_with_deleted_build=Spu\u0161t\u011Bno nad\u0159azen\u00FDm projektem {0} build \u010D\u00EDslo {1} +started_by_project=SpuÅ¡tÄ›no nadÅ™azeným projektem {0} build Äíslo {1} +started_by_project_with_deleted_build=SpuÅ¡tÄ›no nadÅ™azeným projektem {0} build Äíslo {1} diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_de.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_de.properties index 1e8fe895152a..da075f42f1e3 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_de.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_de.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -caused_by=urspr\u00FCnglich ausgel\u00F6st durch: +caused_by=ursprünglich ausgelöst durch: started_by_project=Gestartet durch vorgelagertes Projekt {0}, Build {1} started_by_project_with_deleted_build=Gestartet durch vorgelagertes Projekt {0}, Build {1} diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_es.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_es.properties index 119f06882497..5a71c40a93e6 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_es.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_es.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. -started_by_project=Lanzado por la ejecuci\u00F3n n\u00FAmero {1} del proyecto padre\: {0} -started_by_project_with_deleted_build=Lanzado por la ejecuci\u00F3n n\u00FAmero {1} del proyecto padre\: {0} +started_by_project=Lanzado por la ejecución número {1} del proyecto padre\: {0} +started_by_project_with_deleted_build=Lanzado por la ejecución número {1} del proyecto padre\: {0} diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_fi.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_fi.properties index 8c7a1c1dbc47..c93fff2d67ee 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_fi.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_fi.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_project=K\u00E4ynnist\u00E4j\u00E4 yl\u00E4virran projekti {0} k\u00E4\u00E4nn\u00F6snumero {1} -started_by_project_with_deleted_build=K\u00E4ynnist\u00E4j\u00E4 yl\u00E4virran projekti {0} k\u00E4\u00E4nn\u00F6snumero {1} +started_by_project=Käynnistäjä ylävirran projekti {0} käännösnumero {1} +started_by_project_with_deleted_build=Käynnistäjä ylävirran projekti {0} käännösnumero {1} diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_fr.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_fr.properties index 740edeb2da45..165928bb3a82 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_fr.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_fr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -caused_by=Originellement lanc\u00E9 par: -started_by_project=Lanc\u00E9 par le projet amont {0} avec le num\u00E9ro de construction {1} -started_by_project_with_deleted_build=Lanc\u00E9 par le projet amont {0} avec le num\u00E9ro de construction {1} +caused_by=Originellement lancé par: +started_by_project=Lancé par le projet amont {0} avec le numéro de construction {1} +started_by_project_with_deleted_build=Lancé par le projet amont {0} avec le numéro de construction {1} diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_he.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_he.properties index 24fa1ea80585..894be07e3c13 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_he.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -caused_by=\u05D4\u05D5\u05E4\u05E2\u05DC \u05D1\u05DE\u05E7\u05D5\u05E8 \u05E2\u05DC \u05D9\u05D3\u05D9: +caused_by=הופעל במקור על ידי: diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_it.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_it.properties index b34f9c8b3a39..be04608a1811 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_it.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_ja.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_ja.properties index 31abd832036b..05b440d8cd25 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_ja.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_project=\u4e0a\u6d41\u30d7\u30ed\u30b8\u30a7\u30af\u30c8{0}\u306e#{1}\u304c\u5b9f\u884c -started_by_project_with_deleted_build=\u4e0a\u6d41\u30d7\u30ed\u30b8\u30a7\u30af\u30c8{0}\u306e#{1}\u304c\u5b9f\u884c -caused_by=\u5143\u306e\u539f\u56e0: +started_by_project=上æµãƒ—ロジェクト{0}ã®#{1}ãŒå®Ÿè¡Œ +started_by_project_with_deleted_build=上æµãƒ—ロジェクト{0}ã®#{1}ãŒå®Ÿè¡Œ +caused_by=å…ƒã®åŽŸå› : diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_lv.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_lv.properties index 0cc40b263090..ee81898db377 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_lv.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_lv.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -caused_by=s\u0101kotn\u0113ji izrais\u012Bjis: -started_by_project=S\u0101kts no aug\u0161upstraumes projekta {0} b\u016Bv\u0113juma {1} -started_by_project_with_deleted_build=S\u0101kts no aug\u0161upstraumes projekta {0} b\u016Bv\u0113juma {1} +caused_by=sÄkotnÄ“ji izraisÄ«jis: +started_by_project=SÄkts no augÅ¡upstraumes projekta {0} bÅ«vÄ“juma {1} +started_by_project_with_deleted_build=SÄkts no augÅ¡upstraumes projekta {0} bÅ«vÄ“juma {1} diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_pl.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_pl.properties index 7d6fa87a6d70..35a5dc31e130 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_pl.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_pl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_project=Wystartowany przez projekt nadrz\u0119dny {0} o numerze {1} -started_by_project_with_deleted_build=Wystartowany przez projekt nadrz\u0119dny {0} o numerze {1} +started_by_project=Wystartowany przez projekt nadrzÄ™dny {0} o numerze {1} +started_by_project_with_deleted_build=Wystartowany przez projekt nadrzÄ™dny {0} o numerze {1} caused_by=Pierwotnie spowodowany przez: diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_pt_BR.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_pt_BR.properties index b5df5136a0c2..f345b3a7a368 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_pt_BR.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. caused_by=Criado originalmente por: -started_by_project=Iniciado pela constru\u00E7\u00E3o {1} do \ +started_by_project=Iniciado pela construção {1} do \ projeto {0} -started_by_project_with_deleted_build=Iniciado pela constru\u00E7\u00E3o {1} do projeto {0} diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_ru.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_ru.properties index 4447b383be74..3d972f6005ae 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_ru.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_ru.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -caused_by=\u043F\u0435\u0440\u0432\u043E\u043D\u0430\u0447\u0430\u043B\u044C\u043D\u043E \u0437\u0430\u043F\u0443\u0449\u0435\u043D\u0430: -started_by_project=\u0412\u044B\u0437\u0432\u0430\u043D \u0432\u043E\u0441\u0445\u043E\u0434\u044F\u0449\u0438\u043C \u043F\u0440\u043E\u0435\u043A\u0442\u043E\u043C {0}, \u0441\u0431\u043E\u0440\u043A\u0430 \u043D\u043E\u043C\u0435\u0440 {1} -started_by_project_with_deleted_build=\u0412\u044B\u0437\u0432\u0430\u043D \u0432\u043E\u0441\u0445\u043E\u0434\u044F\u0449\u0438\u043C \u043F\u0440\u043E\u0435\u043A\u0442\u043E\u043C {0}, \u0441\u0431\u043E\u0440\u043A\u0430 \u043D\u043E\u043C\u0435\u0440 {1} +caused_by=первоначально запущена: +started_by_project=Вызван воÑходÑщим проектом {0}, Ñборка номер {1} +started_by_project_with_deleted_build=Вызван воÑходÑщим проектом {0}, Ñборка номер {1} diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_sk.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_sk.properties index 6cbaae3dc1a5..80d86cf91589 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_sk.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_sk.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -caused_by=p\u00F4vodn\u00E1 pr\u00ED\u010Dina: -started_by_project=Na\u0161tartovan\u00E9 upstream projektom {0} \u010D\u00EDslo zostavenia {1} -started_by_project_with_deleted_build=Na\u0161tartovan\u00E9 upstream projektom {0} \u010D\u00EDslo zostavenia {1} +caused_by=pôvodná príÄina: +started_by_project=NaÅ¡tartované upstream projektom {0} Äíslo zostavenia {1} +started_by_project_with_deleted_build=NaÅ¡tartované upstream projektom {0} Äíslo zostavenia {1} diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_sr.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_sr.properties index 6db47bf0da33..9cc0d1e27e09 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_sr.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -started_by_project=\u0417\u0430\u043F\u043E\u0447\u0435\u0442\u043E \u043E\u0434 \u0441\u0442\u0440\u0430\u043D\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 {0} \u0431\u0440\u043E\u0458 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 {1} -started_by_project_with_deleted_build=\u0417\u0430\u043F\u043E\u0447\u0435\u0442\u043E \u043E\u0434 \u0441\u0442\u0440\u0430\u043D\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 {0} \u0431\u0440\u043E\u0458 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 {1} -caused_by=\u043F\u0440\u0432\u043E\u0431\u0438\u0442\u043D\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u0442 \u0437\u0431\u043E\u0433: +started_by_project=Започето од Ñтране пројекта {0} број изградње {1} +started_by_project_with_deleted_build=Започето од Ñтране пројекта {0} број изградње {1} +caused_by=првобитно покренут због: diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_sv_SE.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_sv_SE.properties index 69cb7058fa97..31628449efb4 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_sv_SE.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -caused_by=ursprungligen p\u00E5 grund av: -started_by_project=Startad av projekt uppstr\u00F6ms {0} byggnummer {1} -started_by_project_with_deleted_build=Startad av projekt uppstr\u00F6ms {0} byggnummer {1} +caused_by=ursprungligen pÃ¥ grund av: +started_by_project=Startad av projekt uppströms {0} byggnummer {1} +started_by_project_with_deleted_build=Startad av projekt uppströms {0} byggnummer {1} diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_uk.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_uk.properties index 4c0f2cbed9ed..893b5d0d8ef0 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_uk.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_uk.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_project=\u0417\u0430\u043F\u0443\u0449\u0435\u043D\u043E \u043A\u0435\u0440\u0456\u0432\u043D\u0438\u043C \u043F\u0440\u043E\u0435\u043A\u0442\u043E\u043C {0}, \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0430 \u043D\u043E\u043C\u0435\u0440 {1} -started_by_project_with_deleted_build=\u0417\u0430\u043F\u0443\u0449\u0435\u043D\u043E \u043A\u0435\u0440\u0456\u0432\u043D\u0438\u043C \u043F\u0440\u043E\u0435\u043A\u0442\u043E\u043C {0}, \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0430 \u043D\u043E\u043C\u0435\u0440 {1} +started_by_project=Запущено керівним проектом {0}, побудова номер {1} +started_by_project_with_deleted_build=Запущено керівним проектом {0}, побудова номер {1} diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_zh_TW.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_zh_TW.properties index 2ed479cac029..0813c0338ed4 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_project=\u7531\u4e0a\u6e38\u5c08\u6848 {0} \u7684\u7b2c {1} \u6b21\u5efa\u7f6e\u6240\u89f8\u767c -started_by_project_with_deleted_build=\u7531\u4e0a\u6e38\u5c08\u6848 {0} \u7684\u7b2c {1} \u6b21\u5efa\u7f6e\u6240\u89f8\u767c -caused_by=\u8d77\u56e0: +started_by_project=由上游專案 {0} 的第 {1} 次建置所觸發 +started_by_project_with_deleted_build=由上游專案 {0} 的第 {1} 次建置所觸發 +caused_by=èµ·å› : diff --git a/core/src/main/resources/hudson/model/Cause/UserCause/description_bg.properties b/core/src/main/resources/hudson/model/Cause/UserCause/description_bg.properties index 5d518b6806b9..4ec3daef199a 100644 --- a/core/src/main/resources/hudson/model/Cause/UserCause/description_bg.properties +++ b/core/src/main/resources/hudson/model/Cause/UserCause/description_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. started_by_user=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u043e \u043e\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f {0} + Стартирано от Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñ {0} diff --git a/core/src/main/resources/hudson/model/Cause/UserCause/description_fr.properties b/core/src/main/resources/hudson/model/Cause/UserCause/description_fr.properties index 7a01db249092..e1c3ede52056 100644 --- a/core/src/main/resources/hudson/model/Cause/UserCause/description_fr.properties +++ b/core/src/main/resources/hudson/model/Cause/UserCause/description_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_user=Lancé par l''utilisateur {0} +started_by_user=Lancé par l''utilisateur {0} diff --git a/core/src/main/resources/hudson/model/Cause/UserCause/description_it.properties b/core/src/main/resources/hudson/model/Cause/UserCause/description_it.properties index 3b307956346a..3f6e843a507c 100644 --- a/core/src/main/resources/hudson/model/Cause/UserCause/description_it.properties +++ b/core/src/main/resources/hudson/model/Cause/UserCause/description_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/Cause/UserCause/description_ja.properties b/core/src/main/resources/hudson/model/Cause/UserCause/description_ja.properties index 2fd44a22b94d..62aeeb73f083 100644 --- a/core/src/main/resources/hudson/model/Cause/UserCause/description_ja.properties +++ b/core/src/main/resources/hudson/model/Cause/UserCause/description_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_user=\u30E6\u30FC\u30B6\u30FC{0}\u304C\u5B9F\u884C +started_by_user=ユーザー{0}ãŒå®Ÿè¡Œ diff --git a/core/src/main/resources/hudson/model/Cause/UserCause/description_ko.properties b/core/src/main/resources/hudson/model/Cause/UserCause/description_ko.properties index 124bbdd99a9d..f00ad05727ec 100644 --- a/core/src/main/resources/hudson/model/Cause/UserCause/description_ko.properties +++ b/core/src/main/resources/hudson/model/Cause/UserCause/description_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_user=\uC0AC\uC6A9\uC790 {0}\uC5D0 \uC758\uD574 \uC2DC\uC791\uB428 +started_by_user=ì‚¬ìš©ìž {0}ì— ì˜í•´ ì‹œìž‘ë¨ diff --git a/core/src/main/resources/hudson/model/Cause/UserCause/description_pl.properties b/core/src/main/resources/hudson/model/Cause/UserCause/description_pl.properties index 5d65a102f374..affcb30a21f8 100644 --- a/core/src/main/resources/hudson/model/Cause/UserCause/description_pl.properties +++ b/core/src/main/resources/hudson/model/Cause/UserCause/description_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_user=Wystartowane przez u\u017Cytkownika {0} +started_by_user=Wystartowane przez użytkownika {0} diff --git a/core/src/main/resources/hudson/model/Cause/UserCause/description_pt_BR.properties b/core/src/main/resources/hudson/model/Cause/UserCause/description_pt_BR.properties index e215c90df285..fcdd9f47eb23 100644 --- a/core/src/main/resources/hudson/model/Cause/UserCause/description_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Cause/UserCause/description_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. # Started by user {0} -started_by_user=Iniciado pelo(a) usu\u00E1rio(a) {0} +started_by_user=Iniciado pelo(a) usuário(a) {0} diff --git a/core/src/main/resources/hudson/model/Cause/UserCause/description_ru.properties b/core/src/main/resources/hudson/model/Cause/UserCause/description_ru.properties index 4fa1f3f29b11..7fbd25df0eaa 100644 --- a/core/src/main/resources/hudson/model/Cause/UserCause/description_ru.properties +++ b/core/src/main/resources/hudson/model/Cause/UserCause/description_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_user=\u0417\u0430\u043F\u0443\u0449\u0435\u043D\u0430 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0435\u043C {0} +started_by_user=Запущена пользователем {0} diff --git a/core/src/main/resources/hudson/model/Cause/UserCause/description_sl.properties b/core/src/main/resources/hudson/model/Cause/UserCause/description_sl.properties index 8a7228c58a51..78eb5c67ac65 100644 --- a/core/src/main/resources/hudson/model/Cause/UserCause/description_sl.properties +++ b/core/src/main/resources/hudson/model/Cause/UserCause/description_sl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_user=Spro\u017Eil uporabnik {0} +started_by_user=Sprožil uporabnik {0} diff --git a/core/src/main/resources/hudson/model/Cause/UserCause/description_sr.properties b/core/src/main/resources/hudson/model/Cause/UserCause/description_sr.properties index a21a3a01d727..b44f38886c98 100644 --- a/core/src/main/resources/hudson/model/Cause/UserCause/description_sr.properties +++ b/core/src/main/resources/hudson/model/Cause/UserCause/description_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -started_by_user=\u041F\u043E\u043A\u0440\u0435\u043D\u0443\u0442 \u043E\u0434 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430 {0} +started_by_user=Покренут од кориÑника {0} diff --git a/core/src/main/resources/hudson/model/Cause/UserCause/description_sv_SE.properties b/core/src/main/resources/hudson/model/Cause/UserCause/description_sv_SE.properties index 387dac585e55..070857c30ba4 100644 --- a/core/src/main/resources/hudson/model/Cause/UserCause/description_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Cause/UserCause/description_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_user=Startad av anv\u00E4ndare {0} +started_by_user=Startad av användare {0} diff --git a/core/src/main/resources/hudson/model/Cause/UserCause/description_zh_TW.properties b/core/src/main/resources/hudson/model/Cause/UserCause/description_zh_TW.properties index aa3390d185bd..b93e58545160 100644 --- a/core/src/main/resources/hudson/model/Cause/UserCause/description_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Cause/UserCause/description_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_user=\u7531\u4f7f\u7528\u8005 {0} \u555f\u52d5 +started_by_user=由使用者 {0} å•Ÿå‹• diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_bg.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_bg.properties index 1702215752dc..18e24d6e9ee4 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_bg.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. started_by_anonymous=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D\u043E \u043E\u0442 \u0430\u043D\u043E\u043D\u0438\u043C\u0435\u043D \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B + Стартирано от анонимен потребител started_by_user=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D\u043E \u043E\u0442 \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B\u044F {1} + Стартирано от Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñ {1} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_cs.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_cs.properties index d187071752a9..f1005fc3c677 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_cs.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_cs.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_anonymous=Spu\u0161t\u011Bno anonymn\u00EDm u\u017Eivatelem -started_by_user=Spu\u0161t\u011Bn u\u017Eivatelem {1} +started_by_anonymous=SpuÅ¡tÄ›no anonymním uživatelem +started_by_user=SpuÅ¡tÄ›n uživatelem {1} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_el.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_el.properties index 26a9c2e5a652..fca1f0d902ac 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_el.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_el.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_user=\u03A4\u03BF \u03BE\u03B5\u03BA\u03AF\u03BD\u03B7\u03C3\u03B5 \u03BF \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7\u03C2 {1} +started_by_user=Το ξεκίνησε ο χÏήστης {1} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_et.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_et.properties index e308ced8e09e..52128d5df93c 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_et.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_et.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -started_by_anonymous=Alustati anon\u00FC\u00FCmse kasutaja poolt +started_by_anonymous=Alustati anonüümse kasutaja poolt diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fi.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fi.properties index a43d8ae9c5b9..554bf7786499 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fi.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fi.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_anonymous=Anonyymin k\u00E4ytt\u00E4j\u00E4n k\u00E4ynnist\u00E4m\u00E4 -started_by_user=K\u00E4ynnist\u00E4j\u00E4: {1} +started_by_anonymous=Anonyymin käyttäjän käynnistämä +started_by_user=Käynnistäjä: {1} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fr.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fr.properties index 2df3e1201218..2541a173b523 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fr.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_anonymous=Lanc\u00E9 par un utilisateur anonyme -started_by_user=Lanc\u00e9 par l''utilisateur {1} +started_by_anonymous=Lancé par un utilisateur anonyme +started_by_user=Lancé par l''utilisateur {1} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_he.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_he.properties index a194d92d9c09..c222799ec4b6 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_he.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -started_by_user=\u05D4\u05D5\u05E4\u05E2\u05DC \u05E2\u05DC \u05D9\u05D3\u05D9 \u05DE\u05E9\u05EA\u05DE\u05E9 Started by user {1} +started_by_user=הופעל על ידי משתמש Started by user {1} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_hu.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_hu.properties index b6bfcaba95fb..f43a4412bc48 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_hu.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_hu.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -started_by_anonymous=Ismeretlen felhaszn\u00E1l\u00F3 \u00E1ltal ind\u00EDtva -started_by_user=Elind\u00EDtva {1} \u00E1ltal. +started_by_anonymous=Ismeretlen felhasználó által indítva +started_by_user=Elindítva {1} által. diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_it.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_it.properties index cd64091b1563..f89bc8a4cd36 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_it.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ja.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ja.properties index f40a26d51148..43684f901ef9 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ja.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_user=\u30e6\u30fc\u30b6\u30fc{1}\u304c\u5b9f\u884c -started_by_anonymous=\u533f\u540d\u30e6\u30fc\u30b6\u30fc\u304c\u5b9f\u884c +started_by_user=ユーザー{1}ãŒå®Ÿè¡Œ +started_by_anonymous=匿åユーザーãŒå®Ÿè¡Œ diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ko.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ko.properties index 63d4ce44f475..c2165367c2c4 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ko.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ko.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_anonymous=\uC775\uBA85 \uC0AC\uC6A9\uC790\uC5D0 \uC758\uD574 \uC2DC\uC791\uB428 -started_by_user=\uc0ac\uc6a9\uc790 {1}\uc5d0 \uc758\ud574 \uc2dc\uc791\ub428 +started_by_anonymous=ìµëª… 사용ìžì— ì˜í•´ ì‹œìž‘ë¨ +started_by_user=ì‚¬ìš©ìž {1}ì— ì˜í•´ ì‹œìž‘ë¨ diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_lt.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_lt.properties index 1615ffae2195..9766f1e7371c 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_lt.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_lt.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -started_by_user=Prad\u0117jo naudotojas {1} +started_by_user=PradÄ—jo naudotojas {1} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_lv.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_lv.properties index 655e54828a26..5192dc873061 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_lv.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_lv.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_anonymous=S\u0101kts ar anon\u012Bmu lietot\u0101ju -started_by_user=Ticis uzs\u0101kts p\u0113c {1} izsaukuma +started_by_anonymous=SÄkts ar anonÄ«mu lietotÄju +started_by_user=Ticis uzsÄkts pÄ“c {1} izsaukuma diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pl.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pl.properties index ca62e76087a6..db80df3e9c8c 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pl.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_anonymous=Uruchomiono przez anonimowego u\u017Cytkownika -started_by_user=Wystartowane przez u\u017Cytkownika {1} +started_by_anonymous=Uruchomiono przez anonimowego użytkownika +started_by_user=Wystartowane przez użytkownika {1} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pt_BR.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pt_BR.properties index 03cdcb4c906f..041fed693640 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pt_BR.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. # Started by user {1} -started_by_anonymous=Iniciado pelo usu\u00E1rio an\u00F4nimo -started_by_user=Iniciado pelo(a) usu\u00E1rio(a) {1} +started_by_anonymous=Iniciado pelo usuário anônimo +started_by_user=Iniciado pelo(a) usuário(a) {1} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ru.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ru.properties index fc7188212871..2245783290c3 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ru.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_anonymous=\u0417\u0430\u043F\u0443\u0449\u0435\u043D\u043E \u0430\u043D\u043E\u043D\u0438\u043C\u043D\u043E -started_by_user=\u0421\u043E\u0437\u0434\u0430\u043D\u0430 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0435\u043C {1} +started_by_anonymous=Запущено анонимно +started_by_user=Создана пользователем {1} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sk.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sk.properties index 01d3599679d6..14695f11a6eb 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sk.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sk.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_anonymous=Spusten\u00FD anonymn\u00FDm pou\u017E\u00EDvate\u013Eom -started_by_user=Spusten\u00E9 u\u017E\u00EDvate\u013Eom {1} +started_by_anonymous=Spustený anonymným používateľom +started_by_user=Spustené užívateľom {1} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sl.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sl.properties index e7c1746e9218..9a81e4a444a6 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sl.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_user=Spro\u017eil uporabnik {1} +started_by_user=Sprožil uporabnik {1} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sr.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sr.properties index 4405883d9081..f3a21a2c1fdb 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sr.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -started_by_user=\u041F\u043E\u043A\u0440\u0435\u043D\u0443\u0442 \u043E\u0434 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430 {1} -started_by_anonymous=\u041F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u043E \u0430\u043D\u043E\u043D\u0438\u043C\u043D\u0438\u043C \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u043E\u043C +started_by_user=Покренут од кориÑника {1} +started_by_anonymous=Покренуто анонимним кориÑником diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sv_SE.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sv_SE.properties index 6b8f3c9e8737..1cf8cbbd5e60 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sv_SE.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_anonymous=Startad av en anonym anv\u00E4ndare -started_by_user=Startad av anv\u00e4ndare {1} +started_by_anonymous=Startad av en anonym användare +started_by_user=Startad av användare {1} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_tr.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_tr.properties index 3d7ac2e41c55..5725cef2ee1e 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_tr.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_tr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -started_by_anonymous=isimsiz kullan\u0131c\u0131 tarafindan ba\u015Flat\u0131ld\u0131 -started_by_user={1} kullan\u0131c\u0131s\u0131 taraf\u0131ndan ba\u015Flat\u0131ld\u0131 +started_by_anonymous=isimsiz kullanıcı tarafindan baÅŸlatıldı +started_by_user={1} kullanıcısı tarafından baÅŸlatıldı diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_uk.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_uk.properties index 34cc671bc15a..820535429ffb 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_uk.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_uk.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_anonymous=\u0437\u0430\u043F\u0443\u0449\u0435\u043D\u043E \u0430\u043D\u043E\u043D\u0456\u043C\u043D\u0438\u043C \u044E\u0437\u0435\u0440\u043E\u043C -started_by_user=\u0417\u0430\u043F\u0443\u0449\u0435\u043D\u043E \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0435\u043C {1} +started_by_anonymous=запущено анонімним юзером +started_by_user=Запущено кориÑтувачем {1} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_zh_TW.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_zh_TW.properties index d0dc6cea8cbe..6fbf1e3df0b7 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_user=\u7531\u4f7f\u7528\u8005 {1} \u555f\u52d5 -started_by_anonymous=\u7531\u533f\u540d\u4f7f\u7528\u8005\u555f\u52d5 +started_by_user=由使用者 {1} å•Ÿå‹• +started_by_anonymous=由匿å使用者啟動 diff --git a/core/src/main/resources/hudson/model/CauseAction/summary_bg.properties b/core/src/main/resources/hudson/model/CauseAction/summary_bg.properties index 9dd0ef889054..83bc54e7c6ab 100644 --- a/core/src/main/resources/hudson/model/CauseAction/summary_bg.properties +++ b/core/src/main/resources/hudson/model/CauseAction/summary_bg.properties @@ -22,4 +22,4 @@ # ({0} times) Ntimes=\ - ({0} \u043f\u044a\u0442\u0438) + ({0} пъти) diff --git a/core/src/main/resources/hudson/model/CauseAction/summary_it.properties b/core/src/main/resources/hudson/model/CauseAction/summary_it.properties index de5be5cda32d..a03a308ccbd7 100644 --- a/core/src/main/resources/hudson/model/CauseAction/summary_it.properties +++ b/core/src/main/resources/hudson/model/CauseAction/summary_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/CauseAction/summary_ja.properties b/core/src/main/resources/hudson/model/CauseAction/summary_ja.properties index 60d1f4547261..f458ef8b6020 100644 --- a/core/src/main/resources/hudson/model/CauseAction/summary_ja.properties +++ b/core/src/main/resources/hudson/model/CauseAction/summary_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Ntimes=({0} \u56DE) +Ntimes=({0} 回) diff --git a/core/src/main/resources/hudson/model/CauseAction/summary_sr.properties b/core/src/main/resources/hudson/model/CauseAction/summary_sr.properties index 54014aff1e63..befe137b56f8 100644 --- a/core/src/main/resources/hudson/model/CauseAction/summary_sr.properties +++ b/core/src/main/resources/hudson/model/CauseAction/summary_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Ntimes=({0} \u043F\u0443\u0442\u0430) +Ntimes=({0} пута) diff --git a/core/src/main/resources/hudson/model/CauseAction/summary_uk.properties b/core/src/main/resources/hudson/model/CauseAction/summary_uk.properties index efffeed50093..42c9411c38c8 100644 --- a/core/src/main/resources/hudson/model/CauseAction/summary_uk.properties +++ b/core/src/main/resources/hudson/model/CauseAction/summary_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Ntimes={0} \u0440\u0430\u0437\u0456\u0432 +Ntimes={0} разів diff --git a/core/src/main/resources/hudson/model/CauseAction/summary_zh_TW.properties b/core/src/main/resources/hudson/model/CauseAction/summary_zh_TW.properties index 0e4d40bfa8b0..ab0fb78ea34d 100644 --- a/core/src/main/resources/hudson/model/CauseAction/summary_zh_TW.properties +++ b/core/src/main/resources/hudson/model/CauseAction/summary_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Ntimes=({0} \u6B21) +Ntimes=({0} 次) diff --git a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_bg.properties b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_bg.properties index 0a56a15f9b84..b15328fda204 100644 --- a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_bg.properties +++ b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Choices=\ - \u0412\u0430\u0440\u0438\u0430\u043d\u0442\u0438 + Варианти Description=\ - \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 + ОпиÑание Name=\ - \u0418\u043c\u0435 + Име diff --git a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_de.properties b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_de.properties index 59d13a15df3d..bd5627c58b5d 100644 --- a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_de.properties +++ b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_de.properties @@ -1,3 +1,3 @@ Name=Name -Choices=Auswahlmöglichkeiten +Choices=Auswahlmöglichkeiten Description=Beschreibung diff --git a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_es.properties b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_es.properties index 9077a74579aa..a5759c556365 100644 --- a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_es.properties +++ b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_es.properties @@ -22,4 +22,4 @@ Name=Nombre Choices=Opciones -Description=Descripción +Description=Descripción diff --git a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_it.properties b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_it.properties index f8dabfed9a04..5aa644aec467 100644 --- a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_it.properties +++ b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_ja.properties b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_ja.properties index bc7e585d946a..afcc74b15ec9 100644 --- a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_ja.properties +++ b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540D\u524D -Choices=\u9078\u629E\u5024 -Description=\u8AAC\u660E +Name=åå‰ +Choices=é¸æŠžå€¤ +Description=説明 diff --git a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_lv.properties b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_lv.properties index ffe0b6521fb2..5c70dd5148eb 100644 --- a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_lv.properties +++ b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_lv.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Choices=Izv\u0113les +Choices=IzvÄ“les Description=Apraksts Name=Nosaukums diff --git a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_pt_BR.properties b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_pt_BR.properties index 1de6816f916c..41e16ca1a668 100644 --- a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_pt_BR.properties +++ b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_pt_BR.properties @@ -22,4 +22,4 @@ Choices=Escolhas Name=Nome -Description=Descri\u00e7\u00e3o +Description=Descrição diff --git a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_ru.properties b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_ru.properties index 8310be46be19..dfa02b8fdd39 100644 --- a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_ru.properties +++ b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Choices=\u0412\u0430\u0440\u0438\u0430\u043D\u0442\u044B -Description=\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 -Name=\u0418\u043C\u044F +Choices=Варианты +Description=ОпиÑание +Name=Ð˜Ð¼Ñ diff --git a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_sr.properties b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_sr.properties index 70ec444ad48f..61ccc60b060f 100644 --- a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_sr.properties +++ b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Name=\u0418\u043C\u0435 -Choices=\u0412\u0430\u0440\u0438\u0430\u043D\u0442\u0438 -Description=\u041E\u043F\u0438\u0441 +Name=Име +Choices=Варианти +Description=ÐžÐ¿Ð¸Ñ diff --git a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_zh_TW.properties b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_zh_TW.properties index b3376d62cfdb..28c86567d45f 100644 --- a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_zh_TW.properties +++ b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_zh_TW.properties @@ -21,6 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540d\u7a31 -Choices=\u9078\u9805 -Description=\u8aaa\u660e +Name=å稱 +Choices=é¸é … +Description=說明 diff --git a/core/src/main/resources/hudson/model/Computer/_script_bg.properties b/core/src/main/resources/hudson/model/Computer/_script_bg.properties index bd54cfda1b31..84be069fb6ad 100644 --- a/core/src/main/resources/hudson/model/Computer/_script_bg.properties +++ b/core/src/main/resources/hudson/model/Computer/_script_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. This\ execution\ happens\ in\ the\ slave\ agent\ JVM.=\ - \u0418\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430 \u0441\u0435 \u0432\u044a\u0432 \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u043d\u0430\u0442\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 \u043d\u0430 Java \u043d\u0430 \u043e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440. + ИзпълнÑва Ñе във виртуалната машина на Java на отдалечен компютър. This\ execution\ happens\ in\ the\ agent\ JVM.=\ - \u0418\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430 \u0441\u0435 \u0432\u044a\u0432 \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u043d\u0430\u0442\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 \u043d\u0430 Java \u043d\u0430 \u043e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440. + ИзпълнÑва Ñе във виртуалната машина на Java на отдалечен компютър. diff --git a/core/src/main/resources/hudson/model/Computer/_script_de.properties b/core/src/main/resources/hudson/model/Computer/_script_de.properties index 1fc3887697e0..f055ec83cbee 100644 --- a/core/src/main/resources/hudson/model/Computer/_script_de.properties +++ b/core/src/main/resources/hudson/model/Computer/_script_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -This\ execution\ happens\ in\ the\ agent\ JVM.=Dieses Skript wird in der Java-VM des Agenten ausgef\u00FChrt. +This\ execution\ happens\ in\ the\ agent\ JVM.=Dieses Skript wird in der Java-VM des Agenten ausgeführt. diff --git a/core/src/main/resources/hudson/model/Computer/_script_es.properties b/core/src/main/resources/hudson/model/Computer/_script_es.properties index 3c7710374db1..ff7748a2d145 100644 --- a/core/src/main/resources/hudson/model/Computer/_script_es.properties +++ b/core/src/main/resources/hudson/model/Computer/_script_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -This\ execution\ happens\ in\ the\ agent\ JVM.=Esta ejecución se hace en la máquina virtual (JVM) del agente. +This\ execution\ happens\ in\ the\ agent\ JVM.=Esta ejecución se hace en la máquina virtual (JVM) del agente. diff --git a/core/src/main/resources/hudson/model/Computer/_script_it.properties b/core/src/main/resources/hudson/model/Computer/_script_it.properties index f8d32e1c722e..32122568d2d9 100644 --- a/core/src/main/resources/hudson/model/Computer/_script_it.properties +++ b/core/src/main/resources/hudson/model/Computer/_script_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/Computer/_script_pt_BR.properties b/core/src/main/resources/hudson/model/Computer/_script_pt_BR.properties index 71699e49211a..4f5257466898 100644 --- a/core/src/main/resources/hudson/model/Computer/_script_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Computer/_script_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -This\ execution\ happens\ in\ the\ agent\ JVM.=Este\ execu\u00E7\u00E3o\ acontece\ na\ JVM\ do\ agente. +This\ execution\ happens\ in\ the\ agent\ JVM.=Este\ execução\ acontece\ na\ JVM\ do\ agente. diff --git a/core/src/main/resources/hudson/model/Computer/_script_sr.properties b/core/src/main/resources/hudson/model/Computer/_script_sr.properties index 81b70f44fdd1..91e3c19d2d95 100644 --- a/core/src/main/resources/hudson/model/Computer/_script_sr.properties +++ b/core/src/main/resources/hudson/model/Computer/_script_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -This\ execution\ happens\ in\ the\ slave\ agent\ JVM.=\u0418\u0437\u0432\u0440\u0448\u0430\u0432\u0430 \u0441\u0435 \u043D\u0430 Java \u0432\u0438\u0440\u0442\u0443\u0435\u043B\u043D\u043E\u0458 \u043C\u0430\u0448\u0438\u043D\u0438 \u043D\u0430 \u0434\u0440\u0443\u0433\u043E\u043C \u0440\u0430\u0447\u0443\u043D\u0430\u0440\u0443. -This\ execution\ happens\ in\ the\ agent\ JVM.=\u0418\u0437\u0432\u0440\u0448\u0430\u0432\u0430 \u0441\u0435 \u043D\u0430 Java \u0432\u0438\u0440\u0442\u0443\u0435\u043B\u043D\u043E\u0458 \u043C\u0430\u0448\u0438\u043D\u0438 \u043D\u0430 \u0434\u0440\u0443\u0433\u043E\u043C \u0440\u0430\u0447\u0443\u043D\u0430\u0440\u0443. +This\ execution\ happens\ in\ the\ slave\ agent\ JVM.=Извршава Ñе на Java виртуелној машини на другом рачунару. +This\ execution\ happens\ in\ the\ agent\ JVM.=Извршава Ñе на Java виртуелној машини на другом рачунару. diff --git a/core/src/main/resources/hudson/model/Computer/ajaxExecutors.jelly b/core/src/main/resources/hudson/model/Computer/ajaxExecutors.jelly index 54c676d1aa78..bc47dcbb7b94 100644 --- a/core/src/main/resources/hudson/model/Computer/ajaxExecutors.jelly +++ b/core/src/main/resources/hudson/model/Computer/ajaxExecutors.jelly @@ -28,6 +28,6 @@ THE SOFTWARE. - + \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/Computer/builds_bg.properties b/core/src/main/resources/hudson/model/Computer/builds_bg.properties index 28ed4cde648b..a08b7d91f264 100644 --- a/core/src/main/resources/hudson/model/Computer/builds_bg.properties +++ b/core/src/main/resources/hudson/model/Computer/builds_bg.properties @@ -22,4 +22,4 @@ # Build History on {0} title=\ - \u0418\u0441\u0442\u043e\u0440\u0438\u044f \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f\u0442\u0430 \u043d\u0430 {0} + ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° изгражданиÑта на {0} diff --git a/core/src/main/resources/hudson/model/Computer/builds_da.properties b/core/src/main/resources/hudson/model/Computer/builds_da.properties index e937a58df595..5f8a411713d1 100644 --- a/core/src/main/resources/hudson/model/Computer/builds_da.properties +++ b/core/src/main/resources/hudson/model/Computer/builds_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=Byggehistorik p\u00e5 {0} +title=Byggehistorik pÃ¥ {0} diff --git a/core/src/main/resources/hudson/model/Computer/builds_fi.properties b/core/src/main/resources/hudson/model/Computer/builds_fi.properties index 446de4a4a6e4..7fddaedbaf12 100644 --- a/core/src/main/resources/hudson/model/Computer/builds_fi.properties +++ b/core/src/main/resources/hudson/model/Computer/builds_fi.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -title=K\u00E4\u00E4nn\u00F6shistoria suorittajalla {0} +title=Käännöshistoria suorittajalla {0} diff --git a/core/src/main/resources/hudson/model/Computer/builds_it.properties b/core/src/main/resources/hudson/model/Computer/builds_it.properties index afcb939ae651..bf6231004ff5 100644 --- a/core/src/main/resources/hudson/model/Computer/builds_it.properties +++ b/core/src/main/resources/hudson/model/Computer/builds_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,7 +21,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -disclaimer=Non è garantito che quest''elenco includa tutte le sottoattività \ - eseguite sul nodo; ad esempio, le sottoattività di una pipeline Jenkins non \ +disclaimer=Non è garantito che quest''elenco includa tutte le sottoattività \ + eseguite sul nodo; ad esempio, le sottoattività di una pipeline Jenkins non \ verranno visualizzate. title=Cronologia compilazioni su {0} diff --git a/core/src/main/resources/hudson/model/Computer/builds_ja.properties b/core/src/main/resources/hudson/model/Computer/builds_ja.properties index 9df69bee9b2a..88181c489d21 100644 --- a/core/src/main/resources/hudson/model/Computer/builds_ja.properties +++ b/core/src/main/resources/hudson/model/Computer/builds_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title={0}\u306E\u30D3\u30EB\u30C9\u5C65\u6B74 +title={0}ã®ãƒ“ルド履歴 diff --git a/core/src/main/resources/hudson/model/Computer/builds_lv.properties b/core/src/main/resources/hudson/model/Computer/builds_lv.properties index 8723c28b7096..3ef25ea9b523 100644 --- a/core/src/main/resources/hudson/model/Computer/builds_lv.properties +++ b/core/src/main/resources/hudson/model/Computer/builds_lv.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -title=B\u016Bv\u0113jumu v\u0113sture uz {0} +title=BÅ«vÄ“jumu vÄ“sture uz {0} diff --git a/core/src/main/resources/hudson/model/Computer/builds_nb_NO.properties b/core/src/main/resources/hudson/model/Computer/builds_nb_NO.properties index b2863548ded3..dc073f555ff1 100644 --- a/core/src/main/resources/hudson/model/Computer/builds_nb_NO.properties +++ b/core/src/main/resources/hudson/model/Computer/builds_nb_NO.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=Bygghistorikk p\u00E5 {0} +title=Bygghistorikk pÃ¥ {0} diff --git a/core/src/main/resources/hudson/model/Computer/builds_pl.properties b/core/src/main/resources/hudson/model/Computer/builds_pl.properties index c3ba0c8c6f3a..3aafebf65ee7 100644 --- a/core/src/main/resources/hudson/model/Computer/builds_pl.properties +++ b/core/src/main/resources/hudson/model/Computer/builds_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=Historia build\u00F3w z {0} +title=Historia buildów z {0} diff --git a/core/src/main/resources/hudson/model/Computer/builds_pt_BR.properties b/core/src/main/resources/hudson/model/Computer/builds_pt_BR.properties index 6ddc64585797..31686e6b9bf2 100644 --- a/core/src/main/resources/hudson/model/Computer/builds_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Computer/builds_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=T\u00EDtulo -disclaimer=Este hist\u00F3rico n\u00E3o \u00E9 garantido de conter todas as subtarefas executadas no n\u00F3, por exemplo, subtarefas do Jenkins Pipeline n\u00E3o ser\u00E3o mostradas. +title=Título +disclaimer=Este histórico não é garantido de conter todas as subtarefas executadas no nó, por exemplo, subtarefas do Jenkins Pipeline não serão mostradas. diff --git a/core/src/main/resources/hudson/model/Computer/builds_sk.properties b/core/src/main/resources/hudson/model/Computer/builds_sk.properties index e7bddce21922..70a031524be0 100644 --- a/core/src/main/resources/hudson/model/Computer/builds_sk.properties +++ b/core/src/main/resources/hudson/model/Computer/builds_sk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -title=Hist\u00F3ria zostaven\u00ED na {0} +title=História zostavení na {0} diff --git a/core/src/main/resources/hudson/model/Computer/builds_sr.properties b/core/src/main/resources/hudson/model/Computer/builds_sr.properties index 2594501fed26..591a6b683916 100644 --- a/core/src/main/resources/hudson/model/Computer/builds_sr.properties +++ b/core/src/main/resources/hudson/model/Computer/builds_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -title=\u0418\u0441\u0442\u043E\u0440\u0438\u0458\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u043D\u0430 {0} +title=ИÑторија изградња на {0} diff --git a/core/src/main/resources/hudson/model/Computer/builds_sv_SE.properties b/core/src/main/resources/hudson/model/Computer/builds_sv_SE.properties index ee5da91de90e..670b12d87f5c 100644 --- a/core/src/main/resources/hudson/model/Computer/builds_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Computer/builds_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=Bygghistorik p\u00E5 {0} +title=Bygghistorik pÃ¥ {0} diff --git a/core/src/main/resources/hudson/model/Computer/builds_zh_TW.properties b/core/src/main/resources/hudson/model/Computer/builds_zh_TW.properties index 846351cebfa3..cc4302edcb17 100644 --- a/core/src/main/resources/hudson/model/Computer/builds_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Computer/builds_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title={0} \u4E0A\u7684\u5EFA\u7F6E\u6B77\u7A0B +title={0} 上的建置歷程 diff --git a/core/src/main/resources/hudson/model/Computer/configure_bg.properties b/core/src/main/resources/hudson/model/Computer/configure_bg.properties index 572a3657ce78..0dea9d5caf97 100644 --- a/core/src/main/resources/hudson/model/Computer/configure_bg.properties +++ b/core/src/main/resources/hudson/model/Computer/configure_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Save=\ - \u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 + Запазване title=\ - \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u201e{0}\u201c + ÐаÑтройки на „{0}“ Name=\ - \u0418\u043c\u0435 + Име diff --git a/core/src/main/resources/hudson/model/Computer/configure_es.properties b/core/src/main/resources/hudson/model/Computer/configure_es.properties index c68e627eb320..f29e47ce2c66 100644 --- a/core/src/main/resources/hudson/model/Computer/configure_es.properties +++ b/core/src/main/resources/hudson/model/Computer/configure_es.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title={0} Configuración +title={0} Configuración Save=Guardar Name=Nombre diff --git a/core/src/main/resources/hudson/model/Computer/configure_it.properties b/core/src/main/resources/hudson/model/Computer/configure_it.properties index 16652d112dc1..2a46ab2df957 100644 --- a/core/src/main/resources/hudson/model/Computer/configure_it.properties +++ b/core/src/main/resources/hudson/model/Computer/configure_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/Computer/configure_ja.properties b/core/src/main/resources/hudson/model/Computer/configure_ja.properties index 3f29a850598a..1daa66974f3c 100644 --- a/core/src/main/resources/hudson/model/Computer/configure_ja.properties +++ b/core/src/main/resources/hudson/model/Computer/configure_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title={0} \u306E\u8A2D\u5B9A -Name=\u30CE\u30FC\u30C9\u540D -Save=\u4FDD\u5B58 +title={0} ã®è¨­å®š +Name=ノードå +Save=ä¿å­˜ diff --git a/core/src/main/resources/hudson/model/Computer/configure_pt_BR.properties b/core/src/main/resources/hudson/model/Computer/configure_pt_BR.properties index 3385a9d4c407..83841d61927d 100644 --- a/core/src/main/resources/hudson/model/Computer/configure_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Computer/configure_pt_BR.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. # {0} Configuration -title=T\u00edtulo +title=Título Save=Salvar Name=Nome diff --git a/core/src/main/resources/hudson/model/Computer/configure_ru.properties b/core/src/main/resources/hudson/model/Computer/configure_ru.properties index e08ee3b50f04..50d6d4500b00 100644 --- a/core/src/main/resources/hudson/model/Computer/configure_ru.properties +++ b/core/src/main/resources/hudson/model/Computer/configure_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u0418\u043C\u044F +Name=Ð˜Ð¼Ñ diff --git a/core/src/main/resources/hudson/model/Computer/configure_sr.properties b/core/src/main/resources/hudson/model/Computer/configure_sr.properties index cf5adb2c26f2..a66ce216b6b7 100644 --- a/core/src/main/resources/hudson/model/Computer/configure_sr.properties +++ b/core/src/main/resources/hudson/model/Computer/configure_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -title=\u041F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 "{0}" -Name=\u0418\u043C\u0435 -Save=\u0421\u0430\u0447\u0443\u0432\u0430\u0458 -Name\ is\ mandatory=\u0418\u043C\u0435 \u0458\u0435 \u043E\u0431\u0430\u0432\u0435\u0437\u043D\u043E +title=Подешавања "{0}" +Name=Име +Save=Сачувај +Name\ is\ mandatory=Име је обавезно diff --git a/core/src/main/resources/hudson/model/Computer/configure_zh_TW.properties b/core/src/main/resources/hudson/model/Computer/configure_zh_TW.properties index d8eddfc87018..1cc6f5d617ee 100644 --- a/core/src/main/resources/hudson/model/Computer/configure_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Computer/configure_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title={0} \u8a2d\u5b9a -Name=\u540D\u7A31 -Save=\u5132\u5b58 +title={0} 設定 +Name=å稱 +Save=儲存 diff --git a/core/src/main/resources/hudson/model/Computer/delete.properties b/core/src/main/resources/hudson/model/Computer/delete.properties index 112f791c470e..3e3f7b4af26b 100644 --- a/core/src/main/resources/hudson/model/Computer/delete.properties +++ b/core/src/main/resources/hudson/model/Computer/delete.properties @@ -1 +1 @@ -delete.agent=Delete the agent \u2018{0}\u2019? +delete.agent=Delete the agent ‘{0}’? diff --git a/core/src/main/resources/hudson/model/Computer/delete_bg.properties b/core/src/main/resources/hudson/model/Computer/delete_bg.properties index 807612a82022..c5ee918a67f7 100644 --- a/core/src/main/resources/hudson/model/Computer/delete_bg.properties +++ b/core/src/main/resources/hudson/model/Computer/delete_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Are\ you\ sure\ about\ deleting\ the\ slave?=\ - \u0421\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u043f\u0440\u0435\u043c\u0430\u0445\u043d\u0435\u0442\u0435 \u0442\u043e\u0437\u0438 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440? + Сигурни ли Ñте, че иÑкате да премахнете този компютър? Yes=\ - \u0414\u0430 + Да Are\ you\ sure\ about\ deleting\ the\ agent?=\ - \u0421\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u043f\u0440\u0435\u043c\u0430\u0445\u043d\u0435\u0442\u0435 \u0442\u043e\u0437\u0438 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440? + Сигурни ли Ñте, че иÑкате да премахнете този компютър? diff --git a/core/src/main/resources/hudson/model/Computer/delete_de.properties b/core/src/main/resources/hudson/model/Computer/delete_de.properties index 7af16bdc42f0..36fe894a1483 100644 --- a/core/src/main/resources/hudson/model/Computer/delete_de.properties +++ b/core/src/main/resources/hudson/model/Computer/delete_de.properties @@ -1,2 +1,2 @@ Yes=Ja -Are\ you\ sure\ about\ deleting\ the\ agent?=M\u00F6chten Sie diesen Agenten wirklich entfernen? +Are\ you\ sure\ about\ deleting\ the\ agent?=Möchten Sie diesen Agenten wirklich entfernen? diff --git a/core/src/main/resources/hudson/model/Computer/delete_es.properties b/core/src/main/resources/hudson/model/Computer/delete_es.properties index 2bfd1f95b0a3..cfa2048c7944 100644 --- a/core/src/main/resources/hudson/model/Computer/delete_es.properties +++ b/core/src/main/resources/hudson/model/Computer/delete_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ deleting\ the\ agent?=¿Estás seguro de querer borrar este agente? -Yes=Sí +Are\ you\ sure\ about\ deleting\ the\ agent?=¿Estás seguro de querer borrar este agente? +Yes=Sí diff --git a/core/src/main/resources/hudson/model/Computer/delete_it.properties b/core/src/main/resources/hudson/model/Computer/delete_it.properties index 916c27b01dd9..c75d81ab961d 100644 --- a/core/src/main/resources/hudson/model/Computer/delete_it.properties +++ b/core/src/main/resources/hudson/model/Computer/delete_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,4 +22,4 @@ # THE SOFTWARE. delete.agent=Eliminare l''agente "{0}"? -Yes=Sì +Yes=Sì diff --git a/core/src/main/resources/hudson/model/Computer/delete_ja.properties b/core/src/main/resources/hudson/model/Computer/delete_ja.properties index 6a1442818406..5c9309d2906e 100644 --- a/core/src/main/resources/hudson/model/Computer/delete_ja.properties +++ b/core/src/main/resources/hudson/model/Computer/delete_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Yes=\u306F\u3044 +Yes=ã¯ã„ diff --git a/core/src/main/resources/hudson/model/Computer/delete_lv.properties b/core/src/main/resources/hudson/model/Computer/delete_lv.properties index 3d7aed4a563d..36cff5933bca 100644 --- a/core/src/main/resources/hudson/model/Computer/delete_lv.properties +++ b/core/src/main/resources/hudson/model/Computer/delete_lv.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Yes=J\u0101 +Yes=JÄ diff --git a/core/src/main/resources/hudson/model/Computer/delete_ru.properties b/core/src/main/resources/hudson/model/Computer/delete_ru.properties index b7b2dfd7e233..e1f83648e330 100644 --- a/core/src/main/resources/hudson/model/Computer/delete_ru.properties +++ b/core/src/main/resources/hudson/model/Computer/delete_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Yes=\u0414\u0430 +Yes=Да diff --git a/core/src/main/resources/hudson/model/Computer/delete_sr.properties b/core/src/main/resources/hudson/model/Computer/delete_sr.properties index c6c8363f2ef8..92cac21eb6a6 100644 --- a/core/src/main/resources/hudson/model/Computer/delete_sr.properties +++ b/core/src/main/resources/hudson/model/Computer/delete_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Are\ you\ sure\ about\ deleting\ the\ agent?=\u0414\u0430 \u043B\u0438 \u0441\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043D\u0438 \u0434\u0430 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u0443\u043A\u043B\u043E\u043D\u0438\u0442\u0435 \u0430\u0433\u0435\u043D\u0442\u0430? -Yes=\u0414\u0430 -Are\ you\ sure\ about\ deleting\ the\ slave?=\u0414\u0430 \u043B\u0438 \u0441\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043D\u0438 \u0434\u0430 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u0443\u043A\u043B\u043E\u043D\u0438\u0442\u0435 \u043F\u043E\u043C\u043E\u045B\u043D\u0438\u043A\u0430? +Are\ you\ sure\ about\ deleting\ the\ agent?=Да ли Ñте Ñигурни да желите да уклоните агента? +Yes=Да +Are\ you\ sure\ about\ deleting\ the\ slave?=Да ли Ñте Ñигурни да желите да уклоните помоћника? diff --git a/core/src/main/resources/hudson/model/Computer/delete_zh_TW.properties b/core/src/main/resources/hudson/model/Computer/delete_zh_TW.properties index 83db3cdbc32d..91fda1edf932 100644 --- a/core/src/main/resources/hudson/model/Computer/delete_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Computer/delete_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Yes=\u662f +Yes=是 diff --git a/core/src/main/resources/hudson/model/Computer/index.properties b/core/src/main/resources/hudson/model/Computer/index.properties index 1a26004428ba..edbed77ffe79 100644 --- a/core/src/main/resources/hudson/model/Computer/index.properties +++ b/core/src/main/resources/hudson/model/Computer/index.properties @@ -24,4 +24,4 @@ submit.temporarilyOffline=Bring this node back online submit.not.temporarilyOffline=Mark this node temporarily offline submit.updateOfflineCause=Update offline reason title.projects_tied_on=Projects tied to {0} -title.no_manual_launch=This node\u2019s availability policy is: \u201c{0}\u201d Currently, this mandates that the node be offline. +title.no_manual_launch=This node’s availability policy is: “{0}†Currently, this mandates that the node be offline. diff --git a/core/src/main/resources/hudson/model/Computer/index_bg.properties b/core/src/main/resources/hudson/model/Computer/index_bg.properties index ef4c3adc9ca5..1aab9cba998c 100644 --- a/core/src/main/resources/hudson/model/Computer/index_bg.properties +++ b/core/src/main/resources/hudson/model/Computer/index_bg.properties @@ -21,21 +21,21 @@ # THE SOFTWARE. None=\ - \u041d\u044f\u043c\u0430 + ÐÑма submit.not.temporarilyOffline=\ - \u041e\u0442\u0431\u0435\u043b\u044f\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043c\u0430\u0448\u0438\u043d\u0430\u0442\u0430, \u0447\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u043d\u0435 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f + ОтбелÑзване на машината, че временно не е на Ð»Ð¸Ð½Ð¸Ñ title.projects_tied_on=\ - \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f, \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430\u043d\u0438 \u043d\u0430 \u201e{0}\u201c + ИзгражданиÑ, изпълнÑвани на „{0}“ Created\ by=\ - \u0421\u044a\u0437\u0434\u0430\u0434\u0435\u043d\u043e \u043e\u0442 + Създадено от title.no_manual_launch=\ - \u041f\u043e\u043b\u0438\u0442\u0438\u043a\u0430\u0442\u0430, \u043a\u043e\u0433\u0430 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u044a\u0442 \u0434\u0430 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f, \u0435: \u201e{0}\u201c. \u0422\u043e\u0432\u0430 \u043e\u0437\u043d\u0430\u0447\u0430\u0432\u0430, \u0447\u0435 \u0432\ - \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u043d\u0435 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f. + Политиката, кога компютърът да е на линиÑ, е: „{0}“. Това означава, че в\ + момента не е на линиÑ. submit.updateOfflineCause=\ - \u041f\u0440\u043e\u043c\u044f\u043d\u0430 \u043d\u0430 \u043f\u0440\u0438\u0447\u0438\u043d\u0430\u0442\u0430 \u0434\u0430 \u043d\u0435 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f + ПромÑна на причината да не е на Ð»Ð¸Ð½Ð¸Ñ submit.temporarilyOffline=\ - \u041a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u044a\u0442 \u0434\u0430 \u043c\u0438\u043d\u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f + Компютърът да мине на Ð»Ð¸Ð½Ð¸Ñ Labels=\ - \u0415\u0442\u0438\u043a\u0435\u0442\u0438 + Етикети anonymous\ user=\ - \u0430\u043d\u043e\u043d\u0438\u043c\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b + анонимен потребител diff --git a/core/src/main/resources/hudson/model/Computer/index_cs.properties b/core/src/main/resources/hudson/model/Computer/index_cs.properties index 820e6a867ae3..dd9ea0ba9263 100644 --- a/core/src/main/resources/hudson/model/Computer/index_cs.properties +++ b/core/src/main/resources/hudson/model/Computer/index_cs.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Labels=Popisky -submit.not.temporarilyOffline=Ozna\u010Dit uzel jako do\u010Dasn\u011B nedostupn\u00FD -submit.temporarilyOffline=P\u0159ipojit uzel zp\u011Bt +submit.not.temporarilyOffline=OznaÄit uzel jako doÄasnÄ› nedostupný +submit.temporarilyOffline=PÅ™ipojit uzel zpÄ›t diff --git a/core/src/main/resources/hudson/model/Computer/index_da.properties b/core/src/main/resources/hudson/model/Computer/index_da.properties index bf5029dcc613..2a650b65a6e2 100644 --- a/core/src/main/resources/hudson/model/Computer/index_da.properties +++ b/core/src/main/resources/hudson/model/Computer/index_da.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title.no_manual_launch=Denne node har en tilg\u00e6ngelighedspolitik der vil "{0}". For nuv\u00e6rende kr\u00e6ver denne at noden er offline. +title.no_manual_launch=Denne node har en tilgængelighedspolitik der vil "{0}". For nuværende kræver denne at noden er offline. Labels\:=Etiketter\: submit.temporarilyOffline=Denne node er tilbage online None=Ingen diff --git a/core/src/main/resources/hudson/model/Computer/index_de.properties b/core/src/main/resources/hudson/model/Computer/index_de.properties index 59c4097a2318..0146af0e8f0d 100644 --- a/core/src/main/resources/hudson/model/Computer/index_de.properties +++ b/core/src/main/resources/hudson/model/Computer/index_de.properties @@ -1,9 +1,9 @@ Created\ by=Erstellt von anonymous\ user=Anonymer Benutzer submit.temporarilyOffline=Knoten wieder anschalten -submit.not.temporarilyOffline=Knoten tempor\u00E4r abschalten +submit.not.temporarilyOffline=Knoten temporär abschalten submit.updateOfflineCause=Offline Grund aktualisieren -title.no_manual_launch=Dieser Knoten verwendet die Verf\u00FCgbarkeitsregel \u201E{0}\u201C. \ +title.no_manual_launch=Dieser Knoten verwendet die Verfügbarkeitsregel „{0}“. \ Dies bedeutet momentan, dass der Knoten offline ist. title.projects_tied_on=Projekte, die an {0} gebunden sind None=Keine diff --git a/core/src/main/resources/hudson/model/Computer/index_es.properties b/core/src/main/resources/hudson/model/Computer/index_es.properties index 0a10ed34c7f0..da1d3df434b8 100644 --- a/core/src/main/resources/hudson/model/Computer/index_es.properties +++ b/core/src/main/resources/hudson/model/Computer/index_es.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. submit.temporarilyOffline=Poner este nodo de nuevo en linea -submit.not.temporarilyOffline=Marcar este nodo fuera de línea temporalmente +submit.not.temporarilyOffline=Marcar este nodo fuera de línea temporalmente title.projects_tied_on=Proyectos vinculados a {0} -submit.updateOfflineCause=Actualizar el motivo de desconexi\u00F3n -title.no_manual_launch=Este nodo tiene una política de disponibilidad: "{0}". Esto supone que el nodo esté fuera de línea. +submit.updateOfflineCause=Actualizar el motivo de desconexión +title.no_manual_launch=Este nodo tiene una política de disponibilidad: "{0}". Esto supone que el nodo esté fuera de línea. None=Ninguno Labels\:=Etiquetas diff --git a/core/src/main/resources/hudson/model/Computer/index_fi.properties b/core/src/main/resources/hudson/model/Computer/index_fi.properties index e52bcb741fbd..ba0bb9151b79 100644 --- a/core/src/main/resources/hudson/model/Computer/index_fi.properties +++ b/core/src/main/resources/hudson/model/Computer/index_fi.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -None=Ei mit\u00E4\u00E4n +None=Ei mitään diff --git a/core/src/main/resources/hudson/model/Computer/index_fr.properties b/core/src/main/resources/hudson/model/Computer/index_fr.properties index fa177d6c2691..12de70951fa3 100644 --- a/core/src/main/resources/hudson/model/Computer/index_fr.properties +++ b/core/src/main/resources/hudson/model/Computer/index_fr.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -submit.temporarilyOffline=Basculer le n\u0153ud en ligne -submit.not.temporarilyOffline=Marquer ce n\u0153ud comme temporairement hors ligne -Labels\:=Libellés : -title.projects_tied_on=Projets rattachés à {0} +submit.temporarilyOffline=Basculer le nÅ“ud en ligne +submit.not.temporarilyOffline=Marquer ce nÅ“ud comme temporairement hors ligne +Labels\:=Libellés : +title.projects_tied_on=Projets rattachés à {0} None=Aucun submit.updateOfflineCause=Changer le commentaire de mise hors-ligne -title.no_manual_launch=Ce noeud a une stratégie de disponiblité de type "{0}". Actuellement, cela oblige le noeud a être déconnecté. +title.no_manual_launch=Ce noeud a une stratégie de disponiblité de type "{0}". Actuellement, cela oblige le noeud a être déconnecté. diff --git a/core/src/main/resources/hudson/model/Computer/index_he.properties b/core/src/main/resources/hudson/model/Computer/index_he.properties index 2b964eef05e5..20bb928ff77d 100644 --- a/core/src/main/resources/hudson/model/Computer/index_he.properties +++ b/core/src/main/resources/hudson/model/Computer/index_he.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Labels=\u05EA\u05D2\u05D9\u05D5\u05EA -None=\u05DC\u05DC\u05D0 -title.projects_tied_on=\u05E4\u05E8\u05D5\u05D9\u05D9\u05E7\u05D8\u05D9\u05DD \u05D4\u05DE\u05E7\u05D5\u05E9\u05E8\u05D9\u05DD \u05DC +Labels=תגיות +None=×œ×œ× +title.projects_tied_on=×¤×¨×•×™×™×§×˜×™× ×”×ž×§×•×©×¨×™× ×œ diff --git a/core/src/main/resources/hudson/model/Computer/index_it.properties b/core/src/main/resources/hudson/model/Computer/index_it.properties index 97b6032b9178..aa6d254d35c0 100644 --- a/core/src/main/resources/hudson/model/Computer/index_it.properties +++ b/core/src/main/resources/hudson/model/Computer/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -27,6 +27,6 @@ submit.not.temporarilyOffline=Contrassegna questo nodo come temporaneamente \ non in linea submit.temporarilyOffline=Riporta questo nodo in linea submit.updateOfflineCause=Aggiorna motivo non in linea -title.no_manual_launch=La politica di disponibilità di questo nodo è: "{0}". \ +title.no_manual_launch=La politica di disponibilità di questo nodo è: "{0}". \ Attualmente, essa richiede che questo nodo sia non in linea. title.projects_tied_on=Progetti legati a {0} diff --git a/core/src/main/resources/hudson/model/Computer/index_ja.properties b/core/src/main/resources/hudson/model/Computer/index_ja.properties index 705dbbf99a3a..3452c7989b1c 100644 --- a/core/src/main/resources/hudson/model/Computer/index_ja.properties +++ b/core/src/main/resources/hudson/model/Computer/index_ja.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -submit.temporarilyOffline=\u3053\u306e\u30ce\u30fc\u30c9\u3092\u30aa\u30f3\u30e9\u30a4\u30f3\u306b\u623b\u3059 -submit.not.temporarilyOffline=\u3053\u306e\u30ce\u30fc\u30c9\u3092\u4e00\u6642\u7684\u306b\u30aa\u30d5\u30e9\u30a4\u30f3\u306b\u3059\u308b -None=\u306a\u3057 -Labels=\u30e9\u30d9\u30eb -title.projects_tied_on={0}\u3067\u306e\u307f\u8d77\u52d5\u3059\u308b\u30d7\u30ed\u30b8\u30a7\u30af\u30c8 -title.no_manual_launch=\u3053\u306e\u30ce\u30fc\u30c9\u306e\u53ef\u7528\u6027\u306e\u30dd\u30ea\u30b7\u30fc\u306f''{0}''\u3067\u3059\u3002\u73fe\u5728\u3001\u305d\u306e\u30dd\u30ea\u30b7\u30fc\u306b\u57fa\u3065\u3044\u3066\u3001\u3053\u306e\u30ce\u30fc\u30c9\u306f\u30aa\u30d5\u30e9\u30a4\u30f3\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u3002 -Created\ by=\u30ce\u30fc\u30c9\u4f5c\u6210\u8005 -anonymous\ user=\u533f\u540d\u30e6\u30fc\u30b6 -submit.updateOfflineCause=\u30aa\u30d5\u30e9\u30a4\u30f3\u306e\u7406\u7531\u3092\u66f4\u65b0 +submit.temporarilyOffline=ã“ã®ãƒŽãƒ¼ãƒ‰ã‚’オンラインã«æˆ»ã™ +submit.not.temporarilyOffline=ã“ã®ãƒŽãƒ¼ãƒ‰ã‚’一時的ã«ã‚ªãƒ•ãƒ©ã‚¤ãƒ³ã«ã™ã‚‹ +None=ãªã— +Labels=ラベル +title.projects_tied_on={0}ã§ã®ã¿èµ·å‹•ã™ã‚‹ãƒ—ロジェクト +title.no_manual_launch=ã“ã®ãƒŽãƒ¼ãƒ‰ã®å¯ç”¨æ€§ã®ãƒãƒªã‚·ãƒ¼ã¯''{0}''ã§ã™ã€‚ç¾åœ¨ã€ãã®ãƒãƒªã‚·ãƒ¼ã«åŸºã¥ã„ã¦ã€ã“ã®ãƒŽãƒ¼ãƒ‰ã¯ã‚ªãƒ•ãƒ©ã‚¤ãƒ³ã«ãªã£ã¦ã„ã¾ã™ã€‚ +Created\ by=ノード作æˆè€… +anonymous\ user=匿åユーザ +submit.updateOfflineCause=オフラインã®ç†ç”±ã‚’æ›´æ–° diff --git a/core/src/main/resources/hudson/model/Computer/index_ko.properties b/core/src/main/resources/hudson/model/Computer/index_ko.properties index a8fb5c01150c..23a87f7df222 100644 --- a/core/src/main/resources/hudson/model/Computer/index_ko.properties +++ b/core/src/main/resources/hudson/model/Computer/index_ko.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Labels=\uB808\uC774\uBE14 -None=\uC5C6\uC74C -submit.not.temporarilyOffline=\uC784\uC2DC\uB85C \uB178\uB4DC \uC624\uD504\uB77C\uC778\uC73C\uB85C \uBCC0\uACBD -title.projects_tied_on={0}\uC5D0 \uC5F0\uACB0\uB41C \uD504\uB85C\uC81D\uD2B8 +Labels=ë ˆì´ë¸” +None=ì—†ìŒ +submit.not.temporarilyOffline=임시로 노드 오프ë¼ì¸ìœ¼ë¡œ 변경 +title.projects_tied_on={0}ì— ì—°ê²°ëœ í”„ë¡œì íŠ¸ diff --git a/core/src/main/resources/hudson/model/Computer/index_lt.properties b/core/src/main/resources/hudson/model/Computer/index_lt.properties index 3ba411d3ed32..a582f041c5ed 100644 --- a/core/src/main/resources/hudson/model/Computer/index_lt.properties +++ b/core/src/main/resources/hudson/model/Computer/index_lt.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -submit.not.temporarilyOffline=Pa\u017Eym\u0117ti \u0161\u012F mazg\u0105 laikinai atjungtu +submit.not.temporarilyOffline=PažymÄ—ti šį mazgÄ… laikinai atjungtu title.projects_tied_on=Prie {0} prisieti projektai diff --git a/core/src/main/resources/hudson/model/Computer/index_lv.properties b/core/src/main/resources/hudson/model/Computer/index_lv.properties index 54ab4aba3a09..9d75f63d081a 100644 --- a/core/src/main/resources/hudson/model/Computer/index_lv.properties +++ b/core/src/main/resources/hudson/model/Computer/index_lv.properties @@ -22,4 +22,4 @@ Labels=Birkas None=Neveins -title.projects_tied_on=Projekti, kuri piesaist\u012Bti pie {0} +title.projects_tied_on=Projekti, kuri piesaistÄ«ti pie {0} diff --git a/core/src/main/resources/hudson/model/Computer/index_pl.properties b/core/src/main/resources/hudson/model/Computer/index_pl.properties index 4839c8ae016c..54ae4fae3f99 100644 --- a/core/src/main/resources/hudson/model/Computer/index_pl.properties +++ b/core/src/main/resources/hudson/model/Computer/index_pl.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -None=\u017Badne -anonymous\ user=anonimowy u\u017Cytkownik +None=Å»adne +anonymous\ user=anonimowy użytkownik submit.not.temporarilyOffline=Zaznacz tymczasowo offline -title.projects_tied_on=Projekty przywi\u0105zane do w\u0119z\u0142a {0} +title.projects_tied_on=Projekty przywiÄ…zane do wÄ™zÅ‚a {0} diff --git a/core/src/main/resources/hudson/model/Computer/index_pt_BR.properties b/core/src/main/resources/hudson/model/Computer/index_pt_BR.properties index 4eb5e3670e98..398251063db9 100644 --- a/core/src/main/resources/hudson/model/Computer/index_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Computer/index_pt_BR.properties @@ -21,14 +21,14 @@ # THE SOFTWARE. # This node has an availability policy that will "{0}". Currently, this mandates that the node be off-line. -title.no_manual_launch=Esse n\u00f3 tem uma pol\u00edtica de disponibilidade "{0}". Normalmente, o padr\u00e3o eh ficar off-line. +title.no_manual_launch=Esse nó tem uma política de disponibilidade "{0}". Normalmente, o padrão eh ficar off-line. # This node is back online -submit.temporarilyOffline=Esse n\u00f3 voltou a ficar online +submit.temporarilyOffline=Esse nó voltou a ficar online None=Nenhum # Mark this node temporarily offline -submit.not.temporarilyOffline=Marcar esse n\u00f3 para ficar temporariamente off-line +submit.not.temporarilyOffline=Marcar esse nó para ficar temporariamente off-line # Projects tied to {0} title.projects_tied_on=Projetos vinculados a {0} # Update offline reason submit.updateOfflineCause=Atualizar o motivo de ficar offline -Labels=R\u00f3tulos +Labels=Rótulos diff --git a/core/src/main/resources/hudson/model/Computer/index_ru.properties b/core/src/main/resources/hudson/model/Computer/index_ru.properties index cc1e2c52b6f0..862d4760d567 100644 --- a/core/src/main/resources/hudson/model/Computer/index_ru.properties +++ b/core/src/main/resources/hudson/model/Computer/index_ru.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Labels=\u041c\u0435\u0442\u043a\u0438 -None=\u041d\u0435\u0442 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 -submit.not.temporarilyOffline=\u041f\u043e\u043c\u0435\u0442\u0438\u0442\u044c \u044d\u0442\u043e\u0442 \u0443\u0437\u0435\u043b \u043a\u0430\u043a \u043a\u0430\u043a \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u043d\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0439 -submit.temporarilyOffline=\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u0443\u0437\u0435\u043b -submit.updateOfflineCause=\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f -title.projects_tied_on=\u041f\u0440\u043e\u0435\u043a\u0442\u044b, \u043f\u0440\u0438\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u043a {0} +Labels=Метки +None=Ðет информации +submit.not.temporarilyOffline=Пометить Ñтот узел как как временно недоÑтупный +submit.temporarilyOffline=Включить данный узел +submit.updateOfflineCause=Обновить причину Ð¾Ñ‚ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ +title.projects_tied_on=Проекты, привÑзанные к {0} diff --git a/core/src/main/resources/hudson/model/Computer/index_sk.properties b/core/src/main/resources/hudson/model/Computer/index_sk.properties index c54cc0404d91..efd8317f774a 100644 --- a/core/src/main/resources/hudson/model/Computer/index_sk.properties +++ b/core/src/main/resources/hudson/model/Computer/index_sk.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -Created\ by=Vytvoren\u00FD pou\u017E\u00EDvate\u013Eom -Labels=Zna\u010Dky -None=\u017Diadny -submit.not.temporarilyOffline=Ozna\u010D stroj ako do\u010Dasne odpojen\u00FD -title.projects_tied_on=Projekty naviazan\u00E9 na {0} +Created\ by=Vytvorený používateľom +Labels=ZnaÄky +None=Žiadny +submit.not.temporarilyOffline=OznaÄ stroj ako doÄasne odpojený +title.projects_tied_on=Projekty naviazané na {0} diff --git a/core/src/main/resources/hudson/model/Computer/index_sr.properties b/core/src/main/resources/hudson/model/Computer/index_sr.properties index 461b7036554c..68810819ccea 100644 --- a/core/src/main/resources/hudson/model/Computer/index_sr.properties +++ b/core/src/main/resources/hudson/model/Computer/index_sr.properties @@ -1,13 +1,13 @@ # This file is under the MIT License by authors -submit.temporarilyOffline=\u041F\u043E\u043D\u043E\u0432\u043E \u043F\u0440\u0438\u043A\u043E\u043F\u0447\u0430\u0458 \u043C\u0430\u0448\u0438\u043D\u0443 -submit.updateOfflineCause=\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u0458 \u0440\u0430\u0437\u043B\u043E\u0433 \u043E\u0442\u043A\u043E\u043F\u0447\u0435\u045A\u0430 +submit.temporarilyOffline=Поново прикопчај машину +submit.updateOfflineCause=Ðжурирај разлог откопчења submit.not.temporarilyOffline= -title.no_manual_launch=Availability policy \u0437\u0430 \u043C\u0430\u0448\u0438\u043D\u0443 \u0458\u0435: \u201C{0}\u201D, \u0448\u0442\u043E \u0438\u0437\u0438\u0441\u043A\u0430\u0432\u0430 \u0434\u0430 \u043C\u0430\u0448\u0438\u043D\u0430 \u0441\u0430\u0434\u0430 \u0431\u0443\u0434\u0435 \u0431\u0438\u043B\u0430 \u043D\u0435\u043F\u043E\u0432\u0435\u0437\u0430\u043D\u0430. -Created\ by=\u041A\u0440\u0435\u0438\u0440\u0430\u043D\u043E \u043E\u0434 \u0441\u0442\u0440\u0430\u043D\u0435 -anonymous\ user=\u0430\u043D\u043E\u043D\u0438\u043C\u043D\u0438 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A -Labels=\u041B\u0430\u0431\u0435\u043B\u0435 -title.projects_tied_on=\u041F\u0440\u043E\u0458\u0435\u043A\u0442\u0438 \u0432\u0435\u0437\u0430\u043D\u0438 \u043D\u0430 {0} -None=\u041D\u0435\u043C\u0430 -Labels\=\u30E9\u30D9\u30EB= -Labels\:=\u041B\u0430\u0431\u0435\u043B\u0430: +title.no_manual_launch=Availability policy за машину је: “{0}â€, што изиÑкава да машина Ñада буде била неповезана. +Created\ by=Креирано од Ñтране +anonymous\ user=анонимни кориÑник +Labels=Лабеле +title.projects_tied_on=Пројекти везани на {0} +None=Ðема +Labels\=ラベル= +Labels\:=Лабела: diff --git a/core/src/main/resources/hudson/model/Computer/index_sv_SE.properties b/core/src/main/resources/hudson/model/Computer/index_sv_SE.properties index eeb75ab5848e..24298564cfba 100644 --- a/core/src/main/resources/hudson/model/Computer/index_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Computer/index_sv_SE.properties @@ -22,6 +22,6 @@ Labels=Etiketter None=Inga -submit.not.temporarilyOffline=Markera noden som tillf\u00E4lligt ifr\u00E5nkopplad -submit.temporarilyOffline=Noden \u00E4r online igen +submit.not.temporarilyOffline=Markera noden som tillfälligt ifrÃ¥nkopplad +submit.temporarilyOffline=Noden är online igen title.projects_tied_on=Jobb knutna till {0} diff --git a/core/src/main/resources/hudson/model/Computer/index_tr.properties b/core/src/main/resources/hudson/model/Computer/index_tr.properties index 34ef39a70cc7..8bd8d1685763 100644 --- a/core/src/main/resources/hudson/model/Computer/index_tr.properties +++ b/core/src/main/resources/hudson/model/Computer/index_tr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -None=Hi\u00E7biri -title.projects_tied_on={0}''e ba\u011Fl\u0131 projeler +None=Hiçbiri +title.projects_tied_on={0}''e baÄŸlı projeler diff --git a/core/src/main/resources/hudson/model/Computer/index_uk.properties b/core/src/main/resources/hudson/model/Computer/index_uk.properties index 891eb7f77f07..97fb379eb9e4 100644 --- a/core/src/main/resources/hudson/model/Computer/index_uk.properties +++ b/core/src/main/resources/hudson/model/Computer/index_uk.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -None=\u041D\u0456\u0447\u043E\u0433\u043E -submit.not.temporarilyOffline=\u0422\u0438\u043C\u0447\u0430\u0441\u043E\u0432\u043E \u0432\u0438\u043C\u043A\u043D\u0443\u0442\u0438 \u0446\u0435\u0439 \u0432\u0443\u0437\u043E\u043B -title.projects_tied_on=\u041F\u0440\u043E\u0435\u043A\u0442\u0438, \u0449\u043E \u043D\u0430\u043B\u0435\u0436\u0430\u0442\u044C \u0434\u043E {0} +None=Ðічого +submit.not.temporarilyOffline=ТимчаÑово вимкнути цей вузол +title.projects_tied_on=Проекти, що належать до {0} diff --git a/core/src/main/resources/hudson/model/Computer/index_zh_TW.properties b/core/src/main/resources/hudson/model/Computer/index_zh_TW.properties index e20c2420c890..e8d555b72008 100644 --- a/core/src/main/resources/hudson/model/Computer/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Computer/index_zh_TW.properties @@ -20,15 +20,15 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -submit.temporarilyOffline=\u9019\u500B\u7BC0\u9EDE\u91CD\u65B0\u4E0A\u7DDA -submit.not.temporarilyOffline=\u5C07\u672C\u7BC0\u9EDE\u6A19\u793A\u70BA\u66AB\u6642\u96E2\u7DDA -submit.updateOfflineCause=\u66F4\u65B0\u96E2\u7DDA\u539F\u56E0 +submit.temporarilyOffline=這個節點é‡æ–°ä¸Šç·š +submit.not.temporarilyOffline=將本節點標示為暫時離線 +submit.updateOfflineCause=更新離線原因 -Created\ by=\u5efa\u7acb\u8005: -anonymous\ user=\u533f\u540d\u4f7f\u7528\u8005 +Created\ by=建立者: +anonymous\ user=匿å使用者 -title.no_manual_launch=\u672C\u7BC0\u9EDE\u5DF2\u8A2D\u5B9A\u53EF\u7528\u539F\u5247 "{0}"\u3002\u73FE\u5728\u662F\u8A72\u7BC0\u9EDE\u7684\u96E2\u7DDA\u6642\u9593\u3002 -Labels\:=\u6a19\u7c64: +title.no_manual_launch=本節點已設定å¯ç”¨åŽŸå‰‡ "{0}"。ç¾åœ¨æ˜¯è©²ç¯€é»žçš„離線時間。 +Labels\:=標籤: -title.projects_tied_on=\u7D81\u5B9A\u5230 {0} \u7684\u5C08\u6848 -None=\u7121 +title.projects_tied_on=ç¶å®šåˆ° {0} 的專案 +None=ç„¡ diff --git a/core/src/main/resources/hudson/model/Computer/markOffline_bg.properties b/core/src/main/resources/hudson/model/Computer/markOffline_bg.properties index 5b2494762b80..58532237d3cd 100644 --- a/core/src/main/resources/hudson/model/Computer/markOffline_bg.properties +++ b/core/src/main/resources/hudson/model/Computer/markOffline_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. title=\ - \u0418\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u201e{0}\u201c \u0438\u0437\u0432\u044a\u043d \u043b\u0438\u043d\u0438\u044f + Извеждане на „{0}“ извън Ð»Ð¸Ð½Ð¸Ñ blurb=\ - \u041c\u043e\u0436\u0435 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043f\u0440\u0438\u0447\u0438\u043d\u0430, \u0437\u0430\u0449\u043e \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u044a\u0442 \u0432 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u043d\u0435 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f: + Може да добавите причина, защо компютърът в момента не е на линиÑ: submit=\ - \u0422\u043e\u0437\u0438 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0434\u0430 \u0435 \u0438\u0437\u0432\u044a\u043d \u043b\u0438\u043d\u0438\u044f + Този компютър временно да е извън Ð»Ð¸Ð½Ð¸Ñ diff --git a/core/src/main/resources/hudson/model/Computer/markOffline_da.properties b/core/src/main/resources/hudson/model/Computer/markOffline_da.properties index 0f26354a0da9..05006ee14e43 100644 --- a/core/src/main/resources/hudson/model/Computer/markOffline_da.properties +++ b/core/src/main/resources/hudson/model/Computer/markOffline_da.properties @@ -22,4 +22,4 @@ title=Tager {0} Offline submit=Marker denne node som midlertidigt offline -blurb=Du kan her skrive hvorfor du tager noden offline, s\u00e5 andre let kan se hvorfor: +blurb=Du kan her skrive hvorfor du tager noden offline, sÃ¥ andre let kan se hvorfor: diff --git a/core/src/main/resources/hudson/model/Computer/markOffline_de.properties b/core/src/main/resources/hudson/model/Computer/markOffline_de.properties index b61b8960ba44..daecc556f734 100644 --- a/core/src/main/resources/hudson/model/Computer/markOffline_de.properties +++ b/core/src/main/resources/hudson/model/Computer/markOffline_de.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=Knoten {0} temporär abschalten +title=Knoten {0} temporär abschalten blurb=\ - Sie können optional kurz erklären, warum Sie den Knoten abschalten. Dieser Text ist \ - für andere Benutzer sichtbar: -submit=Knoten temporär abschalten + Sie können optional kurz erklären, warum Sie den Knoten abschalten. Dieser Text ist \ + für andere Benutzer sichtbar: +submit=Knoten temporär abschalten diff --git a/core/src/main/resources/hudson/model/Computer/markOffline_es.properties b/core/src/main/resources/hudson/model/Computer/markOffline_es.properties index ba5902f47fd0..6bdc3127d386 100644 --- a/core/src/main/resources/hudson/model/Computer/markOffline_es.properties +++ b/core/src/main/resources/hudson/model/Computer/markOffline_es.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=Poniendo {0} fuera de línea. -blurb=Opcionalmente puedes especificar porqué pones este nodo fuera de línea: -submit=Marcar este nodo para que esté permanentemente fuera de línea +title=Poniendo {0} fuera de línea. +blurb=Opcionalmente puedes especificar porqué pones este nodo fuera de línea: +submit=Marcar este nodo para que esté permanentemente fuera de línea diff --git a/core/src/main/resources/hudson/model/Computer/markOffline_it.properties b/core/src/main/resources/hudson/model/Computer/markOffline_it.properties index 06f424d6f689..575f1d673a63 100644 --- a/core/src/main/resources/hudson/model/Computer/markOffline_it.properties +++ b/core/src/main/resources/hudson/model/Computer/markOffline_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,7 +21,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Facoltativamente, è possibile spiegare il motivo per cui si sta ponendo \ +blurb=Facoltativamente, è possibile spiegare il motivo per cui si sta ponendo \ questo nodo non in linea, in modo che altri possano vederlo: submit=Contrassegna questo nodo come temporaneamente non in linea title=Poni {0} non in linea diff --git a/core/src/main/resources/hudson/model/Computer/markOffline_ja.properties b/core/src/main/resources/hudson/model/Computer/markOffline_ja.properties index 5b7e905653e7..9ebce660a909 100644 --- a/core/src/main/resources/hudson/model/Computer/markOffline_ja.properties +++ b/core/src/main/resources/hudson/model/Computer/markOffline_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title={0} \u306E\u30AA\u30D5\u30E9\u30A4\u30F3 -blurb=\u4ED6\u306E\u4EBA\u306B\u3082\u5206\u304B\u308B\u3088\u3046\u306B\u3001\u3053\u306E\u30CE\u30FC\u30C9\u3092\u30AA\u30D5\u30E9\u30A4\u30F3\u306B\u3059\u308B\u7406\u7531\u3092\u8AAC\u660E\u3059\u308B\u3053\u3068\u3082\u3067\u304D\u307E\u3059\u3002 -submit=\u3053\u306E\u30CE\u30FC\u30C9\u3092\u4E00\u6642\u7684\u306B\u30AA\u30D5\u30E9\u30A4\u30F3\u306B\u3059\u308B +title={0} ã®ã‚ªãƒ•ãƒ©ã‚¤ãƒ³ +blurb=ä»–ã®äººã«ã‚‚分ã‹ã‚‹ã‚ˆã†ã«ã€ã“ã®ãƒŽãƒ¼ãƒ‰ã‚’オフラインã«ã™ã‚‹ç†ç”±ã‚’説明ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ +submit=ã“ã®ãƒŽãƒ¼ãƒ‰ã‚’一時的ã«ã‚ªãƒ•ãƒ©ã‚¤ãƒ³ã«ã™ã‚‹ diff --git a/core/src/main/resources/hudson/model/Computer/markOffline_pl.properties b/core/src/main/resources/hudson/model/Computer/markOffline_pl.properties index c374a9ff0ac2..f33b2eefbb56 100644 --- a/core/src/main/resources/hudson/model/Computer/markOffline_pl.properties +++ b/core/src/main/resources/hudson/model/Computer/markOffline_pl.properties @@ -19,6 +19,6 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=Zmie\u0144 w\u0119ze\u0142 {0} w tryb offline -blurb=Mo\u017Cesz tak\u017Ce wyja\u015Bni\u0107, dlaczego zmieniasz ten w\u0119ze\u0142 w tryb offline, aby zainteresowani wiedzieli co si\u0119 sta\u0142o -submit=Tymczasowo zmie\u0144 ten w\u0119ze\u0142 w tryb offline +title=ZmieÅ„ wÄ™zeÅ‚ {0} w tryb offline +blurb=Możesz także wyjaÅ›nić, dlaczego zmieniasz ten wÄ™zeÅ‚ w tryb offline, aby zainteresowani wiedzieli co siÄ™ staÅ‚o +submit=Tymczasowo zmieÅ„ ten wÄ™zeÅ‚ w tryb offline diff --git a/core/src/main/resources/hudson/model/Computer/markOffline_pt_BR.properties b/core/src/main/resources/hudson/model/Computer/markOffline_pt_BR.properties index b192effaa9c4..f55ba67a80fd 100644 --- a/core/src/main/resources/hudson/model/Computer/markOffline_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Computer/markOffline_pt_BR.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. # Taking {0} Offline -title=T\u00edtulo +title=Título # Mark this node temporarily offline submit=Enviar # You can optionally explain why you are taking this node offline, so that others can see why: -blurb=Opcionalmente voc\u00ea pode descrever para os outros usu\u00e1rios por que deixou esse n\u00f3 offline. +blurb=Opcionalmente você pode descrever para os outros usuários por que deixou esse nó offline. diff --git a/core/src/main/resources/hudson/model/Computer/markOffline_ru.properties b/core/src/main/resources/hudson/model/Computer/markOffline_ru.properties index 8d651eb5e0b8..1957bfd10056 100644 --- a/core/src/main/resources/hudson/model/Computer/markOffline_ru.properties +++ b/core/src/main/resources/hudson/model/Computer/markOffline_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\u0417\u0434\u0435\u0441\u044C \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u043E\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u0441\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u0435, \u043F\u043E\u0447\u0435\u043C\u0443 \u0432\u044B \u043E\u0442\u043A\u043B\u044E\u0447\u0430\u0435\u0442\u0435 \u0434\u0430\u043D\u043D\u044B\u0439 \u0443\u0437\u0435\u043B \u0441\u0431\u043E\u0440\u043A\u0438. \u0422\u0430\u043A \u0447\u0442\u043E \u0434\u0440\u0443\u0433\u0438\u0435 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0438 \u0441\u043C\u043E\u0433\u0443\u0442 \u0443\u0437\u043D\u0430\u0442\u044C, \u043F\u043E\u0447\u0435\u043C\u0443 \u044D\u0442\u043E \u043F\u0440\u043E\u0438\u0437\u043E\u0448\u043B\u043E: -submit=\u041F\u043E\u043C\u0435\u0442\u0438\u0442\u044C \u0434\u0430\u043D\u043D\u044B\u0439 \u0443\u0437\u0435\u043B \u043A\u0430\u043A \u0432\u0440\u0435\u043C\u0435\u043D\u043D\u043E \u043D\u0435\u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0439 (\u0432\u044B\u043A\u043B\u044E\u0447\u0435\u043D\u043D\u044B\u0439) -title=\u041E\u0442\u043A\u043B\u044E\u0447\u0435\u043D\u0438\u0435 {0} (\u041F\u0435\u0440\u0435\u0432\u043E\u0434 \u0432 \u0441\u043E\u0441\u0442\u043E\u044F\u043D\u0438\u0435 Offline) +blurb=ЗдеÑÑŒ вы можете оÑтавить Ñообщение, почему вы отключаете данный узел Ñборки. Так что другие пользователи Ñмогут узнать, почему Ñто произошло: +submit=Пометить данный узел как временно недоÑтупный (выключенный) +title=Отключение {0} (Перевод в ÑоÑтоÑние Offline) diff --git a/core/src/main/resources/hudson/model/Computer/markOffline_sr.properties b/core/src/main/resources/hudson/model/Computer/markOffline_sr.properties index 2d2ee65ad864..ba1dabf982e8 100644 --- a/core/src/main/resources/hudson/model/Computer/markOffline_sr.properties +++ b/core/src/main/resources/hudson/model/Computer/markOffline_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -title=\u041E\u0442\u043A\u043E\u043F\u0447\u0430\u0432\u0430 {0} -blurb=\u041C\u043E\u0436\u0435\u0442\u0435 \u043E\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u0430\u0437\u043B\u043E\u0433 \u0437\u0430\u0448\u0442\u043E \u0458\u0435 \u0432\u0430\u0448 \u0440\u0430\u0447\u0443\u043D\u0430\u0440 \u0458\u0435 \u0442\u0440\u0435\u043D\u0443\u0442\u043D\u043E \u0432\u0430\u043D \u043C\u0440\u0435\u0436\u0435: -submit=\u041F\u0440\u0438\u0432\u0440\u0435\u043C\u0435\u043D\u043E \u043E\u0442\u043A\u043E\u043F\u0447\u0430\u0458 \u043E\u0432\u0443 \u043C\u0430\u0448\u0438\u043D\u0443 +title=Откопчава {0} +blurb=Можете оÑтавити разлог зашто је ваш рачунар је тренутно ван мреже: +submit=Привремено откопчај ову машину diff --git a/core/src/main/resources/hudson/model/Computer/markOffline_zh_TW.properties b/core/src/main/resources/hudson/model/Computer/markOffline_zh_TW.properties index 20d2c9b2b6a3..19739cc649bf 100644 --- a/core/src/main/resources/hudson/model/Computer/markOffline_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Computer/markOffline_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=\u5C07 {0} \u8A2D\u70BA\u96E2\u7DDA -blurb=\u60A8\u53EF\u4EE5\u4F9D\u9700\u8981\u89E3\u91CB\u70BA\u4EC0\u9EBC\u5C07\u8A2D\u500B\u7BC0\u9EDE\u8A2D\u70BA\u96E2\u7DDA\uFF0C\u8B93\u5176\u4ED6\u4EBA\u77E5\u9053\u539F\u56E0: -submit=\u5C07\u6B64\u7BC0\u9EDE\u66AB\u6642\u8A2D\u70BA\u96E2\u7DDA +title=å°‡ {0} 設為離線 +blurb=您å¯ä»¥ä¾éœ€è¦è§£é‡‹ç‚ºä»€éº¼å°‡è¨­å€‹ç¯€é»žè¨­ç‚ºé›¢ç·šï¼Œè®“其他人知é“原因: +submit=將此節點暫時設為離線 diff --git a/core/src/main/resources/hudson/model/Computer/setOfflineCause_bg.properties b/core/src/main/resources/hudson/model/Computer/setOfflineCause_bg.properties index 655f3526e643..cbc71ed93cfb 100644 --- a/core/src/main/resources/hudson/model/Computer/setOfflineCause_bg.properties +++ b/core/src/main/resources/hudson/model/Computer/setOfflineCause_bg.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. submit=\ - \u041f\u0440\u043e\u043c\u044f\u043d\u0430 \u043d\u0430 \u043f\u0440\u0438\u0447\u0438\u043d\u0430\u0442\u0430 + ПромÑна на причината title=\ - \u201e{0}\u201c \u0434\u0430 \u043d\u0435 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f + „{0}“ да не е на Ð»Ð¸Ð½Ð¸Ñ blurb=\ - \u041c\u043e\u0436\u0435 \u0434\u0430 \u0437\u0430\u0434\u0430\u0434\u0435\u0442\u0435 \u0438\u043b\u0438 \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435 \u043f\u0440\u0438\u0447\u0438\u043d\u0430\u0442\u0430, \u0437\u0430\u0449\u043e \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u044a\u0442 \u0432 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u043d\u0435 \u0435 \u043d\u0430\ - \u043b\u0438\u043d\u0438\u044f: + Може да зададете или промените причината, защо компютърът в момента не е на\ + линиÑ: diff --git a/core/src/main/resources/hudson/model/Computer/setOfflineCause_de.properties b/core/src/main/resources/hudson/model/Computer/setOfflineCause_de.properties index bcca9d462ebf..6408b0d328fa 100644 --- a/core/src/main/resources/hudson/model/Computer/setOfflineCause_de.properties +++ b/core/src/main/resources/hudson/model/Computer/setOfflineCause_de.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. submit=Aktualisieren -title=Wartungsgrund f\u00FCr {0} setzen +title=Wartungsgrund für {0} setzen blurb=Setzen oder aktualisieren Sie hier den Grund, weshalb dieser Knoten offline ist: diff --git a/core/src/main/resources/hudson/model/Computer/setOfflineCause_it.properties b/core/src/main/resources/hudson/model/Computer/setOfflineCause_it.properties index dd16cfebfb84..f2cc203ed282 100644 --- a/core/src/main/resources/hudson/model/Computer/setOfflineCause_it.properties +++ b/core/src/main/resources/hudson/model/Computer/setOfflineCause_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,7 +21,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=È possibile impostare o aggiornare il motivo per cui questo nodo non è \ +blurb=È possibile impostare o aggiornare il motivo per cui questo nodo non è \ in linea, in modo che altri possano vederlo: submit=Aggiorna motivo title=Imposta motivo "non in linea" per {0} diff --git a/core/src/main/resources/hudson/model/Computer/setOfflineCause_ja.properties b/core/src/main/resources/hudson/model/Computer/setOfflineCause_ja.properties index 38275baf0cef..b6bc1a14cc08 100644 --- a/core/src/main/resources/hudson/model/Computer/setOfflineCause_ja.properties +++ b/core/src/main/resources/hudson/model/Computer/setOfflineCause_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title={0}\u3092\u30aa\u30d5\u30e9\u30a4\u30f3\u306b\u3057\u305f\u7406\u7531 -blurb=\u4ed6\u306e\u4eba\u304c\u308f\u304b\u308b\u3088\u3046\u306b\u3001\u306a\u305c\u3053\u306e\u30ce\u30fc\u30c9\u3092\u30aa\u30d5\u30e9\u30a4\u30f3\u306b\u3057\u305f\u306e\u304b\u7406\u7531\u3092\u8a2d\u5b9a\u3082\u3057\u304f\u306f\u66f4\u65b0\u3057\u3066\u304f\u3060\u3055\u3044\u3002 -submit=\u7406\u7531\u3092\u66f4\u65b0 +title={0}をオフラインã«ã—ãŸç†ç”± +blurb=ä»–ã®äººãŒã‚ã‹ã‚‹ã‚ˆã†ã«ã€ãªãœã“ã®ãƒŽãƒ¼ãƒ‰ã‚’オフラインã«ã—ãŸã®ã‹ç†ç”±ã‚’設定もã—ãã¯æ›´æ–°ã—ã¦ãã ã•ã„。 +submit=ç†ç”±ã‚’æ›´æ–° diff --git a/core/src/main/resources/hudson/model/Computer/setOfflineCause_pt_BR.properties b/core/src/main/resources/hudson/model/Computer/setOfflineCause_pt_BR.properties index a3fc6c56f92b..f8f62db2b2a1 100644 --- a/core/src/main/resources/hudson/model/Computer/setOfflineCause_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Computer/setOfflineCause_pt_BR.properties @@ -23,6 +23,6 @@ # Set {0} Offline Reason title=Sefina {0} como motivo para ficar offline # You can set or update the reason why this node offline, so that others can see why: -blurb=Voc\u00ea pode definir ou atualizar o motivo deste n\u00f3 ter ficado offline, assim os outros poder\u00e3o saber o porqu\u00ea: +blurb=Você pode definir ou atualizar o motivo deste nó ter ficado offline, assim os outros poderão saber o porquê: # Update reason submit=Atualizar motivo diff --git a/core/src/main/resources/hudson/model/Computer/setOfflineCause_sr.properties b/core/src/main/resources/hudson/model/Computer/setOfflineCause_sr.properties index 9fdc2865e38d..ca62d3858992 100644 --- a/core/src/main/resources/hudson/model/Computer/setOfflineCause_sr.properties +++ b/core/src/main/resources/hudson/model/Computer/setOfflineCause_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -title=\u0420\u0430\u0437\u043B\u043E\u0433 \u043E\u0442\u043A\u043E\u043F\u0447\u0430\u045A\u0430 {0} -blurb=\u041C\u043E\u0436\u0435\u0442\u0435 \u043F\u043E\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0438\u043B\u0438 \u043F\u0440\u043E\u043C\u0435\u043D\u0438\u0442\u0438 \u0440\u0430\u0437\u043B\u043E\u0433 \u0437\u0430\u0448\u0442\u043E \u0458\u0435 \u0442\u0440\u0435\u043D\u0443\u0442\u043D\u043E \u043E\u0432\u0430 \u043C\u0430\u0448\u0438\u043D\u0430 \u0432\u0430\u043D \u043C\u0440\u0435\u0436\u0435: -submit=\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u0458 \u0440\u0430\u0437\u043B\u043E\u0433 +title=Разлог откопчања {0} +blurb=Можете поÑтавити или променити разлог зашто је тренутно ова машина ван мреже: +submit=Ðжурирај разлог diff --git a/core/src/main/resources/hudson/model/Computer/setOfflineCause_zh_TW.properties b/core/src/main/resources/hudson/model/Computer/setOfflineCause_zh_TW.properties index dcd1e0d801ec..4bc027cc066a 100644 --- a/core/src/main/resources/hudson/model/Computer/setOfflineCause_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Computer/setOfflineCause_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=\u8a2d\u5b9a {0} \u96e2\u7dda\u539f\u56e0 -blurb=\u60a8\u53ef\u4ee5\u8a2d\u5b9a\u6216\u662f\u66f4\u65b0\u5c07\u7bc0\u9ede\u8a2d\u70ba\u96e2\u7dda\u7684\u539f\u56e0\uff0c\u8b93\u5176\u4ed6\u4eba\u77e5\u9053: -submit=\u66f4\u65b0\u539f\u56e0 +title=設定 {0} 離線原因 +blurb=您å¯ä»¥è¨­å®šæˆ–是更新將節點設為離線的原因,讓其他人知é“: +submit=更新原因 diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel.jelly b/core/src/main/resources/hudson/model/Computer/sidepanel.jelly index b0553921e081..7c2cd1f052c0 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel.jelly +++ b/core/src/main/resources/hudson/model/Computer/sidepanel.jelly @@ -46,6 +46,6 @@ THE SOFTWARE. - + diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_bg.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_bg.properties index 8f13b54328b5..176f68568519 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_bg.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_bg.properties @@ -21,18 +21,18 @@ # THE SOFTWARE. Back\ to\ List=\ - \u041a\u044a\u043c \u0441\u043f\u0438\u0441\u044a\u043a\u0430 + Към ÑпиÑъка Build\ History=\ - \u0418\u0441\u0442\u043e\u0440\u0438\u044f \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e + ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° изграждането Configure=\ - \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 + ÐаÑтройки Delete\ Slave=\ - \u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 + Изтриване на машина Load\ Statistics=\ - \u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u043d\u0430 \u043d\u0430\u0442\u043e\u0432\u0430\u0440\u0432\u0430\u043d\u0435\u0442\u043e + СтатиÑтика на натоварването Script\ Console=\ - \u041a\u043e\u043d\u0437\u043e\u043b\u0430 + Конзола Status=\ - \u0421\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435 + СъÑтоÑние Delete\ Agent=\ - \u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 + Изтриване на машина diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_cs.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_cs.properties index c4bb2a911cdd..dc6381934961 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_cs.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_cs.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ List=Zp\u011Bt na seznam -Build\ History=Historie sestaven\u00ED +Back\ to\ List=ZpÄ›t na seznam +Build\ History=Historie sestavení Configure=Nastavit -Load\ Statistics=Na\u010D\u00EDst statistiku +Load\ Statistics=NaÄíst statistiku Script\ Console=Konzole Status=Stav diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_de.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_de.properties index bdfe31599727..6a44be12eab7 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_de.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_de.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ List=Zur\u00FCck zur Liste +Back\ to\ List=Zurück zur Liste Build\ History=Build-Verlauf Script\ Console=Script-Konsole Status=Status diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_es.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_es.properties index c96d7bb82dbc..58f9fcc9e6c2 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_es.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_es.properties @@ -25,5 +25,5 @@ Status=Estado Delete\ Agent=Borrar agente Configure=Configurar Build\ History=Historia de ejecuciones -Load\ Statistics=Cargar estadísticas +Load\ Statistics=Cargar estadísticas Script\ Console=Consola interactiva diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_es_AR.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_es_AR.properties index ecfb69682504..1f89115cd14a 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_es_AR.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_es_AR.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Load\ Statistics=Estad\u00EDsticas de Carga +Load\ Statistics=Estadísticas de Carga diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_fi.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_fi.properties index 9049275c327b..f9a63352f16c 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_fi.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_fi.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Back\ to\ List=Takaisin listaan -Build\ History=K\u00E4\u00E4nn\u00F6shistoria +Build\ History=Käännöshistoria Configure=Konfiguroi Load\ Statistics=Kuormatilastot Script\ Console=Skriptikonsoli diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_fr.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_fr.properties index 63d8626ee30c..dd1fdbb8d4d1 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_fr.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_fr.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ List=Retour à la liste +Back\ to\ List=Retour à la liste Build\ History=Historique des constructions Script\ Console=Console de script Status=Statut Configure=Configurer -Load\ Statistics=Statistiques d\u2019utilisation +Load\ Statistics=Statistiques d’utilisation diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_he.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_he.properties index 992f7a1f6610..6a223ae748a6 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_he.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_he.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ List=\u05D7\u05D6\u05E8\u05D4 \u05DC\u05E8\u05E9\u05D9\u05DE\u05D4 -Build\ History=\u05D4\u05D9\u05E1\u05D8\u05D5\u05E8\u05D9\u05D9\u05EA \u05D1\u05E0\u05D9\u05D5\u05EA -Configure=\u05E7\u05D1\u05D9\u05E2\u05EA \u05EA\u05E6\u05D5\u05E8\u05D4 -Load\ Statistics=\u05E1\u05D8\u05D8\u05D9\u05E1\u05D8\u05D9\u05E7\u05D5\u05EA \u05D4\u05E2\u05D5\u05DE\u05E1 -Script\ Console=\u05DE\u05E1\u05D5\u05E3 \u05D4\u05E1\u05E7\u05E8\u05D9\u05E4\u05D8\u05D9\u05DD -Status=\u05E1\u05D8\u05D8\u05D5\u05E1 +Back\ to\ List=חזרה לרשימה +Build\ History=היסטוריית בניות +Configure=קביעת תצורה +Load\ Statistics=סטטיסטיקות העומס +Script\ Console=מסוף ×”×¡×§×¨×™×¤×˜×™× +Status=סטטוס diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_it.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_it.properties index 640c73e53597..4aeaf6811a71 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_it.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_ja.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_ja.properties index ed49c9c3b96e..9017290cb8aa 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_ja.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_ja.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ List=\u30EA\u30B9\u30C8\u3078\u623B\u308B -Status=\u72B6\u614B -Configure=\u8A2D\u5B9A -Build\ History=\u30D3\u30EB\u30C9\u5C65\u6B74 -Load\ Statistics=\u8CA0\u8377\u7D71\u8A08 -Script\ Console=\u30B9\u30AF\u30EA\u30D7\u30C8\u30B3\u30F3\u30BD\u30FC\u30EB +Back\ to\ List=リストã¸æˆ»ã‚‹ +Status=状態 +Configure=設定 +Build\ History=ビルド履歴 +Load\ Statistics=è² è·çµ±è¨ˆ +Script\ Console=スクリプトコンソール diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_ko.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_ko.properties index 5c294876385f..8beaaa8aebc5 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_ko.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_ko.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ List=\uBAA9\uB85D\uC73C\uB85C \uB3CC\uC544\uAC00\uAE30 -Build\ History=\uBE4C\uB4DC \uAE30\uB85D -Configure=\uC124\uC815 -Load\ Statistics=\uD1B5\uACC4\uBCF4\uAE30 -Script\ Console=\uC2A4\uD06C\uB9BD\uD2B8 \uCF58\uC194 -Status=\uC0C1\uD0DC +Back\ to\ List=목ë¡ìœ¼ë¡œ ëŒì•„가기 +Build\ History=빌드 ê¸°ë¡ +Configure=설정 +Load\ Statistics=통계보기 +Script\ Console=스í¬ë¦½íŠ¸ 콘솔 +Status=ìƒíƒœ diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_lt.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_lt.properties index 10e449ee0084..ee8afb840841 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_lt.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_lt.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ List=Atgal \u012F s\u0105ra\u0161\u0105 -Build\ History=Darb\u0173 istorija +Back\ to\ List=Atgal į sÄ…raÅ¡Ä… +Build\ History=Darbų istorija Configure=Nustatymai -Load\ Statistics=Kr\u016Bvio statistika -Status=B\u016Bsena +Load\ Statistics=KrÅ«vio statistika +Status=BÅ«sena diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_lv.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_lv.properties index 8f90d430a693..cac07ac3b543 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_lv.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_lv.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ List=Atpaka\u013C pie saraksta -Build\ History=B\u016Bv\u0113jumu v\u0113sture -Configure=Konfigur\u0113t +Back\ to\ List=Atpakaļ pie saraksta +Build\ History=BÅ«vÄ“jumu vÄ“sture +Configure=KonfigurÄ“t Load\ Statistics=Noslodzes statistika Script\ Console=Skriptu konsole -Status=St\u0101voklis +Status=StÄvoklis diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_nb_NO.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_nb_NO.properties index 8a56a4ddd505..a7c94fecba22 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_nb_NO.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_nb_NO.properties @@ -22,7 +22,7 @@ Back\ to\ List=Tilbake til listen Build\ History=Bygghistorikk -Configure=Konfigur\u00E9r +Configure=Konfigurér Load\ Statistics=Laststatistikk Script\ Console=Skriptekonsoll Status=Status diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_pl.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_pl.properties index 2ddc6acd1794..8f48e7e7fc89 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_pl.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_pl.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ List=Powr\u00F3t do listy +Back\ to\ List=Powrót do listy Build\ History=Historia kompilacji Configure=Konfiguruj -Load\ Statistics=Statystyka obci\u0105\u017Cenia -Script\ Console=Konsola skrypt\u00F3w +Load\ Statistics=Statystyka obciążenia +Script\ Console=Konsola skryptów diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_pt_BR.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_pt_BR.properties index dcb14feed63d..c278893d2bb8 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_pt_BR.properties @@ -22,9 +22,9 @@ # THE SOFTWARE. Back\ to\ List=Voltar para a lista -Build\ History=Hist\u00F3rico de constru\u00E7\u00F5es +Build\ History=Histórico de construções Configure=Configurar -Status=Situa\u00E7\u00E3o -Load\ Statistics=Estat\u00EDsticas de carga +Status=Situação +Load\ Statistics=Estatísticas de carga Script\ Console=Terminal de script Delete\ Agent=Remover o agente diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_pt_PT.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_pt_PT.properties index 7581da9c238a..745e1b5037cc 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_pt_PT.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_pt_PT.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors Back\ to\ List=Voltar para a Lista -Build\ History=Hist\u00F3rico de Compila\u00E7\u00F5es +Build\ History=Histórico de Compilações Configure=Configurar -Load\ Statistics=Carregar Estat\u00EDsticas +Load\ Statistics=Carregar Estatísticas Status=Estado diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_ru.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_ru.properties index 269c911a88b6..ba3af7095785 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_ru.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ List=\u0412\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f \u043a \u0441\u043f\u0438\u0441\u043a\u0443 -Build\ History=\u0418\u0441\u0442\u043e\u0440\u0438\u044f \u0441\u0431\u043e\u0440\u043e\u043a -Configure=\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c -Load\ Statistics=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f -Script\ Console=\u041a\u043e\u043d\u0441\u043e\u043b\u044c \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432 -Status=\u0421\u0442\u0430\u0442\u0443\u0441 +Back\ to\ List=ВернутьÑÑ Ðº ÑпиÑку +Build\ History=ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ñборок +Configure=ÐаÑтроить +Load\ Statistics=СтатиÑтика иÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ +Script\ Console=КонÑоль Ñценариев +Status=Ð¡Ñ‚Ð°Ñ‚ÑƒÑ diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_sk.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_sk.properties index 3e9548696ee4..03caaef585ef 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_sk.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_sk.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Back\ to\ List=Nasp\u00E4\u0165 na zoznam -Build\ History=Hist\u00F3ria zostaven\u00ED +Back\ to\ List=Naspäť na zoznam +Build\ History=História zostavení Configure=Konfiguruj -Load\ Statistics=\u0160tatistiky vy\u0165a\u017Eenia -Script\ Console=Skriptov\u00E1 konzola +Load\ Statistics=Å tatistiky vyÅ¥aženia +Script\ Console=Skriptová konzola Status=Stav diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_sr.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_sr.properties index f81eb73cd6d7..b2072a0ad36b 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_sr.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_sr.properties @@ -1,10 +1,10 @@ # This file is under the MIT License by authors -Back\ to\ List=\u041D\u0430\u0437\u0430\u0434 -Status=\u0421\u0442\u0430\u045A\u0435 -Delete\ Agent=\u0423\u043A\u043B\u043E\u043D\u0438 \u0430\u0433\u0435\u043D\u0442 -Configure=\u041F\u043E\u0434\u0435\u0441\u0438 -Build\ History=\u0418\u0441\u0442\u043E\u0440\u0438\u0458\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 -Load\ Statistics=\u0423\u0447\u0438\u0442\u0430\u0458 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0443 -Script\ Console=\u041A\u043E\u043D\u0437\u043E\u043B\u0430 -Delete\ Slave=\u0423\u043A\u043B\u043E\u043D\u0438 \u043F\u043E\u043C\u043E\u045B\u043D\u0438\u043A\u0430 +Back\ to\ List=Ðазад +Status=Стање +Delete\ Agent=Уклони агент +Configure=ПодеÑи +Build\ History=ИÑторија изградња +Load\ Statistics=Учитај ÑтатиÑтику +Script\ Console=Конзола +Delete\ Slave=Уклони помоћника diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_tr.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_tr.properties index 446874afed01..a96d29188a81 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_tr.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_tr.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ List=Listeye D\u00f6n -Build\ History=Yap\u0131land\u0131rma Ge\u00e7mi\u015fi -Configure=Yap\u0131land\u0131r -Load\ Statistics=Y\u00FCklenme istatistikleri +Back\ to\ List=Listeye Dön +Build\ History=Yapılandırma GeçmiÅŸi +Configure=Yapılandır +Load\ Statistics=Yüklenme istatistikleri Script\ Console=Script Konsolu Status=Durum diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_uk.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_uk.properties index 8917b1c57c6e..23d9f226d7d5 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_uk.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_uk.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Back\ to\ List=\u041F\u043E\u0432\u0435\u0440\u043D\u0443\u0442\u0438\u0441\u044C \u0434\u043E \u0441\u043F\u0438\u0441\u043A\u0443 -Build\ History=\u0406\u0441\u0442\u043E\u0440\u0456\u044F \u043F\u043E\u0431\u0443\u0434\u043E\u0432 -Configure=\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F -Load\ Statistics=\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0443 -Script\ Console=\u0421\u043A\u0440\u0438\u043F\u0442\u043E\u0432\u0430 \u043A\u043E\u043D\u0441\u043E\u043B\u044C -Status=\u0421\u0442\u0430\u0442\u0443\u0441 +Back\ to\ List=ПовернутиÑÑŒ до ÑпиÑку +Build\ History=ІÑÑ‚Ð¾Ñ€Ñ–Ñ Ð¿Ð¾Ð±ÑƒÐ´Ð¾Ð² +Configure=ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ +Load\ Statistics=Завантажити ÑтатиÑтику +Script\ Console=Скриптова конÑоль +Status=Ð¡Ñ‚Ð°Ñ‚ÑƒÑ diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_zh_TW.properties index 88ef844bb3ee..8f4480a31880 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_zh_TW.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ List=\u56DE\u5230\u6E05\u55AE -Status=\u72C0\u614B -Configure=\u8A2D\u5B9A -Build\ History=\u5EFA\u69CB\u6B77\u53F2 -Load\ Statistics=\u8CA0\u8F09\u7D71\u8A08 +Back\ to\ List=回到清單 +Status=狀態 +Configure=設定 +Build\ History=å»ºæ§‹æ­·å² +Load\ Statistics=負載統計 diff --git a/core/src/main/resources/hudson/model/ComputerSet/_new_bg.properties b/core/src/main/resources/hudson/model/ComputerSet/_new_bg.properties index 7ee69405cd39..3dad4530e778 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/_new_bg.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/_new_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Name=\ - \u0418\u043c\u0435 + Име Name\ is\ mandatory=\ - \u0418\u043c\u0435\u0442\u043e \u0435 \u0437\u0430\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u043e + Името е задължително Save=\ - \u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 + Запазване diff --git a/core/src/main/resources/hudson/model/ComputerSet/_new_de.properties b/core/src/main/resources/hudson/model/ComputerSet/_new_de.properties index 98ab702fb00e..1c30082a47c6 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/_new_de.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/_new_de.properties @@ -1,3 +1,3 @@ Name=Name -Name\ is\ mandatory=Sie müssen einen Namen angeben. +Name\ is\ mandatory=Sie müssen einen Namen angeben. Save=Speichern diff --git a/core/src/main/resources/hudson/model/ComputerSet/_new_hu.properties b/core/src/main/resources/hudson/model/ComputerSet/_new_hu.properties index 2e5f075a3240..2bb0772e1b77 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/_new_hu.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/_new_hu.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Name=N\u00E9v -Name\ is\ mandatory=A n\u00E9v kit\u00F6lt\u00E9se k\u00F6telez\u0151 +Name=Név +Name\ is\ mandatory=A név kitöltése kötelezÅ‘ diff --git a/core/src/main/resources/hudson/model/ComputerSet/_new_it.properties b/core/src/main/resources/hudson/model/ComputerSet/_new_it.properties index 224e9c74c12d..13bd11c29cc0 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/_new_it.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/_new_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,5 +22,5 @@ # THE SOFTWARE. Name=Nome -Name\ is\ mandatory=Il nome è obbligatorio +Name\ is\ mandatory=Il nome è obbligatorio Save=Salva diff --git a/core/src/main/resources/hudson/model/ComputerSet/_new_ja.properties b/core/src/main/resources/hudson/model/ComputerSet/_new_ja.properties index 58f28c6e62cb..e6e32d0acfa2 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/_new_ja.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/_new_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u30CE\u30FC\u30C9\u540D -Name\ is\ mandatory=\u30CE\u30FC\u30C9\u540D\u306F\u5FC5\u9808\u3067\u3059 -Save=\u4FDD\u5B58 +Name=ノードå +Name\ is\ mandatory=ノードåã¯å¿…é ˆã§ã™ +Save=ä¿å­˜ diff --git a/core/src/main/resources/hudson/model/ComputerSet/_new_pt_BR.properties b/core/src/main/resources/hudson/model/ComputerSet/_new_pt_BR.properties index 7531672907a9..43f0f27f4d34 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/_new_pt_BR.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/_new_pt_BR.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Save=Salvar -Name\ is\ mandatory=O nome \u00e9 obrigat\u00f3rio +Name\ is\ mandatory=O nome é obrigatório Name=Nome diff --git a/core/src/main/resources/hudson/model/ComputerSet/_new_sk.properties b/core/src/main/resources/hudson/model/ComputerSet/_new_sk.properties index 8831d9965d96..dd424bb52e9f 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/_new_sk.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/_new_sk.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors Name=Meno -Name\ is\ mandatory=Meno je povinn\u00E9 -Save=Ulo\u017E +Name\ is\ mandatory=Meno je povinné +Save=Ulož diff --git a/core/src/main/resources/hudson/model/ComputerSet/_new_sr.properties b/core/src/main/resources/hudson/model/ComputerSet/_new_sr.properties index 6fddb66c363b..ab368294e680 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/_new_sr.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/_new_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Name=\u0418\u043C\u0435 -Name\ is\ mandatory=\u0418\u043C\u0435 \u0458\u0435 \u043E\u0431\u0430\u0432\u0435\u0437\u043D\u043E -Save=\u0421\u0430\u0447\u0443\u0432\u0430\u0458 +Name=Име +Name\ is\ mandatory=Име је обавезно +Save=Сачувај diff --git a/core/src/main/resources/hudson/model/ComputerSet/_new_zh_TW.properties b/core/src/main/resources/hudson/model/ComputerSet/_new_zh_TW.properties index 01ac2d43236d..aaf25c56f35b 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/_new_zh_TW.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/_new_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540d\u7a31 -Name\ is\ mandatory=\u4e00\u5b9a\u8981\u8f38\u5165\u540d\u7a31 -Save=\u5132\u5b58 +Name=å稱 +Name\ is\ mandatory=一定è¦è¼¸å…¥å稱 +Save=儲存 diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_bg.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_bg.properties index f282e34e9877..a85bf6231028 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/configure_bg.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. OK=\ - \u0414\u043e\u0431\u0440\u0435 + Добре Node\ Monitoring\ Configuration=\ - \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0437\u0430 \u043d\u0430\u0431\u043b\u044e\u0434\u0435\u043d\u0438\u0435\u0442\u043e \u043d\u0430 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u0430 + ÐаÑтройки за наблюдението на компютъра Preventive\ Node\ Monitoring=\ - \u041d\u0430\u0431\u043b\u044e\u0434\u0435\u043d\u0438\u0435 \u043d\u0430 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u0430 + Ðаблюдение на компютъра diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_de.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_de.properties index 26a5fe31706e..fc692d42c879 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/configure_de.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_de.properties @@ -1,3 +1,3 @@ -Node\ Monitoring\ Configuration=Konfiguration der Knoten\u00FCberwachung -Preventive\ Node\ Monitoring=Pr\u00E4ventive \u00DCberwachung der Knoten +Node\ Monitoring\ Configuration=Konfiguration der Knotenüberwachung +Preventive\ Node\ Monitoring=Präventive Ãœberwachung der Knoten OK=OK diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_es.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_es.properties index 04ad1344f0e3..f4712be7511d 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/configure_es.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Node\ Monitoring\ Configuration=Configuración de la monitorización del nodo -Preventive\ Node\ Monitoring=Monitorización preventiva +Node\ Monitoring\ Configuration=Configuración de la monitorización del nodo +Preventive\ Node\ Monitoring=Monitorización preventiva diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_fr.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_fr.properties index 73cb3706ec9b..d314ddfddfbb 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/configure_fr.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preventive\ Node\ Monitoring=Surveillance pr\u00E9ventive des n\u0153uds +Preventive\ Node\ Monitoring=Surveillance préventive des nÅ“uds diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_hu.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_hu.properties index 468fa52601fc..f54e97d911b3 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/configure_hu.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preventive\ Node\ Monitoring=Megel\u0151z\u0151 Csom\u00F3pont Figyel\u00E9s +Preventive\ Node\ Monitoring=MegelÅ‘zÅ‘ Csomópont Figyelés diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_it.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_it.properties index a1280d78a552..96f40aa9b746 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/configure_it.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_ja.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_ja.properties index 53267021f194..2b766e8202ff 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/configure_ja.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Node\ Monitoring\ Configuration=\u30ce\u30fc\u30c9\u76e3\u8996\u306e\u8a2d\u5b9a -Preventive\ Node\ Monitoring=\u30ce\u30fc\u30c9\u76e3\u8996\u9805\u76ee -OK=\u4fdd\u5b58 +Node\ Monitoring\ Configuration=ノード監視ã®è¨­å®š +Preventive\ Node\ Monitoring=ノード監視項目 +OK=ä¿å­˜ diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_ko.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_ko.properties index 9ef9878d14e5..328501701cf9 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/configure_ko.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preventive\ Node\ Monitoring=\uC608\uBC29\uC744 \uC704\uD55C \uB178\uB4DC \uBAA8\uB2C8\uD130\uB9C1 +Preventive\ Node\ Monitoring=ì˜ˆë°©ì„ ìœ„í•œ 노드 ëª¨ë‹ˆí„°ë§ diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_lv.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_lv.properties index bd2285970f84..4dcf24e5d193 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/configure_lv.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_lv.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors OK=Labi -Preventive\ Node\ Monitoring=Aizsarg\u0101jo\u0161\u0101 Nodes Uzraudz\u012Bba +Preventive\ Node\ Monitoring=AizsargÄjoÅ¡Ä Nodes UzraudzÄ«ba diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_pl.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_pl.properties index 136daf89663e..69a2d0142e68 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/configure_pl.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_pl.properties @@ -19,6 +19,6 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Node\ Monitoring\ Configuration=Konfiguracja monitorowania w\u0119z\u0142\u00F3w -Preventive\ Node\ Monitoring=Profilaktyka monitorowania w\u0119z\u0142\u00F3w +Node\ Monitoring\ Configuration=Konfiguracja monitorowania wÄ™złów +Preventive\ Node\ Monitoring=Profilaktyka monitorowania wÄ™złów OK=OK diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_pt_BR.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_pt_BR.properties index 660d7c5b4b4b..d1afe94b764c 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/configure_pt_BR.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preventive\ Node\ Monitoring=Monitora\u00e7\u00e3o preventiva dos n\u00f3s -Node\ Monitoring\ Configuration=Configura\u00e7\u00e3o da monitora\u00e7\u00e3o dos n\u00f3s +Preventive\ Node\ Monitoring=Monitoração preventiva dos nós +Node\ Monitoring\ Configuration=Configuração da monitoração dos nós OK=OK diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_ru.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_ru.properties index 7f07d1789c31..182d2b30febe 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/configure_ru.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preventive\ Node\ Monitoring=\u041F\u0440\u0435\u0432\u0435\u043D\u0442\u0438\u0432\u043D\u044B\u0439 \u043C\u043E\u043D\u0438\u043D\u0442\u043E\u0440\u0438\u043D\u0433 +Preventive\ Node\ Monitoring=Превентивный монинторинг diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_sk.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_sk.properties index c69d2fd9af19..4cb3e97a9aef 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/configure_sk.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_sk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Preventive\ Node\ Monitoring=Prevent\u00EDvne monitorovanie stroja +Preventive\ Node\ Monitoring=Preventívne monitorovanie stroja diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_sr.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_sr.properties index 00670084b522..72c19edef7d2 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/configure_sr.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Node\ Monitoring\ Configuration=\u041F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u045A\u0435 \u043C\u0430\u0448\u0438\u043D\u0435 -Preventive\ Node\ Monitoring=\u041F\u0440\u0435\u0432\u0435\u043D\u0442\u0438\u0432\u043D\u043E \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u045A\u0435 \u043C\u0430\u0448\u0438\u043D\u0435 -OK=\u0423\u0440\u0435\u0434\u0443 +Node\ Monitoring\ Configuration=Подешавања прегледање машине +Preventive\ Node\ Monitoring=Превентивно прегледање машине +OK=Уреду diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_sv_SE.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_sv_SE.properties index 9edaac79a41a..fe5f4ac55286 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/configure_sv_SE.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preventive\ Node\ Monitoring=Preventiv nod\u00F6vervakning +Preventive\ Node\ Monitoring=Preventiv nodövervakning diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_zh_TW.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_zh_TW.properties index 9eff02ec70c5..84aae3cd92a1 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/configure_zh_TW.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_zh_TW.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Node\ Monitoring\ Configuration=\u7bc0\u9ede\u76e3\u63a7\u8a2d\u5b9a -Preventive\ Node\ Monitoring=\u9810\u9632\u6027\u7BC0\u9EDE\u76E3\u63A7 +Node\ Monitoring\ Configuration=節點監控設定 +Preventive\ Node\ Monitoring=é é˜²æ€§ç¯€é»žç›£æŽ§ -OK=\u78ba\u5b9a +OK=確定 diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_bg.properties b/core/src/main/resources/hudson/model/ComputerSet/index_bg.properties index ee523f43f62d..b4059d96898c 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_bg.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_bg.properties @@ -21,12 +21,12 @@ # THE SOFTWARE. Configure=\ - \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 + ÐаÑтройки Name=\ - \u0418\u043c\u0435 + Име Refresh\ status=\ - \u041e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 + ОбновÑване Data\ obtained=\ - \u041a\u043e\u0433\u0430 + Кога Nodes=\ - \u041a\u043e\u043c\u043f\u044e\u0442\u0440\u0438 + Компютри diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_cs.properties b/core/src/main/resources/hudson/model/ComputerSet/index_cs.properties index 0236977d47c9..303fa1f8c029 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_cs.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_cs.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Configure=Nastaven\u00ED -Name=Jm\u00E9no +Configure=Nastavení +Name=Jméno Refresh\ status=Obnovit status diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_el.properties b/core/src/main/resources/hudson/model/ComputerSet/index_el.properties index 582869118914..2860dd5eb0bd 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_el.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_el.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Configure=\u03A0\u03B1\u03C1\u03B1\u03BC\u03B5\u03C4\u03C1\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 -Name=\u038C\u03BD\u03BF\u03BC\u03B1 -Refresh\ status=\u0391\u03BD\u03B1\u03BD\u03CE\u03C3\u03B7 \u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7\u03C2 +Configure=ΠαÏαμετÏοποίηση +Name=Όνομα +Refresh\ status=Ανανώση κατάστασης diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_fi.properties b/core/src/main/resources/hudson/model/ComputerSet/index_fi.properties index ae9b6ab2969b..445efdef68fb 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_fi.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_fi.properties @@ -22,4 +22,4 @@ Configure=Konfiguroi Name=Nimi -Refresh\ status=P\u00E4ivit\u00E4 tilaa +Refresh\ status=Päivitä tilaa diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_fr.properties b/core/src/main/resources/hudson/model/ComputerSet/index_fr.properties index 96ccd8b3f3da..fea48b7702d4 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_fr.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_fr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Data\ obtained=Donn\u00E9es obtenues +Data\ obtained=Données obtenues Name=Nom -Refresh\ status=Actualiser l''\u00E9tat +Refresh\ status=Actualiser l''état Configure=Configurer diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_he.properties b/core/src/main/resources/hudson/model/ComputerSet/index_he.properties index 4646f056a395..ea2152f56aaf 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_he.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_he.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Configure=\u05D4\u05D2\u05D3\u05E8 -Data\ obtained=\u05E0\u05EA\u05D5\u05E0\u05D9\u05DD \u05E9\u05D4\u05EA\u05E7\u05D1\u05DC\u05D5 -Name=\u05E9\u05DD -Refresh\ status=\u05E8\u05E2\u05E0\u05DF \u05DE\u05E6\u05D1 +Configure=הגדר +Data\ obtained=× ×ª×•× ×™× ×©×”×ª×§×‘×œ×• +Name=×©× +Refresh\ status=רענן מצב diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_hu.properties b/core/src/main/resources/hudson/model/ComputerSet/index_hu.properties index 9cce71754808..abb3d1b56240 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_hu.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_hu.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Configure=Konfigur\u00E1l -Name=N\u00E9v -Refresh\ status=\u00C1llapot friss\u00EDt\u00E9se +Configure=Konfigurál +Name=Név +Refresh\ status=Ãllapot frissítése diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_it.properties b/core/src/main/resources/hudson/model/ComputerSet/index_it.properties index ebddb8887340..15f79aeffd1b 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_it.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_ja.properties b/core/src/main/resources/hudson/model/ComputerSet/index_ja.properties index d43820de59f3..14bc05069036 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_ja.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_ja.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Nodes=\u30ce\u30fc\u30c9 -Name=\u540d\u524d -Refresh\ status=\u30b9\u30c6\u30fc\u30bf\u30b9\u66f4\u65b0 -Configure=\u8a2d\u5b9a -Data\ obtained=\u30c7\u30fc\u30bf\u53d6\u5f97 +Nodes=ノード +Name=åå‰ +Refresh\ status=ステータス更新 +Configure=設定 +Data\ obtained=データå–å¾— diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_ko.properties b/core/src/main/resources/hudson/model/ComputerSet/index_ko.properties index 621a5071c8f5..4031260b3e5c 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_ko.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_ko.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Configure=\uC124\uC815 -Data\ obtained=\uC218\uC9D1\uB41C \uB370\uC774\uD130 -Name=\uC774\uB984 -Refresh\ status=\uC0C1\uD0DC \uB2E4\uC2DC \uC77D\uAE30 +Configure=설정 +Data\ obtained=ìˆ˜ì§‘ëœ ë°ì´í„° +Name=ì´ë¦„ +Refresh\ status=ìƒíƒœ 다시 ì½ê¸° diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_lt.properties b/core/src/main/resources/hudson/model/ComputerSet/index_lt.properties index 69135b703f1a..b0fb3e421876 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_lt.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_lt.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Configure=Konfig\u016Bruoti +Configure=KonfigÅ«ruoti Name=Pavadinimas -Refresh\ status=Atnaujinti b\u016Bsen\u0105 +Refresh\ status=Atnaujinti bÅ«senÄ… diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_lv.properties b/core/src/main/resources/hudson/model/ComputerSet/index_lv.properties index 3299a2a7ba38..bd56c4d4ed27 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_lv.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_lv.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Configure=Konfigur\u0113t -Data\ obtained=Dati ieg\u016Bti +Configure=KonfigurÄ“t +Data\ obtained=Dati iegÅ«ti Name=Nosaukums -Refresh\ status=Atsvaidzin\u0101t st\u0101vokli +Refresh\ status=AtsvaidzinÄt stÄvokli diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_nb_NO.properties b/core/src/main/resources/hudson/model/ComputerSet/index_nb_NO.properties index 050550cd50a0..06052ccac40a 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_nb_NO.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_nb_NO.properties @@ -22,4 +22,4 @@ Configure=Konfigurer Name=Navn -Refresh\ status=Oppdat\u00E9r status +Refresh\ status=Oppdatér status diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_pl.properties b/core/src/main/resources/hudson/model/ComputerSet/index_pl.properties index 9ba74c844950..70e042b04795 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_pl.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_pl.properties @@ -23,4 +23,4 @@ Configure=Konfiguruj Data\ obtained=Pozyskane dane Name=Nazwa -Refresh\ status=Od\u015Bwie\u017C status +Refresh\ status=OdÅ›wież status diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_pt_BR.properties b/core/src/main/resources/hudson/model/ComputerSet/index_pt_BR.properties index 2f2a14a1f888..523389a2b3b7 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_pt_BR.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_pt_BR.properties @@ -22,6 +22,6 @@ Refresh\ status=Atualizar o status Name=Nome -Nodes=N\u00F3s +Nodes=Nós Data\ obtained=Dados obtidos -Manage\ nodes\ and\ clouds=Gerenciar\ n\u00F3s\ e\ nuvens +Manage\ nodes\ and\ clouds=Gerenciar\ nós\ e\ nuvens diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_ru.properties b/core/src/main/resources/hudson/model/ComputerSet/index_ru.properties index 5f30ec63f59c..60aa5d4a12a6 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_ru.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Configure=\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 -Data\ obtained=\u041F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u044B\u0435 \u0434\u0430\u043D\u043D\u044B\u0435 -Name=\u0418\u043C\u044F -Refresh\ status=\u041E\u0431\u043D\u043E\u0432\u0438\u0442\u044C \u0441\u043E\u0441\u0442\u043E\u044F\u043D\u0438\u0435 +Configure=ÐаÑтройки +Data\ obtained=Полученные данные +Name=Ð˜Ð¼Ñ +Refresh\ status=Обновить ÑоÑтоÑние diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_sk.properties b/core/src/main/resources/hudson/model/ComputerSet/index_sk.properties index ca537e4a1743..18e709dd6b66 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_sk.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_sk.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors Configure=Konfiguruj -Data\ obtained=Z\u00EDskan\u00E9 \u00FAdaje +Data\ obtained=Získané údaje Name=Meno Refresh\ status=Obnov stav diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_sl.properties b/core/src/main/resources/hudson/model/ComputerSet/index_sl.properties index c69ea2bf9040..eadc00fc527d 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_sl.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_sl.properties @@ -2,4 +2,4 @@ Configure=Nastavi Name=Ime -Refresh\ status=Osve\u017Ei stanje +Refresh\ status=Osveži stanje diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_sr.properties b/core/src/main/resources/hudson/model/ComputerSet/index_sr.properties index a0f680dcf532..abdd94c035e1 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_sr.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_sr.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -Nodes=\u041C\u0430\u0448\u0438\u043D\u0435 -Name=\u0418\u043C\u0435 -Configure=\u041F\u043E\u0434\u0435\u0441\u0438 -Data\ obtained=\u0423\u0447\u0438\u0442\u0430\u043D\u0438 \u043F\u043E\u0434\u0430\u0446\u0438 -Refresh\ status=\u0421\u0442\u0430\u045A\u0435 \u043E\u0441\u0432\u0435\u0436\u0438\u0432\u0430\u045A\u0430 +Nodes=Машине +Name=Име +Configure=ПодеÑи +Data\ obtained=Учитани подаци +Refresh\ status=Стање оÑвеживања diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_uk.properties b/core/src/main/resources/hudson/model/ComputerSet/index_uk.properties index 7c8d2d396e15..3827e4621f9d 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_uk.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_uk.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Configure=\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 -Name=\u0406\u043C\u2019\u044F -Refresh\ status=\u041E\u043D\u043E\u0432\u0438\u0442\u0438 \u0441\u0442\u0430\u0442\u0443\u0441 +Configure=Ðалаштувати +Name=Ð†Ð¼â€™Ñ +Refresh\ status=Оновити ÑÑ‚Ð°Ñ‚ÑƒÑ diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_zh_TW.properties b/core/src/main/resources/hudson/model/ComputerSet/index_zh_TW.properties index 7b83b7d27491..ef0d750820b2 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_zh_TW.properties @@ -21,7 +21,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Nodes=\u7bc0\u9ede -Name=\u540d\u7a31 -Configure=\u8a2d\u5b9a -Refresh\ status=\u66f4\u65b0\u72c0\u614b +Nodes=節點 +Name=å稱 +Configure=設定 +Refresh\ status=更新狀態 diff --git a/core/src/main/resources/hudson/model/ComputerSet/new_bg.properties b/core/src/main/resources/hudson/model/ComputerSet/new_bg.properties index aab23167e0be..ad4916cebd8f 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/new_bg.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/new_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Node\ name=\ - \u0418\u043c\u0435 \u043d\u0430 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u0430 + Име на компютъра Copy\ Existing\ Node=\ - \u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0438\u043c\u0435\u0442\u043e \u043d\u0430 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u0430 + Копиране на името на компютъра diff --git a/core/src/main/resources/hudson/model/ComputerSet/new_it.properties b/core/src/main/resources/hudson/model/ComputerSet/new_it.properties index 6350636c70fe..f7915e12e478 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/new_it.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/new_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/ComputerSet/new_ja.properties b/core/src/main/resources/hudson/model/ComputerSet/new_ja.properties index c767af79b296..646daee78530 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/new_ja.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/new_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Node\ name=\u30CE\u30FC\u30C9\u540D -Copy\ Existing\ Node=\u30CE\u30FC\u30C9\u3092\u30B3\u30D4\u30FC +Node\ name=ノードå +Copy\ Existing\ Node=ノードをコピー diff --git a/core/src/main/resources/hudson/model/ComputerSet/new_ko.properties b/core/src/main/resources/hudson/model/ComputerSet/new_ko.properties index fdd3f335201b..379808f1a05a 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/new_ko.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/new_ko.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Copy\ Existing\ Node=\uB178\uB4DC\uBCF5\uC0AC -Node\ name=\uB178\uB4DC\uBA85 +Copy\ Existing\ Node=노드복사 +Node\ name=노드명 diff --git a/core/src/main/resources/hudson/model/ComputerSet/new_pl.properties b/core/src/main/resources/hudson/model/ComputerSet/new_pl.properties index 3c234b2e9b60..3cc877ce6432 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/new_pl.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/new_pl.properties @@ -19,5 +19,5 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Node\ name=Nazwa w\u0119z\u0142a -Copy\ Existing\ Node=Kopiuj istniej\u0105cy w\u0119ze\u0142 +Node\ name=Nazwa wÄ™zÅ‚a +Copy\ Existing\ Node=Kopiuj istniejÄ…cy wÄ™zeÅ‚ diff --git a/core/src/main/resources/hudson/model/ComputerSet/new_pt_BR.properties b/core/src/main/resources/hudson/model/ComputerSet/new_pt_BR.properties index 36570082da4a..1739c0b7b43d 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/new_pt_BR.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/new_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Node\ name=Nome do n\u00F3 -Copy\ Existing\ Node=Copiar um n\u00F3 existente -New\ node=Novo\ n\u00F3 +Node\ name=Nome do nó +Copy\ Existing\ Node=Copiar um nó existente +New\ node=Novo\ nó diff --git a/core/src/main/resources/hudson/model/ComputerSet/new_ru.properties b/core/src/main/resources/hudson/model/ComputerSet/new_ru.properties index ec283e6a0180..2616e2103651 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/new_ru.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/new_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Copy\ Existing\ Node=\u0421\u043A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044E \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044E\u0449\u0435\u0433\u043E \u0443\u0437\u043B\u0430 -Node\ name=\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u0443\u0437\u043B\u0430 +Copy\ Existing\ Node=Скопировать конфигурацию ÑущеÑтвующего узла +Node\ name=Ðазвание узла diff --git a/core/src/main/resources/hudson/model/ComputerSet/new_sk.properties b/core/src/main/resources/hudson/model/ComputerSet/new_sk.properties index 18afa50f6f1d..db843abba666 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/new_sk.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/new_sk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Copy\ Existing\ Node=Kop\u00EDruj existuj\u00FAci stroj +Copy\ Existing\ Node=Kopíruj existujúci stroj Node\ name=Meno stroja diff --git a/core/src/main/resources/hudson/model/ComputerSet/new_sr.properties b/core/src/main/resources/hudson/model/ComputerSet/new_sr.properties index 04557e818259..ed3f3c3f0286 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/new_sr.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/new_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Copy\ Existing\ Node=\u041A\u043E\u043F\u0438\u0440\u0430\u0458 \u043F\u043E\u0441\u0442\u0430\u0458\u0435\u045B\u0443 \u043C\u0430\u0448\u0438\u043D\u0443 -Node\ name=\u0418\u043C\u0435 \u043C\u0430\u0448\u0438\u043D\u0435 +Copy\ Existing\ Node=Копирај поÑтајећу машину +Node\ name=Име машине diff --git a/core/src/main/resources/hudson/model/ComputerSet/new_sv_SE.properties b/core/src/main/resources/hudson/model/ComputerSet/new_sv_SE.properties index 2b0026a5e3e2..06f6d0472c16 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/new_sv_SE.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/new_sv_SE.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Copy\ Existing\ Node=Koperia existerande nod -Node\ name=Namn p\u00E5 nod +Node\ name=Namn pÃ¥ nod diff --git a/core/src/main/resources/hudson/model/ComputerSet/new_zh_TW.properties b/core/src/main/resources/hudson/model/ComputerSet/new_zh_TW.properties index 419fa399226d..3a81e9553a5e 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/new_zh_TW.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/new_zh_TW.properties @@ -21,5 +21,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Node\ name=\u7bc0\u9ede\u540d\u7a31 -Copy\ Existing\ Node=\u8907\u88fd\u65e2\u6709\u7bc0\u9ede +Node\ name=節點å稱 +Copy\ Existing\ Node=複製既有節點 diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_bg.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_bg.properties index b08e7f7058e3..2cbdca588e8a 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_bg.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_bg.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Back\ to\ Dashboard=\ - \u041a\u044a\u043c \u043e\u0441\u043d\u043e\u0432\u043d\u0438\u044f \u0435\u043a\u0440\u0430\u043d + Към оÑÐ½Ð¾Ð²Ð½Ð¸Ñ ÐµÐºÑ€Ð°Ð½ Configure=\ - \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 + ÐаÑтройки Manage\ Jenkins=\ - \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 Jenkins + Управление на Jenkins New\ Node=\ - \u041d\u043e\u0432\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 + Ðова машина diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_cs.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_cs.properties index 3276343b7643..41748f622298 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_cs.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_cs.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Zp\u011Bt na hlavn\u00ED str\u00E1nku -Configure=Nastaven\u00ED +Back\ to\ Dashboard=ZpÄ›t na hlavní stránku +Configure=Nastavení Manage\ Jenkins=Spravovat Jenkins -New\ Node=Nov\u00FD uzel +New\ Node=Nový uzel diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_de.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_de.properties index 61b2c27c4b65..c0400c0e1f4f 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_de.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_de.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Zur\u00fcck zur \u00dcbersicht +Back\ to\ Dashboard=Zurück zur Ãœbersicht New\ Node=Neuer Knoten Configure=Konfigurieren Manage\ Jenkins=Jenkins verwalten diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_el.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_el.properties index f59d5c1af0a8..0b1c22797625 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_el.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_el.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03c3\u03c4\u03bf Dashboard -Manage\ Jenkins=\u0394\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7 Jenkins -Configure=\u03a0\u03b1\u03c1\u03b1\u03bc\u03b5\u03c4\u03c1\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 -New\ Node=\u039D\u03AD\u03BF\u03C2 \u039A\u03CC\u03BC\u03B2\u03BF\u03C2 +Back\ to\ Dashboard=ΕπιστÏοφή στο Dashboard +Manage\ Jenkins=ΔιαχείÏιση Jenkins +Configure=ΠαÏαμετÏοποίηση +New\ Node=Îέος Κόμβος diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_es.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_es.properties index 93be3286b109..62b0527af7ee 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_es.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_es.properties @@ -23,4 +23,4 @@ Back\ to\ Dashboard=Volver al Panel de control Manage\ Jenkins=Administrar Jenkins New\ Node=Nuevo nodo -Configure=Configuraci\u00f3n +Configure=Configuración diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_fi.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_fi.properties index 1ce314d5e82f..5248e2424270 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_fi.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_fi.properties @@ -22,5 +22,5 @@ Back\ to\ Dashboard=Takaisin kojetauluun Configure=Konfiguroi -Manage\ Jenkins=Hallinnoi Jenkinsi\u00E4 +Manage\ Jenkins=Hallinnoi Jenkinsiä New\ Node=Uusi noodi diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_fr.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_fr.properties index 227aeb51cf4a..772927936ce9 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_fr.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_fr.properties @@ -23,5 +23,5 @@ Back\ to\ Dashboard=Retour au tableau de bord Manage\ Jenkins=Administrer Jenkins Configure=Configurer -New\ Node=Cr\u00E9er un n\u0153ud +New\ Node=Créer un nÅ“ud diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_he.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_he.properties index f5339ef25c54..0376fb0bc55c 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_he.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_he.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Back\ to\ Dashboard=\u05D7\u05D6\u05E8\u05D4 \u05DC\u05DE\u05E1\u05DA \u05D4\u05E8\u05D0\u05E9\u05D9 -Configure=\u05D4\u05D2\u05D3\u05E8 -Manage\ Jenkins=\u05E0\u05D4\u05DC \u05D0\u05EA \u05D2''\u05E0\u05E7\u05D9\u05E0\u05E1 +Back\ to\ Dashboard=חזרה למסך הר×שי +Configure=הגדר +Manage\ Jenkins=נהל ×ת ×’''נקינס diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_hu.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_hu.properties index 88ff5d4576cb..a4315ed53c46 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_hu.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_hu.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Vissza a Ir\u00E1ny\u00EDt\u00F3pultra -Configure=Megjelen\u00EDt\u00E9s be\u00E1ll\u00EDt\u00E1sa -Manage\ Jenkins=Jenkins Kezel\u00E9s -New\ Node=\u00DAj Csom\u00F3pont +Back\ to\ Dashboard=Vissza a Irányítópultra +Configure=Megjelenítés beállítása +Manage\ Jenkins=Jenkins Kezelés +New\ Node=Új Csomópont diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_it.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_it.properties index f16dc80be97a..d3d651e4860c 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_it.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_ja.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_ja.properties index 3e3d0c5a8a92..62976b6143d2 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_ja.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u3078\u623b\u308b -Manage\ Jenkins=Jenkins\u306e\u7ba1\u7406 -New\ Node=\u65b0\u898f\u30ce\u30fc\u30c9\u4f5c\u6210 -Configure=\u8a2d\u5b9a +Back\ to\ Dashboard=ダッシュボードã¸æˆ»ã‚‹ +Manage\ Jenkins=Jenkinsã®ç®¡ç† +New\ Node=æ–°è¦ãƒŽãƒ¼ãƒ‰ä½œæˆ +Configure=設定 diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_ko.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_ko.properties index 73870db32778..e9745e234a68 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_ko.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_ko.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\ub300\uc2dc\ubcf4\ub4dc\ub85c \ub3cc\uc544\uac00\uae30 -Manage\ Jenkins=Jenkins \uad00\ub9ac -Configure=\uc124\uc815 -New\ Node=\uc2e0\uaddc \ub178\ub4dc +Back\ to\ Dashboard=대시보드로 ëŒì•„가기 +Manage\ Jenkins=Jenkins 관리 +Configure=설정 +New\ Node=ì‹ ê·œ 노드 diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_lt.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_lt.properties index ac75fec9543d..99b3ecff15d8 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_lt.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_lt.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Atgal \u012F darbalauk\u012F +Back\ to\ Dashboard=Atgal į darbalaukį Configure=Nustatymai Manage\ Jenkins=Valdyti Jenkins New\ Node=Naujas mazgas diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_lv.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_lv.properties index 0556d4b03561..bd85ad5f90cc 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_lv.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_lv.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Atpaka\u013C uz Uzdevumd\u0113li -Configure=Konfigur\u0113t -Manage\ Jenkins=P\u0101rvald\u012Bt Jenkins +Back\ to\ Dashboard=Atpakaļ uz UzdevumdÄ“li +Configure=KonfigurÄ“t +Manage\ Jenkins=PÄrvaldÄ«t Jenkins New\ Node=Jauna Node diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pl.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pl.properties index ef03e2131d06..40ccc3d358c2 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pl.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pl.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Powr\u00F3t do tablicy +Back\ to\ Dashboard=Powrót do tablicy Configure=Konfiguruj -Manage\ Jenkins=Zarz\u0105dzaj Jenkinsem -New\ Node=Nowy w\u0119ze\u0142 +Manage\ Jenkins=ZarzÄ…dzaj Jenkinsem +New\ Node=Nowy wÄ™zeÅ‚ diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pt_BR.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pt_BR.properties index 54b86b0cfa14..dfcbd6a4326b 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pt_BR.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pt_BR.properties @@ -22,6 +22,6 @@ Back\ to\ Dashboard=Voltar ao painel principal Manage\ Jenkins=Gerenciar Jenkins -New\ Node=Novo n\u00F3 +New\ Node=Novo nó Configure\ Clouds=Configurar\ nuvens -Node\ Monitoring=Monitora\u00E7\u00E3o\ de\ n\u00F3 +Node\ Monitoring=Monitoração\ de\ nó diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pt_PT.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pt_PT.properties index e694331a4a95..41ad1834d97f 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pt_PT.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pt_PT.properties @@ -3,4 +3,4 @@ Back\ to\ Dashboard=Voltar ao Quadro Geral Configure=Configurar Manage\ Jenkins=Gerir o Jenkins -New\ Node=Novo N\u00F3 +New\ Node=Novo Nó diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_ru.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_ru.properties index 07d33550de6e..83f368f18dbe 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u0414\u043e\u043c\u043e\u0439 -Manage\ Jenkins=\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c Jenkins -Configure=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 -New\ Node=\u041d\u043e\u0432\u044b\u0439 \u0443\u0437\u0435\u043b +Back\ to\ Dashboard=Домой +Manage\ Jenkins=ÐаÑтроить Jenkins +Configure=ÐаÑтройки +New\ Node=Ðовый узел diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_sk.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_sk.properties index 5cd6e72a5c3f..32c913a02abd 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_sk.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_sk.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Back\ to\ Dashboard=Nasp\u00E4\u0165 na Dashboard +Back\ to\ Dashboard=Naspäť na Dashboard Configure=Konfiguruj Manage\ Jenkins=Spravuj Jenkins -New\ Node=Nov\u00FD stroj +New\ Node=Nový stroj diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_sr.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_sr.properties index 63c9954c7487..e9e44e8cdd99 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_sr.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Manage\ Jenkins=\u0423\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 Jenkins-\u043E\u043C -New\ Node=\u041D\u043E\u0432\u0430 \u043C\u0430\u0448\u0438\u043D\u0430 -Configure=\u041F\u043E\u0434\u0435\u0441\u0438 -Back\ to\ Dashboard=\u041D\u0430\u0437\u0430\u0434 \u043A\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043D\u0443 \u043F\u0430\u043D\u0435\u043B\u0443 +Manage\ Jenkins=Управљање Jenkins-ом +New\ Node=Ðова машина +Configure=ПодеÑи +Back\ to\ Dashboard=Ðазад ка контролну панелу diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_tr.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_tr.properties index 2869102c996e..ec93e331bfed 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_tr.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Kontrol Merkezi'ne D\u00f6n -Manage\ Jenkins=Jenkins''i Y\u00f6net +Back\ to\ Dashboard=Kontrol Merkezi'ne Dön +Manage\ Jenkins=Jenkins''i Yönet diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_uk.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_uk.properties index 3c235ced8f62..7980c93eb90a 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_uk.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_uk.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Back\ to\ Dashboard=\u041F\u043E\u0432\u0435\u0440\u043D\u0443\u0442\u0438\u0441\u044C \u0434\u043E \u041F\u0430\u043D\u0435\u043B\u0456 \u0423\u043F\u0440\u0430\u0432\u043B\u0456\u043D\u043D\u044F -Configure=\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 -Manage\ Jenkins=\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 Jenkins -New\ Node=\u0414\u043E\u0434\u0430\u0442\u0438 \u0432\u0443\u0437\u043E\u043B +Back\ to\ Dashboard=ПовернутиÑÑŒ до Панелі Ð£Ð¿Ñ€Ð°Ð²Ð»Ñ–Ð½Ð½Ñ +Configure=Ðалаштувати +Manage\ Jenkins=Ðалаштувати Jenkins +New\ Node=Додати вузол diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_zh_TW.properties index 7749de480d09..2d6e7294f059 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_zh_TW.properties @@ -21,9 +21,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u8fd4\u56de\u8cc7\u8a0a\u4e3b\u9801 -Manage\ Jenkins=\u7ba1\u7406 Jenkins -New\ Node=\u65b0\u589e\u7bc0\u9ede -Configure=\u8a2d\u5b9a -Configure\ Clouds=\u8a2d\u5b9a\u96f2\u7aef -Node\ Monitoring=\u7bc0\u9ede\u76e3\u8996 +Back\ to\ Dashboard=è¿”å›žè³‡è¨Šä¸»é  +Manage\ Jenkins=ç®¡ç† Jenkins +New\ Node=新增節點 +Configure=設定 +Configure\ Clouds=設定雲端 +Node\ Monitoring=節點監視 diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_bg.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_bg.properties index 62b16f35ba60..25bd1a924e6a 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_bg.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. all\ files\ in\ zip=\ - \u0432\u0441\u0438\u0447\u043a\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u0432\u044a\u0432 \u0444\u043e\u0440\u043c\u0430\u0442 \u201ezip\u201c + вÑички файлове във формат „zip“ view=\ - \u043f\u0440\u0435\u0433\u043b\u0435\u0434 + преглед No\ files\ in\ directory=\ - \u041d\u044f\u043c\u0430 \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u0432 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f\u0442\u0430 + ÐÑма файлове в директориÑта diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_cs.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_cs.properties index 3788f1165944..55429ad5bb5c 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_cs.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_cs.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -all\ files\ in\ zip=v\u0161echny soubory v zip archivu +all\ files\ in\ zip=vÅ¡echny soubory v zip archivu view=zobrazit diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_de.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_de.properties index 31306f54dddf..423a3527b777 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_de.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_de.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. all\ files\ in\ zip=Alle Dateien als ZIP-Archiv herunterladen -No\ files\ in\ directory=Das Verzeichnis enthält keine Dateien. +No\ files\ in\ directory=Das Verzeichnis enthält keine Dateien. view=anzeigen diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_el.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_el.properties index ac5157406afd..814456166fc1 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_el.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_el.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -all\ files\ in\ zip=\u03BF\u03BB\u03B1 \u03C4\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03B1 \u03C3\u03B5 zip +all\ files\ in\ zip=ολα τα αÏχεία σε zip diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_et.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_et.properties index b732926ec8bf..b8b22bffc7be 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_et.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_et.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -all\ files\ in\ zip=k\u00F5ik failid zip arhiivina +all\ files\ in\ zip=kõik failid zip arhiivina view=vaata diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_fi.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_fi.properties index 9496250bd3ef..e6afccd5a906 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_fi.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_fi.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. all\ files\ in\ zip=kaikki tiedostot zip-pakettina -view=n\u00E4kym\u00E4 +view=näkymä diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_fr.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_fr.properties index 864b01933c22..bfb599bc5c27 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_fr.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_fr.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. all\ files\ in\ zip=Tous les fichiers dans un zip -No\ files\ in\ directory=Aucun fichier dans ce répertoire +No\ files\ in\ directory=Aucun fichier dans ce répertoire view=vue diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_hu.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_hu.properties index b05da12cd082..7a0d11395992 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_hu.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_hu.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -No\ files\ in\ directory=\u00DCres mappa -all\ files\ in\ zip=az \u00F6sszes file-t zip form\u00E1tumban -view=n\u00E9zet +No\ files\ in\ directory=Ãœres mappa +all\ files\ in\ zip=az összes file-t zip formátumban +view=nézet diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_it.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_it.properties index ce36420a033a..dc48025b30e4 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_it.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ja.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ja.properties index 3d7f988d5712..d5f01d386730 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ja.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ files\ in\ directory=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u5185\u306B\u30D5\u30A1\u30A4\u30EB\u304C\u5B58\u5728\u3057\u307E\u305B\u3093 -view=\u53C2\u7167 -all\ files\ in\ zip=\u5168\u3066\u306E\u30D5\u30A1\u30A4\u30EB\u3092zip\u3067 +No\ files\ in\ directory=ディレクトリ内ã«ãƒ•ã‚¡ã‚¤ãƒ«ãŒå­˜åœ¨ã—ã¾ã›ã‚“ +view=å‚ç…§ +all\ files\ in\ zip=å…¨ã¦ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’zip㧠diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ko.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ko.properties index 3f362cb5505f..1a6612ddd2fb 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ko.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ko.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ files\ in\ directory=\uB514\uB809\uD1A0\uB9AC\uC5D0 \uD30C\uC77C\uC774 \uC5C6\uC2B5\uB2C8\uB2E4 -all\ files\ in\ zip=zip \uD30C\uC77C\uB85C \uC555\uCD95 -view=\uBCF4\uAE30 +No\ files\ in\ directory=ë””ë ‰í† ë¦¬ì— íŒŒì¼ì´ 없습니다 +all\ files\ in\ zip=zip 파ì¼ë¡œ 압축 +view=보기 diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_lt.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_lt.properties index 77a1900ab8b1..da17f732aba7 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_lt.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_lt.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors all\ files\ in\ zip=visi failai zip formate -view=per\u017Ei\u016Br\u0117ti +view=peržiÅ«rÄ—ti diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_lv.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_lv.properties index ecabae0b7a9c..b22adf44e975 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_lv.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_lv.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -all\ files\ in\ zip=visi faili arh\u012Bv\u0101 -view=skat\u012Bt +all\ files\ in\ zip=visi faili arhÄ«vÄ +view=skatÄ«t diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pl.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pl.properties index 2d6b9ac0f359..14e8feff608f 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pl.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ files\ in\ directory=Brak plik\u00F3w w katalogu +No\ files\ in\ directory=Brak plików w katalogu all\ files\ in\ zip=wszystkie pliki jako zip view=zobacz diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pt_BR.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pt_BR.properties index 82a423293748..06537d48adad 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pt_BR.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pt_BR.properties @@ -22,8 +22,8 @@ # THE SOFTWARE. all\ files\ in\ zip=Todos os arquivos em .zip -No\ files\ in\ directory=Nenhum arquivo no diret\u00F3rio -Symlinks\ are\ hidden=Liga\u00E7\u00F5es simb\u00F3licas est\u00E3o escondidas +No\ files\ in\ directory=Nenhum arquivo no diretório +Symlinks\ are\ hidden=Ligações simbólicas estão escondidas N/A=N/A View=Visualizar -View\ fingerprint=Visualizar impress\u00E3o digital +View\ fingerprint=Visualizar impressão digital diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pt_PT.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pt_PT.properties index ff125def6ce5..6357584d73a4 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pt_PT.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pt_PT.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -No\ files\ in\ directory=Sem ficheiros no diret\u00F3rio +No\ files\ in\ directory=Sem ficheiros no diretório all\ files\ in\ zip=Todos os ficheiros em formato zip view=vista diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ru.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ru.properties index a144cc58f478..d85e7a7c832c 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ru.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -all\ files\ in\ zip=\u0412\u0441\u0435 \u0444\u0430\u0439\u043b\u044b \u0432 \u0430\u0440\u0445\u0438\u0432\u0435 ZIP -No\ files\ in\ directory=\u0412 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u0438 \u043d\u0435\u0442 \u0444\u0430\u0439\u043b\u043e\u0432 -view=\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 +all\ files\ in\ zip=Ð’Ñе файлы в архиве ZIP +No\ files\ in\ directory=Ð’ директории нет файлов +view=ПроÑмотр diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sk.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sk.properties index 1dc593840085..c66f59287f57 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sk.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sk.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -No\ files\ in\ directory=\u017Diadne s\u00FAbory v adres\u00E1ri -all\ files\ in\ zip=v\u0161etky s\u00FAbory v zip bal\u00EDku -view=uk\u00E1\u017E +No\ files\ in\ directory=Žiadne súbory v adresári +all\ files\ in\ zip=vÅ¡etky súbory v zip balíku +view=ukáž diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sl.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sl.properties index 36ecbc3bc22b..0f3c479c9e48 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sl.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sl.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors all\ files\ in\ zip=vse datoteke kot zip -view=prika\u017Ei +view=prikaži diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sr.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sr.properties index a180d29f8868..45a86bbe74fe 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sr.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -No\ files\ in\ directory=\u041D\u0435\u043C\u0430 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u0443 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C\u0443 -view=\u041F\u0440\u0438\u043A\u0430\u0436\u0438 -all\ files\ in\ zip=\u0441\u0432\u0435 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435 \u0443 zip \u0430\u0440\u0445\u0438\u0432\u0438 +No\ files\ in\ directory=Ðема датотека у директоријуму +view=Прикажи +all\ files\ in\ zip=Ñве датотеке у zip архиви diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sv_SE.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sv_SE.properties index e452423099b9..a531bf88f2f5 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sv_SE.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sv_SE.properties @@ -22,4 +22,4 @@ No\ files\ in\ directory=Inga filer i denna katalog all\ files\ in\ zip=alla filer i en zip fil -view=\u00F6ppna +view=öppna diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_tr.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_tr.properties index 9418b0af168d..9164a64b5296 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_tr.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_tr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -all\ files\ in\ zip=Zip halinde t\u00fcm dosyalar -No\ files\ in\ directory=Dizin i\u00e7erisinde dosya bulunmuyor -view=G\u00F6r\u00FCn\u00FCm +all\ files\ in\ zip=Zip halinde tüm dosyalar +No\ files\ in\ directory=Dizin içerisinde dosya bulunmuyor +view=Görünüm diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_uk.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_uk.properties index 258c6425267a..538fe5336136 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_uk.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_uk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -No\ files\ in\ directory=\u0414\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0456\u044F \u043F\u043E\u0440\u043E\u0436\u043D\u044F -all\ files\ in\ zip=\u0432\u0441\u0456 \u0444\u0430\u0439\u043B\u0438 \u0432 zip +No\ files\ in\ directory=Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ñ–Ñ Ð¿Ð¾Ñ€Ð¾Ð¶Ð½Ñ +all\ files\ in\ zip=вÑÑ– файли в zip diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_zh_TW.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_zh_TW.properties index dd364a239034..926786e47e3f 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_zh_TW.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_zh_TW.properties @@ -21,6 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ files\ in\ directory=\u6C92\u6709\u6A94\u6848\u5728\u8CC7\u6599\u593E\u4E2D -view=\u6aa2\u8996 -all\ files\ in\ zip=\u5168\u90e8\u6253\u5305\u6210 Zip \u6a94 +No\ files\ in\ directory=沒有檔案在資料夾中 +view=檢視 +all\ files\ in\ zip=å…¨éƒ¨æ‰“åŒ…æˆ Zip 檔 diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/plaindir_it.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/plaindir_it.properties index 4b4bdcad7e0f..68226dad9690 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/plaindir_it.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/plaindir_it.properties @@ -1,5 +1,5 @@ # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/plaindir_pt_BR.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/plaindir_pt_BR.properties index 563b35a6bc28..87cc335ef7cf 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/plaindir_pt_BR.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/plaindir_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ files\ in\ directory=Nenhum\ arquivo\ no\ diret\u00F3rio +No\ files\ in\ directory=Nenhum\ arquivo\ no\ diretório diff --git a/core/src/main/resources/hudson/model/EnvironmentContributor/EnvVarsHtml/index_de.properties b/core/src/main/resources/hudson/model/EnvironmentContributor/EnvVarsHtml/index_de.properties index f85cb0145b42..da65d3385c71 100644 --- a/core/src/main/resources/hudson/model/EnvironmentContributor/EnvVarsHtml/index_de.properties +++ b/core/src/main/resources/hudson/model/EnvironmentContributor/EnvVarsHtml/index_de.properties @@ -1 +1 @@ -Available\ Environment\ Variables=Verf\u00FCgbare Umgebungsvariablen +Available\ Environment\ Variables=Verfügbare Umgebungsvariablen diff --git a/core/src/main/resources/hudson/model/EnvironmentContributor/EnvVarsHtml/index_it.properties b/core/src/main/resources/hudson/model/EnvironmentContributor/EnvVarsHtml/index_it.properties index b1f37e34927a..aa73b2303e32 100644 --- a/core/src/main/resources/hudson/model/EnvironmentContributor/EnvVarsHtml/index_it.properties +++ b/core/src/main/resources/hudson/model/EnvironmentContributor/EnvVarsHtml/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/EnvironmentContributor/EnvVarsHtml/index_ja.properties b/core/src/main/resources/hudson/model/EnvironmentContributor/EnvVarsHtml/index_ja.properties index f4433bf8cebb..b5c81a0db2dc 100644 --- a/core/src/main/resources/hudson/model/EnvironmentContributor/EnvVarsHtml/index_ja.properties +++ b/core/src/main/resources/hudson/model/EnvironmentContributor/EnvVarsHtml/index_ja.properties @@ -1 +1 @@ -Available\ Environment\ Variables=\u5229\u7528\u53EF\u80FD\u306A\u74B0\u5883\u5909\u6570 +Available\ Environment\ Variables=利用å¯èƒ½ãªç’°å¢ƒå¤‰æ•° diff --git a/core/src/main/resources/hudson/model/EnvironmentContributor/EnvVarsHtml/index_sr.properties b/core/src/main/resources/hudson/model/EnvironmentContributor/EnvVarsHtml/index_sr.properties index 9824c15ba4b2..c7a31b5535d2 100644 --- a/core/src/main/resources/hudson/model/EnvironmentContributor/EnvVarsHtml/index_sr.properties +++ b/core/src/main/resources/hudson/model/EnvironmentContributor/EnvVarsHtml/index_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Available\ Environment\ Variables=\u0421\u043B\u043E\u0431\u043E\u0434\u043D\u0438\u0445 \u0413\u043B\u043E\u0431\u0430\u043B\u043D\u0438\u0445 \u041F\u0440\u043E\u043C\u0435\u043D\u0459\u0438\u0432\u0430 +Available\ Environment\ Variables=Слободних Глобалних Променљива diff --git a/core/src/main/resources/hudson/model/EnvironmentContributor/EnvVarsHtml/index_zh_TW.properties b/core/src/main/resources/hudson/model/EnvironmentContributor/EnvVarsHtml/index_zh_TW.properties index 0604952e052b..0be5e55a6b07 100644 --- a/core/src/main/resources/hudson/model/EnvironmentContributor/EnvVarsHtml/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/EnvironmentContributor/EnvVarsHtml/index_zh_TW.properties @@ -1 +1 @@ -blurb=\u4e0b\u5217\u8b8a\u6578\u5728 Shell \u548c\u6279\u6b21\u5efa\u7f6e\u968e\u6bb5\u4e2d\u53ef\u4ee5\u4f7f\u7528\: +blurb=下列變數在 Shell 和批次建置階段中å¯ä»¥ä½¿ç”¨\: diff --git a/core/src/main/resources/hudson/model/FileParameterDefinition/config_bg.properties b/core/src/main/resources/hudson/model/FileParameterDefinition/config_bg.properties index 07768145c36e..d49941a1b6c9 100644 --- a/core/src/main/resources/hudson/model/FileParameterDefinition/config_bg.properties +++ b/core/src/main/resources/hudson/model/FileParameterDefinition/config_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Description=\ - \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 + ОпиÑание File\ location=\ - \u041c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043d\u0430 \u0444\u0430\u0439\u043b\u0430 + МеÑтоположение на файла diff --git a/core/src/main/resources/hudson/model/FileParameterDefinition/config_es.properties b/core/src/main/resources/hudson/model/FileParameterDefinition/config_es.properties index 5fab33c927b3..118b8f3f9701 100644 --- a/core/src/main/resources/hudson/model/FileParameterDefinition/config_es.properties +++ b/core/src/main/resources/hudson/model/FileParameterDefinition/config_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -File\ location=Localización -Description=Descripción +File\ location=Localización +Description=Descripción diff --git a/core/src/main/resources/hudson/model/FileParameterDefinition/config_it.properties b/core/src/main/resources/hudson/model/FileParameterDefinition/config_it.properties index e0e6416ca2e4..22801d7eb7ed 100644 --- a/core/src/main/resources/hudson/model/FileParameterDefinition/config_it.properties +++ b/core/src/main/resources/hudson/model/FileParameterDefinition/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/FileParameterDefinition/config_ja.properties b/core/src/main/resources/hudson/model/FileParameterDefinition/config_ja.properties index 28e943bfaf67..a3f89a838a0d 100644 --- a/core/src/main/resources/hudson/model/FileParameterDefinition/config_ja.properties +++ b/core/src/main/resources/hudson/model/FileParameterDefinition/config_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -File\ location=\u30D5\u30A1\u30A4\u30EB -Description=\u8AAC\u660E +File\ location=ファイル +Description=説明 diff --git a/core/src/main/resources/hudson/model/FileParameterDefinition/config_pt_BR.properties b/core/src/main/resources/hudson/model/FileParameterDefinition/config_pt_BR.properties index 289f90e0e5b9..e3709f9e85f4 100644 --- a/core/src/main/resources/hudson/model/FileParameterDefinition/config_pt_BR.properties +++ b/core/src/main/resources/hudson/model/FileParameterDefinition/config_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -File\ location=Localiza\u00e7\u00e3o do arquivo -Description=Descri\u00e7\u00e3o +File\ location=Localização do arquivo +Description=Descrição diff --git a/core/src/main/resources/hudson/model/FileParameterDefinition/config_ru.properties b/core/src/main/resources/hudson/model/FileParameterDefinition/config_ru.properties index b48a89376d9f..7de2116efa69 100644 --- a/core/src/main/resources/hudson/model/FileParameterDefinition/config_ru.properties +++ b/core/src/main/resources/hudson/model/FileParameterDefinition/config_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -File\ location=\u041c\u0435\u0441\u0442\u043e\u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u0430 -Description=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 +File\ location=МеÑтораÑположение файла +Description=ОпиÑание diff --git a/core/src/main/resources/hudson/model/FileParameterDefinition/config_sr.properties b/core/src/main/resources/hudson/model/FileParameterDefinition/config_sr.properties index fb816e91a0af..4e94c7f0f1ff 100644 --- a/core/src/main/resources/hudson/model/FileParameterDefinition/config_sr.properties +++ b/core/src/main/resources/hudson/model/FileParameterDefinition/config_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -File\ location=\u041B\u043E\u043A\u0430\u0446\u0438\u0458\u0430 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435 -Description=\u041E\u043F\u0438\u0441 +File\ location=Локација датотеке +Description=ÐžÐ¿Ð¸Ñ diff --git a/core/src/main/resources/hudson/model/FileParameterDefinition/config_zh_TW.properties b/core/src/main/resources/hudson/model/FileParameterDefinition/config_zh_TW.properties index b6375442d3d7..403e56db446a 100644 --- a/core/src/main/resources/hudson/model/FileParameterDefinition/config_zh_TW.properties +++ b/core/src/main/resources/hudson/model/FileParameterDefinition/config_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -File\ location=\u6a94\u6848\u4f4d\u7f6e -Description=\u8aaa\u660e +File\ location=檔案ä½ç½® +Description=說明 diff --git a/core/src/main/resources/hudson/model/FileParameterValue/value_bg.properties b/core/src/main/resources/hudson/model/FileParameterValue/value_bg.properties index 6a810d89a1e6..dafd8c7293fc 100644 --- a/core/src/main/resources/hudson/model/FileParameterValue/value_bg.properties +++ b/core/src/main/resources/hudson/model/FileParameterValue/value_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. view=\ - \u0438\u0437\u0433\u043b\u0435\u0434 + изглед diff --git a/core/src/main/resources/hudson/model/FileParameterValue/value_it.properties b/core/src/main/resources/hudson/model/FileParameterValue/value_it.properties index 044bd09a41c5..29197ad5bd0c 100644 --- a/core/src/main/resources/hudson/model/FileParameterValue/value_it.properties +++ b/core/src/main/resources/hudson/model/FileParameterValue/value_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,6 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -nofile=(Non è stato caricato nessun file) +nofile=(Non è stato caricato nessun file) open=Apri view=Visualizza diff --git a/core/src/main/resources/hudson/model/FileParameterValue/value_ja.properties b/core/src/main/resources/hudson/model/FileParameterValue/value_ja.properties index d907a1a3bbbc..88673972fca7 100644 --- a/core/src/main/resources/hudson/model/FileParameterValue/value_ja.properties +++ b/core/src/main/resources/hudson/model/FileParameterValue/value_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -view=\u30d3\u30e5\u30fc +view=ビュー diff --git a/core/src/main/resources/hudson/model/FileParameterValue/value_sr.properties b/core/src/main/resources/hudson/model/FileParameterValue/value_sr.properties index 9436855e09d9..f7591e713424 100644 --- a/core/src/main/resources/hudson/model/FileParameterValue/value_sr.properties +++ b/core/src/main/resources/hudson/model/FileParameterValue/value_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -view=\u043F\u0440\u0435\u0433\u043B\u0435\u0434 +view=преглед diff --git a/core/src/main/resources/hudson/model/FileParameterValue/value_zh_TW.properties b/core/src/main/resources/hudson/model/FileParameterValue/value_zh_TW.properties index 985d19e6146a..e9144581b790 100644 --- a/core/src/main/resources/hudson/model/FileParameterValue/value_zh_TW.properties +++ b/core/src/main/resources/hudson/model/FileParameterValue/value_zh_TW.properties @@ -1,3 +1,3 @@ -nofile=(\u6c92\u6709\u4e0a\u50b3\u6a94\u6848) -view=\u6aa2\u8996 -open=\u958b\u555f +nofile=(沒有上傳檔案) +view=檢視 +open=é–‹å•Ÿ diff --git a/core/src/main/resources/hudson/model/Fingerprint/index_bg.properties b/core/src/main/resources/hudson/model/Fingerprint/index_bg.properties index 85fc773896bb..0dc8aedbdfe1 100644 --- a/core/src/main/resources/hudson/model/Fingerprint/index_bg.properties +++ b/core/src/main/resources/hudson/model/Fingerprint/index_bg.properties @@ -21,15 +21,15 @@ # THE SOFTWARE. Usage=\ - \u0423\u043f\u043e\u0442\u0440\u0435\u0431\u0430 + Употреба outside\ Jenkins=\ - \u0438\u0437\u0432\u044a\u043d Jenkins + извън Jenkins This\ file\ has\ not\ been\ used\ anywhere\ else.=\ - \u0422\u043e\u0437\u0438 \u0444\u0430\u0439\u043b \u043d\u0435 \u0441\u0435 \u043f\u043e\u043b\u0437\u0432\u0430 \u043d\u0438\u043a\u044a\u0434\u0435 \u0434\u0440\u0443\u0433\u0430\u0434\u0435. + Този файл не Ñе ползва никъде другаде. # Introduced {0} ago introduced=\ - \u0412\u044a\u0432\u0435\u0434\u0435\u043d\u043e \u043f\u0440\u0435\u0434\u0438 {0} + Въведено преди {0} This\ file\ has\ been\ used\ in\ the\ following\ places=\ - \u0422\u043e\u0437\u0438 \u0444\u0430\u0439\u043b \u0441\u0435 \u043f\u043e\u043b\u0437\u0432\u0430 \u043d\u0430 \u0441\u043b\u0435\u0434\u043d\u0438\u0442\u0435 \u043c\u0435\u0441\u0442\u0430. + Този файл Ñе ползва на Ñледните меÑта. Back\ to\ Dashboard=\ - \u041a\u044a\u043c \u0442\u0430\u0431\u043b\u043e\u0442\u043e \u0437\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 + Към таблото за управление diff --git a/core/src/main/resources/hudson/model/Fingerprint/index_da.properties b/core/src/main/resources/hudson/model/Fingerprint/index_da.properties index d08eb18c60e2..2ca9fd020846 100644 --- a/core/src/main/resources/hudson/model/Fingerprint/index_da.properties +++ b/core/src/main/resources/hudson/model/Fingerprint/index_da.properties @@ -25,4 +25,4 @@ Back\ to\ Dashboard=Tilbage til oversigtssiden introduced=Introduceret for {0} siden outside\ Jenkins=udenfor Jenkins Usage=Brug -This\ file\ has\ been\ used\ in\ the\ following\ places=Denne fil er benyttet f\u00f8lgende steder +This\ file\ has\ been\ used\ in\ the\ following\ places=Denne fil er benyttet følgende steder diff --git a/core/src/main/resources/hudson/model/Fingerprint/index_de.properties b/core/src/main/resources/hudson/model/Fingerprint/index_de.properties index aca0d5be05fd..168f76d72f21 100644 --- a/core/src/main/resources/hudson/model/Fingerprint/index_de.properties +++ b/core/src/main/resources/hudson/model/Fingerprint/index_de.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -introduced=Eingeführt vor {0} -outside\ Jenkins=außerhalb Jenkins' +introduced=Eingeführt vor {0} +outside\ Jenkins=außerhalb Jenkins' This\ file\ has\ not\ been\ used\ anywhere\ else.=Diese Datei wurde an keiner weiteren Stelle verwendet. This\ file\ has\ been\ used\ in\ the\ following\ places=Diese Datei wurde an folgenden Stellen verwendet -Back\ to\ Dashboard=Zurück zur Übersicht +Back\ to\ Dashboard=Zurück zur Ãœbersicht Usage=Verwendung diff --git a/core/src/main/resources/hudson/model/Fingerprint/index_es.properties b/core/src/main/resources/hudson/model/Fingerprint/index_es.properties index 8dce35a1f30c..dcbbd2172529 100644 --- a/core/src/main/resources/hudson/model/Fingerprint/index_es.properties +++ b/core/src/main/resources/hudson/model/Fingerprint/index_es.properties @@ -23,7 +23,7 @@ introduced=Introducida hace {0} This\ file\ has\ been\ used\ in\ the\ following\ places=Este fichero se ha utilizado en los siguientes sitios outside\ Jenkins=fuera de Jenkins -This\ file\ has\ not\ been\ used\ anywhere\ else.=Este fichero no se ha utlizado en ningún otro sitio +This\ file\ has\ not\ been\ used\ anywhere\ else.=Este fichero no se ha utlizado en ningún otro sitio Back\ to\ Dashboard=Volver al Panel de control Usage=Uso diff --git a/core/src/main/resources/hudson/model/Fingerprint/index_fi.properties b/core/src/main/resources/hudson/model/Fingerprint/index_fi.properties index d7168fadc113..1758f93e9ca7 100644 --- a/core/src/main/resources/hudson/model/Fingerprint/index_fi.properties +++ b/core/src/main/resources/hudson/model/Fingerprint/index_fi.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Back\ to\ Dashboard=Takaisin kojetauluun -This\ file\ has\ been\ used\ in\ the\ following\ places=T\u00E4t\u00E4 tiedostoa on k\u00E4ytetty seuraavasti -Usage=K\u00E4ytetty +This\ file\ has\ been\ used\ in\ the\ following\ places=Tätä tiedostoa on käytetty seuraavasti +Usage=Käytetty introduced=Luotu {0} sitten diff --git a/core/src/main/resources/hudson/model/Fingerprint/index_fr.properties b/core/src/main/resources/hudson/model/Fingerprint/index_fr.properties index 7c0aabc1ce00..263c2cd27cfe 100644 --- a/core/src/main/resources/hudson/model/Fingerprint/index_fr.properties +++ b/core/src/main/resources/hudson/model/Fingerprint/index_fr.properties @@ -22,7 +22,7 @@ introduced=Introduit il y a {0} outside\ Jenkins=hors Jenkins -This\ file\ has\ not\ been\ used\ anywhere\ else.=Ce fichier n''a été utilisé nulle part ailleurs. -This\ file\ has\ been\ used\ in\ the\ following\ places=Ce fichier a été utilisé aux endroits suivants +This\ file\ has\ not\ been\ used\ anywhere\ else.=Ce fichier n''a été utilisé nulle part ailleurs. +This\ file\ has\ been\ used\ in\ the\ following\ places=Ce fichier a été utilisé aux endroits suivants Back\ to\ Dashboard=Retour au tableau de bord Usage=Utilisation diff --git a/core/src/main/resources/hudson/model/Fingerprint/index_it.properties b/core/src/main/resources/hudson/model/Fingerprint/index_it.properties index 0a18cb281488..96b06fcb54b9 100644 --- a/core/src/main/resources/hudson/model/Fingerprint/index_it.properties +++ b/core/src/main/resources/hudson/model/Fingerprint/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -24,6 +24,6 @@ Back\ to\ Dashboard=Torna al cruscotto introduced=Introdotto {0} fa outside\ Jenkins=al di fuori di Jenkins -This\ file\ has\ been\ used\ in\ the\ following\ places=Questo file è stato utilizzato nei seguenti percorsi: -This\ file\ has\ not\ been\ used\ anywhere\ else.=Questo file non è stato utilizzato altrove. +This\ file\ has\ been\ used\ in\ the\ following\ places=Questo file è stato utilizzato nei seguenti percorsi: +This\ file\ has\ not\ been\ used\ anywhere\ else.=Questo file non è stato utilizzato altrove. Usage=Utilizzo diff --git a/core/src/main/resources/hudson/model/Fingerprint/index_ja.properties b/core/src/main/resources/hudson/model/Fingerprint/index_ja.properties index c768017247a3..e25ca6043eff 100644 --- a/core/src/main/resources/hudson/model/Fingerprint/index_ja.properties +++ b/core/src/main/resources/hudson/model/Fingerprint/index_ja.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u3078\u623b\u308b -introduced={0}\u306b\u5c0e\u5165 -outside\ Jenkins=Jenkins\u5916 -Usage=\u4f7f\u7528 -This\ file\ has\ not\ been\ used\ anywhere\ else.=\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u306f\u3069\u3053\u306b\u3082\u4f7f\u7528\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002 -This\ file\ has\ been\ used\ in\ the\ following\ places=\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u306f\u6b21\u306e\u5834\u6240\u3067\u4f7f\u7528\u3055\u308c\u3066\u3044\u307e\u3059 +Back\ to\ Dashboard=ダッシュボードã¸æˆ»ã‚‹ +introduced={0}ã«å°Žå…¥ +outside\ Jenkins=Jenkins外 +Usage=使用 +This\ file\ has\ not\ been\ used\ anywhere\ else.=ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯ã©ã“ã«ã‚‚使用ã•ã‚Œã¦ã„ã¾ã›ã‚“。 +This\ file\ has\ been\ used\ in\ the\ following\ places=ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯æ¬¡ã®å ´æ‰€ã§ä½¿ç”¨ã•ã‚Œã¦ã„ã¾ã™ diff --git a/core/src/main/resources/hudson/model/Fingerprint/index_lv.properties b/core/src/main/resources/hudson/model/Fingerprint/index_lv.properties index d8190f673635..4d651df9cba7 100644 --- a/core/src/main/resources/hudson/model/Fingerprint/index_lv.properties +++ b/core/src/main/resources/hudson/model/Fingerprint/index_lv.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Atpaka\u013C uz Uzdevumd\u0113li -This\ file\ has\ been\ used\ in\ the\ following\ places=\u0160is fails ticis izmantots sekojo\u0161\u0101s viet\u0101s +Back\ to\ Dashboard=Atpakaļ uz UzdevumdÄ“li +This\ file\ has\ been\ used\ in\ the\ following\ places=Å is fails ticis izmantots sekojoÅ¡Äs vietÄs Usage=Pielietojums -introduced=Uzr\u0101d\u012Bts pirms {0} +introduced=UzrÄdÄ«ts pirms {0} diff --git a/core/src/main/resources/hudson/model/Fingerprint/index_nl.properties b/core/src/main/resources/hudson/model/Fingerprint/index_nl.properties index 5f55c763e5ff..fdb086839993 100644 --- a/core/src/main/resources/hudson/model/Fingerprint/index_nl.properties +++ b/core/src/main/resources/hudson/model/Fingerprint/index_nl.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -introduced={0} geleden ge\u00EFntroduceerd +introduced={0} geleden geïntroduceerd outside\ Jenkins=buiten Jenkins This\ file\ has\ not\ been\ used\ anywhere\ else.=Dit bestand is nergens anders gebruikt. This\ file\ has\ been\ used\ in\ the\ following\ places=Dit bestand is op de volgende plaatsen gebruikt. diff --git a/core/src/main/resources/hudson/model/Fingerprint/index_pt_BR.properties b/core/src/main/resources/hudson/model/Fingerprint/index_pt_BR.properties index b445f73cd2b8..1fb5b518de1c 100644 --- a/core/src/main/resources/hudson/model/Fingerprint/index_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Fingerprint/index_pt_BR.properties @@ -22,7 +22,7 @@ introduced=Introduzido {0} outside\ Jenkins=Fora do Jenkins -This\ file\ has\ not\ been\ used\ anywhere\ else.=Este arquivo n\u00e3o foi usado em nenhum lugar. +This\ file\ has\ not\ been\ used\ anywhere\ else.=Este arquivo não foi usado em nenhum lugar. This\ file\ has\ been\ used\ in\ the\ following\ places=Este arquivo foi usado nos seguintes lugares Back\ to\ Dashboard=Voltar ao painel principal Usage=Uso diff --git a/core/src/main/resources/hudson/model/Fingerprint/index_ru.properties b/core/src/main/resources/hudson/model/Fingerprint/index_ru.properties index 9400e17a359e..03136c424468 100644 --- a/core/src/main/resources/hudson/model/Fingerprint/index_ru.properties +++ b/core/src/main/resources/hudson/model/Fingerprint/index_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -introduced=\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d {0} \u043d\u0430\u0437\u0430\u0434 -outside\ Jenkins=\u0432\u043e\u0432\u043d\u0435 Jenkins -This\ file\ has\ not\ been\ used\ anywhere\ else.=\u042d\u0442\u043e\u0442 \u0444\u0430\u0439\u043b \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0438\u0433\u0434\u0435 \u043d\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043b\u0441\u044f. -This\ file\ has\ been\ used\ in\ the\ following\ places=\u042d\u0442\u043e\u0442 \u0444\u0430\u0439\u043b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043b\u0441\u044f \u0432 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u043c\u0435\u0441\u0442\u0430\u0445 +introduced=ПредоÑтавлен {0} назад +outside\ Jenkins=вовне Jenkins +This\ file\ has\ not\ been\ used\ anywhere\ else.=Этот файл больше нигде не иÑпользовалÑÑ. +This\ file\ has\ been\ used\ in\ the\ following\ places=Этот файл иÑпользовалÑÑ Ð² Ñледующих меÑтах diff --git a/core/src/main/resources/hudson/model/Fingerprint/index_sr.properties b/core/src/main/resources/hudson/model/Fingerprint/index_sr.properties index d348edb20722..3994af2b87a9 100644 --- a/core/src/main/resources/hudson/model/Fingerprint/index_sr.properties +++ b/core/src/main/resources/hudson/model/Fingerprint/index_sr.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Back\ to\ Dashboard=\u041D\u0430\u0437\u0430\u0434 \u043A\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043D\u0443 \u043F\u0430\u043D\u0435\u043B\u0443 -introduced=\u0418\u0437\u0458\u0430\u0432\u0459\u0435\u043D\u043E \u043F\u0440\u0435 {0} -outside\ Jenkins=\u0438\u0437\u0432\u0430\u043D Jenkins -Usage=\u0418\u0441\u043A\u043E\u0440\u0438\u0448\u045B\u0435\u045A\u0435 -This\ file\ has\ not\ been\ used\ anywhere\ else.=\u041E\u0432\u0430 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u043D\u0438\u0458\u0435 \u0434\u0440\u0443\u0433\u0434\u0435 \u043A\u043E\u0440\u0438\u0448\u045B\u0435\u043D\u0430. -This\ file\ has\ been\ used\ in\ the\ following\ places=\u041E\u0432\u0430 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u0441\u0435 \u043A\u043E\u0440\u0438\u0441\u0442\u0438 \u043A\u043E\u0434: +Back\ to\ Dashboard=Ðазад ка контролну панелу +introduced=Изјављено пре {0} +outside\ Jenkins=изван Jenkins +Usage=ИÑкоришћење +This\ file\ has\ not\ been\ used\ anywhere\ else.=Ова датотека није другде коришћена. +This\ file\ has\ been\ used\ in\ the\ following\ places=Ова датотека Ñе кориÑти код: diff --git a/core/src/main/resources/hudson/model/Fingerprint/index_sv_SE.properties b/core/src/main/resources/hudson/model/Fingerprint/index_sv_SE.properties index 41decd556eb3..3fd2b5c4da5a 100644 --- a/core/src/main/resources/hudson/model/Fingerprint/index_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Fingerprint/index_sv_SE.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Usage=Anv\u00E4ndning +Usage=Användning diff --git a/core/src/main/resources/hudson/model/Fingerprint/index_tr.properties b/core/src/main/resources/hudson/model/Fingerprint/index_tr.properties index 37d0106d8e8a..34fed6dd15ab 100644 --- a/core/src/main/resources/hudson/model/Fingerprint/index_tr.properties +++ b/core/src/main/resources/hudson/model/Fingerprint/index_tr.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -introduced={0} \u00f6nce ba\u015flad\u0131 -outside\ Jenkins=Jenkins''in d\u0131\u015f\u0131nda -This\ file\ has\ not\ been\ used\ anywhere\ else.=Bu dosya ba\u015fka yerde kullan\u0131lmamaktad\u0131r. -This\ file\ has\ been\ used\ in\ the\ following\ places=Bu dosya belirtilen yerlerde kullan\u0131lmaktad\u0131r -Back\ to\ Dashboard=Kontrol Merkezi''ne D\u00f6n -Usage=Kullan\u0131m +introduced={0} önce baÅŸladı +outside\ Jenkins=Jenkins''in dışında +This\ file\ has\ not\ been\ used\ anywhere\ else.=Bu dosya baÅŸka yerde kullanılmamaktadır. +This\ file\ has\ been\ used\ in\ the\ following\ places=Bu dosya belirtilen yerlerde kullanılmaktadır +Back\ to\ Dashboard=Kontrol Merkezi''ne Dön +Usage=Kullanım diff --git a/core/src/main/resources/hudson/model/Fingerprint/index_zh_TW.properties b/core/src/main/resources/hudson/model/Fingerprint/index_zh_TW.properties index 5299da762e80..d0ea960b352b 100644 --- a/core/src/main/resources/hudson/model/Fingerprint/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Fingerprint/index_zh_TW.properties @@ -19,9 +19,9 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -introduced={0}\u524d\u7522\u51fa\uff0c\u4f86\u81ea -Back\ to\ Dashboard=\u8fd4\u56de\u8cc7\u8a0a\u4e3b\u9801 -outside\ Jenkins=Jenkins \u4e4b\u5916 -Usage=\u4f7f\u7528\u72c0\u6cc1 -This\ file\ has\ not\ been\ used\ anywhere\ else.=\u5b8c\u5168\u6c92\u4eba\u7528\u5230\u9019\u500b\u6a94\u6848\u3002 -This\ file\ has\ been\ used\ in\ the\ following\ places=\u4e0b\u5217\u5730\u65b9\u7528\u5230\u9019\u500b\u6a94\u6848 +introduced={0}å‰ç”¢å‡ºï¼Œä¾†è‡ª +Back\ to\ Dashboard=è¿”å›žè³‡è¨Šä¸»é  +outside\ Jenkins=Jenkins 之外 +Usage=ä½¿ç”¨ç‹€æ³ +This\ file\ has\ not\ been\ used\ anywhere\ else.=完全沒人用到這個檔案。 +This\ file\ has\ been\ used\ in\ the\ following\ places=下列地方用到這個檔案 diff --git a/core/src/main/resources/hudson/model/JDK/config_bg.properties b/core/src/main/resources/hudson/model/JDK/config_bg.properties index 0736fc63c290..0c48101ee9d8 100644 --- a/core/src/main/resources/hudson/model/JDK/config_bg.properties +++ b/core/src/main/resources/hudson/model/JDK/config_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Name=\ - \u0418\u043c\u0435 + Име diff --git a/core/src/main/resources/hudson/model/JDK/config_he.properties b/core/src/main/resources/hudson/model/JDK/config_he.properties index 892de2586fda..6148ba2bd913 100644 --- a/core/src/main/resources/hudson/model/JDK/config_he.properties +++ b/core/src/main/resources/hudson/model/JDK/config_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Name=\u05E9\u05DD +Name=×©× diff --git a/core/src/main/resources/hudson/model/JDK/config_it.properties b/core/src/main/resources/hudson/model/JDK/config_it.properties index e802c683045d..9815b8b2bca3 100644 --- a/core/src/main/resources/hudson/model/JDK/config_it.properties +++ b/core/src/main/resources/hudson/model/JDK/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/JDK/config_ja.properties b/core/src/main/resources/hudson/model/JDK/config_ja.properties index 8ed9828074d7..98600e510b50 100644 --- a/core/src/main/resources/hudson/model/JDK/config_ja.properties +++ b/core/src/main/resources/hudson/model/JDK/config_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540D\u524D +Name=åå‰ diff --git a/core/src/main/resources/hudson/model/JDK/config_ru.properties b/core/src/main/resources/hudson/model/JDK/config_ru.properties index e5d03af1efb7..04dfd0858db0 100644 --- a/core/src/main/resources/hudson/model/JDK/config_ru.properties +++ b/core/src/main/resources/hudson/model/JDK/config_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u0418\u043C\u044F -name=\u0438\u043C\u044F +Name=Ð˜Ð¼Ñ +name=Ð¸Ð¼Ñ diff --git a/core/src/main/resources/hudson/model/JDK/config_sr.properties b/core/src/main/resources/hudson/model/JDK/config_sr.properties index 2fbb8bde3800..820b57dea569 100644 --- a/core/src/main/resources/hudson/model/JDK/config_sr.properties +++ b/core/src/main/resources/hudson/model/JDK/config_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Name=\u0418\u043C\u0435 +Name=Име diff --git a/core/src/main/resources/hudson/model/JDK/config_zh_TW.properties b/core/src/main/resources/hudson/model/JDK/config_zh_TW.properties index c481a65382a6..a2a5504d17fb 100644 --- a/core/src/main/resources/hudson/model/JDK/config_zh_TW.properties +++ b/core/src/main/resources/hudson/model/JDK/config_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540D\u7A31 +Name=å稱 diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_bg.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_bg.properties index 0bd66c1a99cb..765bfc4d3a52 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_bg.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_bg.properties @@ -21,17 +21,17 @@ # THE SOFTWARE. Build=\ - \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + Изграждане Duration=\ - \u041f\u0440\u043e\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u043e\u0441\u0442 + ПродължителноÑÑ‚ # {0} Build time trend title=\ - \u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 + Заглавие Timeline=\ - \u0412\u0440\u0435\u043c\u0435 + Време Build\ Time\ Trend=\ - \u0422\u0440\u0435\u043d\u0434 \u0437\u0430 \u0432\u0440\u0435\u043c\u0435\u0442\u043e \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + Тренд за времето за изграждане Slave=\ - \u041f\u043e\u0434\u0447\u0438\u043d\u0435\u043d \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440 + Подчинен компютър Agent=\ - \u0410\u0433\u0435\u043d\u0442 + Ðгент diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_cs.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_cs.properties index e3c779143a98..c2a4bdaf6f8d 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_cs.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_cs.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Build=Sestaven\u00ED -Build\ Time\ Trend=Trend \u010Dasov\u00E9 osy -Duration=Trv\u00E1n\u00ED -Timeline=\u010Casov\u00E1 osa +Build=Sestavení +Build\ Time\ Trend=Trend Äasové osy +Duration=Trvání +Timeline=ÄŒasová osa diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_da.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_da.properties index f4829493c372..adb180b4ece0 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_da.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_da.properties @@ -24,5 +24,5 @@ title={0} Byggetidstrend Duration=Varighed Build\ Time\ Trend=Byggetidstrend Build=Byg -More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=Mere end et byg er n\u00f8dvendigt for at danne en trendrapport. +More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=Mere end et byg er nødvendigt for at danne en trendrapport. Timeline=Tidslinie diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_es.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_es.properties index b39198f441a2..200485d1102f 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_es.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_es.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. title={0} Tendencia del tiempo de proceso -Build=Ejecución -Duration=Duración -More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=Más de 1 ejecución son necesarias para generar el gráfico -Build\ Time\ Trend=Tendencia del tiempo de ejecución -Timeline=Línea de tiempo +Build=Ejecución +Duration=Duración +More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=Más de 1 ejecución son necesarias para generar el gráfico +Build\ Time\ Trend=Tendencia del tiempo de ejecución +Timeline=Línea de tiempo diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_es_AR.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_es_AR.properties index 6264b2ae2c7e..a8126e35eba2 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_es_AR.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_es_AR.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=Se necesita m\u00E1s de una construcci\u00F3n para el reporte de tendencia. -Timeline=L\u00EDnea de tiempo +More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=Se necesita más de una construcción para el reporte de tendencia. +Timeline=Línea de tiempo diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_fi.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_fi.properties index d1060a0860b2..0839a209376f 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_fi.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_fi.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=K\u00E4\u00E4nn\u00F6s -Build\ Time\ Trend=K\u00E4\u00E4nn\u00F6sajan trendikuvaaja +Build=Käännös +Build\ Time\ Trend=Käännösajan trendikuvaaja Duration=Kesto Timeline=Aikajana diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_fr.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_fr.properties index c5528b81b455..b679f01f91a7 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_fr.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_fr.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Timeline=Chronologie -title={0} Courbe de tendance de la dur\u00e9e du build +title={0} Courbe de tendance de la durée du build Build=Build Build\ Time\ Trend=Tendance des temps de construction -Duration=Dur\u00e9e -More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=Plus de 1 build est n\u00e9cessaire pour le rapport de tendance. +Duration=Durée +More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=Plus de 1 build est nécessaire pour le rapport de tendance. diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_hu.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_hu.properties index e5d67816dc5e..b618e0a23568 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_hu.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_hu.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Build=\u00C9p\u00EDt\u00E9s -Build\ Time\ Trend=\u00C9p\u00EDt\u00E9si id\u0151 tendencia -Duration=Id\u0151 -Timeline=Id\u0151vonal +Build=Építés +Build\ Time\ Trend=Építési idÅ‘ tendencia +Duration=IdÅ‘ +Timeline=IdÅ‘vonal diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_it.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_it.properties index afffb45b837d..84b0dcbfb6a3 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_it.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_ja.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_ja.properties index c9cac2cdbf59..b3de6ee6102b 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_ja.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_ja.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title={0}\u306e\u30d3\u30eb\u30c9\u6642\u9593\u306e\u50be\u5411 -Timeline=\u30bf\u30a4\u30e0\u30e9\u30a4\u30f3 -Build=\u30d3\u30eb\u30c9 -Build\ Time\ Trend=\u30d3\u30eb\u30c9\u6642\u9593\u306e\u63a8\u79fb -Duration=\u6240\u8981\u6642\u9593 +title={0}ã®ãƒ“ルド時間ã®å‚¾å‘ +Timeline=タイムライン +Build=ビルド +Build\ Time\ Trend=ビルド時間ã®æŽ¨ç§» +Duration=所è¦æ™‚é–“ diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_ko.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_ko.properties index 197acb71513f..0f2879d3cb38 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_ko.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_ko.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=\uBE4C\uB4DC -Build\ Time\ Trend=\uBE4C\uB4DC \uC18C\uC694 \uC2DC\uAC04 \uACBD\uD5A5 -Duration=\uC18C\uC694\uC2DC\uAC04 -More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=\uACBD\uD5A5 \uBCF4\uACE0\uC11C\uB294 1\uAC1C \uC774\uC0C1\uC758 \uBE4C\uB4DC\uAC00 \uD544\uC694\uD569\uB2C8\uB2E4. -Timeline=\uD0C0\uC784\uB77C\uC778 +Build=빌드 +Build\ Time\ Trend=빌드 소요 시간 경향 +Duration=소요시간 +More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=경향 보고서는 1ê°œ ì´ìƒì˜ 빌드가 필요합니다. +Timeline=타임ë¼ì¸ diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_lt.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_lt.properties index effbad657bb9..5f5e1e275ad4 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_lt.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_lt.properties @@ -2,5 +2,5 @@ Build=Darbas Build\ Time\ Trend=Darbo laiko tendencija -Duration=Trukm\u0117 +Duration=TrukmÄ— Timeline=Laiko juosta diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_lv.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_lv.properties index 0685e66a1635..4d03c71ceb33 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_lv.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_lv.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=B\u016Bv\u0113jums -Build\ Time\ Trend=B\u016Bv\u0113jumu laika tendence +Build=BÅ«vÄ“jums +Build\ Time\ Trend=BÅ«vÄ“jumu laika tendence Duration=Ilgums -More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=Tendences atskaitei nepiecie\u0161ams vismaz 1 b\u016Bv\u0113jums. +More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=Tendences atskaitei nepiecieÅ¡ams vismaz 1 bÅ«vÄ“jums. Timeline=Laika nogrieznis diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_pl.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_pl.properties index 96b5aaeacddb..c7eb2148ecb3 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_pl.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_pl.properties @@ -19,7 +19,7 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Time\ Trend=Trend czasu zada\u0144 +Build\ Time\ Trend=Trend czasu zadaÅ„ Build=Zadanie Duration=Czas trwania Timeline=Linia czasu diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_pt_BR.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_pt_BR.properties index 4f88f31d7645..c06e55d51fa1 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_pt_BR.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title={0} Tend\u00EAncia de tempo de constru\u00E7\u00F5es -Duration=Dura\u00E7\u00E3o -Build\ Time\ Trend=Tend\u00EAncia\ de\ tempo\ de\ constru\u00E7\u00E3o +title={0} Tendência de tempo de construções +Duration=Duração +Build\ Time\ Trend=Tendência\ de\ tempo\ de\ construção Timeline=Linha do tempo -Build=Constru\u00E7\u00E3o +Build=Construção Agent=Agente -Build\ time\ graph=Gr\u00E1fico\ de\ tempo\ de\ constru\u00E7\u00E3o +Build\ time\ graph=Gráfico\ de\ tempo\ de\ construção diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_ru.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_ru.properties index c975d9eb91fe..b082bd10a13a 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_ru.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_ru.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Agent=\u0410\u0433\u0435\u043d\u0442 -Build=\u0421\u0431\u043e\u0440\u043a\u0430 -Build\ Time\ Trend=\u0413\u0440\u0430\u0444\u0438\u043a \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 -Duration=\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c -Timeline=\u0412\u0440\u0435\u043c\u0435\u043d\u043d\u0430\u044f \u0448\u043a\u0430\u043b\u0430 -title={0} \u0413\u0440\u0430\u0444\u0438\u043a \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0441\u0431\u043e\u0440\u043a\u0438 +Agent=Ðгент +Build=Сборка +Build\ Time\ Trend=График продолжительноÑти +Duration=ПродолжительноÑÑ‚ÑŒ +Timeline=Ð’Ñ€ÐµÐ¼ÐµÐ½Ð½Ð°Ñ ÑˆÐºÐ°Ð»Ð° +title={0} График времени Ñборки diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_sk.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_sk.properties index efb2e3b01f25..a724b11c208b 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_sk.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_sk.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors Build=Zostavenie -Build\ Time\ Trend=Trend \u010Dasu zostavenia +Build\ Time\ Trend=Trend Äasu zostavenia Duration=Trvanie -Timeline=\u010Casov\u00E1 os +Timeline=ÄŒasová os diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_sl.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_sl.properties index c958eedf2630..764651b899b4 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_sl.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_sl.properties @@ -2,4 +2,4 @@ Build\ Time\ Trend=Trend trajanja buildov Duration=Trajanje -Timeline=\u010Casovnica +Timeline=ÄŒasovnica diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_sr.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_sr.properties index 7dae472f70b6..37bd1a071b71 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_sr.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_sr.properties @@ -1,10 +1,10 @@ # This file is under the MIT License by authors -title={0} \u0442\u0440\u0435\u043D\u0434 \u0432\u0440\u0435\u043C\u0435\u043D\u0443 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 -Timeline=\u0412\u0440\u0435\u043C\u0435 -Build\ Time\ Trend=\u0422\u0440\u0435\u043D\u0434 \u0432\u0440\u0435\u043C\u0435\u043D\u0443 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 -Build=\u0418\u0437\u0433\u0440\u0430\u0434\u0438 -Duration=\u0422\u0440\u0430\u0458\u0430\u045A\u0435 -Agent=\u0410\u0433\u0435\u043D\u0442 -Slave=\u041F\u043E\u043C\u043E\u045B\u043D\u0438\u043A -More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=\u0412\u0438\u0448\u0435 \u043E\u0434 \u0458\u0435\u0434\u043D\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 \u0458\u0435 \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E \u0437\u0430 \u0440\u0435\u043F\u043E\u0440\u0442\u0430\u0436\u0443 \u0442\u0440\u0435\u043D\u0434\u0430. +title={0} тренд времену за изградњу +Timeline=Време +Build\ Time\ Trend=Тренд времену за изградњу +Build=Изгради +Duration=Трајање +Agent=Ðгент +Slave=Помоћник +More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=Више од једне изградње је потребно за репортажу тренда. diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_tr.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_tr.properties index fafae7ebf8e4..436bc227f26e 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_tr.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_tr.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Timeline=Zaman \u00E7izgisi -title={0} yap\u0131land\u0131rma zaman\u0131 e\u011filimi -Build=Yap\u0131land\u0131rma -Build\ Time\ Trend=\u0130n\u015Faa Zaman E\u011Filimi -Duration=S\u00fcre -More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=E\u011filim raporu i\u00e7in birden fazla yap\u0131land\u0131rman\u0131n olmas\u0131 gerekir. +Timeline=Zaman çizgisi +title={0} yapılandırma zamanı eÄŸilimi +Build=Yapılandırma +Build\ Time\ Trend=Ä°nÅŸaa Zaman EÄŸilimi +Duration=Süre +More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=EÄŸilim raporu için birden fazla yapılandırmanın olması gerekir. diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_uk.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_uk.properties index 926e23bd1e66..9c10da039cc9 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_uk.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_uk.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Build=\u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0430 -Build\ Time\ Trend=\u0422\u0440\u0435\u043D\u0434 \u0447\u0430\u0441\u0443 \u0431\u0443\u0434\u0443\u0432\u0430\u043D\u043D\u044F -Duration=\u0422\u0440\u0438\u0432\u0430\u043B\u0456\u0441\u0442\u044C -Timeline=\u0427\u0430\u0441 +Build=Побудова +Build\ Time\ Trend=Тренд чаÑу Ð±ÑƒÐ´ÑƒÐ²Ð°Ð½Ð½Ñ +Duration=ТриваліÑÑ‚ÑŒ +Timeline=Ð§Ð°Ñ diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_zh_TW.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_zh_TW.properties index df0952eae586..ebe734db9ce8 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_zh_TW.properties @@ -21,13 +21,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title={0} \u5efa\u7f6e\u6642\u9593\u8da8\u52e2 +title={0} 建置時間趨勢 -Timeline=\u6642\u9593\u8ef8 +Timeline=時間軸 -Build\ Time\ Trend=\u5efa\u7f6e\u6642\u9593\u8da8\u52e2 -Build=\u5efa\u7f6e -Duration=\u4f7f\u7528\u6642\u9593 +Build\ Time\ Trend=建置時間趨勢 +Build=建置 +Duration=使用時間 More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=\ - \u81f3\u5c11\u8981\u6709\u5169\u6b21\u4ee5\u4e0a\u7684\u5efa\u7f6e\u8a18\u9304\u624d\u80fd\u7522\u51fa\u8da8\u52e2\u5831\u544a\u3002 + 至少è¦æœ‰å…©æ¬¡ä»¥ä¸Šçš„建置記錄æ‰èƒ½ç”¢å‡ºè¶¨å‹¢å ±å‘Šã€‚ diff --git a/core/src/main/resources/hudson/model/Job/configure.properties b/core/src/main/resources/hudson/model/Job/configure.properties index 4d4f4f9e0b57..93d349eefc4b 100644 --- a/core/src/main/resources/hudson/model/Job/configure.properties +++ b/core/src/main/resources/hudson/model/Job/configure.properties @@ -24,3 +24,4 @@ name={0} name Save=Save Apply=Apply Config={0} Config +LOADING=Loading diff --git a/core/src/main/resources/hudson/model/Job/configure_bg.properties b/core/src/main/resources/hudson/model/Job/configure_bg.properties index 42c3cd7bcb58..af94b28903ac 100644 --- a/core/src/main/resources/hudson/model/Job/configure_bg.properties +++ b/core/src/main/resources/hudson/model/Job/configure_bg.properties @@ -21,12 +21,12 @@ # THE SOFTWARE. Description=\ - \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 + ОпиÑание LOADING=\ - \u0417\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435 + Зареждане Save=\ - \u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 -name=\u0438\u043c\u0435 + Запазване +name=име # Apply Apply=\ - \u041f\u0440\u0438\u043b\u0430\u0433\u0430\u043d\u0435 + Прилагане diff --git a/core/src/main/resources/hudson/model/Job/configure_ca.properties b/core/src/main/resources/hudson/model/Job/configure_ca.properties index a6ff8d3fe739..c287bac394a2 100644 --- a/core/src/main/resources/hudson/model/Job/configure_ca.properties +++ b/core/src/main/resources/hudson/model/Job/configure_ca.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -Description=Descripci\u00F3 +Description=Descripció LOADING=CARREGANT Save=Desa -Strategy=Estrat\u00E8gia +Strategy=Estratègia name={0} nom diff --git a/core/src/main/resources/hudson/model/Job/configure_cs.properties b/core/src/main/resources/hudson/model/Job/configure_cs.properties index c898b2bb2828..d088301a4838 100644 --- a/core/src/main/resources/hudson/model/Job/configure_cs.properties +++ b/core/src/main/resources/hudson/model/Job/configure_cs.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors Description=Popis -LOADING=Nahr\u00E1v\u00E1n\u00ED -name=jm\u00E9no +LOADING=Nahrávání +name=jméno diff --git a/core/src/main/resources/hudson/model/Job/configure_da.properties b/core/src/main/resources/hudson/model/Job/configure_da.properties index 52acd6704606..dacb72bf1490 100644 --- a/core/src/main/resources/hudson/model/Job/configure_da.properties +++ b/core/src/main/resources/hudson/model/Job/configure_da.properties @@ -23,5 +23,5 @@ Strategy=Strategi name={0} navn Save=Gem -LOADING=INDL\u00c6SER +LOADING=INDLÆSER Description=Beskrivelse diff --git a/core/src/main/resources/hudson/model/Job/configure_de.properties b/core/src/main/resources/hudson/model/Job/configure_de.properties index 3b3fb2e37e98..75764f92c068 100644 --- a/core/src/main/resources/hudson/model/Job/configure_de.properties +++ b/core/src/main/resources/hudson/model/Job/configure_de.properties @@ -24,4 +24,4 @@ name={0}name Description=Beschreibung Save=Speichern LOADING=LADE DATEN -Apply=\u00DCbernehmen +Apply=Ãœbernehmen diff --git a/core/src/main/resources/hudson/model/Job/configure_el.properties b/core/src/main/resources/hudson/model/Job/configure_el.properties index fe4829f7ec73..34ebfb69c64d 100644 --- a/core/src/main/resources/hudson/model/Job/configure_el.properties +++ b/core/src/main/resources/hudson/model/Job/configure_el.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Description=\u03A0\u03B5\u03C1\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE -name=\u038C\u03BD\u03BF\u03BC\u03B1 {0} +Description=ΠεÏιγÏαφή +name=Όνομα {0} diff --git a/core/src/main/resources/hudson/model/Job/configure_es.properties b/core/src/main/resources/hudson/model/Job/configure_es.properties index 6c3bdab63a43..1a7572c15e35 100644 --- a/core/src/main/resources/hudson/model/Job/configure_es.properties +++ b/core/src/main/resources/hudson/model/Job/configure_es.properties @@ -23,5 +23,5 @@ Strategy=Estrategia name={0} nombre Save=Guardar -Description=Descripción +Description=Descripción LOADING=CARGANDO diff --git a/core/src/main/resources/hudson/model/Job/configure_es_AR.properties b/core/src/main/resources/hudson/model/Job/configure_es_AR.properties index 9f83c8326196..5b0021a8feb2 100644 --- a/core/src/main/resources/hudson/model/Job/configure_es_AR.properties +++ b/core/src/main/resources/hudson/model/Job/configure_es_AR.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Description=Descripci\u00F3n +Description=Descripción LOADING=CARGANDO name={0} nombre diff --git a/core/src/main/resources/hudson/model/Job/configure_fr.properties b/core/src/main/resources/hudson/model/Job/configure_fr.properties index 252a92d8af02..0d1028b10a83 100644 --- a/core/src/main/resources/hudson/model/Job/configure_fr.properties +++ b/core/src/main/resources/hudson/model/Job/configure_fr.properties @@ -24,4 +24,4 @@ name=Nom du {0} Description=Description Save=Sauver LOADING=CHARGEMENT -Strategy=Strat\u00E9gie +Strategy=Stratégie diff --git a/core/src/main/resources/hudson/model/Job/configure_he.properties b/core/src/main/resources/hudson/model/Job/configure_he.properties index 1f1a76f0de19..585b811c8542 100644 --- a/core/src/main/resources/hudson/model/Job/configure_he.properties +++ b/core/src/main/resources/hudson/model/Job/configure_he.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Description=\u05EA\u05D0\u05D5\u05E8 -LOADING=\u05D8\u05D5\u05E2\u05DF -name=\u05E9\u05DD {0} +Description=ת×ור +LOADING=טוען +name=×©× {0} diff --git a/core/src/main/resources/hudson/model/Job/configure_hu.properties b/core/src/main/resources/hudson/model/Job/configure_hu.properties index 885ae20793d8..1414638caa14 100644 --- a/core/src/main/resources/hudson/model/Job/configure_hu.properties +++ b/core/src/main/resources/hudson/model/Job/configure_hu.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Description=Le\u00EDr\u00E1s -LOADING=BET\u00D6LT\u00C9S -Strategy=Strat\u00E9gia -name={0} n\u00E9v +Description=Leírás +LOADING=BETÖLTÉS +Strategy=Stratégia +name={0} név diff --git a/core/src/main/resources/hudson/model/Job/configure_it.properties b/core/src/main/resources/hudson/model/Job/configure_it.properties index f5cce3f34356..51cc889de340 100644 --- a/core/src/main/resources/hudson/model/Job/configure_it.properties +++ b/core/src/main/resources/hudson/model/Job/configure_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/Job/configure_ja.properties b/core/src/main/resources/hudson/model/Job/configure_ja.properties index 8a94d9d2037b..8873b4c10127 100644 --- a/core/src/main/resources/hudson/model/Job/configure_ja.properties +++ b/core/src/main/resources/hudson/model/Job/configure_ja.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -name={0}\u540d -Description=\u8aac\u660e -Save=\u4fdd\u5b58 -LOADING=\u30ed\u30fc\u30c9\u4e2d... -Strategy=\u65b9\u91dd +name={0}å +Description=説明 +Save=ä¿å­˜ +LOADING=ロード中... +Strategy=æ–¹é‡ diff --git a/core/src/main/resources/hudson/model/Job/configure_ko.properties b/core/src/main/resources/hudson/model/Job/configure_ko.properties index e232a25de0a8..7eda3f2e29f6 100644 --- a/core/src/main/resources/hudson/model/Job/configure_ko.properties +++ b/core/src/main/resources/hudson/model/Job/configure_ko.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=\uC124\uBA85 -LOADING=\uBD88\uB7EC\uC624\uB294 \uC911 -Save=\uC800\uC7A5 -Strategy=\uC804\uB7B5 -name=\uC774\uB984 +Description=설명 +LOADING=불러오는 중 +Save=저장 +Strategy=ì „ëžµ +name=ì´ë¦„ diff --git a/core/src/main/resources/hudson/model/Job/configure_lt.properties b/core/src/main/resources/hudson/model/Job/configure_lt.properties index fa183c864c97..2f347e0953a6 100644 --- a/core/src/main/resources/hudson/model/Job/configure_lt.properties +++ b/core/src/main/resources/hudson/model/Job/configure_lt.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -Description=Apra\u0161ymas -LOADING=\u012EKELIAMA -Save=\u012Era\u0161yti +Description=ApraÅ¡ymas +LOADING=Ä®KELIAMA +Save=Ä®raÅ¡yti Strategy=Strategija name={0} pavadinimas diff --git a/core/src/main/resources/hudson/model/Job/configure_lv.properties b/core/src/main/resources/hudson/model/Job/configure_lv.properties index 130eafbf90a4..1660839ee7a5 100644 --- a/core/src/main/resources/hudson/model/Job/configure_lv.properties +++ b/core/src/main/resources/hudson/model/Job/configure_lv.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Description=Apraksts -LOADING=IEL\u0100D\u0112 -Save=Saglab\u0101t +LOADING=IELÄ€DÄ’ +Save=SaglabÄt name={0} nosaukums diff --git a/core/src/main/resources/hudson/model/Job/configure_pl.properties b/core/src/main/resources/hudson/model/Job/configure_pl.properties index 6a6ce8dee058..0c7300ce1cd9 100644 --- a/core/src/main/resources/hudson/model/Job/configure_pl.properties +++ b/core/src/main/resources/hudson/model/Job/configure_pl.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Description=Opis -LOADING=\u0141ADOWANIE +LOADING=ÅADOWANIE Save=Zapisz Apply=Zastosuj Config=Konfiguracja {0} diff --git a/core/src/main/resources/hudson/model/Job/configure_pt_BR.properties b/core/src/main/resources/hudson/model/Job/configure_pt_BR.properties index 7e47671c969f..59887d792193 100644 --- a/core/src/main/resources/hudson/model/Job/configure_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Job/configure_pt_BR.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=Descri\u00E7\u00E3o +Description=Descrição Save=Salvar LOADING=CARREGANDO Apply=Aplicar -Config=Configura\u00E7\u00E3o de {0} +Config=Configuração de {0} diff --git a/core/src/main/resources/hudson/model/Job/configure_pt_PT.properties b/core/src/main/resources/hudson/model/Job/configure_pt_PT.properties index 2e2937ce6bac..b153336314bf 100644 --- a/core/src/main/resources/hudson/model/Job/configure_pt_PT.properties +++ b/core/src/main/resources/hudson/model/Job/configure_pt_PT.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Description=Descri\u00E7\u00E3o +Description=Descrição LOADING=A CARREGAR name={0} nome diff --git a/core/src/main/resources/hudson/model/Job/configure_ru.properties b/core/src/main/resources/hudson/model/Job/configure_ru.properties index f53988aeee15..b1999044f810 100644 --- a/core/src/main/resources/hudson/model/Job/configure_ru.properties +++ b/core/src/main/resources/hudson/model/Job/configure_ru.properties @@ -1,5 +1,5 @@ -Apply=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c -Description=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 -LOADING=\u0417\u0410\u0413\u0420\u0423\u0417\u041a\u0410 -Save=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c -name={0} \u0438\u043c\u044f +Apply=Применить +Description=ОпиÑание +LOADING=ЗÐГРУЗКР+Save=Сохранить +name={0} Ð¸Ð¼Ñ diff --git a/core/src/main/resources/hudson/model/Job/configure_sk.properties b/core/src/main/resources/hudson/model/Job/configure_sk.properties index b08d5e793188..aa316c23cf6a 100644 --- a/core/src/main/resources/hudson/model/Job/configure_sk.properties +++ b/core/src/main/resources/hudson/model/Job/configure_sk.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors Description=Popis -LOADING=Nahr\u00E1vanie -Strategy=Strat\u00E9gia +LOADING=Nahrávanie +Strategy=Stratégia name={0} meno diff --git a/core/src/main/resources/hudson/model/Job/configure_sr.properties b/core/src/main/resources/hudson/model/Job/configure_sr.properties index 67e427cfa16d..b00fc127d24c 100644 --- a/core/src/main/resources/hudson/model/Job/configure_sr.properties +++ b/core/src/main/resources/hudson/model/Job/configure_sr.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -LOADING=\u0423\u0447\u0438\u0442\u0430\u0432\u0430\u045A\u0435 -name={0} \u0438\u043C\u0435 -Description=\u041E\u043F\u0438\u0441 -Save=\u0421\u0430\u0447\u0443\u0432\u0430\u0458 -Apply=\u041F\u0440\u0438\u043C\u0435\u043D\u0438 -Strategy=\u0428\u0435\u043C\u0430 +LOADING=Учитавање +name={0} име +Description=ÐžÐ¿Ð¸Ñ +Save=Сачувај +Apply=Примени +Strategy=Шема diff --git a/core/src/main/resources/hudson/model/Job/configure_sv_SE.properties b/core/src/main/resources/hudson/model/Job/configure_sv_SE.properties index 43f4e32f31f4..9a50ab6c5a82 100644 --- a/core/src/main/resources/hudson/model/Job/configure_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Job/configure_sv_SE.properties @@ -24,4 +24,4 @@ Description=Beskrivning LOADING=LADDAR Save=Spara Strategy=Strategi -name=Namn p\u00E5 {0} +name=Namn pÃ¥ {0} diff --git a/core/src/main/resources/hudson/model/Job/configure_tr.properties b/core/src/main/resources/hudson/model/Job/configure_tr.properties index f65678e2fefc..478b231c0282 100644 --- a/core/src/main/resources/hudson/model/Job/configure_tr.properties +++ b/core/src/main/resources/hudson/model/Job/configure_tr.properties @@ -22,6 +22,6 @@ Strategy=Strateji name={0} isim -Description=A\u00e7\u0131klama -LOADING=Y\u00DCKLEN\u0130YOR +Description=Açıklama +LOADING=YÃœKLENÄ°YOR Save=Kaydet diff --git a/core/src/main/resources/hudson/model/Job/configure_uk.properties b/core/src/main/resources/hudson/model/Job/configure_uk.properties index 293d8113074a..37f0d666173e 100644 --- a/core/src/main/resources/hudson/model/Job/configure_uk.properties +++ b/core/src/main/resources/hudson/model/Job/configure_uk.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -Description=\u041E\u043F\u0438\u0441 -LOADING=\u0417\u0410\u0412\u0410\u041D\u0422\u0410\u0416\u0423\u0404\u0422\u042C\u0421\u042F -Save=\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438 -Strategy=\u0421\u0442\u0440\u0430\u0442\u0435\u0433\u0456\u044F -name={0} \u0456\u043C''\u044F +Description=ÐžÐ¿Ð¸Ñ +LOADING=ЗÐÐ’ÐÐТÐЖУЄТЬСЯ +Save=Зберегти +Strategy=Ð¡Ñ‚Ñ€Ð°Ñ‚ÐµÐ³Ñ–Ñ +name={0} ім''Ñ diff --git a/core/src/main/resources/hudson/model/Job/configure_zh_TW.properties b/core/src/main/resources/hudson/model/Job/configure_zh_TW.properties index 44bf241205fd..7cd1e71f77b6 100644 --- a/core/src/main/resources/hudson/model/Job/configure_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Job/configure_zh_TW.properties @@ -21,10 +21,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -LOADING=\u8B80\u53D6\u4E2D +LOADING=讀å–中 -name={0} \u540D\u7A31 -Description=\u63CF\u8FF0 -Strategy=\u7b56\u7565 +name={0} å稱 +Description=æè¿° +Strategy=ç­–ç•¥ -Save=\u5132\u5b58 +Save=儲存 diff --git a/core/src/main/resources/hudson/model/Job/index_bg.properties b/core/src/main/resources/hudson/model/Job/index_bg.properties index 36a90de19169..7a57fd5e797d 100644 --- a/core/src/main/resources/hudson/model/Job/index_bg.properties +++ b/core/src/main/resources/hudson/model/Job/index_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Project\ name=\ - \u0418\u043c\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442 + Име на проект Full\ project\ name=\ - \u041f\u044a\u043b\u043d\u043e \u0438\u043c\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442 + Пълно име на проект diff --git a/core/src/main/resources/hudson/model/Job/index_cs.properties b/core/src/main/resources/hudson/model/Job/index_cs.properties index 5aad4bf7fd3e..f22131fbd290 100644 --- a/core/src/main/resources/hudson/model/Job/index_cs.properties +++ b/core/src/main/resources/hudson/model/Job/index_cs.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Project\ name=N\u00E1zev projektu +Project\ name=Název projektu diff --git a/core/src/main/resources/hudson/model/Job/index_de.properties b/core/src/main/resources/hudson/model/Job/index_de.properties index 6d96abdb5632..9bdfe46698a2 100644 --- a/core/src/main/resources/hudson/model/Job/index_de.properties +++ b/core/src/main/resources/hudson/model/Job/index_de.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors Project\ name=Projektname -Full\ project\ name=Vollst\u00E4ndiger Projektname +Full\ project\ name=Vollständiger Projektname diff --git a/core/src/main/resources/hudson/model/Job/index_el.properties b/core/src/main/resources/hudson/model/Job/index_el.properties index 9f18f943a1c2..6a05b1238b1c 100644 --- a/core/src/main/resources/hudson/model/Job/index_el.properties +++ b/core/src/main/resources/hudson/model/Job/index_el.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Disable\ Project=\u0391\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B7 \u0395\u03C1\u03B3\u03BF\u03C5 +Disable\ Project=ΑπενεÏγοποιήση ΕÏγου diff --git a/core/src/main/resources/hudson/model/Job/index_fi.properties b/core/src/main/resources/hudson/model/Job/index_fi.properties index 08bba5fd962d..92c5b800893f 100644 --- a/core/src/main/resources/hudson/model/Job/index_fi.properties +++ b/core/src/main/resources/hudson/model/Job/index_fi.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Disable\ Project=Poista projekti k\u00E4yt\u00F6st\u00E4 +Disable\ Project=Poista projekti käytöstä diff --git a/core/src/main/resources/hudson/model/Job/index_fr.properties b/core/src/main/resources/hudson/model/Job/index_fr.properties index bbc1d6f89b76..aec775aa5fcb 100644 --- a/core/src/main/resources/hudson/model/Job/index_fr.properties +++ b/core/src/main/resources/hudson/model/Job/index_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=D\u00E9sactiver le projet +Disable\ Project=Désactiver le projet Project\ name=Nom du projet diff --git a/core/src/main/resources/hudson/model/Job/index_he.properties b/core/src/main/resources/hudson/model/Job/index_he.properties index 4180c8b7ca88..82de6511de7a 100644 --- a/core/src/main/resources/hudson/model/Job/index_he.properties +++ b/core/src/main/resources/hudson/model/Job/index_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Disable\ Project=\u05D7\u05E1\u05D5\u05DD \u05D0\u05EA \u05D4\u05E4\u05E8\u05D5\u05D9\u05D9\u05E7\u05D8 +Disable\ Project=×—×¡×•× ×ת הפרוייקט diff --git a/core/src/main/resources/hudson/model/Job/index_hu.properties b/core/src/main/resources/hudson/model/Job/index_hu.properties index b1b04e3bc0ef..ad111afa68fd 100644 --- a/core/src/main/resources/hudson/model/Job/index_hu.properties +++ b/core/src/main/resources/hudson/model/Job/index_hu.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Disable\ Project=Projekt letilt\u00E1sa +Disable\ Project=Projekt letiltása diff --git a/core/src/main/resources/hudson/model/Job/index_it.properties b/core/src/main/resources/hudson/model/Job/index_it.properties index 83a6c8ccfde6..72db10b0967f 100644 --- a/core/src/main/resources/hudson/model/Job/index_it.properties +++ b/core/src/main/resources/hudson/model/Job/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/Job/index_ja.properties b/core/src/main/resources/hudson/model/Job/index_ja.properties index de3ae9fbd70c..1395cad5a4cf 100644 --- a/core/src/main/resources/hudson/model/Job/index_ja.properties +++ b/core/src/main/resources/hudson/model/Job/index_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Project\ name=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u540d -Full\ project\ name=\u7d76\u5bfe\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u540d +Project\ name=プロジェクトå +Full\ project\ name=絶対プロジェクトå diff --git a/core/src/main/resources/hudson/model/Job/index_ko.properties b/core/src/main/resources/hudson/model/Job/index_ko.properties index eb5c25adadaf..809b161847b6 100644 --- a/core/src/main/resources/hudson/model/Job/index_ko.properties +++ b/core/src/main/resources/hudson/model/Job/index_ko.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Project\ name=\uD504\uB85C\uC81D\uD2B8 \uC774\uB984 +Project\ name=프로ì íŠ¸ ì´ë¦„ diff --git a/core/src/main/resources/hudson/model/Job/index_lv.properties b/core/src/main/resources/hudson/model/Job/index_lv.properties index 35d10330b3ef..79a36f5fcfdd 100644 --- a/core/src/main/resources/hudson/model/Job/index_lv.properties +++ b/core/src/main/resources/hudson/model/Job/index_lv.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Disable\ Project=Deaktiviz\u0113t projektu +Disable\ Project=DeaktivizÄ“t projektu diff --git a/core/src/main/resources/hudson/model/Job/index_nb_NO.properties b/core/src/main/resources/hudson/model/Job/index_nb_NO.properties index 617a539ddfc7..e68f704530cf 100644 --- a/core/src/main/resources/hudson/model/Job/index_nb_NO.properties +++ b/core/src/main/resources/hudson/model/Job/index_nb_NO.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Disable\ Project=Deaktiv\u00E9r prosjekt +Disable\ Project=Deaktivér prosjekt diff --git a/core/src/main/resources/hudson/model/Job/index_pl.properties b/core/src/main/resources/hudson/model/Job/index_pl.properties index 8be214e8d362..0c4a5a310d7b 100644 --- a/core/src/main/resources/hudson/model/Job/index_pl.properties +++ b/core/src/main/resources/hudson/model/Job/index_pl.properties @@ -22,4 +22,4 @@ Project\ name=Nazwa projektu -Full\ project\ name=Pe\u0142na nazwa projektu +Full\ project\ name=PeÅ‚na nazwa projektu diff --git a/core/src/main/resources/hudson/model/Job/index_ru.properties b/core/src/main/resources/hudson/model/Job/index_ru.properties index 5dff2694c961..b66d1355743a 100644 --- a/core/src/main/resources/hudson/model/Job/index_ru.properties +++ b/core/src/main/resources/hudson/model/Job/index_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Full\ project\ name=\u041f\u043e\u043b\u043d\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 -Project\ name=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 +Full\ project\ name=Полное название проекта +Project\ name=Ðазвание проекта diff --git a/core/src/main/resources/hudson/model/Job/index_sl.properties b/core/src/main/resources/hudson/model/Job/index_sl.properties index b0498cd41074..300537d6703d 100644 --- a/core/src/main/resources/hudson/model/Job/index_sl.properties +++ b/core/src/main/resources/hudson/model/Job/index_sl.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Disable\ Project=Onemogo\u010Di projekt +Disable\ Project=OnemogoÄi projekt diff --git a/core/src/main/resources/hudson/model/Job/index_sr.properties b/core/src/main/resources/hudson/model/Job/index_sr.properties index 0d0ed0e2e702..f7338be9b73b 100644 --- a/core/src/main/resources/hudson/model/Job/index_sr.properties +++ b/core/src/main/resources/hudson/model/Job/index_sr.properties @@ -1,12 +1,12 @@ # This file is under the MIT License by authors -Full\ project\ name=\u041F\u0443\u043D\u043E \u0438\u043C\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 -Project\ name=\u0418\u043C\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 -Disable\ Project=\u041E\u043D\u0435\u043C\u043E\u0433\u0443\u045B\u0438 \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 -Enable=\u041E\u043C\u043E\u0433\u0443\u045B\u0443 -This\ project\ is\ currently\ disabled=\u041E\u0432\u0430\u0458 \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 \u0458\u0435 \u0442\u0440\u0435\u043D\u0443\u0442\u043D\u043E \u043E\u043D\u0435\u043C\u043E\u0433\u0443\u045B\u0435\u043D -Permalinks=\u0422\u0440\u0430\u0458\u043D\u0438 \u043B\u0438\u043D\u043A\u043E\u0432\u0438 -Last\ build=\u0417\u0430\u0434\u045A\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 -Last\ stable\ build=\u0417\u0430\u0434\u045A\u0430 \u0441\u0442\u0430\u0431\u0438\u043B\u043D\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 -Last\ successful\ build=\u0417\u0430\u0434\u045A\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 -Last\ failed\ build=\u0417\u0430\u0434\u045A\u0430 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 +Full\ project\ name=Пуно име пројекта +Project\ name=Име пројекта +Disable\ Project=Онемогући пројекат +Enable=Омогућу +This\ project\ is\ currently\ disabled=Овај пројекат је тренутно онемогућен +Permalinks=Трајни линкови +Last\ build=Задња изградња +Last\ stable\ build=Задња Ñтабилна изградња +Last\ successful\ build=Задња уÑпешна изградња +Last\ failed\ build=Задња неуÑпешна изградња diff --git a/core/src/main/resources/hudson/model/Job/index_tr.properties b/core/src/main/resources/hudson/model/Job/index_tr.properties index 93650839c8df..fa3bc0370f84 100644 --- a/core/src/main/resources/hudson/model/Job/index_tr.properties +++ b/core/src/main/resources/hudson/model/Job/index_tr.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Permalinks=Permalinks -Disable\ Project=Projeyi etkisizle\u015Ftir -Last\ build=Son yap\u0131land\u0131rma -Last\ stable\ build=Son stabil yap\u0131land\u0131rma -Last\ successful\ build=Son ba\u015far\u0131l\u0131 yap\u0131land\u0131rma -Last\ failed\ build=Son ba\u015far\u0131s\u0131z yap\u0131land\u0131rma +Disable\ Project=Projeyi etkisizleÅŸtir +Last\ build=Son yapılandırma +Last\ stable\ build=Son stabil yapılandırma +Last\ successful\ build=Son baÅŸarılı yapılandırma +Last\ failed\ build=Son baÅŸarısız yapılandırma diff --git a/core/src/main/resources/hudson/model/Job/index_uk.properties b/core/src/main/resources/hudson/model/Job/index_uk.properties index 06bae5739a9f..c799595868cb 100644 --- a/core/src/main/resources/hudson/model/Job/index_uk.properties +++ b/core/src/main/resources/hudson/model/Job/index_uk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Disable\ Project=\u0412\u0438\u043C\u043A\u043D\u0443\u0442\u0438 \u041F\u0440\u043E\u0435\u043A\u0442 -Project\ name=\u041D\u0430\u0437\u0432\u0430 \u043F\u0440\u043E\u0435\u043A\u0442\u0443 +Disable\ Project=Вимкнути Проект +Project\ name=Ðазва проекту diff --git a/core/src/main/resources/hudson/model/Job/index_zh_TW.properties b/core/src/main/resources/hudson/model/Job/index_zh_TW.properties index 3ab4ebaf359e..9f0b752a1e69 100644 --- a/core/src/main/resources/hudson/model/Job/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Job/index_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=\u505C\u7528\u5C08\u6848 -Project\ name=\u5c08\u6848\u540d\u7a31 +Disable\ Project=åœç”¨å°ˆæ¡ˆ +Project\ name=專案å稱 diff --git a/core/src/main/resources/hudson/model/Job/permalinks_bg.properties b/core/src/main/resources/hudson/model/Job/permalinks_bg.properties index b9dd991b1704..1aae4a52bfad 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_bg.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Permalinks=\ - \u0421\u0442\u0430\u0442\u0438\u0447\u043d\u0438 \u0432\u0440\u044a\u0437\u043a\u0438 + Статични връзки diff --git a/core/src/main/resources/hudson/model/Job/permalinks_ca.properties b/core/src/main/resources/hudson/model/Job/permalinks_ca.properties index 28727122bcee..dd5d79b4a795 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_ca.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_ca.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Permalinks=Enlla\u00E7os permanents +Permalinks=Enllaços permanents diff --git a/core/src/main/resources/hudson/model/Job/permalinks_cs.properties b/core/src/main/resources/hudson/model/Job/permalinks_cs.properties index 7da597950215..66fc687d92c6 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_cs.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_cs.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Permalinks=Permanentn\u00ED odkazy +Permalinks=Permanentní odkazy diff --git a/core/src/main/resources/hudson/model/Job/permalinks_el.properties b/core/src/main/resources/hudson/model/Job/permalinks_el.properties index 74cb8d013b93..af0d6f74690a 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_el.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_el.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Permalinks=\u039C\u03CC\u03BD\u03B9\u03BC\u03BF\u03C2 \u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03C2 +Permalinks=Μόνιμος ΣÏνδεσμος diff --git a/core/src/main/resources/hudson/model/Job/permalinks_et.properties b/core/src/main/resources/hudson/model/Job/permalinks_et.properties index 5871f942c26e..0295d7fb6964 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_et.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_et.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Permalinks=P\u00FCsiviited +Permalinks=Püsiviited diff --git a/core/src/main/resources/hudson/model/Job/permalinks_fi.properties b/core/src/main/resources/hudson/model/Job/permalinks_fi.properties index f32fb448a6ba..20bc922ac5aa 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_fi.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_fi.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Permalinks=Pysyv\u00E4t linkit +Permalinks=Pysyvät linkit diff --git a/core/src/main/resources/hudson/model/Job/permalinks_he.properties b/core/src/main/resources/hudson/model/Job/permalinks_he.properties index ba0e88516440..d9f6adf9721e 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_he.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Permalinks=\u05E7\u05D9\u05E9\u05D5\u05E8\u05D9\u05DD \u05E7\u05D1\u05D5\u05E2\u05D9\u05DD +Permalinks=×§×™×©×•×¨×™× ×§×‘×•×¢×™× diff --git a/core/src/main/resources/hudson/model/Job/permalinks_it.properties b/core/src/main/resources/hudson/model/Job/permalinks_it.properties index 0786e7de327d..a8b8e35984ba 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_it.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/Job/permalinks_ja.properties b/core/src/main/resources/hudson/model/Job/permalinks_ja.properties index ec7208658f5e..ed02ecef3c0e 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_ja.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Permalinks=\u6c38\u7d9a\u30ea\u30f3\u30af +Permalinks=永続リンク diff --git a/core/src/main/resources/hudson/model/Job/permalinks_ko.properties b/core/src/main/resources/hudson/model/Job/permalinks_ko.properties index 2ed1f345efa2..2ce576a1e7e0 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_ko.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Permalinks=\uACE0\uC815\uB9C1\uD06C +Permalinks=ê³ ì •ë§í¬ diff --git a/core/src/main/resources/hudson/model/Job/permalinks_lv.properties b/core/src/main/resources/hudson/model/Job/permalinks_lv.properties index 004d30e4489d..b2e4ba73d1a1 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_lv.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Permalinks=Past\u0101v\u012Bg\u0101s saites +Permalinks=PastÄvÄ«gÄs saites diff --git a/core/src/main/resources/hudson/model/Job/permalinks_pl.properties b/core/src/main/resources/hudson/model/Job/permalinks_pl.properties index ce59813bf36d..1d82db35c707 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_pl.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Permalinks=Odno\u015Bniki niezmienne +Permalinks=OdnoÅ›niki niezmienne diff --git a/core/src/main/resources/hudson/model/Job/permalinks_ru.properties b/core/src/main/resources/hudson/model/Job/permalinks_ru.properties index d791fa4420e0..996c7aac04a9 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_ru.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Permalinks=\u041f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u044b\u0435 \u0441\u0441\u044b\u043b\u043a\u0438 +Permalinks=ПоÑтоÑнные ÑÑылки diff --git a/core/src/main/resources/hudson/model/Job/permalinks_sk.properties b/core/src/main/resources/hudson/model/Job/permalinks_sk.properties index 947b9e5674ac..76a5d6dfa061 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_sk.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_sk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Permalinks=Permanentn\u00E9 linky +Permalinks=Permanentné linky diff --git a/core/src/main/resources/hudson/model/Job/permalinks_sr.properties b/core/src/main/resources/hudson/model/Job/permalinks_sr.properties index 32c60f83c199..c8e36a113b72 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_sr.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Permalinks=\u0422\u0440\u0430\u0458\u043D\u0438 \u043B\u0438\u043D\u043A\u043E\u0432\u0438 +Permalinks=Трајни линкови diff --git a/core/src/main/resources/hudson/model/Job/permalinks_sv_SE.properties b/core/src/main/resources/hudson/model/Job/permalinks_sv_SE.properties index 6a1376da88e2..03566c1c6477 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Permalinks=Permal\u00E4nkar +Permalinks=Permalänkar diff --git a/core/src/main/resources/hudson/model/Job/permalinks_uk.properties b/core/src/main/resources/hudson/model/Job/permalinks_uk.properties index 729624899c40..7b4269ee5f06 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_uk.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Permalinks=\u041F\u043E\u0441\u0442\u0456\u0439\u043D\u0456 \u043F\u043E\u0441\u0438\u043B\u0430\u043D\u043D\u044F +Permalinks=ПоÑтійні поÑÐ¸Ð»Ð°Ð½Ð½Ñ diff --git a/core/src/main/resources/hudson/model/Job/permalinks_zh_TW.properties b/core/src/main/resources/hudson/model/Job/permalinks_zh_TW.properties index b66e0df49e43..f79937751955 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Permalinks=\u6C38\u4E45\u9023\u7D50 +Permalinks=æ°¸ä¹…é€£çµ diff --git a/core/src/main/resources/hudson/model/Job/requirePOST_bg.properties b/core/src/main/resources/hudson/model/Job/requirePOST_bg.properties index f4894f5267d9..8b97adb787d0 100644 --- a/core/src/main/resources/hudson/model/Job/requirePOST_bg.properties +++ b/core/src/main/resources/hudson/model/Job/requirePOST_bg.properties @@ -21,16 +21,16 @@ # THE SOFTWARE. Proceed=\ - \u041f\u0440\u043e\u0434\u044a\u043b\u0436\u0430\u0432\u0430\u043d\u0435 + Продължаване Form\ post\ required=\ - \u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u043f\u043e\u0434\u0430\u0434\u0435\u0442\u0435 \u0444\u043e\u0440\u043c\u0443\u043b\u044f\u0440\u0430 \u0447\u0440\u0435\u0437 \u201ePOST\u201c. + ТрÑбва да подадете формулÑра чрез „POST“. # \ # You must use POST method to trigger builds. \ # (From scripts you may instead pass a per-project authentication token, or authenticate with your API token.) \ # If you see this page, it may be because a plugin offered a GET link; file a bug report for that plugin. use_post=\ - \u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u043c\u0435\u0442\u043e\u0434\u0430 \u201ePOST\u201c, \u0437\u0430 \u0434\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0442\u0435 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f. (\u0417\u0430 \u0441\u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0435\ - \u043c\u043e\u0436\u0435 \u0434\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u0436\u0435\u0442\u043e\u043d \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u043a\u044a\u043c \u043f\u0440\u043e\u0435\u043a\u0442 \u0438\u043b\u0438 \u0434\u0430 \u0441\u0435 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u0442\u0435 \u0441 \ - \u0436\u0435\u0442\u043e\u043d\u0430 \u0441\u0438 \u0437\u0430 API.) \u0410\u043a\u043e \u0432\u0438\u0436\u0434\u0430\u0442\u0435 \u0442\u0430\u0437\u0438 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430, \u0432\u0435\u0440\u043e\u044f\u0442\u043d\u0430\u0442\u0430 \u043f\u0440\u0438\u0447\u0438\u043d\u0430 \u0435, \u0447\u0435\ - \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430 \u0432\u0438 \u0435 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u043b\u0430 \u0432\u0440\u044a\u0437\u043a\u0430 \u0437\u0430 \u201eGET\u201c. \u041c\u043e\u043b\u0438\u043c \u043f\u043e\u0434\u0430\u0439\u0442\u0435 \u0434\u043e\u043a\u043b\u0430\u0434 \u0437\u0430\ - \u0433\u0440\u0435\u0448\u043a\u0430 \u0437\u0430 \u0442\u0430\u0437\u0438 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430. + ТрÑбва да ползвате метода „POST“, за да Ñтартирате изгражданиÑ. (За Ñкриптове\ + може да ползвате жетон за Ð¸Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ ÐºÑŠÐ¼ проект или да Ñе идентифицирате Ñ \ + жетона Ñи за API.) Ðко виждате тази Ñтраница, вероÑтната причина е, че\ + ползвана приÑтавка ви е предоÑтавила връзка за „GET“. Молим подайте доклад за\ + грешка за тази приÑтавка. diff --git a/core/src/main/resources/hudson/model/Job/requirePOST_de.properties b/core/src/main/resources/hudson/model/Job/requirePOST_de.properties index a7d3dbc54812..94c9286dbd2c 100644 --- a/core/src/main/resources/hudson/model/Job/requirePOST_de.properties +++ b/core/src/main/resources/hudson/model/Job/requirePOST_de.properties @@ -1,9 +1,9 @@ # This file is under the MIT License by authors Proceed=Fortsetzen -use_post=Sie m\u00FCssen die POST Methode einsetzen, um Builds anzusto\u00DFen. \ +use_post=Sie müssen die POST Methode einsetzen, um Builds anzustoßen. \ (Aus Skripten heraus sollten Sie stattdessen ein projektbezogenes Authentifizierungstoken \ - \u00FCbergeben oder mit Ihrem API Token authentifizieren). \ + übergeben oder mit Ihrem API Token authentifizieren). \ Wenn diese Seite angezeigt wird, kann es daran liegen, dass ein Plugin einen GET Link angeboten hat. \ - Erstellen Sie einen Fehlerbericht f\u00FCr dieses Plugin. + Erstellen Sie einen Fehlerbericht für dieses Plugin. Form\ post\ required=Das Formular muss mittels POST abgesendet werden. diff --git a/core/src/main/resources/hudson/model/Job/requirePOST_it.properties b/core/src/main/resources/hudson/model/Job/requirePOST_it.properties index a4265e9c3225..f7b59a031481 100644 --- a/core/src/main/resources/hudson/model/Job/requirePOST_it.properties +++ b/core/src/main/resources/hudson/model/Job/requirePOST_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -23,9 +23,9 @@ Form\ post\ required=Richiesto inoltro modulo tramite POST Proceed=Procedi -use_post=È necessario utilizzare il metodo POST per scatenare le \ - compilazioni. (In alternativa, da uno script è possibile fornire un token \ +use_post=È necessario utilizzare il metodo POST per scatenare le \ + compilazioni. (In alternativa, da uno script è possibile fornire un token \ di autenticazione specifico per il progetto, oppure autenticarsi con il \ - proprio token API.) Se si visualizza questa pagina, è possibile che un \ + proprio token API.) Se si visualizza questa pagina, è possibile che un \ componente aggiuntivo abbia fornito un link GET; in tal caso, aprire una \ segnalazione bug per tale componente aggiuntivo. diff --git a/core/src/main/resources/hudson/model/Job/requirePOST_ja.properties b/core/src/main/resources/hudson/model/Job/requirePOST_ja.properties index e13fd49de6d1..f6691ffc2ecd 100644 --- a/core/src/main/resources/hudson/model/Job/requirePOST_ja.properties +++ b/core/src/main/resources/hudson/model/Job/requirePOST_ja.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Form\ post\ required=POST\u5fc5\u9808 -Proceed=\u6b21 +Form\ post\ required=POSTå¿…é ˆ +Proceed=次 use_post=\ - \u30d3\u30eb\u30c9\u3092\u8d77\u52d5\u3059\u308b\u306b\u306fPOST\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u7528\u3057\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002\ - (\u30b9\u30af\u30ea\u30d7\u30c8\u304b\u3089\u306f\u3001\u305d\u306e\u4ee3\u308f\u308a\u306b\u3001\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3054\u3068\u306e\u8a8d\u8a3c\u30c8\u30fc\u30af\u30f3\u3092\u6e21\u3057\u305f\u308a\u3001API\u30c8\u30fc\u30af\u30f3\u3067\u8a8d\u8a3c\u3057\u307e\u3059\u3002\uff09\ - \u3053\u306e\u753b\u9762\u3092\u898b\u3066\u3044\u308b\u3068\u3044\u3046\u3053\u3068\u306f\u3001\u30d7\u30e9\u30b0\u30a4\u30f3\u304cGET\u3092\u9001\u4fe1\u3059\u308b\u30ea\u30f3\u30af\u3092\u8868\u793a\u3057\u3066\u3044\u308b\u306e\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u3002\ - \u305d\u306e\u5834\u5408\u306f\u3001\u305d\u306e\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u30d0\u30b0\u3068\u3057\u3066\u5831\u544a\u3057\u3066\u304f\u3060\u3055\u3044\u3002 + ビルドを起動ã™ã‚‹ã«ã¯POSTメソッドを使用ã—ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。\ + (スクリプトã‹ã‚‰ã¯ã€ãã®ä»£ã‚ã‚Šã«ã€ãƒ—ロジェクトã”ã¨ã®èªè¨¼ãƒˆãƒ¼ã‚¯ãƒ³ã‚’渡ã—ãŸã‚Šã€APIトークンã§èªè¨¼ã—ã¾ã™ã€‚)\ + ã“ã®ç”»é¢ã‚’見ã¦ã„ã‚‹ã¨ã„ã†ã“ã¨ã¯ã€ãƒ—ラグインãŒGETã‚’é€ä¿¡ã™ã‚‹ãƒªãƒ³ã‚¯ã‚’表示ã—ã¦ã„ã‚‹ã®ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。\ + ãã®å ´åˆã¯ã€ãã®ãƒ—ラグインã®ãƒã‚°ã¨ã—ã¦å ±å‘Šã—ã¦ãã ã•ã„。 diff --git a/core/src/main/resources/hudson/model/Job/requirePOST_pt_BR.properties b/core/src/main/resources/hudson/model/Job/requirePOST_pt_BR.properties index fcc1390fb6fc..65670c6c8c35 100644 --- a/core/src/main/resources/hudson/model/Job/requirePOST_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Job/requirePOST_pt_BR.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Proceed=Prosseguir -use_post=Voc\u00EA deve usar o m\u00E9todo POST para disparar as constru\u00E7\u00F5es. \ - (\u00C0 partir de scripts voc\u00EA deve passar um passe de autentica\u00E7\u00E3o por projeto, ou autenticar com seu passe pela API). \ - Caso voc\u00EA veja esta p\u00E1gina, deve ser porque uma extens\u00E3o ofereceu um link utilizando GET. Preencha um relat\u00F3rio de \ - erro para esta extens\u00E3o. -Form\ post\ required=\u00C9 obrigat\u00F3rio utilizar POST no formul\u00E1rio +use_post=Você deve usar o método POST para disparar as construções. \ + (À partir de scripts você deve passar um passe de autenticação por projeto, ou autenticar com seu passe pela API). \ + Caso você veja esta página, deve ser porque uma extensão ofereceu um link utilizando GET. Preencha um relatório de \ + erro para esta extensão. +Form\ post\ required=É obrigatório utilizar POST no formulário diff --git a/core/src/main/resources/hudson/model/Job/requirePOST_ru.properties b/core/src/main/resources/hudson/model/Job/requirePOST_ru.properties index d6fb09eab4d7..d5e5e3f77480 100644 --- a/core/src/main/resources/hudson/model/Job/requirePOST_ru.properties +++ b/core/src/main/resources/hudson/model/Job/requirePOST_ru.properties @@ -1 +1 @@ -Proceed=\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c +Proceed=Продолжить diff --git a/core/src/main/resources/hudson/model/Job/requirePOST_sr.properties b/core/src/main/resources/hudson/model/Job/requirePOST_sr.properties index d1f040363ec4..791e61052afe 100644 --- a/core/src/main/resources/hudson/model/Job/requirePOST_sr.properties +++ b/core/src/main/resources/hudson/model/Job/requirePOST_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Form\ post\ required=\u0422\u0440\u0435\u0431\u0430\u043B\u043E \u0431\u0438 \u043F\u043E\u0434\u043D\u0435\u0442\u0438 \u043E\u0431\u0440\u0430\u0437\u0430\u0446 \u043F\u0440\u0435\u043A\u043E "POST". -use_post=\u041C\u043E\u0440\u0430\u0442\u0435 \u043A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0438 \u043C\u0435\u0442\u043E\u0434 POST \u0434\u0430 \u0438\u0437\u0430\u0437\u043E\u0432\u0435\u0442\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435.\ -\u0410\u043A\u043E \u0432\u0430\u043C \u0458\u0435 \u043E\u0432\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u043F\u0440\u0438\u043A\u0430\u0437\u0430\u043D\u0430, \u043C\u043E\u0433\u0443\u045B\u0435 \u0458\u0435 \u0434\u0430 \u0458\u0435 \u043D\u0435\u043A\u0430 \u043C\u043E\u0434\u0443\u043B\u0430 \u0438\u0437\u043F\u0443\u0441\u0442\u0438\u043B\u0430 GET \u0437\u0430\u0445\u0442\u0435\u0432, \u0443 \u043A\u043E\u043C \u0441\u043B\u0443\u0447\u0430\u0458\u0443 \u043F\u043E\u0434\u043D\u0435\u0441\u0438\u0442\u0435 \u0438\u0437\u0432\u0435\u0448\u0442\u0430\u0458 \u043E \u0433\u0440\u0435\u0448\u0446\u0438 \u0437\u0430 \u0442\u0443 \u043C\u043E\u0434\u0443\u043B\u0443. -Proceed=\u041D\u0430\u0441\u0442\u0430\u0432\u0438 +Form\ post\ required=Требало би поднети образац преко "POST". +use_post=Морате кориÑтити метод POST да изазовете изградње.\ +Ðко вам је ова Ñтраница приказана, могуће је да је нека модула изпуÑтила GET захтев, у ком Ñлучају поднеÑите извештај о грешци за ту модулу. +Proceed=ÐаÑтави diff --git a/core/src/main/resources/hudson/model/Job/requirePOST_zh_TW.properties b/core/src/main/resources/hudson/model/Job/requirePOST_zh_TW.properties index b78619338695..904e472cdc61 100644 --- a/core/src/main/resources/hudson/model/Job/requirePOST_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Job/requirePOST_zh_TW.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Form\ post\ required=\u5fc5\u9808\u7528\u8868\u55ae POST +Form\ post\ required=必須用表單 POST use_post=\ - \u60a8\u5fc5\u9808\u7528 POST \u65b9\u6cd5\u4f86\u89f8\u767c\u5efa\u7f6e\u3002\ - (\u82e5\u5728 Script \u4e2d\u4f7f\u7528\uff0c\u8acb\u518d\u50b3\u9001\u5c08\u6848\u500b\u5225\u7684\u9a57\u8b49 Token \u6216\u60a8\u500b\u4eba\u7684 API Token\u3002) \ - \u5982\u679c\u60a8\u770b\u5230\u9019\u4e00\u9801\uff0c\u6709\u53ef\u80fd\u662f\u4ec0\u9ebc\u5916\u639b\u7a0b\u5f0f\u63d0\u4f9b\u4e86 GET \u9023\u7d50\uff0c\u8acb\u56de\u5831 Bug \u7d66\u8a72\u5916\u639b\u7a0b\u5f0f\u3002 -Proceed=\u5df2\u8655\u7406 + 您必須用 POST 方法來觸發建置。\ + (若在 Script 中使用,請å†å‚³é€å°ˆæ¡ˆå€‹åˆ¥çš„é©—è­‰ Token 或您個人的 API Token。) \ + 如果您看到這一é ï¼Œæœ‰å¯èƒ½æ˜¯ä»€éº¼å¤–掛程å¼æ供了 GET 連çµï¼Œè«‹å›žå ± Bug 給該外掛程å¼ã€‚ +Proceed=å·²è™•ç† diff --git a/core/src/main/resources/hudson/model/Label/index_bg.properties b/core/src/main/resources/hudson/model/Label/index_bg.properties index 249ee5929e39..a2092339a3cd 100644 --- a/core/src/main/resources/hudson/model/Label/index_bg.properties +++ b/core/src/main/resources/hudson/model/Label/index_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Nodes=\ - \u041c\u0430\u0448\u0438\u043d\u0438 + Машини Projects=\ - \u041f\u0440\u043e\u0435\u043a\u0442\u0438 + Проекти None=\ - \u041d\u044f\u043c\u0430 + ÐÑма diff --git a/core/src/main/resources/hudson/model/Label/index_it.properties b/core/src/main/resources/hudson/model/Label/index_it.properties index 22f071834c3d..484b7880d8ae 100644 --- a/core/src/main/resources/hudson/model/Label/index_it.properties +++ b/core/src/main/resources/hudson/model/Label/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/Label/index_ja.properties b/core/src/main/resources/hudson/model/Label/index_ja.properties index 31817e4fb339..cff31378bebc 100644 --- a/core/src/main/resources/hudson/model/Label/index_ja.properties +++ b/core/src/main/resources/hudson/model/Label/index_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Nodes=\u30CE\u30FC\u30C9 -Projects=\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8 -None=\u306A\u3057 +Nodes=ノード +Projects=プロジェクト +None=ãªã— diff --git a/core/src/main/resources/hudson/model/Label/index_pt_BR.properties b/core/src/main/resources/hudson/model/Label/index_pt_BR.properties index efb05625aed7..72b026006f9e 100644 --- a/core/src/main/resources/hudson/model/Label/index_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Label/index_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Nodes=N\u00f3s -None=N\u00f3 +Nodes=Nós +None=Nó Projects=Projetos diff --git a/core/src/main/resources/hudson/model/Label/index_sr.properties b/core/src/main/resources/hudson/model/Label/index_sr.properties index 51a766a551e9..2019c633cd9c 100644 --- a/core/src/main/resources/hudson/model/Label/index_sr.properties +++ b/core/src/main/resources/hudson/model/Label/index_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Nodes=\u041C\u0430\u0448\u0438\u043D\u0435 -Projects=\u041F\u0440\u043E\u0458\u0435\u043A\u0442\u0438 -None=\u041D\u0435\u043C\u0430 +Nodes=Машине +Projects=Пројекти +None=Ðема diff --git a/core/src/main/resources/hudson/model/Label/index_zh_TW.properties b/core/src/main/resources/hudson/model/Label/index_zh_TW.properties index faef7b80fec9..a01eb016fb27 100644 --- a/core/src/main/resources/hudson/model/Label/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Label/index_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Nodes=\u7bc0\u9ede -Projects=\u5c08\u6848 -None=\u7121 +Nodes=節點 +Projects=專案 +None=ç„¡ diff --git a/core/src/main/resources/hudson/model/Label/sidepanel_bg.properties b/core/src/main/resources/hudson/model/Label/sidepanel_bg.properties index bbbb60523d7b..b4648372c25d 100644 --- a/core/src/main/resources/hudson/model/Label/sidepanel_bg.properties +++ b/core/src/main/resources/hudson/model/Label/sidepanel_bg.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Configure=\ - \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 + ÐаÑтройки Overview=\ - \u041f\u0440\u0435\u0433\u043b\u0435\u0434 + Преглед Load\ Statistics=\ - \u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0442 + СтатиÑтика Ñ‚ Back\ to\ Dashboard=\ - \u041a\u044a\u043c \u0442\u0430\u0431\u043b\u043e\u0442\u043e \u0437\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 + Към таблото за управление diff --git a/core/src/main/resources/hudson/model/Label/sidepanel_de.properties b/core/src/main/resources/hudson/model/Label/sidepanel_de.properties index 98616851cb3c..2baed4fe2118 100644 --- a/core/src/main/resources/hudson/model/Label/sidepanel_de.properties +++ b/core/src/main/resources/hudson/model/Label/sidepanel_de.properties @@ -1,4 +1,4 @@ -Back\ to\ Dashboard=Zur\u00FCck zur \u00DCbersicht -Overview=\u00DCberblick +Back\ to\ Dashboard=Zurück zur Ãœbersicht +Overview=Ãœberblick Load\ Statistics=Auslastung Configure=Konfigurieren diff --git a/core/src/main/resources/hudson/model/Label/sidepanel_es.properties b/core/src/main/resources/hudson/model/Label/sidepanel_es.properties index e8677ee2b7c4..67f4b56858ce 100644 --- a/core/src/main/resources/hudson/model/Label/sidepanel_es.properties +++ b/core/src/main/resources/hudson/model/Label/sidepanel_es.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Back\ to\ Dashboard=Volver al Panel de control -Overview=Visión general -Load\ Statistics=Cargar estadísticas +Overview=Visión general +Load\ Statistics=Cargar estadísticas diff --git a/core/src/main/resources/hudson/model/Label/sidepanel_fr.properties b/core/src/main/resources/hudson/model/Label/sidepanel_fr.properties index 63145e9e4bf1..e6c7fa57c408 100644 --- a/core/src/main/resources/hudson/model/Label/sidepanel_fr.properties +++ b/core/src/main/resources/hudson/model/Label/sidepanel_fr.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Back\ to\ Dashboard=Retour au tableau de bord -Overview=Vue générale -Load\ Statistics=Statistiques de l''utilisation du système +Overview=Vue générale +Load\ Statistics=Statistiques de l''utilisation du système diff --git a/core/src/main/resources/hudson/model/Label/sidepanel_it.properties b/core/src/main/resources/hudson/model/Label/sidepanel_it.properties index 4492570ad019..cec53e8a7073 100644 --- a/core/src/main/resources/hudson/model/Label/sidepanel_it.properties +++ b/core/src/main/resources/hudson/model/Label/sidepanel_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/Label/sidepanel_ja.properties b/core/src/main/resources/hudson/model/Label/sidepanel_ja.properties index 67827954ce2f..8e561c749eac 100644 --- a/core/src/main/resources/hudson/model/Label/sidepanel_ja.properties +++ b/core/src/main/resources/hudson/model/Label/sidepanel_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u3078\u623b\u308b -Overview=\u6982\u8981 -Load\ Statistics=\u8ca0\u8377\u7d71\u8a08 -Configure=\u8a2d\u5b9a +Back\ to\ Dashboard=ダッシュボードã¸æˆ»ã‚‹ +Overview=æ¦‚è¦ +Load\ Statistics=è² è·çµ±è¨ˆ +Configure=設定 diff --git a/core/src/main/resources/hudson/model/Label/sidepanel_lv.properties b/core/src/main/resources/hudson/model/Label/sidepanel_lv.properties index 1590255d7025..c45afdbe4345 100644 --- a/core/src/main/resources/hudson/model/Label/sidepanel_lv.properties +++ b/core/src/main/resources/hudson/model/Label/sidepanel_lv.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Atpaka\u013C uz uzdevumd\u0113li +Back\ to\ Dashboard=Atpakaļ uz uzdevumdÄ“li Load\ Statistics=Noslodzes statistika -Overview=P\u0101rskats +Overview=PÄrskats diff --git a/core/src/main/resources/hudson/model/Label/sidepanel_pt_BR.properties b/core/src/main/resources/hudson/model/Label/sidepanel_pt_BR.properties index 9378bb76f781..0cfd2e18df48 100644 --- a/core/src/main/resources/hudson/model/Label/sidepanel_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Label/sidepanel_pt_BR.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Back\ to\ Dashboard=Voltar ao dashboard -Overview=Vis\u00e3o geral -Load\ Statistics=Estat\u00edsticas de carga +Overview=Visão geral +Load\ Statistics=Estatísticas de carga Configure=Configurar diff --git a/core/src/main/resources/hudson/model/Label/sidepanel_ru.properties b/core/src/main/resources/hudson/model/Label/sidepanel_ru.properties index 0602bbe83575..550974404859 100644 --- a/core/src/main/resources/hudson/model/Label/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/model/Label/sidepanel_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u0414\u043E\u043C\u043E\u0439 -Load\ Statistics=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0430 \u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0438 -Overview=\u041E\u0431\u0437\u043E\u0440 +Back\ to\ Dashboard=Домой +Load\ Statistics=СтатиÑтика загрузки +Overview=Обзор diff --git a/core/src/main/resources/hudson/model/Label/sidepanel_sr.properties b/core/src/main/resources/hudson/model/Label/sidepanel_sr.properties index adab3fbf79fd..9769ca93a06e 100644 --- a/core/src/main/resources/hudson/model/Label/sidepanel_sr.properties +++ b/core/src/main/resources/hudson/model/Label/sidepanel_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Overview=\u041F\u0440\u0435\u0433\u043B\u0435\u0434 -Configure=\u041F\u043E\u0434\u0435\u0441\u0438 -Load\ Statistics=\u0423\u0447\u0438\u0442\u0430\u0458 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0435 -Back\ to\ Dashboard=\u041D\u0430\u0437\u0430\u0434 \u043A\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043D\u0443 \u043F\u0430\u043D\u0435\u043B\u0443 +Overview=Преглед +Configure=ПодеÑи +Load\ Statistics=Учитај ÑтатиÑтике +Back\ to\ Dashboard=Ðазад ка контролну панелу diff --git a/core/src/main/resources/hudson/model/Label/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/model/Label/sidepanel_zh_TW.properties index 369c0f936758..5406b38f9cc2 100644 --- a/core/src/main/resources/hudson/model/Label/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Label/sidepanel_zh_TW.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u8fd4\u56de\u8cc7\u8a0a\u4e3b\u9801 -Overview=\u7e3d\u89bd -Load\ Statistics=\u8ca0\u8f09\u7d71\u8a08 -Configure=\u8a2d\u5b9a +Back\ to\ Dashboard=è¿”å›žè³‡è¨Šä¸»é  +Overview=總覽 +Load\ Statistics=負載統計 +Configure=設定 diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_bg.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_bg.properties index 151467b9f63b..712697a7adc3 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_bg.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_bg.properties @@ -21,26 +21,26 @@ # THE SOFTWARE. Enabled\ jobs\ only=\ - \u0421\u0430\u043c\u043e \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0442\u0435 \u0437\u0430\u0434\u0430\u043d\u0438\u044f + Само включените Ð·Ð°Ð´Ð°Ð½Ð¸Ñ Status\ Filter=\ - \u0424\u0438\u043b\u0442\u044a\u0440 \u043f\u043e \u0441\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435\u0442\u043e + Филтър по ÑÑŠÑтоÑнието Add\ column=\ - \u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u0430 + ДобавÑне на колона Regular\ expression=\ - \u0420\u0435\u0433\u0443\u043b\u044f\u0440\u0435\u043d \u0438\u0437\u0440\u0430\u0437 + РегулÑрен израз Disabled\ jobs\ only=\ - \u0421\u0430\u043c\u043e \u0438\u0437\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0442\u0435 \u0437\u0430\u0434\u0430\u043d\u0438\u044f + Само изключените Ð·Ð°Ð´Ð°Ð½Ð¸Ñ Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=\ - \u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0433\u0443\u043b\u044f\u0440\u0435\u043d \u0438\u0437\u0440\u0430\u0437 \u0437\u0430 \u0434\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u043d\u0438\u044f \u043a\u044a\u043c \u0438\u0437\u0433\u043b\u0435\u0434\u0430 + Използване на регулÑрен израз за добавÑне на Ð·Ð°Ð´Ð°Ð½Ð¸Ñ ÐºÑŠÐ¼ изгледа Add\ Job\ Filter=\ - \u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0444\u0438\u043b\u0442\u044a\u0440 \u043f\u043e \u0437\u0430\u0434\u0430\u043d\u0438\u044f\u0442\u0430 + ДобавÑне на филтър по заданиÑта Job\ Filters=\ - \u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u043d\u0438\u044f\u0442\u0430 + Филтриране на заданиÑта All\ selected\ jobs=\ - \u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0438\u0437\u0431\u0440\u0430\u043d\u0438\u0442\u0435 \u0437\u0430\u0434\u0430\u043d\u0438\u044f + ДобавÑне на избраните Ð·Ð°Ð´Ð°Ð½Ð¸Ñ Columns=\ - \u041a\u043e\u043b\u043e\u043d\u0438 + Колони Recurse\ in\ subfolders=\ - \u0422\u044a\u0440\u0441\u0435\u043d\u0435 \u0432\u044a\u0432 \u0432\u0441\u0438\u0447\u043a\u0438 \u043f\u043e\u0434\u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u0438 + ТърÑене във вÑички поддиректории Jobs=\ - \u0417\u0430\u0434\u0430\u043d\u0438\u044f + Ð—Ð°Ð´Ð°Ð½Ð¸Ñ diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_cs.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_cs.properties index 3b2d9f60f4a1..e11d2b91ed4f 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_cs.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_cs.properties @@ -1,12 +1,12 @@ # This file is under the MIT License by authors -Add\ column=P\u0159idat sloupec -All\ selected\ jobs=V\u0161echny vybran\u00E9 joby +Add\ column=PÅ™idat sloupec +All\ selected\ jobs=VÅ¡echny vybrané joby Columns=Sloupce -Disabled\ jobs\ only=Vypnut\u00E9 joby pouze -Enabled\ jobs\ only=Zapnut\u00E9 joby pouze -Job\ Filters=Filtry job\u016F +Disabled\ jobs\ only=Vypnuté joby pouze +Enabled\ jobs\ only=Zapnuté joby pouze +Job\ Filters=Filtry jobů Jobs=Joby -Regular\ expression=Regul\u00E1rn\u00ED v\u00FDraz +Regular\ expression=Regulární výraz Status\ Filter=Filtr stavu -Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Pou\u017E\u00EDt regul\u00E1rn\u00ED v\u00FDraz pro popis job\u016F, kter\u00E9 maj\u00ED b\u00FDt zobrazen\u00E9 v tomto pohledu +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Použít regulární výraz pro popis jobů, které mají být zobrazené v tomto pohledu diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_da.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_da.properties index cc314b5b1c61..d6b59102b79e 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_da.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_da.properties @@ -23,11 +23,11 @@ All\ selected\ jobs=Alle valgte jobs Jobs=Jobs Status\ Filter=Statusfilter -Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Benyt et regul\u00e6rt udtryk til at inkludere jobs i visningen -Regular\ expression=Regul\u00e6rt udtryk -Columns=S\u00f8jler -Add\ column=Tilf\u00f8j s\u00f8jle +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Benyt et regulært udtryk til at inkludere jobs i visningen +Regular\ expression=Regulært udtryk +Columns=Søjler +Add\ column=Tilføj søjle Job\ Filters=Jobfiltre -Add\ Job\ Filter=Tilf\u00f8j jobfilter -Disabled\ jobs\ only=Kun jobs der er sl\u00e5et fra -Enabled\ jobs\ only=Kun jobs der er sl\u00e5et til +Add\ Job\ Filter=Tilføj jobfilter +Disabled\ jobs\ only=Kun jobs der er slÃ¥et fra +Enabled\ jobs\ only=Kun jobs der er slÃ¥et til diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_de.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_de.properties index e2fb56032f68..594d9a62f2b5 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_de.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_de.properties @@ -21,14 +21,14 @@ # THE SOFTWARE. Jobs=Jobs -Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Regulären Ausdruck verwenden, um Jobs für diese Ansicht auszuwählen. +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Regulären Ausdruck verwenden, um Jobs für diese Ansicht auszuwählen. Recurse\ in\ subfolders=Unterverzeichnisse rekursiv durchsuchen -Regular\ expression=Regulärer Ausdruck +Regular\ expression=Regulärer Ausdruck Columns=Spalten -Add\ column=Spalte hinzufügen -All\ selected\ jobs=Alle ausgewählten Jobs +Add\ column=Spalte hinzufügen +All\ selected\ jobs=Alle ausgewählten Jobs Disabled\ jobs\ only=Nur deaktivierte Jobs Enabled\ jobs\ only=Nur aktivierte Jobs Job\ Filters=Job Filter -Add\ Job\ Filter=Job Filter hinzufügen +Add\ Job\ Filter=Job Filter hinzufügen Status\ Filter=Status-Filter diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_es.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_es.properties index 928921defff6..99bb431c5ff8 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_es.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_es.properties @@ -22,13 +22,13 @@ Jobs=Proyectos Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=\ - Utilizar una expresión regular para incluir proyectos dentro de la vista -Regular\ expression=Expresión regular + Utilizar una expresión regular para incluir proyectos dentro de la vista +Regular\ expression=Expresión regular Columns=Columnas -Add\ column=Añadir columna +Add\ column=Añadir columna All\ selected\ jobs=Todos los trabajos seleccionados Status\ Filter=Estado del filtro Job\ Filters=Filtros -Add\ Job\ Filter=Añadir un filtro -Disabled\ jobs\ only=Desacivar sólo estos trabajos -Enabled\ jobs\ only=Activar sólo estos trabajos +Add\ Job\ Filter=Añadir un filtro +Disabled\ jobs\ only=Desacivar sólo estos trabajos +Enabled\ jobs\ only=Activar sólo estos trabajos diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_fi.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_fi.properties index 0ae70384886c..60dde2ed1190 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_fi.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_fi.properties @@ -1,12 +1,12 @@ # This file is under the MIT License by authors -Add\ column=Lis\u00E4\u00E4 sarake -All\ selected\ jobs=Kaikki valitut ty\u00F6t +Add\ column=Lisää sarake +All\ selected\ jobs=Kaikki valitut työt Columns=Sarakkeet -Disabled\ jobs\ only=Vain ei-aktiiviset ty\u00F6t -Enabled\ jobs\ only=Vain aktiiviset ty\u00F6t -Job\ Filters=T\u00F6iden valinta -Jobs=Ty\u00F6t -Regular\ expression=S\u00E4\u00E4nn\u00F6llinen lauseke +Disabled\ jobs\ only=Vain ei-aktiiviset työt +Enabled\ jobs\ only=Vain aktiiviset työt +Job\ Filters=Töiden valinta +Jobs=Työt +Regular\ expression=Säännöllinen lauseke Status\ Filter=Tilatiedon valinta -Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=K\u00E4yt\u00E4 s\u00E4\u00E4nn\u00F6llist\u00E4 lausetta (regex) n\u00E4kym\u00E4ss\u00E4 n\u00E4ytettyjen t\u00F6iden valintaan +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Käytä säännöllistä lausetta (regex) näkymässä näytettyjen töiden valintaan diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_fr.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_fr.properties index b70493e5a08b..5c6fdcaa7dc9 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_fr.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_fr.properties @@ -22,13 +22,13 @@ Add\ Job\ Filter=Ajouter un filtre Add\ column=Ajouter une colonne -All\ selected\ jobs=Toutes les t\u00E2ches s\u00E9lectionn\u00E9es +All\ selected\ jobs=Toutes les tâches sélectionnées Columns=Colonnes -Disabled\ jobs\ only=Uniquement les t\u00E2ches d\u00E9sactiv\u00E9es -Enabled\ jobs\ only=Uniquement les t\u00E2ches activ\u00E9es -Job\ Filters=Filtres pour les t\u00E2ches -Jobs=T\u00E2ches -Status\ Filter=\u00C9tat du filtre -Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Utilisez une expression r\u00E9guli\u00E8re pour inclure les jobs dans la vue -Recurse\ in\ subfolders=Rechercher r\u00E9cursivement dans les sous r\u00E9pertoires -Regular\ expression=Expression r\u00E9guli\u00E8re +Disabled\ jobs\ only=Uniquement les tâches désactivées +Enabled\ jobs\ only=Uniquement les tâches activées +Job\ Filters=Filtres pour les tâches +Jobs=Tâches +Status\ Filter=État du filtre +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Utilisez une expression régulière pour inclure les jobs dans la vue +Recurse\ in\ subfolders=Rechercher récursivement dans les sous répertoires +Regular\ expression=Expression régulière diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_hu.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_hu.properties index 5661c3bb65fe..e7909e6a7513 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_hu.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_hu.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ column=Oszlop hozz\u00E1ad\u00E1sa -All\ selected\ jobs=Minden kiv\u00E1lasztott feladat +Add\ column=Oszlop hozzáadása +All\ selected\ jobs=Minden kiválasztott feladat Columns=Oszlopok Disabled\ jobs\ only=Csak letiltott feladatok -Enabled\ jobs\ only=Csak enged\u00E9lyezett feladatok -Job\ Filters=Feladatok Sz\u0171r\u00E9se +Enabled\ jobs\ only=Csak engedélyezett feladatok +Job\ Filters=Feladatok Szűrése Jobs=Feladatok -Regular\ expression=Regul\u00E1ris kifejez\u00E9s -Status\ Filter=\u00C1llapot sz\u0171r\u0151 -Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Haszn\u00E1ljon regul\u00E1ris kifejez\u00E9seket, hogy hozz\u00E1adjon feladatokat a n\u00E9zethez +Regular\ expression=Reguláris kifejezés +Status\ Filter=Ãllapot szűrÅ‘ +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Használjon reguláris kifejezéseket, hogy hozzáadjon feladatokat a nézethez diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_it.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_it.properties index cf31e24f9801..ee61874a9b77 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_it.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_ja.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_ja.properties index 2683748d0488..8a8a909b91f0 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_ja.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_ja.properties @@ -20,15 +20,15 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jobs=\u30b8\u30e7\u30d6 -Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=\u6b63\u898f\u8868\u73fe\u3067\u30b8\u30e7\u30d6\u3092\u6307\u5b9a -Regular\ expression=\u6b63\u898f\u8868\u73fe -Columns=\u30ab\u30e9\u30e0 -Add\ column=\u30ab\u30e9\u30e0\u8ffd\u52a0 -Job\ Filters=\u30b8\u30e7\u30d6\u30d5\u30a3\u30eb\u30bf\u30fc -Add\ Job\ Filter=\u30b8\u30e7\u30d6\u30d5\u30a3\u30eb\u30bf\u30fc\u306e\u8ffd\u52a0 -Status\ Filter=\u30b9\u30c6\u30fc\u30bf\u30b9\u30d5\u30a3\u30eb\u30bf\u30fc -All\ selected\ jobs=\u9078\u629e\u6e08\u307f\u30b8\u30e7\u30d6\u3092\u3059\u3079\u3066 -Enabled\ jobs\ only=\u6709\u52b9\u306a\u30b8\u30e7\u30d6\u306e\u307f -Disabled\ jobs\ only=\u7121\u52b9\u306a\u30b8\u30e7\u30d6\u306e\u307f -Recurse\ in\ subfolders=\u30b5\u30d6\u30d5\u30a9\u30eb\u30c0\u30fc\u3092\u8868\u793a +Jobs=ジョブ +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=æ­£è¦è¡¨ç¾ã§ã‚¸ãƒ§ãƒ–を指定 +Regular\ expression=æ­£è¦è¡¨ç¾ +Columns=カラム +Add\ column=カラム追加 +Job\ Filters=ジョブフィルター +Add\ Job\ Filter=ジョブフィルターã®è¿½åŠ  +Status\ Filter=ステータスフィルター +All\ selected\ jobs=é¸æŠžæ¸ˆã¿ã‚¸ãƒ§ãƒ–ã‚’ã™ã¹ã¦ +Enabled\ jobs\ only=有効ãªã‚¸ãƒ§ãƒ–ã®ã¿ +Disabled\ jobs\ only=無効ãªã‚¸ãƒ§ãƒ–ã®ã¿ +Recurse\ in\ subfolders=サブフォルダーを表示 diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_ko.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_ko.properties index 1bbd4b1aba8f..6feb1588a38f 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_ko.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_ko.properties @@ -1,11 +1,11 @@ # This file is under the MIT License by authors -Add\ column=\uCEEC\uB7FC \uCD94\uAC00 -All\ selected\ jobs=\uC120\uD0DD\uD55C \uBAA8\uB4E0 \uC791\uC5C5 -Columns=\uCEEC\uB7FC -Enabled\ jobs\ only=\uC0AC\uC6A9\uAC00\uB2A5\uD55C \uC791\uC5C5 -Job\ Filters=\uC791\uC5C5 \uD544\uD130 -Jobs=\uC791\uC5C5 -Regular\ expression=\uC815\uADDC\uC2DD -Status\ Filter=\uC0C1\uD0DC \uD544\uD130 -Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=\uC815\uADDC\uC2DD\uC744 \uC774\uC6A9\uD55C \uC791\uC5C5 \uBAA9\uB85D \uD544\uD130 +Add\ column=컬럼 추가 +All\ selected\ jobs=ì„ íƒí•œ 모든 ìž‘ì—… +Columns=컬럼 +Enabled\ jobs\ only=사용가능한 ìž‘ì—… +Job\ Filters=ìž‘ì—… í•„í„° +Jobs=ìž‘ì—… +Regular\ expression=ì •ê·œì‹ +Status\ Filter=ìƒíƒœ í•„í„° +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=ì •ê·œì‹ì„ ì´ìš©í•œ ìž‘ì—… ëª©ë¡ í•„í„° diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_lt.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_lt.properties index d06573f5f9ac..56c76bfa658b 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_lt.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_lt.properties @@ -1,10 +1,10 @@ # This file is under the MIT License by authors -Add\ column=Prid\u0117ti stulpel\u012F +Add\ column=PridÄ—ti stulpelį Columns=Stulpeliai -Disabled\ jobs\ only=Tik i\u0161jungti darbai -Enabled\ jobs\ only=Tik \u012Fjungti darbai -Job\ Filters=Darb\u0173 filtrai +Disabled\ jobs\ only=Tik iÅ¡jungti darbai +Enabled\ jobs\ only=Tik įjungti darbai +Job\ Filters=Darbų filtrai Jobs=Darbai -Regular\ expression=Reguliarusis rei\u0161kinys -Status\ Filter=B\u016Bsenos filtras +Regular\ expression=Reguliarusis reiÅ¡kinys +Status\ Filter=BÅ«senos filtras diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_lv.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_lv.properties index f97619694d55..03787d845f67 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_lv.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_lv.properties @@ -21,13 +21,13 @@ # THE SOFTWARE. Add\ column=Pievienot kolonnu -All\ selected\ jobs=Visi atlas\u012Btie darbi +All\ selected\ jobs=Visi atlasÄ«tie darbi Columns=Kolonna -Disabled\ jobs\ only=Tikai atsl\u0113gtie darbi -Enabled\ jobs\ only=Tikai iesl\u0113gtie darbi +Disabled\ jobs\ only=Tikai atslÄ“gtie darbi +Enabled\ jobs\ only=Tikai ieslÄ“gtie darbi Job\ Filters=Darbu filtri Jobs=Darbi -Recurse\ in\ subfolders=Rekursija apak\u0161direktorij\u0101s -Regular\ expression=Regul\u0101r\u0101 izteiksme +Recurse\ in\ subfolders=Rekursija apakÅ¡direktorijÄs +Regular\ expression=RegulÄrÄ izteiksme Status\ Filter=Statusa filtrs -Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Lietot regul\u0101r\u0101s izteiksmes, lai iek\u013Cautu darbus \u0161aj\u0101 skat\u0101 +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Lietot regulÄrÄs izteiksmes, lai iekļautu darbus Å¡ajÄ skatÄ diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_nb_NO.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_nb_NO.properties index 086a85a97a61..e2d8ac097a51 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_nb_NO.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_nb_NO.properties @@ -7,6 +7,6 @@ Disabled\ jobs\ only=Kun deaktiverte jobber Enabled\ jobs\ only=Kun aktiverte jobber Job\ Filters=Jobbfiltre Jobs=Jobber -Regular\ expression=Regul\u00E6rt uttrykk +Regular\ expression=Regulært uttrykk Status\ Filter=Statusfilter -Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Bruk regul\u00E6rt uttrykk for \u00E5 ta med jobber i visningen +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Bruk regulært uttrykk for Ã¥ ta med jobber i visningen diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_pl.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_pl.properties index c7627c10d3d4..6a8345ef88ef 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_pl.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_pl.properties @@ -21,13 +21,13 @@ # THE SOFTWARE All\ selected\ jobs=Wszystkie wybrane projekty Columns=Kolumny -Disabled\ jobs\ only=Tylko wy\u0142\u0105czone projekty -Enabled\ jobs\ only=Tylko w\u0142\u0105czone projekty -Job\ Filters=Filtry projekt\u00F3w +Disabled\ jobs\ only=Tylko wyÅ‚Ä…czone projekty +Enabled\ jobs\ only=Tylko wÅ‚Ä…czone projekty +Job\ Filters=Filtry projektów Jobs=Projekty -Regular\ expression=Wyra\u017Cenie regularne +Regular\ expression=Wyrażenie regularne Status\ Filter=Status (filtr) -Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=U\u017Cyj wyra\u017Cenia regularnego, aby doda\u0107 projekty do widoku -Recurse\ in\ subfolders=Rekursywnie wg\u0142\u0105b folder\u00F3w -Add\ column=Dodaj kolumn\u0119 -Add\ Job\ Filter=Dodaj filtr zada\u0144 +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Użyj wyrażenia regularnego, aby dodać projekty do widoku +Recurse\ in\ subfolders=Rekursywnie wgÅ‚Ä…b folderów +Add\ column=Dodaj kolumnÄ™ +Add\ Job\ Filter=Dodaj filtr zadaÅ„ diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_pt_BR.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_pt_BR.properties index 69b224519a18..0333665ebec9 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_pt_BR.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_pt_BR.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Jobs=Tarefas -Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Use uma express\u00E3o regular para incluir tarefas na \ - visualiza\u00E7\u00E3o -Recurse\ in\ subfolders=Recursivo nos sub-diret\u00F3rios -Regular\ expression=Express\u00E3o regular +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Use uma expressão regular para incluir tarefas na \ + visualização +Recurse\ in\ subfolders=Recursivo nos sub-diretórios +Regular\ expression=Expressão regular Columns=Colunas Add\ column=Adicionar coluna Job\ Filters=Filtrar tarefas diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_ru.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_ru.properties index 156dca1cf28c..dae611733651 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_ru.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_ru.properties @@ -20,15 +20,15 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ Job\ Filter=\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0444\u0438\u043B\u044C\u0442\u0440 \u0437\u0430\u0434\u0430\u0447\u0438 -Add\ column=\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0441\u0442\u043E\u043B\u0431\u0435\u0446 -All\ selected\ jobs=\u0412\u0441\u0435 \u0432\u044B\u0431\u0440\u0430\u043D\u043D\u044B\u0435 \u0437\u0430\u0434\u0430\u043D\u0438\u044F -Columns=\u0421\u0442\u043E\u043B\u0431\u0446\u044B -Disabled\ jobs\ only=\u0422\u043E\u043B\u044C\u043A\u043E \u043E\u0442\u043A\u043B\u044E\u0447\u0451\u043D\u043D\u044B\u0435 \u0437\u0430\u0434\u0430\u043D\u0438\u044F -Enabled\ jobs\ only=\u0422\u043E\u043B\u044C\u043A\u043E \u0432\u043A\u043B\u044E\u0447\u0451\u043D\u043D\u044B\u0435 \u0437\u0430\u0434\u0430\u043D\u0438\u044F -Job\ Filters=\u0424\u0438\u043B\u044C\u0442\u0440\u044B \u0437\u0430\u0434\u0430\u043D\u0438\u0439 -Jobs=\u0417\u0430\u0434\u0430\u0447\u0438 -Status\ Filter=\u0424\u0438\u043B\u044C\u0442\u0440 \u043F\u043E \u0441\u043E\u0441\u0442\u043E\u044F\u043D\u0438\u044E -Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u0434\u0430\u0447 \u0432 \u0441\u043f\u0438\u0441\u043e\u043a -Recurse\ in\ subfolders=\u0420\u0435\u043A\u0443\u0440\u0441\u0438\u0432\u043D\u043E \u0432 \u043F\u043E\u0434\u043F\u0430\u043F\u043A\u0430\u0445 -Regular\ expression=\u0420\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 +Add\ Job\ Filter=Добавить фильтр задачи +Add\ column=Добавить Ñтолбец +All\ selected\ jobs=Ð’Ñе выбранные Ð·Ð°Ð´Ð°Ð½Ð¸Ñ +Columns=Столбцы +Disabled\ jobs\ only=Только отключённые Ð·Ð°Ð´Ð°Ð½Ð¸Ñ +Enabled\ jobs\ only=Только включённые Ð·Ð°Ð´Ð°Ð½Ð¸Ñ +Job\ Filters=Фильтры заданий +Jobs=Задачи +Status\ Filter=Фильтр по ÑоÑтоÑнию +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=ИÑпользовать регулÑрное выражение Ð´Ð»Ñ Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð·Ð°Ð´Ð°Ñ‡ в ÑпиÑок +Recurse\ in\ subfolders=РекурÑивно в подпапках +Regular\ expression=РегулÑрное выражение diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_sk.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_sk.properties index b2b386a66dd6..3fc821e3adec 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_sk.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_sk.properties @@ -20,14 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ Job\ Filter=Prida\u0165 filter \u00FAloh -Add\ column=Prida\u0165 st\u013Apec -All\ selected\ jobs=V\u0161etky vybran\u00E9 \u00FAlohy -Columns=St\u013Apce -Disabled\ jobs\ only=Len neakt\u00EDvne \u00FAlohy -Enabled\ jobs\ only=Len povolen\u00E9 \u00FAlohy -Job\ Filters=Filter \u00FAloh -Jobs=\u00DAlohy -Regular\ expression=Regul\u00E1rny v\u00FDraz +Add\ Job\ Filter=PridaÅ¥ filter úloh +Add\ column=PridaÅ¥ stĺpec +All\ selected\ jobs=VÅ¡etky vybrané úlohy +Columns=Stĺpce +Disabled\ jobs\ only=Len neaktívne úlohy +Enabled\ jobs\ only=Len povolené úlohy +Job\ Filters=Filter úloh +Jobs=Úlohy +Regular\ expression=Regulárny výraz Status\ Filter=Filter stavu -Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Pou\u017Ei\u0165 regul\u00E1rny v\u00FDraz na zahrnutie \u00FAloh do poh\u013Eadu +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=PoužiÅ¥ regulárny výraz na zahrnutie úloh do pohľadu diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_sr.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_sr.properties index 04cba4a19b8a..697851c05bc6 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_sr.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_sr.properties @@ -1,14 +1,14 @@ # This file is under the MIT License by authors -Job\ Filters=\u0424\u0438\u043B\u0442\u0435\u0440\u0438 \u043D\u0430 \u0437\u0430\u0434\u0430\u0446\u0438\u043C\u0430 +Job\ Filters=Филтери на задацима Status\ Filter= -All\ selected\ jobs=\u0421\u0432\u0435 \u0438\u0437\u0430\u0431\u0440\u0430\u043D\u0438 \u0437\u0430\u0434\u0430\u0446\u0438 -Enabled\ jobs\ only=\u0421\u0430\u043C\u043E \u043E\u043C\u043E\u0433\u0443\u045B\u0435\u043D\u0438 \u0437\u0430\u0434\u0430\u0446\u0438 -Disabled\ jobs\ only=\u0421\u0430\u043C\u043E \u043E\u043D\u0435\u043C\u043E\u0433\u0443\u045B\u0435\u043D\u0438 \u0437\u0430\u0434\u0430\u0446\u0438 +All\ selected\ jobs=Све изабрани задаци +Enabled\ jobs\ only=Само омогућени задаци +Disabled\ jobs\ only=Само онемогућени задаци Recurse\ in\ subfolders= -Jobs=\u0417\u0430\u0434\u0430\u0446\u0438 +Jobs=Задаци Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view= -Regular\ expression=\u0420\u0435\u0433\u0443\u043B\u0430\u0440\u043D\u0438 \u0438\u0437\u0440\u0430\u0437 +Regular\ expression=Регуларни израз Add\ Job\ Filter= -Columns=\u041A\u043E\u043B\u043E\u043D\u0435 -Add\ column=\u0414\u043E\u0434\u0430\u0458 \u043A\u043E\u043B\u043E\u043D\u0443 +Columns=Колоне +Add\ column=Додај колону diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_sv_SE.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_sv_SE.properties index 6b65080e66b9..bfec9c1d505d 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_sv_SE.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_sv_SE.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ column=L\u00E4gg till kolumn +Add\ column=Lägg till kolumn All\ selected\ jobs=Alla valda jobb Columns=Kolumner Disabled\ jobs\ only=Bara inaktiverade jobb Enabled\ jobs\ only=Bara aktiverade jobb Job\ Filters=Jobbfilter Jobs=Jobb -Regular\ expression=Regulj\u00E4rt uttryck +Regular\ expression=Reguljärt uttryck Status\ Filter=Statusfilter -Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Anv\u00E4nd ett regulj\u00E4rt uttryck f\u00F6r att inkludera job i vyn +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Använd ett reguljärt uttryck för att inkludera job i vyn diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_tr.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_tr.properties index a30c4444f212..717c69eccf9b 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_tr.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_tr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jobs=\u0130\u015fler +Jobs=Ä°ÅŸler Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view= Regular\ expression= diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_uk.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_uk.properties index e614932253c1..0aa10bb05baa 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_uk.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_uk.properties @@ -1,12 +1,12 @@ # This file is under the MIT License by authors -Add\ column=\u0414\u043E\u0434\u0430\u0442\u0438 \u043A\u043E\u043B\u043E\u043D\u043A\u0443 -All\ selected\ jobs=\u0412\u0441\u0456 \u0432\u0438\u0431\u0440\u0430\u043D\u0456 -Columns=\u041A\u043E\u043B\u043E\u043D\u043A\u0438 -Disabled\ jobs\ only=\u041B\u0438\u0448\u0435 \u0432\u0438\u043C\u043A\u043D\u0435\u043D\u0456 \u0437\u0430\u0432\u0434\u0430\u043D\u043D\u044F -Enabled\ jobs\ only=\u041B\u0438\u0448\u0435 \u0443\u0432\u0456\u043C\u043A\u043D\u0435\u043D\u043D\u0456 \u0437\u0430\u0432\u0434\u0430\u043D\u043D\u044F -Job\ Filters=\u0424\u0456\u043B\u044C\u0442\u0440\u0438 \u0437\u0430\u0432\u0434\u0430\u043D\u044C -Jobs=\u0417\u0430\u0432\u0434\u0430\u043D\u043D\u044F -Regular\ expression=\u0420\u0435\u0433\u0443\u043B\u044F\u0440\u043D\u0438\u0439 \u0432\u0438\u0440\u0430\u0437 -Status\ Filter=\u0424\u0456\u043B\u044C\u0442\u0440 \u0441\u0442\u0430\u043D\u0443 -Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=\u0412\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u0440\u0435\u0433\u0443\u043B\u044F\u0440\u043D\u0456 \u0432\u0438\u0440\u0430\u0437\u0438 \u0434\u043B\u044F \u0432\u0456\u0434\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F \u0437\u0430\u0432\u0434\u0430\u043D\u044C \u043D\u0430 \u0441\u0442\u043E\u0440\u0456\u043D\u0446\u0456 +Add\ column=Додати колонку +All\ selected\ jobs=Ð’ÑÑ– вибрані +Columns=Колонки +Disabled\ jobs\ only=Лише вимкнені Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ +Enabled\ jobs\ only=Лише увімкненні Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ +Job\ Filters=Фільтри завдань +Jobs=Ð—Ð°Ð²Ð´Ð°Ð½Ð½Ñ +Regular\ expression=РегулÑрний вираз +Status\ Filter=Фільтр Ñтану +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=ВикориÑтовувати регулÑрні вирази Ð´Ð»Ñ Ð²Ñ–Ð´Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð·Ð°Ð²Ð´Ð°Ð½ÑŒ на Ñторінці diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_zh_TW.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_zh_TW.properties index 3c475c6abe48..534ea01abc4f 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_zh_TW.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_zh_TW.properties @@ -20,18 +20,18 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Job\ Filters=\u5DE5\u4F5C\u904E\u6FFE\u5668 -Status\ Filter=\u72C0\u614B\u904E\u6FFE\u5668 -All\ selected\ jobs=\u6240\u6709\u9078\u53D6\u7684\u5DE5\u4F5C -Enabled\ jobs\ only=\u53EA\u986F\u793A\u555F\u7528\u7684\u5DE5\u4F5C -Disabled\ jobs\ only=\u53EA\u986F\u793A\u505C\u7528\u7684\u5DE5\u4F5C +Job\ Filters=工作éŽæ¿¾å™¨ +Status\ Filter=狀態éŽæ¿¾å™¨ +All\ selected\ jobs=所有é¸å–的工作 +Enabled\ jobs\ only=åªé¡¯ç¤ºå•Ÿç”¨çš„工作 +Disabled\ jobs\ only=åªé¡¯ç¤ºåœç”¨çš„工作 -Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=\u4F7F\u7528\u6B63\u898F\u8868\u793A\u5F0F\u5C07\u5DE5\u4F5C\u7D0D\u5165\u8996\u5716 -Jobs=\u5DE5\u4F5C -Regular\ expression=\u6B63\u898F\u8868\u793A\u5F0F +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=使用正è¦è¡¨ç¤ºå¼å°‡å·¥ä½œç´å…¥è¦–圖 +Jobs=工作 +Regular\ expression=æ­£è¦è¡¨ç¤ºå¼ -Add\ Job\ Filter=\u65b0\u589e\u4f5c\u696d\u904e\u6ffe\u689d\u4ef6 +Add\ Job\ Filter=新增作業éŽæ¿¾æ¢ä»¶ -Columns=\u6B04\u4F4D -Add\ column=\u65B0\u589E\u6B04\u4F4D +Columns=æ¬„ä½ +Add\ column=æ–°å¢žæ¬„ä½ diff --git a/core/src/main/resources/hudson/model/ListView/newJobButtonBar_bg.properties b/core/src/main/resources/hudson/model/ListView/newJobButtonBar_bg.properties index 9df22d3d0d87..02d8170c64b3 100644 --- a/core/src/main/resources/hudson/model/ListView/newJobButtonBar_bg.properties +++ b/core/src/main/resources/hudson/model/ListView/newJobButtonBar_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Add\ to\ current\ view=\ - \u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043a\u044a\u043c \u0442\u0435\u043a\u0443\u0449\u0438\u044f \u0438\u0437\u0433\u043b\u0435\u0434 + ДобавÑне към Ñ‚ÐµÐºÑƒÑ‰Ð¸Ñ Ð¸Ð·Ð³Ð»ÐµÐ´ diff --git a/core/src/main/resources/hudson/model/ListView/newJobButtonBar_de.properties b/core/src/main/resources/hudson/model/ListView/newJobButtonBar_de.properties index d2722d5b9704..efb83db9405d 100644 --- a/core/src/main/resources/hudson/model/ListView/newJobButtonBar_de.properties +++ b/core/src/main/resources/hudson/model/ListView/newJobButtonBar_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ to\ current\ view=Zur aktuellen Ansicht hinzuf\u00FCgen +Add\ to\ current\ view=Zur aktuellen Ansicht hinzufügen diff --git a/core/src/main/resources/hudson/model/ListView/newJobButtonBar_it.properties b/core/src/main/resources/hudson/model/ListView/newJobButtonBar_it.properties index 111fdabcf269..832687170619 100644 --- a/core/src/main/resources/hudson/model/ListView/newJobButtonBar_it.properties +++ b/core/src/main/resources/hudson/model/ListView/newJobButtonBar_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/ListView/newJobButtonBar_pt_BR.properties b/core/src/main/resources/hudson/model/ListView/newJobButtonBar_pt_BR.properties index ca64e6a7086e..b51beead309f 100644 --- a/core/src/main/resources/hudson/model/ListView/newJobButtonBar_pt_BR.properties +++ b/core/src/main/resources/hudson/model/ListView/newJobButtonBar_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ to\ current\ view=Adicionar\ a\ vis\u00E3o\ atual +Add\ to\ current\ view=Adicionar\ a\ visão\ atual diff --git a/core/src/main/resources/hudson/model/ListView/newJobButtonBar_ru.properties b/core/src/main/resources/hudson/model/ListView/newJobButtonBar_ru.properties index 2b9db53f4c61..87e8a28d538b 100644 --- a/core/src/main/resources/hudson/model/ListView/newJobButtonBar_ru.properties +++ b/core/src/main/resources/hudson/model/ListView/newJobButtonBar_ru.properties @@ -1 +1 @@ -Add\ to\ current\ view=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043a \u0442\u0435\u043a\u0443\u0449\u0435\u043c\u0443 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044e +Add\ to\ current\ view=Добавить к текущему предÑтавлению diff --git a/core/src/main/resources/hudson/model/ListView/newJobButtonBar_sr.properties b/core/src/main/resources/hudson/model/ListView/newJobButtonBar_sr.properties index ff4f4a4f2740..156d790ab844 100644 --- a/core/src/main/resources/hudson/model/ListView/newJobButtonBar_sr.properties +++ b/core/src/main/resources/hudson/model/ListView/newJobButtonBar_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Add\ to\ current\ view=\u0414\u043E\u0434\u0430\u0458 \u043D\u0430 \u043E\u0432\u0430\u0458 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 +Add\ to\ current\ view=Додај на овај преглед diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_bg.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_bg.properties index 4db2531bb9f4..6019b41ef09a 100644 --- a/core/src/main/resources/hudson/model/ListView/newViewDetail_bg.properties +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_bg.properties @@ -23,5 +23,5 @@ # \ # Shows items in a simple list format. You can choose which jobs are to be displayed in which view. blurb=\ - \u0418\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u043e\u0431\u0435\u043a\u0442\u0438\u0442\u0435 \u043a\u0430\u0442\u043e \u0441\u043f\u0438\u0441\u044a\u043a. \u0412\u0438\u0435 \u0440\u0435\u0448\u0430\u0432\u0430\u0442\u0435 \u043a\u043e\u0438 \u0437\u0430\u0434\u0430\u043d\u0438\u044f \u0432 \u043a\u043e\u0438 \u0438\u0437\u0433\u043b\u0435\u0434\u0438 \u0434\u0430\ - \u0441\u0435 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u0442. + Извеждане на обектите като ÑпиÑък. Вие решавате кои Ð·Ð°Ð´Ð°Ð½Ð¸Ñ Ð² кои изгледи да\ + Ñе показват. diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_da.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_da.properties index 98535a2a6cdb..2afd607d83ba 100644 --- a/core/src/main/resources/hudson/model/ListView/newViewDetail_da.properties +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Viser jobs i et simpelt listeformat. Du kan v\u00e6lge hvilke jobs skal vises i hvilken visning. +blurb=Viser jobs i et simpelt listeformat. Du kan vælge hvilke jobs skal vises i hvilken visning. diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_de.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_de.properties index ecf2d52cfd5a..1afcc1947682 100644 --- a/core/src/main/resources/hudson/model/ListView/newViewDetail_de.properties +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_de.properties @@ -1,3 +1,3 @@ blurb=\ - Zeigt Jobs in einem einfachen Listenformat an. Sie können definieren, \ + Zeigt Jobs in einem einfachen Listenformat an. Sie können definieren, \ welche Jobs in welcher Ansicht anzeigt werden. diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_es.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_es.properties index 0f6e2cb44c0b..d3e1838f963f 100644 --- a/core/src/main/resources/hudson/model/ListView/newViewDetail_es.properties +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_es.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. blurb=\ - Mostrar projectos como una lista simple. Puedes elegir qué proyectos mostrar en cada vista. + Mostrar projectos como una lista simple. Puedes elegir qué proyectos mostrar en cada vista. diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_fr.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_fr.properties index 086460f0ebed..b00f978ff6a5 100644 --- a/core/src/main/resources/hudson/model/ListView/newViewDetail_fr.properties +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_fr.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. blurb=\ - Montre les jobs dans une simple liste. Vous pouvez choisir les jobs à afficher dans chaque vue. + Montre les jobs dans une simple liste. Vous pouvez choisir les jobs à afficher dans chaque vue. diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_it.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_it.properties index 4e7a9f8e79d2..320e36f4cbd4 100644 --- a/core/src/main/resources/hudson/model/ListView/newViewDetail_it.properties +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,5 +21,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Visualizza gli elementi in formato "elenco semplice". È possibile \ +blurb=Visualizza gli elementi in formato "elenco semplice". È possibile \ selezionare i processi da visualizzare in ogni vista. diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_ja.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_ja.properties index 4cbab29349c6..55a16933695d 100644 --- a/core/src/main/resources/hudson/model/ListView/newViewDetail_ja.properties +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_ja.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. blurb=\ - \u30B8\u30E7\u30D6\u3092\u30B7\u30F3\u30D7\u30EB\u306A\u4E00\u89A7\u3067\u8868\u793A\u3057\u307E\u3059\u3002\u3069\u306E\u30B8\u30E7\u30D6\u3092\u3069\u306E\u30D3\u30E5\u30FC\u306B\u8868\u793A\u3059\u308B\u304B\u9078\u629E\u3067\u304D\u307E\u3059\u3002 + ジョブをシンプルãªä¸€è¦§ã§è¡¨ç¤ºã—ã¾ã™ã€‚ã©ã®ã‚¸ãƒ§ãƒ–ã‚’ã©ã®ãƒ“ューã«è¡¨ç¤ºã™ã‚‹ã‹é¸æŠžã§ãã¾ã™ã€‚ diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_ko.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_ko.properties index 3b34885b39e4..e9a8bb3072fc 100644 --- a/core/src/main/resources/hudson/model/ListView/newViewDetail_ko.properties +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\uB2E8\uC21C \uBAA9\uB85D \uD615\uC2DD\uC73C\uB85C \uC791\uC5C5\uC744 \uBCF4\uC5EC\uC90C. \uC870\uD68C\uC5D0 \uD45C\uC2DC\uB420 \uC791\uC5C5\uC744 \uC120\uD0DD\uD560 \uC218 \uC788\uC74C. +blurb=단순 ëª©ë¡ í˜•ì‹ìœ¼ë¡œ ìž‘ì—…ì„ ë³´ì—¬ì¤Œ. ì¡°íšŒì— í‘œì‹œë  ìž‘ì—…ì„ ì„ íƒí•  수 있ìŒ. diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_lt.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_lt.properties index a9d6133e99eb..42687da07f39 100644 --- a/core/src/main/resources/hudson/model/ListView/newViewDetail_lt.properties +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_lt.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -blurb=Parodo elementus paprastame s\u0105ra\u0161e. J\u016Bs galite pasirinkti kokias u\u017Eduotis kokiame vaizde rodyti. +blurb=Parodo elementus paprastame sÄ…raÅ¡e. JÅ«s galite pasirinkti kokias užduotis kokiame vaizde rodyti. diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_lv.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_lv.properties index 8c943b60606b..74e6ea244847 100644 --- a/core/src/main/resources/hudson/model/ListView/newViewDetail_lv.properties +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Att\u0113lo lietas k\u0101 vienk\u0101r\u0161u sarakstu. J\u016Bs varat izbv\u0113l\u0113ties, kurus darbus atr\u0101d\u012Bt attiec\u012Bgaj\u0101 skat\u0101. +blurb=AttÄ“lo lietas kÄ vienkÄrÅ¡u sarakstu. JÅ«s varat izbvÄ“lÄ“ties, kurus darbus atrÄdÄ«t attiecÄ«gajÄ skatÄ. diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_pl.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_pl.properties index e636ae3cd6da..2b352162c883 100644 --- a/core/src/main/resources/hudson/model/ListView/newViewDetail_pl.properties +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Prezentuje elementy w formacie prostej listy. Mo\u017Cesz wybra\u0107 jakie zadania maj\u0105 by\u0107 wy\u015Bwietlane w widoku. +blurb=Prezentuje elementy w formacie prostej listy. Możesz wybrać jakie zadania majÄ… być wyÅ›wietlane w widoku. diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_pt_BR.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_pt_BR.properties index 724b8b155e26..a1d4ae68c970 100644 --- a/core/src/main/resources/hudson/model/ListView/newViewDetail_pt_BR.properties +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Mostrar as tarefas em uma lista simples. Voc\u00EA pode escolher quais tarefas ser\u00E3o listadas. +blurb=Mostrar as tarefas em uma lista simples. Você pode escolher quais tarefas serão listadas. diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_ru.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_ru.properties index 142017313d2c..c27a2fe71914 100644 --- a/core/src/main/resources/hudson/model/ListView/newViewDetail_ru.properties +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\u041F\u043E\u043A\u0430\u0437\u044B\u0432\u0430\u0435\u0442 \u0437\u0430\u0434\u0430\u0447\u0438 \u0432 \u0432\u0438\u0434\u0435 \u043E\u0431\u044B\u0447\u043D\u043E\u0433\u043E \u0441\u043F\u0438\u0441\u043A\u0430. \u0412\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0432\u044B\u0431\u0440\u0430\u0442\u044C \u0437\u0430\u0434\u0430\u0447\u0438 \u0434\u043B\u044F \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u044F \u0432 \u0437\u0430\u0434\u0430\u043D\u043D\u043E\u043C \u043F\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043B\u0435\u043D\u0438\u0438. +blurb=Показывает задачи в виде обычного ÑпиÑка. Ð’Ñ‹ можете выбрать задачи Ð´Ð»Ñ Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð² заданном предÑтавлении. diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_sr.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_sr.properties index 93393667152b..9fd95b49c4a5 100644 --- a/core/src/main/resources/hudson/model/ListView/newViewDetail_sr.properties +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -blurb=\u041F\u043E\u043A\u0430\u0437\u0443\u0458\u0435 \u0437\u0430\u0434\u0430\u0442\u043A\u0435 \u0443 \u043E\u0431\u043B\u0438\u043A\u0443 \u043E\u0431\u0438\u0447\u043D\u0435 \u043B\u0438\u0441\u0442\u0435. \u041C\u043E\u0436\u0435\u0442\u0435 \u043E\u0434\u0430\u0431\u0440\u0430\u0442\u0438 \u0437\u0430\u0434\u0430\u0442\u043A\u0435 \u0437\u0430 \u043F\u0440\u0438\u043A\u0430\u0437\u0438\u0432\u0430\u045A\u0435 \u0443 \u043D\u0435\u043A\u043E\u043C \u043F\u0440\u0438\u043A\u0430\u0437\u0443. +blurb=Показује задатке у облику обичне лиÑте. Можете одабрати задатке за приказивање у неком приказу. diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_sv_SE.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_sv_SE.properties index a6a706b13b8a..53670ab729b8 100644 --- a/core/src/main/resources/hudson/model/ListView/newViewDetail_sv_SE.properties +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Visar jobb i en enkel lista. Du kan v\u00E4lja vilka jobb som ska visas. +blurb=Visar jobb i en enkel lista. Du kan välja vilka jobb som ska visas. diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_zh_TW.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_zh_TW.properties index 7a1855f02956..8d2e86b41e5b 100644 --- a/core/src/main/resources/hudson/model/ListView/newViewDetail_zh_TW.properties +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_zh_TW.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. blurb=\ - \u4ee5\u6700\u7c21\u55ae\u7684\u6e05\u55ae\u65b9\u5f0f\u986f\u793a\u9805\u76ee\u3002\u60a8\u53ef\u4ee5\u6c7a\u5b9a\u54ea\u4e9b\u4f5c\u696d\u8981\u5728\u4ec0\u9ebc\u8996\u666f\u4e2d\u51fa\u73fe\u3002 + 以最簡單的清單方å¼é¡¯ç¤ºé …目。您å¯ä»¥æ±ºå®šå“ªäº›ä½œæ¥­è¦åœ¨ä»€éº¼è¦–景中出ç¾ã€‚ diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_bg.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_bg.properties index b1a4f086134a..2a14d907bf90 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_bg.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_bg.properties @@ -21,57 +21,57 @@ # THE SOFTWARE. Long=\ - \u0414\u044a\u043b\u044a\u0433 + Дълъг Medium=\ - \u0421\u0440\u0435\u0434\u0435\u043d + Среден Short=\ - \u041a\u0440\u0430\u0442\u044a\u043a + Кратък title=\ - \u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u043d\u0430 \u043d\u0430\u0442\u043e\u0432\u0430\u0440\u0432\u0430\u043d\u0435\u0442\u043e: {0} + СтатиÑтика на натоварването: {0} Load\ statistics\ graph=\ - \u0413\u0440\u0430\u0444\u0438\u043a\u0430 \u043d\u0430 \u043d\u0430\u0442\u043e\u0432\u0430\u0440\u0432\u0430\u043d\u0435\u0442\u043e + Графика на натоварването Timespan=\ - \u0412\u0440\u0435\u043c\u0435\u0432\u0438 \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d + Времеви диапазон blurb=\ - \u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430\u0442\u0430 \u043d\u0430 \u043d\u0430\u0442\u043e\u0432\u0430\u0440\u0432\u0430\u043d\u0435\u0442\u043e \u043f\u0440\u043e\u0441\u043b\u0435\u0434\u044f\u0432\u0430 \u0447\u0435\u0442\u0438\u0440\u0438 \u043a\u043b\u044e\u0447\u043e\u0432\u0438 \u043c\u0435\u0442\u0440\u0438\u043a\u0438 \u043d\u0430\ - \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0440\u0435\u0441\u0443\u0440\u0441\u0438:\ + СтатиÑтиката на натоварването проÑледÑва четири ключови метрики на\ + използването на реÑурÑи:\
    \ -
    \u0411\u0440\u043e\u0439 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430\u0449\u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0438 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f (\u0432\u0441\u0438\u0447\u043a\u0438)
    \ +
    Брой изпълнÑващи процеÑи на Ð»Ð¸Ð½Ð¸Ñ (вÑички)
    \
    \ - \u0417\u0430 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440: \u0430\u043a\u043e \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u044a\u0442 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f, \u0442\u043e\u0432\u0430 \u0435 \u0431\u0440\u043e\u044f\u0442 \u043d\u0430 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430\u0449\u0438\u0442\u0435 \u043f\u0440\u043e\u0446\u0435\u0441\u0438\ - \u043d\u0430 \u043d\u0435\u0433\u043e. \u0410\u043a\u043e \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u044a\u0442 \u043d\u0435 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f, \u0447\u0438\u0441\u043b\u043e\u0442\u043e \u0435 0.
    \ - \u0417\u0430 \u0435\u0442\u0438\u043a\u0435\u0442: \u0442\u043e\u0432\u0430 \u0435 \u0441\u0431\u043e\u0440\u044a\u0442 \u043e\u0442 \u0432\u0441\u0438\u0447\u043a\u0438 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430\u0449\u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0438 \u043e\u0442 \u0432\u0441\u0438\u0447\u043a\u0438 \u043a\u043e\u043c\u043f\u044e\u0442\u0440\u0438 \u043d\u0430\ - \u043b\u0438\u043d\u0438\u044f \u0441 \u0442\u043e\u0437\u0438 \u0435\u0442\u0438\u043a\u0435\u0442.
    \ - \u0417\u0430 \u0446\u0435\u043b\u0438\u044f \u043a\u043b\u044a\u0441\u0442\u044a\u0440 \u043d\u0430 Jenkins: \u0442\u043e\u0432\u0430 \u0435 \u0441\u0431\u043e\u0440\u044a\u0442 \u043e\u0442 \u0432\u0441\u0438\u0447\u043a\u0438 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430\u0449\u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0438 \u043e\u0442\ - \u0432\u0441\u0438\u0447\u043a\u0438 \u043a\u043e\u043c\u043f\u044e\u0442\u0440\u0438 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f \u0432 \u0442\u0430\u0437\u0438 \u0438\u043d\u0441\u0442\u0430\u043b\u0430\u0446\u0438\u044f \u043d\u0430 Jenkins.
    \ - \u0422\u0430\u0437\u0438 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 \u0441\u0435 \u043f\u0440\u043e\u043c\u0435\u043d\u044f \u043f\u0440\u0438 \u043f\u0440\u043e\u043c\u0435\u043d\u0438 \u043d\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435 \u0438 \u043f\u0440\u0438 \u0438\u0437\u043b\u0438\u0437\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043c\u043f\u044e\u0442\u0440\u0438\ - \u0438\u0437\u0432\u044a\u043d \u043b\u0438\u043d\u0438\u044f.\ + За компютър: ако компютърът е на линиÑ, това е броÑÑ‚ на изпълнÑващите процеÑи\ + на него. Ðко компютърът не е на линиÑ, чиÑлото е 0.
    \ + За етикет: това е Ñборът от вÑички изпълнÑващи процеÑи от вÑички компютри на\ + Ð»Ð¸Ð½Ð¸Ñ Ñ Ñ‚Ð¾Ð·Ð¸ етикет.
    \ + За Ñ†ÐµÐ»Ð¸Ñ ÐºÐ»ÑŠÑÑ‚ÑŠÑ€ на Jenkins: това е Ñборът от вÑички изпълнÑващи процеÑи от\ + вÑички компютри на Ð»Ð¸Ð½Ð¸Ñ Ð² тази инÑÑ‚Ð°Ð»Ð°Ñ†Ð¸Ñ Ð½Ð° Jenkins.
    \ + Тази ÑтойноÑÑ‚ Ñе Ð¿Ñ€Ð¾Ð¼ÐµÐ½Ñ Ð¿Ñ€Ð¸ промени на наÑтройките и при излизане на компютри\ + извън линиÑ.\
    \ -
    \u0411\u0440\u043e\u0439 \u0437\u0430\u0435\u0442\u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0438
    \ +
    Брой заети процеÑи
    \
    \ - \u0422\u043e\u0437\u0438 \u0431\u0440\u043e\u0439 \u043e\u0442\u0440\u0430\u0437\u044f\u0432\u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0438\u0442\u0435 (\u0438\u0437\u043c\u0435\u0436\u0434\u0443 \u0432\u0441\u0438\u0447\u043a\u0438), \u043a\u043e\u0438\u0442\u043e \u0432 \u043c\u043e\u043c\u0435\u043d\u0442\u0430\ - \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u0442. \u041e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435\u0442\u043e \u043d\u0430 \u0442\u043e\u0437\u0438 \u0431\u0440\u043e\u0439 \u043a\u044a\u043c \u0433\u043e\u0440\u043d\u0438\u044f \u0434\u0430\u0432\u0430 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u044f\u0442\u0430 \u043d\u0430\ - \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0438\u0442\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u0438. \u0410\u043a\u043e \u0432\u0441\u0438\u0447\u043a\u0438 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430\u0449\u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0438 \u0441\u0430 \u0437\u0430\u0435\u0442\u0438 \u043f\u0440\u0435\u043a\u0430\u043b\u0435\u043d\u043e \u0447\u0435\u0441\u0442\u043e,\ - \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043e\u0449\u0435 \u043c\u0430\u0448\u0438\u043d\u0438 \u043a\u044a\u043c \u043a\u043b\u044a\u0441\u0442\u044a\u0440\u0430 \u043d\u0430 Jenkins.\ + Този брой отразÑва процеÑите (измежду вÑички), които в момента\ + изграждат. Отношението на този брой към Ð³Ð¾Ñ€Ð½Ð¸Ñ Ð´Ð°Ð²Ð° пропорциÑта на\ + използваните реÑурÑи. Ðко вÑички изпълнÑващи процеÑи Ñа заети прекалено чеÑто,\ + Ñ‚Ñ€Ñбва да добавите още машини към клъÑтъра на Jenkins.\
    \ -
    \u0411\u0440\u043e\u0439 \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0438
    \ +
    Брой Ñвободни процеÑи
    \
    \ - \u0422\u043e\u0437\u0438 \u0431\u0440\u043e\u0439 \u043e\u0442\u0440\u0430\u0437\u044f\u0432\u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0438\u0442\u0435 (\u0438\u0437\u043c\u0435\u0436\u0434\u0443 \u0432\u0441\u0438\u0447\u043a\u0438), \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432 \u0441\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\ - \u0437\u0430\u043f\u043e\u0447\u043d\u0430\u0442 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435. \u041e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435\u0442\u043e \u043d\u0430 \u0442\u043e\u0437\u0438 \u0431\u0440\u043e\u0439 \u043a\u044a\u043c \u0433\u043e\u0440\u043d\u0438\u044f \u0434\u0430\u0432\u0430 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u044f\u0442\u0430 \u043d\u0430\ - \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u0438 \u0440\u0435\u0441\u0443\u0440\u0441\u0438. \u0410\u043a\u043e \u043d\u044f\u043c\u0430 \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u0438 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430\u0449\u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0438 \u043f\u0440\u0435\u043a\u0430\u043b\u0435\u043d\u043e \u0447\u0435\u0441\u0442\u043e,\ - \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043e\u0449\u0435 \u043c\u0430\u0448\u0438\u043d\u0438 \u043a\u044a\u043c \u043a\u043b\u044a\u0441\u0442\u044a\u0440\u0430 \u043d\u0430 Jenkins.\ + Този брой отразÑва процеÑите (измежду вÑички), които Ñа в ÑÑŠÑтоÑние да\ + започнат изграждане. Отношението на този брой към Ð³Ð¾Ñ€Ð½Ð¸Ñ Ð´Ð°Ð²Ð° пропорциÑта на\ + Ñвободни реÑурÑи. Ðко нÑма Ñвободни изпълнÑващи процеÑи прекалено чеÑто,\ + Ñ‚Ñ€Ñбва да добавите още машини към клъÑтъра на Jenkins.\
    \ -
    \u0414\u044a\u043b\u0436\u0438\u043d\u0430 \u043d\u0430 \u043e\u043f\u0430\u0448\u043a\u0430\u0442\u0430
    \ +
    Дължина на опашката
    \
    \ - \u0422\u043e\u0432\u0430 \u0435 \u0431\u0440\u043e\u044f\u0442 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0438\u0442\u0435 \u0432 \u043e\u043f\u0430\u0448\u043a\u0430\u0442\u0430 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435, \u043a\u043e\u0438\u0442\u043e \u0438\u0437\u0447\u0430\u043a\u0432\u0430\u0442 \u0441\u0432\u043e\u0431\u043e\u0434\u0435\u043d\ - \u043f\u0440\u043e\u0446\u0435\u0441 (\u043d\u0430 \u0442\u043e\u0437\u0438 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440 \u0438\u043b\u0438 \u0441 \u0442\u043e\u0437\u0438 \u0435\u0442\u0438\u043a\u0435\u0442, \u0438\u043b\u0438 \u043a\u044a\u0434\u0435\u0442\u043e \u0438 \u0434\u0430 \u0435 \u0432 \u043a\u043b\u044a\u0441\u0442\u044a\u0440\u0430 \u043d\u0430\ - Jenkins). \u0422\u043e\u0432\u0430 \u043d\u0435 \u0432\u043a\u043b\u044e\u0447\u0432\u0430 \u0437\u0430\u0434\u0430\u0447\u0438, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432 \u0442\u0438\u0445 \u043f\u0435\u0440\u0438\u043e\u0434, \u043a\u0430\u043a\u0442\u043e \u0438 \u0437\u0430\u0434\u0430\u0447\u0438\u0442\u0435,\ - \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0432 \u043e\u043f\u0430\u0448\u043a\u0430\u0442\u0430, \u0437\u0430\u0449\u043e\u0442\u043e \u0438\u0437\u0447\u0430\u043a\u0432\u0430\u0442 \u043f\u0440\u0435\u0434\u0438\u0448\u043d\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f. \u0410\u043a\u043e \u0431\u0440\u043e\u044f\u0442 \u043d\u0430\u0434\u0432\u0438\u0448\u0438\ - 0, Jenkins \u0449\u0435 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430 \u043f\u043e\u0432\u0435\u0447\u0435 \u0437\u0430\u0434\u0430\u0447\u0438, \u0430\u043a\u043e \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043e\u0449\u0435 \u043c\u0430\u0448\u0438\u043d\u0438 \u043a\u044a\u043c \u043a\u043b\u044a\u0441\u0442\u044a\u0440\u0430.\ + Това е броÑÑ‚ на задачите в опашката за изграждане, които изчакват Ñвободен\ + Ð¿Ñ€Ð¾Ñ†ÐµÑ (на този компютър или Ñ Ñ‚Ð¾Ð·Ð¸ етикет, или където и да е в клъÑтъра на\ + Jenkins). Това не включва задачи, които Ñа в тих период, както и задачите,\ + които Ñа в опашката, защото изчакват предишни изгражданиÑ. Ðко броÑÑ‚ надвиши\ + 0, Jenkins ще изпълнÑва повече задачи, ако добавите още машини към клъÑтъра.\
    \
    \ -

    \u0411\u0435\u043b\u0435\u0436\u043a\u0430: \u0421\u0431\u043e\u0440\u044a\u0442 \u043d\u0430 \u0437\u0430\u0435\u0442\u0438\u0442\u0435 \u0438 \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u0438\u0442\u0435 \u043f\u0440\u043e\u0446\u0435\u0441\u0438 \u043d\u0435 \u0432\u0438\u043d\u0430\u0433\u0438 \u0435 \u0440\u0430\u0432\u0435\u043d \u043d\u0430\ - \u0431\u0440\u043e\u044f \u043d\u0430 \u043d\u0430\u043b\u0438\u0447\u043d\u0438\u0442\u0435 \u043f\u0440\u043e\u0446\u0435\u0441\u0438, \u0437\u0430\u0449\u043e\u0442\u043e \u043d\u044f\u043a\u043e\u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0438 \u043c\u043e\u0436\u0435 \u0434\u0430 \u043d\u0435 \u043f\u0440\u0438\u0435\u043c\u0430\u0442 \u0437\u0430\u0434\u0430\u0447\u0438 \u0437\u0430\ - \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438 \u0434\u0430 \u043d\u0435 \u0441\u0435 \u0431\u0440\u043e\u044f\u0442 \u043d\u0438\u0442\u043e \u0437\u0430\u0435\u0442\u0438, \u043d\u0438\u0442\u043e \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u0438.

    \ -

    \u0413\u0440\u0430\u0444\u0438\u043a\u0430\u0442\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 \u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446 \u0441 \u0435\u043a\u0441\u043f\u043e\u043d\u0435\u043d\u0446\u0438\u0430\u043b\u043d\u043e \u0437\u0430\u0433\u043b\u0430\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u043e\ - \u0441\u044a\u0431\u0438\u0440\u0430\u043d\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u0438. \u041e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0438\u044f\u0442\u0430 \u0441\u0430 \u043d\u0430 \u0432\u0441\u0435\u043a\u0438 10 \u0441\u0435\u043a\u0443\u043d\u0434\u0438, 1 \u043c\u0438\u043d\u0443\u0442\u0430 \u0438 1 \u0447\u0430\u0441.

    +

    Бележка: Сборът на заетите и Ñвободните процеÑи не винаги е равен на\ + Ð±Ñ€Ð¾Ñ Ð½Ð° наличните процеÑи, защото нÑкои процеÑи може да не приемат задачи за\ + изграждане и да не Ñе броÑÑ‚ нито заети, нито Ñвободни.

    \ +

    Графиката използва прозорец Ñ ÐµÐºÑпоненциално заглаждане на периодично\ + Ñъбираните данни. ОбновÑваниÑта Ñа на вÑеки 10 Ñекунди, 1 минута и 1 чаÑ.

    diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_da.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_da.properties index 1420b5647ab6..5c09ab5bdcf3 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_da.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_da.properties @@ -20,36 +20,36 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=Indl\u00e6s statistikker: {0} +title=Indlæs statistikker: {0} Short=Kort -Load\ statistics\ graph=Indl\u00e6s statistikgraf +Load\ statistics\ graph=Indlæs statistikgraf Medium=Mellem Timespan=Tidsperiode Long=Lang blurb=\ -Belastningsstatistikkerne overv\u00e5ger tre hovedmetrikker omkring ressourceudnyttelse: \ +Belastningsstatistikkerne overvåger tre hovedmetrikker omkring ressourceudnyttelse: \
    \
    Det totale antal afviklere
    \
    \ For en computer er dette antallet af afviklere den computer har. \ -For en etiket er dette summen af alle afviklere, p\u00e5 alle computere, med denne etiket. \ -For hele Jenkins er dette summen af alle afviklere p\u00e5 alle maskiner i denne Jenkins installation. \ -Udover igennem konfigurations\u00e6ndringer kan denne v\u00e6rdi \u00e6ndre sig n\u00e5r slaver g\u00e5r offline. \ +For en etiket er dette summen af alle afviklere, på alle computere, med denne etiket. \ +For hele Jenkins er dette summen af alle afviklere på alle maskiner i denne Jenkins installation. \ +Udover igennem konfigurationsændringer kan denne værdi ændre sig når slaver går offline. \
    \
    Antal afviklere i brug
    \
    \ -Denne linje viser antallet af afviklere (som delm\u00e6ngde af de ovenfor optalte) \ -der udf\u00f8rer byg. Forholdet imellem dette antal og summen af afviklere giver dig et indtryk af \ -ressourceudnyttelsen. Hvis alle dine afviklere er optagede i l\u00e6ngere perioder b\u00f8r \ -du overveje at tilf\u00f8je flere computere til din Jenkins klynge. \ +Denne linje viser antallet af afviklere (som delmængde af de ovenfor optalte) \ +der udfører byg. Forholdet imellem dette antal og summen af afviklere giver dig et indtryk af \ +ressourceudnyttelsen. Hvis alle dine afviklere er optagede i længere perioder bør \ +du overveje at tilføje flere computere til din Jenkins klynge. \
    \ -
    K\u00f8 l\u00e6ngde
    \ +
    Kø længde
    \
    \ -Dette er antallet af jobs i byggek\u00f8en der venter p\u00e5 en tilg\u00e6ngelig afvikler (p\u00e5 denne computer, \ +Dette er antallet af jobs i byggekøen der venter på en tilgængelig afvikler (på denne computer, \ denne etiket, eller denne Jenkins, respektivt.) \ Dette inkluderer ikke antallet af jobs der er i stilleperioden, det inkluderer heller ikke \ -jobs der er i k\u00f8 fordi tidligere k\u00f8rsler af samme jobs stadig er i gang. \ -Hvis denne linje g\u00e5r over 0 betyder det at Jenkins kan k\u00f8re flere byg hvis du tilf\u00f8jer flere computere. \ +jobs der er i kø fordi tidligere kørsler af samme jobs stadig er i gang. \ +Hvis denne linje går over 0 betyder det at Jenkins kan køre flere byg hvis du tilføjer flere computere. \
    \
    \ Grafen er en eksponentiel moving average af de periodisk opsamlede data. \ diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_de.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_de.properties index eaf82240530c..0416af326a98 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_de.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_de.properties @@ -26,29 +26,29 @@ Short=Kurz Medium=Mittel Long=Lang blurb=\ - Die Auslastung mit Hilfe von drei Metriken überwacht: \ + Die Auslastung mit Hilfe von drei Metriken überwacht: \
    \
    Gesamtanzahl der Build-Prozessoren
    \
    Bei einem Rechner entspricht dies der Anzahl der Build-Prozessoren auf diesem Rechner. \ Bei einem Label entspricht dies der Summe aller Build-Prozessoren, welche diesem Label \ - zugewiesen sind. Für Jenkins insgesamt ist es die Summe über alle Rechner dieser \ - Jenkins-Installation. Dieser Wert kann sich verändern, wenn Agenten offline gehen.
    \ + zugewiesen sind. Für Jenkins insgesamt ist es die Summe über alle Rechner dieser \ + Jenkins-Installation. Dieser Wert kann sich verändern, wenn Agenten offline gehen.\ \ -
    Anzahl der beschäftigten Build-Prozessoren
    \ +
    Anzahl der beschäftigten Build-Prozessoren
    \
    Diese Kurve verfolgt (aus der oben angegebenen Gesamtanzahl) die Anzahl derjenigen \ - Build-Prozessoren, die Builds ausführen. Das Verhältnis dieser Zahl zur Gesamtzahl ist die \ - Ressourcenauslastung. Wenn alle Build-Prozessoren über längere Zeit beschäftigt sind, \ - sollten Sie in Betracht ziehen, weitere Rechner Ihrem Jenkins-Cluster hinzuzufügen.
    \ + Build-Prozessoren, die Builds ausführen. Das Verhältnis dieser Zahl zur Gesamtzahl ist die \ + Ressourcenauslastung. Wenn alle Build-Prozessoren über längere Zeit beschäftigt sind, \ + sollten Sie in Betracht ziehen, weitere Rechner Ihrem Jenkins-Cluster hinzuzufügen. \ \ -
    Länge der Warteschlange
    \ +
    Länge der Warteschlange
    \
    Dies ist die Anzahl an Jobs, die in der Warteschlange auf einen freien Build-Prozessor \ warten (jeweils auf diesem Rechner, in diesem Label, in der Jenkins-Instanz insgesamt). Jobs, \ - die sich in der Ruheperiode befinden, werden nicht mitgezählt, ebenso wie Jobs, die sich in \ - der Warteschlange befinden, weil bereits ein früher gestarteter Build dieses Jobs noch läuft. \ - Ein Wert über 0 bedeutet hier, dass Jenkins mehr Jobs bauen könnte, wenn Sie zusätzliche Rechner \ - Ihrem Jenkins-Cluster hinzufügen würden.
    \ + die sich in der Ruheperiode befinden, werden nicht mitgezählt, ebenso wie Jobs, die sich in \ + der Warteschlange befinden, weil bereits ein früher gestarteter Build dieses Jobs noch läuft. \ + Ein Wert über 0 bedeutet hier, dass Jenkins mehr Jobs bauen könnte, wenn Sie zusätzliche Rechner \ + Ihrem Jenkins-Cluster hinzufügen würden.\ \ \ - Das Diagramm stellt einen exponentiellen, gleitenden Durchschnitt regelmäßig erhobener \ + Das Diagramm stellt einen exponentiellen, gleitenden Durchschnitt regelmäßig erhobener \ Daten dar (jeweils alle 10 Sekunden, jede Minute und jede Stunde). diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_es.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_es.properties index 9c97d4eb70b3..1393793d1c5c 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_es.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_es.properties @@ -20,38 +20,38 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=Estadísticas de carga: {0} +title=Estadísticas de carga: {0} blurb=\ - Las estadísticas de carga hacen un seguimiento de la métrica de utilización de recursos:\ + Las estadísticas de carga hacen un seguimiento de la métrica de utilización de recursos:\
    \ -
    Número total de ejecutores
    \ +
    Número total de ejecutores
    \
    \ - Para un ordenador: es el numero de ejecutores para cada máquina. \ + Para un ordenador: es el numero de ejecutores para cada máquina. \ Para una etiqueta: es la suma de todos los ejecutores que comparten la etiqueta. \ - Para todo Jenkins: es la suma de todos los ejecutores de la instalación de Jenkins. \ - Este número cambia no sólo por cambios en la configuración, sino además cuando hay nodos que se ponen fuera de línea. \ + Para todo Jenkins: es la suma de todos los ejecutores de la instalación de Jenkins. \ + Este número cambia no sólo por cambios en la configuración, sino además cuando hay nodos que se ponen fuera de línea. \
    \ -
    Número de ejecutores ocupados
    \ +
    Número de ejecutores ocupados
    \
    \ - Esta línea representa el número de ejecutores, entro los contabilizados arriba, que están procesando trabajos. \ - El ratio de estos entre el total representa el rango de utilización de recursos. \ - Si todos los ejecutores estan ocupados durante mucho tiempo, considera la opción de añadir más nodos. \ + Esta línea representa el número de ejecutores, entro los contabilizados arriba, que están procesando trabajos. \ + El ratio de estos entre el total representa el rango de utilización de recursos. \ + Si todos los ejecutores estan ocupados durante mucho tiempo, considera la opción de añadir más nodos. \
    \ -
    Tamaño de la cola
    \ +
    Tamaño de la cola
    \
    \ Este es el numero de tareas que estan en la cola esperando por un ejecutor libre \ bien sea en este nodo, en esta etiqueta o en este Jenkins. \ - El número no incluye trabajos que estan en el periodo de gracia ni aquellos que estan en la \ + El número no incluye trabajos que estan en el periodo de gracia ni aquellos que estan en la \ cola porque hay ejecuciones del mismo proyecto activas. \ - Si esta línea supera el cero, significa que este Jenkins podría ejecutar mas trabajos añadiendo \ - más nodos.\ + Si esta línea supera el cero, significa que este Jenkins podría ejecutar mas trabajos añadiendo \ + más nodos.\
    \
    \ - El gráfico es exponencial calculando medias de los datos recogidos periódicamente. \ - Se hacen tomas de datos de 3 tipos: cada 10 segundos, cada minuto y cada hora, para los valores de intervalo pequeño, mediano y grande respectivamente. + El gráfico es exponencial calculando medias de los datos recogidos periódicamente. \ + Se hacen tomas de datos de 3 tipos: cada 10 segundos, cada minuto y cada hora, para los valores de intervalo pequeño, mediano y grande respectivamente. -Short=Pequeño +Short=Pequeño Long=Largo Timespan=Visualizar datos para valores de intervalo: Medium=Mediano -Load\ statistics\ graph=Cargar gráfico de estadísticas +Load\ statistics\ graph=Cargar gráfico de estadísticas diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_fi.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_fi.properties index 2df450165dec..f9e590cb5751 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_fi.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_fi.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Load\ statistics\ graph=Kuormituksen kuvaaja -Long=Pitk\u00E4 -Medium=Keskipitk\u00E4 +Long=Pitkä +Medium=Keskipitkä Short=Lyhyt Timespan=Aikajakso title=Kuormatilastot: {0} diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_fr.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_fr.properties index 5d7797028390..438efcd79098 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_fr.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_fr.properties @@ -20,38 +20,38 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=Statistiques de l''utilisation du système: {0} -Timespan=Durée +title=Statistiques de l''utilisation du système: {0} +Timespan=Durée Short=Courte Medium=Moyenne Load\ statistics\ graph=Graphique des statistiques de charge Long=Longue blurb=\ - Les statistiques d''utilisation du système permettre de garder trace de trois métriques de mesure de la charge: \ + Les statistiques d''utilisation du système permettre de garder trace de trois métriques de mesure de la charge: \
    \ -
    Nombre total d''exécuteurs
    \ +
    Nombre total d''exécuteurs
    \
    \ - Pour un ordinateur, il s''agit du nombre d''exécuteurs de cet ordinateur. \ - Pour un libellé, cela correspond à la somme des exécuteurs sur tous les ordinateurs possédant ce libellé. \ - Pour Jenkins, il s''agit de la somme de tous les exécuteurs disponibles sur tous les ordinateurs rattachés à cette installation de Jenkins. \ - En dehors des changements de configuration, cette valeur peut également changer quand les agents se déconnectent. \ + Pour un ordinateur, il s''agit du nombre d''exécuteurs de cet ordinateur. \ + Pour un libellé, cela correspond à la somme des exécuteurs sur tous les ordinateurs possédant ce libellé. \ + Pour Jenkins, il s''agit de la somme de tous les exécuteurs disponibles sur tous les ordinateurs rattachés à cette installation de Jenkins. \ + En dehors des changements de configuration, cette valeur peut également changer quand les agents se déconnectent. \
    \ -
    Nombre d''exécuteurs occupés
    \ +
    Nombre d''exécuteurs occupés
    \
    \ - Cette ligne donne le nombre d''exécuteurs (parmi ceux comptés ci-dessus) \ - qui s''occupent des builds. Le ratio de ce nombre avec le nombre total d''exécuteurs \ - donne l''utilisation des ressources. Si tous vos exécuteurs sont occupés pendant une \ - période prolongée, pensez à ajouter plusieurs d''ordinateurs à votre cluster Jenkins.\ + Cette ligne donne le nombre d''exécuteurs (parmi ceux comptés ci-dessus) \ + qui s''occupent des builds. Le ratio de ce nombre avec le nombre total d''exécuteurs \ + donne l''utilisation des ressources. Si tous vos exécuteurs sont occupés pendant une \ + période prolongée, pensez à ajouter plusieurs d''ordinateurs à votre cluster Jenkins.\
    \
    Longueur de la file d''attente
    \
    \ - C''est le nombre de jobs qui sont dans la file des builds, en attente d''un exécuteur \ - disponible (respectivement pour cet ordinateur, pour ce libellé ou pour Jenkins en général). \ - Cela n''inclue pas les jobs qui sont dans la 'période silencieuse' (quiet period ou période \ - de délai), ni les jobs qui sont dans la file à cause de builds précédents toujours en cours. \ - Si cette ligne dépasse 0, cela signifie que Jenkins pourra lancer plus de builds en ajoutant des ordinateurs. \ + C''est le nombre de jobs qui sont dans la file des builds, en attente d''un exécuteur \ + disponible (respectivement pour cet ordinateur, pour ce libellé ou pour Jenkins en général). \ + Cela n''inclue pas les jobs qui sont dans la 'période silencieuse' (quiet period ou période \ + de délai), ni les jobs qui sont dans la file à cause de builds précédents toujours en cours. \ + Si cette ligne dépasse 0, cela signifie que Jenkins pourra lancer plus de builds en ajoutant des ordinateurs. \
    \
    \ - Ce graphe est une moyenne glissante exponentielle de données collectées périodiquement. \ - Les périodes de mise à jour sont respectivement toutes les 10 secondes, toutes les minutes \ + Ce graphe est une moyenne glissante exponentielle de données collectées périodiquement. \ + Les périodes de mise à jour sont respectivement toutes les 10 secondes, toutes les minutes \ et toutes les heures. diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_hu.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_hu.properties index 8e86540a1404..c92b2cb29c0e 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_hu.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_hu.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Load\ statistics\ graph=Terhel\u00E9si statisztika grafikon -Long=Hossz\u00FA -Medium=K\u00F6zepes -Short=R\u00F6vid -Timespan=Id\u0151tartam -title=Terhel\u00E9si statisztika: {0} +Load\ statistics\ graph=Terhelési statisztika grafikon +Long=Hosszú +Medium=Közepes +Short=Rövid +Timespan=IdÅ‘tartam +title=Terhelési statisztika: {0} diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_it.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_it.properties index 1f35d9dc7bd9..b743cb05b4e6 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_it.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -27,14 +27,14 @@ blurb=\
    \
    Numero di esecutori in linea
    \
    \ - Per un computer: se il computer è in linea, questo è il numero di \ - esecutori di cui dispone; se il computer non è in linea, questo numero \ - è pari a zero.
    \ - Per un''etichetta: questo numero è la somma di tutti gli esecutori su \ + Per un computer: se il computer è in linea, questo è il numero di \ + esecutori di cui dispone; se il computer non è in linea, questo numero \ + è pari a zero.
    \ + Per un''etichetta: questo numero è la somma di tutti gli esecutori su \ tutti i computer in linea con quest''etichetta.
    \ - Per tutto Jenkins: questo numero è la somma di tutti gli esecutori su \ + Per tutto Jenkins: questo numero è la somma di tutti gli esecutori su \ tutti i computer in linea di quest''installazione di Jenkins.
    \ - Oltre che a causa di modifiche alla configurazione, questo valore può \ + Oltre che a causa di modifiche alla configurazione, questo valore può \ variare anche quando degli agenti vanno non in linea.\
    \
    Numero di esecutori occupati
    \ @@ -43,34 +43,34 @@ blurb=\ sopra) che stanno eseguendo delle compilazioni. Il rapporto fra questo \ numero e il numero di esecutori in linea fornisce una misura \ dell''utilizzo delle risorse. Se tutti gli esecutori sono occupati per \ - un periodo di tempo prolungato, si consideri l''opportunità di \ - aggiungere più computer al cluster Jenkins.\ + un periodo di tempo prolungato, si consideri l''opportunità di \ + aggiungere più computer al cluster Jenkins.\ \
    Numero di esecutori disponibili
    \
    \ Questa riga tiene traccia del numero di esecutori (fra quelli in linea \ contati sopra) disponibili per l''esecuzione di compilazioni. Il \ rapporto fra questo numero e il numero totale di esecutori fornisce una \ - misura della disponibilità delle risorse. Se nessun esecutore è \ + misura della disponibilità delle risorse. Se nessun esecutore è \ disponibile per un periodo di tempo prolungato, si consideri \ - l''opportunità di aggiungere più computer al cluster Jenkins.\ + l''opportunità di aggiungere più computer al cluster Jenkins.\
    \
    Lunghezza coda
    \
    \ - Questo è il numero di processi nella coda di compilazione e in attesa \ + Questo è il numero di processi nella coda di compilazione e in attesa \ di un esecutore disponibile (rispettivamente su questo computer, con \ quest''etichetta o su questo cluster Jenkins). Il numero non include \ - i processi nel periodo di attesa né i processi in coda perché le \ + i processi nel periodo di attesa né i processi in coda perché le \ compilazioni precedenti sono ancora in corso. Se il valore su questa \ - riga diventa maggiore di 0, ciò significa che Jenkins eseguirà più \ - compilazioni se si aggiungono più computer.\ + riga diventa maggiore di 0, ciò significa che Jenkins eseguirà più \ + compilazioni se si aggiungono più computer.\
    \
    \

    Nota: il numero di esecutori occupati e il numero di esecutori \ - disponibili non è necessariamente uguale al numero di esecutori in linea in \ - quanto è possibile sospendere l''accettazione di compilazioni da parte \ - degli esecutori, per cui questi possono non essere né occupati né \ - disponibili.

    Il grafo è una media mobile esponenziale dei valori dei \ + disponibili non è necessariamente uguale al numero di esecutori in linea in \ + quanto è possibile sospendere l''accettazione di compilazioni da parte \ + degli esecutori, per cui questi possono non essere né occupati né \ + disponibili.

    Il grafo è una media mobile esponenziale dei valori dei \ dati raccolti periodicamente. I tre archi temporali sono aggiornati \ rispettivamente ogni dieci secondi, ogni minuto e ogni ora.

    Long=Lungo diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_ja.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_ja.properties index 1f906d8d9e99..c96bb2eac71c 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_ja.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_ja.properties @@ -20,34 +20,34 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=\u8CA0\u8377\u7D71\u8A08: {0} -Timespan=\u671F\u9593 -Short=\u77ED -Medium=\u4E2D -Long=\u9577 +title=è² è·çµ±è¨ˆ: {0} +Timespan=期間 +Short=短 +Medium=中 +Long=é•· blurb=\ - \u8CA0\u8377\u7D71\u8A08\u306F\u3001\u30EA\u30BD\u30FC\u30B9\u306E\u5229\u7528\u72B6\u6CC1\u306B\u95A2\u3059\u308B3\u3064\u306E\u30E1\u30C8\u30EA\u30AF\u30B9\u306E\u5909\u5316\u3092\u8A18\u9332\u3057\u307E\u3059\u3002: \ + è² è·çµ±è¨ˆã¯ã€ãƒªã‚½ãƒ¼ã‚¹ã®åˆ©ç”¨çŠ¶æ³ã«é–¢ã™ã‚‹3ã¤ã®ãƒ¡ãƒˆãƒªã‚¯ã‚¹ã®å¤‰åŒ–を記録ã—ã¾ã™ã€‚: \
    \ -
    \u30A8\u30B0\u30BC\u30AD\u30E5\u30FC\u30BF\u30FC\u7DCF\u6570
    \ +
    エグゼキューターç·æ•°
    \
    \ - \u30B3\u30F3\u30D4\u30E5\u30FC\u30BF\u30FC\u3067\u306F\u3001\u305D\u306E\u30B3\u30F3\u30D4\u30E5\u30FC\u30BF\u30FC\u306E\u30A8\u30B0\u30BC\u30AD\u30E5\u30FC\u30BF\u30FC\u306E\u6570\u3067\u3059\u3002 \ - \u30E9\u30D9\u30EB\u3067\u306F\u3001\u3053\u306E\u30E9\u30D9\u30EB\u3092\u6301\u3064\u3059\u3079\u3066\u306E\u30B3\u30F3\u30D4\u30E5\u30FC\u30BF\u30FC\u306E\u30A8\u30B0\u30BC\u30AD\u30E5\u30FC\u30BF\u30FC\u306E\u7DCF\u6570\u3067\u3059\u3002 \ - Jenkins\u5168\u4F53\u3067\u306F\u3001Jenkins\u304C\u7BA1\u7406\u3059\u308B\u3059\u3079\u3066\u306E\u30B3\u30F3\u30D4\u30E5\u30FC\u30BF\u30FC\u306E\u30A8\u30B0\u30BC\u30AD\u30E5\u30FC\u30BF\u30FC\u306E\u7DCF\u6570\u3067\u3059\u3002\ - \u8A2D\u5B9A\u306E\u5909\u66F4\u4EE5\u5916\u3067\u306F\u3001\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u304C\u30AA\u30D5\u30E9\u30A4\u30F3\u306B\u306A\u308B\u3068\u304D\u306B\u3082\u3053\u306E\u5024\u306F\u5909\u308F\u308A\u307E\u3059\u3002\ + コンピューターã§ã¯ã€ãã®ã‚³ãƒ³ãƒ”ューターã®ã‚¨ã‚°ã‚¼ã‚­ãƒ¥ãƒ¼ã‚¿ãƒ¼ã®æ•°ã§ã™ã€‚ \ + ラベルã§ã¯ã€ã“ã®ãƒ©ãƒ™ãƒ«ã‚’æŒã¤ã™ã¹ã¦ã®ã‚³ãƒ³ãƒ”ューターã®ã‚¨ã‚°ã‚¼ã‚­ãƒ¥ãƒ¼ã‚¿ãƒ¼ã®ç·æ•°ã§ã™ã€‚ \ + Jenkins全体ã§ã¯ã€JenkinsãŒç®¡ç†ã™ã‚‹ã™ã¹ã¦ã®ã‚³ãƒ³ãƒ”ューターã®ã‚¨ã‚°ã‚¼ã‚­ãƒ¥ãƒ¼ã‚¿ãƒ¼ã®ç·æ•°ã§ã™ã€‚\ + 設定ã®å¤‰æ›´ä»¥å¤–ã§ã¯ã€ã‚¨ãƒ¼ã‚¸ã‚§ãƒ³ãƒˆãŒã‚ªãƒ•ãƒ©ã‚¤ãƒ³ã«ãªã‚‹ã¨ãã«ã‚‚ã“ã®å€¤ã¯å¤‰ã‚ã‚Šã¾ã™ã€‚\
    \ -
    \u30D3\u30B8\u30FC\u30A8\u30B0\u30BC\u30AD\u30E5\u30FC\u30BF\u30FC\u6570
    \ +
    ビジーエグゼキューター数
    \
    \ - \u30D3\u30EB\u30C9\u3092\u5B9F\u884C\u3057\u3066\u3044\u308B\u30A8\u30B0\u30BC\u30AD\u30E5\u30FC\u30BF\u30FC\u306E\u6570\u3092\u8A18\u9332\u3057\u307E\u3059(\u4E0A\u8A18\u3067\u30AB\u30A6\u30F3\u30C8\u3057\u305F\u30A8\u30B0\u30BC\u30AD\u30E5\u30FC\u30BF\u30FC\u7DCF\u6570\u3092\u8D85\u3048\u308B\u3053\u3068\u306F\u3042\u308A\u307E\u305B\u3093\uFF09\u3002 \ - \u30A8\u30B0\u30BC\u30AD\u30E5\u30FC\u30BF\u30FC\u306E\u7DCF\u6570\u3068\u3053\u306E\u5024\u3092\u6BD4\u8F03\u3059\u308B\u3053\u3068\u3067\u3001\u30EA\u30BD\u30FC\u30B9\u306E\u5229\u7528\u72B6\u6CC1\u304C\u5206\u304B\u308A\u307E\u3059\u3002 \ - \u3082\u3057\u3001\u9577\u671F\u9593\u3059\u3079\u3066\u306E\u30A8\u30B0\u30BC\u30AD\u30E5\u30FC\u30BF\u30FC\u304C\u5B9F\u884C\u4E2D\u3067\u3042\u308C\u3070\u3001Jenkins\u306E\u30AF\u30E9\u30B9\u30BF\u30FC\u306B\u30B3\u30F3\u30D4\u30E5\u30FC\u30BF\u30FC\u3092\u8FFD\u52A0\u3059\u308B\u3053\u3068\u3082\u691C\u8A0E\u3057\u3066\u304F\u3060\u3055\u3044\u3002 \ + ビルドを実行ã—ã¦ã„るエグゼキューターã®æ•°ã‚’記録ã—ã¾ã™(上記ã§ã‚«ã‚¦ãƒ³ãƒˆã—ãŸã‚¨ã‚°ã‚¼ã‚­ãƒ¥ãƒ¼ã‚¿ãƒ¼ç·æ•°ã‚’超ãˆã‚‹ã“ã¨ã¯ã‚ã‚Šã¾ã›ã‚“)。 \ + エグゼキューターã®ç·æ•°ã¨ã“ã®å€¤ã‚’比較ã™ã‚‹ã“ã¨ã§ã€ãƒªã‚½ãƒ¼ã‚¹ã®åˆ©ç”¨çŠ¶æ³ãŒåˆ†ã‹ã‚Šã¾ã™ã€‚ \ + ã‚‚ã—ã€é•·æœŸé–“ã™ã¹ã¦ã®ã‚¨ã‚°ã‚¼ã‚­ãƒ¥ãƒ¼ã‚¿ãƒ¼ãŒå®Ÿè¡Œä¸­ã§ã‚ã‚Œã°ã€Jenkinsã®ã‚¯ãƒ©ã‚¹ã‚¿ãƒ¼ã«ã‚³ãƒ³ãƒ”ューターを追加ã™ã‚‹ã“ã¨ã‚‚検討ã—ã¦ãã ã•ã„。 \
    \ -
    \u30D3\u30EB\u30C9\u30AD\u30E5\u30FC\u9577
    \ +
    ビルドキュー長
    \
    \ - (\u30B3\u30F3\u30D4\u30E5\u30FC\u30BF\u30FC\u3001\u30E9\u30D9\u30EB\u3001Jenkins\u5404\u3005\u306B\u304A\u3044\u3066)\u5229\u7528\u53EF\u80FD\u306A\u30A8\u30B0\u30BC\u30AD\u30E5\u30FC\u30BF\u30FC\u3092\u5F85\u3063\u3066\u3044\u308B\u3001\u30D3\u30EB\u30C9\u30AD\u30E5\u30FC\u306B\u3042\u308B\u30B8\u30E7\u30D6\u306E\u6570\u3067\u3059\u3002\ - \u3053\u308C\u306F\u3001\u5F85\u6A5F\u6642\u9593\u4E2D\u306E\u30D3\u30EB\u30C9\u3084\u5148\u884C\u3059\u3079\u304D\u30D3\u30EB\u30C9\u304C\u51E6\u7406\u4E2D\u3067\u3042\u308B\u3088\u3046\u306A\u30D3\u30EB\u30C9\u306F\u542B\u307F\u307E\u305B\u3093\u3002\ - \u3082\u3057\u3001\u5E38\u306B0\u3092\u4E0A\u56DE\u3063\u3066\u3044\u308B\u306A\u3089\u3001\u3082\u3063\u3068\u30B3\u30F3\u30D4\u30E5\u30FC\u30BF\u30FC\u3092\u8FFD\u52A0\u3059\u308B\u3053\u3068\u3067\u3088\u308A\u591A\u304F\u306E\u30D3\u30EB\u30C9\u3092\u5B9F\u884C\u3067\u304D\u308B\u3068\u8A00\u3048\u307E\u3059\u3002\ + (コンピューターã€ãƒ©ãƒ™ãƒ«ã€Jenkinså„々ã«ãŠã„ã¦)利用å¯èƒ½ãªã‚¨ã‚°ã‚¼ã‚­ãƒ¥ãƒ¼ã‚¿ãƒ¼ã‚’å¾…ã£ã¦ã„ã‚‹ã€ãƒ“ルドキューã«ã‚るジョブã®æ•°ã§ã™ã€‚\ + ã“ã‚Œã¯ã€å¾…機時間中ã®ãƒ“ルドや先行ã™ã¹ãビルドãŒå‡¦ç†ä¸­ã§ã‚るよã†ãªãƒ“ルドã¯å«ã¿ã¾ã›ã‚“。\ + ã‚‚ã—ã€å¸¸ã«0を上回ã£ã¦ã„ã‚‹ãªã‚‰ã€ã‚‚ã£ã¨ã‚³ãƒ³ãƒ”ューターを追加ã™ã‚‹ã“ã¨ã§ã‚ˆã‚Šå¤šãã®ãƒ“ルドを実行ã§ãã‚‹ã¨è¨€ãˆã¾ã™ã€‚\
    \
    \ - \u30B0\u30E9\u30D5\u306F\u3001\u5B9A\u671F\u7684\u306B\u53CE\u96C6\u3057\u305F\u6307\u6570\u5E73\u6ED1\u79FB\u52D5\u5E73\u5747\u306B\u3088\u308B\u3082\u306E\u3067\u3059\u3002\ - 3\u3064\u306E\u671F\u9593(\u77ED\u3001\u4E2D\u3001\u9577)\u306F\u3001\u305D\u308C\u305E\u308C10\u79D2\u30011\u5206\u304A\u3088\u30731\u6642\u9593\u3054\u3068\u306B\u66F4\u65B0\u3055\u308C\u307E\u3059\u3002 -Load\ statistics\ graph=\u8CA0\u8377\u7D71\u8A08\u30B0\u30E9\u30D5 + グラフã¯ã€å®šæœŸçš„ã«åŽé›†ã—ãŸæŒ‡æ•°å¹³æ»‘移動平å‡ã«ã‚ˆã‚‹ã‚‚ã®ã§ã™ã€‚\ + 3ã¤ã®æœŸé–“(短ã€ä¸­ã€é•·)ã¯ã€ãã‚Œãžã‚Œ10秒ã€1分ãŠã‚ˆã³1時間ã”ã¨ã«æ›´æ–°ã•ã‚Œã¾ã™ã€‚ +Load\ statistics\ graph=è² è·çµ±è¨ˆã‚°ãƒ©ãƒ• diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_ko.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_ko.properties index e8137dbca9ae..7729bb80a2e2 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_ko.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_ko.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Load\ statistics\ graph=\uB85C\uB4DC \uD1B5\uACC4 \uADF8\uB798\uD504 -Long=\uAE38\uAC8C -Medium=\uC911\uAC04 -Short=\uC9E7\uAC8C -Timespan=\uC2DC\uAC04\uAC04\uACA9 -title=\uBD80\uD558 \uD1B5\uACC4 : {0} +Load\ statistics\ graph=로드 통계 그래프 +Long=길게 +Medium=중간 +Short=짧게 +Timespan=시간간격 +title=부하 통계 : {0} diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_lv.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_lv.properties index 75b81b0ca206..91c038f814f6 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_lv.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_lv.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Load\ statistics\ graph=Iel\u0101d\u0113t statistikas grafiku -Long=Gar\u0161 -Medium=Vid\u0113js -Short=\u012Ass +Load\ statistics\ graph=IelÄdÄ“t statistikas grafiku +Long=GarÅ¡ +Medium=VidÄ“js +Short=Īss Timespan=Laika griezums title=Noslodzes statistika: {0} diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_pl.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_pl.properties index f79b1f5550d9..7a944c43c4c2 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_pl.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_pl.properties @@ -1,9 +1,9 @@ # This file is under the MIT License by authors -Load\ statistics\ graph=Za\u0142adowane graficzne statystyki -Long=d\u0142ugi -Medium=\u015Bredni -Short=kr\u00F3tki +Load\ statistics\ graph=ZaÅ‚adowane graficzne statystyki +Long=dÅ‚ugi +Medium=Å›redni +Short=krótki Timespan=Okres czasu -blurb=Statystyki obci\u0105\u017Cenia przechowuj\u0105 informacje o trzech wska\u017Anikach wykorzystania zasob\u00F3w:
    Ca\u0142kowita liczba proces\u00F3w wykonawczych
    W przypadku komputera jest to liczba proces\u00F3w wykonawczych przypisanych do komputera. Dla etykiety, jest to suma wszystkich proces\u00F3w wykonawczych przypisanych do komputer\u00F3w powi\u0105zanych z etykiet\u0105. Dla ca\u0142ego Jenkinsa, jest to suba wszystkich proces\u00F3w wykonawczych na wszystkich komputerach w ramach ca\u0142ej instalacji Jenkinsa. Poza zmianami wynikaj\u0105cymi z konfiguracji, warto\u015B\u0107 ta mo\u017Ce zmienia\u0107 si\u0119 gdy w\u0119z\u0142y przechodz\u0105 w tryb offline.
    Ilo\u015B\u0107 wykorzystywanych proces\u00F3w wykonawczych
    Linia prezentuje ilo\u015B\u0107 proces\u00F3w wykonawczych (spo\u015Br\u00F3d proces\u00F3w wykonawczych wyliczonych powy\u017Cej), kt\u00F3re prowadz\u0105 aktualnie kompilacje. Stosunek tej warto\u015Bci do ca\u0142kowitej liczby proces\u00F3w wykonawczych jest aktualn\u0105 warto\u015Bci\u0105 wykorzystania zasob\u00F3w. Je\u017Celi wszystkie procesy wykonawcze s\u0105 zaj\u0119te przez d\u0142u\u017Cszy czas, rozwa\u017C dodanie kolejnych komputer\u00F3w do twojego klastra Jenkinsa.
    D\u0142ugo\u015B\u0107 kolejki
    Ilo\u015B\u0107 zada\u0144 w kolejce, oczekuj\u0105cych na wolny proces wykonawczy (odpowiednio na tym komputerze, w ramach etykiety lub w ca\u0142ym Jenkinsie). Liczba ta nie zawiera zada\u0144 b\u0119d\u0105cych w okresie u\u015Bpienia, jak r\u00F3wnie\u017C zada\u0144 oczekuj\u0105cych na uko\u0144czenie wcze\u015Bniejszej/zale\u017Cnej kompilacji. Je\u017Celi ta linia kiedykolwiek przekroczy 0, oznacza to i\u017C Jenkins b\u0119dzie m\u00F3g\u0142 uruchomi\u0107 wi\u0119cej zada\u0144 je\u017Celi dodasz wi\u0119cej komputer\u00F3w/w\u0119z\u0142\u00F3w.
    Wykres prezentuje wyk\u0142adnicz\u0105 \u015Bredni\u0105 krocz\u0105c\u0105 zebranych pr\u00F3bek. 3 w/w okresy czasu prezentuj\u0105 dane aktualizowane co odpowiednio 10 sekund, 1 minut\u0119 i 1 godzin\u0119. +blurb=Statystyki obciążenia przechowują informacje o trzech wskaźnikach wykorzystania zasobów:
    Całkowita liczba procesów wykonawczych
    W przypadku komputera jest to liczba procesów wykonawczych przypisanych do komputera. Dla etykiety, jest to suma wszystkich procesów wykonawczych przypisanych do komputerów powiązanych z etykietą. Dla całego Jenkinsa, jest to suba wszystkich procesów wykonawczych na wszystkich komputerach w ramach całej instalacji Jenkinsa. Poza zmianami wynikającymi z konfiguracji, wartość ta może zmieniać się gdy węzły przechodzą w tryb offline.
    Ilość wykorzystywanych procesów wykonawczych
    Linia prezentuje ilość procesów wykonawczych (spośród procesów wykonawczych wyliczonych powyżej), które prowadzą aktualnie kompilacje. Stosunek tej wartości do całkowitej liczby procesów wykonawczych jest aktualną wartością wykorzystania zasobów. Jeżeli wszystkie procesy wykonawcze są zajęte przez dłuższy czas, rozważ dodanie kolejnych komputerów do twojego klastra Jenkinsa.
    Długość kolejki
    Ilość zadań w kolejce, oczekujących na wolny proces wykonawczy (odpowiednio na tym komputerze, w ramach etykiety lub w całym Jenkinsie). Liczba ta nie zawiera zadań będących w okresie uśpienia, jak również zadań oczekujących na ukończenie wcześniejszej/zależnej kompilacji. Jeżeli ta linia kiedykolwiek przekroczy 0, oznacza to iż Jenkins będzie mógł uruchomić więcej zadań jeżeli dodasz więcej komputerów/węzłów.
    Wykres prezentuje wykładniczą średnią kroczącą zebranych próbek. 3 w/w okresy czasu prezentują dane aktualizowane co odpowiednio 10 sekund, 1 minutę i 1 godzinę. title=Odczyt statystyk diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_pt_BR.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_pt_BR.properties index 2a3f5126370a..ebfff4d5c2e1 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_pt_BR.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_pt_BR.properties @@ -20,53 +20,53 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=Estat\u00EDsticas de carga: {0} -timeScale10sec=Cada ponto \u00E9 10 segundos -timeScaleHour=Cada ponto \u00E9 uma hora -timeScaleMinute=Cada ponto \u00E9 um minuto +title=Estatísticas de carga: {0} +timeScale10sec=Cada ponto é 10 segundos +timeScaleHour=Cada ponto é uma hora +timeScaleMinute=Cada ponto é um minuto blurb=\ - Estat\u00EDsticas de carga mantem o rastreamento de quatro m\u00E9tricas chaves de uso de recursos: \ + Estatísticas de carga mantem o rastreamento de quatro métricas chaves de uso de recursos: \
    \ -
    N\u00FAmero de executores ativos
    \ +
    Número de executores ativos
    \
    \ - Para um computador: se o computador estiver ativo ent\u00E3o isto \u00E9 n\u00FAmero de executores que \ - um computador tem; se o computador est\u00E1 inativo ent\u00E3o o n\u00FAmero \u00E9 zero.
    \ - Para uma etiqueta: \u00E9 a soma de todos os executadores atrav\u00E9s de todos os computadores ativos relacionados a \ + Para um computador: se o computador estiver ativo então isto é número de executores que \ + um computador tem; se o computador está inativo então o número é zero.
    \ + Para uma etiqueta: é a soma de todos os executadores através de todos os computadores ativos relacionados a \ esta etiqueta.
    \ - Para o Jenkins inteiro: esta \u00E9 a soma de todos os executadores em todos os computadores ativos nesta instala\u00E7\u00E3o \ + Para o Jenkins inteiro: esta é a soma de todos os executadores em todos os computadores ativos nesta instalação \ do Jenkins.
    \ - Outras altera\u00E7\u00F5es de configura\u00E7\u00E3o, este valor pode tamb\u00E9m mudar quando os agentes ficarem fora do ar. \ + Outras alterações de configuração, este valor pode também mudar quando os agentes ficarem fora do ar. \
    \ -
    N\u00FAmero de executores ocupados
    \ +
    Número de executores ocupados
    \
    \ - Esta linha rastreia o n\u00FAmero de executadores (junto com os executadores contatos acima) que estam encarregados \ - das constru\u00E7\u00F5es. A raz\u00E3o deste n\u00FAmero de executores ativos fornece a voc\u00EA a utiliza\u00E7\u00E3o de recursos. Se todos os \ - seus executores estiverem ocupados por um prolongado per\u00EDodo de tempo, considere adicionar mais computadores \ + Esta linha rastreia o número de executadores (junto com os executadores contatos acima) que estam encarregados \ + das construções. A razão deste número de executores ativos fornece a você a utilização de recursos. Se todos os \ + seus executores estiverem ocupados por um prolongado período de tempo, considere adicionar mais computadores \ para seu agrupamento de Jenkins. \
    \ -
    N\u00FAmero de executores dispon\u00EDveis
    \ +
    Número de executores disponíveis
    \
    \ - Esta linha rastreia o n\u00FAmero de executores (juntamente com a contagem de executores ativos acima) que est\u00E3o \ - dispon\u00EDveis para serem encarregados das constru\u00E7\u00F5es. A raz\u00E3o disto para o n\u00FAmero total de executores fornece a \ - voc\u00EA a disponibilidade de recursos. Se nenhum dos executores estiver dispon\u00EDvel por um longo per\u00EDodo de tempo, \ + Esta linha rastreia o número de executores (juntamente com a contagem de executores ativos acima) que estão \ + disponíveis para serem encarregados das construções. A razão disto para o número total de executores fornece a \ + você a disponibilidade de recursos. Se nenhum dos executores estiver disponível por um longo período de tempo, \ considere adicionar mais computadores para seu agrupamento de Jenkins. \
    \
    Tamanho da fila
    \
    \ - Este \u00E9 o n\u00FAmero de tarefas que est\u00E3o na fila de constru\u00E7\u00E3o, esperando por um executor dispon\u00EDvel (deste \ - computador, desta etiqueta ou no pr\u00F3prio Jenkins, respectivamente). Isto n\u00E3o inclui jobs que est\u00E3o em per\u00EDodo de \ - repouso nem inclui jobs que est\u00E3o na fila porque constru\u00E7\u00F5es anteriores j\u00E1 estava em progresso. Se esta linha \ - nunca ficar acima de 0 isto significa que seu Jenkins ir\u00E1 executar mais constru\u00E7\u00F5es se forem adicionados mais \ + Este é o número de tarefas que estão na fila de construção, esperando por um executor disponível (deste \ + computador, desta etiqueta ou no próprio Jenkins, respectivamente). Isto não inclui jobs que estão em período de \ + repouso nem inclui jobs que estão na fila porque construções anteriores já estava em progresso. Se esta linha \ + nunca ficar acima de 0 isto significa que seu Jenkins irá executar mais construções se forem adicionados mais \ computadores.\
    \
    \ -

    Nota: o n\u00FAmero de executores ocupados e o n\u00FAmero de executores dispon\u00EDveis n\u00E3o precisa ser necessariamente \ - igual ao n\u00FAmero de executores ativos j\u00E1 que executores podem ser suspensos de aceitar constru\u00E7\u00F5es e estarem, \ - portanto, nem ocupados nem dispon\u00EDveis.

    \ -

    O gr\u00E1fico \u00E9 uma m\u00E9dia exponencial m\u00F3vel de pontos de valores coletados periodicamente. Tr\u00EAs passagens de tempo \ - s\u00E3o atualizadas a cada 10 segundos, 1 minuto e uma hora, respectivamente.

    +

    Nota: o número de executores ocupados e o número de executores disponíveis não precisa ser necessariamente \ + igual ao número de executores ativos já que executores podem ser suspensos de aceitar construções e estarem, \ + portanto, nem ocupados nem disponíveis.

    \ +

    O gráfico é uma média exponencial móvel de pontos de valores coletados periodicamente. Três passagens de tempo \ + são atualizadas a cada 10 segundos, 1 minuto e uma hora, respectivamente.

    Short=Curto -Medium=M\u00E9dico +Medium=Médico Long=Longo -Load\ statistics\ graph=Carregar gr\u00E1fico de estat\u00EDsticas +Load\ statistics\ graph=Carregar gráfico de estatísticas Timespan=Intervalo de tempo diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_pt_PT.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_pt_PT.properties index 64047cd545c4..1a1b9cbbab37 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_pt_PT.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_pt_PT.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Load\ statistics\ graph=Gr\u00E1fico de estat\u00EDsticas de carga +Load\ statistics\ graph=Gráfico de estatísticas de carga Long=Longo -Medium=M\u00E9dio +Medium=Médio Short=Curto -Timespan=Espa\u00E7amento no tempo -title=Estat\u00EDsticas de carga: {0} +Timespan=Espaçamento no tempo +title=Estatísticas de carga: {0} diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_ru.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_ru.properties index ccc6b67caaab..03e354d00047 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_ru.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_ru.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Load\ statistics\ graph=\u0413\u0440\u0430\u0444\u0438\u043a \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f -Long=\u0414\u043b\u0438\u043d\u043d\u044b\u0439 -Medium=\u0421\u0440\u0435\u0434\u043d\u0438\u0439 -Short=\u041a\u043e\u0440\u043e\u0442\u043a\u0438\u0439 -Timespan=\u0412\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0439 \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d -blurb=\u0412 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0443 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u0438\u0441\u0442\u043e\u0440\u0438\u044f \u0434\u0438\u043d\u0430\u043c\u0438\u043a\u0438 \u0442\u0440\u0435\u0445 \u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0445 \u043c\u0435\u0442\u0440\u0438\u043a \u0440\u0435\u0441\u0443\u0440\u0441\u043d\u043e\u0439 \u0443\u0442\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0438:
    \u0418\u0442\u043e\u0433\u043e\u0432\u043e\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u0431\u043e\u0440\u0449\u0438\u043a\u043e\u0432
    \u0414\u043b\u044f \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0430 \u044d\u0442\u043e \u0447\u0438\u0441\u043b\u043e \u0441\u0431\u043e\u0440\u0449\u0438\u043a\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u044e\u0442\u0441\u044f \u043d\u0430 \u0434\u0430\u043d\u043d\u043e\u043c \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0435. \u0414\u043b\u044f \u043c\u0435\u0442\u043a\u0438 (\u0433\u0440\u0443\u043f\u043f\u044b), \u044d\u0442\u043e \u0441\u0443\u043c\u043c\u0430\u0440\u043d\u043e\u0435 \u0447\u0438\u0441\u043b\u043e \u0441\u0431\u043e\u0440\u0449\u0438\u043a\u043e\u0432 \u043d\u0430 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0430\u0445 \u0432 \u044d\u0442\u043e\u0439 \u0433\u0440\u0443\u043f\u043f\u0435. \u0414\u043b\u044f \u0441\u0430\u043c\u043e\u0433\u043e Jenkins, \u044d\u0442\u043e \u0441\u0443\u043c\u043c\u0430\u0440\u043d\u043e\u0435 \u0447\u0438\u0441\u043b\u043e \u0441\u0431\u043e\u0440\u0449\u0438\u043a\u043e\u0432, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0449\u0438\u0445\u0441\u044f \u0432 \u0434\u0430\u043d\u043d\u043e\u0439 \u0438\u043d\u0441\u0442\u0430\u043b\u044f\u0446\u0438\u0438 Jenkins. \u0414\u0430\u043d\u043d\u044b\u0435 \u0447\u0438\u0441\u043b\u0430 \u043c\u043e\u0433\u0443\u0442 \u043c\u0435\u043d\u044f\u0442\u044c\u0441\u044f \u0432 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438 \u043e\u0442 \u0442\u043e\u0433\u043e, \u0430\u043a\u0442\u0438\u0432\u043d\u044b \u0438\u043b\u0438 \u043d\u0435\u0442 \u0443\u0437\u043b\u044b \u0441\u0431\u043e\u0440\u043a\u0438.
    \u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0437\u0430\u043d\u044f\u0442\u044b\u0445 \u0441\u0431\u043e\u0440\u0449\u0438\u043a\u043e\u0432
    This line tracks the number of executors (among the executors counted above) that are carrying out builds. The ratio of this to the total number of executors gives you the resource utilization. If all your executors are busy for a prolonged period of time, consider adding more computers to your Jenkins cluster.
    Queue length
    This is the number of jobs that are in the build queue, waiting for an available executor (of this computer, of this label, or in this Jenkins, respectively.) This doesn''t include jobs that are in the quiet period, nor does it include jobs that are in the queue because earlier builds are still in progress. If this line ever goes above 0, that means your Jenkins will run more builds by adding more computers.
    The graph is exponential moving average of periodically collected data values. 3 timespans are updated every 10 seconds, 1 minute, and 1 hour respectively. +Load\ statistics\ graph=График иÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ +Long=Длинный +Medium=Средний +Short=Короткий +Timespan=Временной диапазон +blurb=Ð’ ÑтатиÑтику иÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð·Ð°Ð¿Ð¸ÑываетÑÑ Ð¸ÑÑ‚Ð¾Ñ€Ð¸Ñ Ð´Ð¸Ð½Ð°Ð¼Ð¸ÐºÐ¸ трех ключевых метрик реÑурÑной утилизации:
    Итоговое количеÑтво Ñборщиков
    Ð”Ð»Ñ ÐºÐ¾Ð½ÐºÑ€ÐµÑ‚Ð½Ð¾Ð³Ð¾ компьютера Ñто чиÑло Ñборщиков, которые запуÑкаютÑÑ Ð½Ð° данном компьютере. Ð”Ð»Ñ Ð¼ÐµÑ‚ÐºÐ¸ (группы), Ñто Ñуммарное чиÑло Ñборщиков на компьютерах в Ñтой группе. Ð”Ð»Ñ Ñамого Jenkins, Ñто Ñуммарное чиÑло Ñборщиков, иÑпользующихÑÑ Ð² данной инÑталÑции Jenkins. Данные чиÑла могут менÑÑ‚ÑŒÑÑ Ð² завиÑимоÑти от того, активны или нет узлы Ñборки.
    КоличеÑтво занÑÑ‚Ñ‹Ñ… Ñборщиков
    This line tracks the number of executors (among the executors counted above) that are carrying out builds. The ratio of this to the total number of executors gives you the resource utilization. If all your executors are busy for a prolonged period of time, consider adding more computers to your Jenkins cluster.
    Queue length
    This is the number of jobs that are in the build queue, waiting for an available executor (of this computer, of this label, or in this Jenkins, respectively.) This doesn''t include jobs that are in the quiet period, nor does it include jobs that are in the queue because earlier builds are still in progress. If this line ever goes above 0, that means your Jenkins will run more builds by adding more computers.
    The graph is exponential moving average of periodically collected data values. 3 timespans are updated every 10 seconds, 1 minute, and 1 hour respectively. -title=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f: {0} +title=СтатиÑтика иÑпользованиÑ: {0} diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_sk.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_sk.properties index 575f20a232f3..8388d910c64b 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_sk.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_sk.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Load\ statistics\ graph=Graf \u0161tatist\u00EDk vy\u0165a\u017Eenia -Long=Dlh\u00FD -Medium=Stredn\u00FD -Short=Kr\u00E1tky -Timespan=\u010Casov\u00FD rozsah -title=\u0160tatistiky vy\u0165a\u017Eenia: {0} +Load\ statistics\ graph=Graf Å¡tatistík vyÅ¥aženia +Long=Dlhý +Medium=Stredný +Short=Krátky +Timespan=ÄŒasový rozsah +title=Å tatistiky vyÅ¥aženia: {0} diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_sr.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_sr.properties index de74c71dd496..8d04e0347ebb 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_sr.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_sr.properties @@ -1,48 +1,48 @@ # This file is under the MIT License by authors -title=\u0423\u0447\u0438\u0442\u0430\u0458 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0435: {0} -Timespan=\u0412\u0440\u0435\u043C\u0435 -Short=\u041A\u0440\u0430\u0442\u043A\u043E -Medium=\u0421\u0440\u0435\u0434\u045A\u0435 -Long=\u0414\u0443\u0433\u043E -Load\ statistics\ graph=\u0423\u0447\u0438\u0442\u0430\u0458 \u0433\u0440\u0430\u0444\u0438\u043A\u043E\u043D \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0430 +title=Учитај ÑтатиÑтике: {0} +Timespan=Време +Short=Кратко +Medium=Средње +Long=Дуго +Load\ statistics\ graph=Учитај графикон ÑтатиÑтика blurb=\ - \u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0435 \u043E\u043F\u0442\u0435\u0440\u0435\u045B\u0435\u045A\u0430 \u043F\u0440\u0430\u0442\u0435 \u0447\u0435\u0442\u0438\u0440\u0438 \u0433\u043B\u0430\u0432\u043D\u0435 \u043C\u0435\u0442\u0440\u0438\u043A\u0435 \u043A\u043E\u0440\u0438\u0448\u045B\u0435\u045A\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u0430: \ + СтатиÑтике оптерећења прате четири главне метрике коришћење реÑурÑа: \
    \ -
    \u0411\u0440\u043E\u0458 \u043F\u043E\u0432\u0435\u0437\u0430\u043D\u0438\u0445 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430
    \ +
    Број повезаних извршитеља
    \
    \ - \u0417\u0430 \u043C\u0430\u0448\u0438\u043D\u0443: \u0430\u043A\u043E \u0458\u0435 \u043C\u0430\u0448\u0438\u043D\u0430 \u043F\u043E\u0432\u0435\u0437\u0430\u043D\u0430 \u043E\u043D\u0434\u0430 \u0458\u0435 \u043E\u0432\u043E \u0432\u0440\u043E\u0458 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 \ - \u0442\u0430\u0458 \u0440\u0430\u0447\u0443\u043D\u0430\u0440 \u0438\u043C\u0430; \u0430\u043A\u043E \u043D\u0438\u0458\u0435 \u043F\u043E\u0432\u0435\u0437\u0430\u043D \u043E\u043D\u0434\u0430 \u0458\u0435 \u0437\u0431\u0438\u0440 \u043D\u0443\u043B\u0430.
    \ - \u0417\u0430 \u043B\u0430\u0431\u0435\u043B\u0443: \u0437\u0431\u0438\u0440 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 \u043D\u0430 \u0441\u0432\u0438\u043C \u0440\u0430\u0447\u0443\u043D\u0430\u0440\u0438\u043C\u0430 \u0441\u0430 \u043E\u0432\u043E\u043C \u043B\u0430\u0431\u0435\u043B\u043E\u043C.
    \ - \u0417\u0430 \u0446\u0435\u043E Jenkins: \u0437\u0431\u0438\u0440 \u0441\u0432\u0438\u0445 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 \u043D\u0430 \u043E\u0432\u043E\u0458 \u0438\u043D\u0441\u0442\u0430\u043D\u0446\u0438 Jenkins-\u0430.
    \ - \u041E\u0441\u0438\u043C \u043F\u0440\u043E\u043C\u0435\u043D\u0430 \u0443 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0443, \u043E\u0432\u0430 \u0432\u0440\u0435\u0434\u043D\u043E\u0441\u0442 \u043C\u043E\u0436\u0435 \u0441\u0435 \u043C\u0435\u045A\u0430\u0442\u0438 \u043A\u0430\u0434 \u0430\u0433\u0435\u043D\u0442\u0438 \u043F\u0440\u0435\u043A\u0438\u043D\u0443 \u0432\u0435\u0437\u0443. \ + За машину: ако је машина повезана онда је ово врој извршитеља \ + тај рачунар има; ако није повезан онда је збир нула.
    \ + За лабелу: збир извршитеља на Ñвим рачунарима Ñа овом лабелом.
    \ + За цео Jenkins: збир Ñвих извршитеља на овој инÑтанци Jenkins-а.
    \ + ОÑим промена у подешавању, ова вредноÑÑ‚ може Ñе мењати кад агенти прекину везу. \
    \ -
    \u0411\u0440\u043E\u0458 \u0437\u0430\u0443\u0437\u0435\u0442\u0438\u0445 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430
    \ +
    Број заузетих извршитеља
    \
    \ - \u041E\u0437\u043D\u0430\u0447\u0430\u0432\u0430 \u0431\u0440\u043E\u0458 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 (me\u0452\u0443 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 \u0438\u0437\u043D\u0430\u0434) \ - \u043A\u043E\u0458\u0438 \u0438\u0437\u0432\u0440\u0448\u0430\u0432\u0430\u0458\u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435. \u041E\u0434\u043D\u043E\u0441 \u043E\u0432\u0435 \u0446\u0438\u0444\u0440\u0435 \u043F\u0440\u0435\u043C\u0430 \u0431\u0440\u043E\u0458\u0443 \u043F\u043E\u0432\u0435\u0437\u0430\u043D\u0438\u0445 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 \ - \u0434\u0430\u0458\u0435 \u0432\u0430\u043C \u043A\u043E\u0440\u0438\u0448\u045B\u0435\u045A\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u0430. \u0410\u043A\u043E \u0441\u0443 \u0441\u0432\u0438 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0438 \u0437\u0430\u0443\u0437\u0435\u0442\u0438 \ - \u0437\u0430 \u0434\u0443\u0436\u0435 \u0432\u0440\u0435\u043C\u0435, \u043C\u043E\u0436\u0434\u0430 \u0431\u0438 \u0442\u0440\u0435\u0431\u0430\u043B\u043E \u0434\u043E\u0434\u0430\u0442\u0438 \u0432\u0438\u0448\u0435 \u043C\u0430\u0448\u0438\u043D\u0430 \u0443 \u0432\u0430\u0448\u0443 Jenkins \u0433\u0440\u0443\u043F\u0443.\ + Означава број извршитеља (meђу извршитеља изнад) \ + који извршавају изградње. ÐžÐ´Ð½Ð¾Ñ Ð¾Ð²Ðµ цифре према броју повезаних извршитеља \ + даје вам коришћење реÑурÑа. Ðко Ñу Ñви извршитељи заузети \ + за дуже време, можда би требало додати више машина у вашу Jenkins групу.\
    \ -
    \u0411\u0440\u043E\u0458 \u0441\u043B\u043E\u0431\u043E\u0434\u043D\u0438\u0445 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430
    \ +
    Број Ñлободних извршитеља
    \
    \ - \u041E\u0437\u043D\u0430\u0447\u0430\u0432\u0430 \u0431\u0440\u043E\u0458 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 (me\u0452\u0443 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 \u0438\u0437\u043D\u0430\u0434) \ - \u043A\u043E\u0458\u0438 \u043C\u043E\u0433\u0443 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0438 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435. \u041E\u0434\u043D\u043E\u0441 \u043E\u0432\u0435 \u0446\u0438\u0444\u0440\u0435 \u043F\u0440\u0435\u043C\u0430 \u0431\u0440\u043E\u0458 \u0441\u0432\u0438\u0445 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 \ - \u0434\u0430\u0458\u0435 \u0432\u0430\u043C \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u043E\u0441\u0442 \u0440\u0435\u0441\u0443\u0440\u0441\u0430. \u0410\u043A\u043E \u043D\u0438\u0458\u0435\u0434\u0430\u043D \u043E\u0434 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 \u043D\u0438\u0458\u0435 \u0441\u043B\u043E\u0431\u043E\u0434\u0430\u043D \ - \u0437\u0430 \u0434\u0443\u0436\u0435 \u0432\u0440\u0435\u043C\u0435, \u043C\u043E\u0436\u0434\u0430 \u0431\u0438 \u0442\u0440\u0435\u0431\u0430\u043B\u043E \u0434\u043E\u0434\u0430\u0442\u0438 \u0432\u0438\u0448\u0435 \u043C\u0430\u0448\u0438\u043D\u0430 \u0443 \u0432\u0430\u0448\u0443 Jenkins \u0433\u0440\u0443\u043F\u0443.\ + Означава број извршитеља (meђу извршитеља изнад) \ + који могу извршити изградње. ÐžÐ´Ð½Ð¾Ñ Ð¾Ð²Ðµ цифре према број Ñвих извршитеља \ + даје вам доÑтупноÑÑ‚ реÑурÑа. Ðко ниједан од извршитеља није Ñлободан \ + за дуже време, можда би требало додати више машина у вашу Jenkins групу.\
    \ -
    \u0414\u0443\u0436\u0438\u043D\u0430 \u0440\u0435\u0434\u0430
    \ +
    Дужина реда
    \
    \ - \u0411\u0440\u043E\u0458 \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0430 \u043A\u043E\u0458\u0438 \u0441\u0435 \u043D\u0430\u043B\u0430\u0437\u0435 \u0443 \u0440\u0435\u0434\u0443 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443, \u0447\u0435\u043A\u0430\u0458\u0443\u045B\u0438 \ - \u0441\u043B\u043E\u0431\u043E\u0434\u043D\u043E\u0433 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 (\u043D\u0430 \u043E\u0432\u043E\u0458 \u043C\u0430\u0448\u0438\u043D\u0438, \u0441\u0430 \u043E\u0432\u043E\u043C \u043B\u0430\u0431\u0435\u043B\u043E\u043C, \u0446\u0435\u043B\u0438\u043C Jenkins-\u043E\u043C) \ - \u0426\u0438\u0444\u0440\u0430 \u043D\u0435 \u0443\u043A\u0459\u0443\u0447\u0443\u0458\u0435 \u0437\u0430\u0434\u0430\u0442\u043A\u0435 \u043F\u043E\u0434 \u0442\u0438\u0445\u0438\u043C \u0440\u0435\u0436\u0438\u043C\u043E\u043C, \u043D\u0438\u0442\u0438 \ - \u0437\u0430\u0434\u0430\u0442\u043A\u0435 \u043A\u043E\u0458\u0438 \u0441\u0443 \u0443 \u0440\u0435\u0434\u0443 \u0437\u0430\u0448\u0442\u043E \u043F\u0440\u0435\u0442\u0445\u043E\u0434\u043D\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 \u0441\u0443 \u0458\u043E\u0448 \u0443\u0432\u0435\u043A \u0443 \u0442\u043E\u043A\u0443. \ - \u0410\u043A\u043E \u0431\u0440\u043E\u0458 \u043F\u0440\u0435\u0452\u0435 \u043F\u0440\u0435\u043A\u043E 0, Jenkins \u045B\u0435 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0438 \u0437\u0430\u0434\u0430\u0442\u043A\u0435 \u0442\u0430\u043A\u043E \u0448\u0442\u043E \u045B\u0435 \u0434\u043E\u0434\u0430\u0442\u0438 \u0458\u043E\u0448 \u043C\u0430\u0448\u0438\u043D\u0430. \ + Број задатака који Ñе налазе у реду за изградњу, чекајући \ + Ñлободног извршитеља (на овој машини, Ñа овом лабелом, целим Jenkins-ом) \ + Цифра не укључује задатке под тихим режимом, нити \ + задатке који Ñу у реду зашто претходне изградње Ñу још увек у току. \ + Ðко број пређе преко 0, Jenkins ће извршити задатке тако што ће додати још машина. \
    \
    \ -

    \u0411\u0435\u043B\u0435\u0448\u043A\u0430: \u0411\u0440\u043E\u0458 \u0437\u0430\u0443\u0437\u0435\u0442\u0438\u0445 \u0438 \u0441\u043B\u043E\u0431\u043E\u0434\u043D\u0438\u0445 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 \u043D\u0435\u043C\u043E\u0440\u0430 \u0431\u0438\u0442\u0438 \ - \u0458\u0435\u0434\u043D\u0430\u043A \u0431\u0440\u043E\u0458\u0443 \u043F\u043E\u0432\u0435\u0437\u0430\u043D\u0438\u0445 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430, \u0437\u0430\u0448\u0442\u043E \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0438 \u043C\u043E\u0433\u0443 \u0431\u0438\u0442\u0438 \u0441\u0443\u0441\u043F\u0435\u043D\u0434\u043E\u0432\u0430\u043D\u0438 \ - \u0438 \u043F\u0440\u0435\u043C\u0430 \u0442\u043E\u043C\u0435 \u043D\u0438\u0442\u0438 \u0437\u0430\u0443\u0437\u0435\u0442\u0438\u0430 \u043D\u0438 \u0441\u043B\u043E\u0431\u043E\u0434\u043D\u0438\u0430.

    \ -

    \u0413\u0440\u0430\u0444\u0438\u043A\u043E\u043D \u0458\u0435 \u0435\u043A\u0441\u043F\u043E\u043D\u0435\u043D\u0446\u0438\u0430\u043B\u043D\u0438 \u043F\u043E\u043A\u0440\u0435\u0442\u043D\u0438 \u043F\u0440\u0435\u0441\u0435\u043A \u043E\u0434 \u043F\u0435\u0440\u0438\u043E\u0434\u0438\u0447\u043D\u043E \u043F\u0440\u0438\u043A\u0443\u043F\u0459\u0435\u043D\u0435 \u0432\u0440\u0435\u0434\u043D\u043E\u0441\u0442\u0438. \ - 3 \u0440\u0430\u0441\u043F\u043E\u043D\u0430 \u0441\u0443 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043D\u0430 \u0441\u0432\u0430\u043A\u0438\u0445 10 \u0441\u0435\u043A\u0443\u043D\u0434\u0438, 1 \u043C\u0438\u043D\u0443\u0442\u0430 \u0438 1 \u0447\u0430\u0441\u0430.

    +

    Белешка: Број заузетих и Ñлободних извршитеља немора бити \ + једнак броју повезаних извршитеља, зашто извршитељи могу бити ÑуÑпендовани \ + и према томе нити заузетиа ни Ñлободниа.

    \ +

    Графикон је екÑпоненциални покретни преÑек од периодично прикупљене вредноÑти. \ + 3 раÑпона Ñу ажурирана Ñваких 10 Ñекунди, 1 минута и 1 чаÑа.

    diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_sv_SE.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_sv_SE.properties index 71344ddb1d2f..120155de7690 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_sv_SE.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_sv_SE.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Long=L\u00E5ngt +Long=LÃ¥ngt Medium=Mellan Short=Litet Timespan=Tidsrymd diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_zh_TW.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_zh_TW.properties index 4b19864acfb1..d13764b29be3 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_zh_TW.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_zh_TW.properties @@ -21,35 +21,35 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=\u8ca0\u8f09\u7d71\u8a08: {0} -Timespan=\u671f\u9593 -Short=\u77ed\u671f -Medium=\u4e2d\u671f -Long=\u9577\u671f -Load\ statistics\ graph=\u8ca0\u8f09\u7d71\u8a08\u5716 +title=負載統計: {0} +Timespan=期間 +Short=短期 +Medium=中期 +Long=長期 +Load\ statistics\ graph=負載統計圖 blurb=\ - \u4e09\u7a2e\u8cc7\u6e90\u7684\u4f7f\u7528\u7387\u72c0\u6cc1\u6703\u88ab\u8a18\u9304\u5728\u8ca0\u8f09\u7d71\u8a08\u88e1:\ + 三種資æºçš„使用率狀æ³æœƒè¢«è¨˜éŒ„在負載統計裡:\
    \ -
    \u57f7\u884c\u7a0b\u5f0f\u7684\u6578\u76ee
    \ +
    執行程å¼çš„數目
    \
    \ - \u4ee5\u4e3b\u6a5f\u4f86\u770b\uff0c\u9019\u662f\u8a72\u4e3b\u6a5f\u4e0a\u7684\u57f7\u884c\u7a0b\u5f0f\u6578\u76ee\u3002\ - \u4ee5\u6a19\u7c64\u4f86\u770b\uff0c\u9019\u662f\u8a72\u6a19\u7c64\u4e0b\u6240\u6709\u4e3b\u6a5f\u7684\u57f7\u884c\u7a0b\u5f0f\u52a0\u7e3d\u3002\ - \u4ee5\u6574\u500b Jenkins \u7684\u89d2\u5ea6\u4f86\u770b\uff0c\u9019\u662f\u6574\u500b Jenkins \u88e1\u6240\u6709\u4e3b\u6a5f\u4e0a\u57f7\u884c\u7a0b\u5f0f\u7684\u6578\u76ee\u7e3d\u548c\u3002\ - \u9664\u4e86\u8b8a\u66f4\u8a2d\u5b9a\u5916\uff0cSlave \u662f\u5426\u96e2\u7dda\u4e5f\u540c\u6a23\u6703\u5c0d\u6578\u64da\u9020\u6210\u5f71\u97ff\u3002\ + 以主機來看,這是該主機上的執行程å¼æ•¸ç›®ã€‚\ + 以標籤來看,這是該標籤下所有主機的執行程å¼åŠ ç¸½ã€‚\ + 以整個 Jenkins 的角度來看,這是整個 Jenkins 裡所有主機上執行程å¼çš„數目總和。\ + 除了變更設定外,Slave 是å¦é›¢ç·šä¹ŸåŒæ¨£æœƒå°æ•¸æ“šé€ æˆå½±éŸ¿ã€‚\
    \ -
    \u4f5c\u696d\u4e2d\u57f7\u884c\u7a0b\u5f0f\u7684\u6578\u76ee
    \ +
    作業中執行程å¼çš„數目
    \
    \ - \u9019\u689d\u7dda\u8a18\u9304\u6b63\u5728\u9032\u884c\u5efa\u7f6e\u7684\u57f7\u884c\u7a0b\u5f0f\u7684\u6578\u76ee\u3002\ - \u9019\u500b\u6578\u503c\u8207\u7e3d\u6578\u76ee\u7684\u6bd4\u4f8b\u5c31\u662f\u8cc7\u6e90\u4f7f\u7528\u7387\u3002\ - \u5982\u679c\u6240\u6709\u7684\u57f7\u884c\u7a0b\u5f0f\u4e00\u76f4\u90fd\u5f88\u5fd9\uff0c\u5efa\u8b70\u60a8\u591a\u52a0\u5e7e\u53f0\u96fb\u8166\u5230 Jenkins \u53e2\u96c6\u88e1\u3002\ + 這æ¢ç·šè¨˜éŒ„正在進行建置的執行程å¼çš„數目。\ + 這個數值與總數目的比例就是資æºä½¿ç”¨çŽ‡ã€‚\ + 如果所有的執行程å¼ä¸€ç›´éƒ½å¾ˆå¿™ï¼Œå»ºè­°æ‚¨å¤šåŠ å¹¾å°é›»è…¦åˆ° Jenkins å¢é›†è£¡ã€‚\
    \ -
    \u4f47\u5217\u9577\u5ea6
    \ +
    佇列長度
    \
    \ - \u5efa\u7f6e\u4f47\u5217\u4e2d\u7684\u4f5c\u696d\u6578\u76ee\uff0c\u9019\u4e9b\u4f5c\u696d\u6b63\u5728\u7b49\u5019\u6709\u7a7a\u7684\u57f7\u884c\u7a0b\u5f0f\ - (\u6578\u503c\u5206\u5225\u6307\u9019\u90e8\u4e3b\u6a5f\u3001\u9019\u500b\u6a19\u7c64\u3001\u6574\u500b Jenkins)\u3002\ - \u4e26\u4e0d\u5305\u542b\u5728\u975c\u5019\u6642\u9593\u5167\u7684\u4f5c\u696d\uff0c\u4e5f\u4e0d\u5305\u542b\u4f47\u5217\u4e2d\u5df2\u6709\u5148\u524d\u7248\u672c\u6b63\u5728\u5efa\u7f6e\u7684\u4f5c\u696d\u3002\ - \u5982\u679c\u9019\u689d\u7dda\u4e00\u76f4\u90fd\u5728 0 \u4e4b\u4e0a\uff0c\u4ee3\u8868\u60a8\u7684 Jenkins \u88e1\u591a\u52a0\u5e7e\u90e8\u4e3b\u6a5f\u53ef\u4ee5\u8dd1\u66f4\u591a\u7684\u5efa\u7f6e\u4f5c\u696d\u3002\ + 建置佇列中的作業數目,這些作業正在等候有空的執行程å¼\ + (數值分別指這部主機ã€é€™å€‹æ¨™ç±¤ã€æ•´å€‹ Jenkins)。\ + 並ä¸åŒ…å«åœ¨éœå€™æ™‚間內的作業,也ä¸åŒ…å«ä½‡åˆ—中已有先å‰ç‰ˆæœ¬æ­£åœ¨å»ºç½®çš„作業。\ + 如果這æ¢ç·šä¸€ç›´éƒ½åœ¨ 0 之上,代表您的 Jenkins 裡多加幾部主機å¯ä»¥è·‘更多的建置作業。\
    \
    \ - \u9019\u5f35\u5716\u662f\u4ee5\u6307\u6578\u79fb\u52d5\u5e73\u5747\u7dda (Exponential Moving Average) \u7e6a\u88fd\uff0c\ - \u8cc7\u6599\u6536\u96c6\u5468\u671f\u5206\u6210 10 \u79d2\u30011 \u5206\u9418\u4ee5\u53ca 1 \u5c0f\u6642\u4e09\u7a2e\u3002 + 這張圖是以指數移動平å‡ç·š (Exponential Moving Average) 繪製,\ + è³‡æ–™æ”¶é›†å‘¨æœŸåˆ†æˆ 10 秒ã€1 分é˜ä»¥åŠ 1 å°æ™‚三種。 diff --git a/core/src/main/resources/hudson/model/Messages.properties b/core/src/main/resources/hudson/model/Messages.properties index 33e069d4bb73..a14216ffe0f8 100644 --- a/core/src/main/resources/hudson/model/Messages.properties +++ b/core/src/main/resources/hudson/model/Messages.properties @@ -28,26 +28,26 @@ AbstractBuild_Building=Building AbstractBuild.BuildingInWorkspace=\ in workspace {0} AbstractBuild.KeptBecause=This build is kept because of {0}. -AbstractItem.NoSuchJobExists=No such job \u2018{0}\u2019 exists. Perhaps you meant \u2018{1}\u2019? -AbstractItem.NoSuchJobExistsWithoutSuggestion=No such job \u2018{0}\u2019 exists. +AbstractItem.NoSuchJobExists=No such job ‘{0}’ exists. Perhaps you meant ‘{1}’? +AbstractItem.NoSuchJobExistsWithoutSuggestion=No such job ‘{0}’ exists. AbstractItem.Pronoun=Item AbstractItem.TaskNoun=Build AbstractItem.BeingDeleted={0} is currently being deleted AbstractItem.FailureToStopBuilds=Failed to interrupt and stop {0,choice,1#{0,number,integer} build|1<{0,number,integer} \ builds} of {1} -AbstractItem.NewNameInUse=The name \u201c{0}\u201d is already in use. +AbstractItem.NewNameInUse=The name “{0}†is already in use. AbstractItem.NewNameUnchanged=The new name is the same as the current name. AbstractProject.NewBuildForWorkspace=Scheduling a new build to get a workspace. AbstractProject.AwaitingBuildForWorkspace=Awaiting build to get a workspace. AbstractProject.AwaitingWorkspaceToComeOnline=We need to schedule a new build to get a workspace, but deferring {0}ms in the hope that one will become available soon AbstractProject.Pronoun=Project AbstractProject.Aborted=Aborted -AbstractProject.UpstreamBuildInProgress=Upstream project \u2018{0}\u2019 is already building -AbstractProject.DownstreamBuildInProgress=Downstream project \u2018{0}\u2019 is already building +AbstractProject.UpstreamBuildInProgress=Upstream project ‘{0}’ is already building +AbstractProject.DownstreamBuildInProgress=Downstream project ‘{0}’ is already building AbstractProject.Disabled=Build disabled AbstractProject.NoBuilds=No existing build. Scheduling a new one. AbstractProject.NoSCM=No SCM -AbstractProject.NoWorkspace=No workspace is available, so can\u2019t check for updates. +AbstractProject.NoWorkspace=No workspace is available, so can’t check for updates. AbstractProject.WorkspaceTitle=Workspace of {0} AbstractProject.WorkspaceTitleOnComputer=Workspace of {0} on {1} AbstractProject.PollingABorted=SCM polling aborted @@ -58,7 +58,7 @@ AbstractProject.BuildPermission.Description=\ This permission grants the ability to start a new build. AbstractProject.WorkspacePermission.Description=\ This permission grants the ability to retrieve the contents of a workspace \ - Jenkins checked out for performing builds. If you don\u2019t want a user to access \ + Jenkins checked out for performing builds. If you don’t want a user to access \ files in the workspace (e.g. source code checked out from SCM or intermediate build \ results) through the workspace browser, you can revoke this permission. AbstractProject.ExtendedReadPermission.Description=\ @@ -79,7 +79,7 @@ AbstractProject.CustomWorkspaceEmpty=Custom workspace is empty. Api.MultipleMatch=XPath "{0}" matched {1} nodes. \ Create XPath that only matches one, or use the "wrapper" query parameter to wrap them all under a root element. -Api.NoXPathMatch=XPath {0} didn\u2019t match +Api.NoXPathMatch=XPath {0} didn’t match Api.WrapperParamInvalid=The wrapper parameter can only contain alphanumeric characters or dash/dot/underscore. The first character has to be a letter or underscore. BallColor.Aborted=Aborted @@ -109,7 +109,7 @@ Computer.BuildPermission.Description=This permission allows users to run jobs as Computer.BadChannel=Agent node offline or not a remote channel (such as the built-in node). ComputerSet.NoSuchSlave=No such agent: {0} -ComputerSet.SlaveAlreadyExists=Agent called \u2018{0}\u2019 already exists +ComputerSet.SlaveAlreadyExists=Agent called ‘{0}’ already exists ComputerSet.SpecifySlaveToCopy=Specify which agent to copy ComputerSet.DisplayName=Nodes @@ -129,17 +129,17 @@ Hudson.Computer.Caption=Built-In Node Hudson.Computer.DisplayName=Built-In Node Hudson.ControlCodeNotAllowed=No control code is allowed: {0} Hudson.DisplayName=Jenkins -Hudson.JobAlreadyExists=A job already exists with the name \u2018{0}\u2019 +Hudson.JobAlreadyExists=A job already exists with the name ‘{0}’ Hudson.NoJavaInPath=java is not in your PATH. Maybe you need to configure JDKs? Hudson.NoName=No name is specified Hudson.NoSuchDirectory=No such directory: {0} Hudson.NodeBeingRemoved=Node is being removed Hudson.NotAPlugin={0} is not a Jenkins plugin -Hudson.NotJDKDir={0} doesn\u2019t look like a JDK directory +Hudson.NotJDKDir={0} doesn’t look like a JDK directory Hudson.Permissions.Title=Overall Hudson.USER_CONTENT_README=Files in this directory will be served under your http://yourjenkins/userContent/ -Hudson.UnsafeChar=\u2018{0}\u2019 is an unsafe character -Hudson.TrailingDot=A name cannot end with \u2018.\u2019 +Hudson.UnsafeChar=‘{0}’ is an unsafe character +Hudson.TrailingDot=A name cannot end with ‘.’ Hudson.ViewAlreadyExists=A view already exists with the name "{0}" Hudson.ViewName=All Hudson.NotANumber=Not a number @@ -149,7 +149,7 @@ Hudson.NotANegativeNumber=Not a negative number Hudson.MustBeAtLeast=Must be {0} or greater Hudson.MustBeAtMost=Must be {0} or less Hudson.NotUsesUTF8ToDecodeURL=\ - Your container doesn\u2019t use UTF-8 to decode URLs. If you use non-ASCII characters as a job name etc, \ + Your container doesn’t use UTF-8 to decode URLs. If you use non-ASCII characters as a job name etc, \ this will cause problems. \ See Containers and \ Tomcat i18n for more details. @@ -164,7 +164,7 @@ Jenkins.SystemRead.Description=\ This permission grants read-only access to large parts of the overall system configuration. Hudson.ReadPermission.Description=\ The read permission is necessary for viewing almost all pages of Jenkins. \ - This permission is useful when you don\u2019t want unauthenticated users to see \ + This permission is useful when you don’t want unauthenticated users to see \ Jenkins pages: revoke this permission from the anonymous user, then \ add "authenticated" pseudo-user and grant the read access. Hudson.RunScriptsPermission.Description=\ @@ -196,20 +196,20 @@ LabelExpression_ObsoleteMasterLabel=This expression includes the label mas LabelExpression.LabelLink=Label {1} matches {3,choice,0#no nodes|1#1 node|1<{3} nodes}{4,choice,0#|1# and 1 cloud|1< and {4} clouds}. \ Permissions or other restrictions provided by plugins may further reduce that list. LabelExpression.NoMatch=No agent/cloud matches this label expression. -LabelExpression.NoMatch_DidYouMean=No agent/cloud matches this label expression. Did you mean \u2018{1}\u2019 instead of \u2018{0}\u2019? +LabelExpression.NoMatch_DidYouMean=No agent/cloud matches this label expression. Did you mean ‘{1}’ instead of ‘{0}’? ManageJenkinsAction.DisplayName=Manage Jenkins MultiStageTimeSeries.EMPTY_STRING= -Queue.AllNodesOffline=All nodes of label \u2018{0}\u2019 are offline -Queue.LabelHasNoNodes=There are no nodes with the label \u2018{0}\u2019 -Queue.BlockedBy=Blocked by \u2018{0}\u2019 +Queue.AllNodesOffline=All nodes of label ‘{0}’ are offline +Queue.LabelHasNoNodes=There are no nodes with the label ‘{0}’ +Queue.BlockedBy=Blocked by ‘{0}’ Queue.HudsonIsAboutToShutDown=Jenkins is about to shut down Queue.InProgress=A build is already in progress Queue.InQuietPeriod=In the quiet period. Expires in {0} -Queue.NodeOffline=\u2018{0}\u2019 is offline +Queue.NodeOffline=‘{0}’ is offline Queue.Unknown=??? Queue.FinishedWaiting=Finished waiting Queue.WaitingForNextAvailableExecutor=Waiting for next available executor -Queue.WaitingForNextAvailableExecutorOn=Waiting for next available executor on \u2018{0}\u2019 +Queue.WaitingForNextAvailableExecutorOn=Waiting for next available executor on ‘{0}’ Queue.init=Restoring the build queue Queue.node_has_been_removed_from_configuration={0} has been removed from configuration Queue.executor_slot_already_in_use=Executor slot already in use @@ -239,7 +239,7 @@ Run.UpdatePermission.Description=\ for example to leave notes about the cause of a build failure. Run.ArtifactsPermission.Description=\ This permission grants the ability to retrieve the artifacts produced by \ - builds. If you don\u2019t want an user to access the artifacts, you can do so by \ + builds. If you don’t want an user to access the artifacts, you can do so by \ revoking this permission. Run.InProgressDuration={0} and counting Run.NotStartedYet=Not started yet @@ -356,10 +356,10 @@ ChoiceParameterDefinition.MissingChoices=Requires Choices. RunParameterDefinition.DisplayName=Run Parameter PasswordParameterDefinition.DisplayName=Password Parameter -Node.BecauseNodeIsReserved=\u2018{0}\u2019 is reserved for jobs with matching label expression -Node.BecauseNodeIsNotAcceptingTasks=\u2018{0}\u2019 is not accepting tasks -Node.LabelMissing=\u2018{0}\u2019 doesn\u2019t have label \u2018{1}\u2019 -Node.LackingBuildPermission=\u2018{0}\u2019 lacks permission to run on \u2018{1}\u2019 +Node.BecauseNodeIsReserved=‘{0}’ is reserved for jobs with matching label expression +Node.BecauseNodeIsNotAcceptingTasks=‘{0}’ is not accepting tasks +Node.LabelMissing=‘{0}’ doesn’t have label ‘{1}’ +Node.LackingBuildPermission=‘{0}’ lacks permission to run on ‘{1}’ Node.Mode.NORMAL=Use this node as much as possible Node.Mode.EXCLUSIVE=Only build jobs with label expressions matching this node @@ -401,7 +401,7 @@ BuildAuthorizationToken.InvalidTokenProvided=Invalid token provided. Jenkins.CheckDisplayName.NameNotUniqueWarning=The display name, "{0}", is used as a name by a job and could cause confusing search results. Jenkins.CheckDisplayName.DisplayNameNotUniqueWarning=The display name, "{0}", is already in use by another job and could cause confusion and delay. -Jenkins.NotAllowedName=\u201c{0}\u201d is not an allowed name +Jenkins.NotAllowedName=“{0}†is not an allowed name Jenkins.IsRestarting=Jenkins is restarting User.IllegalUsername="{0}" is prohibited as a username for security reasons. diff --git a/core/src/main/resources/hudson/model/Messages_bg.properties b/core/src/main/resources/hudson/model/Messages_bg.properties index 66e2a4ecad58..89de5dfca1a7 100644 --- a/core/src/main/resources/hudson/model/Messages_bg.properties +++ b/core/src/main/resources/hudson/model/Messages_bg.properties @@ -21,706 +21,706 @@ # THE SOFTWARE. AbstractBuild.BuildingRemotely=\ - \u041e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0432\u044a\u0440\u0445\u0443 \u201e{0}\u201c + Отдалечено изграждане върху „{0}“ AbstractBuild.BuildingOnMaster=\ - \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0432\u044a\u0440\u0445\u0443 \u043e\u0441\u043d\u043e\u0432\u043d\u0438\u044f \u0441\u044a\u0440\u0432\u044a\u0440 + Изграждане върху оÑÐ½Ð¾Ð²Ð½Ð¸Ñ Ñървър AbstractBuild_Building=\ - \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + Изграждане AbstractBuild.BuildingInWorkspace=\ - \ \u0432 \u0440\u0430\u0431\u043e\u0442\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u201e{0}\u201c + \ в работно проÑтранÑтво „{0}“ AbstractBuild.KeptBecause=\ - \u0422\u043e\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0441\u0435 \u043f\u0430\u0437\u0438, \u0437\u0430\u0440\u0430\u0434\u0438 \u201e{0}\u201c. + Това изграждане Ñе пази, заради „{0}“. AbstractItem.NoSuchJobExists=\ - \u041d\u0435 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 \u043d\u0430 \u0438\u043c\u0435 \u201e{0}\u201c. \u201e{1}\u201c \u043b\u0438 \u0438\u043c\u0430\u0445\u0442\u0435 \u043f\u0440\u0435\u0434\u0432\u0438\u0434? + Ðе ÑъщеÑтвува задача на име „{0}“. „{1}“ ли имахте предвид? AbstractItem.NoSuchJobExistsWithoutSuggestion=\ - \u041d\u0435 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 \u043d\u0430 \u0438\u043c\u0435 \u201e{0}\u201c. + Ðе ÑъщеÑтвува задача на име „{0}“. AbstractItem.Pronoun=\ - \u0415\u043b\u0435\u043c\u0435\u043d\u0442 + Елемент AbstractItem.NewNameInUse=\ - \u0418\u043c\u0435\u0442\u043e \u201e{0}\u201c \u0435 \u0437\u0430\u0435\u0442\u043e. + Името „{0}“ е заето. AbstractProject.NewBuildForWorkspace=\ - \u041d\u0430\u0441\u0440\u043e\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u043e\u0432\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u043f\u043e\u043b\u0443\u0447\u0438 \u0440\u0430\u0431\u043e\u0442\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e. + ÐаÑрочване на ново изграждане, за да Ñе получи работно проÑтранÑтво. AbstractProject.AwaitingBuildForWorkspace=\ - \u0418\u0437\u0447\u0430\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u043f\u043e\u043b\u0443\u0447\u0438 \u0440\u0430\u0431\u043e\u0442\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e. + Изчакване на изграждане, за да Ñе получи работно проÑтранÑтво. AbstractProject.AwaitingWorkspaceToComeOnline=\ - \u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u0435 \u043d\u0430\u0441\u0440\u043e\u0447\u0438 \u043d\u043e\u0432\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435, \u0437\u0430 \u0434\u0430 \u043f\u043e\u043b\u0443\u0447\u0438 \u0440\u0430\u0431\u043e\u0442\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e.\ - \u0417\u0430\u0431\u0430\u0432\u044f\u043d\u0435 \u043e\u0442 {0}\u200ams \u0441 \u043d\u0430\u0434\u0435\u0436\u0434\u0430 \u0434\u0430 \u0441\u0435 \u043e\u0441\u0432\u043e\u0431\u043e\u0434\u0438 \u043d\u044f\u043a\u043e\u0435 \u0440\u0430\u0431\u043e\u0442\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e + ТрÑбва да Ñе наÑрочи ново изграждане, за да получи работно проÑтранÑтво.\ + ЗабавÑне от {0} ms Ñ Ð½Ð°Ð´ÐµÐ¶Ð´Ð° да Ñе оÑвободи нÑкое работно проÑтранÑтво AbstractProject.Pronoun=\ - \u041f\u0440\u043e\u0435\u043a\u0442 + Проект AbstractProject.Aborted=\ - \u041f\u0440\u0435\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d + ПреуÑтановен AbstractProject.UpstreamBuildInProgress=\ - \u201e{0}\u201c \u2014 \u0437\u0430\u0434\u0430\u0447\u0430, \u043e\u0442 \u043a\u043e\u044f\u0442\u043e \u0437\u0430\u0432\u0438\u0441\u0438 \u0442\u0435\u043a\u0443\u0449\u043e\u0442\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435, \u0432\u0435\u0447\u0435 \u0435 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0430. + „{0}“ — задача, от коÑто завиÑи текущото изграждане, вече е Ñтартирана. AbstractProject.DownstreamBuildInProgress=\ - \u201e{0}\u201c \u2014 \u0437\u0430\u0434\u0430\u0447\u0430, \u043a\u043e\u044f\u0442\u043e \u0437\u0430\u0432\u0438\u0441\u0438 \u043e\u0442 \u0442\u0435\u043a\u0443\u0449\u043e\u0442\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435, \u0432\u0435\u0447\u0435 \u0435 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0430. + „{0}“ — задача, коÑто завиÑи от текущото изграждане, вече е Ñтартирана. AbstractProject.Disabled=\ - \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e \u0435 \u0438\u0437\u043a\u043b\u044e\u0447\u0435\u043d\u043e + Изграждането е изключено AbstractProject.NoBuilds=\ - \u041d\u0435 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435. \u041d\u0430\u0441\u0440\u043e\u0447\u0432\u0430 \u0441\u0435 \u043d\u043e\u0432\u043e. + Ðе ÑъщеÑтвува изграждане. ÐаÑрочва Ñе ново. AbstractProject.NoSCM=\ - \u041d\u044f\u043c\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u0437\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b \u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435 + ÐÑма ÑиÑтема за контрол на верÑиите AbstractProject.NoWorkspace=\ - \u041d\u044f\u043c\u0430 \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u043e \u0440\u0430\u0431\u043e\u0442\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u0438 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043f\u0440\u043e\u0432\u0435\u0440\u0438 \u0437\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f. + ÐÑма Ñвободно работно проÑтранÑтво и не може да Ñе провери за обновлениÑ. AbstractProject.WorkspaceTitle=\ - \u0420\u0430\u0431\u043e\u0442\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u201e{0}\u201c + Работно проÑтранÑтво „{0}“ AbstractProject.WorkspaceTitleOnComputer=\ - \u0420\u0430\u0431\u043e\u0442\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u201e{0}\u201c \u043d\u0430 \u201e{1}\u201c + Работно проÑтранÑтво „{0}“ на „{1}“ AbstractProject.PollingABorted=\ - \u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430\u0442\u0430 \u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0438\u0442\u0435 \u0437\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b \u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435 \u0435 \u043f\u0440\u0435\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u0430 + Проверката на ÑиÑтемите за контрол на верÑиите е преуÑтановена AbstractProject.ScmAborted=\ - \u0418\u0437\u0442\u0435\u0433\u043b\u044f\u043d\u0435\u0442\u043e \u043e\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u0438\u0442\u0435 \u0437\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b \u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435 \u0435 \u043f\u0440\u0435\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u043e + ИзтеглÑнето от ÑиÑтемите за контрол на верÑиите е преуÑтановено AbstractProject.WorkspaceOffline=\ - \u0420\u0430\u0431\u043e\u0442\u043d\u043e\u0442\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u043d\u0435 \u0435 \u043d\u0430\u043b\u0438\u0447\u043d\u043e. + Работното проÑтранÑтво не е налично. AbstractProject.BuildPermission.Description=\ - \u0422\u043e\u0432\u0430 \u0434\u0430\u0432\u0430 \u043f\u0440\u0430\u0432\u043e\u0442\u043e \u0437\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043d\u043e\u0432\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435. + Това дава правото за Ñтартиране на ново изграждане. AbstractProject.WorkspacePermission.Description=\ - \u0422\u043e\u0432\u0430 \u0434\u0430\u0432\u0430 \u043f\u0440\u0430\u0432\u043e \u0434\u0430 \u0441\u0435 \u0440\u0430\u0437\u0433\u043b\u0435\u0436\u0434\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u043d\u043e\u0442\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u043f\u0440\u0438\ - \u0438\u0437\u0432\u044a\u0440\u0448\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f \u043e\u0442 Jenkins. \u041e\u0442\u043d\u0435\u043c\u0435\u0442\u0435 \u0433\u043e, \u0430\u043a\u043e \u043d\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\ - \u0434\u0430 \u0434\u043e\u0441\u0442\u044a\u043f\u0432\u0430 \u0444\u0430\u0439\u043b\u043e\u0432\u0435\u0442\u0435 \u0432 \u0440\u0430\u0431\u043e\u0442\u043d\u043e\u0442\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e (\u043d\u0430\u043f\u0440. \u0438\u0437\u0445\u043e\u0434\u043d\u0438\u044f \u043a\u043e\u0434, \u0438\u0437\u0442\u0435\u0433\u043b\u0435\u043d\ - \u043e\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430 \u0437\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b \u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435 \u0438\u043b\u0438 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u0438\u0442\u0435 \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u043f\u0440\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e). + Това дава право да Ñе разглежда Ñъдържанието на работното проÑтранÑтво при\ + извършване на Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ Ð¾Ñ‚ Jenkins. Отнемете го, ако не иÑкате потребител\ + да доÑтъпва файловете в работното проÑтранÑтво (напр. Ð¸Ð·Ñ…Ð¾Ð´Ð½Ð¸Ñ ÐºÐ¾Ð´, изтеглен\ + от ÑиÑтемата за контрол на верÑиите или временните файлове при изграждането). AbstractProject.ExtendedReadPermission.Description=\ - \u0422\u043e\u0432\u0430 \u0434\u0430\u0432\u0430 \u043f\u0440\u0430\u0432\u043e \u0437\u0430 \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430\u0442\u0430 \u0437\u0430 \u0447\u0435\u0442\u0435\u043d\u0435 \u0438 \u043c\u043e\u0436\u0435 \u0434\u0430\ - \u0434\u043e\u0432\u0435\u0434\u0435 \u0434\u043e \u0440\u0430\u0437\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u0430\u0439\u043d\u0438, \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0438 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f\u0442\u0430 \u2014 \u043a\u0430\u0442\u043e \u043f\u0430\u0440\u043e\u043b\u0438\ - \u0437\u0430 \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0437\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b \u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435. + Това дава право за доÑтъп до наÑтройките на задачата за четене и може да\ + доведе до разпроÑтранÑване на тайни, използвани за изгражданиÑта — като пароли\ + за доÑтъп до ÑиÑтеми за контрол на верÑиите. AbstractProject.DiscoverPermission.Description=\ - \u0422\u043e\u0432\u0430 \u0434\u0430\u0432\u0430 \u043f\u0440\u0430\u0432\u043e \u0437\u0430 \u043e\u0442\u043a\u0440\u0438\u0432\u0430\u043d\u0435 \u0438 \u0438\u0437\u0431\u0440\u043e\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0438\u0442\u0435. \u041f\u0440\u0430\u0432\u043e\u0442\u043e \u0435 \u043f\u043e-\u0441\u043b\u0430\u0431\u043e \u043e\u0442\ - \u0434\u043e\u0441\u0442\u044a\u043f\u0430 \u0434\u043e \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430\u0442\u0430 \u0437\u0430 \u0447\u0435\u0442\u0435\u043d\u0435, \u043d\u043e \u0432\u0438 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0432\u0430 \u0434\u0430 \u043f\u0440\u0435\u043d\u0430\u0441\u043e\u0447\u0438\u0442\u0435\ - \u0430\u043d\u043e\u043d\u0438\u043c\u043d\u0438\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 \u043a\u044a\u043c \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u0442\u0430 \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f, \u043a\u043e\u0433\u0430\u0442\u043e \u0441\u0435 \u043e\u043f\u0438\u0442\u0430\u0442 \u0434\u0430\ - \u043e\u0442\u0432\u043e\u0440\u044f\u0442 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u0442\u0430 \u043d\u0430 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430. \u0410\u043a\u043e \u043f\u0440\u0430\u0432\u043e\u0442\u043e \u043d\u0435 \u0435 \u0434\u0430\u0434\u0435\u043d\u043e, \u043e\u0442\u0433\u043e\u0432\u043e\u0440\u044a\u0442\ - \u043d\u0430 \u0437\u0430\u044f\u0432\u043a\u0438\u0442\u0435 \u0437\u0430 \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0438\u0442\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0438\u0442\u0435 \u0449\u0435 \u0435 \u0433\u0440\u0435\u0448\u043a\u0430 404 \u0438 \u0430\u043d\u043e\u043d\u0438\u043c\u043d\u0438\u0442\u0435\ - \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 \u043d\u044f\u043c\u0430 \u0434\u0430 \u043d\u0430\u0443\u0447\u0430\u0432\u0430\u0442 \u0438\u043c\u0435\u043d\u0430\u0442\u0430 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0442\u0435. + Това дава право за откриване и изброÑване на задачите. Правото е по-Ñлабо от\ + доÑтъпа до наÑтройките на задачата за четене, но ви позволÑва да пренаÑочите\ + анонимните потребители към Ñтраницата за идентификациÑ, когато Ñе опитат да\ + отворÑÑ‚ Ñтраницата на определена задача. Ðко правото не е дадено, отговорът\ + на заÑвките за доÑтъп до Ñтраниците на задачите ще е грешка 404 и анонимните\ + потребители нÑма да научават имената на проектите. # hudson.security.WipeOutPermission is set to true AbstractProject.WipeOutPermission.Description=\ - \u0422\u043e\u0432\u0430 \u0434\u0430\u0432\u0430 \u043f\u0440\u0430\u0432\u043e \u0437\u0430 \u0438\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0446\u044f\u043b\u043e\u0442\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e. + Това дава право за изтриване на цÑлото Ñъдържание на работно проÑтранÑтво. AbstractProject.CancelPermission.Description=\ - \u0422\u043e\u0432\u0430 \u0434\u0430\u0432\u0430 \u043f\u0440\u0430\u0432\u043e \u0437\u0430 \u043e\u0442\u043c\u044f\u043d\u0430 \u043d\u0430 \u0437\u0430\u043f\u043b\u0430\u043d\u0443\u0432\u0430\u043d\u043e \u0438 \u0441\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435. + Това дава право за отмÑна на запланувано и Ñпиране на изпълнÑвано изграждане. LabelExpression.InvalidBooleanExpression=\ - \u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u0435\u043d \u0431\u0443\u043b\u0435\u0432 \u0438\u0437\u0440\u0430\u0437: {0} + Ðеправилен булев израз: {0} AbstractProject.CustomWorkspaceEmpty=\ - \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u043e\u0442\u043e \u0440\u0430\u0431\u043e\u0442\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u0435 \u043f\u0440\u0430\u0437\u043d\u043e. + ПотребителÑкото работно проÑтранÑтво е празно. LabelExpression.LabelLink=\ - \u0415\u0442\u0438\u043a\u0435\u0442\u044a\u0442 {1} \u0441\u0435 \u043e\u0431\u0441\u043b\u0443\u0436\u0432\u0430 \u043e\u0442\ - {3,choice,0#0 \u043c\u0430\u0448\u0438\u043d\u0438|1#1 \u043c\u0430\u0448\u0438\u043d\u0430|1<{3} \u043c\u0430\u0448\u0438\u043d\u0438}{4,choice,0#|1# \u0438 1 \u043e\u0431\u043b\u0430\u043a|1< \u0438 {4} \u043e\u0431\u043b\u0430\u043a\u0430} + Етикетът {1} Ñе обÑлужва от\ + {3,choice,0#0 машини|1#1 машина|1<{3} машини}{4,choice,0#|1# и 1 облак|1< и {4} облака} Api.MultipleMatch=\ - \u0418\u0437\u0440\u0430\u0437\u044a\u0442 \u0447\u0440\u0435\u0437 XPath \u201e{0}\u201c \u043e\u0442\u0433\u043e\u0432\u0430\u0440\u044f \u043d\u0430 {1} \u043c\u0430\u0448\u0438\u043d\u0438. \u0417\u0430\u0434\u0430\u0439\u0442\u0435 \u0438\u0437\u0440\u0430\u0437, \u043a\u043e\u0439\u0442\u043e \u0434\u0430 \ - \u043d\u0430\u043f\u0430\u0441\u0432\u0430 \u0441\u0430\u043c\u043e \u0435\u0434\u043d\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 \u0438\u043b\u0438 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u044a\u0440\u0430 \u201ewrapper\u201c, \u0437\u0430 \u0434\u0430 \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\ - \u0432\u0441\u0438\u0447\u043a\u0438 \u0442\u0435\u0437\u0438 \u043c\u0430\u0448\u0438\u043d\u0438 \u0432 \u043e\u0431\u0449 \u0435\u043b\u0435\u043c\u0435\u043d\u0442. + Изразът чрез XPath „{0}“ Ð¾Ñ‚Ð³Ð¾Ð²Ð°Ñ€Ñ Ð½Ð° {1} машини. Задайте израз, който да \ + напаÑва Ñамо една машина или използвайте параметъра „wrapper“, за да включите\ + вÑички тези машини в общ елемент. Api.NoXPathMatch=\ - \u0418\u0437\u0440\u0430\u0437\u044a\u0442 \u0447\u0440\u0435\u0437 XPath \u201e{0}\u201c \u043d\u0435 \u043d\u0430\u043f\u0430\u0441\u0432\u0430 \u0441 \u043d\u0438\u043a\u043e\u044f \u043c\u0430\u0448\u0438\u043d\u0430. + Изразът чрез XPath „{0}“ не напаÑва Ñ Ð½Ð¸ÐºÐ¾Ñ Ð¼Ð°ÑˆÐ¸Ð½Ð°. BallColor.Aborted=\ - \u041e\u0442\u043c\u0435\u043d\u0435\u043d\u043e + Отменено BallColor.Disabled=\ - \u0418\u0437\u043a\u043b\u044e\u0447\u0435\u043d\u043e + Изключено BallColor.Failed=\ - \u041d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e + ÐеуÑпешно BallColor.InProgress=\ - \u0418\u0437\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u0435 + Изпълнение BallColor.NotBuilt=\ - \u041d\u0435\u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u043e + Ðеизграждано BallColor.Pending=\ - \u041f\u0440\u0435\u0434\u0441\u0442\u043e\u0438 + ПредÑтои BallColor.Success=\ - \u0423\u0441\u043f\u0435\u0448\u043d\u043e + УÑпешно BallColor.Unstable=\ - \u041d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u043d\u043e + ÐеÑтабилно Build.post_build_steps_failed=\ - \u0421\u0442\u044a\u043f\u043a\u0438\u0442\u0435 \u0441\u043b\u0435\u0434 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e \u0441\u0430 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u0438 + Стъпките Ñлед изграждането Ñа неуÑпешни CLI.delete-job.shortDescription=\ - \u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430. + Изтриване на задача. CLI.reload-job.shortDescription=\ - \u041f\u0440\u0435\u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430\u0442\u0430 \u043e\u0442 \u0434\u0438\u0441\u043a\u0430. + Презареждане на задачата от диÑка. CLI.clear-queue.shortDescription=\ - \u0418\u0437\u0447\u0438\u0441\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043e\u043f\u0430\u0448\u043a\u0430\u0442\u0430 \u0441\u044a\u0441 \u0437\u0430\u0434\u0430\u0447\u0438. + ИзчиÑтване на опашката ÑÑŠÑ Ð·Ð°Ð´Ð°Ñ‡Ð¸. CLI.delete-node.shortDescription=\ - \u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043c\u0430\u0448\u0438\u043d\u0430. + Изтриване на машина. CLI.online-node.shortDescription=\ - \u041e\u0442\u043d\u043e\u0432\u043e \u0434\u0430 \u0441\u0435 \u043f\u043e\u043b\u0437\u0432\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f. \u041e\u0442\u043c\u0435\u043d\u044f\u043d\u0435 \u043d\u0430 \u043f\u0440\u0435\u0434\u0445\u043e\u0434\u043d\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0430\ - \u201eoffline-node\u201c. + Отново да Ñе ползва машина за изгражданиÑ. ОтменÑне на предходна команда\ + „offline-node“. CLI.disconnect-node.shortDescription=\ - \u041f\u0440\u0435\u043a\u044a\u0441\u0432\u0430\u043d\u0435 \u043d\u0430 \u0432\u0440\u044a\u0437\u043a\u0430\u0442\u0430 \u0441 \u043c\u0430\u0448\u0438\u043d\u0430. + ПрекъÑване на връзката Ñ Ð¼Ð°ÑˆÐ¸Ð½Ð°. CLI.connect-node.shortDescription=\ - \u0421\u0432\u044a\u0440\u0437\u0432\u0430\u043d\u0435 \u043a\u044a\u043c \u043c\u0430\u0448\u0438\u043d\u0430. + Свързване към машина. CLI.offline-node.shortDescription=\ - \u0412\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u043f\u0440\u0435\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f \u0434\u043e\u043a\u0430\u0442\u043e \u043d\u0435 \u0441\u0435\ - \u0432\u044a\u0432\u0435\u0434\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u0430 \u201eonline-node\u201c. + Временно преуÑтановÑване на ползването на машина за Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ Ð´Ð¾ÐºÐ°Ñ‚Ð¾ не Ñе\ + въведе командата „online-node“. CLI.wait-node-online.shortDescription=\ - \u0418\u0437\u0447\u0430\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 \u0434\u0430 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f. + Изчакване на машина да е на линиÑ. CLI.wait-node-offline.shortDescription=\ - \u0418\u0437\u0447\u0430\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 \u0434\u0430 \u043d\u0435 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f. + Изчакване на машина да не е на линиÑ. ComputerSet.DisplayName=\ - \u041a\u043e\u043c\u043f\u044e\u0442\u0440\u0438 + Компютри Descriptor.From=\ - (\u043e\u0442 {0}) + (от {0}) Executor.NotAvailable=\ - \u041b\u0438\u043f\u0441\u0432\u0430 + ЛипÑва FreeStyleProject.DisplayName=\ - \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 + ПотребителÑка задача FreeStyleProject.Description=\ - \u0422\u043e\u0432\u0430 \u0435 \u043e\u0441\u043d\u043e\u0432\u043d\u0430 \u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u043d\u043e\u0441\u0442 \u0432 Jenkins. Jenkins \u043c\u043e\u0436\u0435 \u0434\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u0438 \u043f\u0440\u043e\u0435\u043a\u0442 \u043a\u0430\u0442\u043e\ - \u043a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u0430 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u0437\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435 \u0441 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u0437\u0430\ - \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442. \u0422\u043e\u0432\u0430 \u0432\u0438 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0432\u0430 \u0434\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 Jenkins \u0438 \u0437\u0430 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u0438 \u043e\u0442\ - \u043e\u0441\u043d\u043e\u0432\u043d\u0430\u0442\u0430 \u043c\u0443 \u0446\u0435\u043b\u0438. + Това е оÑновна функционалноÑÑ‚ в Jenkins. Jenkins може да изгради проект като\ + комбинира произволна ÑиÑтема за управление на верÑиите Ñ Ð¿Ñ€Ð¾Ð¸Ð·Ð²Ð¾Ð»Ð½Ð° ÑиÑтема за\ + изграждане на проект. Това ви позволÑва да ползвате Jenkins и за различни от\ + оÑновната му цели. Hudson.BadPortNumber=\ - \u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u0435\u043d \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043f\u043e\u0440\u0442 \u201e{0}\u201c + Ðеправилен номер на порт „{0}“ Hudson.Computer.Caption=\ - \u0423\u043f\u0440\u0430\u0432\u043b\u044f\u0432\u0430\u0449 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440 + УправлÑващ компютър Hudson.Computer.DisplayName=\ - \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0432\u0430\u0449 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440 + управлÑващ компютър Hudson.ControlCodeNotAllowed=\ - \u041a\u043e\u043d\u0442\u0440\u043e\u043b\u043d\u0438 \u0437\u043d\u0430\u0446\u0438 \u043d\u0435 \u0441\u0430 \u043f\u043e\u0437\u0432\u043e\u043b\u0435\u043d\u0438: {0} + Контролни знаци не Ñа позволени: {0} Hudson.DisplayName=\ Jenkins Hudson.JobAlreadyExists=\ - \u0412\u0435\u0447\u0435 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 \u043d\u0430 \u0438\u043c\u0435 \u201e{0}\u201c. + Вече ÑъщеÑтвува задача на име „{0}“. Hudson.NoJavaInPath=\ - \u0418\u0437\u043f\u044a\u043b\u043d\u0438\u043c\u0438\u044f\u0442 \u0444\u0430\u0439\u043b \u201ejava\u201c \u043d\u0435 \u0435 \u0432 \u043f\u044a\u0442\u0438\u0449\u0430\u0442\u0430, \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438 \u0432 \u043f\u0440\u043e\u043c\u0435\u043d\u043b\u0438\u0432\u0430\u0442\u0430 \u043d\u0430 \u0441\u0440\u0435\u0434\u0430\u0442\u0430\ - \u201ePATH\u201c. \u041f\u0440\u043e\u0431\u0432\u0430\u0439\u0442\u0435 \u0434\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u0435 \u0441\u0440\u0435\u0434\u0430\u0442\u0430 \u0437\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430\ - \u043d\u0430 Java (JDK). + ИзпълнимиÑÑ‚ файл „java“ не е в пътищата, включени в променливата на Ñредата\ + „PATH“. Пробвайте да наÑтроите Ñредата за разработка\ + на Java (JDK). Hudson.NoName=\ - \u041d\u0435 \u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u043e \u0438\u043c\u0435. + Ðе е указано име. Hudson.NoSuchDirectory=\ - \u041d\u044f\u043c\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u043d\u0430 \u0438\u043c\u0435 \u201e{0}\u201c + ÐÑма Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° име „{0}“ Hudson.NodeBeingRemoved=\ - \u041a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u0430 \u0441\u0435 \u0438\u0437\u0432\u0430\u0436\u0434\u0430 \u043e\u0442 \u043a\u043b\u044a\u0441\u0442\u044a\u0440\u0430 + Компютъра Ñе изважда от клъÑтъра Hudson.NotAPlugin=\ - \u201e{0}\u201c \u043d\u0435 \u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430 \u043d\u0430 Jenkins. + „{0}“ не е приÑтавка на Jenkins. Hudson.NotJDKDir=\ - \u201e{0}\u201c \u043d\u0435 \u0435 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u043d\u0430 \u0441\u0440\u0435\u0434\u0430\u0442\u0430 \u0437\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043d\u0430 Java (JDK). + „{0}“ не е Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° Ñредата за разработка на Java (JDK). Hudson.Permissions.Title=\ - \u041e\u0431\u0449\u043e + Общо Hudson.USER_CONTENT_README=\ - \u0424\u0430\u0439\u043b\u043e\u0432\u0435\u0442\u0435 \u0432 \u0442\u0430\u0437\u0438 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u0449\u0435 \u0441\u0430 \u0434\u043e\u0441\u0442\u044a\u043f\u043d\u0438 \u043f\u0440\u0435\u0437 \u0430\u0434\u0440\u0435\u0441\u0430 \ - \u201ehttp://yourjenkins/userContent/\u201c. + Файловете в тази Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ñ‰Ðµ Ñа доÑтъпни през адреÑа \ + „http://yourjenkins/userContent/“. Hudson.UnsafeChar=\ - \u041e\u043f\u0430\u0441\u043d\u043e \u0435 \u0434\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u0437\u043d\u0430\u043a\u0430 \u201e{0}\u201c. + ОпаÑно е да използвате знака „{0}“. Hudson.ViewAlreadyExists=\ - \u0412\u0435\u0447\u0435 \u0438\u043c\u0430 \u0438\u0437\u0433\u043b\u0435\u0434 \u0441 \u0438\u043c\u0435 \u201e{0}\u201c. + Вече има изглед Ñ Ð¸Ð¼Ðµ „{0}“. Hudson.ViewName=\ - \u0412\u0441\u0438\u0447\u043a\u0438 + Ð’Ñички Hudson.NotANumber=\ - \u041d\u0435 \u0435 \u0447\u0438\u0441\u043b\u043e. + Ðе е чиÑло. Hudson.NotAPositiveNumber=\ - \u041d\u0435 \u0435 \u043f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u043d\u043e \u0447\u0438\u0441\u043b\u043e. + Ðе е положително чиÑло. Hudson.NotANonNegativeNumber=\ - \u0427\u0438\u0441\u043b\u043e\u0442\u043e \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0435 \u043e\u0442\u0440\u0438\u0446\u0430\u0442\u0435\u043b\u043d\u043e. + ЧиÑлото не може да е отрицателно. Hudson.NotANegativeNumber=\ - \u0427\u0438\u0441\u043b\u043e\u0442\u043e \u043d\u0435 \u0435 \u043e\u0442\u0440\u0438\u0446\u0430\u0442\u0435\u043b\u043d\u043e. + ЧиÑлото не е отрицателно. Hudson.NotUsesUTF8ToDecodeURL=\ - \u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440\u044a\u0442 \u0437\u0430 \u0441\u044a\u0440\u0432\u043b\u0435\u0442\u0438 \u043d\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 UTF-8 \u0437\u0430 \u0434\u0435\u043a\u043e\u0434\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0434\u0440\u0435\u0441\u0438. \u0417\u043d\u0430\u0446\u0438\ - \u0438\u0437\u0432\u044a\u043d ASCII \u0432 \u0438\u043c\u0435\u043d\u0430\u0442\u0430 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0438 \u0438 \u0434\u0440. \u0449\u0435 \u043f\u0440\u0438\u0447\u0438\u043d\u044f\u0442 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0438. \u0417\u0430 \u043f\u043e\u0432\u0435\u0447\u0435\ - \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043f\u043e\u0433\u043b\u0435\u0434\u043d\u0435\u0442\u0435\ - \u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440\u0438\ - \u0438\ + Контейнерът за Ñървлети не използва UTF-8 за декодиране на адреÑи. Знаци\ + извън ASCII в имената на задачи и др. ще причинÑÑ‚ проблеми. За повече\ + Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¿Ð¾Ð³Ð»ÐµÐ´Ð½ÐµÑ‚Ðµ\ + Контейнери\ + и\ \ - \u0418\u043d\u0442\u0435\u0440\u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u043d\u0430 Tomcat. + Ð˜Ð½Ñ‚ÐµÑ€Ð½Ð°Ñ†Ð¸Ð¾Ð½Ð°Ð»Ð¸Ð·Ð°Ñ†Ð¸Ñ Ð½Ð° Tomcat. Hudson.AdministerPermission.Description=\ - \u0422\u043e\u0432\u0430 \u0434\u0430\u0432\u0430 \u043f\u0440\u0430\u0432\u043e \u0437\u0430 \u043f\u0440\u043e\u043c\u044f\u043d\u0430 \u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u0438\u0442\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438, \u043a\u0430\u043a\u0442\u043e \u0438 \u043f\u044a\u043b\u0435\u043d \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e\ - \u043b\u043e\u043a\u0430\u043b\u043d\u0430\u0442\u0430 \u0444\u0430\u0439\u043b\u043e\u0432\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u0432 \u0440\u0430\u043c\u043a\u0438\u0442\u0435 \u043d\u0430 \u043f\u0440\u0430\u0432\u0430\u0442\u0430 \u0441\u043f\u043e\u0440\u0435\u0434 \u0440\u0430\u0431\u043e\u0442\u0435\u0449\u0430\u0442\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u0430\ - \u0441\u0438\u0441\u0442\u0435\u043c\u0430. + Това дава право за промÑна на ÑиÑтемните наÑтройки, както и пълен доÑтъп до\ + локалната файлова ÑиÑтема в рамките на правата Ñпоред работещата операционна\ + ÑиÑтема. Hudson.ReadPermission.Description=\ - \u0422\u043e\u0432\u0430 \u0434\u0430\u0432\u0430 \u043f\u0440\u0430\u0432\u043e \u0437\u0430 \u0440\u0430\u0437\u0433\u043b\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0447\u0442\u0438 \u0432\u0441\u0438\u0447\u043a\u0438 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0438 \u043d\u0430 Jenkins. \u0410\u043a\u043e \u043d\u0435\ - \u0438\u0441\u043a\u0430\u0442\u0435 \u043d\u0435\u043f\u043e\u0437\u043d\u0430\u0442\u0438\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 \u0434\u0430 \u0432\u0438\u0436\u0434\u0430\u0442 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0438\u0442\u0435 \u043d\u0430 Jenkins, \u043e\u0442\u043d\u0435\u043c\u0435\u0442\u0435 \u0442\u043e\u0432\u0430\ - \u043f\u0440\u0430\u0432\u043e \u043d\u0430 \u0430\u043d\u043e\u043d\u0438\u043c\u043d\u0438\u044f \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b (\u201eanonymous\u201c) \u0438 \u0433\u043e \u0434\u0430\u0439\u0442\u0435 \u043d\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043b\u0438\u0442\u0435 \u0441\u0435\ - \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 (\u201eauthenticated\u201c). + Това дава право за разглеждане на почти вÑички Ñтраници на Jenkins. Ðко не\ + иÑкате непознатите потребители да виждат Ñтраниците на Jenkins, отнемете това\ + право на Ð°Ð½Ð¾Ð½Ð¸Ð¼Ð½Ð¸Ñ Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ» („anonymous“) и го дайте на идентифициралите Ñе\ + потребители („authenticated“). Hudson.NodeDescription=\ - \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0432\u0430\u0449\u0438\u044f\u0442 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440 \u043d\u0430 Jenkins + управлÑващиÑÑ‚ компютър на Jenkins Item.Permissions.Title=\ - \u0417\u0430\u0434\u0430\u0447\u0430 + Задача Item.CREATE.description=\ - \u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430. + Създаване на задача. Item.DELETE.description=\ - \u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430. + Изтриване на задача. Item.CONFIGURE.description=\ - \u041f\u0440\u043e\u043c\u044f\u043d\u0430 \u043d\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430. + ПромÑна на наÑтройките на задача. Item.READ.description=\ - \u041f\u0440\u0435\u0433\u043b\u0435\u0434 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430. (\u041c\u043e\u0436\u0435 \u0434\u0430 \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u0435 \u0442\u043e\u0432\u0430 \u043f\u0440\u0430\u0432\u043e, \u043d\u043e \u0447\u0440\u0435\u0437 \u043f\u0440\u0430\u0432\u043e\u0442\u043e \u0437\u0430 \u043e\u0442\u043a\u0440\u0438\u0432\u0430\u043d\u0435\ - \u0434\u0430 \u043d\u0430\u043a\u0430\u0440\u0430\u0442\u0435 \u0430\u043d\u043e\u043d\u0438\u043c\u043d\u0438\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 \u0434\u0430 \u0441\u0435 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u0442, \u0437\u0430 \u0434\u0430 \u0432\u0438\u0434\u044f\u0442 \u0437\u0430\u0434\u0430\u0447\u0430\u0442\u0430.) + Преглед на задача. (Може да отмените това право, но чрез правото за откриване\ + да накарате анонимните потребители да Ñе идентифицират, за да видÑÑ‚ задачата.) Job.AllRecentBuildFailed=\ - \u0412\u0441\u0438\u0447\u043a\u0438 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f \u0441\u0430 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u0438. + Ð’Ñички поÑледни Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ Ñа неуÑпешни. Job.BuildStability=\ - \u0421\u0442\u0430\u0431\u0438\u043b\u043d\u043e\u0441\u0442 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f\u0442\u0430: {0} + СтабилноÑÑ‚ на изгражданиÑта: {0} Job.NOfMFailed=\ - {0} \u043e\u0442 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0442\u0435 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f {1} \u0441\u0430 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u0438. + {0} от поÑледните Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ {1} Ñа неуÑпешни. Job.NoRecentBuildFailed=\ - \u0421\u043a\u043e\u0440\u043e \u043d\u0435 \u0435 \u0438\u043c\u0430\u043b\u043e \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f. + Скоро не е имало неуÑпешни изгражданиÑ. Job.Pronoun=\ - \u041f\u0440\u043e\u0435\u043a\u0442 + Проект Job.minutes=\ - \u043c\u0438\u043d. + мин. Job.NoRenameWhileBuilding=\ - \u041d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u043f\u0440\u0435\u0438\u043c\u0435\u043d\u0443\u0432\u0430\u0442\u0435 \u0437\u0430\u0434\u0430\u0447\u0430 \u043f\u043e \u0432\u0440\u0435\u043c\u0435 \u043d\u0430 \u043d\u0435\u0439\u043d\u043e\u0442\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 . + Ðе може да преименувате задача по време на нейното изграждане . Job.you_must_use_the_save_button_if_you_wish=\ - \u0417\u0430 \u0434\u0430 \u043f\u0440\u0435\u0438\u043c\u0435\u043d\u0443\u0432\u0430\u0442\u0435 \u0437\u0430\u0434\u0430\u0447\u0430, \u043d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 \u0431\u0443\u0442\u043e\u043d\u0430 \u201e\u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435\u201c. + За да преименувате задача, натиÑнете бутона „Запазване“. Label.GroupOf=\ - \u0433\u0440\u0443\u043f\u0430\u0442\u0430 \u043d\u0430 {0} + групата на {0} Label.InvalidLabel=\ - \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u0435\u043d \u0435\u0442\u0438\u043a\u0435\u0442 + неправилен етикет Label.ProvisionedFrom=\ - \u041d\u0430\u0431\u0430\u0432\u0435\u043d\u0430 \u043e\u0442 {0} + Ðабавена от {0} ManageJenkinsAction.DisplayName=\ - \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 Jenkins + Управление на Jenkins Queue.AllNodesOffline=\ - \u041d\u0438\u043a\u043e\u044f \u043c\u0430\u0448\u0438\u043d\u0430 \u0441 \u0435\u0442\u0438\u043a\u0435\u0442 \u201e{0}\u201c \u043d\u0435 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f. + ÐÐ¸ÐºÐ¾Ñ Ð¼Ð°ÑˆÐ¸Ð½Ð° Ñ ÐµÑ‚Ð¸ÐºÐµÑ‚ „{0}“ не е на линиÑ. Queue.LabelHasNoNodes=\ - \u041d\u044f\u043c\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 \u0441 \u0435\u0442\u0438\u043a\u0435\u0442 \u201e{0}\u201c. + ÐÑма машина Ñ ÐµÑ‚Ð¸ÐºÐµÑ‚ „{0}“. Queue.BlockedBy=\ - \u0411\u043b\u043e\u043a\u0438\u0440\u0430\u043d\u043e \u043e\u0442 \u201e{0}\u201c. + Блокирано от „{0}“. Queue.HudsonIsAboutToShutDown=\ - Jenkins \u0449\u0435 \u0441\u0435 \u0441\u043f\u0440\u0435. + Jenkins ще Ñе Ñпре. Queue.InProgress=\ - \u0418\u0437\u0432\u044a\u0440\u0448\u0432\u0430 \u0441\u0435 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435. + Извършва Ñе изграждане. Queue.InQuietPeriod=\ - \u0418\u043d\u0442\u0435\u0440\u0432\u0430\u043b \u0442\u0438\u0448\u0438\u043d\u0430, \u0438\u0437\u0442\u0438\u0447\u0430 \u0441\u043b\u0435\u0434 {0} + Интервал тишина, изтича Ñлед {0} Queue.NodeOffline=\ - \u201e{0}\u201c \u043d\u0435 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f. + „{0}“ не е на линиÑ. Queue.Unknown=\ - \u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e + ÐеизвеÑтно Queue.WaitingForNextAvailableExecutor=\ - \u0418\u0437\u0447\u0430\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u043b\u0435\u0434\u0432\u0430\u0449\u0438\u044f \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440. + Изчакване на ÑÐ»ÐµÐ´Ð²Ð°Ñ‰Ð¸Ñ Ð¿Ð¾Ð´Ñ‡Ð¸Ð½ÐµÐ½ компютър. Queue.WaitingForNextAvailableExecutorOn=\ - \u0418\u0437\u0447\u0430\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u043b\u0435\u0434\u0432\u0430\u0449\u0438\u044f \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440 \u0437\u0430 \u201e{0}\u201c. + Изчакване на ÑÐ»ÐµÐ´Ð²Ð°Ñ‰Ð¸Ñ Ð¿Ð¾Ð´Ñ‡Ð¸Ð½ÐµÐ½ компютър за „{0}“. Queue.init=\ - \u0412\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043e\u043f\u0430\u0448\u043a\u0430\u0442\u0430 \u0441 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f. + ВъзÑтановÑване на опашката Ñ Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ. ResultTrend.Aborted=\ - \u041f\u0440\u0435\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u043e + ПреуÑтановено ResultTrend.Failure=\ - \u041d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e + ÐеуÑпешно ResultTrend.Fixed=\ - \u041e\u043f\u0440\u0430\u0432\u0435\u043d\u043e + Оправено ResultTrend.NotBuilt=\ - \u041d\u0435\u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u043e + Ðеизграждано ResultTrend.NowUnstable=\ - \u041d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u043d\u043e + ÐеÑтабилно ResultTrend.StillFailing=\ - \u0412\u0441\u0435 \u043e\u0449\u0435 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e + Ð’Ñе още неуÑпешно ResultTrend.StillUnstable=\ - \u0412\u0441\u0435 \u043e\u0449\u0435 \u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u043d\u043e + Ð’Ñе още неÑтабилно ResultTrend.Success=\ - \u0423\u0441\u043f\u0435\u0448\u043d\u043e + УÑпешно ResultTrend.Unstable=\ - \u041d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u043d\u043e + ÐеÑтабилно Run._is_waiting_for_a_checkpoint_on_=\ - {0} \u0438\u0437\u0447\u0430\u043a\u0432\u0430 \u043f\u0440\u0430\u0432\u0438\u043b\u043d\u0438\u044f \u043c\u043e\u043c\u0435\u043d\u0442 \u0437\u0430 {1} + {0} изчаква Ð¿Ñ€Ð°Ð²Ð¸Ð»Ð½Ð¸Ñ Ð¼Ð¾Ð¼ÐµÐ½Ñ‚ за {1} Run.BuildAborted=\ - \u041f\u0440\u0435\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + ПреуÑтановено изграждане Run.MarkedExplicitly=\ - \u0422\u043e\u0437\u0438 \u0437\u0430\u043f\u0438\u0441 \u0435 \u043e\u0442\u0431\u0435\u043b\u044f\u0437\u0430\u043d \u0437\u0430 \u0441\u044a\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435. + Този Ð·Ð°Ð¿Ð¸Ñ Ðµ отбелÑзан за Ñъхранение. Run.Permissions.Title=\ - \u0418\u0437\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u0435 + Изпълнение Run.running_as_=\ - \u0418\u0437\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u0435 \u043a\u0430\u0442\u043e \u201e{0}\u201c + Изпълнение като „{0}“ Run.UnableToDelete=\ - \u041d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u201e{0}\u201c: {1} + ÐеуÑпешно изтриване на „{0}“: {1} Run.DeletePermission.Description=\ - \u0422\u043e\u0432\u0430 \u0434\u0430\u0432\u0430 \u043f\u0440\u0430\u0432\u043e \u0437\u0430 \u0438\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u043f\u043e\u0441\u043e\u0447\u0435\u043d\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f \u043e\u0442 \u0438\u0441\u0442\u043e\u0440\u0438\u044f\u0442\u0430 \u043d\u0430\ - \u0437\u0430\u0434\u0430\u0447\u0438\u0442\u0435. + Това дава право за изтриването на поÑочени Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ Ð¾Ñ‚ иÑториÑта на\ + задачите. Run.UpdatePermission.Description=\ - \u0422\u043e\u0432\u0430 \u0434\u0430\u0432\u0430 \u043f\u0440\u0430\u0432\u043e \u0437\u0430 \u043f\u0440\u043e\u043c\u044f\u043d\u0430\u0442\u0430 \u043d\u0430 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u0442\u043e \u0438 \u0434\u0440\u0443\u0433\u0438\u0442\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435.\ - \u0422\u0430\u043a\u0430 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0437\u0430\u043f\u0430\u0437\u0432\u0430\u0442 \u043f\u0440\u0438\u0447\u0438\u043d\u0438\u0442\u0435 \u0437\u0430 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440. + Това дава право за промÑната на опиÑанието и другите ÑвойÑтва на изграждане.\ + Така могат да Ñе запазват причините за неуÑпешно изграждане например. Run.ArtifactsPermission.Description=\ - \u0422\u043e\u0432\u0430 \u0434\u0430\u0432\u0430 \u043f\u0440\u0430\u0432\u043e \u0437\u0430 \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u0438\u0442\u0435, \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438 \u043e\u0442 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f\u0442\u0430. \u041d\u0435\ - \u0434\u0430\u0432\u0430\u0439\u0442\u0435 \u0442\u043e\u0432\u0430 \u043f\u0440\u0430\u0432\u043e, \u0430\u043a\u043e \u0438\u0441\u043a\u0430\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438\u0442\u0435 \u0434\u0430 \u043d\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0438\u0437\u0442\u0435\u0433\u043b\u044f\u0442\ - \u0438\u0437\u0433\u0440\u0430\u0434\u0435\u043d\u043e\u0442\u043e. + Това дава право за доÑтъп до артефактите, произведени от изгражданиÑта. Ðе\ + давайте това право, ако иÑкате потребителите да не могат да изтеглÑÑ‚\ + изграденото. Run.InProgressDuration=\ - {0} \u0438 \u0440\u0430\u0441\u0442\u0435 + {0} и раÑте Run.NotStartedYet=\ - \u041e\u0449\u0435 \u043d\u0435 \u0435 \u0437\u0430\u043f\u043e\u0447\u043d\u0430\u043b\u043e + Още не е започнало Run.ArtifactsBrowserTitle=\ - \u0410\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u0438 \u043d\u0430 {0} {1} + Ðртефакти на {0} {1} Run.Summary.Stable=\ - \u0441\u0442\u0430\u0431\u0438\u043b\u043d\u043e + Ñтабилно Run.Summary.Unstable=\ - \u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u043d\u043e + неÑтабилно Run.Summary.Aborted=\ - \u043f\u0440\u0435\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u043e + преуÑтановено Run.Summary.NotBuilt=\ - \u043d\u0435\u0438\u0437\u0433\u0440\u0430\u0434\u0435\u043d\u043e + неизградено Run.Summary.BackToNormal=\ - \u043d\u043e\u0440\u043c\u0430\u043b\u043d\u043e + нормално Run.Summary.BrokenForALongTime=\ - \u0441\u0447\u0443\u043f\u0435\u043d\u043e \u043e\u0442 \u043c\u043d\u043e\u0433\u043e \u0432\u0440\u0435\u043c\u0435 + Ñчупено от много време Run.Summary.BrokenSinceThisBuild=\ - \u0441\u0447\u0443\u043f\u0435\u043d\u043e \u043e\u0442 \u0442\u043e\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + Ñчупено от това изграждане Run.Summary.BrokenSince=\ - \u0441\u0447\u0443\u043f\u0435\u043d\u043e \u043e\u0442 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u2116\u200a{0} + Ñчупено от изграждане № {0} Run.Summary.Unknown=\ - \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e + неизвеÑтно Slave.Network.Mounted.File.System.Warning=\ - \u0421\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u0441\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u0444\u0430\u0439\u043b\u043e\u0432\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430, \u043c\u043e\u043d\u0442\u0438\u0440\u0430\u043d\u0430 \u043f\u043e\ - \u043c\u0440\u0435\u0436\u0430\u0442\u0430, \u043a\u0430\u0442\u043e \u043a\u043e\u0440\u0435\u043d\u043e\u0432\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f? \u041d\u044f\u043c\u0430 \u043d\u0443\u0436\u0434\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f\u0442\u0430 \u0434\u0430 \u0441\u0435 \u0432\u0438\u0436\u0434\u0430 \u043e\u0442\ - \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0432\u0430\u0449\u0438\u044f \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440. + Сигурни ли Ñте, че иÑкате Ñа използвате файлова ÑиÑтема, монтирана по\ + мрежата, като коренова директориÑ? ÐÑма нужда директориÑта да Ñе вижда от\ + управлÑÐ²Ð°Ñ‰Ð¸Ñ ÐºÐ¾Ð¼Ð¿ÑŽÑ‚ÑŠÑ€. Slave.Remote.Director.Mandatory=\ - \u041e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d\u0430\u0442\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u0435 \u0437\u0430\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u0430. + Отдалечената Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ðµ задължителна. Slave.Remote.Relative.Path.Warning=\ - \u0421\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u0441\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u0435\u043d \u043f\u044a\u0442 \u043a\u0430\u0442\u043e \u043a\u043e\u0440\u0435\u043d\u043e\u0432\u0430\ - \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f? \u041f\u0440\u043e\u0432\u0435\u0440\u0435\u0442\u0435 \u0434\u0430\u043b\u0438 \u0438\u0437\u0431\u0440\u0430\u043d\u0438\u044f\u0442 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0449 \u043f\u0440\u043e\u0446\u0435\u0441 \u043d\u0435 \u0437\u0430\u043c\u044a\u0440\u0441\u044f\u0432\u0430 \u043d\u0430 \u0442\u0435\u043a\u0443\u0449\u0430\u0442\u0430\ - \u0440\u0430\u0431\u043e\u0442\u043d\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f. \u041f\u0440\u0435\u043f\u043e\u0440\u044a\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u0435 \u0434\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u0430\u0431\u0441\u043e\u043b\u044e\u0442\u0435\u043d \u043f\u044a\u0442. + Сигурни ли Ñте, че иÑкате Ñа използвате отноÑителен път като коренова\ + директориÑ? Проверете дали избраниÑÑ‚ Ñтартиращ Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð½Ðµ замърÑÑва на текущата\ + работна директориÑ. Препоръчително е да ползвате абÑолютен път. TopLevelItemDescriptor.NotApplicableIn=\ - {0} \u0435\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u043d\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0430\u0442 \u0432 {1} + {0} елемента не могат да Ñе приложат в {1} UpdateCenter.DownloadButNotActivated=\ - \u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0435\u0433\u043b\u044f\u043d\u0435. \u0429\u0435 \u0441\u0440\u0430\u0431\u043e\u0442\u0438 \u0441\u043b\u0435\u0434 \u0441\u043b\u0435\u0434\u0432\u0430\u0449\u043e\u0442\u043e \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435. + УÑпешно изтеглÑне. Ще Ñработи Ñлед Ñледващото реÑтартиране. UpdateCenter.n_a=\ - \u041b\u0438\u043f\u0441\u0432\u0430 + ЛипÑва View.Permissions.Title=\ - \u0418\u0437\u0433\u043b\u0435\u0434 + Изглед View.CreatePermission.Description=\ - \u0422\u043e\u0432\u0430 \u0434\u0430\u0432\u0430 \u043f\u0440\u0430\u0432\u043e \u0437\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u043e\u0432\u0438 \u0438\u0437\u0433\u043b\u0435\u0434\u0438. + Това дава право за Ñъздаване на нови изгледи. View.DeletePermission.Description=\ - \u0422\u043e\u0432\u0430 \u0434\u0430\u0432\u0430 \u043f\u0440\u0430\u0432\u043e \u0437\u0430 \u0438\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430\u0449\u0438 \u0438\u0437\u0433\u043b\u0435\u0434\u0438. + Това дава право за изтриване на ÑъщеÑтвуващи изгледи. View.ConfigurePermission.Description=\ - \u0422\u043e\u0432\u0430 \u0434\u0430\u0432\u0430 \u043f\u0440\u0430\u0432\u043e \u0437\u0430 \u043f\u0440\u043e\u043c\u044f\u043d\u0430 \u043d\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435 \u043d\u0430 \u0438\u0437\u0433\u043b\u0435\u0434\u0438\u0442\u0435. + Това дава право за промÑна на наÑтройките на изгледите. View.ReadPermission.Description=\ - \u0422\u043e\u0432\u0430 \u0434\u0430\u0432\u0430 \u043f\u0440\u0430\u0432\u043e \u0437\u0430 \u0432\u0438\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u043b\u0435\u0434\u0438\u0442\u0435 (\u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430 \u0441\u0435 \u043f\u0440\u0438 \u043e\u0431\u0449\u043e \u043f\u0440\u0430\u0432\u043e \u0437\u0430\ - \u0434\u043e\u0441\u0442\u044a\u043f). + Това дава право за виждане на изгледите (подразбира Ñе при общо право за\ + доÑтъп). View.MissingMode=\ - \u0412\u0438\u0434\u044a\u0442 \u043d\u0430 \u0438\u0437\u0433\u043b\u0435\u0434\u0430 \u043d\u0435 \u0435 \u0438\u0437\u0431\u0440\u0430\u043d. + Видът на изгледа не е избран. UpdateCenter.Status.CheckingInternet=\ - \u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043d\u0430 \u0432\u0440\u044a\u0437\u043a\u0430\u0442\u0430 \u043a\u044a\u043c \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442 + Проверка на връзката към Интернет UpdateCenter.Status.CheckingJavaNet=\ - \u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043d\u0430 \u0432\u0440\u044a\u0437\u043a\u0430\u0442\u0430 \u043a\u044a\u043c \u0446\u0435\u043d\u0442\u044a\u0440\u0430 \u0437\u0430 \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 + Проверка на връзката към центъра за обновÑване UpdateCenter.Status.Success=\ - \u0423\u0441\u043f\u0435\u0445 + УÑпех UpdateCenter.Status.UnknownHostException=\ - \u041d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u0430 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043d\u0430 \u0430\u0434\u0440\u0435\u0441\u0430 \u201e{0}\u201c.\ - \u0412\u0435\u0440\u043e\u044f\u0442\u043d\u043e \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u0435\ - \u0441\u044a\u0440\u0432\u044a\u0440-\u043f\u043e\u0441\u0440\u0435\u0434\u043d\u0438\u043a \u0437\u0430 HTTP. + ÐеуÑпешна проверка на адреÑа „{0}“.\ + ВероÑтно Ñ‚Ñ€Ñбва да наÑтроите\ + Ñървър-поÑредник за HTTP. UpdateCenter.Status.ConnectionFailed=\ - \u0412\u0435\u0440\u043e\u044f\u0442\u043d\u043e \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u0435\ - \u0441\u044a\u0440\u0432\u044a\u0440-\u043f\u043e\u0441\u0440\u0435\u0434\u043d\u0438\u043a \u0437\u0430 HTTP. + ВероÑтно Ñ‚Ñ€Ñбва да наÑтроите\ + Ñървър-поÑредник за HTTP. UpdateCenter.init=\ - \u0418\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0446\u0435\u043d\u0442\u044a\u0440\u0430 \u0437\u0430 \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 + Инициализиране на центъра за обновÑване UpdateCenter.PluginCategory.android=\ - \u041f\u0440\u043e\u0433\u0440\u0430\u043c\u0438\u0440\u0430\u043d\u0435 \u0437\u0430 Android + Програмиране за Android UpdateCenter.PluginCategory.builder=\ - \u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + ИнÑтрументи за изграждане UpdateCenter.PluginCategory.buildwrapper=\ - \u0421\u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0435, \u043e\u0431\u0432\u0438\u0432\u0430\u0449\u0438 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438\u0442\u0435 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + Скриптове, обвиващи инÑтрументите за изграждане UpdateCenter.PluginCategory.cli=\ - \u0418\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 \u0434\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u043d\u0438\u044f \u0440\u0435\u0434 + Ð˜Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ Ð´Ð° ÐºÐ¾Ð¼Ð°Ð½Ð´Ð½Ð¸Ñ Ñ€ÐµÐ´ UpdateCenter.PluginCategory.cloud=\ - \u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438 \u043d\u0430 \u043e\u0431\u043b\u0430\u0447\u043d\u0438 \u0443\u0441\u043b\u0443\u0433\u0438 + ДоÑтавчици на облачни уÑлуги UpdateCenter.PluginCategory.cluster=\ - \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u043a\u043b\u044a\u0441\u0442\u044a\u0440\u0430 \u0438 \u0440\u0430\u0437\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e\u0442\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + Управление на клъÑтъра и разпределеното изграждане UpdateCenter.PluginCategory.database=\ - \u0411\u0430\u0437\u0438 \u043e\u0442 \u0434\u0430\u043d\u043d\u0438 + Бази от данни UpdateCenter.PluginCategory.deployment=\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435 + ИнÑталиране UpdateCenter.PluginCategory.devops=\ DevOps UpdateCenter.PluginCategory.dotnet=\ - \u041f\u0440\u043e\u0433\u0440\u0430\u043c\u0438\u0440\u0430\u043d\u0435 \u0437\u0430 .NET + Програмиране за .NET UpdateCenter.PluginCategory.external=\ - \u0418\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f \u0441\u044a\u0441 \u0441\u0430\u0439\u0442\u043e\u0432\u0435 \u0438 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438 + Ð˜Ð½Ñ‚ÐµÐ³Ñ€Ð°Ñ†Ð¸Ñ ÑÑŠÑ Ñайтове и инÑтрументи UpdateCenter.PluginCategory.groovy-related=\ - \u0421\u0432\u044a\u0440\u0437\u0430\u043d\u0438 \u0441 Groovy + Свързани Ñ Groovy UpdateCenter.PluginCategory.ios=\ - \u041f\u0440\u043e\u0433\u0440\u0430\u043c\u0438\u0440\u0430\u043d\u0435 \u0437\u0430 iOS + Програмиране за iOS UpdateCenter.PluginCategory.api-plugin=\ - \u041f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438-\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 (\u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0441\u0435 \u043e\u0442 \u0434\u0440\u0443\u0433\u0438 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438) + ПриÑтавки-библиотеки (използват Ñе от други приÑтавки) UpdateCenter.PluginCategory.listview-column=\ - \u041a\u043e\u043b\u043e\u043d\u0438 \u0432 \u0441\u043f\u0438\u0441\u044a\u0447\u043d\u0438\u044f \u0438\u0437\u0433\u043b\u0435\u0434 + Колони в ÑпиÑÑŠÑ‡Ð½Ð¸Ñ Ð¸Ð·Ð³Ð»ÐµÐ´ UpdateCenter.PluginCategory.maven=\ Maven UpdateCenter.PluginCategory.misc=\ - \u0420\u0430\u0437\u043d\u0438 + Разни UpdateCenter.PluginCategory.notifier=\ - \u0418\u0437\u0432\u0435\u0441\u0442\u044f\u0432\u0430\u043d\u0435 \u043f\u0440\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + ИзвеÑÑ‚Ñване при изграждане UpdateCenter.PluginCategory.page-decorator=\ - \u0414\u0435\u043a\u043e\u0440\u0430\u0446\u0438\u044f \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0438\u0442\u0435 + Ð”ÐµÐºÐ¾Ñ€Ð°Ñ†Ð¸Ñ Ð½Ð° Ñтраниците UpdateCenter.PluginCategory.parameter=\ - \u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + Параметри за изграждане UpdateCenter.PluginCategory.post-build=\ - \u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441\u043b\u0435\u0434 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + Допълнителни дейÑÑ‚Ð²Ð¸Ñ Ñлед изграждане UpdateCenter.PluginCategory.python=\ - \u041f\u0440\u043e\u0433\u0440\u0430\u043c\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 Python + Програмиране на Python UpdateCenter.PluginCategory.report=\ - \u041e\u0442\u0447\u0435\u0442\u0438 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f\u0442\u0430 + Отчети за изгражданиÑта UpdateCenter.PluginCategory.ruby=\ - \u041f\u0440\u043e\u0433\u0440\u0430\u043c\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 Ruby + Програмиране на Ruby UpdateCenter.PluginCategory.runcondition=\ - \u0423\u0441\u043b\u043e\u0432\u0438\u044f \u0437\u0430 \u0438\u0437\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u0435 (\u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 \u0441\u0435 \u043e\u0442 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430\u0442\u0430 RunConditions) + УÑÐ»Ð¾Ð²Ð¸Ñ Ð·Ð° изпълнение (използва Ñе от приÑтавката RunConditions) UpdateCenter.PluginCategory.scala=\ - \u041f\u0440\u043e\u0433\u0440\u0430\u043c\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 Scala + Програмиране на Scala UpdateCenter.PluginCategory.scm=\ - \u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u0437\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435 + СиÑтема за управление на верÑиите UpdateCenter.PluginCategory.scm-related=\ - \u041e\u0449\u0435 \u0437\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u0442\u043e \u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435 + Още за управлението на верÑиите UpdateCenter.PluginCategory.security=\ - \u0421\u0438\u0433\u0443\u0440\u043d\u043e\u0441\u0442 + СигурноÑÑ‚ UpdateCenter.PluginCategory.test=\ - \u0422\u0435\u0441\u0442\u0432\u0430\u043d\u0435 + ТеÑтване UpdateCenter.PluginCategory.trigger=\ - \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f + Ðвтоматично Ñтартиране на Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ UpdateCenter.PluginCategory.ui=\ - \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 + ПотребителÑки Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ UpdateCenter.PluginCategory.upload=\ - \u041a\u0430\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u0438 + Качване на артефакти UpdateCenter.PluginCategory.user=\ - \u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 + Ð˜Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð¸ управление на потребители UpdateCenter.PluginCategory.view=\ - \u0418\u0437\u0433\u043b\u0435\u0434\u0438 + Изгледи UpdateCenter.PluginCategory.must-be-labeled=\ - \u0411\u0435\u0437 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f + Без ÐºÐ°Ñ‚ÐµÐ³Ð¾Ñ€Ð¸Ñ UpdateCenter.PluginCategory.unrecognized=\ - \u0420\u0430\u0437\u043d\u0438 ({0}) + Разни ({0}) Permalink.LastBuild=\ - \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + ПоÑледно изграждане Permalink.LastStableBuild=\ - \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e \u0441\u0442\u0430\u0431\u0438\u043b\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + ПоÑледно Ñтабилно изграждане Permalink.LastUnstableBuild=\ - \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e \u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + ПоÑледно неÑтабилно изграждане Permalink.LastUnsuccessfulBuild=\ - \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + ПоÑледно неуÑпешно изграждане Permalink.LastSuccessfulBuild=\ - \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + ПоÑледно уÑпешно изграждане Permalink.LastFailedBuild=\ - \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + ПоÑледно неуÑпешно изграждане Permalink.LastCompletedBuild=\ - \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e \u0437\u0430\u0432\u044a\u0440\u0448\u0435\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + ПоÑледно завършено изграждане ParameterAction.DisplayName=\ - \u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 + Параметри ParametersDefinitionProperty.DisplayName=\ - \u0422\u043e\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0435 \u043f\u043e \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 + Това изграждане е по параметри StringParameterDefinition.DisplayName=\ - \u041f\u0430\u0440\u0430\u043c\u0435\u0442\u044a\u0440-\u043d\u0438\u0437 + Параметър-низ TextParameterDefinition.DisplayName=\ - \u041f\u0430\u0440\u0430\u043c\u0435\u0442\u044a\u0440-\u0442\u0435\u043a\u0441\u0442 + Параметър-текÑÑ‚ FileParameterDefinition.DisplayName=\ - \u041f\u0430\u0440\u0430\u043c\u0435\u0442\u044a\u0440-\u0444\u0430\u0439\u043b + Параметър-файл BooleanParameterDefinition.DisplayName=\ - \u0411\u0443\u043b\u0435\u0432 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u044a\u0440 + Булев параметър ChoiceParameterDefinition.DisplayName=\ - \u0421\u043f\u0438\u0441\u044a\u0447\u0435\u043d \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u044a\u0440 + СпиÑъчен параметър ChoiceParameterDefinition.MissingChoices=\ - \u041d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c \u0435 \u0441\u043f\u0438\u0441\u044a\u043a \u043e\u0442 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442\u0438. + Ðеобходим е ÑпиÑък от ÑтойноÑти. RunParameterDefinition.DisplayName=\ - \u041f\u0430\u0440\u0430\u043c\u0435\u0442\u044a\u0440 \u0437\u0430 \u0438\u0437\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u0435 + Параметър за изпълнение PasswordParameterDefinition.DisplayName=\ - \u041f\u0430\u0440\u0430\u043c\u0435\u0442\u044a\u0440-\u043f\u0430\u0440\u043e\u043b\u0430 + Параметър-парола Node.BecauseNodeIsReserved=\ - \u201e{0}\u201c \u0435 \u0437\u0430\u043f\u0430\u0437\u0435\u043d\u0430 \u0437\u0430 \u0437\u0430\u0434\u0430\u0447\u0438 \u0441 \u043e\u0442\u0433\u043e\u0432\u0430\u0440\u044f\u0449 \u0435\u0442\u0438\u043a\u0435\u0442. + „{0}“ е запазена за задачи Ñ Ð¾Ñ‚Ð³Ð¾Ð²Ð°Ñ€Ñщ етикет. Node.BecauseNodeIsNotAcceptingTasks=\ - \u201e{0}\u201c \u043d\u0435 \u043f\u0440\u0438\u0435\u043c\u0430 \u0437\u0430\u0434\u0430\u0447\u0438. + „{0}“ не приема задачи. Node.LabelMissing=\ - \u201e{0}\u201c \u043d\u044f\u043c\u0430 \u0435\u0442\u0438\u043a\u0435\u0442\u0430 \u201e{1}\u201c. + „{0}“ нÑма етикета „{1}“. Node.LackingBuildPermission=\ - \u201e{0}\u201c \u043d\u044f\u043c\u0430 \u043f\u0440\u0430\u0432\u043e \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430 \u043e\u0442 \u201e{1}\u201c. + „{0}“ нÑма право да Ñе изпълнÑва от „{1}“. Node.Mode.NORMAL=\ - \u0422\u0430\u0437\u0438 \u043c\u0430\u0448\u0438\u043d\u0430 \u0434\u0435 \u0441\u0435 \u043f\u043e\u043b\u0437\u0432\u0430 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0439-\u043c\u043d\u043e\u0433\u043e. + Тази машина де Ñе ползва възможно най-много. Node.Mode.EXCLUSIVE=\ - \u0414\u0430 \u0441\u0435 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430\u0442 \u0437\u0430\u0434\u0430\u0447\u0438 \u0441 \u0435\u0442\u0438\u043a\u0435\u0442\u0438 \u043e\u0442\u0433\u043e\u0432\u0430\u0440\u044f\u0449\u0438 \u043d\u0430 \u0442\u0430\u0437\u0438 \u043c\u0430\u0448\u0438\u043d\u0430. + Да Ñе изпълнÑват задачи Ñ ÐµÑ‚Ð¸ÐºÐµÑ‚Ð¸ отговарÑщи на тази машина. ListView.DisplayName=\ - \u0421\u043f\u0438\u0441\u044a\u0447\u0435\u043d \u0438\u0437\u0433\u043b\u0435\u0434 + СпиÑъчен изглед MyView.DisplayName=\ - \u041c\u043e\u044f\u0442 \u0438\u0437\u0433\u043b\u0435\u0434 + МоÑÑ‚ изглед LoadStatistics.Legends.DefinedExecutors=\ - \u0414\u0435\u0444\u0438\u043d\u0438\u0440\u0430\u043d\u0438 \u043c\u0430\u0448\u0438\u043d\u0438-\u0438\u0437\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u0438 + Дефинирани машини-изпълнители LoadStatistics.Legends.OnlineExecutors=\ - \u041c\u0430\u0448\u0438\u043d\u0438-\u0438\u0437\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f + Машини-изпълнители на Ð»Ð¸Ð½Ð¸Ñ LoadStatistics.Legends.ConnectingExecutors=\ - \u0421\u0432\u044a\u0440\u0437\u0430\u043d\u0438 \u043c\u0430\u0448\u0438\u043d\u0438-\u0438\u0437\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u0438 + Свързани машини-изпълнители LoadStatistics.Legends.TotalExecutors=\ - \u041e\u0431\u0449\u043e \u043c\u0430\u0448\u0438\u043d\u0438-\u0438\u0437\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u0438 + Общо машини-изпълнители LoadStatistics.Legends.BusyExecutors=\ - \u0417\u0430\u0435\u0442\u0438 \u043c\u0430\u0448\u0438\u043d\u0438-\u0438\u0437\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u0438 + Заети машини-изпълнители LoadStatistics.Legends.IdleExecutors=\ - \u0421\u0432\u043e\u0431\u043e\u0434\u043d\u0438 \u043c\u0430\u0448\u0438\u043d\u0438-\u0438\u0437\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u0438 + Свободни машини-изпълнители LoadStatistics.Legends.AvailableExecutors=\ - \u041d\u0430\u043b\u0438\u0447\u043d\u0438 \u043c\u0430\u0448\u0438\u043d\u0438-\u0438\u0437\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u0438 + Ðалични машини-изпълнители LoadStatistics.Legends.QueueLength=\ - \u0414\u044a\u043b\u0436\u0438\u043d\u0430 \u043d\u0430 \u043e\u043f\u0430\u0448\u043a\u0430\u0442\u0430 + Дължина на опашката Cause.LegacyCodeCause.ShortDescription=\ - \u0421\u0442\u0430\u0440 \u043a\u043e\u0434 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430 \u0442\u0430\u0437\u0438 \u0437\u0430\u0434\u0430\u0447\u0430 \u2014 \u043b\u0438\u043f\u0441\u0432\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u043f\u0440\u0438\u0447\u0438\u043d\u0430\u0442\u0430. + Стар код Ñтартира тази задача — липÑва Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° причината. Cause.UpstreamCause.ShortDescription=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0430 \u043e\u0442 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u201e{0}\u201c, \u043e\u0442 \u043a\u043e\u0439\u0442\u043e \u0442\u044f \u0437\u0430\u0432\u0438\u0441\u0438, \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u2116\u200a{1} + Стартирана от проекта „{0}“, от който Ñ‚Ñ Ð·Ð°Ð²Ð¸Ñи, изграждане № {1} Cause.UpstreamCause.CausedBy=\ - \u043f\u044a\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u043d\u043e \u043f\u043e\u0440\u0430\u0434\u0438: + първоначално поради: Cause.UserCause.ShortDescription=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0430 \u043e\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b: \u201e{0}\u201c + Стартирана от потребител: „{0}“ Cause.UserIdCause.ShortDescription=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0430 \u043e\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b: \u201e{0}\u201c + Стартирана от потребител: „{0}“ Cause.RemoteCause.ShortDescription=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u043e \u043e\u0442 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u0430: \u201e{0}\u201c + Стартирано от компютъра: „{0}“ Cause.RemoteCause.ShortDescriptionWithNote=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u043e \u043e\u0442 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u0430: \u201e{0}\u201c \u0441\u044a\u0441 \u0441\u043b\u0435\u0434\u043d\u0430\u0442\u0430 \u0431\u0435\u043b\u0435\u0436\u043a\u0430: \u201e{1}\u201c + Стартирано от компютъра: „{0}“ ÑÑŠÑ Ñледната бележка: „{1}“ ProxyView.NoSuchViewExists=\ - \u0413\u043b\u043e\u0431\u0430\u043b\u043d\u0438\u044f\u0442 \u0438\u0437\u0433\u043b\u0435\u0434 \u201e{0}\u201c \u043d\u0435 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430 + ГлобалниÑÑ‚ изглед „{0}“ не ÑъщеÑтвува ProxyView.DisplayName=\ - \u0412\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u0433\u043b\u043e\u0431\u0430\u043b\u0435\u043d \u0438\u0437\u0433\u043b\u0435\u0434 + Включване на глобален изглед MyViewsProperty.DisplayName=\ - \u041c\u043e\u0438\u0442\u0435 \u0438\u0437\u0433\u043b\u0435\u0434\u0438 + Моите изгледи MyViewsProperty.GlobalAction.DisplayName=\ - \u041c\u043e\u0438\u0442\u0435 \u0438\u0437\u0433\u043b\u0435\u0434\u0438 + Моите изгледи MyViewsProperty.ViewExistsCheck.NotExist=\ - \u0418\u0437\u0433\u043b\u0435\u0434 \u0441 \u0438\u043c\u0435 \u201e{0}\u201c \u043d\u0435 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430 + Изглед Ñ Ð¸Ð¼Ðµ „{0}“ не ÑъщеÑтвува MyViewsProperty.ViewExistsCheck.AlreadyExists=\ - \u0418\u0437\u0433\u043b\u0435\u0434 \u0441 \u0438\u043c\u0435 \u201e{0}\u201c \u0432\u0435\u0447\u0435 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430 + Изглед Ñ Ð¸Ð¼Ðµ „{0}“ вече ÑъщеÑтвува CLI.restart.shortDescription=\ - \u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 Jenkins + РеÑтартиране на Jenkins CLI.safe-restart.shortDescription=\ - \u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 Jenkins + БезопаÑно реÑтартиране на Jenkins CLI.keep-build.shortDescription=\ - \u041e\u0442\u0431\u0435\u043b\u044f\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e \u0434\u0430 \u0441\u0435 \u0437\u0430\u043f\u0430\u0437\u0438 \u0437\u0430\u0432\u0438\u043d\u0430\u0433\u0438. + ОтбелÑзване на изграждането да Ñе запази завинаги. BuildAuthorizationToken.InvalidTokenProvided=\ - \u0417\u0430\u0434\u0430\u0434\u0435\u043d \u0435 \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u0435\u043d \u0436\u0435\u0442\u043e\u043d \u0437\u0430 \u0441\u0438\u0433\u0443\u0440\u043d\u043e\u0441\u0442. + Зададен е неправилен жетон за ÑигурноÑÑ‚. Jenkins.CheckDisplayName.NameNotUniqueWarning=\ - \u0418\u043c\u0435\u0442\u043e \u201e{0}\u201c \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 \u0438 \u0437\u0430 \u0437\u0430\u0434\u0430\u0447\u0430, \u043a\u043e\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0434\u043e\u0432\u0435\u0434\u0435 \u0434\u043e \u043e\u0431\u044a\u0440\u043a\u0432\u0430\u043d\u0435 \u043f\u0440\u0438\ - \u0442\u044a\u0440\u0441\u0435\u043d\u0435. + Името „{0}“ Ñе използва и за задача, което може да доведе до объркване при\ + Ñ‚ÑŠÑ€Ñене. Jenkins.CheckDisplayName.DisplayNameNotUniqueWarning=\ - \u0418\u043c\u0435\u0442\u043e \u201e{0}\u201c \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 \u0437\u0430 \u0434\u0440\u0443\u0433\u0430 \u0437\u0430\u0434\u0430\u0447\u0430, \u043a\u043e\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0434\u043e\u0432\u0435\u0434\u0435 \u0434\u043e \u0437\u0430\u0431\u0430\u0432\u044f\u043d\u0435 \u0438\ - \u043e\u0431\u044a\u0440\u043a\u0432\u0430\u043d\u0435 \u043f\u0440\u0438 \u0442\u044a\u0440\u0441\u0435\u043d\u0435. + Името „{0}“ Ñе използва за друга задача, което може да доведе до забавÑне и\ + объркване при Ñ‚ÑŠÑ€Ñене. Jenkins.NotAllowedName=\ - \u041d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u0438\u043c\u0435\u0442\u043e \u201e{0}\u201c + Ðе можете да използвате името „{0}“ Jenkins.IsRestarting=\ - Jenkins \u0441\u0435 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430 \u0432 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 + Jenkins Ñе реÑтартира в момента User.IllegalUsername=\ - \u041d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u201e{0}\u201c \u0437\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u043e \u0438\u043c\u0435 \u0437\u0430\u0440\u0430\u0434\u0438 \u0441\u0438\u0433\u0443\u0440\u043d\u043e\u0441\u0442\u0442\u0430. + Ðе можете да използвате „{0}“ за потребителÑко име заради ÑигурноÑтта. User.IllegalFullname=\ - \u041d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u201e{0}\u201c \u0437\u0430 \u043f\u044a\u043b\u043d\u043e \u0438\u043c\u0435 \u0437\u0430\u0440\u0430\u0434\u0438 \u0441\u0438\u0433\u0443\u0440\u043d\u043e\u0441\u0442\u0442\u0430. + Ðе можете да използвате „{0}“ за пълно име заради ÑигурноÑтта. # No such agent "{0}" exists. Did you mean "{1}"? Computer.NoSuchSlaveExists=\ - \u041d\u044f\u043c\u0430 \u0430\u0433\u0435\u043d\u0442 \u201e{0}\u201c. \u201e{1}\u201c \u043b\u0438 \u0438\u043c\u0430\u0445\u0442\u0435 \u043f\u0440\u0435\u0434\u0432\u0438\u0434? -# There\u2019s no agent/cloud that matches this assignment. Did you mean \u2018{1}\u2019 instead of \u2018{0}\u2019? + ÐÑма агент „{0}“. „{1}“ ли имахте предвид? +# There’s no agent/cloud that matches this assignment. Did you mean ‘{1}’ instead of ‘{0}’? LabelExpression.NoMatch_DidYouMean=\ - \u041d\u044f\u043c\u0430 \u0442\u0430\u043a\u044a\u0432 \u0430\u0433\u0435\u043d\u0442/\u043e\u0431\u043b\u0430\u043a. \u201e{1}\u201c \u043b\u0438 \u0438\u043c\u0430\u0445\u0442\u0435 \u043f\u0440\u0435\u0434\u0432\u0438\u0434 \u0432\u043c\u0435\u0441\u0442\u043e \u201e{0}\u201c? -# Agent called \u2018{0}\u2019 already exists + ÐÑма такъв агент/облак. „{1}“ ли имахте предвид вмеÑто „{0}“? +# Agent called ‘{0}’ already exists ComputerSet.SlaveAlreadyExists=\ - \u0412\u0435\u0447\u0435 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430 \u0430\u0433\u0435\u043d\u0442 \u0441 \u0438\u043c\u0435 \u201e{0}\u201c + Вече ÑъщеÑтвува агент Ñ Ð¸Ð¼Ðµ „{0}“ # Agent node offline or not a remote channel (such as master node). Computer.BadChannel=\ - \u041a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u044a\u0442 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442\u0430 \u043d\u0435 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f \u0438\u043b\u0438 \u043b\u0438\u043f\u0441\u0432\u0430 \u043e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d \u043a\u0430\u043d\u0430\u043b (\u043a\u0430\u043a\u0442\u043e \u043f\u0440\u0438\ - \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0432\u0430\u0449 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440). + Компютърът на агента не е на Ð»Ð¸Ð½Ð¸Ñ Ð¸Ð»Ð¸ липÑва отдалечен канал (както при\ + управлÑващ компютър). # This permission allows users to disconnect agents or mark agents as temporarily offline. Computer.DisconnectPermission.Description=\ - \u0422\u043e\u0432\u0430 \u043f\u0440\u0430\u0432\u043e \u0434\u0430\u0432\u0430 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \u0434\u0430 \u043f\u0440\u0435\u043a\u044a\u0441\u0432\u0430\u0442\u0435 \u0432\u0440\u044a\u0437\u043a\u0430\u0442\u0430 \u043a\u044a\u043c \u0430\u0433\u0435\u043d\u0442\u0438 \u0438\u043b\u0438 \u0434\u0430 \u0433\u0438\ - \u043e\u0431\u044f\u0432\u044f\u0432\u0430\u0442\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0438\u0437\u0432\u044a\u043d \u043b\u0438\u043d\u0438\u044f. + Това право дава възможноÑÑ‚ да прекъÑвате връзката към агенти или да ги\ + обÑвÑвате временно извън линиÑ. # This permission allows users to run jobs as them on agents. Computer.BuildPermission.Description=\ - \u0422\u043e\u0432\u0430 \u043f\u0440\u0430\u0432\u043e \u0434\u0430\u0432\u0430 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438\u0442\u0435 \u0434\u0430 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430\u0442 \u0437\u0430\u0434\u0430\u0447\u0438 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442\u0438\u0442\u0435\ - \u043e\u0442 \u0441\u0432\u043e\u0435 \u0438\u043c\u0435. + Това право дава възможноÑÑ‚ на потребителите да изпълнÑват задачи на агентите\ + от Ñвое име. # Specify which agent to copy ComputerSet.SpecifySlaveToCopy=\ - \u0423\u043a\u0430\u0436\u0435\u0442\u0435 \u0430\u0433\u0435\u043d\u0442\u0430 \u0437\u0430 \u043a\u043e\u043f\u0438\u0440\u0430\u043d\u0435 + Укажете агента за копиране # This is a Windows agent Slave.WindowsSlave=\ - \u0422\u043e\u0432\u0430 \u0435 \u0430\u0433\u0435\u043d\u0442 \u0437\u0430 Windows + Това е агент за Windows # Agent Launchers and Controllers UpdateCenter.PluginCategory.agent=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442\u0438 + Стартиране и управление на агенти MultiStageTimeSeries.EMPTY_STRING=\ # Invalid agent configuration for {0}. Invalid # of executors. Slave.InvalidConfig.Executors=\ - \u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u043d\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442\u0430 \u0437\u0430 {0}. \u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u0435\u043d \u0431\u0440\u043e\u0439 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430\u0449\u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0438. + Ðеправилни наÑтройки на агента за {0}. Ðеправилен брой изпълнÑващи процеÑи. # This permission allows users to create agents. Computer.CreatePermission.Description=\ - \u0422\u043e\u0432\u0430 \u043f\u0440\u0430\u0432\u043e \u0434\u0430\u0432\u0430 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \u0434\u0430 \u0441\u0435 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u0442 \u0430\u0433\u0435\u043d\u0442\u0438. + Това право дава възможноÑÑ‚ да Ñе Ñъздават агенти. # This permission allows users to configure agents. Computer.ConfigurePermission.Description=\ - \u0422\u043e\u0432\u0430 \u043f\u0440\u0430\u0432\u043e \u0434\u0430\u0432\u0430 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \u0434\u0430 \u0441\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u0432\u0430\u0442 \u0430\u0433\u0435\u043d\u0442\u0438. + Това право дава възможноÑÑ‚ да Ñе наÑтройват агенти. # Agent {0} Computer.Caption=\ - \u0410\u0433\u0435\u043d\u0442 \u201e{0}\u201c + Ðгент „{0}“ # \ # There's no agent/cloud that matches this assignment LabelExpression.NoMatch=\ - \u041d\u044f\u043c\u0430 \u0430\u0433\u0435\u043d\u0442, \u043e\u0442\u0433\u043e\u0432\u0430\u0440\u044f\u0449 \u043d\u0430 \u0437\u0430\u0434\u0430\u043d\u0438\u0435\u0442\u043e + ÐÑма агент, отговарÑщ на заданието # Invalid agent configuration. Name is empty Slave.InvalidConfig.NoName=\ - \u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u043d\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442 \u2014 \u0438\u043c\u0435\u0442\u043e \u0435 \u043f\u0440\u0430\u0437\u043d\u043e. + Ðеправилни наÑтройки на агент — името е празно. # No such agent "{0}" exists. Computer.NoSuchSlaveExistsWithoutAdvice=\ - \u041d\u044f\u043c\u0430 \u0430\u0433\u0435\u043d\u0442 \u201e{0}\u201c + ÐÑма агент „{0}“ # This permission allows users to connect agents or mark agents as online. Computer.ConnectPermission.Description=\ - \u0422\u043e\u0432\u0430 \u043f\u0440\u0430\u0432\u043e \u0434\u0430\u0432\u0430 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \u0434\u0430 \u0441\u0432\u044a\u0440\u0437\u0432\u0430\u0442\u0435 \u043d\u043e\u0432\u0438 \u0430\u0433\u0435\u043d\u0442\u0438 \u0438\u043b\u0438 \u0434\u0430 \u043e\u0431\u044f\u0432\u044f\u0432\u0430\u0442\u0435, \u0447\u0435 \u0441\u0430 \u043d\u0430\ - \u043b\u0438\u043d\u0438\u044f. + Това право дава възможноÑÑ‚ да Ñвързвате нови агенти или да обÑвÑвате, че Ñа на\ + линиÑ. # {0} agent was terminated Slave.Terminated=\ - \u0410\u0433\u0435\u043d\u0442\u044a\u0442 \u201e{0}\u201c \u0435 \u0438\u0437\u0442\u0440\u0438\u0442 + Ðгентът „{0}“ е изтрит # No such agent: {0} ComputerSet.NoSuchSlave=\ - \u041d\u044f\u043c\u0430 \u0430\u0433\u0435\u043d\u0442 \u201e{0}\u201c + ÐÑма агент „{0}“ # This permission allows users to read agent configuration. Computer.ExtendedReadPermission.Description=\ - \u0422\u043e\u0432\u0430 \u043f\u0440\u0430\u0432\u043e \u0434\u0430\u0432\u0430 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \u0434\u0430 \u0432\u0438\u0434\u0438\u0442\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442\u0430. + Това право дава възможноÑÑ‚ да видите наÑтройките на агента. HealthReport.EmptyString=\ # May not copy {0} as it contains secrets and {1} has {2}/{3} but not /{4} ItemGroupMixIn.may_not_copy_as_it_contains_secrets_and_=\ - \u041d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u043a\u043e\u043f\u0438\u0440\u0430\u0442\u0435 \u201e{0}\u201c, \u0437\u0430\u0449\u043e\u0442\u043e \u043d\u0430 \u043d\u0435\u0433\u043e \u0438\u043c\u0430 \u043f\u0430\u0440\u043e\u043b\u0438, \u0430 \u201e{1}\u201c \u0438\u043c\u0430 {2}/{3}, \u043d\u043e\ - \u043d\u0435 \u0438 /{4} + Ðе може да копирате „{0}“, защото на него има пароли, а „{1}“ има {2}/{3}, но\ + не и /{4} # This permission allows users to delete existing agents. Computer.DeletePermission.Description=\ - \u0422\u043e\u0432\u0430 \u043f\u0440\u0430\u0432\u043e \u0432\u0438 \u0434\u0430\u0432\u0430 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \u0434\u0430 \u0438\u0437\u0442\u0440\u0438\u0432\u0430\u0442\u0435 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430\u0449\u0438 \u0430\u0433\u0435\u043d\u0442\u0438. + Това право ви дава възможноÑÑ‚ да изтривате ÑъщеÑтвуващи агенти. # Agent Computer.Permissions.Title=\ - \u0410\u0433\u0435\u043d\u0442 + Ðгент # This is a Unix agent Slave.UnixSlave=\ - \u0422\u043e\u0432\u0430 \u0435 \u0430\u0433\u0435\u043d\u0442 \u0437\u0430 Unix + Това е агент за Unix # SCM polling vetoed by {0} AbstractProject.PollingVetoed=\ - \u0417\u0430\u044f\u0432\u043a\u0438\u0442\u0435 \u043a\u044a\u043c \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430 \u0437\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b \u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435 \u0441\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0441\u043f\u0440\u0435\u043d\u0438 \u043e\u0442 {0}. + ЗаÑвките към ÑиÑтемата за контрол на верÑиите Ñа временно Ñпрени от {0}. # No Parameters are specified for this parameterized build Hudson.NoParamsSpecified=\ - \u041b\u0438\u043f\u0441\u0432\u0430\u0442 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 \u0437\u0430 \u0442\u043e\u0432\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435. + ЛипÑват параметри за това параметризирано изграждане. # Update Center UpdateCenter.DisplayName=\ - \u0426\u0435\u043d\u0442\u044a\u0440 \u0437\u0430 \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 + Център за обновÑване # The display name, "{0}", is already in use by another view and \ # could cause confusion and delay. View.DisplayNameNotUniqueWarning=\ - \u0418\u043c\u0435\u0442\u043e \u201e{0}\u201c \u0432\u0435\u0447\u0435 \u0441\u0435 \u043f\u043e\u043b\u0437\u0432\u0430 \u043e\u0442 \u0434\u0440\u0443\u0433 \u0438\u0437\u0433\u043b\u0435\u0434, \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u0430\u0442\u0430 \u0443\u043f\u043e\u0442\u0440\u0435\u0431\u0430 \u0449\u0435 \u0435 \u043e\u0431\u044a\u0440\u043a\u0432\u0430\u0449\u0430. + Името „{0}“ вече Ñе ползва от друг изглед, повторната употреба ще е объркваща. # Executor slot already in use Queue.executor_slot_already_in_use= # Failed to interrupt and stop {0,choice,1#{0,number,integer} build|1<{0,number,integer} \ # builds} of {1} AbstractItem.FailureToStopBuilds=\ - \u041d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u0435\u043a\u044a\u0441\u0432\u0430\u043d\u0435 \u0438 \u0441\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430\ - {0,choice,1#{0,number,integer} \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435|1<{0,number,integer} \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f}\ - \u043d\u0430 \u201e{1}\u201c. + ÐеуÑпешно прекъÑване и Ñпиране на\ + {0,choice,1#{0,number,integer} изграждане|1<{0,number,integer} изгражданиÑ}\ + на „{1}“. # Jenkins Update Notification UpdateCenter.CoreUpdateMonitor.DisplayName=\ - \u0418\u0437\u0432\u0435\u0441\u0442\u0438\u0435 \u0437\u0430 \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 Jenkins + ИзвеÑтие за обновÑване на Jenkins # Build AbstractItem.TaskNoun=\ - \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + Изграждане # {0} is currently being deleted AbstractItem.BeingDeleted=\ - \u201e{0}\u201c \u0432 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0441\u0435 \u0438\u0437\u0442\u0440\u0438\u0432\u0430 + „{0}“ в момента Ñе изтрива # {0} has been removed from configuration Queue.node_has_been_removed_from_configuration=\ - \u201e{0}\u201c \u0435 \u0438\u0437\u0442\u0440\u0438\u0442 \u043e\u0442 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435 + „{0}“ е изтрит от наÑтройките diff --git a/core/src/main/resources/hudson/model/Messages_ca.properties b/core/src/main/resources/hudson/model/Messages_ca.properties index 0a5f3a512e4d..c92afa092c78 100644 --- a/core/src/main/resources/hudson/model/Messages_ca.properties +++ b/core/src/main/resources/hudson/model/Messages_ca.properties @@ -1,3 +1,3 @@ -ManageJenkinsAction.DisplayName=Configuraci\u00F3 de Jenkins +ManageJenkinsAction.DisplayName=Configuració de Jenkins -FreeStyleProject.Description=Aquesta \u00E9s la funcionalitat principal de Jenkins. Jenkins far\u00E0 un build del vostre projecte combinant qualsevol SCM amb qualsevol sistema de build. Aix\u00F2 tamb\u00E9 es pot usar per tasques que no siguin un build de software +FreeStyleProject.Description=Aquesta és la funcionalitat principal de Jenkins. Jenkins farà un build del vostre projecte combinant qualsevol SCM amb qualsevol sistema de build. Això també es pot usar per tasques que no siguin un build de software diff --git a/core/src/main/resources/hudson/model/Messages_cs.properties b/core/src/main/resources/hudson/model/Messages_cs.properties index 0473be9a4d8f..7ae3f033c417 100644 --- a/core/src/main/resources/hudson/model/Messages_cs.properties +++ b/core/src/main/resources/hudson/model/Messages_cs.properties @@ -1,3 +1,3 @@ ManageJenkinsAction.DisplayName=Administrace -FreeStyleProject.Description=Toto je hlavn\u00ED funkce Jenkins. Jenkins sestav\u00ED v\u00E1\u0161 projekt, spoj\u00ED jak\u00FDkoli syst\u00E9m pro spr\u00E1vu verz\u00ED se syst\u00E9mem pro sestaven\u00ED. Nemus\u00ED b\u00FDt pou\u017Eit jen pro sestaven\u00ED softwaru. +FreeStyleProject.Description=Toto je hlavní funkce Jenkins. Jenkins sestaví váš projekt, spojí jakýkoli systém pro správu verzí se systémem pro sestavení. Nemusí být použit jen pro sestavení softwaru. diff --git a/core/src/main/resources/hudson/model/Messages_da.properties b/core/src/main/resources/hudson/model/Messages_da.properties index a4de3e95a136..1b4eec0c689c 100644 --- a/core/src/main/resources/hudson/model/Messages_da.properties +++ b/core/src/main/resources/hudson/model/Messages_da.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -AbstractBuild.BuildingRemotely=Fjernbygger p\u00e5 {0} +AbstractBuild.BuildingRemotely=Fjernbygger pÃ¥ {0} AbstractProject.ScmAborted=Kildekodestyring (SCM) check ud afbrudt -Queue.WaitingForNextAvailableExecutor=Venter p\u00e5 n\u00e6ste ledige afvikler +Queue.WaitingForNextAvailableExecutor=Venter pÃ¥ næste ledige afvikler AbstractProject.ExtendedReadPermission.Description=\ -Denne tilladelse giver skrivebeskyttet adgang til projektkonfigurationerne. V\u00e6r opm\u00e6rksom p\u00e5 \ -at f\u00f8lsomme informationer i dine byg, s\u00e5som adgangskoder, vil v\u00e6re synlige \ -for et bredere publikum s\u00e5fremt denne tilladelse tildeles. +Denne tilladelse giver skrivebeskyttet adgang til projektkonfigurationerne. Vær opmærksom pÃ¥ \ +at følsomme informationer i dine byg, sÃ¥som adgangskoder, vil være synlige \ +for et bredere publikum sÃ¥fremt denne tilladelse tildeles. Run.Summary.BrokenSinceThisBuild=fejlet siden dette byg Cause.UserCause.ShortDescription=Startet af brugeren {0} Cause.UserIdCause.ShortDescription=Startet af brugeren {0} @@ -34,19 +34,19 @@ Hudson.Computer.DisplayName=master LoadStatistics.Legends.TotalExecutors=Samtlige afviklere MyViewsProperty.GlobalAction.DisplayName=Mine Visninger Run.UpdatePermission.Description=\ -Denne tilladelse g\u00f8r det muligt for brugeren at opdatere beskrivelsen og andre egenskaber af et byg, \ +Denne tilladelse gør det muligt for brugeren at opdatere beskrivelsen og andre egenskaber af et byg, \ for eksempel for at skrive en besked om hvorfor et byg fejler. StringParameterDefinition.DisplayName=Strengparameter -Node.Mode.NORMAL=Benyt denne slave s\u00e5 meget som overhovedet muligt +Node.Mode.NORMAL=Benyt denne slave sÃ¥ meget som overhovedet muligt ProxyView.NoSuchViewExists=Global visning {0} findes ikke -UpdateCenter.PluginCategory.external=Eksternt site/ v\u00e6rkt\u00f8jsintegration -BallColor.Pending=I k\u00f8 +UpdateCenter.PluginCategory.external=Eksternt site/ værktøjsintegration +BallColor.Pending=I kø View.MissingMode=Ingen visningstype specificeret AbstractProject.Pronoun=Projekt Hudson.Computer.Caption=Master -Hudson.NotAPositiveNumber=Ikke en positiv v\u00e6rdi +Hudson.NotAPositiveNumber=Ikke en positiv værdi UpdateCenter.PluginCategory.unrecognized=Div ({0}) -Node.Mode.EXCLUSIVE=Lad kun denne maskine k\u00f8re knyttede(tied) jobs +Node.Mode.EXCLUSIVE=Lad kun denne maskine køre knyttede(tied) jobs Run.Summary.Stable=stabil Hudson.BadPortNumber=Ubrugeligt portnummer {0} Run.UnableToDelete=Kan ikke slette {0}: {1} @@ -54,43 +54,43 @@ UpdateCenter.Status.Success=Succes ParameterAction.DisplayName=Parametre UpdateCenter.init=Initialiserer opdateringscenteret ComputerSet.DisplayName=noder -Run.DeletePermission.Description=Denne tilladelse g\u00f8r det muligt for brugerne at slette specifikke byg i byggehistorikken. -Run.Summary.BrokenForALongTime=fejlet l\u00e6nge +Run.DeletePermission.Description=Denne tilladelse gør det muligt for brugerne at slette specifikke byg i byggehistorikken. +Run.Summary.BrokenForALongTime=fejlet længe CLI.safe-restart.shortDescription=Sikker genstart af Jenkins FreeStyleProject.DisplayName=Byg et free-style projekt FreeStyleProject.Description=Dette er den centrale feature i Jenkins. Jenkins vil bygge dit projekt i enhver kombination af kildekodestyring (SCM) med ethvert byggesystem og dette kan bruges til meget andet end at bygge software. ProxyView.DisplayName=Inkluder en global visning -Run.Permissions.Title=K\u00f8r +Run.Permissions.Title=Kør Hudson.DisplayName=Jenkins -Hudson.NotANonNegativeNumber=V\u00e6rdien m\u00e5 ikke v\u00e6re negativ +Hudson.NotANonNegativeNumber=Værdien mÃ¥ ikke være negativ BallColor.InProgress=I gang AbstractProject.NoBuilds=Ingen eksisterende byg. Skedulerer et nyt. Run.BuildAborted=Byg afbrudt BallColor.Aborted=Afbrudt ListView.DisplayName=Listevisning -UpdateCenter.PluginCategory.page-decorator=Sidedekorat\u00f8rer -Cause.LegacyCodeCause.ShortDescription=Legacy kode startede dette job. Ingen startbegrundelse tilg\u00e6ngelig. +UpdateCenter.PluginCategory.page-decorator=Sidedekoratører +Cause.LegacyCodeCause.ShortDescription=Legacy kode startede dette job. Ingen startbegrundelse tilgængelig. UpdateCenter.PluginCategory.ui=Brugerflade UpdateCenter.PluginCategory.post-build=Andre postbyg handlinger Cause.UpstreamCause.ShortDescription=Startet af upstreamprojektet "{0}" byg nummer {1} UpdateCenter.PluginCategory.cli=Kommandolinieinterface -UpdateCenter.PluginCategory.builder=Byggev\u00e6rkt\u00f8jer +UpdateCenter.PluginCategory.builder=Byggeværktøjer FileParameterDefinition.DisplayName=Filparametre Run.Summary.Unstable=Ustabil -CLI.reload-configuration.shortDescription=Genindl\u00e6s alle data fra filsystemet. \ +CLI.reload-configuration.shortDescription=Genindlæs alle data fra filsystemet. \ Nyttigt hvis du har modificeret konfigurationsfiler direkte, udenom Jenkins. ComputerSet.NoSuchSlave=Ingen slave ved navn: {0} ComputerSet.SlaveAlreadyExists=En slave ved navn ''{0}'' eksisterer allerede Executor.NotAvailable=N/A Item.Permissions.Title=Job -AbstractProject.NoWorkspace=Intet arbejdsomr\u00e5de tilg\u00e6ngeligt, kan ikke checke for opdateringer. +AbstractProject.NoWorkspace=Intet arbejdsomrÃ¥de tilgængeligt, kan ikke checke for opdateringer. UpdateCenter.PluginCategory.trigger=Byggestartere Slave.Remote.Director.Mandatory=Fjerndirektorie er obligatorisk -BallColor.Disabled=Sl\u00e5et fra -Run.InProgressDuration={0} og t\u00e6ller -UpdateCenter.Status.UnknownHostException=Ukendt v\u00e6rt undtagelse +BallColor.Disabled=SlÃ¥et fra +Run.InProgressDuration={0} og tæller +UpdateCenter.Status.UnknownHostException=Ukendt vært undtagelse Hudson.NotUsesUTF8ToDecodeURL=\ Din container bruger ikke UTF-8 til at afkode URLer. Hvis du bruger ikke-ASCII tegn i jobnavne etc, \ vil dette skabe problemer. @@ -98,7 +98,7 @@ UpdateCenter.Status.CheckingInternet=Checker internet forbindelse View.DeletePermission.Description=\ Denne rettighed tillader brugerne at slette eksisterende visninger. UpdateCenter.Status.CheckingJavaNet=Checker jenkins-ci.org forbindelse -UpdateCenter.PluginCategory.user=Authentificering og brugerh\u00e5ndtering +UpdateCenter.PluginCategory.user=Authentificering og brugerhÃ¥ndtering MyView.DisplayName=Min visning Hudson.USER_CONTENT_README=Filer i dette direktorie vil blive serveret under http://yourjenkins/userContent/ UpdateCenter.PluginCategory.scm-related=Kildekodestyring (SCM) relateret @@ -108,17 +108,17 @@ Hudson.Permissions.Title=Overordnet AbstractProject.UpstreamBuildInProgress=Upstreamprojektet {0} bygger allerede. Permalink.LastBuild=Seneste Byg MyViewsProperty.ViewExistsCheck.NotExist=En visning ved navn {0} findes ikke -AbstractItem.NoSuchJobExists=Intet job ved navn ''{0}'' eksisterer. M\u00e5ske mener du ''{1}''? -Run.Summary.BackToNormal=tilbage p\u00e5 sporet -BooleanParameterDefinition.DisplayName=Boolesk V\u00e6rdi +AbstractItem.NoSuchJobExists=Intet job ved navn ''{0}'' eksisterer. MÃ¥ske mener du ''{1}''? +Run.Summary.BackToNormal=tilbage pÃ¥ sporet +BooleanParameterDefinition.DisplayName=Boolesk Værdi Permalink.LastSuccessfulBuild=Seneste succesfulde byg Hudson.NotAPlugin={0} er ikke et Jenkins plugin UpdateCenter.PluginCategory.buildwrapper=Byggeomslag Hudson.ReadPermission.Description=\ -L\u00e6serettigheden er n\u00f8dvendig for at se n\u00e6sten alle sider i Jenkins. \ -Denne rettighed kan bruges n\u00e5r du ikke vil have uauthentificerede brugere til at \ -se Jenkins sider — tilbagekald denne rettighed fra den anonyme bruger, tilf\u00f8j \ -derefter en "authentificeret" pseudo-bruger og giv denne l\u00e6serettigheder. +Læserettigheden er nødvendig for at se næsten alle sider i Jenkins. \ +Denne rettighed kan bruges nÃ¥r du ikke vil have uauthentificerede brugere til at \ +se Jenkins sider — tilbagekald denne rettighed fra den anonyme bruger, tilføj \ +derefter en "authentificeret" pseudo-bruger og giv denne læserettigheder. Hudson.NodeBeingRemoved=Node bliver fjernet Hudson.ViewAlreadyExists=En visning ved navn "{0}" findes allerede Hudson.NoName=Intet navn specificeret @@ -129,71 +129,71 @@ UpdateCenter.PluginCategory.report=Bygge Rapporter View.Permissions.Title=Visninger Permalink.LastFailedBuild=Seneste fejlede byg UpdateCenter.PluginCategory.scm=Kildekodestyring (SCM) -View.ConfigurePermission.Description=Denne rettighed tillader brugere at \u00e6ndre konfigurationen af visninger. -AbstractProject.NewBuildForWorkspace=Skedulerer et nyt byg for at f\u00e5 et arbejdsomr\u00e5de +View.ConfigurePermission.Description=Denne rettighed tillader brugere at ændre konfigurationen af visninger. +AbstractProject.NewBuildForWorkspace=Skedulerer et nyt byg for at fÃ¥ et arbejdsomrÃ¥de Node.LabelMissing={0} har ikke etiket {1} Queue.BlockedBy=Blokeret af {0} Node.BecauseNodeIsReserved={0} er reserveret til jobs bundet(tied) til den Job.minutes=min -Cause.RemoteCause.ShortDescriptionWithNote=Startet af fjernv\u00e6rt {0} med note: {1} +Cause.RemoteCause.ShortDescriptionWithNote=Startet af fjernvært {0} med note: {1} PasswordParameterDefinition.DisplayName=Adgangskodeparameter UpdateCenter.PluginCategory.cluster=Klyngestyring og distribuerede byg AbstractBuild.KeptBecause=beholdt pga. {0} Hudson.NotADirectory={0} er ikke et direktorie -Cause.RemoteCause.ShortDescription=Startet af fjernv\u00e6rt {0} +Cause.RemoteCause.ShortDescription=Startet af fjernvært {0} Run.ArtifactsPermission.Description=\ -Denne rettighed g\u00f8r det muligt at hente byggeartifakter. \ -Hvis du ikke vil have at en bruger skal kunne tilg\u00e5 byggeartifakter kan \ +Denne rettighed gør det muligt at hente byggeartifakter. \ +Hvis du ikke vil have at en bruger skal kunne tilgÃ¥ byggeartifakter kan \ du fratage vedkommende denne rettighed. AbstractProject.Aborted=Afbrudt -Queue.init=Genopretter byggek\u00f8en +Queue.init=Genopretter byggekøen Hudson.NodeDescription=master Jenkins noden Job.NoRecentBuildFailed=Ingen byg har fejlet for nyligt. Permalink.LastUnsuccessfulBuild=Seneste fejlede byg -RunParameterDefinition.DisplayName=K\u00f8rselsparameter +RunParameterDefinition.DisplayName=Kørselsparameter Hudson.JobAlreadyExists=Et job eksisterer allerede med navnet ''{0}'' MyViewsProperty.DisplayName=Mine visninger UpdateCenter.PluginCategory.must-be-labeled=Ukatagoriserede -AbstractProject.Disabled=Byg sl\u00e5et fra +AbstractProject.Disabled=Byg slÃ¥et fra MyViewsProperty.ViewExistsCheck.AlreadyExists=En visning ved navn {0} eksisterer allerede Hudson.AdministerPermission.Description=\ -Denne rettighed g\u00f8r det muligt at lave konfigurations\u00e6ndringer p\u00e5 tv\u00e6rs af hele systemet, \ -s\u00e5vel som at k\u00f8re yderst f\u00f8lsomme operationer der effektivt svarer til fuld lokal system adgang \ +Denne rettighed gør det muligt at lave konfigurationsændringer pÃ¥ tværs af hele systemet, \ +sÃ¥vel som at køre yderst følsomme operationer der effektivt svarer til fuld lokal system adgang \ (indenfor rettighedsrammerne af det underliggende operativsystem.) Hudson.NotJDKDir={0} ligner ikke et JDK direktorie -AbstractProject.WorkspaceOffline=Arbejdsomr\u00e5det er offline. +AbstractProject.WorkspaceOffline=ArbejdsomrÃ¥det er offline. Queue.HudsonIsAboutToShutDown=Jenkins skal til at lukke ned Api.MultipleMatch=XPath "{0}" matcher {1} noder. \ -Lav en XPath der kun matcher en, eller brug en "omslags" foresp\u00f8rgselsparameter til at samle dem alle under et rodelement. +Lav en XPath der kun matcher en, eller brug en "omslags" forespørgselsparameter til at samle dem alle under et rodelement. Queue.Unknown=??? BallColor.Unstable=Ustabil Job.AllRecentBuildFailed=Alle de seneste byg er fejlet. AbstractProject.PollingABorted=Kildekodestyring (SCM) polling afbrudt Run.Summary.BrokenSince=fejlet siden byg {0} AbstractProject.WorkspacePermission.Description=\ -Denne tilladelse giver mulighed for at hente indholdet af et arbejdsomr\u00e5de som \ -Jenkins har checket ud for at k\u00f8re byg. Hvis du ikke vil give brugeren adgang til kildekoden \ +Denne tilladelse giver mulighed for at hente indholdet af et arbejdsomrÃ¥de som \ +Jenkins har checket ud for at køre byg. Hvis du ikke vil give brugeren adgang til kildekoden \ kan du fratage vedkommende denne tilladelse. Hudson.NotANumber=Ikke et tal Hudson.UnsafeChar=''{0}'' er et usikkert tegn Hudson.ControlCodeNotAllowed=Ingen kontroltegn tilladt: {0} View.CreatePermission.Description=Denne rettighed giver brugerne ret til at lave nye visninger. BallColor.Failed=Fejlet -LoadStatistics.Legends.QueueLength=K\u00f8 l\u00e6ngde +LoadStatistics.Legends.QueueLength=Kø længde Hudson.ViewName=Alle Job.BuildStability=Bygge stabilitet: {0} Job.Pronoun=Projekt CLI.restart.shortDescription=Genstart Jenkins Permalink.LastStableBuild=Sidste stabile byg -Hudson.NoJavaInPath=Java er ikke i din sti. M\u00e5ske mangler du at konfigurere JDK? +Hudson.NoJavaInPath=Java er ikke i din sti. MÃ¥ske mangler du at konfigurere JDK? Queue.NodeOffline={0} er offline Label.InvalidLabel=Ugyldig etiket -AbstractBuild.BuildingOnMaster=Bygger p\u00e5 master +AbstractBuild.BuildingOnMaster=Bygger pÃ¥ master CLI.keep-build.shortDescription=Marker bygget for at gemme det for evig tid AbstractProject.NoSCM=Ingen kildekodestyring (SCM) -ChoiceParameterDefinition.DisplayName=V\u00e6lg -Queue.WaitingForNextAvailableExecutorOn=Venter p\u00e5 n\u00e6ste ledige afvikler p\u00e5 {0} -Hudson.NotANegativeNumber=Ikke en negativ v\u00e6rdi +ChoiceParameterDefinition.DisplayName=Vælg +Queue.WaitingForNextAvailableExecutorOn=Venter pÃ¥ næste ledige afvikler pÃ¥ {0} +Hudson.NotANegativeNumber=Ikke en negativ værdi UpdateCenter.PluginCategory.misc=Diverse Queue.InProgress=Et byg er allerede i gang UpdateCenter.Status.ConnectionFailed= @@ -205,10 +205,10 @@ Run.Summary.Unknown=? AbstractProject.BuildPermission.Description=\ Denne rettighed giver mulighed for at starte et nyt byg. Job.NOfMFailed={0} af de seneste {1} byg fejlede. -Slave.Network.Mounted.File.System.Warning=Er du sikker p\u00e5 at du vil bruge et netv\u00e6rksdrev som FS rod? \ -Note: direktoriet beh\u00f8ver ikke v\u00e6re synlig for master noden. +Slave.Network.Mounted.File.System.Warning=Er du sikker pÃ¥ at du vil bruge et netværksdrev som FS rod? \ +Note: direktoriet behøver ikke være synlig for master noden. Label.GroupOf=Gruppe af {0} -Queue.InQuietPeriod=I en stilleperiode. udl\u00f8ber om {0} +Queue.InQuietPeriod=I en stilleperiode. udløber om {0} Queue.AllNodesOffline=Alle noder med etiket ''{0}'' er offline Hudson.NoSuchDirectory=Intet direktorie ved navn: {0} LoadStatistics.Legends.BusyExecutors=Optagede afviklere @@ -217,4 +217,4 @@ MultiStageTimeSeries.EMPTY_STRING= ManageJenkinsAction.DisplayName=Bestyr Jenkins ParametersDefinitionProperty.DisplayName=Dette byg er parameteriseret AbstractItem.NewNameInUse=Navnet {0} er allerede i brug -Job.NoRenameWhileBuilding=Kan ikke omd\u00f8be et job imens det bygger +Job.NoRenameWhileBuilding=Kan ikke omdøbe et job imens det bygger diff --git a/core/src/main/resources/hudson/model/Messages_de.properties b/core/src/main/resources/hudson/model/Messages_de.properties index 9b29b33f89bc..097fd56b8ede 100644 --- a/core/src/main/resources/hudson/model/Messages_de.properties +++ b/core/src/main/resources/hudson/model/Messages_de.properties @@ -21,21 +21,21 @@ # THE SOFTWARE. AbstractBuild.BuildingOnMaster=Baue auf Master -AbstractBuild.BuildingRemotely=Baue auf dem Agenten \u201E{0}\u201C +AbstractBuild.BuildingRemotely=Baue auf dem Agenten „{0}“ AbstractBuild_Building=Baue AbstractBuild.BuildingInWorkspace=\ in Arbeitsbereich {0} AbstractBuild.KeptBecause=Aufbewahrt wegen {0} -AbstractItem.NoSuchJobExists=Element \u201E{0}\u201C existiert nicht. Meinten Sie vielleicht \u201E{1}\u201C? -AbstractItem.NoSuchJobExistsWithoutSuggestion=Es gibt kein Element \u201E{0}\u201C. +AbstractItem.NoSuchJobExists=Element „{0}“ existiert nicht. Meinten Sie vielleicht „{1}“? +AbstractItem.NoSuchJobExistsWithoutSuggestion=Es gibt kein Element „{0}“. AbstractItem.Pronoun=Element AbstractItem.NewNameInUse=Der Name {0} wird bereits verwendet. AbstractProject.AwaitingBuildForWorkspace=Warte auf den Start eines Builds, damit ein Arbeitsbereich erzeugt wird. -AbstractProject.AwaitingWorkspaceToComeOnline=Ein Build m\u00FCsste gestartet werden, um einen Arbeitsbereich anzulegen, aber warte noch {0}ms, falls doch noch ein Arbeitsbereich verf\u00FCgbar wird. +AbstractProject.AwaitingWorkspaceToComeOnline=Ein Build müsste gestartet werden, um einen Arbeitsbereich anzulegen, aber warte noch {0}ms, falls doch noch ein Arbeitsbereich verfügbar wird. AbstractProject.CustomWorkspaceEmpty=Kein Pfad zum Verzeichnis des Arbeitsbereichs angegeben. -AbstractProject.PollingVetoed=SCM-Polling wurde von \u201E{0}\u201C unterbunden -AbstractProject.WorkspaceTitle=Workspace von \u201E{0}\u201C -AbstractProject.WorkspaceTitleOnComputer=Workspace von \u201E{0}\u201C auf \u201E{1}\u201C +AbstractProject.PollingVetoed=SCM-Polling wurde von „{0}“ unterbunden +AbstractProject.WorkspaceTitle=Workspace von „{0}“ +AbstractProject.WorkspaceTitleOnComputer=Workspace von „{0}“ auf „{1}“ AbstractProject.NewBuildForWorkspace=Plane einen neuen Build, um einen Arbeitsbereich anzulegen. AbstractProject.Pronoun=Projekt AbstractProject.Aborted=Abgebrochen @@ -44,7 +44,7 @@ AbstractProject.DownstreamBuildInProgress=Nachgelagertes Projekt {0} ist bereits AbstractProject.Disabled=Build deaktiviert AbstractProject.NoSCM=Kein SCM AbstractProject.NoBuilds=Es existiert kein Build. Starte neuen Build. -AbstractProject.NoWorkspace=Kein Arbeitsbereich verf\u00FCgbar, daher kann nicht auf Aktualisierungen \u00FCberpr\u00FCft werden. +AbstractProject.NoWorkspace=Kein Arbeitsbereich verfügbar, daher kann nicht auf Aktualisierungen überprüft werden. AbstractProject.PollingABorted=SCM Abfrage abgebrochen AbstractProject.ScmAborted=SCM Check-Out abgebrochen AbstractProject.WorkspaceOffline=Arbeitsbereich ist offline. @@ -53,24 +53,24 @@ AbstractProject.BuildPermission.Description=\ AbstractProject.WorkspacePermission.Description=\ Dieses Recht erlaubt, auf den Arbeitsbereich zuzugreifen, \ in den Jenkins aus dem SCM auscheckt. Wenn Sie Benutzern \ - den Zugriff auf Quelltexte verwehren m\u00F6chten, entziehen Sie dieses Recht. + den Zugriff auf Quelltexte verwehren möchten, entziehen Sie dieses Recht. AbstractProject.ExtendedReadPermission.Description=\ Dieses Recht erlaubt Nur-Lese-Zugriff auf Projektkonfigurationen. Bedenken Sie, \ - dass dadurch sensible Informationen aus Ihren Builds, z.B. Passw\u00F6rter, f\u00FCr einen \ + dass dadurch sensible Informationen aus Ihren Builds, z.B. Passwörter, für einen \ erweiterten Personenkreis einsehbar werden. AbstractProject.DiscoverPermission.Description=\ - Dieses Recht erlaubt, zugriffsgesch\u00FCtzte Elemente \u00FCber URLs aufzurufen. \ - Wenn ein anonymer Benutzer mit Discover-Recht ein gesch\u00FCtztes Element aufruft, \ + Dieses Recht erlaubt, zugriffsgeschützte Elemente über URLs aufzurufen. \ + Wenn ein anonymer Benutzer mit Discover-Recht ein geschütztes Element aufruft, \ wird er zur Login-Seite weitergeleitet. \ - Ohne dieses Recht w\u00FCrde er einen 404-Fehler erhalten und k\u00F6nnte keine Element-Namen ermitteln. + Ohne dieses Recht würde er einen 404-Fehler erhalten und könnte keine Element-Namen ermitteln. AbstractProject.WipeOutPermission.Description=\ - Dieses Recht erlaubt, den Inhalt des Arbeitsbereiches zu l\u00F6schen. + Dieses Recht erlaubt, den Inhalt des Arbeitsbereiches zu löschen. AbstractProject.CancelPermission.Description=\ Dieses Recht erlaubt, laufende Builds abzubrechen. -Api.MultipleMatch=XPath \u201E{0}\u201C stimmt mit {1} Knoten \u00FCberein. \ - Erstellen Sie einen XPath-Ausdruck, der mit genau einem Knoten \u00FCbereinstimmt, oder verwenden Sie den Parameter wrapper, um alle Knoten unterhalb eines gemeinsamen Elternknotens zusammenzufassen. -Api.NoXPathMatch=XPath \u201E{0}\u201C lieferte keinen Treffer +Api.MultipleMatch=XPath „{0}“ stimmt mit {1} Knoten überein. \ + Erstellen Sie einen XPath-Ausdruck, der mit genau einem Knoten übereinstimmt, oder verwenden Sie den Parameter wrapper, um alle Knoten unterhalb eines gemeinsamen Elternknotens zusammenzufassen. +Api.NoXPathMatch=XPath „{0}“ lieferte keinen Treffer BallColor.Aborted=Abgebrochen BallColor.Disabled=Deaktiviert @@ -82,39 +82,39 @@ BallColor.Success=Erfolgreich BallColor.Unstable=Instabil Build.post_build_steps_failed=Post-Build Aktionen sind fehlgeschlagen -BuildAuthorizationToken.InvalidTokenProvided=Ung\u00FCltiges Token angegeben. +BuildAuthorizationToken.InvalidTokenProvided=Ungültiges Token angegeben. CLI.restart.shortDescription=Jenkins neu starten. -CLI.keep-build.shortDescription=Build f\u00FCr immer aufbewahren. +CLI.keep-build.shortDescription=Build für immer aufbewahren. CLI.clear-queue.shortDescription=Build-Warteschlange leeren. CLI.safe-restart.shortDescription=Startet Jenkins neu. Queue.init=Build-Warteschlange neu initialisieren -Computer.BadChannel=Agent ist offline, oder nicht \u00FCber einen Remoting-Kanal verbunden (z.B. Master-Knoten) -Computer.BuildPermission.Description=Diese Berechtigung erlaubt Benutzern, Projekte mit ihrer Authentifizierung auf Agenten auszuf\u00FChren. +Computer.BadChannel=Agent ist offline, oder nicht über einen Remoting-Kanal verbunden (z.B. Master-Knoten) +Computer.BuildPermission.Description=Diese Berechtigung erlaubt Benutzern, Projekte mit ihrer Authentifizierung auf Agenten auszuführen. Computer.Caption=Agent {0} Computer.ConfigurePermission.Description=Diese Berechtigung erlaubt Benutzern das Konfigurieren von Agenten. Computer.ConnectPermission.Description=Diese Berechtigung erlaubt Benutzern, Agenten zu verbinden oder als online zu markieren. Computer.CreatePermission.Description=Diese Berechtigung erlaubt Benutzern das Erstellen von Agenten. Computer.DeletePermission.Description=Diese Berechtigung erlaubt Benutzern, Agenten zu entfernen -Computer.DisconnectPermission.Description=Diese Berechtigung erlaubt Benutzern, Agenten zu trennen oder vor\u00FCbergehend als offline zu markieren. +Computer.DisconnectPermission.Description=Diese Berechtigung erlaubt Benutzern, Agenten zu trennen oder vorübergehend als offline zu markieren. Computer.ExtendedReadPermission.Description=Diese Berechtigung erlaubt Benutzern, die Konfiguration von Agenten anzusehen. -Computer.NoSuchSlaveExists=Agent \u201E{0}\u201C existiert nicht. Meinten Sie \u201E{1}\u201C? -Computer.NoSuchSlaveExistsWithoutAdvice=Agent \u201E{0}\u201C existiert nicht. +Computer.NoSuchSlaveExists=Agent „{0}“ existiert nicht. Meinten Sie „{1}“? +Computer.NoSuchSlaveExistsWithoutAdvice=Agent „{0}“ existiert nicht. Computer.Permissions.Title=Agent ComputerSet.DisplayName=Knoten -ComputerSet.NoSuchSlave=Agent existiert nicht: \u201E{0}\u201C -ComputerSet.SlaveAlreadyExists=Ein Agent mit dem Namen \u201E{0}\u201C existiert bereits. +ComputerSet.NoSuchSlave=Agent existiert nicht: „{0}“ +ComputerSet.SlaveAlreadyExists=Ein Agent mit dem Namen „{0}“ existiert bereits. ComputerSet.SpecifySlaveToCopy=Geben Sie an, welcher Agent kopiert werden soll Descriptor.From=(aus {0}) -Executor.NotAvailable=nicht verf\u00FCgbar +Executor.NotAvailable=nicht verfügbar FreeStyleProject.DisplayName="Free Style"-Softwareprojekt bauen -FreeStyleProject.Description=Dieses Profil ist das meistgenutzte in Jenkins. Jenkins baut Ihr Projekt, wobei Sie universell jedes SCM System mit jedem Build-Verfahren kombinieren k\u00F6nnen. Dieses Profil ist nicht nur auf das Bauen von Software beschr\u00E4nkt, sondern kann dar\u00FCber hinaus auch f\u00FCr weitere Anwendungsgebiete verwendet werden. +FreeStyleProject.Description=Dieses Profil ist das meistgenutzte in Jenkins. Jenkins baut Ihr Projekt, wobei Sie universell jedes SCM System mit jedem Build-Verfahren kombinieren können. Dieses Profil ist nicht nur auf das Bauen von Software beschränkt, sondern kann darüber hinaus auch für weitere Anwendungsgebiete verwendet werden. HealthReport.EmptyString= @@ -123,7 +123,7 @@ Hudson.Computer.Caption=Master Hudson.Computer.DisplayName=master Hudson.ControlCodeNotAllowed=Kontrollcodes nicht erlaubt: {0} Hudson.DisplayName=Jenkins -Hudson.JobAlreadyExists=Es existiert bereits ein Element \u201E{0}\u201C +Hudson.JobAlreadyExists=Es existiert bereits ein Element „{0}“ Hudson.NoJavaInPath=java ist nicht in Ihrem PATH-Suchpfad. Eventuell sollten Sie JDKs konfigurieren. Hudson.NoName=Kein Name angegeben Hudson.NoSuchDirectory=Verzeichnis {0} nicht gefunden @@ -131,9 +131,9 @@ Hudson.NodeBeingRemoved=Knoten wird entfernt Hudson.NotAPlugin={0} ist kein Jenkins-Plugin Hudson.NotJDKDir={0} sieht nicht wie ein JDK-Verzeichnis aus Hudson.Permissions.Title=Allgemein -Hudson.USER_CONTENT_README=Dateien in diesem Verzeichnis sind erreichbar \u00FCber http://yourjenkins/userContent/ -Hudson.UnsafeChar=\u201E{0}\u201C ist kein \u201Esicheres\u201C Zeichen -Hudson.ViewAlreadyExists=Es existiert bereits eine Ansicht mit dem Namen \u201E{0}\u201C. +Hudson.USER_CONTENT_README=Dateien in diesem Verzeichnis sind erreichbar über http://yourjenkins/userContent/ +Hudson.UnsafeChar=„{0}“ ist kein „sicheres“ Zeichen +Hudson.ViewAlreadyExists=Es existiert bereits eine Ansicht mit dem Namen „{0}“. Hudson.ViewName=Alle Hudson.NotANumber=Keine Zahl Hudson.NotAPositiveNumber=Keine positive Zahl. @@ -145,47 +145,47 @@ Hudson.NotUsesUTF8ToDecodeURL=\ Servlet-Containern bzw. \ Tomcat i18N). Hudson.AdministerPermission.Description=\ - Diese Berechtigung erlaubt die Durchf\u00FChrung systemweiter Konfigurations\u00E4nderungen, sowie administrativer Aktionen, die effektiv vollen Systemzugriff erlauben (insoweit dem Jenkins-Account von Betriebssystem-Berechtigungen erlaubt). + Diese Berechtigung erlaubt die Durchführung systemweiter Konfigurationsänderungen, sowie administrativer Aktionen, die effektiv vollen Systemzugriff erlauben (insoweit dem Jenkins-Account von Betriebssystem-Berechtigungen erlaubt). Hudson.ReadPermission.Description=\ Dieses Recht ist notwendig, um so gut wie alle Jenkins-Seiten aufzurufen. \ - Dieses Recht ist dann n\u00FCtzlich, wenn Sie anonymen Benutzern den Zugriff \ - auf Jenkins-Seiten verweigern m\u00F6chten — entziehen Sie dazu dem Benutzer \ - anonymous dieses Recht, f\u00FCgen Sie dann einen Pseudo-Benutzer \u201Eauthenticated\u201C hinzu \ + Dieses Recht ist dann nützlich, wenn Sie anonymen Benutzern den Zugriff \ + auf Jenkins-Seiten verweigern möchten — entziehen Sie dazu dem Benutzer \ + anonymous dieses Recht, fügen Sie dann einen Pseudo-Benutzer „authenticated“ hinzu \ und erteilen Sie diesem Lese-Zugriff. Hudson.NodeDescription=Jenkins Master-Knoten Item.Permissions.Title=Element Item.CREATE.description=Dieses Recht erlaubt, neue Elemente anzulegen. -Item.DELETE.description=Dieses Recht erlaubt, bestehende Elemente zu l\u00F6schen. +Item.DELETE.description=Dieses Recht erlaubt, bestehende Elemente zu löschen. Item.CONFIGURE.description=Dieses Recht erlaubt, bestehende Elemente zu konfigurieren. -Item.READ.description=Dieses Recht erlaubt, Elemente zu sehen. (Sie k\u00F6nnen dieses Recht \ +Item.READ.description=Dieses Recht erlaubt, Elemente zu sehen. (Sie können dieses Recht \ entziehen und stattdessen nur das Discover-Recht erteilen. Ein anonym auf das Element zugreifender \ Benutzer wird dann zur Authentifizierung aufgefordert.) -ItemGroupMixIn.may_not_copy_as_it_contains_secrets_and_=Kann \u201E{0}\u201C nicht kopieren, da es Geheimnisse enth\u00E4lt und \u201E{1}\u201C nur {2}/{3} aber nicht /{4} hat. +ItemGroupMixIn.may_not_copy_as_it_contains_secrets_and_=Kann „{0}“ nicht kopieren, da es Geheimnisse enthält und „{1}“ nur {2}/{3} aber nicht /{4} hat. -Jenkins.CheckDisplayName.DisplayNameNotUniqueWarning=Der Anzeigename \u201E{0}\u201C wird bereits von einem anderen Element verwendet und k\u00F6nnte zu Verwechslungen f\u00FChren. -Jenkins.CheckDisplayName.NameNotUniqueWarning=Der Anzeigename \u201E{0}\u201C wird bereits als Name von einem anderen Element verwendet und k\u00F6nnte zu Verwechslungen bei Suchergebnissen f\u00FChren. +Jenkins.CheckDisplayName.DisplayNameNotUniqueWarning=Der Anzeigename „{0}“ wird bereits von einem anderen Element verwendet und könnte zu Verwechslungen führen. +Jenkins.CheckDisplayName.NameNotUniqueWarning=Der Anzeigename „{0}“ wird bereits als Name von einem anderen Element verwendet und könnte zu Verwechslungen bei Suchergebnissen führen. Jenkins.IsRestarting=Jenkins wird neu gestartet -Jenkins.NotAllowedName=\u201E{0}\u201C ist kein erlaubter Name +Jenkins.NotAllowedName=„{0}“ ist kein erlaubter Name Job.AllRecentBuildFailed=In letzter Zeit schlugen alle Builds fehl. -Job.BuildStability=Build-Stabilit\u00E4t: {0} +Job.BuildStability=Build-Stabilität: {0} Job.NOfMFailed={0} der letzten {1} Builds schlug fehl. Job.NoRecentBuildFailed=In letzter Zeit schlug kein Build fehl. Job.Pronoun=Projekt Job.minutes=Minuten -Job.NoRenameWhileBuilding=Ein Job kann nicht umbenannt werden, w\u00e4hrend er gebaut wird. -Job.you_must_use_the_save_button_if_you_wish=Um das Projekt umzubennen, m\u00FCssen Sie die Schaltfl\u00E4che \u201ESpeichern\u201C verwenden. +Job.NoRenameWhileBuilding=Ein Job kann nicht umbenannt werden, während er gebaut wird. +Job.you_must_use_the_save_button_if_you_wish=Um das Projekt umzubennen, müssen Sie die Schaltfläche „Speichern“ verwenden. Label.GroupOf={0} Gruppe -Label.InvalidLabel=Ung\u00FCltiges Label +Label.InvalidLabel=Ungültiges Label Label.ProvisionedFrom=Bereitgestellt durch {0} -LabelExpression.InvalidBooleanExpression=Ung\u00FCltiger boolscher Ausdruck: \u201E{0}\u201C -LabelExpression.LabelLink=Das Label \u201E{1}\u201C wird von {3,choice,0#keinen Knoten|1#einem Knoten|1<{3} Knoten}{4,choice,0#|1# und einer Cloud|1< und {4} Clouds} bedient. +LabelExpression.InvalidBooleanExpression=Ungültiger boolscher Ausdruck: „{0}“ +LabelExpression.LabelLink=Das Label „{1}“ wird von {3,choice,0#keinen Knoten|1#einem Knoten|1<{3} Knoten}{4,choice,0#|1# und einer Cloud|1< und {4} Clouds} bedient. LabelExpression.NoMatch=Es gibt keine Agenten oder Clouds, die diesen Label-Ausdruck bedienen. -LabelExpression.NoMatch_DidYouMean=Es gibt keine Knoten oder Clouds f\u00FCr diesen Ausdruck. Meinten Sie \u201E{1}\u201C statt \u201E{0}\u201C? +LabelExpression.NoMatch_DidYouMean=Es gibt keine Knoten oder Clouds für diesen Ausdruck. Meinten Sie „{1}“ statt „{0}“? LoadStatistics.Legends.AvailableExecutors=Freie Build-Prozessoren LoadStatistics.Legends.ConnectingExecutors=Verbindende Build-Prozessoren @@ -197,31 +197,31 @@ MultiStageTimeSeries.EMPTY_STRING= MyViewsProperty.DisplayName=Meine Ansichten MyViewsProperty.GlobalAction.DisplayName=Meine Ansichten -MyViewsProperty.ViewExistsCheck.NotExist=Ansicht \u201E{0}\u201C existiert nicht. -MyViewsProperty.ViewExistsCheck.AlreadyExists=Eine Ansicht \u201E{0}\u201C existiert bereits. +MyViewsProperty.ViewExistsCheck.NotExist=Ansicht „{0}“ existiert nicht. +MyViewsProperty.ViewExistsCheck.AlreadyExists=Eine Ansicht „{0}“ existiert bereits. -Node.BecauseNodeIsNotAcceptingTasks=\u201E{0}\u201C nimmt keine Tasks an. -Node.BecauseNodeIsReserved=\u201E{0}\u201C ist f\u00FCr Projekte mit passendem Label-Ausdruck reserviert -Node.LabelMissing=\u201E{0}\u201C hat nicht das Label \u201E{1}\u201C -Node.LackingBuildPermission=\u201E{0}\u201C fehlt die Berechtigung, auf \u201E{1}\u201C zu bauen. +Node.BecauseNodeIsNotAcceptingTasks=„{0}“ nimmt keine Tasks an. +Node.BecauseNodeIsReserved=„{0}“ ist für Projekte mit passendem Label-Ausdruck reserviert +Node.LabelMissing=„{0}“ hat nicht das Label „{1}“ +Node.LackingBuildPermission=„{0}“ fehlt die Berechtigung, auf „{1}“ zu bauen. Permalink.LastCompletedBuild=Neuester abgeschlossener Build -ProxyView.NoSuchViewExists=Globale Ansicht \u201E{0}\u201C existiert nicht. +ProxyView.NoSuchViewExists=Globale Ansicht „{0}“ existiert nicht. ProxyView.DisplayName=Globale Ansicht einbinden -Queue.AllNodesOffline=Alle Knoten des Labels \u201E{0}\u201C sind offline +Queue.AllNodesOffline=Alle Knoten des Labels „{0}“ sind offline Queue.BlockedBy=Blockiert von {0} Queue.executor_slot_already_in_use=Build-Prozessor wird bereits benutzt Queue.HudsonIsAboutToShutDown=Jenkins wird heruntergefahren Queue.InProgress=Ein Build ist bereits in Arbeit Queue.InQuietPeriod=In Ruhe-Periode. Endet in {0} -Queue.LabelHasNoNodes=Es gibt keine Knoten mit dem Label \u201E{0}\u201C +Queue.LabelHasNoNodes=Es gibt keine Knoten mit dem Label „{0}“ Queue.NodeOffline={0} ist offline -Queue.node_has_been_removed_from_configuration=Der Knoten \u201E{0}\u201C wurde entfernt +Queue.node_has_been_removed_from_configuration=Der Knoten „{0}“ wurde entfernt Queue.Unknown=??? -Queue.WaitingForNextAvailableExecutor=Warte auf den n\u00E4chsten freien Build-Prozessor -Queue.WaitingForNextAvailableExecutorOn=Warte auf den n\u00E4chsten freien Build-Prozessor auf {0} +Queue.WaitingForNextAvailableExecutor=Warte auf den nächsten freien Build-Prozessor +Queue.WaitingForNextAvailableExecutorOn=Warte auf den nächsten freien Build-Prozessor auf {0} ResultTrend.Aborted=Abgebrochen ResultTrend.Failure=Fehlschlag @@ -234,21 +234,21 @@ ResultTrend.Success=Erfolgreich ResultTrend.Unstable=Instabil Run.BuildAborted=Build wurde abgebrochen -Run.MarkedExplicitly=Explizit gekennzeichnet, um Aufzeichnungen zur\u00FCckzubehalten +Run.MarkedExplicitly=Explizit gekennzeichnet, um Aufzeichnungen zurückzubehalten Run.Permissions.Title=Lauf/Build -Run.UnableToDelete=Kann {0} nicht l\u00F6schen: {1} +Run.UnableToDelete=Kann {0} nicht löschen: {1} Run.DeletePermission.Description=\ - Dieses Recht erlaubt, gezielt Builds aus dem Build-Verlauf zu l\u00F6schen. + Dieses Recht erlaubt, gezielt Builds aus dem Build-Verlauf zu löschen. Run.UpdatePermission.Description=\ Dieses Recht erlaubt, die Beschreibung und andere Eigenschaften eines Builds \ - zu aktualisieren, z.B. um Gr\u00FCnde f\u00FCr das Scheitern eines Builds zu notieren. + zu aktualisieren, z.B. um Gründe für das Scheitern eines Builds zu notieren. -Run.InProgressDuration={0} und l\u00E4uft -Run._is_waiting_for_a_checkpoint_on_=\u201E{0}\u201C wartet auf einen Checkpoint von \u201E{1}\u201C -Run.ArtifactsBrowserTitle=Artefakte von \u201E{0} {1}\u201C +Run.InProgressDuration={0} und läuft +Run._is_waiting_for_a_checkpoint_on_=„{0}“ wartet auf einen Checkpoint von „{1}“ +Run.ArtifactsBrowserTitle=Artefakte von „{0} {1}“ Run.ArtifactsPermission.Description=Diese Berechtigung erlaubt es, Artefakte von Builds herunterzuladen. Run.NotStartedYet=Noch nicht gestartet -Run.running_as_=Build wird als \u201E{0}\u201C ausgef\u00FChrt +Run.running_as_=Build wird als „{0}“ ausgeführt Run.Summary.NotBuilt=Nicht gebaut Run.Summary.Stable=Stabil @@ -260,37 +260,37 @@ Run.Summary.BrokenSinceThisBuild=Defekt seit diesem Build. Run.Summary.BrokenSince=Defekt seit Build {0} Run.Summary.Unknown=Ergebnis unbekannt -Slave.InvalidConfig.Executors=Ung\u00FCltige Agenten-Konfiguration f\u00FCr \u201E{0}\u201C: Ung\u00FCltige Zahl von Build-Prozessoren -Slave.InvalidConfig.NoName=Ung\u00FCltige Agenten-Konfiguration f\u00FCr \u201E{0}\u201C: Name ist leer +Slave.InvalidConfig.Executors=Ungültige Agenten-Konfiguration für „{0}“: Ungültige Zahl von Build-Prozessoren +Slave.InvalidConfig.NoName=Ungültige Agenten-Konfiguration für „{0}“: Name ist leer Slave.Network.Mounted.File.System.Warning=\ - Sind Sie sicher, dass Sie ein Netzlaufwerk als Stammverzeichnis verwenden m\u00F6chten? \ + Sind Sie sicher, dass Sie ein Netzlaufwerk als Stammverzeichnis verwenden möchten? \ Hinweis: Dieses Verzeichnis muss nicht vom Master-Knoten aus sichtbar sein. Slave.Remote.Director.Mandatory=Ein Stammverzeichnis muss angegeben werden. -Slave.Remote.Relative.Path.Warning=M\u00F6chten Sie wirklich einen relativen Pfad als Stammverzeichnis verwenden? Hierbei ist wichtig, dass die Startmethode des Agenten ein konsistentes Arbeitsverzeichnis bereit stellt. Es wird daher empfohlen, einen absoluten Pfad anzugeben. +Slave.Remote.Relative.Path.Warning=Möchten Sie wirklich einen relativen Pfad als Stammverzeichnis verwenden? Hierbei ist wichtig, dass die Startmethode des Agenten ein konsistentes Arbeitsverzeichnis bereit stellt. Es wird daher empfohlen, einen absoluten Pfad anzugeben. Slave.UnixSlave=Dies ist ein Unix- oder Linux-Agent Slave.WindowsSlave=Dies ist ein Windows-Agent -TopLevelItemDescriptor.NotApplicableIn=Elemente vom Typ {0} k\u00F6nnen nicht in {1} erstellt werden. +TopLevelItemDescriptor.NotApplicableIn=Elemente vom Typ {0} können nicht in {1} erstellt werden. -UpdateCenter.DownloadButNotActivated=Erfolgreich heruntergeladen. Wird beim n\u00E4chsten Neustart aktiviert. -UpdateCenter.n_a=(nicht verf\u00FCgbar) +UpdateCenter.DownloadButNotActivated=Erfolgreich heruntergeladen. Wird beim nächsten Neustart aktiviert. +UpdateCenter.n_a=(nicht verfügbar) View.MissingMode=Ein Ansichtstyp muss angegeben werden. View.Permissions.Title=Ansichten View.CreatePermission.Description=\ Dieses Recht erlaubt, neue Ansichten anzulegen. View.DeletePermission.Description=\ - Dieses Recht erlaubt, bestehende Ansichten zu l\u00F6schen. + Dieses Recht erlaubt, bestehende Ansichten zu löschen. View.ConfigurePermission.Description=\ Dieses Recht erlaubt, bestehende Ansichten zu konfigurieren. View.ReadPermission.Description=\ Dieses Recht erlaubt, Ansichten zu sehen (im allgemeinen Read-Recht enthalten). -View.DisplayNameNotUniqueWarning=Der Anzeigename \u201E{0}\u201C wird bereits von einer anderen Ansicht verwendet und kann zu Verwechslungen f\u00FChren. +View.DisplayNameNotUniqueWarning=Der Anzeigename „{0}“ wird bereits von einer anderen Ansicht verwendet und kann zu Verwechslungen führen. -UpdateCenter.Status.CheckingInternet=\u00DCberpr\u00FCfe Zugang zum Internet -UpdateCenter.Status.CheckingJavaNet=\u00DCberpr\u00FCfe Zugang zu jenkins-ci.org-Server +UpdateCenter.Status.CheckingInternet=Ãœberprüfe Zugang zum Internet +UpdateCenter.Status.CheckingJavaNet=Ãœberprüfe Zugang zu jenkins-ci.org-Server UpdateCenter.Status.Success=Erfolgreich UpdateCenter.Status.UnknownHostException=\ - Hostname {0} konnte nicht aufgel\u00F6st werden. \ + Hostname {0} konnte nicht aufgelöst werden. \ Eventuell sollten Sie einen HTTP-Proxy konfigurieren? UpdateCenter.Status.ConnectionFailed=\ Es konnte keine Verbindung zu {0} aufgebaut werden. \ @@ -312,8 +312,8 @@ UpdateCenter.PluginCategory.external=Integration externer Sites und Werkzeuge UpdateCenter.PluginCategory.groovy-related=Groovy (weiteres Umfeld) UpdateCenter.PluginCategory.ios=iOS-Entwicklung UpdateCenter.PluginCategory.api-plugin=Programmbibliotheken (von anderen Plugins verwendet) -UpdateCenter.PluginCategory.listview-column=Spalten f\u00FCr Listenansichten -UpdateCenter.PluginCategory.maven=Maven bzw. Plugins mit besonderer Maven-Unterst\u00FCtzung +UpdateCenter.PluginCategory.listview-column=Spalten für Listenansichten +UpdateCenter.PluginCategory.maven=Maven bzw. Plugins mit besonderer Maven-Unterstützung UpdateCenter.PluginCategory.misc=Verschiedenes UpdateCenter.PluginCategory.notifier=Benachrichtigungen UpdateCenter.PluginCategory.page-decorator=Seiten-Dekoratoren @@ -328,16 +328,16 @@ UpdateCenter.PluginCategory.scm-related=Versionsverwaltung (weiteres Umfeld) UpdateCenter.PluginCategory.security=Sicherheit UpdateCenter.PluginCategory.agent=Agenten-Start und -Steuerung UpdateCenter.PluginCategory.test=Testen -UpdateCenter.PluginCategory.trigger=Build-Ausl\u00F6ser -UpdateCenter.PluginCategory.ui=Benutzeroberfl\u00E4che +UpdateCenter.PluginCategory.trigger=Build-Auslöser +UpdateCenter.PluginCategory.ui=Benutzeroberfläche UpdateCenter.PluginCategory.upload=Distribution von Artefakten UpdateCenter.PluginCategory.user=Benutzerverwaltung und Authentifizierung UpdateCenter.PluginCategory.view=Anzeigen UpdateCenter.PluginCategory.must-be-labeled=unkategorisiert UpdateCenter.PluginCategory.unrecognized=Diverses ({0}) -User.IllegalFullname=\u201E{0}\u201C kann aus Sicherheitsgr\u00FCnden nicht als vollst\u00E4ndiger Name verwendet werden. -User.IllegalUsername=\u201E{0}\u201C kann aus Sicherheitsgr\u00FCnden nicht als Benutzername verwendet werden. +User.IllegalFullname=„{0}“ kann aus Sicherheitsgründen nicht als vollständiger Name verwendet werden. +User.IllegalUsername=„{0}“ kann aus Sicherheitsgründen nicht als Benutzername verwendet werden. Permalink.LastBuild=Letzter Build Permalink.LastStableBuild=Letzter stabiler Build @@ -352,24 +352,24 @@ TextParameterDefinition.DisplayName=Textbox-Parameter FileParameterDefinition.DisplayName=Datei-Parameter BooleanParameterDefinition.DisplayName=Bool'scher Wert ChoiceParameterDefinition.DisplayName=Auswahl -ChoiceParameterDefinition.MissingChoices=Optionen m\u00FCssen angegeben werden. +ChoiceParameterDefinition.MissingChoices=Optionen müssen angegeben werden. RunParameterDefinition.DisplayName=Run-Parameter PasswordParameterDefinition.DisplayName=Passwort-Parameter -Node.Mode.NORMAL=Diesen Knoten so viel wie m\u00F6glich verwenden -Node.Mode.EXCLUSIVE=Diesen Knoten exklusiv f\u00FCr gebundene Projekte reservieren +Node.Mode.NORMAL=Diesen Knoten so viel wie möglich verwenden +Node.Mode.EXCLUSIVE=Diesen Knoten exklusiv für gebundene Projekte reservieren ListView.DisplayName=Listenansicht MyView.DisplayName=Meine Ansicht LoadStatistics.Legends.TotalExecutors=Gesamtanzahl Build-Prozessoren -LoadStatistics.Legends.BusyExecutors=Besch\u00E4ftigte Build-Prozessoren -LoadStatistics.Legends.QueueLength=L\u00E4nge der Warteschlange +LoadStatistics.Legends.BusyExecutors=Beschäftigte Build-Prozessoren +LoadStatistics.Legends.QueueLength=Länge der Warteschlange -Cause.LegacyCodeCause.ShortDescription=Projekt wurde von Legacy-Code gestartet. Keine Information \u00FCber Ausl\u00F6ser verf\u00FCgbar. -Cause.UpstreamCause.CausedBy=Urspr\u00FCnglich gestartet durch: -Cause.UpstreamCause.ShortDescription=Gestartet durch vorgelagertes Projekt \u201E{0}\u201C, Build {1} +Cause.LegacyCodeCause.ShortDescription=Projekt wurde von Legacy-Code gestartet. Keine Information über Auslöser verfügbar. +Cause.UpstreamCause.CausedBy=Ursprünglich gestartet durch: +Cause.UpstreamCause.ShortDescription=Gestartet durch vorgelagertes Projekt „{0}“, Build {1} Cause.UserCause.ShortDescription=Gestartet durch Benutzer {0} Cause.UserIdCause.ShortDescription=Gestartet durch Benutzer {0} Cause.RemoteCause.ShortDescription=Gestartet durch entfernten Rechner {0} diff --git a/core/src/main/resources/hudson/model/Messages_el.properties b/core/src/main/resources/hudson/model/Messages_el.properties index a33410258190..fbd6ee031550 100644 --- a/core/src/main/resources/hudson/model/Messages_el.properties +++ b/core/src/main/resources/hudson/model/Messages_el.properties @@ -1 +1 @@ -ManageJenkinsAction.DisplayName=\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 Jenkins +ManageJenkinsAction.DisplayName=ΔιαχείÏιση Jenkins diff --git a/core/src/main/resources/hudson/model/Messages_es.properties b/core/src/main/resources/hudson/model/Messages_es.properties index a40a0cb3d3ce..c9e17aa5e757 100644 --- a/core/src/main/resources/hudson/model/Messages_es.properties +++ b/core/src/main/resources/hudson/model/Messages_es.properties @@ -24,31 +24,31 @@ AbstractBuild.BuildingRemotely=Ejecutando remotamente en {0} AbstractBuild.BuildingOnMaster=Ejecutando en el nodo principal AbstractBuild.KeptBecause=Conservar porque {0} -AbstractItem.NoSuchJobExists=La tarea ''{0}'' no existe. \u00bfQuiz\u00e1s quieras decir ''{1}''? +AbstractItem.NoSuchJobExists=La tarea ''{0}'' no existe. ¿Quizás quieras decir ''{1}''? AbstractItem.NewNameInUse=El nombre {0} ya existe. -AbstractProject.NewBuildForWorkspace=Lanzando una nueva ejecuci\u00f3n para crear el espacio de trabajo. +AbstractProject.NewBuildForWorkspace=Lanzando una nueva ejecución para crear el espacio de trabajo. AbstractProject.Pronoun=Proyecto AbstractProject.Aborted=Cancelado -AbstractProject.UpstreamBuildInProgress=El proyecto padre {0} ya se est\u00e1 ejecutando. -AbstractProject.Disabled=Ejecuci\u00f3n desactivada +AbstractProject.UpstreamBuildInProgress=El proyecto padre {0} ya se está ejecutando. +AbstractProject.Disabled=Ejecución desactivada AbstractProject.NoSCM=Sin SCM AbstractProject.NoWorkspace=No hay espacio de trabajo, por tanto no se puede comprobar las actualizaciones. AbstractProject.PollingABorted=Peticiones SCM abortadas AbstractProject.ScmAborted=Actualizacion SCM abortada -AbstractProject.WorkspaceOffline=El espacio de trabajo est\u00e1 fuera de l\u00ednea. +AbstractProject.WorkspaceOffline=El espacio de trabajo está fuera de línea. AbstractProject.BuildPermission.Description=\ - Este permiso permite al usuario lanzar una ejecuci\u00f3n. + Este permiso permite al usuario lanzar una ejecución. AbstractProject.WorkspacePermission.Description=\ - Este permiso permite visualizar el contenido de un espacio de trabajo que Jenkins cre\u00f3 para ejecutar tareas. \ - Si no quieres que un usuario acceda al c\u00f3digo fuente, desactival\u00f3. + Este permiso permite visualizar el contenido de un espacio de trabajo que Jenkins creó para ejecutar tareas. \ + Si no quieres que un usuario acceda al código fuente, desactivaló. AbstractProject.ExtendedReadPermission.Description=\ - Este permiso garantiza acceso de s\u00f3lo lectura a la configuraci\u00f3n de proyectos. \ - S\u00e9 consciente que hay informaci\u00f3n delicada en las tareas como puedan ser las contrase\u00f1as que pueden quedar expuestas a todo el mundo. + Este permiso garantiza acceso de sólo lectura a la configuración de proyectos. \ + Sé consciente que hay información delicada en las tareas como puedan ser las contraseñas que pueden quedar expuestas a todo el mundo. -Api.MultipleMatch=XPath "{0}" encontr\u00f3 coincidencias en {1} nodos. \ - Crea una expresi\u00f3n XPath que s\u00f3lo encuentre uno, o utiliza el par\u00e1metro "wraper" para que todos los nodos se agrupen bajo un elemento. -Api.NoXPathMatch=XPath {0} no encontr\u00f3 nada -Api.WrapperParamInvalid=El par\u00E1metro wrapper s\u00F3lo puede contener caracteres alfanum\u00E9ricos o guiones/puntos/subrayado. El primer car\u00E1cter debe ser una letra o subrayado. +Api.MultipleMatch=XPath "{0}" encontró coincidencias en {1} nodos. \ + Crea una expresión XPath que sólo encuentre uno, o utiliza el parámetro "wraper" para que todos los nodos se agrupen bajo un elemento. +Api.NoXPathMatch=XPath {0} no encontró nada +Api.WrapperParamInvalid=El parámetro wrapper sólo puede contener caracteres alfanuméricos o guiones/puntos/subrayado. El primer carácter debe ser una letra o subrayado. BallColor.Aborted=Abortado BallColor.Disabled=Desactivado @@ -67,48 +67,48 @@ Computer.DeletePermission.Description=Este permiso permite borrar nodos ComputerSet.NoSuchSlave=Es nodo {0} no existe ComputerSet.SlaveAlreadyExists=Es nodo ''{0}'' ya existe -ComputerSet.SpecifySlaveToCopy=Especificar qu\u00e9 nodo copiar +ComputerSet.SpecifySlaveToCopy=Especificar qué nodo copiar Executor.NotAvailable=N/D FreeStyleProject.DisplayName=Crear un proyecto de estilo libre -FreeStyleProject.Description=Esta es la caracter\u00EDstica principal de Jenkins, la de ejecutar el proyecto combinando cualquier tipo de repositorio de software (SCM) con cualquier modo de construcci\u00F3n o ejecuci\u00F3n (make, ant, mvn, rake, script ...). Por tanto se podr\u00E1 tanto compilar y empaquetar software, como ejecutar cualquier proceso que requiera monitorizaci\u00F3n. +FreeStyleProject.Description=Esta es la característica principal de Jenkins, la de ejecutar el proyecto combinando cualquier tipo de repositorio de software (SCM) con cualquier modo de construcción o ejecución (make, ant, mvn, rake, script ...). Por tanto se podrá tanto compilar y empaquetar software, como ejecutar cualquier proceso que requiera monitorización. -Hudson.BadPortNumber=N\u00famero err\u00f3neo de puerto {0} +Hudson.BadPortNumber=Número erróneo de puerto {0} Hudson.Computer.Caption=Principal Hudson.Computer.DisplayName=principal -Hudson.ControlCodeNotAllowed=El c\u00f3digo de control {0} no est\u00e1 permitido +Hudson.ControlCodeNotAllowed=El código de control {0} no está permitido Hudson.DisplayName=Jenkins Hudson.JobAlreadyExists=Una tarea con el nombre ''{0}'' ya existe -Hudson.NoJavaInPath=No se encuentra el comando java en el ''PATH''. Quiz\u00e1s necesite configurar JDKs? +Hudson.NoJavaInPath=No se encuentra el comando java en el ''PATH''. Quizás necesite configurar JDKs? Hudson.NoName=No se ha especificado un nombre Hudson.NoSuchDirectory=No existe el directorio {0} -Hudson.NodeBeingRemoved=Se est\u00e1 borrando el nodo +Hudson.NodeBeingRemoved=Se está borrando el nodo Hudson.NotADirectory={0} no es un directorio Hudson.NotAPlugin={0} no es un plugin de Jenkins Hudson.NotJDKDir={0} no es un directorio JDK Hudson.Permissions.Title=Global -Hudson.USER_CONTENT_README=Los ficheros de este directorio est\u00e1n accesible en http://yourjenkins/userContent/ -Hudson.UnsafeChar=''{0}'' es un car\u00e1cter inseguro +Hudson.USER_CONTENT_README=Los ficheros de este directorio están accesible en http://yourjenkins/userContent/ +Hudson.UnsafeChar=''{0}'' es un carácter inseguro Hudson.ViewAlreadyExists=Una vista con el nombre "{0}" ya existe Hudson.ViewName=Todo -Hudson.NotANumber=No es un n\u00famero -Hudson.NotAPositiveNumber=No es un n\u00famero positivo -Hudson.NotANonNegativeNumber=El n\u00famero podr\u00eda no ser negativo -Hudson.NotANegativeNumber=No es un n\u00famero negativo +Hudson.NotANumber=No es un número +Hudson.NotAPositiveNumber=No es un número positivo +Hudson.NotANonNegativeNumber=El número podría no ser negativo +Hudson.NotANegativeNumber=No es un número negativo Hudson.NotUsesUTF8ToDecodeURL=\ - El contenedor de servlets no usa UTF-8 para decodificar URLs. Esto causar\u00e1 problemas si se usan nombres \ + El contenedor de servlets no usa UTF-8 para decodificar URLs. Esto causará problemas si se usan nombres \ con caracteres no ASCII. Echa un vistazo a \ Containers y a \ Tomcat i18n para mas detalles. Hudson.AdministerPermission.Description=\ - Este permiso garantiza la posibilidad de hacer cambios de configuraci\u00f3n en el sistema, \ - as\u00ed como el realizar operaciones sobre el sistema de archivos local. \ + Este permiso garantiza la posibilidad de hacer cambios de configuración en el sistema, \ + así como el realizar operaciones sobre el sistema de archivos local. \ (Siempre que lo permita el sistema operativo) Hudson.ReadPermission.Description=\ - El permiso de lectura es necesario para visualizar casi todas las p\u00e1ginas de Jenkins.\ - Este permiso es \u00fatil cuando se quiere que usuarios no autenticados puedan ver las p\u00e1ginas. \ - Elimina este permiso del usuario "anonymous", luego a\u00f1ade "authenticated pseudo-user" con el \ + El permiso de lectura es necesario para visualizar casi todas las páginas de Jenkins.\ + Este permiso es útil cuando se quiere que usuarios no autenticados puedan ver las páginas. \ + Elimina este permiso del usuario "anonymous", luego añade "authenticated pseudo-user" con el \ permiso de lectura. Hudson.NodeDescription=El nodo principal de Jenkins @@ -116,109 +116,109 @@ Item.Permissions.Title=Tarea Job.AllRecentBuildFailed=Todas la ejecuciones recientes han fallado Job.BuildStability=Estabilidad: {0} -Job.NOfMFailed={0} de las {1} \u00faltimas ejecuciones fallaron. +Job.NOfMFailed={0} de las {1} últimas ejecuciones fallaron. Job.NoRecentBuildFailed=No hay ejecuciones recientes con fallos. Job.Pronoun=Proyecto Job.minutes=Min -Job.NoRenameWhileBuilding=No es posible renombrar un proyecto mientras se est\u00E1 ejecutando. +Job.NoRenameWhileBuilding=No es posible renombrar un proyecto mientras se está ejecutando. Label.GroupOf=grupo de {0} -Label.InvalidLabel=etiqueta inv\u00e1lida +Label.InvalidLabel=etiqueta inválida Label.ProvisionedFrom=Suministrado desde {0} -Queue.AllNodesOffline=Todos los nodos con la etiqueta ''{0}'' est\u00e1n fuera de l\u00ednea +Queue.AllNodesOffline=Todos los nodos con la etiqueta ''{0}'' están fuera de línea Queue.BlockedBy=Bloqueados por {0} Queue.HudsonIsAboutToShutDown=Jenkins va a ser apagado -Queue.InProgress=Una ejecuci\u00f3n ya est\u00e1 en progreso +Queue.InProgress=Una ejecución ya está en progreso Queue.InQuietPeriod=En el periodo de gracia. Termina en {0} -Queue.NodeOffline={0} fuera de l\u00ednea +Queue.NodeOffline={0} fuera de línea Queue.Unknown=? Queue.WaitingForNextAvailableExecutor=Esperando por un ejecutor Queue.WaitingForNextAvailableExecutorOn=Esperando por un ejecutor en {0} Queue.init=Restaurando la cola de tareas -Queue.ExceptionCanTake=Excepci\u00f3n evaluando si el nodo puede coger la tarea -Queue.ExceptionCanRun=Excepci\u00f3n evaluando si la cola puede ejecutar la tarea +Queue.ExceptionCanTake=Excepción evaluando si el nodo puede coger la tarea +Queue.ExceptionCanRun=Excepción evaluando si la cola puede ejecutar la tarea -Run.BuildAborted=La ejecuci\u00f3n fu\u00e9 cancelada +Run.BuildAborted=La ejecución fué cancelada Run.MarkedExplicitly=marcado para mantener el registro Run.Permissions.Title=Ejecutar Run.UnableToDelete=Imposible borrar {0}: {1} Run.DeletePermission.Description=\ Este permiso permite borrar manualmente ejecuciones de la historia de trabajos. Run.UpdatePermission.Description=\ - Este permiso permite actualizar la descripci\u00f3n y otras propiedeades de un trabajo, \ + Este permiso permite actualizar la descripción y otras propiedeades de un trabajo, \ por ejemplo poner notas acerca de la causa de un fallo. Run.Summary.Stable=estable Run.Summary.Unstable=instable Run.Summary.Aborted=cancelado -Run.Summary.BackToNormal=volvi\u00f3 a normal +Run.Summary.BackToNormal=volvió a normal Run.Summary.BrokenForALongTime=fallido durante un largo periodo -Run.Summary.BrokenSinceThisBuild=fallido desde esta ejecuci\u00f3n -Run.Summary.BrokenSince=fallido desde la ejecuci\u00f3n {0} +Run.Summary.BrokenSinceThisBuild=fallido desde esta ejecución +Run.Summary.BrokenSince=fallido desde la ejecución {0} Run.Summary.Unknown=? -Slave.InvalidConfig.Executors=Configuraci\u00f3n de nodo incorrecta en {0}. El n\u00famero de ejecutores es inv\u00e1lido. -Slave.InvalidConfig.NoName=Configuraci\u00f3n de nodo incorrecta. El nombre est\u00e1 vac\u00edo -Slave.Terminated={0} el agente no est\u00e1 en ejecuci\u00f3n +Slave.InvalidConfig.Executors=Configuración de nodo incorrecta en {0}. El número de ejecutores es inválido. +Slave.InvalidConfig.NoName=Configuración de nodo incorrecta. El nombre está vacío +Slave.Terminated={0} el agente no está en ejecución Slave.UnixSlave=Este es un nodo Unix Slave.WindowsSlave=Este es un nodo Windows View.Permissions.Title=Vistas View.CreatePermission.Description=\ - Permiso para creaci\u00f3n vistas. + Permiso para creación vistas. View.DeletePermission.Description=\ Este es un permiso para que los usuario puedan borrar vistas. View.ConfigurePermission.Description=\ - Este permiso se usa para que los usuarios cambien la conficuraci\u00f3n de vistas. + Este permiso se usa para que los usuarios cambien la conficuración de vistas. UpdateCenter.Status.CheckingInternet=Probando conectividad con Internet UpdateCenter.Status.CheckingJavaNet=Probando conectividad con jenkins-ci.org UpdateCenter.Status.Success=Correcto UpdateCenter.Status.UnknownHostException=\ Nombre de servidor imposible de resolver {0}. \ - Quiz\u00e1s tengas que configurar to proxy + Quizás tengas que configurar to proxy UpdateCenter.Status.ConnectionFailed=\ Imposible de conectar con {0}. \ - Quiz\u00e1s tengas que configurar to proxy + Quizás tengas que configurar to proxy UpdateCenter.init=Inicializando centro de actualizaciones UpdateCenter.PluginCategory.builder=Plugins relacionados con la forma de ejecutar trabajos -UpdateCenter.PluginCategory.buildwrapper=Plugins que a\u00f1aden tareas relacionadas con la ejecuci\u00f3n -UpdateCenter.PluginCategory.cli=Plugins para la interfaz de l\u00ednea de comandos -UpdateCenter.PluginCategory.cluster=Plugins para la administraci\u00f3n de clusters y trabajos distribuidos -UpdateCenter.PluginCategory.external=Plugins de integraci\u00f3n con sitios y herramientas externas +UpdateCenter.PluginCategory.buildwrapper=Plugins que añaden tareas relacionadas con la ejecución +UpdateCenter.PluginCategory.cli=Plugins para la interfaz de línea de comandos +UpdateCenter.PluginCategory.cluster=Plugins para la administración de clusters y trabajos distribuidos +UpdateCenter.PluginCategory.external=Plugins de integración con sitios y herramientas externas UpdateCenter.PluginCategory.maven=Plugins para Maven UpdateCenter.PluginCategory.misc=Varios -UpdateCenter.PluginCategory.notifier=Plugins de notificaci\u00f3n -UpdateCenter.PluginCategory.page-decorator=Plugins para decorar p\u00e1ginas -UpdateCenter.PluginCategory.post-build=Plugins que a\u00f1aden acciones de post-ejecuti\u00f3n +UpdateCenter.PluginCategory.notifier=Plugins de notificación +UpdateCenter.PluginCategory.page-decorator=Plugins para decorar páginas +UpdateCenter.PluginCategory.post-build=Plugins que añaden acciones de post-ejecutión UpdateCenter.PluginCategory.report=Plugins para generar informes UpdateCenter.PluginCategory.scm=Plugins de repositorios de software -UpdateCenter.PluginCategory.scm-related=Plugins relacionados con la gesti\u00f3n repositorios +UpdateCenter.PluginCategory.scm-related=Plugins relacionados con la gestión repositorios UpdateCenter.PluginCategory.agent=Plugins para el control de nodos UpdateCenter.PluginCategory.trigger=Plugins lanzadores de tareas UpdateCenter.PluginCategory.ui=Plugins de interfaz de usuario UpdateCenter.PluginCategory.upload=Plugins para subir o desplegar los paquetes generados -UpdateCenter.PluginCategory.user=Plugins para la gesti\u00f3n de usuarios y autenticaci\u00f3n -UpdateCenter.PluginCategory.must-be-labeled=Sin categor\u00eda -UpdateCenter.PluginCategory.unrecognized=Miscel\u00e1neo ({0}) +UpdateCenter.PluginCategory.user=Plugins para la gestión de usuarios y autenticación +UpdateCenter.PluginCategory.must-be-labeled=Sin categoría +UpdateCenter.PluginCategory.unrecognized=Misceláneo ({0}) -Permalink.LastBuild=\u00daltima ejecuci\u00f3n -Permalink.LastStableBuild=\u00daltima ejecuci\u00f3n estable -Permalink.LastSuccessfulBuild=\u00daltima ejecuci\u00f3n correcta -Permalink.LastFailedBuild=\u00daltima ejecuci\u00f3n fallida +Permalink.LastBuild=Última ejecución +Permalink.LastStableBuild=Última ejecución estable +Permalink.LastSuccessfulBuild=Última ejecución correcta +Permalink.LastFailedBuild=Última ejecución fallida -ParameterAction.DisplayName=Par\u00e1metros -StringParameterDefinition.DisplayName=Par\u00e1metro de cadena -FileParameterDefinition.DisplayName=Par\u00e1metro de fichero +ParameterAction.DisplayName=Parámetros +StringParameterDefinition.DisplayName=Parámetro de cadena +FileParameterDefinition.DisplayName=Parámetro de fichero BooleanParameterDefinition.DisplayName=Valor booleano -ChoiceParameterDefinition.DisplayName=Elecci\u00f3n -RunParameterDefinition.DisplayName=Par\u00e1metro de ejecuci\u00f3n -PasswordParameterDefinition.DisplayName=Par\u00e1metro de contrase\u00f1a +ChoiceParameterDefinition.DisplayName=Elección +RunParameterDefinition.DisplayName=Parámetro de ejecución +PasswordParameterDefinition.DisplayName=Parámetro de contraseña Node.Mode.NORMAL=Utilizar este nodo tanto como sea posible -Node.Mode.EXCLUSIVE=Dejar esta nodo para ejecutar s\u00f3lamente tareas vinculadas a \u00e9l +Node.Mode.EXCLUSIVE=Dejar esta nodo para ejecutar sólamente tareas vinculadas a él ListView.DisplayName=Lista de vistas @@ -226,14 +226,14 @@ MyView.DisplayName=Mi vista LoadStatistics.Legends.TotalExecutors=Ejecutores totales LoadStatistics.Legends.BusyExecutors=Ejecutores ocupados -LoadStatistics.Legends.QueueLength=Tama\u00f1o de la cola +LoadStatistics.Legends.QueueLength=Tamaño de la cola -Cause.LegacyCodeCause.ShortDescription=Un c\u00f3digo antiguo (legacy) lanz\u00f3 este proceso. No hay informaci\u00f3n de la causa. -Cause.UpstreamCause.ShortDescription=Lanzada por el proyecto padre "{0}" ejecuci\u00f3n n\u00famero {1} +Cause.LegacyCodeCause.ShortDescription=Un código antiguo (legacy) lanzó este proceso. No hay información de la causa. +Cause.UpstreamCause.ShortDescription=Lanzada por el proyecto padre "{0}" ejecución número {1} Cause.UserCause.ShortDescription=Lanzada por el usuario {0} Cause.UserIdCause.ShortDescription=Lanzada por el usuario {0} -Cause.RemoteCause.ShortDescription=Lanzada por la m\u00e1quina remota {0} -Cause.RemoteCause.ShortDescriptionWithNote=Lanzada por la m\u00e1quina remota {0} con la nota: {1} +Cause.RemoteCause.ShortDescription=Lanzada por la máquina remota {0} +Cause.RemoteCause.ShortDescriptionWithNote=Lanzada por la máquina remota {0} con la nota: {1} ProxyView.NoSuchViewExists=La vista global {0} no existe ProxyView.DisplayName=Incluir una vista global @@ -244,60 +244,60 @@ MyViewsProperty.ViewExistsCheck.AlreadyExists=Una vista con el nombre {0} ya exi CLI.restart.shortDescription=Reiniciar Jenkins CLI.safe-restart.shortDescription=Reiniciar Jenkins de manera segura -CLI.keep-build.shortDescription=Marcar la ejecuci\u00f3n para ser guardada para siempre. +CLI.keep-build.shortDescription=Marcar la ejecución para ser guardada para siempre. View.MissingMode=No se ha especificado el tipo para la vista AbstractProject.NoBuilds=No existen ejecuciones. Lanzando una nueva. Slave.Remote.Director.Mandatory=El directorio remoto es obligatorio -Slave.Network.Mounted.File.System.Warning=\u00bfEst\u00e1s seguro de querer utilizar un directorio de red para el "Filesystem" ra\u00edz?.\ +Slave.Network.Mounted.File.System.Warning=¿Estás seguro de querer utilizar un directorio de red para el "Filesystem" raíz?.\ Ten en cuenta que este directorio no necesita estar visible desde el nodo de Jenkins principal. HealthReport.EmptyString= MultiStageTimeSeries.EMPTY_STRING= ComputerSet.DisplayName=nodos Run.InProgressDuration={0} y contando Node.LabelMissing={0} no tiene etiqueta {1} -Node.BecauseNodeIsReserved={0} est\u00e1 reservado para trabajos asignados a este nodo. -Permalink.LastUnsuccessfulBuild=\u00daltima ejecuci\u00f3n fallida -Permalink.LastUnstableBuild=\u00daltima ejecuci\u00f3n inestable -Computer.BadChannel=El nodo est\u00e1 apagado o no existe el canal remoto (como puede ocurrir en un nodo principal) +Node.BecauseNodeIsReserved={0} está reservado para trabajos asignados a este nodo. +Permalink.LastUnsuccessfulBuild=Última ejecución fallida +Permalink.LastUnstableBuild=Última ejecución inestable +Computer.BadChannel=El nodo está apagado o no existe el canal remoto (como puede ocurrir en un nodo principal) MyViewsProperty.DisplayName=Mis vistas BuildAuthorizationToken.InvalidTokenProvided=El Token incorrecto -LabelExpression.NoMatch=No hay ning\u00fan nodo/nube que cumpla esta asignaci\u00f3n +LabelExpression.NoMatch=No hay ningún nodo/nube que cumpla esta asignación AbstractItem.Pronoun=Tarea -AbstractProject.DownstreamBuildInProgress=El projecto padre {0} todav\u00eda est\u00e1 en ejecuci\u00f3n -AbstractProject.AwaitingBuildForWorkspace=El trabajo est\u00e1 esperando para tener un ''espacio de trabajo'' +AbstractProject.DownstreamBuildInProgress=El projecto padre {0} todavía está en ejecución +AbstractProject.AwaitingBuildForWorkspace=El trabajo está esperando para tener un ''espacio de trabajo'' Run.ArtifactsPermission.Description=\ Este permiso sirve para poder utilizar los artefactos producidos en los proyectos. -LabelExpression.InvalidBooleanExpression=Expresi\u00f3n booleana incorrecta: {0} +LabelExpression.InvalidBooleanExpression=Expresión booleana incorrecta: {0} ManageJenkinsAction.DisplayName=Administrar Jenkins -Computer.NoSuchSlaveExists=El nodo {0} no existe. \u00BFQuiz\u00E1s se est\u00E1 refiriendo a {1}? -ResultTrend.StillFailing=Todav\u00EDa falla -Computer.DisconnectPermission.Description=Este permiso permite que los usuarios puedan desconectar nodos o marcarlos como fuera de l\u00EDnea. +Computer.NoSuchSlaveExists=El nodo {0} no existe. ¿Quizás se está refiriendo a {1}? +ResultTrend.StillFailing=Todavía falla +Computer.DisconnectPermission.Description=Este permiso permite que los usuarios puedan desconectar nodos o marcarlos como fuera de línea. Computer.CreatePermission.Description=Este permiso permite que los usuarios puedan crear nuevos nodos. -ResultTrend.StillUnstable=Todav\u00EDa inestable +ResultTrend.StillUnstable=Todavía inestable View.ReadPermission.Description=Este permiso permite que los usuarion puedan crear vistas (implica acceso de lectura) ResultTrend.Fixed=Arreglado ResultTrend.Failure=Fallo UpdateCenter.PluginCategory.listview-column=Columnas de la lista ResultTrend.Aborted=Cancelado -TextParameterDefinition.DisplayName=Par\u00E1metro de texto -LabelExpression.NoMatch_DidYouMean=No hay ning\u00FAn nodo que cumpla esta asignaci\u00F3n. \u00BFQuiz\u00E1s se refiera a ''{1}'' en lugar de ''{0}''? +TextParameterDefinition.DisplayName=Parámetro de texto +LabelExpression.NoMatch_DidYouMean=No hay ningún nodo que cumpla esta asignación. ¿Quizás se refiera a ''{1}'' en lugar de ''{0}''? ResultTrend.Success=Correcto AbstractProject.CancelPermission.Description=Este permiso permite que se pueda cancelar un trabajo. Run.Summary.NotBuilt=no se ha ejecutado AbstractProject.DiscoverPermission.Description=Este permiso garantiza que se pueda descubrir tareas. \ - Siendo de menos valor que el permiso de lectura, permite que puedas redireccionar a usuarios an\u00EDnimos a la p\u00E1gina de login. \ - Sin este permiso, los usuarios an\u00F3nimos recibir\u00E1n un error 404, no siendo capaces de descubrir esas tareas. -Jenkins.CheckDisplayName.NameNotUniqueWarning=El nombre "{0}" ya se usa para el numbre de una tarea, lo que puede producir confusi\u00F3n en los resultados de b\u00FAsquedas. + Siendo de menos valor que el permiso de lectura, permite que puedas redireccionar a usuarios anínimos a la página de login. \ + Sin este permiso, los usuarios anónimos recibirán un error 404, no siendo capaces de descubrir esas tareas. +Jenkins.CheckDisplayName.NameNotUniqueWarning=El nombre "{0}" ya se usa para el numbre de una tarea, lo que puede producir confusión en los resultados de búsquedas. ResultTrend.NotBuilt=Sin ejecutar ResultTrend.NowUnstable=Ahora es inestable AbstractBuild.BuildingInWorkspace=en el espacio de trabajo {0} Descriptor.From=(desde {0}) ResultTrend.Unstable=Inestable -Jenkins.CheckDisplayName.DisplayNameNotUniqueWarning=El nombre "{0}" ya se est\u00E1 usando en otro trabajo, pudiendo producir confusi\u00F3n. +Jenkins.CheckDisplayName.DisplayNameNotUniqueWarning=El nombre "{0}" ya se está usando en otro trabajo, pudiendo producir confusión. AbstractProject.WipeOutPermission.Description=Este permiso permite que se pueda borrar todo el contenido del espacio de trabajo de una tarea. -UpdateCenter.DownloadButNotActivated=Descarga correcta. Se activar\u00E1 en el pr\u00F3ximo arranque. +UpdateCenter.DownloadButNotActivated=Descarga correcta. Se activará en el próximo arranque. Computer.ConnectPermission.Description=Este permiso permite que los usuarios puedan conectar nodos o marcarlos como activos. BallColor.NotBuilt=Sin ejecutar. AbstractBuild_Building=Ejecutando. -ParametersDefinitionProperty.DisplayName=Esta ejecuci\u00F3n debe parametrizarse +ParametersDefinitionProperty.DisplayName=Esta ejecución debe parametrizarse diff --git a/core/src/main/resources/hudson/model/Messages_et.properties b/core/src/main/resources/hudson/model/Messages_et.properties index d3aa3c2fe404..c3c4fbbfb5af 100644 --- a/core/src/main/resources/hudson/model/Messages_et.properties +++ b/core/src/main/resources/hudson/model/Messages_et.properties @@ -1 +1 @@ -FreeStyleProject.Description=See on Jenkinsi p\u00F5hifunktsioon! Jenkins ehitab su projekti, kombineerides sinu versioonihalduse mistahes ehitusprotsessiga. Sa v\u00F5id seda kasutada ka muudeks asjadeks kui tarkvara ehitamine. +FreeStyleProject.Description=See on Jenkinsi põhifunktsioon! Jenkins ehitab su projekti, kombineerides sinu versioonihalduse mistahes ehitusprotsessiga. Sa võid seda kasutada ka muudeks asjadeks kui tarkvara ehitamine. diff --git a/core/src/main/resources/hudson/model/Messages_fi.properties b/core/src/main/resources/hudson/model/Messages_fi.properties index e72139179a34..3b101c72919e 100644 --- a/core/src/main/resources/hudson/model/Messages_fi.properties +++ b/core/src/main/resources/hudson/model/Messages_fi.properties @@ -1,3 +1,3 @@ ManageJenkinsAction.DisplayName=Hallitse Jenkinsia -FreeStyleProject.Description=T\u00E4m\u00E4 on Jenkins t\u00E4rkein ominaisuus. Jenkins rakentaa projektisi k\u00E4ytt\u00E4en versionhallintaa ja buildij\u00E4rjestelmi\u00E4. Voit k\u00E4ytt\u00E4\u00E4 t\u00E4t\u00E4 my\u00F6s muuhun kuin ohjelmien k\u00E4\u00E4nt\u00E4miseen. +FreeStyleProject.Description=Tämä on Jenkins tärkein ominaisuus. Jenkins rakentaa projektisi käyttäen versionhallintaa ja buildijärjestelmiä. Voit käyttää tätä myös muuhun kuin ohjelmien kääntämiseen. diff --git a/core/src/main/resources/hudson/model/Messages_fr.properties b/core/src/main/resources/hudson/model/Messages_fr.properties index f051b4d0e741..3dedb07682db 100644 --- a/core/src/main/resources/hudson/model/Messages_fr.properties +++ b/core/src/main/resources/hudson/model/Messages_fr.properties @@ -20,35 +20,35 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -AbstractBuild.BuildingRemotely=Construction \u00e0 distance sur {0} -AbstractBuild.KeptBecause=conserv\u00e9 \u00e0 cause de {0} +AbstractBuild.BuildingRemotely=Construction à distance sur {0} +AbstractBuild.KeptBecause=conservé à cause de {0} -AbstractProject.NewBuildForWorkspace=Demande d''un nouveau build afin d''avoir un r\u00e9pertoire de travail +AbstractProject.NewBuildForWorkspace=Demande d''un nouveau build afin d''avoir un répertoire de travail AbstractProject.Pronoun=Projet -AbstractProject.Aborted=Annul\u00e9 -AbstractProject.Disabled=Build d\u00e9sactiv\u00e9 +AbstractProject.Aborted=Annulé +AbstractProject.Disabled=Build désactivé AbstractProject.NoSCM=Pas d''outil de gestion de version -AbstractProject.NoWorkspace=Pas r\u00e9pertoire de travail disponible, donc impossible de r\u00e9cup\u00e9rer les mises \u00e0 jour. -AbstractProject.PollingABorted=Scrutation de l''outil de gestion de version annul\u00e9e -AbstractProject.ScmAborted=R\u00e9cup\u00e9ration des mises \u00e0 jour \u00e0 partir de l''outil de gestion de version annul\u00e9e -AbstractProject.WorkspaceOffline=Le r\u00e9pertoire de travail est d\u00e9connect\u00e9. +AbstractProject.NoWorkspace=Pas répertoire de travail disponible, donc impossible de récupérer les mises à jour. +AbstractProject.PollingABorted=Scrutation de l''outil de gestion de version annulée +AbstractProject.ScmAborted=Récupération des mises à jour à partir de l''outil de gestion de version annulée +AbstractProject.WorkspaceOffline=Le répertoire de travail est déconnecté. AbstractProject.BuildPermission.Description=\ - Ce droit permet de d\u00e9marrer un nouveau build. + Ce droit permet de démarrer un nouveau build. AbstractProject.WorkspacePermission.Description=\ - Ce droit permet d''obtenir le contenu d''un r\u00e9pertoire de travail r\u00e9cup\u00e9r\u00e9 par Jenkins pour r\u00e9aliser des builds. \ - Si vous ne voulez pas qu''un utilisateur ait acc\u00e8s au code source, vous pouvez retirer ce droit. + Ce droit permet d''obtenir le contenu d''un répertoire de travail récupéré par Jenkins pour réaliser des builds. \ + Si vous ne voulez pas qu''un utilisateur ait accès au code source, vous pouvez retirer ce droit. -Api.MultipleMatch=Le XPath "{0}" correspond \u00e0 {1} noeud(s). \ - Merci de fournir un XPath qui ne correspond qu''\u00e0 un seul noeud, ou utilisez le param\u00e8tre de requ\u00e8te "wrapper" pour les encapsuler tous dans un \u00e9l\u00e9ment racine. +Api.MultipleMatch=Le XPath "{0}" correspond à {1} noeud(s). \ + Merci de fournir un XPath qui ne correspond qu''à un seul noeud, ou utilisez le paramètre de requète "wrapper" pour les encapsuler tous dans un élément racine. Api.NoXPathMatch=Pas de correspondance avec le XPath {0} -Api.WrapperParamInvalid=Le param\u00E8tre wrapper ne doit contenir que des caract\u00E8res alphanum\u00E9riques ainsi que des points / tirets bas / traits d''union, et finalement le premier caract\u00E8re doit \u00EAtre une lettre ou un trait d''union. +Api.WrapperParamInvalid=Le paramètre wrapper ne doit contenir que des caractères alphanumériques ainsi que des points / tirets bas / traits d''union, et finalement le premier caractère doit être une lettre ou un trait d''union. -BallColor.Aborted=Annul\u00e9 -BallColor.Disabled=D\u00e9sactiv\u00e9 -BallColor.Failed=En \u00e9chec +BallColor.Aborted=Annulé +BallColor.Disabled=Désactivé +BallColor.Failed=En échec BallColor.InProgress=En cours BallColor.Pending=En attente -BallColor.Success=Succ\u00e8s +BallColor.Success=Succès BallColor.Unstable=Instable @@ -56,129 +56,129 @@ Executor.NotAvailable=N/A FreeStyleProject.DisplayName=Construire un projet free-style -FreeStyleProject.Description=Ceci est la fonction principale de Jenkins qui sert \u00E0 builder (construire) votre projet. Vous pouvez int\u00E9grer tous les outils de gestion de version avec tous les syst\u00E8mes de build. Il est m\u00EAme possible d''utiliser Jenkins pour tout autre chose qu''un build logiciel. +FreeStyleProject.Description=Ceci est la fonction principale de Jenkins qui sert à builder (construire) votre projet. Vous pouvez intégrer tous les outils de gestion de version avec tous les systèmes de build. Il est même possible d''utiliser Jenkins pour tout autre chose qu''un build logiciel. -Hudson.BadPortNumber=Num\u00e9ro de port incorrect {0} -Hudson.Computer.Caption=Ma\u00eetre -Hudson.Computer.DisplayName=ma\u00eetre -Hudson.ControlCodeNotAllowed=Code de contr\u00f4le non autoris\u00e9 +Hudson.BadPortNumber=Numéro de port incorrect {0} +Hudson.Computer.Caption=Maître +Hudson.Computer.DisplayName=maître +Hudson.ControlCodeNotAllowed=Code de contrôle non autorisé Hudson.DisplayName=Jenkins -Hudson.JobAlreadyExists=Un job existe d\u00e9j\u00e0 avec le nom ''{0}'' -Hudson.NoJavaInPath=java n''est pas dans votre PATH. Peut-\u00eatre avez-vous besoin de configurer les JDKs? -Hudson.NoName=Aucune nom n''est sp\u00e9cifi\u00e9 -Hudson.NoSuchDirectory=Le r\u00e9pertoire n''existe pas: {0} -Hudson.NotADirectory={0} n''est pas un r\u00e9pertoire +Hudson.JobAlreadyExists=Un job existe déjà avec le nom ''{0}'' +Hudson.NoJavaInPath=java n''est pas dans votre PATH. Peut-être avez-vous besoin de configurer les JDKs? +Hudson.NoName=Aucune nom n''est spécifié +Hudson.NoSuchDirectory=Le répertoire n''existe pas: {0} +Hudson.NotADirectory={0} n''est pas un répertoire Hudson.NotAPlugin={0} n''est pas un plugin Jenkins -Hudson.NotJDKDir={0} ne semble pas \u00eatre un r\u00e9pertoire contenant un JDK +Hudson.NotJDKDir={0} ne semble pas être un répertoire contenant un JDK Hudson.Permissions.Title=Global -Hudson.UnsafeChar=''{0}'' est un caract\u00e8re dangereux -Hudson.ViewAlreadyExists=Une vue existe d\u00e9j\u00e0 avec le nom "{0}" +Hudson.UnsafeChar=''{0}'' est un caractère dangereux +Hudson.ViewAlreadyExists=Une vue existe déjà avec le nom "{0}" Hudson.ViewName=Tous Hudson.NotANumber=Ceci n''est pas un nombre Hudson.NotAPositiveNumber=Ceci n''est pas un nombre positif -Hudson.NotANegativeNumber=Ceci n''est pas un nombre n\u00e9gatif +Hudson.NotANegativeNumber=Ceci n''est pas un nombre négatif Hudson.NotUsesUTF8ToDecodeURL=\ - Votre conteneur n''utilise pas UTF-8 pour d\u00e9coder les URLs. Si vous utilisez des caract\u00e8res non-ASCII \ - dans le nom d''un job ou autre, cela causera des probl\u00e8mes. \ + Votre conteneur n''utilise pas UTF-8 pour décoder les URLs. Si vous utilisez des caractères non-ASCII \ + dans le nom d''un job ou autre, cela causera des problèmes. \ Consultez les pages sur les conteneurs et \ - sur Tomcat i18n pour plus de d\u00e9tails. + sur Tomcat i18n pour plus de détails. Hudson.AdministerPermission.Description=\ - Ce droit permet de faire des changements de configuration au niveau de tout le syst\u00e8me, \ - et de r\u00e9aliser des op\u00e9rations tr\u00e8s d\u00e9licates qui n\u00e9cessitent un acc\u00e8s complet \u00e0 tout le syst\u00e8me \ - (dans les limites autoris\u00e9es par l''OS sous-jacent). + Ce droit permet de faire des changements de configuration au niveau de tout le système, \ + et de réaliser des opérations très délicates qui nécessitent un accès complet à tout le système \ + (dans les limites autorisées par l''OS sous-jacent). Hudson.ReadPermission.Description=\ - Le droit en lecture est n\u00e9cessaire pour voir la plupart des pages de Jenkins. \ - Ce droit est utile quand vous ne voulez pas que les utilisateurs non authentifi\u00e9s puissent voir les pages Jenkins \ - — retirez ce droit \u00e0 l''utilisateur anonymous, puis \ + Le droit en lecture est nécessaire pour voir la plupart des pages de Jenkins. \ + Ce droit est utile quand vous ne voulez pas que les utilisateurs non authentifiés puissent voir les pages Jenkins \ + — retirez ce droit à l''utilisateur anonymous, puis \ ajoutez le pseudo-utilisateur "authenticated" et accordez-lui le droit en lecture. Item.Permissions.Title=Job -Job.AllRecentBuildFailed=Tous les builds r\u00e9cents ont \u00e9chou\u00e9. -Job.BuildStability=Stabilit\u00e9 du build: {0} -Job.NOfMFailed={0} des {1} derniers builds ont \u00e9chou\u00e9. -Job.NoRecentBuildFailed=Aucun build r\u00e9cent n''a \u00e9chou\u00e9. +Job.AllRecentBuildFailed=Tous les builds récents ont échoué. +Job.BuildStability=Stabilité du build: {0} +Job.NOfMFailed={0} des {1} derniers builds ont échoué. +Job.NoRecentBuildFailed=Aucun build récent n''a échoué. Job.Pronoun=job Job.minutes=mn -Queue.AllNodesOffline=Tous les noeuds avec le libell\u00e9 ''{0}'' sont hors ligne -Queue.BlockedBy=Bloqu\u00e9 par {0} +Queue.AllNodesOffline=Tous les noeuds avec le libellé ''{0}'' sont hors ligne +Queue.BlockedBy=Bloqué par {0} Queue.HudsonIsAboutToShutDown=Jenkins est sur le point de se fermer -Queue.InProgress=Un build est d\u00e9j\u00e0 en cours -Queue.InQuietPeriod=En p\u00e9riode d''attente. Expire dans {0} +Queue.InProgress=Un build est déjà en cours +Queue.InQuietPeriod=En période d''attente. Expire dans {0} Queue.NodeOffline={0} est hors ligne Queue.Unknown=??? -Queue.WaitingForNextAvailableExecutor=En attente du prochain ex\u00e9cuteur disponible -Queue.WaitingForNextAvailableExecutorOn=En attente du prochain ex\u00e9cuteur disponible sur {0} -Run.BuildAborted=Le build a \u00e9t\u00e9 annul\u00e9 -Run.MarkedExplicitly=marqu\u00e9 explicitement pour conserv\u00e9 l''enregistrement +Queue.WaitingForNextAvailableExecutor=En attente du prochain exécuteur disponible +Queue.WaitingForNextAvailableExecutorOn=En attente du prochain exécuteur disponible sur {0} +Run.BuildAborted=Le build a été annulé +Run.MarkedExplicitly=marqué explicitement pour conservé l''enregistrement Run.Permissions.Title=Historique des builds Run.UnableToDelete=Impossible de supprimer {0}: {1} Run.DeletePermission.Description=\ - Cette option permet aux utilisateurs de supprimer manuellement des builds sp\u00e9cifiques dans l''historique de build. + Cette option permet aux utilisateurs de supprimer manuellement des builds spécifiques dans l''historique de build. Run.UpdatePermission.Description=\ - Cette option permet aux utilisateurs de mettre \u00e0 jour la description et d''autres propri\u00e9t\u00e9s d''un build, \ - par exemple pour laisser des notes sur la cause d''\u00e9chec d''un build. + Cette option permet aux utilisateurs de mettre à jour la description et d''autres propriétés d''un build, \ + par exemple pour laisser des notes sur la cause d''échec d''un build. View.Permissions.Title=Vues View.CreatePermission.Description=\ - Ce droit permet aux utilisateurs de cr\u00e9er des nouvelles vues. + Ce droit permet aux utilisateurs de créer des nouvelles vues. View.DeletePermission.Description=\ Ce droit permet aux utilisateurs de supprimer des vues existantes. View.ConfigurePermission.Description=\ Ce droit permet aux utilisateurs de changer la configuration des vues. -UpdateCenter.Status.CheckingInternet=V\u00e9rification de la connexion \u00e0 internet -UpdateCenter.Status.CheckingJavaNet=V\u00e9rification de la connexion \u00e0 jenkins-ci.org -UpdateCenter.Status.Success=Succ\u00e8s +UpdateCenter.Status.CheckingInternet=Vérification de la connexion à internet +UpdateCenter.Status.CheckingJavaNet=Vérification de la connexion à jenkins-ci.org +UpdateCenter.Status.Success=Succès UpdateCenter.Status.UnknownHostException=\ - Impossible de r\u00e9soudre le nom de host {0}. \ - Peut-\u00eatre devez-vous configurer un proxy HTTP? + Impossible de résoudre le nom de host {0}. \ + Peut-être devez-vous configurer un proxy HTTP? UpdateCenter.Status.ConnectionFailed=\ - Echec lors de la connexion \u00e0 {0}. \ - Peut-\u00eatre devez-vous configurer le proxy HTTP. + Echec lors de la connexion à {0}. \ + Peut-être devez-vous configurer le proxy HTTP. Permalink.LastBuild=Dernier build Permalink.LastStableBuild=Dernier build stable Permalink.LastUnstableBuild=Dernier build instable -Permalink.LastUnsuccessfulBuild=Dernier build non r\u00e9ussi -Permalink.LastSuccessfulBuild=Dernier build avec succ\u00e8s -Permalink.LastFailedBuild=Dernier build en \u00e9chec - -ParameterAction.DisplayName=Param\u00e8tres -StringParameterDefinition.DisplayName=Param\u00e8tre String -TextParameterDefinition.DisplayName=Param\u00e8tre texte -FileParameterDefinition.DisplayName=Param\u00e8tre fichier -BooleanParameterDefinition.DisplayName=Param\u00e8tre bool\u00e9en -ChoiceParameterDefinition.DisplayName=Param\u00e8tre choix +Permalink.LastUnsuccessfulBuild=Dernier build non réussi +Permalink.LastSuccessfulBuild=Dernier build avec succès +Permalink.LastFailedBuild=Dernier build en échec + +ParameterAction.DisplayName=Paramètres +StringParameterDefinition.DisplayName=Paramètre String +TextParameterDefinition.DisplayName=Paramètre texte +FileParameterDefinition.DisplayName=Paramètre fichier +BooleanParameterDefinition.DisplayName=Paramètre booléen +ChoiceParameterDefinition.DisplayName=Paramètre choix ChoiceParameterDefinition.MissingChoices=Choix requis. -RunParameterDefinition.DisplayName=Param\u00e8tre d''ex\u00e9cution -PasswordParameterDefinition.DisplayName=Param\u00e8tre "Mot de passe" +RunParameterDefinition.DisplayName=Paramètre d''exécution +PasswordParameterDefinition.DisplayName=Paramètre "Mot de passe" Node.Mode.NORMAL=Utiliser ce noeud autant que possible -Node.Mode.EXCLUSIVE=R\u00e9server ce noeud uniquement pour les jobs qui lui sont attach\u00e9s +Node.Mode.EXCLUSIVE=Réserver ce noeud uniquement pour les jobs qui lui sont attachés ListView.DisplayName=Vue liste MyView.DisplayName=Ma vue -LoadStatistics.Legends.TotalExecutors=Nombre total d''ex\u00e9cuteurs -LoadStatistics.Legends.OnlineExecutors=Nombre d''ex\u00e9cuteurs en ligne -LoadStatistics.Legends.BusyExecutors=Nombre d''ex\u00e9cuteurs occup\u00e9s -LoadStatistics.Legends.AvailableExecutors=Nombre d''ex\u00e9cuteurs disponibles +LoadStatistics.Legends.TotalExecutors=Nombre total d''exécuteurs +LoadStatistics.Legends.OnlineExecutors=Nombre d''exécuteurs en ligne +LoadStatistics.Legends.BusyExecutors=Nombre d''exécuteurs occupés +LoadStatistics.Legends.AvailableExecutors=Nombre d''exécuteurs disponibles LoadStatistics.Legends.QueueLength=Longueur de la file d''attente -Cause.LegacyCodeCause.ShortDescription=Ce job a \u00e9t\u00e9 lanc\u00e9 par du code legacy. Pas d''information sur les causes -Cause.UpstreamCause.ShortDescription=D\u00e9marr\u00e9 par le projet amont "{0}" de num\u00e9ro de build {1} -Cause.UserCause.ShortDescription=D\u00e9marr\u00e9 par l''utilisateur {0} -Cause.UserIdCause.ShortDescription=D\u00e9marr\u00e9 par l''utilisateur {0} -Cause.RemoteCause.ShortDescription=D\u00e9marr\u00e9 \u00e0 distance par {0} +Cause.LegacyCodeCause.ShortDescription=Ce job a été lancé par du code legacy. Pas d''information sur les causes +Cause.UpstreamCause.ShortDescription=Démarré par le projet amont "{0}" de numéro de build {1} +Cause.UserCause.ShortDescription=Démarré par l''utilisateur {0} +Cause.UserIdCause.ShortDescription=Démarré par l''utilisateur {0} +Cause.RemoteCause.ShortDescription=Démarré à distance par {0} MyViewsProperty.DisplayName=Mes vues MyViewsProperty.GlobalAction.DisplayName=Mes vues ManageJenkinsAction.DisplayName=Administrer Jenkins -ParametersDefinitionProperty.DisplayName=Ce build a des param\u00e8tres +ParametersDefinitionProperty.DisplayName=Ce build a des paramètres diff --git a/core/src/main/resources/hudson/model/Messages_he.properties b/core/src/main/resources/hudson/model/Messages_he.properties index 749fbe732d68..a7dcf0aff25e 100644 --- a/core/src/main/resources/hudson/model/Messages_he.properties +++ b/core/src/main/resources/hudson/model/Messages_he.properties @@ -1 +1 @@ -ParametersDefinitionProperty.DisplayName=\u05D1\u05E0\u05D9\u05D4 \u05DE\u05DB\u05D9\u05DC\u05D4 \u05DE\u05E9\u05EA\u05E0\u05D9\u05DD +ParametersDefinitionProperty.DisplayName=בניה מכילה ×ž×©×ª× ×™× diff --git a/core/src/main/resources/hudson/model/Messages_hu.properties b/core/src/main/resources/hudson/model/Messages_hu.properties index 949132eb7f5d..b78931ca744f 100644 --- a/core/src/main/resources/hudson/model/Messages_hu.properties +++ b/core/src/main/resources/hudson/model/Messages_hu.properties @@ -1,2 +1,2 @@ -ManageJenkinsAction.DisplayName=Jenkins Kezel\u00E9se -ParametersDefinitionProperty.DisplayName=Hozz\u00E1ad +ManageJenkinsAction.DisplayName=Jenkins Kezelése +ParametersDefinitionProperty.DisplayName=Hozzáad diff --git a/core/src/main/resources/hudson/model/Messages_it.properties b/core/src/main/resources/hudson/model/Messages_it.properties index 498514bcf843..cf9432db79b9 100644 --- a/core/src/main/resources/hudson/model/Messages_it.properties +++ b/core/src/main/resources/hudson/model/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -25,13 +25,13 @@ AbstractBuild_Building=Compilazione in corso AbstractBuild.BuildingInWorkspace=\ nello spazio di lavoro {0} AbstractBuild.BuildingOnMaster=Compilazione sul master in corso AbstractBuild.BuildingRemotely=Compilazione remota su {0} in corso -AbstractBuild.KeptBecause=Questa compilazione viene mantenuta perché {0}. -AbstractItem.BeingDeleted={0} è attualmente in via di eliminazione +AbstractBuild.KeptBecause=Questa compilazione viene mantenuta perché {0}. +AbstractItem.BeingDeleted={0} è attualmente in via di eliminazione AbstractItem.FailureToStopBuilds=Impossibile interrompere e arrestare \ {0,choice,1#{0,number,integer} compilazione|1<{0,number,integer} \ compilazioni} di {1} -AbstractItem.NewNameInUse=Il nome "{0}" è già utilizzato. -AbstractItem.NewNameUnchanged=Il nuovo nome è identico a quello attuale. +AbstractItem.NewNameInUse=Il nome "{0}" è già utilizzato. +AbstractItem.NewNameUnchanged=Il nuovo nome è identico a quello attuale. AbstractItem.NoSuchJobExists=Il processo "{0}" non esiste. Forse si intendeva \ "{1}"? AbstractItem.NoSuchJobExistsWithoutSuggestion=Il processo "{0}" non esiste. @@ -40,15 +40,15 @@ AbstractItem.TaskNoun=Compilazione AbstractProject.Aborted=Interrotto AbstractProject.AwaitingBuildForWorkspace=In attesa di una compilazione al \ fine di ottenere uno spazio di lavoro. -AbstractProject.AwaitingWorkspaceToComeOnline=È necessario pianificare una \ +AbstractProject.AwaitingWorkspaceToComeOnline=È necessario pianificare una \ nuova compilazione per ottenere uno spazio di lavoro, ma si rimanda \ l''azione di {0} ms sperando che uno di questi diventi presto disponibile AbstractProject.BuildPermission.Description=Questo permesso concede la \ - capacità di avviare una nuova compilazione. + capacità di avviare una nuova compilazione. AbstractProject.CancelPermission.Description=Questo permesso concede la \ - capacità di annullare una compilazione pianificata o di arrestarne una in \ + capacità di annullare una compilazione pianificata o di arrestarne una in \ esecuzione. -AbstractProject.CustomWorkspaceEmpty=Lo spazio di lavoro personalizzato è \ +AbstractProject.CustomWorkspaceEmpty=Lo spazio di lavoro personalizzato è \ vuoto. AbstractProject.Disabled=Compilazione disabilitata AbstractProject.DiscoverPermission.Description=\ @@ -58,12 +58,12 @@ AbstractProject.DiscoverPermission.Description=\ ad accedere all''URL di un processo. Senza questo permesso otterrebbero un \ errore 404 e non sarebbero in grado di individuare i nomi dei progetti. AbstractProject.DownstreamBuildInProgress=Una compilazione del progetto \ - downstream "{0}" è già in corso + downstream "{0}" è già in corso AbstractProject.ExtendedReadPermission.Description=\ Questo permesso concede l''accesso in sola lettura alle configurazioni del \ progetto. Si noti che concedendo questo permesso delle informazioni \ sensibili parte della compilazione, come le password, saranno esposte a un \ - pubblico più ampio. + pubblico più ampio. AbstractProject.NewBuildForWorkspace=Pianificazione di una nuova compilazione \ in corso al fine di ottenere uno spazio di lavoro. AbstractProject.NoBuilds=Nessuna compilazione esistente. Pianificazione di \ @@ -79,24 +79,24 @@ AbstractProject.Pronoun=Progetto AbstractProject.ScmAborted=Checkout dal sistema di gestione del codice \ sorgente interrotto AbstractProject.UpstreamBuildInProgress=Una compilazione del progetto \ - upstream "{0}" è già in corso + upstream "{0}" è già in corso AbstractProject.WipeOutPermission.Description=Questo permesso concede la \ - capacità di ripulire i contenuti di uno spazio di lavoro. -AbstractProject.WorkspaceOffline=Lo spazio di lavoro non è in linea. + capacità di ripulire i contenuti di uno spazio di lavoro. +AbstractProject.WorkspaceOffline=Lo spazio di lavoro non è in linea. AbstractProject.WorkspacePermission.Description=Questo permesso concede la \ - capacità di recuperare i contenuti di uno spazio di lavoro di cui Jenkins \ + capacità di recuperare i contenuti di uno spazio di lavoro di cui Jenkins \ ha eseguito il checkout per eseguire delle compilazioni. Se non si desidera \ che un utente acceda a dei file nello spazio di lavoro (ad es. codice \ - sorgente di cui è stato eseguito il checkout dal sistema di gestione del \ + sorgente di cui è stato eseguito il checkout dal sistema di gestione del \ codice sorgente o prodotti intermedi della compilazione) dal visualizzatore \ - dello spazio di lavoro, è possibile revocare questo permesso. + dello spazio di lavoro, è possibile revocare questo permesso. AbstractProject.WorkspaceTitle=Spazio di lavoro di {0} AbstractProject.WorkspaceTitleOnComputer=Spazio di lavoro di {0} su {1} Api.MultipleMatch=L''espressione XPath "{0}" corrisponde a {1} nodi. Creare \ un''espressione XPath che corrisponda solo a un nodo o utilizzare il \ parametro query "wrapper" per eseguirne il wrapping entro un elemento radice. Api.NoXPathMatch=Non ci sono corrispondenze per l''espressione XPath {0} -Api.WrapperParamInvalid=Il parametro wrapper può contenere solo caratteri \ +Api.WrapperParamInvalid=Il parametro wrapper può contenere solo caratteri \ alfanumerici o trattini/punti/caratteri di sottolineatura. Il primo \ carattere dev''essere una lettera o un carattere di sottolineatura. BallColor.Aborted=Interrotto @@ -108,10 +108,10 @@ BallColor.Pending=In attesa BallColor.Success=Completato con successo BallColor.Unstable=Instabile BooleanParameterDefinition.DisplayName=Parametro booleano -BuildAuthorizationToken.InvalidTokenProvided=È stato fornito un token non \ +BuildAuthorizationToken.InvalidTokenProvided=È stato fornito un token non \ valido. Build.post_build_steps_failed=Passaggi di post compilazione non riusciti -Cause.LegacyCodeCause.ShortDescription=Questo processo è stato avviato da \ +Cause.LegacyCodeCause.ShortDescription=Questo processo è stato avviato da \ codice legacy. Non sono disponibili informazioni sul motivo. Cause.RemoteCause.ShortDescription=Avviato dall''host remoto {0} Cause.RemoteCause.ShortDescriptionWithNote=Avviato dall''host remoto {0} con \ @@ -122,7 +122,7 @@ Cause.UpstreamCause.ShortDescription=Avviato dal progetto upstream "{0}", \ Cause.UserCause.ShortDescription=Avviato dall''utente {0} Cause.UserIdCause.ShortDescription=Avviato dall''utente {0} ChoiceParameterDefinition.DisplayName=Parametro scelta -ChoiceParameterDefinition.MissingChoices=È necessario specificare delle scelte. +ChoiceParameterDefinition.MissingChoices=È necessario specificare delle scelte. CLI.clear-queue.shortDescription=Ripulisce la coda di compilazione. CLI.keep-build.shortDescription=Contrassegna la compilazione in modo da \ mantenerla per sempre. @@ -131,7 +131,7 @@ CLI.online-node.shortDescription=Riprende ad utilizzare un nodo per eseguire \ CLI.restart.shortDescription=Riavvia Jenkins CLI.safe-restart.shortDescription=Esegue un riavvio sicuro di Jenkins Computer.BadChannel=Nodo agente non in linea o non si tratta di un canale \ - remoto (ad es. è un nodo master). + remoto (ad es. è un nodo master). Computer.BuildPermission.Description=Questo permesso consente agli utenti di \ eseguire dei processi sugli agenti con le proprie credenziali. Computer.Caption=Agente {0} @@ -154,21 +154,21 @@ Computer.NoSuchSlaveExistsWithoutAdvice=L''agente "{0}" non esiste. Computer.Permissions.Title=Agente ComputerSet.DisplayName=Nodi ComputerSet.NoSuchSlave=L''agente {0} non esiste -ComputerSet.SlaveAlreadyExists=Un agente di nome "{0}" esiste già +ComputerSet.SlaveAlreadyExists=Un agente di nome "{0}" esiste già ComputerSet.SpecifySlaveToCopy=Specificare l''agente da copiare Descriptor.From=(da {0}) Executor.NotAvailable=N/D FileParameterDefinition.DisplayName=Parametro file FileParameterValue.IndexTitle=Parametri file -FreeStyleProject.Description=Questa è la funzionalità principale di Jenkins. \ - Jenkins eseguirà la compilazione del progetto, combinando qualunque sistema \ +FreeStyleProject.Description=Questa è la funzionalità principale di Jenkins. \ + Jenkins eseguirà la compilazione del progetto, combinando qualunque sistema \ di gestione del codice sorgente con qualunque sistema di compilazione, e \ - questo progetto può essere anche utilizzato per compiti diversi dalla \ + questo progetto può essere anche utilizzato per compiti diversi dalla \ compilazione di software. FreeStyleProject.DisplayName=Progetto libero HealthReport.EmptyString= -Hudson.AdministerPermission.Description=Questo permesso concede la capacità \ - di apportare modifiche alla configurazione di tutto il sistema, così come \ +Hudson.AdministerPermission.Description=Questo permesso concede la capacità \ + di apportare modifiche alla configurazione di tutto il sistema, così come \ quella di eseguire operazioni altamente sensibili analoghe al disporre di \ accesso locale completo al sistema (entro i limiti consentiti dal sistema \ operativo sottostante). @@ -177,74 +177,74 @@ Hudson.Computer.Caption=Master Hudson.Computer.DisplayName=master Hudson.ControlCodeNotAllowed=I codici di controllo non sono consentiti: {0} Hudson.DisplayName=Jenkins -Hudson.JobAlreadyExists=Un processo di nome "{0}" esiste già +Hudson.JobAlreadyExists=Un processo di nome "{0}" esiste già Hudson.MustBeAtLeast=Il valore dev'essere maggiore o uguale a {0} Hudson.MustBeAtMost=Il valore dev'essere minore o uguale a {0} -Hudson.NodeBeingRemoved=Il nodo è in via di eliminazione +Hudson.NodeBeingRemoved=Il nodo è in via di eliminazione Hudson.NodeDescription=il nodo master Jenkins -Hudson.NoJavaInPath=java non è nel PATH. Forse è necessario \ +Hudson.NoJavaInPath=java non è nel PATH. Forse è necessario \ configurare i JDK? -Hudson.NoName=Non è stato specificato alcun nome +Hudson.NoName=Non è stato specificato alcun nome Hudson.NoSuchDirectory=Directory "{0}" non esistente -Hudson.NotANegativeNumber=Il numero non è negativo -Hudson.NotANonNegativeNumber=Il numero non può essere negativo -Hudson.NotANumber=Il valore non è un numero -Hudson.NotAPlugin={0} non è un plugin Jenkins -Hudson.NotAPositiveNumber=Il numero non è positivo +Hudson.NotANegativeNumber=Il numero non è negativo +Hudson.NotANonNegativeNumber=Il numero non può essere negativo +Hudson.NotANumber=Il valore non è un numero +Hudson.NotAPlugin={0} non è un plugin Jenkins +Hudson.NotAPositiveNumber=Il numero non è positivo Hudson.NotJDKDir={0} non sembra essere una directory JDK Hudson.NotUsesUTF8ToDecodeURL=Il container non utilizza UTF-8 per \ decodificare gli URL. L''utilizzo di caratteri non ASCII come nome processo \ - o in altri ambiti causerà problemi. Si vedano le pagine \ + o in altri ambiti causerà problemi. Si vedano le pagine \ Container \ e Internazionalizzazione \ di Tomcat per ulteriori dettagli. Hudson.Permissions.Title=Generale -Hudson.ReadPermission.Description=Il permesso di lettura è necessario per \ - visualizzare quasi tutte le pagine di Jenkins. Questo permesso è utile se \ +Hudson.ReadPermission.Description=Il permesso di lettura è necessario per \ + visualizzare quasi tutte le pagine di Jenkins. Questo permesso è utile se \ non si desidera che utenti non autenticati visualizzino le pagine di \ - Jenkins: è sufficiente revocare questo permesso per l''utente anonimo e \ + Jenkins: è sufficiente revocare questo permesso per l''utente anonimo e \ quindi aggiungere uno pseudoutente "autenticato" per cui garantire \ l''accesso in lettura. Hudson.RunScriptsPermission.Description=Deprecato - utilizzare il permesso \ Generale/Amministra -Hudson.UnsafeChar="{0}" è un carattere non sicuro +Hudson.UnsafeChar="{0}" è un carattere non sicuro Hudson.USER_CONTENT_README=I file in questa directory saranno serviti \ all''indirizzo http://latuaistanzajenkins/userContent/ -Hudson.ViewAlreadyExists=Una vista di nome "{0}" esiste già +Hudson.ViewAlreadyExists=Una vista di nome "{0}" esiste già Hudson.ViewName=Tutto Item.CONFIGURE.description=Modifica la configurazione di un processo. Item.CREATE.description=Crea un nuovo processo. Item.DELETE.description=Elimina un processo. ItemGroupMixIn.may_not_copy_as_it_contains_secrets_and_=Impossibile copiare \ - {0} perché contiene segreti e {1} ha {2}/{3} ma non /{4} + {0} perché contiene segreti e {1} ha {2}/{3} ma non /{4} Item.Permissions.Title=Processo -Item.READ.description=Visualizza un processo. (È possibile negare questo \ - permesso ma consentire Scopri per far sì che un utente anonimo debba \ +Item.READ.description=Visualizza un processo. (È possibile negare questo \ + permesso ma consentire Scopri per far sì che un utente anonimo debba \ eseguire l''accesso per visualizzare il processo). Item.RENAME.description=Rinomina un processo. Jenkins.CheckDisplayName.DisplayNameNotUniqueWarning=Il nome visualizzato, \ - "{0}", è già utilizzato da un altro processo e potrebbe causare confusione \ + "{0}", è già utilizzato da un altro processo e potrebbe causare confusione \ e ritardi. -Jenkins.CheckDisplayName.NameNotUniqueWarning=Il nome visualizzato, "{0}", è \ - utilizzato come nome di un processo e potrebbe far sì che i risultati di \ +Jenkins.CheckDisplayName.NameNotUniqueWarning=Il nome visualizzato, "{0}", è \ + utilizzato come nome di un processo e potrebbe far sì che i risultati di \ ricerca siano fonte di confusione. Jenkins.IsRestarting=Riavvio di Jenkins in corso -Jenkins.Manage.Description=Questo permesso dà la facoltà di configurare \ +Jenkins.Manage.Description=Questo permesso dà la facoltà di configurare \ parti della configurazione globale di sistema che non ci si attende abbiano \ - un impatto sulla stabilità e sicurezza generali del sistema. -Jenkins.NotAllowedName="{0}" non è un nome consentito + un impatto sulla stabilità e sicurezza generali del sistema. +Jenkins.NotAllowedName="{0}" non è un nome consentito Jenkins.SystemRead.Description=Questo permesso concede l''accesso in sola \ lettura alla maggior parte delle opzioni della configurazione globale di \ sistema. Job.AllRecentBuildFailed=Tutte le compilazioni recenti non sono riuscite. -Job.BuildStability=Stabilità compilazione: {0} +Job.BuildStability=Stabilità compilazione: {0} Job.minutes=min Job.NOfMFailed={0} delle ultime {1} compilazioni non sono riuscite. Job.NoRecentBuildFailed=Tutte le compilazioni recenti sono riuscite. -Job.NoRenameWhileBuilding=Impossibile ridenominare un processo finché la sua \ - compilazione è in corso. +Job.NoRenameWhileBuilding=Impossibile ridenominare un processo finché la sua \ + compilazione è in corso. Job.Pronoun=Processo -Job.you_must_use_the_save_button_if_you_wish=È necessario utilizzare il \ +Job.you_must_use_the_save_button_if_you_wish=È necessario utilizzare il \ pulsante Salva se si desidera ridenominare un processo. Label.GroupOf=gruppo di {0} Label.InvalidLabel=etichetta non valida @@ -257,7 +257,7 @@ LabelExpression.LabelLink=L''etichetta {1} corrisponde a \ LabelExpression.NoMatch=Non esistono agenti/cloud corrispondenti a \ quest''espressione etichetta. LabelExpression.NoMatch_DidYouMean=Non esistono agenti/cloud corrispondenti a \ - quest''espressione etichetta. Forse si intendeva "{1}" anziché "{0}"? + quest''espressione etichetta. Forse si intendeva "{1}" anziché "{0}"? ListView.DisplayName=Vista elenco LoadStatistics.Legends.AvailableExecutors=Esecutori non disponibili LoadStatistics.Legends.BusyExecutors=Esecutori occupati @@ -280,17 +280,17 @@ MyView.DisplayName=La mia vista MyViewsProperty.DisplayName=Le mie viste MyViewsProperty.GlobalAction.DisplayName=Le mie viste MyViewsProperty.ViewExistsCheck.AlreadyExists=Una vista di nome {0} non esiste -MyViewsProperty.ViewExistsCheck.NotExist=Una vista di nome {0} esiste già -Node.BecauseNodeIsNotAcceptingTasks="{0}" non accetta attività -Node.BecauseNodeIsReserved="{0}" è riservato a processi con un''espressione \ +MyViewsProperty.ViewExistsCheck.NotExist=Una vista di nome {0} esiste già +Node.BecauseNodeIsNotAcceptingTasks="{0}" non accetta attività +Node.BecauseNodeIsReserved="{0}" è riservato a processi con un''espressione \ etichetta corrispondente Node.LabelMissing="{0}" non ha l''etichetta "{1}" Node.LackingBuildPermission="{0}" non ha i permessi di essere eseguito su "{1}" Node.Mode.EXCLUSIVE=Esegui solo processi le cui espressioni etichetta \ corrispondono a questo nodo -Node.Mode.NORMAL=Utilizza questo nodo il più possibile +Node.Mode.NORMAL=Utilizza questo nodo il più possibile ParameterAction.DisplayName=Parametri -ParametersDefinitionProperty.DisplayName=Questo progetto è parametrizzato +ParametersDefinitionProperty.DisplayName=Questo progetto è parametrizzato PasswordParameterDefinition.DisplayName=Parametro password Permalink.LastBuild=Ultima compilazione Permalink.LastCompletedBuild=Ultima compilazione completata @@ -301,22 +301,22 @@ Permalink.LastUnstableBuild=Ultima compilazione instabile Permalink.LastUnsuccessfulBuild=Ultima compilazione non riuscita ProxyView.DisplayName=Includi una vista globale ProxyView.NoSuchViewExists=La vista globale {0} non esiste -Queue.AllNodesOffline=Nessun nodo con l''etichetta {0} è in linea +Queue.AllNodesOffline=Nessun nodo con l''etichetta {0} è in linea Queue.BlockedBy=Bloccato da "{0}" -Queue.ExceptionCanRun=Eccezione durante la valutazione dell''eseguibilità del \ +Queue.ExceptionCanRun=Eccezione durante la valutazione dell''eseguibilità del \ processo da parte della coda -Queue.ExceptionCanTake=Eccezione durante la valutazione dell''accettabilità \ +Queue.ExceptionCanTake=Eccezione durante la valutazione dell''accettabilità \ del processo da parte del nodo -Queue.executor_slot_already_in_use=Slot esecutore già in uso +Queue.executor_slot_already_in_use=Slot esecutore già in uso Queue.FinishedWaiting=Attesa terminata -Queue.HudsonIsAboutToShutDown=Jenkins si spegnerà a breve +Queue.HudsonIsAboutToShutDown=Jenkins si spegnerà a breve Queue.init=Ripristino coda di compilazione in corso -Queue.InProgress=Una compilazione è già in corso +Queue.InProgress=Una compilazione è già in corso Queue.InQuietPeriod=Nel periodo di quiete. Scade fra {0} Queue.LabelHasNoNodes=Non ci sono nodi con l''etichetta {0} -Queue.node_has_been_removed_from_configuration={0} è stato rimosso dalla \ +Queue.node_has_been_removed_from_configuration={0} è stato rimosso dalla \ configurazione -Queue.NodeOffline="{0}" non è in linea +Queue.NodeOffline="{0}" non è in linea Queue.Unknown=Sconosciuto Queue.WaitingForNextAvailableExecutor=In attesa del prossimo esecutore \ disponibile @@ -333,16 +333,16 @@ ResultTrend.Success=Riuscito con successo ResultTrend.Unstable=Instabile Run.ArtifactsBrowserTitle=Artefatti del/della {0} {1} Run.ArtifactsPermission.Description=\ - Questo permesso concede la capacità di recuperare gli artefatti prodotti \ + Questo permesso concede la capacità di recuperare gli artefatti prodotti \ dalle compilazioni. Se non si desidera che un utente sia in grado di \ - accedere agli artefatti, è possibile revocare questo permesso. -Run.BuildAborted=La compilazione è stata interrotta + accedere agli artefatti, è possibile revocare questo permesso. +Run.BuildAborted=La compilazione è stata interrotta Run.DeletePermission.Description=\ Questo permesso consente agli utenti di eliminare manualmente compilazioni \ specifiche dalla cronologia di compilazione. Run.InProgressDuration={0} (in continuo aumento) Run._is_waiting_for_a_checkpoint_on_={0} sta attendendo il checkpoint su {1} -Run.MarkedExplicitly=Questa voce è stata esplicitamente contrassegnata per \ +Run.MarkedExplicitly=Questa voce è stata esplicitamente contrassegnata per \ essere mantenuta. Run.NotStartedYet=Non ancora avviato RunParameterDefinition.DisplayName=Parametro di esecuzione @@ -350,7 +350,7 @@ Run.Permissions.Title=Esegui Run.running_as_=In esecuzione con le credenziali di {0} Run.running_as_SYSTEM=In esecuzione con le credenziali di SYSTEM Run.Summary.Aborted=interrotto -Run.Summary.BackToNormal=tornato alla normalità +Run.Summary.BackToNormal=tornato alla normalità Run.Summary.BrokenForALongTime=non funzionante da molto tempo Run.Summary.BrokenSince=non funzionante dalla compilazione {0} Run.Summary.BrokenSinceThisBuild=non funzionante da questa compilazione @@ -360,24 +360,24 @@ Run.Summary.Unknown=sconosciuto Run.Summary.Unstable=instabile Run.UnableToDelete=Impossibile eliminare {0}: {1} Run.UpdatePermission.Description=Questo permesso consente agli utenti di \ - aggiornare la descrizione e altre proprietà di una compilazione, ad \ + aggiornare la descrizione e altre proprietà di una compilazione, ad \ esempio per aggiungere delle note sui motivi per cui una compilazione non \ - è riuscita. + è riuscita. Slave.InvalidConfig.Executors=Configurazione agente per {0} non valida. \ Numero di esecutori non valido. -Slave.InvalidConfig.NoName=Configurazione agente non valida. Il nome è vuoto -Slave.Network.Mounted.File.System.Warning=Si è sicuri di voler utilizzare \ - file system di rete per la radice del file system? Si noti che non è \ +Slave.InvalidConfig.NoName=Configurazione agente non valida. Il nome è vuoto +Slave.Network.Mounted.File.System.Warning=Si è sicuri di voler utilizzare \ + file system di rete per la radice del file system? Si noti che non è \ necessario che questa directory sia visibile al nodo master. -Slave.Remote.Director.Mandatory=È obbligatorio specificare la directory remota -Slave.Remote.Relative.Path.Warning=Si è sicuri di voler utilizzare un \ +Slave.Remote.Director.Mandatory=È obbligatorio specificare la directory remota +Slave.Remote.Relative.Path.Warning=Si è sicuri di voler utilizzare un \ percorso relativo per la radice del file system? Si noti che i percorsi \ relativi richiedono che il componente di avvio selezionato fornisca una \ - directory di lavoro corrente consistente. È fortemente raccomandato \ + directory di lavoro corrente consistente. È fortemente raccomandato \ utilizzare un percorso assoluto. -Slave.Terminated=L''agente {0} è stato terminato -Slave.UnixSlave=Questo è un agente UNIX -Slave.WindowsSlave=Questo è un agente Windows +Slave.Terminated=L''agente {0} è stato terminato +Slave.UnixSlave=Questo è un agente UNIX +Slave.WindowsSlave=Questo è un agente Windows StringParameterDefinition.DisplayName=Parametro stringa TextParameterDefinition.DisplayName=Parametro stringa multiriga TimeZoneProperty.DisplayDefaultTimeZone=Predefinito @@ -387,7 +387,7 @@ TopLevelItemDescriptor.NotApplicableIn=Gli elementi {0} non sono applicabili \ UpdateCenter.CoreUpdateMonitor.DisplayName=Notifica di aggiornamento Jenkins UpdateCenter.DisplayName=Centro aggiornamenti UpdateCenter.DownloadButNotActivated=Download completato con successo. Il \ - componente sarà attivato al prossimo avvio + componente sarà attivato al prossimo avvio UpdateCenter.init=Inizializzazione del Centro aggiornamenti in corso UpdateCenter.n_a=N/D UpdateCenter.PluginCategory.android=Sviluppo Android @@ -432,28 +432,28 @@ UpdateCenter.PluginCategory.unrecognized=Varie ({0}) UpdateCenter.PluginCategory.upload=Componenti caricamento artefatti UpdateCenter.PluginCategory.user=Autenticazione e gestione utenti UpdateCenter.PluginCategory.view=Viste -UpdateCenter.Status.CheckingInternet=Controllo connettività a Internet in corso -UpdateCenter.Status.CheckingJavaNet=Controllo connettività al Centro \ +UpdateCenter.Status.CheckingInternet=Controllo connettività a Internet in corso +UpdateCenter.Status.CheckingJavaNet=Controllo connettività al Centro \ aggiornamenti in corso UpdateCenter.Status.ConnectionFailed=Impossibile \ - connettersi a {0}. Forse è necessario \ + connettersi a {0}. Forse è necessario \ configurare il proxy HTTP? UpdateCenter.Status.Success=Operazione completata UpdateCenter.Status.UnknownHostException=Impossibile \ - risolvere il nome host {0}. Forse è necessario \ + risolvere il nome host {0}. Forse è necessario \ configurare il proxy HTTP? -User.IllegalFullname="{0}" è vietato come nome completo per motivi di sicurezza. -User.IllegalUsername="{0}" è vietato come nome utente per motivi di sicurezza. +User.IllegalFullname="{0}" è vietato come nome completo per motivi di sicurezza. +User.IllegalUsername="{0}" è vietato come nome utente per motivi di sicurezza. View.ConfigurePermission.Description=Questo permesso consente agli utenti di \ modificare le configurazioni delle viste. View.CreatePermission.Description=Questo permesso consente agli utenti di \ creare nuove viste. View.DeletePermission.Description=Questo permesso consente agli utenti di \ eliminare viste esistenti. -View.DisplayNameNotUniqueWarning=Il nome visualizzato "{0}" è già in uso da \ +View.DisplayNameNotUniqueWarning=Il nome visualizzato "{0}" è già in uso da \ parte di un''altra vista e potrebbe essere fonte di confusione. -View.MissingMode=Non è stato specificato il tipo vista +View.MissingMode=Non è stato specificato il tipo vista View.Permissions.Title=Visualizza View.ReadPermission.Description=Questo permesso consente agli utenti di \ - visualizzare le viste (è implicito se si dispone dell''accesso generico in \ + visualizzare le viste (è implicito se si dispone dell''accesso generico in \ lettura). diff --git a/core/src/main/resources/hudson/model/Messages_ja.properties b/core/src/main/resources/hudson/model/Messages_ja.properties index 23b55b656e5d..44576326ef55 100644 --- a/core/src/main/resources/hudson/model/Messages_ja.properties +++ b/core/src/main/resources/hudson/model/Messages_ja.properties @@ -20,291 +20,291 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -AbstractBuild.BuildingRemotely={0} \u3067\u30d3\u30eb\u30c9\u3057\u307e\u3059\u3002 -AbstractBuild.BuildingOnMaster=master\u3067\u30d3\u30eb\u30c9\u3057\u307e\u3059\u3002 -AbstractBuild_Building=\u30d3\u30eb\u30c9\u3057\u307e\u3059\u3002 -AbstractBuild.BuildingInWorkspace=\ \u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9: {0} -AbstractBuild.KeptBecause={0}\u306e\u305f\u3081\u3001\u4fdd\u5b58\u3057\u307e\u3057\u305f\u3002 - -AbstractItem.NoSuchJobExists=\u30b8\u30e7\u30d6''{0}''\u306f\u5b58\u5728\u3057\u307e\u305b\u3093\u3002''{1}''\u3067\u3059\u304b? -AbstractItem.Pronoun=\u30b8\u30e7\u30d6 -AbstractItem.NewNameInUse=\u30b8\u30e7\u30d6\u540d {0} \u306f\u3059\u3067\u306b\u4f7f\u7528\u3055\u308c\u3066\u3044\u307e\u3059\u3002 -AbstractItem.NewNameUnchanged=\u73fe\u5728\u306e\u540d\u524d\u3068\u540c\u3058\u3067\u3059\u3002 -AbstractProject.NewBuildForWorkspace=\u65b0\u898f\u306e\u30d3\u30eb\u30c9\u3092\u5b9f\u884c\u3057\u3066\u3001\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u3066\u304f\u3060\u3055\u3044\u3002 -AbstractProject.AwaitingBuildForWorkspace=\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9\u304c\u7528\u610f\u3067\u304d\u308b\u307e\u3067\u30d3\u30eb\u30c9\u3092\u4fdd\u7559\u3057\u307e\u3059\u3002 -AbstractProject.Pronoun=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8 -AbstractProject.Aborted=\u4e2d\u6b62 -AbstractProject.UpstreamBuildInProgress=\u4e0a\u6d41\u30d7\u30ed\u30b8\u30a7\u30af\u30c8 {0} \u306f\u3059\u3067\u306b\u30d3\u30eb\u30c9\u4e2d\u3067\u3059\u3002 -AbstractProject.DownstreamBuildInProgress=\u4e0b\u6d41\u30d7\u30ed\u30b8\u30a7\u30af\u30c8 {0} \u304c\u307e\u3060\u30d3\u30eb\u30c9\u4e2d\u3067\u3059\u3002 -AbstractProject.Disabled=\u30d3\u30eb\u30c9\u306f\u7121\u52b9\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u3002 -AbstractProject.NoBuilds=\u30d3\u30eb\u30c9\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u65b0\u3057\u3044\u30d3\u30eb\u30c9\u3092\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3057\u307e\u3059\u3002 -AbstractProject.NoSCM=SCM\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002 -AbstractProject.NoWorkspace=\u5229\u7528\u53ef\u80fd\u306a\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9\u304c\u306a\u3044\u306e\u3067\u3001\u66f4\u65b0\u3092\u30c1\u30a7\u30c3\u30af\u3067\u304d\u307e\u305b\u3093\u3002 -AbstractProject.PollingABorted=SCM\u306e\u30dd\u30fc\u30ea\u30f3\u30b0\u3092\u4e2d\u6b62\u3057\u307e\u3059\u3002 -AbstractProject.ScmAborted=SCM\u306e\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8\u3092\u4e2d\u6b62\u3057\u307e\u3059\u3002 -AbstractProject.WorkspaceOffline=\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9\u306f\u30aa\u30d5\u30e9\u30a4\u30f3\u3067\u3059\u3002 +AbstractBuild.BuildingRemotely={0} ã§ãƒ“ルドã—ã¾ã™ã€‚ +AbstractBuild.BuildingOnMaster=masterã§ãƒ“ルドã—ã¾ã™ã€‚ +AbstractBuild_Building=ビルドã—ã¾ã™ã€‚ +AbstractBuild.BuildingInWorkspace=\ ワークスペース: {0} +AbstractBuild.KeptBecause={0}ã®ãŸã‚ã€ä¿å­˜ã—ã¾ã—ãŸã€‚ + +AbstractItem.NoSuchJobExists=ジョブ''{0}''ã¯å­˜åœ¨ã—ã¾ã›ã‚“。''{1}''ã§ã™ã‹? +AbstractItem.Pronoun=ジョブ +AbstractItem.NewNameInUse=ジョブå {0} ã¯ã™ã§ã«ä½¿ç”¨ã•ã‚Œã¦ã„ã¾ã™ã€‚ +AbstractItem.NewNameUnchanged=ç¾åœ¨ã®åå‰ã¨åŒã˜ã§ã™ã€‚ +AbstractProject.NewBuildForWorkspace=æ–°è¦ã®ãƒ“ルドを実行ã—ã¦ã€ãƒ¯ãƒ¼ã‚¯ã‚¹ãƒšãƒ¼ã‚¹ã‚’作æˆã—ã¦ãã ã•ã„。 +AbstractProject.AwaitingBuildForWorkspace=ワークスペースãŒç”¨æ„ã§ãã‚‹ã¾ã§ãƒ“ルドをä¿ç•™ã—ã¾ã™ã€‚ +AbstractProject.Pronoun=プロジェクト +AbstractProject.Aborted=中止 +AbstractProject.UpstreamBuildInProgress=上æµãƒ—ロジェクト {0} ã¯ã™ã§ã«ãƒ“ルド中ã§ã™ã€‚ +AbstractProject.DownstreamBuildInProgress=下æµãƒ—ロジェクト {0} ãŒã¾ã ãƒ“ルド中ã§ã™ã€‚ +AbstractProject.Disabled=ビルドã¯ç„¡åŠ¹ã«ãªã£ã¦ã„ã¾ã™ã€‚ +AbstractProject.NoBuilds=ビルドã¯ã‚ã‚Šã¾ã›ã‚“。新ã—ã„ビルドをスケジュールã—ã¾ã™ã€‚ +AbstractProject.NoSCM=SCMãŒè¨­å®šã•ã‚Œã¦ã„ã¾ã›ã‚“。 +AbstractProject.NoWorkspace=利用å¯èƒ½ãªãƒ¯ãƒ¼ã‚¯ã‚¹ãƒšãƒ¼ã‚¹ãŒãªã„ã®ã§ã€æ›´æ–°ã‚’ãƒã‚§ãƒƒã‚¯ã§ãã¾ã›ã‚“。 +AbstractProject.PollingABorted=SCMã®ãƒãƒ¼ãƒªãƒ³ã‚°ã‚’中止ã—ã¾ã™ã€‚ +AbstractProject.ScmAborted=SCMã®ãƒã‚§ãƒƒã‚¯ã‚¢ã‚¦ãƒˆã‚’中止ã—ã¾ã™ã€‚ +AbstractProject.WorkspaceOffline=ワークスペースã¯ã‚ªãƒ•ãƒ©ã‚¤ãƒ³ã§ã™ã€‚ AbstractProject.BuildPermission.Description=\ - \u65b0\u898f\u30d3\u30eb\u30c9\u306e\u958b\u59cb\u3092\u8a31\u53ef\u3057\u307e\u3059\u3002 + æ–°è¦ãƒ“ルドã®é–‹å§‹ã‚’許å¯ã—ã¾ã™ã€‚ AbstractProject.WorkspacePermission.Description=\ - Jenkins\u304c\u30d3\u30eb\u30c9\u5b9f\u884c\u7528\u306b\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8\u3057\u305f\u3001\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u53d6\u5f97\u3092\u8a31\u53ef\u3057\u307e\u3059\u3002\ - \u30e6\u30fc\u30b6\u30fc\u306b\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u89e6\u3089\u305b\u305f\u304f\u306a\u3044\u306e\u3067\u3042\u308c\u3070\u3001\u3053\u306e\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3\u3092\u4e0e\u3048\u306a\u3044\u3067\u304f\u3060\u3055\u3044\u3002 + JenkinsãŒãƒ“ルド実行用ã«ãƒã‚§ãƒƒã‚¯ã‚¢ã‚¦ãƒˆã—ãŸã€ãƒ¯ãƒ¼ã‚¯ã‚¹ãƒšãƒ¼ã‚¹ã®ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã®å–得を許å¯ã—ã¾ã™ã€‚\ + ユーザーã«ã‚½ãƒ¼ã‚¹ã‚³ãƒ¼ãƒ‰ã‚’触らã›ãŸããªã„ã®ã§ã‚ã‚Œã°ã€ã“ã®ãƒ‘ーミッションを与ãˆãªã„ã§ãã ã•ã„。 AbstractProject.ExtendedReadPermission.Description=\ - \u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u8a2d\u5b9a\u753b\u9762\u306e\u53c2\u7167\u306e\u307f\u8a31\u53ef\u3057\u307e\u3059\u3002\ - \u3053\u306e\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3\u3092\u4e0e\u3048\u308b\u3068\u3001\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u3088\u3046\u306a\u30d3\u30eb\u30c9\u306e\u614e\u91cd\u306b\u6271\u3046\u5fc5\u8981\u304c\u3042\u308b\u60c5\u5831\u304c\u516c\u958b\u3055\u308c\u3066\u3057\u307e\u3046\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044\u3002 + プロジェクトã®è¨­å®šç”»é¢ã®å‚ç…§ã®ã¿è¨±å¯ã—ã¾ã™ã€‚\ + ã“ã®ãƒ‘ーミッションを与ãˆã‚‹ã¨ã€ãƒ‘スワードã®ã‚ˆã†ãªãƒ“ルドã®æ…Žé‡ã«æ‰±ã†å¿…è¦ãŒã‚る情報ãŒå…¬é–‹ã•ã‚Œã¦ã—ã¾ã†ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。 AbstractProject.DiscoverPermission.Description=\ - \u30b8\u30e7\u30d6\u306e\u767a\u898b\u3092\u8a31\u53ef\u3057\u307e\u3059\u3002\u533f\u540d\u30e6\u30fc\u30b6\u304c\u30b8\u30e7\u30d6\u3092\u53c2\u7167\u3059\u308b\u6a29\u9650\u304c\u306a\u3044\u5834\u5408\u3001\u30b8\u30e7\u30d6\u306eURL\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3088\u3046\u3068\u3059\u308b\u3068\u3001\ - \u30ed\u30b0\u30a4\u30f3\u30da\u30fc\u30b8\u306b\u30ea\u30c0\u30a4\u30ec\u30af\u30c8\u3057\u307e\u3059\u3002\u3053\u306e\u691c\u773c\u304c\u306a\u3044\u5834\u5408\u306f\u3001404\u30a8\u30e9\u30fc\u3092\u8fd4\u3057\u307e\u3059\u3002 + ジョブã®ç™ºè¦‹ã‚’許å¯ã—ã¾ã™ã€‚匿åユーザãŒã‚¸ãƒ§ãƒ–ã‚’å‚ç…§ã™ã‚‹æ¨©é™ãŒãªã„å ´åˆã€ã‚¸ãƒ§ãƒ–ã®URLã«ã‚¢ã‚¯ã‚»ã‚¹ã—よã†ã¨ã™ã‚‹ã¨ã€\ + ログインページã«ãƒªãƒ€ã‚¤ãƒ¬ã‚¯ãƒˆã—ã¾ã™ã€‚ã“ã®æ¤œçœ¼ãŒãªã„å ´åˆã¯ã€404エラーを返ã—ã¾ã™ã€‚ AbstractProject.WipeOutPermission.Description=\ - \u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9\u306b\u3042\u308b\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u524a\u9664\u3092\u8a31\u53ef\u3057\u307e\u3059\u3002 + ワークスペースã«ã‚るコンテンツã®å‰Šé™¤ã‚’許å¯ã—ã¾ã™ã€‚ AbstractProject.CancelPermission.Description=\ - \u30d3\u30eb\u30c9\u306e\u30ad\u30e3\u30f3\u30bb\u30eb\u3092\u8a31\u53ef\u3057\u307e\u3059\u3002 + ビルドã®ã‚­ãƒ£ãƒ³ã‚»ãƒ«ã‚’許å¯ã—ã¾ã™ã€‚ LabelExpression.InvalidBooleanExpression=\ - \u30e9\u30d9\u30eb\u5f0f\u306b\u9593\u9055\u3044\u304c\u3042\u308a\u307e\u3059\u3002: {0} \ - \u8a72\u5f53\u3059\u308b\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u3082\u3057\u304f\u306f\u30af\u30e9\u30a6\u30c9\u306f\u3042\u308a\u307e\u305b\u3093\u3002 -AbstractProject.CustomWorkspaceEmpty=\u30ab\u30b9\u30bf\u30e0\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9\u304c\u5165\u529b\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002 + ラベルå¼ã«é–“é•ã„ãŒã‚ã‚Šã¾ã™ã€‚: {0} \ + 該当ã™ã‚‹ã‚¨ãƒ¼ã‚¸ã‚§ãƒ³ãƒˆã‚‚ã—ãã¯ã‚¯ãƒ©ã‚¦ãƒ‰ã¯ã‚ã‚Šã¾ã›ã‚“。 +AbstractProject.CustomWorkspaceEmpty=カスタムワークスペースãŒå…¥åŠ›ã•ã‚Œã¦ã„ã¾ã›ã‚“。 -Api.MultipleMatch=XPath "{0}" \u306f {1} \u500b\u306e\u30ce\u30fc\u30c9\u3068\u4e00\u81f4\u3057\u307e\u3057\u305f\u3002 \ - 1\u3064\u306e\u30ce\u30fc\u30c9\u306b\u306e\u307f\u4e00\u81f4\u3059\u308bXPath\u3092\u4f5c\u6210\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u3082\u3057\u304f\u306f\u3001\u30eb\u30fc\u30c8\u8981\u7d20\u304c\u542b\u3080\u3059\u3079\u3066\u3092\u30e9\u30c3\u30d7\u3059\u308b"wrapper"\u30af\u30a8\u30ea\u30fc\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002 -Api.NoXPathMatch=XPath \u201d{0}"\u306f\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002 +Api.MultipleMatch=XPath "{0}" 㯠{1} 個ã®ãƒŽãƒ¼ãƒ‰ã¨ä¸€è‡´ã—ã¾ã—ãŸã€‚ \ + 1ã¤ã®ãƒŽãƒ¼ãƒ‰ã«ã®ã¿ä¸€è‡´ã™ã‚‹XPathを作æˆã—ã¦ãã ã•ã„。もã—ãã¯ã€ãƒ«ãƒ¼ãƒˆè¦ç´ ãŒå«ã‚€ã™ã¹ã¦ã‚’ラップã™ã‚‹"wrapper"クエリーパラメータを使用ã—ã¦ãã ã•ã„。 +Api.NoXPathMatch=XPath â€{0}"ã¯ä¸€è‡´ã—ã¾ã›ã‚“。 -BallColor.Aborted=\u4e2d\u65ad -BallColor.Disabled=\u7121\u52b9 -BallColor.Failed=\u5931\u6557 -BallColor.InProgress=\u9032\u884c\u4e2d -BallColor.NotBuilt=\u672a\u30d3\u30eb\u30c9 -BallColor.Pending=\u672a\u6c7a\u5b9a -BallColor.Success=\u6210\u529f -BallColor.Unstable=\u4e0d\u5b89\u5b9a +BallColor.Aborted=中断 +BallColor.Disabled=無効 +BallColor.Failed=失敗 +BallColor.InProgress=進行中 +BallColor.NotBuilt=未ビルド +BallColor.Pending=未決定 +BallColor.Success=æˆåŠŸ +BallColor.Unstable=ä¸å®‰å®š -ComputerSet.DisplayName=\u30ce\u30fc\u30c9 +ComputerSet.DisplayName=ノード Descriptor.From=(from {0}) Executor.NotAvailable=N/A -FreeStyleProject.DisplayName=\u30d5\u30ea\u30fc\u30b9\u30bf\u30a4\u30eb\u30fb\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u30d3\u30eb\u30c9 +FreeStyleProject.DisplayName=フリースタイル・プロジェクトã®ãƒ“ルド FreeStyleProject.Description=\ - \u3082\u3063\u3068\u3082\u6c4e\u7528\u6027\u306e\u9ad8\u3044Jenkins\u306e\u4e2d\u6838\u6a5f\u80fd\u3067\u3059\u3002\u4efb\u610f\u306eSCM\u304b\u3089\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8\u3057\u3001\ - \u4efb\u610f\u306e\u30d3\u30eb\u30c9\u30b7\u30b9\u30c6\u30e0\u3067\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u304c\u30d3\u30eb\u30c9\u3067\u304d\u307e\u3059\u3002\u5f80\u3005\u306b\u3057\u3066\u3001\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u306e\u30d3\u30eb\u30c9\u4ee5\u5916\u306b\u3082\ - \u69d8\u3005\u306a\u4ed5\u4e8b\u306e\u81ea\u52d5\u5316\u306b\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 + ã‚‚ã£ã¨ã‚‚汎用性ã®é«˜ã„Jenkinsã®ä¸­æ ¸æ©Ÿèƒ½ã§ã™ã€‚ä»»æ„ã®SCMã‹ã‚‰ã‚½ãƒ¼ã‚¹ã‚³ãƒ¼ãƒ‰ã‚’ãƒã‚§ãƒƒã‚¯ã‚¢ã‚¦ãƒˆã—ã€\ + ä»»æ„ã®ãƒ“ルドシステムã§ãƒ—ロジェクトãŒãƒ“ルドã§ãã¾ã™ã€‚往々ã«ã—ã¦ã€ã‚½ãƒ•ãƒˆã‚¦ã‚§ã‚¢ã®ãƒ“ルド以外ã«ã‚‚\ + 様々ãªä»•äº‹ã®è‡ªå‹•åŒ–ã«åˆ©ç”¨ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ HealthReport.EmptyString= -Hudson.BadPortNumber={0}\u306f\u4e0d\u6b63\u306a\u30dd\u30fc\u30c8\u756a\u53f7\u3067\u3059\u3002 +Hudson.BadPortNumber={0}ã¯ä¸æ­£ãªãƒãƒ¼ãƒˆç•ªå·ã§ã™ã€‚ Hudson.Computer.Caption=master Hudson.Computer.DisplayName=master -Hudson.ControlCodeNotAllowed=\u5236\u5fa1\u6587\u5b57\u306f\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093\u3002: {0} +Hudson.ControlCodeNotAllowed=制御文字ã¯ä½¿ç”¨ã§ãã¾ã›ã‚“。: {0} Hudson.DisplayName=Jenkins -Hudson.JobAlreadyExists=''{0}''\u3068\u3044\u3046\u30b8\u30e7\u30d6\u306f\u65e2\u306b\u5b58\u5728\u3057\u3066\u3044\u307e\u3059\u3002 -Hudson.NoJavaInPath=Java\u304c\u30d1\u30b9\u306b\u3042\u308a\u307e\u305b\u3093\u3002JDKs\u306e\u8a2d\u5b9a\u304c\u5fc5\u8981? -Hudson.NoName=\u540d\u524d\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002 -Hudson.NoSuchDirectory=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u304c\u3042\u308a\u307e\u305b\u3093\u3002: {0} -Hudson.NodeBeingRemoved=\u30ce\u30fc\u30c9\u3092\u524a\u9664\u4e2d\u3067\u3059\u3002 -Hudson.NotADirectory={0} \u306f\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 -Hudson.NotAPlugin={0} \u306fJenkins\u306e\u30d7\u30e9\u30b0\u30a4\u30f3\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 -Hudson.NotJDKDir={0} \u306fJDK\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u306f\u306a\u3044\u3088\u3046\u3067\u3059\u3002 -Hudson.Permissions.Title=\u5168\u4f53 -Hudson.USER_CONTENT_README=\u3053\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u30d5\u30a1\u30a4\u30eb\u306f\u3001http://server/jenkins/userContent/ \u3068\u3057\u3066\u63d0\u4f9b\u3055\u308c\u307e\u3059\u3002 -Hudson.UnsafeChar=''{0}''\u306f\u4f7f\u7528\u3067\u304d\u306a\u3044\u6587\u5b57\u3067\u3059\u3002 -Hudson.ViewAlreadyExists="{0}"\u3068\u3044\u3046\u30d3\u30e5\u30fc\u306f\u65e2\u306b\u5b58\u5728\u3057\u3066\u3044\u307e\u3059\u3002 -Hudson.ViewName=\u3059\u3079\u3066 -Hudson.NotANumber=\u6570\u5b57\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002 -Hudson.NotAPositiveNumber=\u6b63\u306e\u6570\u5b57\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002 -Hudson.NotANonNegativeNumber=0\u4ee5\u4e0a\u306e\u6570\u5b57\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002 -Hudson.NotANegativeNumber=\u8ca0\u306e\u6570\u5b57\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002 +Hudson.JobAlreadyExists=''{0}''ã¨ã„ã†ã‚¸ãƒ§ãƒ–ã¯æ—¢ã«å­˜åœ¨ã—ã¦ã„ã¾ã™ã€‚ +Hudson.NoJavaInPath=JavaãŒãƒ‘スã«ã‚ã‚Šã¾ã›ã‚“。JDKsã®è¨­å®šãŒå¿…è¦? +Hudson.NoName=åå‰ãŒæŒ‡å®šã•ã‚Œã¦ã„ã¾ã›ã‚“。 +Hudson.NoSuchDirectory=ディレクトリãŒã‚ã‚Šã¾ã›ã‚“。: {0} +Hudson.NodeBeingRemoved=ノードを削除中ã§ã™ã€‚ +Hudson.NotADirectory={0} ã¯ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã§ã¯ã‚ã‚Šã¾ã›ã‚“。 +Hudson.NotAPlugin={0} ã¯Jenkinsã®ãƒ—ラグインã§ã¯ã‚ã‚Šã¾ã›ã‚“。 +Hudson.NotJDKDir={0} ã¯JDKã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã§ã¯ãªã„よã†ã§ã™ã€‚ +Hudson.Permissions.Title=全体 +Hudson.USER_CONTENT_README=ã“ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯ã€http://server/jenkins/userContent/ ã¨ã—ã¦æä¾›ã•ã‚Œã¾ã™ã€‚ +Hudson.UnsafeChar=''{0}''ã¯ä½¿ç”¨ã§ããªã„文字ã§ã™ã€‚ +Hudson.ViewAlreadyExists="{0}"ã¨ã„ã†ãƒ“ューã¯æ—¢ã«å­˜åœ¨ã—ã¦ã„ã¾ã™ã€‚ +Hudson.ViewName=ã™ã¹ã¦ +Hudson.NotANumber=数字を指定ã—ã¦ãã ã•ã„。 +Hudson.NotAPositiveNumber=æ­£ã®æ•°å­—を指定ã—ã¦ãã ã•ã„。 +Hudson.NotANonNegativeNumber=0以上ã®æ•°å­—を指定ã—ã¦ãã ã•ã„。 +Hudson.NotANegativeNumber=è² ã®æ•°å­—を指定ã—ã¦ãã ã•ã„。 Hudson.NotUsesUTF8ToDecodeURL=\ - URL\u304cUTF-8\u3067\u30c7\u30b3\u30fc\u30c9\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u30b8\u30e7\u30d6\u540d\u306a\u3069\u306bnon-ASCII\u306a\u6587\u5b57\u3092\u4f7f\u7528\u3059\u308b\u5834\u5408\u306f\u3001\ - \u30b3\u30f3\u30c6\u30ca\u306e\u8a2d\u5b9a\u3084\ - Tomcat i18N\u3092\u53c2\u8003\u306b\u8a2d\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002 + URLãŒUTF-8ã§ãƒ‡ã‚³ãƒ¼ãƒ‰ã•ã‚Œã¦ã„ã¾ã›ã‚“。ジョブåãªã©ã«non-ASCIIãªæ–‡å­—を使用ã™ã‚‹å ´åˆã¯ã€\ + コンテナã®è¨­å®šã‚„\ + Tomcat i18Nã‚’å‚考ã«è¨­å®šã—ã¦ãã ã•ã„。 Hudson.AdministerPermission.Description=\ - (OS\u304c\u8a31\u53ef\u3059\u308b\u7bc4\u56f2\u5185\u3067\u306e\uff09\u30ed\u30fc\u30ab\u30eb\u30b7\u30b9\u30c6\u30e0\u5168\u4f53\u3078\u306e\u30a2\u30af\u30bb\u30b9\u306b\u76f8\u5f53\u3059\u308b\u3001\ - \u3068\u3066\u3082\u6ce8\u610f\u304c\u5fc5\u8981\u306a\u64cd\u4f5c\u3068\u540c\u7a0b\u5ea6\u306e\u3001\u30b7\u30b9\u30c6\u30e0\u5168\u4f53\u306e\u8a2d\u5b9a\u5909\u66f4\u3092\u8a31\u53ef\u3057\u307e\u3059\u3002 + (OSãŒè¨±å¯ã™ã‚‹ç¯„囲内ã§ã®ï¼‰ãƒ­ãƒ¼ã‚«ãƒ«ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã¸ã®ã‚¢ã‚¯ã‚»ã‚¹ã«ç›¸å½“ã™ã‚‹ã€\ + ã¨ã¦ã‚‚注æ„ãŒå¿…è¦ãªæ“作ã¨åŒç¨‹åº¦ã®ã€ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã®è¨­å®šå¤‰æ›´ã‚’許å¯ã—ã¾ã™ã€‚ Hudson.ReadPermission.Description=\ - \u53c2\u7167\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3\u306f\u3001Jenkins\u306e\u307b\u307c\u3059\u3079\u3066\u306e\u753b\u9762\u3092\u53c2\u7167\u3059\u308b\u306e\u306b\u5fc5\u8981\u3067\u3059\u3002\ - \u3053\u306e\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3\u306f\u3001\u8a8d\u8a3c\u3055\u308c\u3066\u3044\u306a\u3044\u30e6\u30fc\u30b6\u30fc\u306b\u306fJenkins\u306e\u753b\u9762\u3092\u53c2\u7167\u3055\u305b\u305f\u304f\u306a\u3044\u5834\u5408\u306b\u4fbf\u5229\u3067\u3059\u3002\ - — \u533f\u540d\u30e6\u30fc\u30b6\u30fc\u304b\u3089\u3053\u306e\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3\u3092\u524a\u9664\u5f8c\u3001"\u8a8d\u8a3c\u6e08\u307f"\u306e\u65e2\u5b58\u30e6\u30fc\u30b6\u30fc\u3092\u8ffd\u52a0\u3057\u3066\u53c2\u7167\u3092\u8a31\u53ef\u3057\u307e\u3059\u3002 -Hudson.NodeDescription=\u30ce\u30fc\u30c9 - -Item.Permissions.Title=\u30b8\u30e7\u30d6 -Item.CREATE.description=\u65b0\u898f\u30b8\u30e7\u30d6\u306e\u4f5c\u6210\u3057\u307e\u3059\u3002 -Item.DELETE.description=\u30b8\u30e7\u30d6\u3092\u524a\u9664\u3057\u307e\u3059\u3002 -Item.CONFIGURE.description=\u30b8\u30e7\u30d6\u306e\u8a2d\u5b9a\u3092\u5909\u66f4\u3057\u307e\u3059\u3002 -Item.READ.description=\u30b8\u30e7\u30d6\u3092\u53c2\u7167\u3057\u307e\u3059\u3002\ - (\u8a31\u53ef\u3057\u306a\u3044\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u304c\u3001\u533f\u540d\u30e6\u30fc\u30b6\u30fc\u304c\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u30b8\u30e7\u30d6\u3092\u53c2\u7167\u3067\u304d\u308b\u3088\u3046\u306b"Discover"\u3092\u8a31\u53ef\u3057\u3066\u304f\u3060\u3055\u3044\u3002) - -Job.AllRecentBuildFailed=\u6700\u8fd1\u306e\u5168\u3066\u306e\u30d3\u30eb\u30c9\u306f\u5931\u6557\u3057\u307e\u3057\u305f\u3002 -Job.BuildStability=\u30d3\u30eb\u30c9\u306e\u5b89\u5b9a\u6027: {0} -Job.NOfMFailed=\u6700\u8fd1\u306e{1}\u500b\u4e2d\u3001{0}\u500b\u30d3\u30eb\u30c9\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002 -Job.NoRecentBuildFailed=\u6700\u8fd1\u306e\u30d3\u30eb\u30c9\u306f\u5931\u6557\u3057\u3066\u307e\u305b\u3093\u3002 -Job.Pronoun=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8 -Job.minutes=\u5206 -Job.NoRenameWhileBuilding=\u30d3\u30eb\u30c9\u4e2d\u306b\u30b8\u30e7\u30d6\u540d\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3002 + å‚照パーミッションã¯ã€Jenkinsã®ã»ã¼ã™ã¹ã¦ã®ç”»é¢ã‚’å‚ç…§ã™ã‚‹ã®ã«å¿…è¦ã§ã™ã€‚\ + ã“ã®ãƒ‘ーミッションã¯ã€èªè¨¼ã•ã‚Œã¦ã„ãªã„ユーザーã«ã¯Jenkinsã®ç”»é¢ã‚’å‚ç…§ã•ã›ãŸããªã„å ´åˆã«ä¾¿åˆ©ã§ã™ã€‚\ + — 匿åユーザーã‹ã‚‰ã“ã®ãƒ‘ーミッションを削除後ã€"èªè¨¼æ¸ˆã¿"ã®æ—¢å­˜ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’追加ã—ã¦å‚照を許å¯ã—ã¾ã™ã€‚ +Hudson.NodeDescription=ノード + +Item.Permissions.Title=ジョブ +Item.CREATE.description=æ–°è¦ã‚¸ãƒ§ãƒ–ã®ä½œæˆã—ã¾ã™ã€‚ +Item.DELETE.description=ジョブを削除ã—ã¾ã™ã€‚ +Item.CONFIGURE.description=ジョブã®è¨­å®šã‚’変更ã—ã¾ã™ã€‚ +Item.READ.description=ジョブをå‚ç…§ã—ã¾ã™ã€‚\ + (許å¯ã—ãªã„ã“ã¨ã‚‚ã§ãã¾ã™ãŒã€åŒ¿åユーザーãŒãƒ­ã‚°ã‚¤ãƒ³ã—ã¦ã‚¸ãƒ§ãƒ–ã‚’å‚ç…§ã§ãるよã†ã«"Discover"を許å¯ã—ã¦ãã ã•ã„。) + +Job.AllRecentBuildFailed=最近ã®å…¨ã¦ã®ãƒ“ルドã¯å¤±æ•—ã—ã¾ã—ãŸã€‚ +Job.BuildStability=ビルドã®å®‰å®šæ€§: {0} +Job.NOfMFailed=最近ã®{1}個中ã€{0}個ビルドã«å¤±æ•—ã—ã¾ã—ãŸã€‚ +Job.NoRecentBuildFailed=最近ã®ãƒ“ルドã¯å¤±æ•—ã—ã¦ã¾ã›ã‚“。 +Job.Pronoun=プロジェクト +Job.minutes=分 +Job.NoRenameWhileBuilding=ビルド中ã«ã‚¸ãƒ§ãƒ–åを変更ã§ãã¾ã›ã‚“。 Label.GroupOf={0} -Label.InvalidLabel=\u4e0d\u6b63\u306a\u30e9\u30d9\u30eb -Label.ProvisionedFrom={0}\u304b\u3089\u4f9b\u7d66 +Label.InvalidLabel=ä¸æ­£ãªãƒ©ãƒ™ãƒ« +Label.ProvisionedFrom={0}ã‹ã‚‰ä¾›çµ¦ MultiStageTimeSeries.EMPTY_STRING= -Node.BecauseNodeIsReserved={0} \u306f\u5f53\u8a72\u30ce\u30fc\u30c9\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u30b8\u30e7\u30d6\u304c\u4e88\u7d04\u3057\u3066\u3044\u307e\u3059\u3002 -Node.LabelMissing={0} \u306b\u306f\u30e9\u30d9\u30eb {1} \u306f\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002 -Queue.AllNodesOffline=\u30e9\u30d9\u30eb ''{0}'' \u306e\u3059\u3079\u3066\u306e\u30ce\u30fc\u30c9\u306f\u30aa\u30d5\u30e9\u30a4\u30f3\u3067\u3059\u3002 -Queue.BlockedBy={0}\u306b\u30d6\u30ed\u30c3\u30af\u3055\u308c\u3066\u3044\u307e\u3059\u3002 -Queue.HudsonIsAboutToShutDown=Jenkins\u306f\u30b7\u30e3\u30c3\u30c8\u30c0\u30a6\u30f3\u4e2d\u3067\u3059\u3002 -Queue.InProgress=\u30d3\u30eb\u30c9\u306f\u3059\u3067\u306b\u5b9f\u884c\u4e2d\u3067\u3059\u3002 -Queue.InQuietPeriod=\u5f85\u6a5f\u4e2d\u3067\u3059\u3002\u3042\u3068{0}\u3067\u3059\u3002 -Queue.NodeOffline={0} \u306f\u30aa\u30d5\u30e9\u30a4\u30f3\u3067\u3059\u3002 +Node.BecauseNodeIsReserved={0} ã¯å½“該ノードã«å‰²ã‚Šå½“ã¦ã‚‰ã‚ŒãŸã‚¸ãƒ§ãƒ–ãŒäºˆç´„ã—ã¦ã„ã¾ã™ã€‚ +Node.LabelMissing={0} ã«ã¯ãƒ©ãƒ™ãƒ« {1} ã¯è¨­å®šã•ã‚Œã¦ã„ã¾ã›ã‚“。 +Queue.AllNodesOffline=ラベル ''{0}'' ã®ã™ã¹ã¦ã®ãƒŽãƒ¼ãƒ‰ã¯ã‚ªãƒ•ãƒ©ã‚¤ãƒ³ã§ã™ã€‚ +Queue.BlockedBy={0}ã«ãƒ–ロックã•ã‚Œã¦ã„ã¾ã™ã€‚ +Queue.HudsonIsAboutToShutDown=Jenkinsã¯ã‚·ãƒ£ãƒƒãƒˆãƒ€ã‚¦ãƒ³ä¸­ã§ã™ã€‚ +Queue.InProgress=ビルドã¯ã™ã§ã«å®Ÿè¡Œä¸­ã§ã™ã€‚ +Queue.InQuietPeriod=待機中ã§ã™ã€‚ã‚ã¨{0}ã§ã™ã€‚ +Queue.NodeOffline={0} ã¯ã‚ªãƒ•ãƒ©ã‚¤ãƒ³ã§ã™ã€‚ Queue.Unknown=??? -Queue.WaitingForNextAvailableExecutor=\u5229\u7528\u53ef\u80fd\u306a\u6b21\u306e\u30a8\u30b0\u30bc\u30ad\u30e5\u30fc\u30bf\u30fc\u3092\u5f85\u3063\u3066\u3044\u307e\u3059\u3002 -Queue.WaitingForNextAvailableExecutorOn={0}\u3067\u5229\u7528\u53ef\u80fd\u306a\u6b21\u306e\u30a8\u30b0\u30bc\u30ad\u30e5\u30fc\u30bf\u30fc\u3092\u5f85\u3063\u3066\u3044\u307e\u3059\u3002 -Queue.init=\u30d3\u30eb\u30c9\u30ad\u30e5\u30fc\u3092\u5fa9\u5143\u4e2d\u3067\u3059\u3002 - -ResultTrend.Aborted=\u4e2d\u65ad -ResultTrend.Failure=\u5931\u6557 -ResultTrend.Fixed=\u4fee\u6b63 -ResultTrend.NotBuilt=\u672a\u30d3\u30eb\u30c9 -ResultTrend.NowUnstable=\u4e0d\u5b89\u5b9a -ResultTrend.StillFailing=\u5931\u6557\u4e2d -ResultTrend.StillUnstable=\u4e0d\u5b89\u5b9a\u4e2d -ResultTrend.Success=\u6210\u529f -ResultTrend.Unstable=\u4e0d\u5b89\u5b9a - -Run._is_waiting_for_a_checkpoint_on_={0}\u306f\u3001{1}\u306e\u30c1\u30a7\u30c3\u30af\u30dd\u30a4\u30f3\u30c8\u3092\u5f85\u3063\u3066\u3044\u307e\u3059\u3002 -Run.BuildAborted=\u30d3\u30eb\u30c9\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f\u3002 -Run.MarkedExplicitly=\u8a18\u9332\u3092\u6b8b\u3059\u305f\u3081\u306b\u30de\u30fc\u30af\u3057\u307e\u3059\u3002 -Run.Permissions.Title=\u30d3\u30eb\u30c9 -Run.UnableToDelete={0}\u3092\u524a\u9664\u3067\u304d\u307e\u305b\u3093\u3002: {1} +Queue.WaitingForNextAvailableExecutor=利用å¯èƒ½ãªæ¬¡ã®ã‚¨ã‚°ã‚¼ã‚­ãƒ¥ãƒ¼ã‚¿ãƒ¼ã‚’å¾…ã£ã¦ã„ã¾ã™ã€‚ +Queue.WaitingForNextAvailableExecutorOn={0}ã§åˆ©ç”¨å¯èƒ½ãªæ¬¡ã®ã‚¨ã‚°ã‚¼ã‚­ãƒ¥ãƒ¼ã‚¿ãƒ¼ã‚’å¾…ã£ã¦ã„ã¾ã™ã€‚ +Queue.init=ビルドキューを復元中ã§ã™ã€‚ + +ResultTrend.Aborted=中断 +ResultTrend.Failure=失敗 +ResultTrend.Fixed=修正 +ResultTrend.NotBuilt=未ビルド +ResultTrend.NowUnstable=ä¸å®‰å®š +ResultTrend.StillFailing=失敗中 +ResultTrend.StillUnstable=ä¸å®‰å®šä¸­ +ResultTrend.Success=æˆåŠŸ +ResultTrend.Unstable=ä¸å®‰å®š + +Run._is_waiting_for_a_checkpoint_on_={0}ã¯ã€{1}ã®ãƒã‚§ãƒƒã‚¯ãƒã‚¤ãƒ³ãƒˆã‚’å¾…ã£ã¦ã„ã¾ã™ã€‚ +Run.BuildAborted=ビルドを中止ã—ã¾ã—ãŸã€‚ +Run.MarkedExplicitly=記録を残ã™ãŸã‚ã«ãƒžãƒ¼ã‚¯ã—ã¾ã™ã€‚ +Run.Permissions.Title=ビルド +Run.UnableToDelete={0}を削除ã§ãã¾ã›ã‚“。: {1} Run.DeletePermission.Description=\ - \u30d3\u30eb\u30c9\u5c65\u6b74\u304b\u3089\u306e\u7279\u5b9a\u30d3\u30eb\u30c9\u306e\u524a\u9664\u3092\u8a31\u53ef\u3057\u307e\u3059\u3002 + ビルド履歴ã‹ã‚‰ã®ç‰¹å®šãƒ“ルドã®å‰Šé™¤ã‚’許å¯ã—ã¾ã™ã€‚ Run.UpdatePermission.Description=\ - \u30d3\u30eb\u30c9\u5931\u6557\u306e\u539f\u56e0\u306b\u95a2\u3059\u308b\u30e1\u30e2\u3092\u6b8b\u3059\u306a\u3069\u3001\u30d3\u30eb\u30c9\u306e\u8aac\u660e\u3084\u4ed6\u306e\u5c5e\u6027\u306e\u66f4\u65b0\u3092\u8a31\u53ef\u3057\u307e\u3059\u3002 + ビルド失敗ã®åŽŸå› ã«é–¢ã™ã‚‹ãƒ¡ãƒ¢ã‚’残ã™ãªã©ã€ãƒ“ルドã®èª¬æ˜Žã‚„ä»–ã®å±žæ€§ã®æ›´æ–°ã‚’許å¯ã—ã¾ã™ã€‚ Run.ArtifactsPermission.Description=\ - \u30d3\u30eb\u30c9\u306b\u3088\u308b\u6210\u679c\u7269\u306e\u53d6\u5f97\u3092\u8a31\u53ef\u3057\u307e\u3059\u3002\u3082\u3057\u3001\u30e6\u30fc\u30b6\u30fc\u306b\u8a31\u53ef\u3057\u306a\u3044\u5834\u5408\u306f\u3001\u3053\u306e\u6a29\u9650\u3092\u4e0e\u3048\u306a\u3044\u3067\u304f\u3060\u3055\u3044\u3002 -Run.InProgressDuration={0} \u4ee5\u4e0a - -Run.Summary.Stable=\u5b89\u5b9a -Run.Summary.Unstable=\u4e0d\u5b89\u5b9a -Run.Summary.Aborted=\u4e2d\u65ad -Run.Summary.NotBuilt=\u672a\u30d3\u30eb\u30c9 -Run.Summary.BackToNormal=\u6b63\u5e38\u306b\u5fa9\u5e30 -Run.Summary.BrokenForALongTime=\u9577\u671f\u9593\u6545\u969c\u4e2d -Run.Summary.BrokenSinceThisBuild=\u3053\u306e\u30d3\u30eb\u30c9\u304b\u3089\u6545\u969c -Run.Summary.BrokenSince=\u30d3\u30eb\u30c9{0}\u304b\u3089\u6545\u969c + ビルドã«ã‚ˆã‚‹æˆæžœç‰©ã®å–得を許å¯ã—ã¾ã™ã€‚ã‚‚ã—ã€ãƒ¦ãƒ¼ã‚¶ãƒ¼ã«è¨±å¯ã—ãªã„å ´åˆã¯ã€ã“ã®æ¨©é™ã‚’与ãˆãªã„ã§ãã ã•ã„。 +Run.InProgressDuration={0} 以上 + +Run.Summary.Stable=安定 +Run.Summary.Unstable=ä¸å®‰å®š +Run.Summary.Aborted=中断 +Run.Summary.NotBuilt=未ビルド +Run.Summary.BackToNormal=正常ã«å¾©å¸° +Run.Summary.BrokenForALongTime=長期間故障中 +Run.Summary.BrokenSinceThisBuild=ã“ã®ãƒ“ルドã‹ã‚‰æ•…éšœ +Run.Summary.BrokenSince=ビルド{0}ã‹ã‚‰æ•…éšœ Run.Summary.Unknown=? -Slave.Network.Mounted.File.System.Warning=\u672c\u5f53\u306bFS\u30eb\u30fc\u30c8\u3068\u3057\u3066\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30de\u30a6\u30f3\u30c8\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u3092\u4f7f\u7528\u3057\u305f\u3044\u3067\u3059\u304b\uff1f \u3053\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306f\u30de\u30b9\u30bf\u30fc\u306b\u898b\u3048\u308b\u5fc5\u8981\u306f\u7121\u3044\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044\u3002 -Slave.Remote.Director.Mandatory=\u30ea\u30e2\u30fc\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306f\u5fc5\u9808\u3067\u3059\u3002 -Slave.the_remote_root_must_be_an_absolute_path=\u30ea\u30e2\u30fc\u30c9\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306f\u7d76\u5bfe\u30d1\u30b9\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002 +Slave.Network.Mounted.File.System.Warning=本当ã«FSルートã¨ã—ã¦ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ãƒžã‚¦ãƒ³ãƒˆã•ã‚ŒãŸãƒ•ã‚¡ã‚¤ãƒ«ã‚·ã‚¹ãƒ†ãƒ ã‚’使用ã—ãŸã„ã§ã™ã‹ï¼Ÿ ã“ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã¯ãƒžã‚¹ã‚¿ãƒ¼ã«è¦‹ãˆã‚‹å¿…è¦ã¯ç„¡ã„ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。 +Slave.Remote.Director.Mandatory=リモートディレクトリã¯å¿…é ˆã§ã™ã€‚ +Slave.the_remote_root_must_be_an_absolute_path=リモードディレクトリã¯çµ¶å¯¾ãƒ‘スã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。 -UpdateCenter.DownloadButNotActivated=\u6b63\u5e38\u306b\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3057\u305f\u3002\u6b21\u306e\u30d6\u30fc\u30c8\u6642\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059\u3002 +UpdateCenter.DownloadButNotActivated=正常ã«ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã—ã¾ã—ãŸã€‚次ã®ãƒ–ート時ã«æœ‰åŠ¹ã«ãªã‚Šã¾ã™ã€‚ UpdateCenter.n_a=N/A -View.Permissions.Title=\u30d3\u30e5\u30fc +View.Permissions.Title=ビュー View.CreatePermission.Description=\ - \u65b0\u898f\u30d3\u30e5\u30fc\u306e\u4f5c\u6210\u3092\u8a31\u53ef\u3057\u307e\u3059\u3002 + æ–°è¦ãƒ“ューã®ä½œæˆã‚’許å¯ã—ã¾ã™ã€‚ View.DeletePermission.Description=\ - \u65e2\u5b58\u306e\u30d3\u30e5\u30fc\u306e\u524a\u9664\u3092\u8a31\u53ef\u3057\u307e\u3059\u3002 + 既存ã®ãƒ“ューã®å‰Šé™¤ã‚’許å¯ã—ã¾ã™ã€‚ View.ConfigurePermission.Description=\ - \u30d3\u30e5\u30fc\u306e\u8a2d\u5b9a\u5909\u66f4\u3092\u8a31\u53ef\u3057\u307e\u3059\u3002 + ビューã®è¨­å®šå¤‰æ›´ã‚’許å¯ã—ã¾ã™ã€‚ View.ReadPermission.Description=\ - \u30d3\u30e5\u30fc\u306e\u53c2\u7167\u3092\u8a31\u53ef\u3057\u307e\u3059\u3002 -View.MissingMode=\u30d3\u30e5\u30fc\u306e\u7a2e\u985e\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002 + ビューã®å‚照を許å¯ã—ã¾ã™ã€‚ +View.MissingMode=ビューã®ç¨®é¡žãŒé¸æŠžã•ã‚Œã¦ã„ã¾ã›ã‚“。 -UpdateCenter.Status.CheckingInternet=\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u3068\u306e\u63a5\u7d9a\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059\u3002 -UpdateCenter.Status.CheckingJavaNet=jenkins-ci.org\u3068\u306e\u63a5\u7d9a\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059\u3002 -UpdateCenter.Status.Success=\u6210\u529f +UpdateCenter.Status.CheckingInternet=インターãƒãƒƒãƒˆã¨ã®æŽ¥ç¶šã‚’ãƒã‚§ãƒƒã‚¯ã—ã¾ã™ã€‚ +UpdateCenter.Status.CheckingJavaNet=jenkins-ci.orgã¨ã®æŽ¥ç¶šã‚’ãƒã‚§ãƒƒã‚¯ã—ã¾ã™ã€‚ +UpdateCenter.Status.Success=æˆåŠŸ UpdateCenter.Status.UnknownHostException=\ - \u30db\u30b9\u30c8\u540d {0}\u306e\u89e3\u6c7a\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002 \ - \u305f\u3076\u3093\u3001HTTP\u30d7\u30ed\u30af\u30b7\u30fc\u3092\u8a2d\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 + ホストå {0}ã®è§£æ±ºã«å¤±æ•—ã—ã¾ã—ãŸã€‚ \ + ãŸã¶ã‚“ã€HTTPプロクシーを設定ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ UpdateCenter.Status.ConnectionFailed=\ - {0} \u3068\u306e\u63a5\u7d9a\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002 \ - \u305f\u3076\u3093\u3001HTTP\u30d7\u30ed\u30af\u30b7\u30fc\u3092\u8a2d\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 -UpdateCenter.init=\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u30bb\u30f3\u30bf\u30fc\u306e\u521d\u671f\u5316\u4e2d -UpdateCenter.PluginCategory.builder=\u30d3\u30eb\u30c9\u30c4\u30fc\u30eb -UpdateCenter.PluginCategory.buildwrapper=\u30d3\u30eb\u30c9\u30e9\u30c3\u30d1\u30fc -UpdateCenter.PluginCategory.cli=\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9 -UpdateCenter.PluginCategory.cluster=\u30af\u30e9\u30b9\u30bf\u30fc\u7ba1\u7406/\u5206\u6563\u30d3\u30eb\u30c9 -UpdateCenter.PluginCategory.external=\u5916\u90e8\u30b5\u30a4\u30c8/\u30c4\u30fc\u30eb\u3068\u306e\u9023\u643a -UpdateCenter.PluginCategory.listview-column=\u30ea\u30b9\u30c8\u30d3\u30e5\u30fc\u30ab\u30e9\u30e0 + {0} ã¨ã®æŽ¥ç¶šã«å¤±æ•—ã—ã¾ã—ãŸã€‚ \ + ãŸã¶ã‚“ã€HTTPプロクシーを設定ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ +UpdateCenter.init=アップデートセンターã®åˆæœŸåŒ–中 +UpdateCenter.PluginCategory.builder=ビルドツール +UpdateCenter.PluginCategory.buildwrapper=ビルドラッパー +UpdateCenter.PluginCategory.cli=コマンドラインインタフェース +UpdateCenter.PluginCategory.cluster=クラスター管ç†/分散ビルド +UpdateCenter.PluginCategory.external=外部サイト/ツールã¨ã®é€£æº +UpdateCenter.PluginCategory.listview-column=リストビューカラム UpdateCenter.PluginCategory.maven=Maven -UpdateCenter.PluginCategory.misc=\u305d\u306e\u4ed6 -UpdateCenter.PluginCategory.notifier=\u30d3\u30eb\u30c9\u901a\u77e5 -UpdateCenter.PluginCategory.page-decorator=\u30da\u30fc\u30b8\u30c7\u30b3\u30ec\u30fc\u30bf\u30fc -UpdateCenter.PluginCategory.post-build=\u30d3\u30eb\u30c9\u5f8c\u306e\u30a2\u30af\u30b7\u30e7\u30f3 -UpdateCenter.PluginCategory.report=\u30d3\u30eb\u30c9\u30ec\u30dd\u30fc\u30c8 -UpdateCenter.PluginCategory.scm=\u30bd\u30fc\u30b9\u7ba1\u7406\u30b7\u30b9\u30c6\u30e0 -UpdateCenter.PluginCategory.scm-related=\u30bd\u30fc\u30b9\u7ba1\u7406\u30b7\u30b9\u30c6\u30e0\u95a2\u9023 -UpdateCenter.PluginCategory.trigger=\u30d3\u30eb\u30c9\u30c8\u30ea\u30ac -UpdateCenter.PluginCategory.ui=\u30e6\u30fc\u30b6\u30fc\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9 -UpdateCenter.PluginCategory.upload=\u6210\u679c\u7269\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9 -UpdateCenter.PluginCategory.user=\u8a8d\u8a3c/\u30e6\u30fc\u30b6\u30fc\u7ba1\u7406 -UpdateCenter.PluginCategory.must-be-labeled=\u672a\u5206\u985e -UpdateCenter.PluginCategory.unrecognized=\u305d\u306e\u4ed6 ({0}) - -Permalink.LastBuild=\u6700\u65b0\u306e\u30d3\u30eb\u30c9 -Permalink.LastStableBuild=\u6700\u65b0\u306e\u5b89\u5b9a\u30d3\u30eb\u30c9 -Permalink.LastUnstableBuild=\u6700\u65b0\u306e\u4e0d\u5b89\u5b9a\u30d3\u30eb\u30c9 -Permalink.LastUnsuccessfulBuild=\u6700\u65b0\u306e\u4e0d\u6210\u529f\u30d3\u30eb\u30c9 -Permalink.LastSuccessfulBuild=\u6700\u65b0\u306e\u6210\u529f\u30d3\u30eb\u30c9 -Permalink.LastFailedBuild=\u6700\u65b0\u306e\u5931\u6557\u30d3\u30eb\u30c9 -Permalink.LastCompletedBuild=\u6700\u65b0\u306e\u5b8c\u4e86\u30d3\u30eb\u30c9 - - -ParameterAction.DisplayName=\u30d1\u30e9\u30e1\u30fc\u30bf -StringParameterDefinition.DisplayName=\u6587\u5b57\u5217 -TextParameterDefinition.DisplayName=\u30c6\u30ad\u30b9\u30c8 -FileParameterDefinition.DisplayName=\u30d5\u30a1\u30a4\u30eb -BooleanParameterDefinition.DisplayName=\u771f\u507d\u5024 -ChoiceParameterDefinition.DisplayName=\u9078\u629e -ChoiceParameterDefinition.MissingChoices=\u9078\u629e\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3001 -RunParameterDefinition.DisplayName=\u30d3\u30eb\u30c9 -PasswordParameterDefinition.DisplayName=\u30d1\u30b9\u30ef\u30fc\u30c9 - -Node.LackingBuildPermission={0} \u306f\u3001{1} \u4e0a\u3067\u8d77\u52d5\u3059\u308b\u6a29\u9650\u304c\u3042\u308a\u307e\u305b\u3093\u3002 -Node.Mode.NORMAL=\u3053\u306e\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u3092\u3067\u304d\u308b\u3060\u3051\u5229\u7528\u3059\u308b -Node.Mode.EXCLUSIVE=\u3053\u306e\u30de\u30b7\u30fc\u30f3\u3092\u7279\u5b9a\u30b8\u30e7\u30d6\u5c02\u7528\u306b\u3059\u308b - -ListView.DisplayName=\u30ea\u30b9\u30c8\u30d3\u30e5\u30fc - -MyView.DisplayName=\u30de\u30a4\u30d3\u30e5\u30fc - -LoadStatistics.Legends.TotalExecutors=\u30a8\u30b0\u30bc\u30ad\u30e5\u30fc\u30bf\u30fc\u7dcf\u6570 -LoadStatistics.Legends.BusyExecutors=\u30d3\u30b8\u30fc\u30a8\u30b0\u30bc\u30ad\u30e5\u30fc\u30bf\u30fc\u6570 -LoadStatistics.Legends.QueueLength=\u30d3\u30eb\u30c9\u30ad\u30e5\u30fc\u9577 - -Cause.LegacyCodeCause.ShortDescription=\u975e\u63a8\u5968\u306e\u30b3\u30fc\u30c9\u304c\u5b9f\u884c(\u8d77\u52d5\u5951\u6a5f\u306b\u95a2\u3059\u308b\u60c5\u5831\u304c\u3042\u308a\u307e\u305b\u3093) -Cause.UpstreamCause.ShortDescription=\u4e0a\u6d41\u30d7\u30ed\u30b8\u30a7\u30af\u30c8"{0}"\u306e#{1}\u304c\u5b9f\u884c\u3000 -Cause.UpstreamCause.CausedBy=\u5143\u306e\u539f\u56e0: -Cause.UserCause.ShortDescription=\u30e6\u30fc\u30b6\u30fc{0}\u304c\u5b9f\u884c -Cause.UserIdCause.ShortDescription=\u30e6\u30fc\u30b6\u30fc{0}\u304c\u5b9f\u884c -Cause.RemoteCause.ShortDescription=\u30ea\u30e2\u30fc\u30c8\u30db\u30b9\u30c8{0}\u304c\u5b9f\u884c -Cause.RemoteCause.ShortDescriptionWithNote=\u30ea\u30e2\u30fc\u30c8\u30db\u30b9\u30c8{0}\u304c\u5b9f\u884c({1}) - -ProxyView.NoSuchViewExists="{0}"\u3068\u3044\u3046\u30b0\u30ed\u30fc\u30d0\u30eb\u30d3\u30e5\u30fc\u306f\u3042\u308a\u307e\u305b\u3093\u3002 -ProxyView.DisplayName=\u30b0\u30ed\u30fc\u30d0\u30eb\u30d3\u30e5\u30fc\u306e\u8907\u88fd - -MyViewsProperty.DisplayName=\u30de\u30a4\u30d3\u30e5\u30fc -MyViewsProperty.GlobalAction.DisplayName=\u30de\u30a4\u30d3\u30e5\u30fc -MyViewsProperty.ViewExistsCheck.NotExist="{0}"\u3068\u3044\u3046\u30d3\u30e5\u30fc\u306f\u3042\u308a\u307e\u305b\u3093\u3002 -MyViewsProperty.ViewExistsCheck.AlreadyExists="{0}"\u3068\u3044\u3046\u30d3\u30e5\u30fc\u306f\u65e2\u306b\u5b58\u5728\u3057\u307e\u3059\u3002 - -CLI.restart.shortDescription=Jenkins\u3092\u518d\u8d77\u52d5\u3057\u307e\u3059\u3002 -CLI.safe-restart.shortDescription=Jenkins\u3092\u5b89\u5168\u306b\u518d\u8d77\u52d5\u3057\u307e\u3059\u3002 -CLI.keep-build.shortDescription=\u30d3\u30eb\u30c9\u3092\u4fdd\u5b58\u3059\u308b\u3088\u3046\u306b\u30de\u30fc\u30af\u3057\u307e\u3059\u3002 -CLI.reload-configuration.shortDescription=\u30e1\u30e2\u30ea\u306b\u3042\u308b\u3059\u3079\u3066\u306e\u30c7\u30fc\u30bf\u3092\u7834\u68c4\u3057\u3066\u3001\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u518d\u30ed\u30fc\u30c9\u3057\u307e\u3059\u3002\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u76f4\u63a5\u4fee\u6b63\u3057\u305f\u5834\u5408\u306b\u5f79\u306b\u7acb\u3061\u307e\u3059\u3002 -CLI.clear-queue.shortDescription=\u30d3\u30eb\u30c9\u30ad\u30e5\u30fc\u3092\u30af\u30ea\u30a2\u3057\u307e\u3059\u3002 -CLI.online-node.shortDescription=\u76f4\u524d\u306b\u5b9f\u884c\u3057\u305f"online-node"\u30b3\u30de\u30f3\u30c9\u3092\u53d6\u308a\u6d88\u3057\u3001\u30d3\u30eb\u30c9\u3092\u5b9f\u884c\u3059\u308b\u30ce\u30fc\u30c9\u306e\u4f7f\u7528\u3092\u518d\u958b\u3057\u307e\u3059\u3002 - -BuildAuthorizationToken.InvalidTokenProvided=\u8a8d\u8a3c\u30c8\u30fc\u30af\u30f3\u304c\u9593\u9055\u3063\u3066\u3044\u307e\u3059\u3002 -ManageJenkinsAction.DisplayName=Jenkins\u306e\u7ba1\u7406 - -Jenkins.CheckDisplayName.NameNotUniqueWarning=\u8868\u793a\u7528\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u540d "{0}" \u306f\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u540d\u3068\u3057\u3066\u65e2\u306b\u4f7f\u7528\u3055\u308c\u3066\u3044\u308b\u305f\u3081\u3001\u691c\u7d22\u7d50\u679c\u3067\u533a\u5225\u3067\u304d\u306a\u3044\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u3002 -Jenkins.CheckDisplayName.DisplayNameNotUniqueWarning=\u8868\u793a\u7528\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u540d "{0}" \u306f\u4ed6\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3067\u4f7f\u7528\u3055\u308c\u3066\u3044\u308b\u305f\u3081\u3001 \u533a\u5225\u3067\u304d\u306a\u3044\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u3002 - -Jenkins.NotAllowedName="{0}" \u306f\u8a31\u53ef\u3055\u308c\u306a\u3044\u540d\u524d\u3067\u3059\u3002 -ParametersDefinitionProperty.DisplayName=\u30d3\u30eb\u30c9\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u5316 - -TimeZoneProperty.DisplayName=\u30e6\u30fc\u30b6\u30fc\u8a2d\u5b9a\u30bf\u30a4\u30e0\u30be\u30fc\u30f3 -TimeZoneProperty.DisplayDefaultTimeZone=\u30c7\u30d5\u30a9\u30eb\u30c8 -TimeZoneProperty.current_time_in_=\u73fe\u5728\u306e\u8a2d\u5b9a {0}: {1} -TimeZoneProperty.current_time_on_server_in_in_proposed_di=\u73fe\u5728\u306e\u30b5\u30fc\u30d0\u30fc\u6642\u523b {0}: {1}; \u8868\u793a\u3059\u308b\u30be\u30fc\u30f3: {2} +UpdateCenter.PluginCategory.misc=ãã®ä»– +UpdateCenter.PluginCategory.notifier=ビルド通知 +UpdateCenter.PluginCategory.page-decorator=ページデコレーター +UpdateCenter.PluginCategory.post-build=ビルド後ã®ã‚¢ã‚¯ã‚·ãƒ§ãƒ³ +UpdateCenter.PluginCategory.report=ビルドレãƒãƒ¼ãƒˆ +UpdateCenter.PluginCategory.scm=ソース管ç†ã‚·ã‚¹ãƒ†ãƒ  +UpdateCenter.PluginCategory.scm-related=ソース管ç†ã‚·ã‚¹ãƒ†ãƒ é–¢é€£ +UpdateCenter.PluginCategory.trigger=ビルドトリガ +UpdateCenter.PluginCategory.ui=ユーザーインタフェース +UpdateCenter.PluginCategory.upload=æˆæžœç‰©ã®ã‚¢ãƒƒãƒ—ロード +UpdateCenter.PluginCategory.user=èªè¨¼/ãƒ¦ãƒ¼ã‚¶ãƒ¼ç®¡ç† +UpdateCenter.PluginCategory.must-be-labeled=未分類 +UpdateCenter.PluginCategory.unrecognized=ãã®ä»– ({0}) + +Permalink.LastBuild=最新ã®ãƒ“ルド +Permalink.LastStableBuild=最新ã®å®‰å®šãƒ“ルド +Permalink.LastUnstableBuild=最新ã®ä¸å®‰å®šãƒ“ルド +Permalink.LastUnsuccessfulBuild=最新ã®ä¸æˆåŠŸãƒ“ルド +Permalink.LastSuccessfulBuild=最新ã®æˆåŠŸãƒ“ルド +Permalink.LastFailedBuild=最新ã®å¤±æ•—ビルド +Permalink.LastCompletedBuild=最新ã®å®Œäº†ãƒ“ルド + + +ParameterAction.DisplayName=パラメータ +StringParameterDefinition.DisplayName=文字列 +TextParameterDefinition.DisplayName=テキスト +FileParameterDefinition.DisplayName=ファイル +BooleanParameterDefinition.DisplayName=真å½å€¤ +ChoiceParameterDefinition.DisplayName=é¸æŠž +ChoiceParameterDefinition.MissingChoices=é¸æŠžã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€ +RunParameterDefinition.DisplayName=ビルド +PasswordParameterDefinition.DisplayName=パスワード + +Node.LackingBuildPermission={0} ã¯ã€{1} 上ã§èµ·å‹•ã™ã‚‹æ¨©é™ãŒã‚ã‚Šã¾ã›ã‚“。 +Node.Mode.NORMAL=ã“ã®ã‚¨ãƒ¼ã‚¸ã‚§ãƒ³ãƒˆã‚’ã§ãã‚‹ã ã‘利用ã™ã‚‹ +Node.Mode.EXCLUSIVE=ã“ã®ãƒžã‚·ãƒ¼ãƒ³ã‚’特定ジョブ専用ã«ã™ã‚‹ + +ListView.DisplayName=リストビュー + +MyView.DisplayName=マイビュー + +LoadStatistics.Legends.TotalExecutors=エグゼキューターç·æ•° +LoadStatistics.Legends.BusyExecutors=ビジーエグゼキューター数 +LoadStatistics.Legends.QueueLength=ビルドキュー長 + +Cause.LegacyCodeCause.ShortDescription=éžæŽ¨å¥¨ã®ã‚³ãƒ¼ãƒ‰ãŒå®Ÿè¡Œ(起動契機ã«é–¢ã™ã‚‹æƒ…å ±ãŒã‚ã‚Šã¾ã›ã‚“) +Cause.UpstreamCause.ShortDescription=上æµãƒ—ロジェクト"{0}"ã®#{1}ãŒå®Ÿè¡Œã€€ +Cause.UpstreamCause.CausedBy=å…ƒã®åŽŸå› : +Cause.UserCause.ShortDescription=ユーザー{0}ãŒå®Ÿè¡Œ +Cause.UserIdCause.ShortDescription=ユーザー{0}ãŒå®Ÿè¡Œ +Cause.RemoteCause.ShortDescription=リモートホスト{0}ãŒå®Ÿè¡Œ +Cause.RemoteCause.ShortDescriptionWithNote=リモートホスト{0}ãŒå®Ÿè¡Œ({1}) + +ProxyView.NoSuchViewExists="{0}"ã¨ã„ã†ã‚°ãƒ­ãƒ¼ãƒãƒ«ãƒ“ューã¯ã‚ã‚Šã¾ã›ã‚“。 +ProxyView.DisplayName=グローãƒãƒ«ãƒ“ューã®è¤‡è£½ + +MyViewsProperty.DisplayName=マイビュー +MyViewsProperty.GlobalAction.DisplayName=マイビュー +MyViewsProperty.ViewExistsCheck.NotExist="{0}"ã¨ã„ã†ãƒ“ューã¯ã‚ã‚Šã¾ã›ã‚“。 +MyViewsProperty.ViewExistsCheck.AlreadyExists="{0}"ã¨ã„ã†ãƒ“ューã¯æ—¢ã«å­˜åœ¨ã—ã¾ã™ã€‚ + +CLI.restart.shortDescription=Jenkinsã‚’å†èµ·å‹•ã—ã¾ã™ã€‚ +CLI.safe-restart.shortDescription=Jenkinsを安全ã«å†èµ·å‹•ã—ã¾ã™ã€‚ +CLI.keep-build.shortDescription=ビルドをä¿å­˜ã™ã‚‹ã‚ˆã†ã«ãƒžãƒ¼ã‚¯ã—ã¾ã™ã€‚ +CLI.reload-configuration.shortDescription=メモリã«ã‚ã‚‹ã™ã¹ã¦ã®ãƒ‡ãƒ¼ã‚¿ã‚’破棄ã—ã¦ã€ãƒ•ã‚¡ã‚¤ãƒ«ã‹ã‚‰å†ãƒ­ãƒ¼ãƒ‰ã—ã¾ã™ã€‚設定ファイルを直接修正ã—ãŸå ´åˆã«å½¹ã«ç«‹ã¡ã¾ã™ã€‚ +CLI.clear-queue.shortDescription=ビルドキューをクリアã—ã¾ã™ã€‚ +CLI.online-node.shortDescription=ç›´å‰ã«å®Ÿè¡Œã—ãŸ"online-node"コマンドをå–り消ã—ã€ãƒ“ルドを実行ã™ã‚‹ãƒŽãƒ¼ãƒ‰ã®ä½¿ç”¨ã‚’å†é–‹ã—ã¾ã™ã€‚ + +BuildAuthorizationToken.InvalidTokenProvided=èªè¨¼ãƒˆãƒ¼ã‚¯ãƒ³ãŒé–“é•ã£ã¦ã„ã¾ã™ã€‚ +ManageJenkinsAction.DisplayName=Jenkinsã®ç®¡ç† + +Jenkins.CheckDisplayName.NameNotUniqueWarning=表示用プロジェクトå "{0}" ã¯ãƒ—ロジェクトåã¨ã—ã¦æ—¢ã«ä½¿ç”¨ã•ã‚Œã¦ã„ã‚‹ãŸã‚ã€æ¤œç´¢çµæžœã§åŒºåˆ¥ã§ããªã„ã“ã¨ãŒã‚ã‚Šã¾ã™ã€‚ +Jenkins.CheckDisplayName.DisplayNameNotUniqueWarning=表示用プロジェクトå "{0}" ã¯ä»–ã®ãƒ—ロジェクトã§ä½¿ç”¨ã•ã‚Œã¦ã„ã‚‹ãŸã‚〠区別ã§ããªã„ã“ã¨ãŒã‚ã‚Šã¾ã™ã€‚ + +Jenkins.NotAllowedName="{0}" ã¯è¨±å¯ã•ã‚Œãªã„åå‰ã§ã™ã€‚ +ParametersDefinitionProperty.DisplayName=ビルドã®ãƒ‘ラメータ化 + +TimeZoneProperty.DisplayName=ユーザー設定タイムゾーン +TimeZoneProperty.DisplayDefaultTimeZone=デフォルト +TimeZoneProperty.current_time_in_=ç¾åœ¨ã®è¨­å®š {0}: {1} +TimeZoneProperty.current_time_on_server_in_in_proposed_di=ç¾åœ¨ã®ã‚µãƒ¼ãƒãƒ¼æ™‚刻 {0}: {1}; 表示ã™ã‚‹ã‚¾ãƒ¼ãƒ³: {2} diff --git a/core/src/main/resources/hudson/model/Messages_ko.properties b/core/src/main/resources/hudson/model/Messages_ko.properties index e1f9500488b3..90b49c67d923 100644 --- a/core/src/main/resources/hudson/model/Messages_ko.properties +++ b/core/src/main/resources/hudson/model/Messages_ko.properties @@ -1,4 +1,4 @@ -ManageJenkinsAction.DisplayName=Jenkins \uAD00\uB9AC -ParametersDefinitionProperty.DisplayName=\uC774 \uBE4C\uB4DC\uB294 \uB9E4\uAC1C\uBCC0\uC218\uAC00 \uC788\uC2B5\uB2C8\uB2E4 +ManageJenkinsAction.DisplayName=Jenkins 관리 +ParametersDefinitionProperty.DisplayName=ì´ ë¹Œë“œëŠ” 매개변수가 있습니다 -FreeStyleProject.Description=\uC774\uAC83\uC740 Jenkins\uC758 \uC8FC\uC694 \uAE30\uB2A5\uC785\uB2C8\uB2E4. Jenkins\uC740 \uC5B4\uB290 \uBE4C\uB4DC \uC2DC\uC2A4\uD15C\uACFC \uC5B4\uB5A4 SCM(\uD615\uC0C1\uAD00\uB9AC)\uC73C\uB85C \uBB36\uC778 \uB2F9\uC2E0\uC758 \uD504\uB85C\uC81D\uD2B8\uB97C \uBE4C\uB4DC\uD560 \uAC83\uC774\uACE0, \uC18C\uD504\uD2B8\uC6E8\uC5B4 \uBE4C\uB4DC\uBCF4\uB2E4 \uB2E4\uB978 \uC5B4\uB5A4 \uAC83\uC5D0 \uC790\uC8FC \uC0AC\uC6A9\uB420 \uC218 \uC788\uC2B5\uB2C8\uB2E4. +FreeStyleProject.Description=ì´ê²ƒì€ Jenkinsì˜ ì£¼ìš” 기능입니다. Jenkinsì€ ì–´ëŠ ë¹Œë“œ 시스템과 ì–´ë–¤ SCM(형ìƒê´€ë¦¬)으로 ë¬¶ì¸ ë‹¹ì‹ ì˜ í”„ë¡œì íŠ¸ë¥¼ 빌드할 것ì´ê³ , 소프트웨어 빌드보다 다른 ì–´ë–¤ ê²ƒì— ìžì£¼ ì‚¬ìš©ë  ìˆ˜ 있습니다. diff --git a/core/src/main/resources/hudson/model/Messages_lt.properties b/core/src/main/resources/hudson/model/Messages_lt.properties index 5d2571900abd..93bcd224d29c 100644 --- a/core/src/main/resources/hudson/model/Messages_lt.properties +++ b/core/src/main/resources/hudson/model/Messages_lt.properties @@ -1,350 +1,350 @@ -AbstractBuild.BuildingRemotely=Nutol\u0119s vykdymas ma\u0161inoje {0} -AbstractBuild.BuildingOnMaster=Vykdoma pagrindin\u0117je ma\u0161inoje +AbstractBuild.BuildingRemotely=NutolÄ™s vykdymas maÅ¡inoje {0} +AbstractBuild.BuildingOnMaster=Vykdoma pagrindinÄ—je maÅ¡inoje AbstractBuild_Building=Vykdomas AbstractBuild.BuildingInWorkspace=\ darbalaukyje {0} -AbstractBuild.KeptBecause=Vykdymas u\u017elaikytas d\u0117l {0}. +AbstractBuild.KeptBecause=Vykdymas užlaikytas dÄ—l {0}. -AbstractItem.NoSuchJobExists=N\u0117ra tokio darbo \u201e{0}\u201c. Gal tur\u0117jote omenyje \u201e{1}\u201c? -AbstractItem.NoSuchJobExistsWithoutSuggestion=N\u0117ra tokio darbo \u201e{0}\u201c. +AbstractItem.NoSuchJobExists=NÄ—ra tokio darbo „{0}“. Gal turÄ—jote omenyje „{1}“? +AbstractItem.NoSuchJobExistsWithoutSuggestion=NÄ—ra tokio darbo „{0}“. AbstractItem.Pronoun=Elementas -AbstractProject.NewBuildForWorkspace=Planuojamas naujas vykdymas, kad b\u016bt\u0173 gautas darbalaukis. -AbstractProject.AwaitingBuildForWorkspace=Laukiama, kol vykdymas gaus darbalauk\u012f. -AbstractProject.AwaitingWorkspaceToComeOnline=Mums reikia suplanuoti nauj\u0105 vykdym\u0105, kad gautume darbalauk\u012f, bet laukiame {0}ms, tik\u0117damiesi, kad kuris nors greitai atsilaisvins +AbstractProject.NewBuildForWorkspace=Planuojamas naujas vykdymas, kad bÅ«tų gautas darbalaukis. +AbstractProject.AwaitingBuildForWorkspace=Laukiama, kol vykdymas gaus darbalaukį. +AbstractProject.AwaitingWorkspaceToComeOnline=Mums reikia suplanuoti naujÄ… vykdymÄ…, kad gautume darbalaukį, bet laukiame {0}ms, tikÄ—damiesi, kad kuris nors greitai atsilaisvins AbstractProject.Pronoun=Projektas AbstractProject.Aborted=Nutrauktas -AbstractProject.UpstreamBuildInProgress=Auk\u0161tesnis projektas {0} jau vykdomas. -AbstractProject.DownstreamBuildInProgress=\u017demesnis projektas {0} jau vykdomas. -AbstractProject.Disabled=Vykdymas i\u0161jungtas -AbstractProject.NoBuilds=N\u0117ra egzistuojan\u010dio vykdymo. Kuriamas naujas. +AbstractProject.UpstreamBuildInProgress=AukÅ¡tesnis projektas {0} jau vykdomas. +AbstractProject.DownstreamBuildInProgress=Žemesnis projektas {0} jau vykdomas. +AbstractProject.Disabled=Vykdymas iÅ¡jungtas +AbstractProject.NoBuilds=NÄ—ra egzistuojanÄio vykdymo. Kuriamas naujas. AbstractProject.NoSCM=Be SCM -AbstractProject.NoWorkspace=N\u0117ra prieinam\u0173 darbalauki\u0173, tai negalima patikrinti atnaujinim\u0173. +AbstractProject.NoWorkspace=NÄ—ra prieinamų darbalaukių, tai negalima patikrinti atnaujinimų. AbstractProject.WorkspaceTitle={0} darbalaukis AbstractProject.WorkspaceTitleOnComputer={0} darbalaukis, esantis {1} AbstractProject.PollingABorted=SCM traukimas nutrauktas -AbstractProject.ScmAborted=SCM i\u0161traukimas nutrauktas +AbstractProject.ScmAborted=SCM iÅ¡traukimas nutrauktas AbstractProject.WorkspaceOffline=Darbalaukis atjungtas. AbstractProject.BuildPermission.Description=\ - \u0160i teis\u0117 leid\u017eia prad\u0117ti nauj\u0105 vykdym\u0105. + Å i teisÄ— leidžia pradÄ—ti naujÄ… vykdymÄ…. AbstractProject.WorkspacePermission.Description=\ - \u0160i teis\u0117 leid\u017eia i\u0161traukti darbalaukio turin\u012f, kur\u012f \ - Jenkinsas i\u0161trauk\u0117 vykdymo metu. Jei nenorite kad naudotojas prieit\u0173 prie \ - darbalaukio fail\u0173 (pvz. prie i\u0161eities kodo paimto i\u0161 SCM arba tarpini\u0173 k\u016brimo \ - rezultat\u0173) per darbalaukio nar\u0161ykl\u0119, atimkite \u0161i\u0105 teis\u0119. + Å i teisÄ— leidžia iÅ¡traukti darbalaukio turinį, kurį \ + Jenkinsas iÅ¡traukÄ— vykdymo metu. Jei nenorite kad naudotojas prieitų prie \ + darbalaukio failų (pvz. prie iÅ¡eities kodo paimto iÅ¡ SCM arba tarpinių kÅ«rimo \ + rezultatų) per darbalaukio narÅ¡yklÄ™, atimkite Å¡iÄ… teisÄ™. AbstractProject.ExtendedReadPermission.Description=\ - \u0160i teis\u0117 leid\u017eia tik-skaitymo pri\u0117jim\u0105 prie projekto konfig\u016bracijos. \u017dinokite, \ - kad jautri vykdymo informacija, tokia kaip slapta\u017eod\u017eiai, bus \ - matoma pla\u010diai auditorijai, jei suteiksite \u0161ias teises. + Å i teisÄ— leidžia tik-skaitymo priÄ—jimÄ… prie projekto konfigÅ«racijos. Žinokite, \ + kad jautri vykdymo informacija, tokia kaip slaptažodžiai, bus \ + matoma plaÄiai auditorijai, jei suteiksite Å¡ias teises. AbstractProject.DiscoverPermission.Description=\ - \u0160i teis\u0117 duoda darb\u0173 tyrimo galimyb\u0119. Ma\u017eiau nei skaitymo teis\u0117, ji leid\u017eia jums \ - persi\u0173sti anoniminius naudotojus \u012f prisijungimo puslap\u012f, kai jie bando jungtis prie darbo url. \ - Be jo, jie tiesiog gaut\u0173 404 klaid\u0105 ir negal\u0117t\u0173 su\u017einoti projekt\u0173 pavadinim\u0173. + Å i teisÄ— duoda darbų tyrimo galimybÄ™. Mažiau nei skaitymo teisÄ—, ji leidžia jums \ + persiųsti anoniminius naudotojus į prisijungimo puslapį, kai jie bando jungtis prie darbo url. \ + Be jo, jie tiesiog gautų 404 klaidÄ… ir negalÄ—tų sužinoti projektų pavadinimų. # WipeOutPermission is only visible in the security configuration if the system property # hudson.security.WipeOutPermission is set to true AbstractProject.WipeOutPermission.Description=\ - \u0160i teis\u0117 leid\u017eia panaikinti darbalaukio turin\u012f. + Å i teisÄ— leidžia panaikinti darbalaukio turinį. AbstractProject.CancelPermission.Description=\ - \u0160i teis\u0117 leid\u017eia panaikinti suplanuot\u0105 arba nutraukti vykdom\u0105 darb\u0105. -AbstractProject.CustomWorkspaceEmpty=Savas darbalaukis tu\u0161\u010dias. + Å i teisÄ— leidžia panaikinti suplanuotÄ… arba nutraukti vykdomÄ… darbÄ…. +AbstractProject.CustomWorkspaceEmpty=Savas darbalaukis tuÅ¡Äias. Api.MultipleMatch=XPath "{0}" atitiko {1} mazgus. \ - Sukurkite XPath, kuris atitinka tik vien\u0105 mazg\u0105 arba naudokite \u201eapgaubiant\u012f\u201c u\u017eklausos parametr\u0105, kuris visus juos apgaubt\u0173 po \u0161akniniu elementu. + Sukurkite XPath, kuris atitinka tik vienÄ… mazgÄ… arba naudokite „apgaubiantį“ užklausos parametrÄ…, kuris visus juos apgaubtų po Å¡akniniu elementu. Api.NoXPathMatch=XPath {0} neatitiko BallColor.Aborted=Nutrauktas -BallColor.Disabled=I\u0161jungtas +BallColor.Disabled=IÅ¡jungtas BallColor.Failed=Nepavyko BallColor.InProgress=Vykdomas BallColor.NotBuilt=Nekurtas BallColor.Pending=Laukia -BallColor.Success=S\u0117km\u0117 +BallColor.Success=SÄ—kmÄ— BallColor.Unstable=Nestabilus -Build.post_build_steps_failed=\u017dingsniai po k\u016brimo nepavyko -CLI.clear-queue.shortDescription=I\u0161valo vykdymo eil\u0119. +Build.post_build_steps_failed=Žingsniai po kÅ«rimo nepavyko +CLI.clear-queue.shortDescription=IÅ¡valo vykdymo eilÄ™. CLI.disconnect-node.shortDescription=Atsijungia nuo mazgo. Computer.Caption=Agentas {0} -Computer.NoSuchSlaveExists=N\u0117ra tokio agento \u201e{0}\u201c. Ar tur\u0117jote omeny \u201e{1}\u201c? +Computer.NoSuchSlaveExists=NÄ—ra tokio agento „{0}“. Ar turÄ—jote omeny „{1}“? Computer.Permissions.Title=Agentas -Computer.ExtendedReadPermission.Description=\u0160i teis\u0117 leid\u017eia naudotojams skaityti agento konfig\u016bracij\u0105. -Computer.ConfigurePermission.Description=\u0160i teis\u0117 leid\u017eia naudotojams konfig\u016bruoti agentus. -Computer.DeletePermission.Description=\u0160i teis\u0117 leid\u017eia naudotojams trinti esamus agentus. -Computer.CreatePermission.Description=\u0160i teis\u0117 leid\u017eia naudotojams kurti agentus. -Computer.ConnectPermission.Description=\u0160i teis\u0117 leid\u017eia naudotojams prijungti agentus arba pa\u017eym\u0117ti juos prisijungusiais. -Computer.DisconnectPermission.Description=\u0160i teis\u0117 leid\u017eia naudotojams atjungti agentus arba pa\u017eym\u0117ti juos atsijungusiais. -Computer.BuildPermission.Description=\u0160i teis\u0117 leid\u017eia naudotojams paleisti darbus agentuose savo vardu. -Computer.BadChannel=Agento mazgas atsijuntg\u0119s arba n\u0117ra nutol\u0119s kanalas (pvz. valdantis mazgas). - -ComputerSet.NoSuchSlave=N\u0117ra tokio agento: {0} -ComputerSet.SlaveAlreadyExists=Agentas pavadintas \u201e{0}\u201c jau yra -ComputerSet.SpecifySlaveToCopy=Nurodykite, kur\u012f agent\u0105 kopijuoti +Computer.ExtendedReadPermission.Description=Å i teisÄ— leidžia naudotojams skaityti agento konfigÅ«racijÄ…. +Computer.ConfigurePermission.Description=Å i teisÄ— leidžia naudotojams konfigÅ«ruoti agentus. +Computer.DeletePermission.Description=Å i teisÄ— leidžia naudotojams trinti esamus agentus. +Computer.CreatePermission.Description=Å i teisÄ— leidžia naudotojams kurti agentus. +Computer.ConnectPermission.Description=Å i teisÄ— leidžia naudotojams prijungti agentus arba pažymÄ—ti juos prisijungusiais. +Computer.DisconnectPermission.Description=Å i teisÄ— leidžia naudotojams atjungti agentus arba pažymÄ—ti juos atsijungusiais. +Computer.BuildPermission.Description=Å i teisÄ— leidžia naudotojams paleisti darbus agentuose savo vardu. +Computer.BadChannel=Agento mazgas atsijuntgÄ™s arba nÄ—ra nutolÄ™s kanalas (pvz. valdantis mazgas). + +ComputerSet.NoSuchSlave=NÄ—ra tokio agento: {0} +ComputerSet.SlaveAlreadyExists=Agentas pavadintas „{0}“ jau yra +ComputerSet.SpecifySlaveToCopy=Nurodykite, kurį agentÄ… kopijuoti ComputerSet.DisplayName=Mazgai -Descriptor.From=(i\u0161 {0}) +Descriptor.From=(iÅ¡ {0}) -Executor.NotAvailable=N\u0117ra +Executor.NotAvailable=NÄ—ra FreeStyleProject.DisplayName=Laisvo stiliaus projektas FreeStyleProject.Description=\ - Pagrindin\u0117 Jenkinso funkcija. Jenkinsas sukurs j\u016bs\u0173 projekt\u0105, kombinuojant bet koki\u0105 SCM su bet kokia k\u016brimo sistema, \ - ir visa tai galima naudoti neb\u016btinai program\u0173 k\u016brimui. + PagrindinÄ— Jenkinso funkcija. Jenkinsas sukurs jÅ«sų projektÄ…, kombinuojant bet kokiÄ… SCM su bet kokia kÅ«rimo sistema, \ + ir visa tai galima naudoti nebÅ«tinai programų kÅ«rimui. HealthReport.EmptyString= Hudson.BadPortNumber=Blogas prievado numeris {0} -Hudson.Computer.Caption=\u0160eimininkas -Hudson.Computer.DisplayName=\u0161eimininkas -Hudson.ControlCodeNotAllowed=Kontrolinis kodas neleid\u017eiamas: {0} +Hudson.Computer.Caption=Å eimininkas +Hudson.Computer.DisplayName=Å¡eimininkas +Hudson.ControlCodeNotAllowed=Kontrolinis kodas neleidžiamas: {0} Hudson.DisplayName=Jenkins -Hudson.JobAlreadyExists=Jau yra darbas pavadintas \u201e{0}\u201c -Hudson.NoJavaInPath=java nerasta j\u016bs\u0173 PATH. Gal jums reikia sukonfig\u016bruoti JDKs? +Hudson.JobAlreadyExists=Jau yra darbas pavadintas „{0}“ +Hudson.NoJavaInPath=java nerasta jÅ«sų PATH. Gal jums reikia sukonfigÅ«ruoti JDKs? Hudson.NoName=Nenurodytas pavadinimas -Hudson.NoSuchDirectory=N\u0117ra tokio aplanko: {0} -Hudson.NodeBeingRemoved=Mazgas yra \u0161alinamas -Hudson.NotAPlugin={0} n\u0117ra Jenkinso priedas -Hudson.NotJDKDir={0} nepana\u0161us \u012f JDK aplank\u0105 +Hudson.NoSuchDirectory=NÄ—ra tokio aplanko: {0} +Hudson.NodeBeingRemoved=Mazgas yra Å¡alinamas +Hudson.NotAPlugin={0} nÄ—ra Jenkinso priedas +Hudson.NotJDKDir={0} nepanaÅ¡us į JDK aplankÄ… Hudson.Permissions.Title=Bendras -Hudson.USER_CONTENT_README=\u0160io aplanko failas bus pasiekiami nuoroda http://server/jenkins/userContent/ -Hudson.UnsafeChar=\u201e{0}\u201c yra nesaugus simbolis -Hudson.ViewAlreadyExists=Jau yra rodinys pavadinimu \u201e{0}\u201c +Hudson.USER_CONTENT_README=Å io aplanko failas bus pasiekiami nuoroda http://server/jenkins/userContent/ +Hudson.UnsafeChar=„{0}“ yra nesaugus simbolis +Hudson.ViewAlreadyExists=Jau yra rodinys pavadinimu „{0}“ Hudson.ViewName=Visi -Hudson.NotANumber=Ne skai\u010dius -Hudson.NotAPositiveNumber=Ne teigiamas skai\u010dius -Hudson.NotANonNegativeNumber=Skai\u010dius negali b\u016bti neigiamas -Hudson.NotANegativeNumber=Ne neigiamas skai\u010dius +Hudson.NotANumber=Ne skaiÄius +Hudson.NotAPositiveNumber=Ne teigiamas skaiÄius +Hudson.NotANonNegativeNumber=SkaiÄius negali bÅ«ti neigiamas +Hudson.NotANegativeNumber=Ne neigiamas skaiÄius Hudson.NotUsesUTF8ToDecodeURL=\ - J\u016bs\u0173 konteineris nenaudoja UTF-8 nuorod\u0173 dekodavimui. Jei j\u016bs naudojate ne-ASCII simbolius darb\u0173 pavadinimams ir pan., \ - tai sukels problem\u0173. \ + JÅ«sų konteineris nenaudoja UTF-8 nuorodų dekodavimui. Jei jÅ«s naudojate ne-ASCII simbolius darbų pavadinimams ir pan., \ + tai sukels problemų. \ Daugiau informacijos apie Konteinerius ir \ Tomcat i18n. Hudson.AdministerPermission.Description=\ - \u0160i teis\u0117 duoda galimyb\u0119 daryti sistemos lygio konfig\u016bracijos pakeitimus, \ - taip pat vykdyti labai jautrius veiksmus, \u012fskaitant piln\u0105 prieig\u0105 prie sistemos \ - (tiek, kiek leid\u017eia operacin\u0117 sistema.) + Å i teisÄ— duoda galimybÄ™ daryti sistemos lygio konfigÅ«racijos pakeitimus, \ + taip pat vykdyti labai jautrius veiksmus, įskaitant pilnÄ… prieigÄ… prie sistemos \ + (tiek, kiek leidžia operacinÄ— sistema.) Hudson.ReadPermission.Description=\ - Skaitymo teis\u0117s yra b\u016btinos, norint \u017ei\u016br\u0117ti daugum\u0105 Jenkinso puslapi\u0173. \ - \u0160ios teis\u0117s naudingos, jei j\u016bs nenorite, kad neautentikuoti naudotojai matyt\u0173 \ - Jenkinso puslapius: atimkite \u0161ias teises i\u0161 anoniminio naudotojo, tada \ - prid\u0117kite pseaudo-naudotoj\u0105 \u201eauthenticated\u201c ir duokite jam skaitymo teises. + Skaitymo teisÄ—s yra bÅ«tinos, norint žiÅ«rÄ—ti daugumÄ… Jenkinso puslapių. \ + Å ios teisÄ—s naudingos, jei jÅ«s nenorite, kad neautentikuoti naudotojai matytų \ + Jenkinso puslapius: atimkite Å¡ias teises iÅ¡ anoniminio naudotojo, tada \ + pridÄ—kite pseaudo-naudotojÄ… „authenticated“ ir duokite jam skaitymo teises. Hudson.NodeDescription=Pagrindinis Jenkinso mazgas Item.Permissions.Title=Darbas -Item.CREATE.description=Kurti nauj\u0105 darb\u0105. -Item.DELETE.description=Trinti darb\u0105. -Item.CONFIGURE.description=Keisti darbo konfig\u016bracij\u0105. -Item.READ.description=Pa\u017ei\u016br\u0117ti darb\u0105. (Galite u\u017edrausti \u0161i\u0105 teis\u0119 bet leisti Tyrin\u0117jim\u0105, kad priverstum\u0117te anonimin\u012f naudotoj\u0105 prisijungti.) +Item.CREATE.description=Kurti naujÄ… darbÄ…. +Item.DELETE.description=Trinti darbÄ…. +Item.CONFIGURE.description=Keisti darbo konfigÅ«racijÄ…. +Item.READ.description=PažiÅ«rÄ—ti darbÄ…. (Galite uždrausti Å¡iÄ… teisÄ™ bet leisti TyrinÄ—jimÄ…, kad priverstumÄ—te anoniminį naudotojÄ… prisijungti.) Job.AllRecentBuildFailed=Visi paskutiniai vykdymai nepavyko. Job.BuildStability=Vykdymo stabilumas: {0} -Job.NOfMFailed={0} i\u0161 paskutini\u0173 {1} vykdym\u0173 nepavyko. +Job.NOfMFailed={0} iÅ¡ paskutinių {1} vykdymų nepavyko. Job.NoRecentBuildFailed=Pavyko visi paskutiniai vykdymai. Job.Pronoun=Projektas -Job.minutes=minut\u0117s +Job.minutes=minutÄ—s -Job.you_must_use_the_save_button_if_you_wish=J\u016bs privalote naudoti Save mygtuk\u0105, jei norite pervadinti darb\u0105. -Label.GroupOf=grup\u0117 i\u0161 {0} -Label.InvalidLabel=netinkama etiket\u0117 -Label.ProvisionedFrom=Apr\u016bpinta i\u0161 {0} +Job.you_must_use_the_save_button_if_you_wish=JÅ«s privalote naudoti Save mygtukÄ…, jei norite pervadinti darbÄ…. +Label.GroupOf=grupÄ— iÅ¡ {0} +Label.InvalidLabel=netinkama etiketÄ— +Label.ProvisionedFrom=AprÅ«pinta iÅ¡ {0} LabelExpression.InvalidBooleanExpression=\ - Netinkama login\u0117 i\u0161rai\u0161ka: {0} -LabelExpression.LabelLink=Etiket\u0119 {1} aptarnauja {3,choice,0#no nodes|1#1 node|1<{3} nodes}{4,choice,0#|1# and 1 cloud|1< and {4} clouds} + Netinkama loginÄ— iÅ¡raiÅ¡ka: {0} +LabelExpression.LabelLink=EtiketÄ™ {1} aptarnauja {3,choice,0#no nodes|1#1 node|1<{3} nodes}{4,choice,0#|1# and 1 cloud|1< and {4} clouds} LabelExpression.NoMatch=\ - N\u0117ra \u0161io priskyrimo atitinkan\u010dio agento/debesies -LabelExpression.NoMatch_DidYouMean=N\u0117ra agento/debesies, atitinkan\u010dio \u0161\u012f argument\u0105. Ar tur\u0117jote omenyje \u201e{1}\u201c, o ne \u201e{0}\u201c? -ManageJenkinsAction.DisplayName=Tvarkyti Jenkins\u0105 + NÄ—ra Å¡io priskyrimo atitinkanÄio agento/debesies +LabelExpression.NoMatch_DidYouMean=NÄ—ra agento/debesies, atitinkanÄio šį argumentÄ…. Ar turÄ—jote omenyje „{1}“, o ne „{0}“? +ManageJenkinsAction.DisplayName=Tvarkyti JenkinsÄ… MultiStageTimeSeries.EMPTY_STRING= -Queue.AllNodesOffline=Visi etiket\u0117s \u201e{0}\u201c mazgai yra atsijung\u0119 -Queue.LabelHasNoNodes=N\u0117ra mazg\u0173 su etikete \u201e{0}\u201c +Queue.AllNodesOffline=Visi etiketÄ—s „{0}“ mazgai yra atsijungÄ™ +Queue.LabelHasNoNodes=NÄ—ra mazgų su etikete „{0}“ Queue.BlockedBy=Blokuotojas: {0} -Queue.HudsonIsAboutToShutDown=Jenkinsas ruo\u0161iasi i\u0161sijungti +Queue.HudsonIsAboutToShutDown=Jenkinsas ruoÅ¡iasi iÅ¡sijungti Queue.InProgress=Jau vyksta vykdymas Queue.InQuietPeriod=Tyliame periode. Baigsis po {0} -Queue.NodeOffline={0} yra atsijung\u0119s +Queue.NodeOffline={0} yra atsijungÄ™s Queue.Unknown=??? Queue.WaitingForNextAvailableExecutor=Laukiama kito prieinamo vykdytojo -Queue.WaitingForNextAvailableExecutorOn=Laukiama kito prieinamo vykdytojo, esan\u010dio {0} -Queue.init=Atstatoma vykdymo eil\u0117 +Queue.WaitingForNextAvailableExecutorOn=Laukiama kito prieinamo vykdytojo, esanÄio {0} +Queue.init=Atstatoma vykdymo eilÄ— ResultTrend.Aborted=Nutraukta -ResultTrend.Failure=Nes\u0117km\u0117 +ResultTrend.Failure=NesÄ—kmÄ— ResultTrend.Fixed=Pataisyta ResultTrend.NotBuilt=Nevykdyta ResultTrend.NowUnstable=Dabar nestabilus ResultTrend.StillFailing=Vis dar nepavyksta ResultTrend.StillUnstable=Vis dar nestabilus -ResultTrend.Success=S\u0117km\u0117 +ResultTrend.Success=SÄ—kmÄ— ResultTrend.Unstable=Nestabilus -Run._is_waiting_for_a_checkpoint_on_={0} laukia tikrinimom ta\u0161ko {1} +Run._is_waiting_for_a_checkpoint_on_={0} laukia tikrinimom taÅ¡ko {1} Run.BuildAborted=Vykdymas buvo nutrauktas -Run.MarkedExplicitly=\u0160is \u012fra\u0161as buvo konkre\u010diai pa\u017eym\u0117tas i\u0161saugojimui. +Run.MarkedExplicitly=Å is įraÅ¡as buvo konkreÄiai pažymÄ—tas iÅ¡saugojimui. Run.Permissions.Title=Vykdyti Run.running_as_=Vykdomas kaip {0} -Run.UnableToDelete=Nepavyksta i\u0161trinti {0}: {1} +Run.UnableToDelete=Nepavyksta iÅ¡trinti {0}: {1} Run.DeletePermission.Description=\ - \u0160i teis\u0117 leid\u017eia naudotojams rankiniu b\u016bdu i\u0161trinti konkre\u010dius vykdymus i\u0161 vykdym\u0173 istorijos. + Å i teisÄ— leidžia naudotojams rankiniu bÅ«du iÅ¡trinti konkreÄius vykdymus iÅ¡ vykdymų istorijos. Run.UpdatePermission.Description=\ - \u0160i teis\u0117 leid\u017eia naudotojams atnaujinti vykdymo apra\u0161ym\u0105 ir kitas savybes, \ - pavyzd\u017eiui palikti pastabas apie nes\u0117km\u0117s prie\u017eastis. + Å i teisÄ— leidžia naudotojams atnaujinti vykdymo apraÅ¡ymÄ… ir kitas savybes, \ + pavyzdžiui palikti pastabas apie nesÄ—kmÄ—s priežastis. Run.ArtifactsPermission.Description=\ - \u0160i teis\u0117 duoda galimyb\u0119 i\u0161traukti rezultatus, sukurtus vykdymo metu. \ - Jei nenorite, kad naudotojas prieit\u0173 prie rezultat\u0173, galite t\u0105 padaryti \ - at\u0161aukdami \u0161i\u0105 teis\u0119. + Å i teisÄ— duoda galimybÄ™ iÅ¡traukti rezultatus, sukurtus vykdymo metu. \ + Jei nenorite, kad naudotojas prieitų prie rezultatų, galite tÄ… padaryti \ + atÅ¡aukdami Å¡iÄ… teisÄ™. Run.InProgressDuration={0} ir vis dar vyksta -Run.NotStartedYet=Dar neprad\u0117tas -Run.ArtifactsBrowserTitle=Rezultatai i\u0161 {0} {1} +Run.NotStartedYet=Dar nepradÄ—tas +Run.ArtifactsBrowserTitle=Rezultatai iÅ¡ {0} {1} Run.Summary.Stable=stabilus Run.Summary.Unstable=nestabilus Run.Summary.Aborted=nutrauktas Run.Summary.NotBuilt=nevykdytas -Run.Summary.BackToNormal=v\u0117l normalu -Run.Summary.BrokenForALongTime=sul\u016b\u017e\u0119s jau ilg\u0105 laik\u0105 -Run.Summary.BrokenSinceThisBuild=sul\u016b\u017e\u0119s nuo \u0161io vykdymo -Run.Summary.BrokenSince=sul\u016b\u017e\u0119s nuo vykdymo {0} +Run.Summary.BackToNormal=vÄ—l normalu +Run.Summary.BrokenForALongTime=sulūžęs jau ilgÄ… laikÄ… +Run.Summary.BrokenSinceThisBuild=sulūžęs nuo Å¡io vykdymo +Run.Summary.BrokenSince=sulūžęs nuo vykdymo {0} Run.Summary.Unknown=? -Slave.InvalidConfig.Executors=Netinkama agento {0} konfig\u016bracija. Netinkamas vykdytoj\u0173 skai\u010dius. -Slave.InvalidConfig.NoName=Netinkama agento konfig\u016bracija. Tu\u0161\u010dias pavadinimas -Slave.Network.Mounted.File.System.Warning=Ar tikrai norite naudoti per tinkl\u0105 prijungt\u0105 fail\u0173 sistem\u0105 kaip FS \u0161ank\u012f? Pasteb\u0117tina, kad \u0161is aplankas neb\u016btinai turi b\u016bti matomas pagrindiniam mazgui. -Slave.Remote.Director.Mandatory=Nutol\u0119s aplankas yra privalomas +Slave.InvalidConfig.Executors=Netinkama agento {0} konfigÅ«racija. Netinkamas vykdytojų skaiÄius. +Slave.InvalidConfig.NoName=Netinkama agento konfigÅ«racija. TuÅ¡Äias pavadinimas +Slave.Network.Mounted.File.System.Warning=Ar tikrai norite naudoti per tinklÄ… prijungtÄ… failų sistemÄ… kaip FS Å¡ankį? PastebÄ—tina, kad Å¡is aplankas nebÅ«tinai turi bÅ«ti matomas pagrindiniam mazgui. +Slave.Remote.Director.Mandatory=NutolÄ™s aplankas yra privalomas Slave.Terminated={0} agentas buvo nutrauktas -Slave.Remote.Relative.Path.Warning=Ar tikrai norite naudoti santykin\u012f keli\u0105, kaip FS \u0161akn\u012f? Pasteb\u0117tina, kad santykiniams \ - keliams reikia, kad j\u016bs u\u017etikrintum\u0117te, kad parinktas paleid\u0117jas u\u017etikrina pastov\u0173 einam\u0105j\u012f darbin\u012f aplank\u0105. Primygtinai \ - rekomenduojame naudoti absoliut\u0173 keli\u0105. +Slave.Remote.Relative.Path.Warning=Ar tikrai norite naudoti santykinį keliÄ…, kaip FS Å¡aknį? PastebÄ—tina, kad santykiniams \ + keliams reikia, kad jÅ«s užtikrintumÄ—te, kad parinktas paleidÄ—jas užtikrina pastovų einamÄ…jį darbinį aplankÄ…. Primygtinai \ + rekomenduojame naudoti absoliutų keliÄ…. Slave.UnixSlave=Tai Unix agentas Slave.WindowsSlave=Tai Windows agentas -TopLevelItemDescriptor.NotApplicableIn={0} elementas nepritaikomi {1} r\u0117muose +TopLevelItemDescriptor.NotApplicableIn={0} elementas nepritaikomi {1} rÄ—muose -UpdateCenter.DownloadButNotActivated=S\u0117kmingai atsi\u0173stas. Bus aktyvuotas per kit\u0105 paleidim\u0105 -UpdateCenter.n_a=N\u0117ra +UpdateCenter.DownloadButNotActivated=SÄ—kmingai atsiųstas. Bus aktyvuotas per kitÄ… paleidimÄ… +UpdateCenter.n_a=NÄ—ra View.Permissions.Title=Rodinys View.CreatePermission.Description=\ - \u0160i teis\u0117 leid\u017eia naudotojams kurti rodinius. + Å i teisÄ— leidžia naudotojams kurti rodinius. View.DeletePermission.Description=\ - \u0160i teis\u0117 leid\u017eia naudotojams trinti esamus rodinius. + Å i teisÄ— leidžia naudotojams trinti esamus rodinius. View.ConfigurePermission.Description=\ - \u0160i teis\u0117 leid\u017eia naudotojams keisti rodini\u0173 konfig\u016bracij\u0105. + Å i teisÄ— leidžia naudotojams keisti rodinių konfigÅ«racijÄ…. View.ReadPermission.Description=\ - \u0160i teis\u0117 leid\u017eia naudotojams \u017ei\u016br\u0117ti rodinius (rei\u0161kia bendr\u0105 skaitymo prieig\u0105). + Å i teisÄ— leidžia naudotojams žiÅ«rÄ—ti rodinius (reiÅ¡kia bendrÄ… skaitymo prieigÄ…). View.MissingMode=Nenurodytas rodinio tipas UpdateCenter.Status.CheckingInternet=Tikrinamas prisijungimas prie interneto -UpdateCenter.Status.CheckingJavaNet=Tikrinamas prisijungimas prie atnaujinim\u0173 centro -UpdateCenter.Status.Success=S\u0117km\u0117 +UpdateCenter.Status.CheckingJavaNet=Tikrinamas prisijungimas prie atnaujinimų centro +UpdateCenter.Status.Success=SÄ—kmÄ— UpdateCenter.Status.UnknownHostException=\ - Nepavyko i\u0161spr\u0119sti stoties pavadinimo {0}. \ - Gal jums reikia sukonfig\u016bruoti HTTP \u0161liuz\u0105? + Nepavyko iÅ¡sprÄ™sti stoties pavadinimo {0}. \ + Gal jums reikia sukonfigÅ«ruoti HTTP Å¡liuzÄ…? UpdateCenter.Status.ConnectionFailed=\ Nepavyko prisijungti prie {0}. \ - Gal jums reikia sukonfig\u016bruoti HTTP \u0161liuz\u0105? -UpdateCenter.init=Inicializuojamas atnaujinim\u0173 centras -UpdateCenter.PluginCategory.android=Android k\u016brimas -UpdateCenter.PluginCategory.builder=K\u016brimo \u012frankiai -UpdateCenter.PluginCategory.buildwrapper=K\u016brimo aplankas -UpdateCenter.PluginCategory.cli=Komandin\u0117s eilut\u0117s s\u0105saja -UpdateCenter.PluginCategory.cloud=Debes\u0173 tiek\u0117jai + Gal jums reikia sukonfigÅ«ruoti HTTP Å¡liuzÄ…? +UpdateCenter.init=Inicializuojamas atnaujinimų centras +UpdateCenter.PluginCategory.android=Android kÅ«rimas +UpdateCenter.PluginCategory.builder=KÅ«rimo įrankiai +UpdateCenter.PluginCategory.buildwrapper=KÅ«rimo aplankas +UpdateCenter.PluginCategory.cli=KomandinÄ—s eilutÄ—s sÄ…saja +UpdateCenter.PluginCategory.cloud=Debesų tiekÄ—jai UpdateCenter.PluginCategory.cluster=Klasterio valdymas ir paskirstytas vykdymas -UpdateCenter.PluginCategory.database=Duombaz\u0117 -UpdateCenter.PluginCategory.deployment=K\u016brimas +UpdateCenter.PluginCategory.database=DuombazÄ— +UpdateCenter.PluginCategory.deployment=KÅ«rimas UpdateCenter.PluginCategory.devops=DevOps -UpdateCenter.PluginCategory.dotnet=.NET k\u016brimas -UpdateCenter.PluginCategory.external=I\u0161orin\u0117 svetain\u0117/\u012franki\u0173 integracija -UpdateCenter.PluginCategory.groovy-related=Groovy-susij\u0119s -UpdateCenter.PluginCategory.ios=iOS k\u016brimas -UpdateCenter.PluginCategory.api-plugin=Bibliotek\u0173 priedai (naudojami kit\u0173 pried\u0173) -UpdateCenter.PluginCategory.listview-column=Rodinio s\u0105ra\u0161o stulpeliai +UpdateCenter.PluginCategory.dotnet=.NET kÅ«rimas +UpdateCenter.PluginCategory.external=IÅ¡orinÄ— svetainÄ—/įrankių integracija +UpdateCenter.PluginCategory.groovy-related=Groovy-susijÄ™s +UpdateCenter.PluginCategory.ios=iOS kÅ«rimas +UpdateCenter.PluginCategory.api-plugin=Bibliotekų priedai (naudojami kitų priedų) +UpdateCenter.PluginCategory.listview-column=Rodinio sÄ…raÅ¡o stulpeliai UpdateCenter.PluginCategory.maven=Maven -UpdateCenter.PluginCategory.misc=\u012evair\u016bs -UpdateCenter.PluginCategory.notifier=Vykdymo prane\u0161ikliai -UpdateCenter.PluginCategory.page-decorator=Puslapi\u0173 dekoratoriai +UpdateCenter.PluginCategory.misc=Ä®vairÅ«s +UpdateCenter.PluginCategory.notifier=Vykdymo praneÅ¡ikliai +UpdateCenter.PluginCategory.page-decorator=Puslapių dekoratoriai UpdateCenter.PluginCategory.parameter=Vykdymo parametrai UpdateCenter.PluginCategory.post-build=Kiti veiksmo po vykdymo -UpdateCenter.PluginCategory.python=Python k\u016brimas +UpdateCenter.PluginCategory.python=Python kÅ«rimas UpdateCenter.PluginCategory.report=Vykdymo ataskaitos -UpdateCenter.PluginCategory.ruby=Ruby k\u016brimas -UpdateCenter.PluginCategory.runcondition=Vykdymo s\u0105lygos, kurias naudoja Vykdymo s\u0105lyg\u0173 priedas -UpdateCenter.PluginCategory.scala=Scala k\u016brimas -UpdateCenter.PluginCategory.scm=I\u0161eities kodo valdymas -UpdateCenter.PluginCategory.scm-related=Susij\u0119 su i\u0161eities kodo valdymu +UpdateCenter.PluginCategory.ruby=Ruby kÅ«rimas +UpdateCenter.PluginCategory.runcondition=Vykdymo sÄ…lygos, kurias naudoja Vykdymo sÄ…lygų priedas +UpdateCenter.PluginCategory.scala=Scala kÅ«rimas +UpdateCenter.PluginCategory.scm=IÅ¡eities kodo valdymas +UpdateCenter.PluginCategory.scm-related=SusijÄ™ su iÅ¡eities kodo valdymu UpdateCenter.PluginCategory.security=Saugumas -UpdateCenter.PluginCategory.agent=Agent\u0173 paleid\u0117jai ir valdytojai +UpdateCenter.PluginCategory.agent=Agentų paleidÄ—jai ir valdytojai UpdateCenter.PluginCategory.test=Testavimas UpdateCenter.PluginCategory.trigger=Vykdymo trigeriai -UpdateCenter.PluginCategory.ui=Naudotojo s\u0105saja -UpdateCenter.PluginCategory.upload=Rezultat\u0173 \u012fk\u0117l\u0117jai -UpdateCenter.PluginCategory.user=Autentikacija ir naudotoj\u0173 valdymas +UpdateCenter.PluginCategory.ui=Naudotojo sÄ…saja +UpdateCenter.PluginCategory.upload=Rezultatų įkÄ—lÄ—jai +UpdateCenter.PluginCategory.user=Autentikacija ir naudotojų valdymas UpdateCenter.PluginCategory.view=Rodiniai UpdateCenter.PluginCategory.must-be-labeled=Nekategorizuoti -UpdateCenter.PluginCategory.unrecognized=\u012evair\u016bs ({0}) +UpdateCenter.PluginCategory.unrecognized=Ä®vairÅ«s ({0}) Permalink.LastBuild=Paskutinis vykdymas Permalink.LastStableBuild=Paskutinis stabilus vykdymas Permalink.LastUnstableBuild=Paskutinis nestabilus vykdymas -Permalink.LastUnsuccessfulBuild=Paskutinis nes\u0117kmingas vykdymas -Permalink.LastSuccessfulBuild=Paskutinis s\u0117kmingas vykdymas -Permalink.LastFailedBuild=Paskutinis nepavyk\u0119s vykdymas +Permalink.LastUnsuccessfulBuild=Paskutinis nesÄ—kmingas vykdymas +Permalink.LastSuccessfulBuild=Paskutinis sÄ—kmingas vykdymas +Permalink.LastFailedBuild=Paskutinis nepavykÄ™s vykdymas Permalink.LastCompletedBuild=Paskutinis baigtas vykdymas ParameterAction.DisplayName=Parametrai -ParametersDefinitionProperty.DisplayName=\u0160is projektas yra parametrizuotas -StringParameterDefinition.DisplayName=Eilut\u0117s parametras -TextParameterDefinition.DisplayName=Keli\u0173 eilu\u010di\u0173 parametras +ParametersDefinitionProperty.DisplayName=Å is projektas yra parametrizuotas +StringParameterDefinition.DisplayName=EilutÄ—s parametras +TextParameterDefinition.DisplayName=Kelių eiluÄių parametras FileParameterDefinition.DisplayName=Failo parametras BooleanParameterDefinition.DisplayName=Loginis parametras ChoiceParameterDefinition.DisplayName=Pasirinkimo parametras -ChoiceParameterDefinition.MissingChoices=Reikalauja pasirinkim\u0173. +ChoiceParameterDefinition.MissingChoices=Reikalauja pasirinkimų. RunParameterDefinition.DisplayName=Paleidimo parametras -PasswordParameterDefinition.DisplayName=Slapta\u017eod\u017eio parametras +PasswordParameterDefinition.DisplayName=Slaptažodžio parametras -Node.BecauseNodeIsReserved={0} yra rezervuotas darbams su atitinkan\u010dia etiket\u0117s i\u0161rai\u0161ka -Node.BecauseNodeIsNotAcceptingTasks={0} nepriima u\u017eduo\u010di\u0173 -Node.LabelMissing={0} neturi etiket\u0117s {1} -Node.LackingBuildPermission={0} neturi teis\u0117s b\u016bti paleistas {1} -Node.Mode.NORMAL=Naudoti \u0161\u012f mazg\u0105 kiek tik galima -Node.Mode.EXCLUSIVE=Vykdyti tik darbus su \u0161\u012f mazg\u0105 atitinkan\u010dia etikete +Node.BecauseNodeIsReserved={0} yra rezervuotas darbams su atitinkanÄia etiketÄ—s iÅ¡raiÅ¡ka +Node.BecauseNodeIsNotAcceptingTasks={0} nepriima užduoÄių +Node.LabelMissing={0} neturi etiketÄ—s {1} +Node.LackingBuildPermission={0} neturi teisÄ—s bÅ«ti paleistas {1} +Node.Mode.NORMAL=Naudoti šį mazgÄ… kiek tik galima +Node.Mode.EXCLUSIVE=Vykdyti tik darbus su šį mazgÄ… atitinkanÄia etikete -ListView.DisplayName=S\u0105ra\u0161o rodinys +ListView.DisplayName=SÄ…raÅ¡o rodinys MyView.DisplayName=Mano rodinys LoadStatistics.Legends.DefinedExecutors=Nurodyti vykdytojai -LoadStatistics.Legends.OnlineExecutors=Prisijung\u0119 vykdytojai +LoadStatistics.Legends.OnlineExecutors=PrisijungÄ™ vykdytojai LoadStatistics.Legends.ConnectingExecutors=Prisijungiantys vykdytojai -LoadStatistics.Legends.TotalExecutors=Viso vykdytoj\u0173 -LoadStatistics.Legends.BusyExecutors=U\u017eimt\u0173 vykdytoj\u0173 -LoadStatistics.Legends.IdleExecutors=Neu\u017eimt\u0173 vykdytoj\u0173 -LoadStatistics.Legends.AvailableExecutors=Prieinam\u0173 vykdytoj\u0173 -LoadStatistics.Legends.QueueLength=Eil\u0117s ilgis - -Cause.LegacyCodeCause.ShortDescription=\u0160\u012f darb\u0105 prad\u0117jo senas kodas. N\u0117ra prie\u017easties informacijos -Cause.UpstreamCause.ShortDescription=Prad\u0117ta i\u0161 auk\u0161tesnio projekto \u201e{0}\u201c vykdymo numerio {1} -Cause.UpstreamCause.CausedBy=originali prie\u017eastis: -Cause.UserCause.ShortDescription=Prad\u0117jo naudotojas {0} -Cause.UserIdCause.ShortDescription=Prad\u0117jo naudotojas {0} -Cause.RemoteCause.ShortDescription=Prad\u0117jo nutol\u0119s mazgas {0} -Cause.RemoteCause.ShortDescriptionWithNote=Prad\u0117jo nutol\u0119s mazgas {0} su pastaba: {1} +LoadStatistics.Legends.TotalExecutors=Viso vykdytojų +LoadStatistics.Legends.BusyExecutors=Užimtų vykdytojų +LoadStatistics.Legends.IdleExecutors=Neužimtų vykdytojų +LoadStatistics.Legends.AvailableExecutors=Prieinamų vykdytojų +LoadStatistics.Legends.QueueLength=EilÄ—s ilgis + +Cause.LegacyCodeCause.ShortDescription=Šį darbÄ… pradÄ—jo senas kodas. NÄ—ra priežasties informacijos +Cause.UpstreamCause.ShortDescription=PradÄ—ta iÅ¡ aukÅ¡tesnio projekto „{0}“ vykdymo numerio {1} +Cause.UpstreamCause.CausedBy=originali priežastis: +Cause.UserCause.ShortDescription=PradÄ—jo naudotojas {0} +Cause.UserIdCause.ShortDescription=PradÄ—jo naudotojas {0} +Cause.RemoteCause.ShortDescription=PradÄ—jo nutolÄ™s mazgas {0} +Cause.RemoteCause.ShortDescriptionWithNote=PradÄ—jo nutolÄ™s mazgas {0} su pastaba: {1} ProxyView.NoSuchViewExists=Neegzistuoja globalus rodinys {0} -ProxyView.DisplayName=\u012etraukti global\u0173 rodin\u012f +ProxyView.DisplayName=Ä®traukti globalų rodinį MyViewsProperty.DisplayName=Mano rodiniai MyViewsProperty.GlobalAction.DisplayName=Mano rodiniai -MyViewsProperty.ViewExistsCheck.NotExist=N\u0117ra rodinio pavadinimu {0} +MyViewsProperty.ViewExistsCheck.NotExist=NÄ—ra rodinio pavadinimu {0} MyViewsProperty.ViewExistsCheck.AlreadyExists=Rodinys pavadinimu {0} jau yra -CLI.restart.shortDescription=I\u0161 naujo paleisti Jenkins\u0105 -CLI.safe-restart.shortDescription=Saugiai i\u0161 naujo paleisti Jenkins\u0105 -CLI.keep-build.shortDescription=Pa\u017eym\u0117ti vykdym\u0105 am\u017einam saugojimui. -CLI.reload-configuration.shortDescription=I\u0161mesti vius \u012f atmint\u012f \u012fkeltus duomenis ir i\u0161 naujo visk\u0105 \u012fkelti i\u0161 fail\u0173 sistemos. Naudinga, jei pakeit\u0117te konfig\u016bracijos failus tiesiai diske. +CLI.restart.shortDescription=IÅ¡ naujo paleisti JenkinsÄ… +CLI.safe-restart.shortDescription=Saugiai iÅ¡ naujo paleisti JenkinsÄ… +CLI.keep-build.shortDescription=PažymÄ—ti vykdymÄ… amžinam saugojimui. +CLI.reload-configuration.shortDescription=IÅ¡mesti vius į atmintį įkeltus duomenis ir iÅ¡ naujo viskÄ… įkelti iÅ¡ failų sistemos. Naudinga, jei pakeitÄ—te konfigÅ«racijos failus tiesiai diske. -BuildAuthorizationToken.InvalidTokenProvided=Pateikta neteisinga \u017eyma. +BuildAuthorizationToken.InvalidTokenProvided=Pateikta neteisinga žyma. -Jenkins.CheckDisplayName.NameNotUniqueWarning=Rodomas pavadinimas \u201e{0}\u201c naudojamas kaip darbo pavadinimas ir gali b\u016bti keist\u0173 paie\u0161kos rezultat\u0173 prie\u017eastis. -Jenkins.CheckDisplayName.DisplayNameNotUniqueWarning=Rodomas pavadinimas \u201e{0}\u201c jau naudojamas kitame darbe tod\u0117l gali sukelti u\u017edelsim\u0105 ir sumai\u0161t\u012f. +Jenkins.CheckDisplayName.NameNotUniqueWarning=Rodomas pavadinimas „{0}“ naudojamas kaip darbo pavadinimas ir gali bÅ«ti keistų paieÅ¡kos rezultatų priežastis. +Jenkins.CheckDisplayName.DisplayNameNotUniqueWarning=Rodomas pavadinimas „{0}“ jau naudojamas kitame darbe todÄ—l gali sukelti uždelsimÄ… ir sumaiÅ¡tį. -Jenkins.NotAllowedName=\u201e{0}\u201c - neleid\u017eiamas pavadinimas -Jenkins.IsRestarting=Jenkinsas paleid\u017eiamas i\u0161 naujo +Jenkins.NotAllowedName=„{0}“ - neleidžiamas pavadinimas +Jenkins.IsRestarting=Jenkinsas paleidžiamas iÅ¡ naujo -User.IllegalUsername=\u201e{0}\u201c neleid\u017eiamas kaip naudotojo pavadinimas d\u0117l saugumo sumetim\u0173. -User.IllegalFullname=\u201e{0}\u201c neleid\u017eiamas kaip pilnas vardas d\u0117l saugumo sumetim\u0173. +User.IllegalUsername=„{0}“ neleidžiamas kaip naudotojo pavadinimas dÄ—l saugumo sumetimų. +User.IllegalFullname=„{0}“ neleidžiamas kaip pilnas vardas dÄ—l saugumo sumetimų. diff --git a/core/src/main/resources/hudson/model/Messages_nb_NO.properties b/core/src/main/resources/hudson/model/Messages_nb_NO.properties index d1098629e62d..fa756d519fe5 100644 --- a/core/src/main/resources/hudson/model/Messages_nb_NO.properties +++ b/core/src/main/resources/hudson/model/Messages_nb_NO.properties @@ -1,4 +1,4 @@ ManageJenkinsAction.DisplayName=Konfigurer Jenkins ParametersDefinitionProperty.DisplayName=Denne build har parametre -FreeStyleProject.Description=Dette er en sentral egenskap ved Jenkins. Jenkins bygger dine prosjekter, kombinerer SCM (Source Control Management - Kildekodekontrollsystem ) med forskjellige byggsystemer og denne kan ogs\u00E5 brukes til mer enn bare \u00E5 bygge applikasjoner. +FreeStyleProject.Description=Dette er en sentral egenskap ved Jenkins. Jenkins bygger dine prosjekter, kombinerer SCM (Source Control Management - Kildekodekontrollsystem ) med forskjellige byggsystemer og denne kan ogsÃ¥ brukes til mer enn bare Ã¥ bygge applikasjoner. diff --git a/core/src/main/resources/hudson/model/Messages_nl.properties b/core/src/main/resources/hudson/model/Messages_nl.properties index 3db4e11f0b59..c58b39df6ee0 100644 --- a/core/src/main/resources/hudson/model/Messages_nl.properties +++ b/core/src/main/resources/hudson/model/Messages_nl.properties @@ -33,7 +33,7 @@ AbstractProject.PollingABorted=Contact met versiebeheersysteem werd afgebroken. AbstractProject.ScmAborted=Ophalen uit versiebeheer werd afgebroken AbstractProject.WorkspaceOffline=Werkplaats is ontkoppeld. -Api.MultipleMatch=XPath "{0}" komt overeen met {1} knopen. Cre\u00eber een XPath die maar met 1 overeenkomt of gebruikt een "wrapper" zoekparameter om hen allen onder een hoofdknoop onder te brengen. +Api.MultipleMatch=XPath "{0}" komt overeen met {1} knopen. Creëer een XPath die maar met 1 overeenkomt of gebruikt een "wrapper" zoekparameter om hen allen onder een hoofdknoop onder te brengen. Api.NoXPathMatch=XPath {0} komt met geen enkele knoop overeen BallColor.Aborted=Afgebroken diff --git a/core/src/main/resources/hudson/model/Messages_pl.properties b/core/src/main/resources/hudson/model/Messages_pl.properties index 17dc220b58fd..92b3d2fc016f 100644 --- a/core/src/main/resources/hudson/model/Messages_pl.properties +++ b/core/src/main/resources/hudson/model/Messages_pl.properties @@ -23,77 +23,77 @@ ParametersDefinitionProperty.DisplayName=To zadanie jest sparametryzowane StringParameterDefinition.DisplayName=Tekst TextParameterDefinition.DisplayName=Tekst wielolinijkowy FileParameterDefinition.DisplayName=Plik -BooleanParameterDefinition.DisplayName=Warto\u015B\u0107 logiczna +BooleanParameterDefinition.DisplayName=Wartość logiczna ChoiceParameterDefinition.DisplayName=Lista wyboru -ChoiceParameterDefinition.MissingChoices=Nie podano warto\u015Bci -PasswordParameterDefinition.DisplayName=Has\u0142o -ManageJenkinsAction.DisplayName=Zarz\u0105dzaj Jenkinsem -Job.AllRecentBuildFailed=Wszystkie ostatnie zadania nie powiod\u0142y si\u0119. -Job.BuildStability=Stabilno\u015B\u0107 zada\u0144: {0} -Job.NOfMFailed={0} spo\u015Br\u00F3d {1} ostatnich zada\u0144 nie powiod\u0142o si\u0119. -Job.NoRecentBuildFailed=Brak ostatnich zada\u0144 zako\u0144czonych niepowodzeniem. +ChoiceParameterDefinition.MissingChoices=Nie podano wartoÅ›ci +PasswordParameterDefinition.DisplayName=HasÅ‚o +ManageJenkinsAction.DisplayName=ZarzÄ…dzaj Jenkinsem +Job.AllRecentBuildFailed=Wszystkie ostatnie zadania nie powiodÅ‚y siÄ™. +Job.BuildStability=Stabilność zadaÅ„: {0} +Job.NOfMFailed={0} spoÅ›ród {1} ostatnich zadaÅ„ nie powiodÅ‚o siÄ™. +Job.NoRecentBuildFailed=Brak ostatnich zadaÅ„ zakoÅ„czonych niepowodzeniem. AbstractProject.Pronoun=Projekt AbstractItem.Pronoun=Projekt -AbstractProject.WorkspaceTitle=Przestrze\u0144 robocza {0} -AbstractProject.WorkspaceTitleOnComputer=Przestrze\u0144 robocza {0} na w\u0119\u017Ale {1} +AbstractProject.WorkspaceTitle=PrzestrzeÅ„ robocza {0} +AbstractProject.WorkspaceTitleOnComputer=PrzestrzeÅ„ robocza {0} na węźle {1} BallColor.Aborted=Przerwane BallColor.Disabled=Zablokowane -BallColor.Failed=Nie powiod\u0142o si\u0119 +BallColor.Failed=Nie powiodÅ‚o siÄ™ BallColor.InProgress=W trakcie -BallColor.NotBuilt=Brak uruchomie\u0144 +BallColor.NotBuilt=Brak uruchomieÅ„ BallColor.Pending=W oczekiwaniu BallColor.Success=Sukces BallColor.Unstable=Niestabilne Permalink.LastBuild=Ostatnie zadanie Permalink.LastStableBuild=Ostatnie stabilne zadanie Permalink.LastUnstableBuild=Ostatnie niestabilne zadanie -Permalink.LastUnsuccessfulBuild=Ostatnie niepomy\u015Blne zadanie -Permalink.LastSuccessfulBuild=Ostatnie pomy\u015Blne zadanie -Permalink.LastFailedBuild=Ostatnie niepomy\u015Blne zadanie -Permalink.LastCompletedBuild=Ostatnie zako\u0144czone zadanie +Permalink.LastUnsuccessfulBuild=Ostatnie niepomyÅ›lne zadanie +Permalink.LastSuccessfulBuild=Ostatnie pomyÅ›lne zadanie +Permalink.LastFailedBuild=Ostatnie niepomyÅ›lne zadanie +Permalink.LastCompletedBuild=Ostatnie zakoÅ„czone zadanie Run.InProgressDuration={0} i nadal trwa Run.Summary.Stable=stabilne Run.Summary.Unstable=niestabilne Run.Summary.Aborted=przerwane -Run.Summary.NotBuilt=brak zada\u0144 +Run.Summary.NotBuilt=brak zadaÅ„ Run.Summary.BackToNormal=ponownie stabilne Run.Summary.BrokenForALongTime=nieudane od dawna Run.Summary.BrokenSinceThisBuild=nieudane od tego zadania Run.Summary.BrokenSince=nieudane od zadania {0} Run.Summary.Unknown=? UpdateCenter.DisplayName=Centrum aktualizacji -UpdateCenter.DownloadButNotActivated=Pobrana pomy\u015Blnie. Zostanie w\u0142\u0105czona podczas ponownego uruchomienia Jenkinsa -UpdateCenter.Status.CheckingInternet=Sprawdzanie po\u0142\u0105czenia z Internetem -UpdateCenter.Status.CheckingJavaNet=Sprawdzanie po\u0142\u0105czenia z centrum aktualizacji -UpdateCenter.Status.Success=Zako\u0144czono +UpdateCenter.DownloadButNotActivated=Pobrana pomyÅ›lnie. Zostanie wÅ‚Ä…czona podczas ponownego uruchomienia Jenkinsa +UpdateCenter.Status.CheckingInternet=Sprawdzanie poÅ‚Ä…czenia z Internetem +UpdateCenter.Status.CheckingJavaNet=Sprawdzanie poÅ‚Ä…czenia z centrum aktualizacji +UpdateCenter.Status.Success=ZakoÅ„czono MyViewsProperty.DisplayName=Moje widoki MyViewsProperty.GlobalAction.DisplayName=Moje widoki -FreeStyleProject.Description=To jest podstawowa funkcja Jenkinsa. Jenkins stworzy projekt \u0142\u0105cz\u0105cy dowolny SCM z dowolnym systemem buduj\u0105cym, mo\u017Ce to by\u0107 r\u00F3wnie\u017C wykorzystane do czego\u015B innego ni\u017C budowanie oprogramowania. -FreeStyleProject.DisplayName=Og\u00F3lny projekt -Node.Mode.NORMAL=Wykorzystuj ten w\u0119ze\u0142 tak bardzo, jak to tylko mo\u017Cliwe -ComputerSet.DisplayName=W\u0119z\u0142y +FreeStyleProject.Description=To jest podstawowa funkcja Jenkinsa. Jenkins stworzy projekt Å‚Ä…czÄ…cy dowolny SCM z dowolnym systemem budujÄ…cym, może to być również wykorzystane do czegoÅ› innego niż budowanie oprogramowania. +FreeStyleProject.DisplayName=Ogólny projekt +Node.Mode.NORMAL=Wykorzystuj ten wÄ™zeÅ‚ tak bardzo, jak to tylko możliwe +ComputerSet.DisplayName=WÄ™zÅ‚y Hudson.DisplayName=Jenkins ListView.DisplayName=Widok listy -MyView.DisplayName=M\u00F3j widok -Node.Mode.EXCLUSIVE=Uruchamiaj te projekty, kt\u00F3re maj\u0105 etykiet\u0119 pasuj\u0105c\u0105 do tego w\u0119\u017C\u0142a +MyView.DisplayName=Mój widok +Node.Mode.EXCLUSIVE=Uruchamiaj te projekty, które majÄ… etykietÄ™ pasujÄ…cÄ… do tego wężła Hudson.ViewName=Wszystkie RunParameterDefinition.DisplayName=Parametr uruchomienia# SCM check out aborted -Hudson.JobAlreadyExists=Projekt o nazwie \u2018{0}\u2019 ju\u017C istnieje +Hudson.JobAlreadyExists=Projekt o nazwie ‘{0}’ już istnieje AbstractProject.CustomWorkspaceEmpty=Nie wprowadzono dedykowanego katalogu projektu. AbstractItem.NewNameUnchanged=Nowa nazwa jest taka sama, jak aktualna. -Hudson.NoName=Nazwa nie zosta\u0142a podana -Node.LabelMissing=\u2018{0}\u2019 nie ma etykiety \u2018{1}\u2019 +Hudson.NoName=Nazwa nie zostaÅ‚a podana +Node.LabelMissing=‘{0}’ nie ma etykiety ‘{1}’ Job.minutes=minuty -Cause.UserCause.ShortDescription=Uruchomiono przez u\u017Cytkownika {0} -Cause.UserIdCause.ShortDescription=Uruchomiono przez u\u017Cytkownika {0} +Cause.UserCause.ShortDescription=Uruchomiono przez użytkownika {0} +Cause.UserIdCause.ShortDescription=Uruchomiono przez użytkownika {0} Descriptor.From=(na podstawie {0}) -Hudson.NodeDescription=g\u0142\u00F3wny w\u0119ze\u0142 Jenkinsa +Hudson.NodeDescription=główny wÄ™zeÅ‚ Jenkinsa ManagementLink.Category.CONFIGURATION=Konfiguracja systemu -ManagementLink.Category.SECURITY=Bezpiecze\u0144stwo +ManagementLink.Category.SECURITY=BezpieczeÅ„stwo ManagementLink.Category.STATUS=Informacje o statusie -ManagementLink.Category.TROUBLESHOOTING=Rozwi\u0105zywanie problem\u00F3w -ManagementLink.Category.TOOLS=Narz\u0119dzia i akcje +ManagementLink.Category.TROUBLESHOOTING=RozwiÄ…zywanie problemów +ManagementLink.Category.TOOLS=NarzÄ™dzia i akcje ManagementLink.Category.MISC=Inne ManagementLink.Category.UNCATEGORIZED=Nieskategoryzowane diff --git a/core/src/main/resources/hudson/model/Messages_pt_BR.properties b/core/src/main/resources/hudson/model/Messages_pt_BR.properties index 18dc22d28417..335e1d298f71 100644 --- a/core/src/main/resources/hudson/model/Messages_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Messages_pt_BR.properties @@ -22,320 +22,320 @@ # THE SOFTWARE. AbstractBuild.BuildingRemotely=Construindo remotamente em {0} -AbstractBuild.KeptBecause=Esta constru\u00E7\u00E3o \u00E9 mantida por causa de {0}. -AbstractItem.NewNameInUse=O nome {0} j\u00E1 est\u00E1 em uso. +AbstractBuild.KeptBecause=Esta construção é mantida por causa de {0}. +AbstractItem.NewNameInUse=O nome {0} já está em uso. AbstractProject.Pronoun=Projeto AbstractProject.Aborted=Abortado -AbstractProject.Disabled=Constru\u00E7\u00E3o desabilitada +AbstractProject.Disabled=Construção desabilitada AbstractProject.NoSCM=Nenhum SCM -AbstractProject.NoWorkspace=Nenhum espa\u00E7o de trabalho est\u00E1 dispon\u00EDvel, portanto n\u00E3o \u00E9 poss\u00EDvel verificar atualiza\u00E7\u00F5es. +AbstractProject.NoWorkspace=Nenhum espaço de trabalho está disponível, portanto não é possível verificar atualizações. AbstractProject.PollingABorted=Pesquisa SCM abortada -AbstractProject.ScmAborted=Dar sa\u00EDda do SCM abortada -AbstractProject.WorkspaceOffline=O espa\u00E7o de trabalho est\u00E1 fora de servi\u00E7o. -Api.MultipleMatch=XPath "{0}" corresponde a {1} n\u00F3s. \ - Crie um XPath que apenas corresponda a um ou use o par\u00E2metro de pesquisa "agrupador" para agrup\u00E1-los sob um \ +AbstractProject.ScmAborted=Dar saída do SCM abortada +AbstractProject.WorkspaceOffline=O espaço de trabalho está fora de serviço. +Api.MultipleMatch=XPath "{0}" corresponde a {1} nós. \ + Crie um XPath que apenas corresponda a um ou use o parâmetro de pesquisa "agrupador" para agrupá-los sob um \ elemento do tipo raiz. -Api.NoXPathMatch=XPath {0} n\u00E3o tem correspondente +Api.NoXPathMatch=XPath {0} não tem correspondente BallColor.Aborted=Abortado BallColor.Disabled=Desabilitado BallColor.Failed=Falhou BallColor.InProgress=Em progresso BallColor.Pending=Pendente BallColor.Success=Sucesso -BallColor.Unstable=Inst\u00E1vel +BallColor.Unstable=Instável Executor.NotAvailable=N/D FreeStyleProject.DisplayName=Construir um projeto de software de estilo livre. -FreeStyleProject.Description=Esta \u00E9 a central de funcionalidades do Jenkins. Ela construir\u00E1 seu projeto e voc\u00EA pode \ - combinar qualquer SCM com qualquer sistema de constru\u00E7\u00E3o, e ele at\u00E9 mesmo pode ser usado para outras tarefas \ - diferentes de constru\u00E7\u00F5es de software. -Hudson.BadPortNumber=N\u00FAmero de porta ruim {0} +FreeStyleProject.Description=Esta é a central de funcionalidades do Jenkins. Ela construirá seu projeto e você pode \ + combinar qualquer SCM com qualquer sistema de construção, e ele até mesmo pode ser usado para outras tarefas \ + diferentes de construções de software. +Hudson.BadPortNumber=Número de porta ruim {0} Hudson.Computer.Caption=Mestre Hudson.Computer.DisplayName=mestre -Hudson.ControlCodeNotAllowed=Nenhum c\u00F3digo de controle e permitido: {0} +Hudson.ControlCodeNotAllowed=Nenhum código de controle e permitido: {0} Hudson.DisplayName=Jenkins -Hudson.JobAlreadyExists=Uma tarefa j\u00E1 existe com o nome ''{0}'' -Hudson.NoJavaInPath=O java n\u00E3o est\u00E1 em seu PATH. Talvez voce precise configurar as JDKs? +Hudson.JobAlreadyExists=Uma tarefa já existe com o nome ''{0}'' +Hudson.NoJavaInPath=O java não está em seu PATH. Talvez voce precise configurar as JDKs? Hudson.NoName=Nenhum nome foi especificado -Hudson.NoSuchDirectory=Tal diret\u00F3rio n\u00E3o existe: {0} -Hudson.NotAPlugin={0} n\u00E3o \u00E9 uma extens\u00E3o do Jenkins -Hudson.NotJDKDir={0} n\u00E3o parece um diret\u00F3rio JDK +Hudson.NoSuchDirectory=Tal diretório não existe: {0} +Hudson.NotAPlugin={0} não é uma extensão do Jenkins +Hudson.NotJDKDir={0} não parece um diretório JDK Hudson.Permissions.Title=Total -Hudson.UnsafeChar=''{0}'' n\u00E3o \u00E9 um caractere seguro +Hudson.UnsafeChar=''{0}'' não é um caractere seguro Hudson.ViewName=Tudo Item.Permissions.Title=Tarefa -Job.AllRecentBuildFailed=Todas as constru\u00E7\u00F5es recentes falharam. -Job.BuildStability=Estabilidade de constru\u00E7\u00F5es: {0} -Job.NOfMFailed={0} das \u00FAltimas {1} constru\u00E7\u00F5es falharam. -Job.NoRecentBuildFailed=Nenhuma constru\u00E7\u00E3o recente falhou. +Job.AllRecentBuildFailed=Todas as construções recentes falharam. +Job.BuildStability=Estabilidade de construções: {0} +Job.NOfMFailed={0} das últimas {1} construções falharam. +Job.NoRecentBuildFailed=Nenhuma construção recente falhou. Job.Pronoun=Projeto Job.minutes=minutos -Job.NoRenameWhileBuilding=N\u00E3o \u00E9 poss\u00EDvel renomear enquanto a tarefa est\u00E1 em constru\u00E7\u00E3o +Job.NoRenameWhileBuilding=Não é possível renomear enquanto a tarefa está em construção Queue.BlockedBy=Bloqueado por {0} -Queue.InProgress=Uma constru\u00E7\u00E3o j\u00E1 est\u00E1 em progresso -Queue.InQuietPeriod=Em per\u00EDodo de sil\u00EAncio. Expira em {0} +Queue.InProgress=Uma construção já está em progresso +Queue.InQuietPeriod=Em período de silêncio. Expira em {0} Queue.Unknown=??? -Run.BuildAborted=constru\u00E7\u00E3o foi abortada +Run.BuildAborted=construção foi abortada Run.MarkedExplicitly=Explicitamente marcada para manter o registro Run.Permissions.Title=Executar -Run.UnableToDelete=N\u00E3o foi poss\u00EDvel excluir {0}: {1} -View.Permissions.Title=Vis\u00E3o -Permalink.LastBuild=\u00DAltima constru\u00E7\u00E3o -Permalink.LastStableBuild=\u00DAltima constru\u00E7\u00E3o est\u00E1vel -Permalink.LastSuccessfulBuild=\u00DAltima constru\u00E7\u00E3o bem sucedida -Permalink.LastFailedBuild=\u00DAltima constru\u00E7\u00E3o que falhou -Queue.WaitingForNextAvailableExecutor=Esperando pelo pr\u00F3ximo executor dispon\u00EDvel +Run.UnableToDelete=Não foi possível excluir {0}: {1} +View.Permissions.Title=Visão +Permalink.LastBuild=Última construção +Permalink.LastStableBuild=Última construção estável +Permalink.LastSuccessfulBuild=Última construção bem sucedida +Permalink.LastFailedBuild=Última construção que falhou +Queue.WaitingForNextAvailableExecutor=Esperando pelo próximo executor disponível AbstractProject.ExtendedReadPermission.Description=\ - Essa permiss\u00E3o garante acesso de leitura-escrita na configura\u00E7\u00E3o do projeto. Por favor, note que informa\u00E7\u00F5es \ - sens\u00EDveis de suas constru\u00E7\u00F5es, como senhas, ser\u00E3o expostos para uma ampla audi\u00EAncia ao conceder esta permiss\u00E3o. -Run.Summary.BrokenSinceThisBuild=Quebrado desde a \u00FAltima constru\u00E7\u00E3o -Cause.UserCause.ShortDescription= Iniciado pelo usu\u00E1rio {0} -Cause.UserIdCause.ShortDescription= Iniciado pelo usu\u00E1rio {0} + Essa permissão garante acesso de leitura-escrita na configuração do projeto. Por favor, note que informações \ + sensíveis de suas construções, como senhas, serão expostos para uma ampla audiência ao conceder esta permissão. +Run.Summary.BrokenSinceThisBuild=Quebrado desde a última construção +Cause.UserCause.ShortDescription= Iniciado pelo usuário {0} +Cause.UserIdCause.ShortDescription= Iniciado pelo usuário {0} LoadStatistics.Legends.TotalExecutors= Total de executores -MyViewsProperty.GlobalAction.DisplayName= Minhas vis\u00F5es +MyViewsProperty.GlobalAction.DisplayName= Minhas visões Run.UpdatePermission.Description=\ - Essa permiss\u00E3o concede aos usu\u00E1rios a capacidade de atualizarem a descri\u00E7\u00E3o e outras \ - propriedades da constru\u00E7\u00E3o como, por exemplo, deixar notas sobre a causa da falha da \ + Essa permissão concede aos usuários a capacidade de atualizarem a descrição e outras \ + propriedades da construção como, por exemplo, deixar notas sobre a causa da falha da \ mesma. -StringParameterDefinition.DisplayName=Par\u00E2metro de sequ\u00EAncia de caracteres -ProxyView.NoSuchViewExists= Vis\u00E3o global {0} n\u00E3o existe -UpdateCenter.PluginCategory.external= Ferramenta de integra\u00E7\u00E3o externa -View.MissingMode= Categoria de vis\u00E3o n\u00E3o especificada -Hudson.NotAPositiveNumber=N\u00FAmero n\u00E3o positivo +StringParameterDefinition.DisplayName=Parâmetro de sequência de caracteres +ProxyView.NoSuchViewExists= Visão global {0} não existe +UpdateCenter.PluginCategory.external= Ferramenta de integração externa +View.MissingMode= Categoria de visão não especificada +Hudson.NotAPositiveNumber=Número não positivo UpdateCenter.PluginCategory.unrecognized=Miscelania ({0}) Node.Mode.EXCLUSIVE=Deixar o processamento para atividades vinculadas -Run.Summary.Stable= Est\u00E1vel +Run.Summary.Stable= Estável UpdateCenter.Status.Success=Sucesso -UpdateCenter.init=Iniciando o centro de atualiza\u00E7\u00E3o -ParameterAction.DisplayName=Par\u00E2metros -ComputerSet.DisplayName=N\u00F3s +UpdateCenter.init=Iniciando o centro de atualização +ParameterAction.DisplayName=Parâmetros +ComputerSet.DisplayName=Nós Run.DeletePermission.Description=\ - Esta permiss\u00E3o concede aos usu\u00E1rios o direito de manualmente apagarem constru\u00E7\u00F5es do hist\u00F3rico de constru\u00E7\u00F5es. -Run.Summary.BrokenForALongTime=Quebrado h\u00E1 muito tempo + Esta permissão concede aos usuários o direito de manualmente apagarem construções do histórico de construções. +Run.Summary.BrokenForALongTime=Quebrado há muito tempo CLI.safe-restart.shortDescription=Reiniciar de forma segura o Jenkins -ProxyView.DisplayName=Incluir uma vis\u00E3o global -Hudson.NotANonNegativeNumber=N\u00FAmero n\u00E3o pode ser negativo -AbstractProject.NoBuilds=Nenhuma constru\u00E7\u00E3o existente. Agende uma nova. +ProxyView.DisplayName=Incluir uma visão global +Hudson.NotANonNegativeNumber=Número não pode ser negativo +AbstractProject.NoBuilds=Nenhuma construção existente. Agende uma nova. ListView.DisplayName=Ver lista -UpdateCenter.PluginCategory.page-decorator=Separador de p\u00E1gina -Cause.LegacyCodeCause.ShortDescription=Trabalho iniciado por c\u00F3digo legado. Motivo n\u00E3o dispon\u00EDvel. -UpdateCenter.PluginCategory.ui=Interface do usu\u00E1rio -UpdateCenter.PluginCategory.post-build=Outra a\u00E7\u00E3o p\u00F3s-constru\u00E7\u00E3o -Cause.UpstreamCause.ShortDescription=Iniciado pelo projeto superior "{0}", constru\u00E7\u00E3o n\u00FAmero {1} +UpdateCenter.PluginCategory.page-decorator=Separador de página +Cause.LegacyCodeCause.ShortDescription=Trabalho iniciado por código legado. Motivo não disponível. +UpdateCenter.PluginCategory.ui=Interface do usuário +UpdateCenter.PluginCategory.post-build=Outra ação pós-construção +Cause.UpstreamCause.ShortDescription=Iniciado pelo projeto superior "{0}", construção número {1} UpdateCenter.PluginCategory.cli=Interface de comando de linha -UpdateCenter.PluginCategory.builder=Ferramentas de constru\u00E7\u00E3o -FileParameterDefinition.DisplayName=Par\u00E2metro de arquivo -Run.Summary.Unstable=Inst\u00E1vel -ComputerSet.SlaveAlreadyExists=O agente chamado '{0}' j\u00E1 existe +UpdateCenter.PluginCategory.builder=Ferramentas de construção +FileParameterDefinition.DisplayName=Parâmetro de arquivo +Run.Summary.Unstable=Instável +ComputerSet.SlaveAlreadyExists=O agente chamado '{0}' já existe ComputerSet.NoSuchSlave=Nenhum agente: {0} -UpdateCenter.PluginCategory.trigger=Gatilhos de constru\u00E7\u00E3o -Slave.Remote.Director.Mandatory=Diret\u00F3rio remoto \u00E9 obrigat\u00F3rio +UpdateCenter.PluginCategory.trigger=Gatilhos de construção +Slave.Remote.Director.Mandatory=Diretório remoto é obrigatório Run.InProgressDuration={0} e contando UpdateCenter.Status.UnknownHostException=\ Erro ao resolver o nome do hospedeiro {0}. \ - Talvez voc\u00EA precise configurar um proxy HTTP? -Hudson.NotUsesUTF8ToDecodeURL=n\u00E3o use caracteres UTF-8 nas URLs -UpdateCenter.Status.CheckingInternet=Checando conex\u00E3o com a Internet + Talvez você precise configurar um proxy HTTP? +Hudson.NotUsesUTF8ToDecodeURL=não use caracteres UTF-8 nas URLs +UpdateCenter.Status.CheckingInternet=Checando conexão com a Internet View.DeletePermission.Description=\ - Esta permiss\u00E3o concede direito aos usu\u00E1rios de apagarem vis\u00F5es existentes. -UpdateCenter.Status.CheckingJavaNet=Verificando conectividade com o centro de atualiza\u00E7\u00E3o -UpdateCenter.PluginCategory.user= Autentica\u00E7\u00E3o de gerenciamento de usu\u00E1rio -MyView.DisplayName=Minha vis\u00E3o -Hudson.USER_CONTENT_README=Arquivos que ser\u00E3o disponibilizados no seu endere\u00E7o http://server/hudson/ArquivosDoUsuario/ -UpdateCenter.PluginCategory.scm-related=Gerenciamento de c\u00F3digo fonte -AbstractProject.UpstreamBuildInProgress=Projeto {0} j\u00E1 est\u00E1 em constru\u00E7\u00E3o -MyViewsProperty.ViewExistsCheck.NotExist= A vis\u00E3o {0} n\u00E3o existe -AbstractItem.NoSuchJobExists=n\u00E3o existe o trabalho ''{0}'' + Esta permissão concede direito aos usuários de apagarem visões existentes. +UpdateCenter.Status.CheckingJavaNet=Verificando conectividade com o centro de atualização +UpdateCenter.PluginCategory.user= Autenticação de gerenciamento de usuário +MyView.DisplayName=Minha visão +Hudson.USER_CONTENT_README=Arquivos que serão disponibilizados no seu endereço http://server/hudson/ArquivosDoUsuario/ +UpdateCenter.PluginCategory.scm-related=Gerenciamento de código fonte +AbstractProject.UpstreamBuildInProgress=Projeto {0} já está em construção +MyViewsProperty.ViewExistsCheck.NotExist= A visão {0} não existe +AbstractItem.NoSuchJobExists=não existe o trabalho ''{0}'' Run.Summary.BackToNormal=Voltar ao normal BooleanParameterDefinition.DisplayName=Valor booleano UpdateCenter.PluginCategory.buildwrapper=Construir pacotes Hudson.ReadPermission.Description=\ - A permiss\u00E3o de leitura \u00E9 necess\u00E1ria para ver praticamente todas as p\u00E1ginas\ - do Jenkins. Esta permiss\u00E3o \u00E9 \u00FAtil quando voc\u00EA n\u00E3o quer que usu\u00E1rios \ - n\u00E3o-autenticados veja as p\u00E1ginas do Jenkins: revogue essa permiss\u00E3o para \ - o usu\u00E1rio an\u00F4nimo ent\u00E3o adicione o pseudo usu\u00E1rio "autenticado" e conceda \ + A permissão de leitura é necessária para ver praticamente todas as páginas\ + do Jenkins. Esta permissão é útil quando você não quer que usuários \ + não-autenticados veja as páginas do Jenkins: revogue essa permissão para \ + o usuário anônimo então adicione o pseudo usuário "autenticado" e conceda \ o direito de leitura. -Hudson.NodeBeingRemoved=O n\u00F3 est\u00E1 sendo removido -Hudson.ViewAlreadyExists=J\u00E1 existe uma vis\u00E3o com esse nome "{0}" -UpdateCenter.PluginCategory.notifier=Notifica\u00E7\u00E3o de constru\u00E7\u00F5es +Hudson.NodeBeingRemoved=O nó está sendo removido +Hudson.ViewAlreadyExists=Já existe uma visão com esse nome "{0}" +UpdateCenter.PluginCategory.notifier=Notificação de construções Label.ProvisionedFrom=Aprovisionado para {0} Run.Summary.Aborted=Abortado -UpdateCenter.PluginCategory.report=Relat\u00F3rio de constru\u00E7\u00F5es -UpdateCenter.PluginCategory.scm=Gerenciamento de c\u00F3digo fonte +UpdateCenter.PluginCategory.report=Relatório de construções +UpdateCenter.PluginCategory.scm=Gerenciamento de código fonte View.ConfigurePermission.Description=\ - Permite aos usu\u00E1rios configurar as vis\u00F5es. -AbstractProject.NewBuildForWorkspace=Agendando uma nova constru\u00E7\u00E3o para obter um novo espa\u00E7o de trabalho -Node.LabelMissing=R\u00F3tulo n\u00E3o encontrado + Permite aos usuários configurar as visões. +AbstractProject.NewBuildForWorkspace=Agendando uma nova construção para obter um novo espaço de trabalho +Node.LabelMissing=Rótulo não encontrado Node.BecauseNodeIsReserved={0} foi reservado para trabalhos vinculados Cause.RemoteCause.ShortDescriptionWithNote=Hospedeiro remoto {0} iniciado com a nota: {1} -PasswordParameterDefinition.DisplayName=Par\u00E2metro da senha -UpdateCenter.PluginCategory.cluster=Gerenciamento de agrupamento constru\u00E7\u00F5es distribu\u00EDdas +PasswordParameterDefinition.DisplayName=Parâmetro da senha +UpdateCenter.PluginCategory.cluster=Gerenciamento de agrupamento construções distribuídas Cause.RemoteCause.ShortDescription=Iniciado pelo hospedeiro remoto {0} -Queue.init=Restaurando a fila de constru\u00E7\u00F5ess -Hudson.NodeDescription=N\u00F3 embutido do controlador Jenkins -Permalink.LastUnsuccessfulBuild=\u00DAltima constru\u00E7\u00E3o que falhou -RunParameterDefinition.DisplayName=Par\u00E2metro de execu\u00E7\u00E3o -MyViewsProperty.DisplayName=Minhas vis\u00F5es +Queue.init=Restaurando a fila de construçõess +Hudson.NodeDescription=Nó embutido do controlador Jenkins +Permalink.LastUnsuccessfulBuild=Última construção que falhou +RunParameterDefinition.DisplayName=Parâmetro de execução +MyViewsProperty.DisplayName=Minhas visões UpdateCenter.PluginCategory.must-be-labeled=Sem categoria -MyViewsProperty.ViewExistsCheck.AlreadyExists=J\u00E1 existe uma vis\u00E3o com o nome {0} +MyViewsProperty.ViewExistsCheck.AlreadyExists=Já existe uma visão com o nome {0} Hudson.AdministerPermission.Description=\ - Esta permiss\u00E3o concede a habilidade de fazer altera\u00E7\u00F5es de configura\u00E7\u00F5es que afetam todo o sistema assim como \ - executar opera\u00E7\u00F5es altamente sens\u00EDveis resulta em acesso completo ao sistema local (no escopo garantido pelo \ - sistema operacional em execu\u00E7\u00E3o) -Queue.HudsonIsAboutToShutDown=Jenkins est\u00E1 prestes a encerrar -Run.Summary.BrokenSince=Quebrado desde a \u00FAltima constru\u00E7\u00E3o {0} + Esta permissão concede a habilidade de fazer alterações de configurações que afetam todo o sistema assim como \ + executar operações altamente sensíveis resulta em acesso completo ao sistema local (no escopo garantido pelo \ + sistema operacional em execução) +Queue.HudsonIsAboutToShutDown=Jenkins está prestes a encerrar +Run.Summary.BrokenSince=Quebrado desde a última construção {0} AbstractProject.WorkspacePermission.Description=\ - Esta permiss\u00E3o garante a habilidade de extrair o conte\u00FAdo de um espa\u00E7o de trabalho do Jenkins obtido para realizar \ - constru\u00E7\u00F5es. Se voc\u00EA n\u00E3o quiser que um usu\u00E1rio acesse os arquivos do espa\u00E7o de trabalho (por exemplo, c\u00F3digo-fonte \ - obtido de um SCM ou resultados de constru\u00E7\u00E3o intermedi\u00E1ria) atrav\u00E9s do navegador de espa\u00E7o de trabalho revogue \ - esta permiss\u00E3o. -Hudson.NotANumber=n\u00E3o \u00E9 um n\u00FAmero + Esta permissão garante a habilidade de extrair o conteúdo de um espaço de trabalho do Jenkins obtido para realizar \ + construções. Se você não quiser que um usuário acesse os arquivos do espaço de trabalho (por exemplo, código-fonte \ + obtido de um SCM ou resultados de construção intermediária) através do navegador de espaço de trabalho revogue \ + esta permissão. +Hudson.NotANumber=não é um número View.CreatePermission.Description=\ - Permite aos usu\u00E1rios criarem vis\u00F5es + Permite aos usuários criarem visões LoadStatistics.Legends.QueueLength=Comprimento da fila CLI.restart.shortDescription=Reiniciar o Jenkins -Queue.NodeOffline={0} est\u00E1 fora de servi\u00E7o -Label.InvalidLabel=R\u00F3tulo inv\u00E1lido +Queue.NodeOffline={0} está fora de serviço +Label.InvalidLabel=Rótulo inválido AbstractBuild.BuildingOnMaster=Construindo no controlador -CLI.keep-build.shortDescription=Marcar a constru\u00E7\u00E3o como permanente +CLI.keep-build.shortDescription=Marcar a construção como permanente ChoiceParameterDefinition.DisplayName=Escolha -Queue.WaitingForNextAvailableExecutorOn=Aguardando pelo pr\u00F3ximo executor dispon\u00EDvel {0} -Hudson.NotANegativeNumber=N\u00FAmero n\u00E3o negativo +Queue.WaitingForNextAvailableExecutorOn=Aguardando pelo próximo executor disponível {0} +Hudson.NotANegativeNumber=Número não negativo UpdateCenter.PluginCategory.misc=Diversos UpdateCenter.Status.ConnectionFailed=\ Erro ao conectar em {0}. \ - Talvez vo\u00EA precise configurar um proxy HTTP? + Talvez voê precise configurar um proxy HTTP? UpdateCenter.PluginCategory.maven=Maven UpdateCenter.PluginCategory.upload=Carregadores de artefatos -Permalink.LastUnstableBuild=\u00DAltima constru\u00E7\u00E3o inst\u00E1vel +Permalink.LastUnstableBuild=Última construção instável Run.Summary.Unknown=? AbstractProject.BuildPermission.Description=\ - Permiss\u00E3o para iniciar uma nova constru\u00E7\u00E3o + Permissão para iniciar uma nova construção Slave.Network.Mounted.File.System.Warning=Tem certeza que quer usar um sistema de arquivos de rede montado como seu \ - sistema de arquivos raiz? Note que este diret\u00F3rio n\u00E3o precisa ser vis\u00EDvel para o controlador. + sistema de arquivos raiz? Note que este diretório não precisa ser visível para o controlador. Label.GroupOf=Grupo de {0} -Queue.AllNodesOffline=Todos os r\u00F3tulos ''{0}'' est\u00E3o fora de servi\u00E7o. +Queue.AllNodesOffline=Todos os rótulos ''{0}'' estão fora de serviço. LoadStatistics.Legends.BusyExecutors=Executores ocupados. ManageJenkinsAction.DisplayName=Gerenciar Jenkins AbstractProject.WorkspaceTitle=Workspace de {0} -UpdateCenter.PluginCategory.listview-column=Lista as colunas da vis\u00E3o -Run._is_waiting_for_a_checkpoint_on_={0} est\u00E1 aguardando por um ponto de verifica\u00E7\u00E3o em {1} -AbstractBuild.BuildingInWorkspace=\ no espa\u00E7o de trabalho {0} -Jenkins.IsRestarting=O Jenkins est\u00E1 reiniciando -AbstractProject.AwaitingBuildForWorkspace=Aguardando a constru\u00E7\u00E3o obter um espa\u00E7o de trabalho. -Job.you_must_use_the_save_button_if_you_wish=Voc\u00EA deve usar o bot\u00E3o Salvar se deseja renomear uma tarefa. +UpdateCenter.PluginCategory.listview-column=Lista as colunas da visão +Run._is_waiting_for_a_checkpoint_on_={0} está aguardando por um ponto de verificação em {1} +AbstractBuild.BuildingInWorkspace=\ no espaço de trabalho {0} +Jenkins.IsRestarting=O Jenkins está reiniciando +AbstractProject.AwaitingBuildForWorkspace=Aguardando a construção obter um espaço de trabalho. +Job.you_must_use_the_save_button_if_you_wish=Você deve usar o botão Salvar se deseja renomear uma tarefa. AbstractItem.Pronoun=tarefa AbstractBuild_Building=Construindo Item.CREATE.description=Cria uma tarefa. -Item.READ.description=Ver uma tarefa. (Voc\u00EA pode impedir essa permiss\u00E3o, mas permitir Discover para for\u00E7ar um usu\u00E1rio \ - an\u00F4nimo a entrar no sistema para ver a tarefa) +Item.READ.description=Ver uma tarefa. (Você pode impedir essa permissão, mas permitir Discover para forçar um usuário \ + anônimo a entrar no sistema para ver a tarefa) Run.ArtifactsPermission.Description=\ - Esta permiss\u00E3o concede a habilidade de obter os artefatos produzidos por constru\u00E7\u00F5es. Voc\u00EA pode revogar essa \ - permiss\u00E3o caso n\u00E3o queira que um usu\u00E1rio tenha acesso aos artefatos. -LabelExpression.InvalidBooleanExpression=Express\u00E3o booleana inv\u00E1lida: {0} + Esta permissão concede a habilidade de obter os artefatos produzidos por construções. Você pode revogar essa \ + permissão caso não queira que um usuário tenha acesso aos artefatos. +LabelExpression.InvalidBooleanExpression=Expressão booleana inválida: {0} Cause.UpstreamCause.CausedBy=originalmente causado por: -BuildAuthorizationToken.InvalidTokenProvided=Token inv\u00E1lido fornecido. -TextParameterDefinition.DisplayName=Par\u00E2metro de texto +BuildAuthorizationToken.InvalidTokenProvided=Token inválido fornecido. +TextParameterDefinition.DisplayName=Parâmetro de texto # Downloaded Successfully. Will be activated during the next boot -UpdateCenter.DownloadButNotActivated=Baixa de atualiza\u00E7\u00E3o finalizada com sucesso. Ser\u00E1 ativada na pr\u00F3xima \ - reinicializa\u00E7\u00E3o -Node.LackingBuildPermission={0} n\u00E3o tem permiss\u00E3o para executar em {1} -ResultTrend.NotBuilt=N\u00E3o constru\u00EDdo -Queue.LabelHasNoNodes=N\u00E3o h\u00E1 n\u00F3s com o r\u00F3tulo \u2018{0}\u2019 -Jenkins.CheckDisplayName.DisplayNameNotUniqueWarning=O nome de exibi\u00E7\u00E3o "{0}", est\u00E1 em uso atualmente por outra tarefa \ - e pode causar confus\u00E3o e atraso. -BallColor.NotBuilt=N\u00E3o constru\u00EDdo -AbstractProject.AwaitingWorkspaceToComeOnline=\u00C9 necess\u00E1rio agendar uma nova constru\u00E7\u00E3o para obter um espa\u00E7o de \ - trabalho, mas adiando em {0}ms na esperan\u00E7a que um esteja dispon\u00EDvel em breve +UpdateCenter.DownloadButNotActivated=Baixa de atualização finalizada com sucesso. Será ativada na próxima \ + reinicialização +Node.LackingBuildPermission={0} não tem permissão para executar em {1} +ResultTrend.NotBuilt=Não construído +Queue.LabelHasNoNodes=Não há nós com o rótulo ‘{0}’ +Jenkins.CheckDisplayName.DisplayNameNotUniqueWarning=O nome de exibição "{0}", está em uso atualmente por outra tarefa \ + e pode causar confusão e atraso. +BallColor.NotBuilt=Não construído +AbstractProject.AwaitingWorkspaceToComeOnline=É necessário agendar uma nova construção para obter um espaço de \ + trabalho, mas adiando em {0}ms na esperança que um esteja disponível em breve ResultTrend.Success=Sucesso UpdateCenter.n_a=N/D ResultTrend.Fixed=Resolvido -ResultTrend.NowUnstable=Inst\u00E1vel agora -ResultTrend.Unstable=Inst\u00E1vel -AbstractProject.DownstreamBuildInProgress=Projeto descendente {0} j\u00E1 est\u00E1 em constru\u00E7\u00E3o. +ResultTrend.NowUnstable=Instável agora +ResultTrend.Unstable=Instável +AbstractProject.DownstreamBuildInProgress=Projeto descendente {0} já está em construção. Descriptor.From=(de {0}) AbstractProject.DiscoverPermission.Description=\ - Esta permiss\u00E3o concede o acesso de descoberta de tarefas. Menos que permiss\u00F5es de leitura, permite que voc\u00EA \ - redirecione usu\u00E1rios an\u00F4nimos \u00E0 p\u00E1gina de entrada quando eles tentam acessar a URL de uma tarefa. Sem isso eles \ - receberiam um erro 404 e n\u00E3o conseguiriam descobrir nomes de projetos. -Run.Summary.NotBuilt=N\u00E3o constru\u00EDdos + Esta permissão concede o acesso de descoberta de tarefas. Menos que permissões de leitura, permite que você \ + redirecione usuários anônimos à página de entrada quando eles tentam acessar a URL de uma tarefa. Sem isso eles \ + receberiam um erro 404 e não conseguiriam descobrir nomes de projetos. +Run.Summary.NotBuilt=Não construídos ResultTrend.Failure=Falha AbstractProject.WipeOutPermission.Description=\ - Esta permiss\u00E3o concede a capacidade de eliminar o conte\u00FAdo de um espa\u00E7o de trabalho. + Esta permissão concede a capacidade de eliminar o conteúdo de um espaço de trabalho. ChoiceParameterDefinition.MissingChoices=Exige escolhas. ResultTrend.Aborted=Abortado View.ReadPermission.Description=\ - Esta permiss\u00E3o deixa que usu\u00E1rios vejam views (impl\u00EDcito pela permiss\u00E3o gen\u00E9rica de leitura). -Jenkins.NotAllowedName="{0}" n\u00E3o \u00E9 um nome permitido + Esta permissão deixa que usuários vejam views (implícito pela permissão genérica de leitura). +Jenkins.NotAllowedName="{0}" não é um nome permitido AbstractProject.WorkspaceTitleOnComputer=Workspace {0} em {1} AbstractProject.CancelPermission.Description=\ - Esta permiss\u00E3o permite cancelar uma constru\u00E7\u00E3o agendada ou abortar uma em execu\u00E7\u00E3o. -Jenkins.CheckDisplayName.NameNotUniqueWarning=O nome de exibi\u00E7\u00E3o "{0}", \u00E9 usado por uma tarefa e pode causar confus\u00E3o \ + Esta permissão permite cancelar uma construção agendada ou abortar uma em execução. +Jenkins.CheckDisplayName.NameNotUniqueWarning=O nome de exibição "{0}", é usado por uma tarefa e pode causar confusão \ nos resultados da pesquisa. -AbstractProject.CustomWorkspaceEmpty=O espa\u00E7o de trabalho customizado est\u00E1 vazio. +AbstractProject.CustomWorkspaceEmpty=O espaço de trabalho customizado está vazio. Run.ArtifactsBrowserTitle=Artefatos de {0} {1} -ResultTrend.StillUnstable=Ainda inst\u00E1vel +ResultTrend.StillUnstable=Ainda instável Run.running_as_=Executando como {0} ResultTrend.StillFailing=Ainda falhando -Item.CONFIGURE.description=Mudar a configura\u00E7\u00E3o de uma tarefa. +Item.CONFIGURE.description=Mudar a configuração de uma tarefa. Item.DELETE.description=Excluir uma tarefa. -ParametersDefinitionProperty.DisplayName=Esta constru\u00E7\u00E3o \u00E9 parametrizada +ParametersDefinitionProperty.DisplayName=Esta construção é parametrizada Computer.NoSuchSlaveExistsWithoutAdvice=Nenhum agente "{0}" existe. -Slave.InvalidConfig.NoName=Configura\u00E7\u00E3o de agente inv\u00E1lida. Nome est\u00E1 vazio -ManagementLink.Category.TROUBLESHOOTING=Resolu\u00E7\u00E3o de erros -ManagementLink.Category.STATUS=Informa\u00E7\u00E3o de estado +Slave.InvalidConfig.NoName=Configuração de agente inválida. Nome está vazio +ManagementLink.Category.TROUBLESHOOTING=Resolução de erros +ManagementLink.Category.STATUS=Informação de estado Item.RENAME.description=Renomear uma tarefa -FileParameterValue.IndexTitle=Par\u00E2metros de arquivo -LabelExpression.LabelLink=R\u00F3tulo {1} combina {3,choice,0#no nodes|1#1 node|1<{3} nodes}{4,choice,0#|1# and 1 cloud|1< and {4} clouds}. \ - Permiss\u00F5es e outras restri\u00E7\u00F5es fornecidas por extens\u00F5es pode reduzir ainda mais essa lista. +FileParameterValue.IndexTitle=Parâmetros de arquivo +LabelExpression.LabelLink=Rótulo {1} combina {3,choice,0#no nodes|1#1 node|1<{3} nodes}{4,choice,0#|1# and 1 cloud|1< and {4} clouds}. \ + Permissões e outras restrições fornecidas por extensões pode reduzir ainda mais essa lista. AbstractItem.NoSuchJobExistsWithoutSuggestion=Nenhuma tarefa '{0}' existe. UpdateCenter.PluginCategory.groovy-related=Relacionado ao Groovy Queue.FinishedWaiting=Terminou de aguardar -Slave.Remote.Relative.Path.Warning=Voc\u00EA tem certeza de que quer usar um caminho relativo para o sistema de arquivos \ - raiz? Perceba que caminhos relativos requerem que voc\u00EA tenha certeza que o lan\u00E7ador selecionado provenha um \ - diret\u00F3rio atual consistente. Usar um caminho absoluto \u00E9 altamente recomend\u00E1vel. -LabelExpression_ObsoleteMasterLabel=Esta express\u00E3o inclui o r\u00F3tulo mestre que n\u00E3o \u00E9 mais utilizado. \ +Slave.Remote.Relative.Path.Warning=Você tem certeza de que quer usar um caminho relativo para o sistema de arquivos \ + raiz? Perceba que caminhos relativos requerem que você tenha certeza que o lançador selecionado provenha um \ + diretório atual consistente. Usar um caminho absoluto é altamente recomendável. +LabelExpression_ObsoleteMasterLabel=Esta expressão inclui o rótulo mestre que não é mais utilizado. \ Utilize embutido no lugar. \ Veja \ - mais informa\u00E7\u00F5es. + mais informações. Hudson.MustBeAtLeast=Precisa ser {0} ou maior -Queue.ExceptionCanRun=Exce\u00E7\u00E3o de avalia\u00E7\u00E3o se a fila pode executar a tarefa +Queue.ExceptionCanRun=Exceção de avaliação se a fila pode executar a tarefa MultiStageTimeSeries.EMPTY_STRING= -TimeZoneProperty.DisplayName=Fuso hor\u00E1rio definido pelo usu\u00E1rio -UpdateCenter.PluginCategory.theme=Temas de interface de usu\u00E1rio -Node.Mode.NORMAL=Usar este n\u00F3 o m\u00E1ximo poss\u00EDvel +TimeZoneProperty.DisplayName=Fuso horário definido pelo usuário +UpdateCenter.PluginCategory.theme=Temas de interface de usuário +Node.Mode.NORMAL=Usar este nó o máximo possível UpdateCenter.PluginCategory.database=Banco de dados -CLI.online-node.shortDescription=Continue usando o n\u00F3 para realizar constru\u00E7\u00F5es para cancelar o comando anterior de \ - "n\u00F3 fora de servi\u00E7o". +CLI.online-node.shortDescription=Continue usando o nó para realizar construções para cancelar o comando anterior de \ + "nó fora de serviço". AbstractItem.FailureToStopBuilds=Falha ao tentar interromper e parar \ {0,choice,1#{0,number,integer} build|1<{0,number,integer} builds} de {1} -Computer.DisconnectPermission.Description=Esta permiss\u00E3o concede aos usu\u00E1rios a capacidade de desconectar agentes ou \ - marcar agentes como temporariamente fora de servi\u00E7o. -ManagementLink.Category.CONFIGURATION=Configura\u00E7\u00E3o de sistema +Computer.DisconnectPermission.Description=Esta permissão concede aos usuários a capacidade de desconectar agentes ou \ + marcar agentes como temporariamente fora de serviço. +ManagementLink.Category.CONFIGURATION=Configuração de sistema Computer.Permissions.Title=Agente UpdateCenter.PluginCategory.dotnet=Desenvolvimento .NET -UpdateCenter.CoreUpdateMonitor.DisplayName=Notifica\u00E7\u00E3o de atualiza\u00E7\u00E3o do Jenkins -LabelExpression.NoMatch_DidYouMean=Nenhum agente/nuvem combina com esta express\u00E3o de r\u00F3tulo. Voc\u00EA quis dizer '{1}' ao \ - inv\u00E9s de '{0}'? -User.IllegalFullname="{0}" est\u00E1 proibido como um nome completo por raz\u00F5es de seguran\u00E7a. -Queue.executor_slot_already_in_use=Abertura para executor j\u00E1 em uso +UpdateCenter.CoreUpdateMonitor.DisplayName=Notificação de atualização do Jenkins +LabelExpression.NoMatch_DidYouMean=Nenhum agente/nuvem combina com esta expressão de rótulo. Você quis dizer '{1}' ao \ + invés de '{0}'? +User.IllegalFullname="{0}" está proibido como um nome completo por razões de segurança. +Queue.executor_slot_already_in_use=Abertura para executor já em uso AbstractItem.TaskNoun=Construir -Queue.node_has_been_removed_from_configuration={0} foi removido da configura\u00E7\u00E3o -ManagementLink.Category.TOOLS=Ferramentas e a\u00E7\u00F5es -Computer.BadChannel=N\u00F3 de agente fora de servi\u00E7o ou n\u00E3o \u00E9 um canal remoto (como o n\u00F3 embutido). +Queue.node_has_been_removed_from_configuration={0} foi removido da configuração +ManagementLink.Category.TOOLS=Ferramentas e ações +Computer.BadChannel=Nó de agente fora de serviço ou não é um canal remoto (como o nó embutido). UpdateCenter.PluginCategory.ios=Desenvolvimento iOS UpdateCenter.PluginCategory.devsecops=DevSecOps -UpdateCenter.PluginCategory.deployment=Implanta\u00E7\u00E3o +UpdateCenter.PluginCategory.deployment=Implantação TimeZoneProperty.current_time_in_=Hora atual em {0}: {1} -Queue.ExceptionCanTake=Exce\u00E7\u00E3o durante avalia\u00E7\u00E3o se o n\u00F3 pode cuidar da tarefa +Queue.ExceptionCanTake=Exceção durante avaliação se o nó pode cuidar da tarefa UpdateCenter.PluginCategory.test=Testando -Api.WrapperParamInvalid=O par\u00E2metro de inv\u00F3lucro pode conter apenas caracteres alfanum\u00E9ricos e tra\u00E7o/ponto/sublinhado. \ +Api.WrapperParamInvalid=O parâmetro de invólucro pode conter apenas caracteres alfanuméricos e traço/ponto/sublinhado. \ O primeiro caractere ter que ser uma letra ou sublinhado. Hudson.MustBeAtMost=Precisa ser {0} ou menos -ItemGroupMixIn.may_not_copy_as_it_contains_secrets_and_=Pode n\u00E3o conseguir copiar {0} j\u00E1 que contem segredos e {1} \ - tem {2}/{3} mas n\u00E3o /{4} -Computer.NoSuchSlaveExists=Nenhum agente "{0}" existe. Voc\u00EA quiser dizer "{1}"? +ItemGroupMixIn.may_not_copy_as_it_contains_secrets_and_=Pode não conseguir copiar {0} já que contem segredos e {1} \ + tem {2}/{3} mas não /{4} +Computer.NoSuchSlaveExists=Nenhum agente "{0}" existe. Você quiser dizer "{1}"? LoadStatistics.Legends.OnlineExecutors=Executores ligados -View.DisplayNameNotUniqueWarning=O nome de exibi\u00E7\u00E3o "{0}" j\u00E1 est\u00E1 em uso por outra vis\u00E3o e pode causar confus\u00E3o e \ +View.DisplayNameNotUniqueWarning=O nome de exibição "{0}" já está em uso por outra visão e pode causar confusão e \ demora. ComputerSet.SpecifySlaveToCopy=Especifique qual agente copiar UpdateCenter.PluginCategory.devops=DevOps @@ -343,57 +343,57 @@ LoadStatistics.Legends.IdleExecutors=Executores ociosos UpdateCenter.PluginCategory.ruby=Desenvolvimento em Ruby UpdateCenter.PluginCategory.agent=Gerenciamento de agente LoadStatistics.Legends.DefinedExecutors=Executores definidos -Run.NotStartedYet=Ainda n\u00E3o iniciado -Computer.ExtendedReadPermission.Description=Esta permiss\u00E3o concede direito para usu\u00E1rios lerem a configura\u00E7\u00E3o do agente. -TimeZoneProperty.current_time_on_server_in_in_proposed_di=Hora atual no servidor {0}: {1}; na exibi\u00E7\u00E3o de zona \ +Run.NotStartedYet=Ainda não iniciado +Computer.ExtendedReadPermission.Description=Esta permissão concede direito para usuários lerem a configuração do agente. +TimeZoneProperty.current_time_on_server_in_in_proposed_di=Hora atual no servidor {0}: {1}; na exibição de zona \ proposta: {2} UpdateCenter.PluginCategory.android=Desenvolvimento em Android -Computer.ConnectPermission.Description=Esta permiss\u00E3o concede direito para usu\u00E1rios se conectarem com agentes ou \ +Computer.ConnectPermission.Description=Esta permissão concede direito para usuários se conectarem com agentes ou \ marcarem agentes com ligados -ManagementLink.Category.UNCATEGORIZED=N\u00E3o categorizado +ManagementLink.Category.UNCATEGORIZED=Não categorizado UpdateCenter.PluginCategory.scala=Desenvolvimento em Scala Hudson.RunScriptsPermission.Description= \ - Descontinuado: por favor use a permiss\u00E3o Global/Administrador no lugar -Computer.CreatePermission.Description=Esta permiss\u00E3o concede o direito de usu\u00E1rios criarem agentes. -TopLevelItemDescriptor.NotApplicableIn={0} itens n\u00E3o s\u00E3o compat\u00EDveis com {1} -UpdateCenter.PluginCategory.security=Seguran\u00E7a + Descontinuado: por favor use a permissão Global/Administrador no lugar +Computer.CreatePermission.Description=Esta permissão concede o direito de usuários criarem agentes. +TopLevelItemDescriptor.NotApplicableIn={0} itens não são compatíveis com {1} +UpdateCenter.PluginCategory.security=Segurança Computer.Caption=Agente {0} -UpdateCenter.DisplayName=Centro de atualiza\u00E7\u00E3o +UpdateCenter.DisplayName=Centro de atualização Jenkins.SystemRead.Description= \ - Esta permiss\u00E3o concede acesso de somente leitura para vastas partes da configura\u00E7\u00E3o global do sistema. -Slave.InvalidConfig.Executors=Configura\u00E7\u00E3o de agente inv\u00E1lida para {0}. N\u00FAmero inv\u00E1lido de executores. + Esta permissão concede acesso de somente leitura para vastas partes da configuração global do sistema. +Slave.InvalidConfig.Executors=Configuração de agente inválida para {0}. Número inválido de executores. UpdateCenter.PluginCategory.python=Desenvolvimento em Python -LabelExpression.NoMatch=Nenhum agente/nuvem combina com esta express\u00E3o de r\u00F3tulo. -Computer.ConfigurePermission.Description=Esta permiss\u00E3o concede direto a usu\u00E1rios o direito de configurar agentes. +LabelExpression.NoMatch=Nenhum agente/nuvem combina com esta expressão de rótulo. +Computer.ConfigurePermission.Description=Esta permissão concede direto a usuários o direito de configurar agentes. ManagementLink.Category.MISC=Outro -User.IllegalUsername="{0}" \u00E9 proibindo como nome de usu\u00E1rio por raz\u00F5es de seguran\u00E7a. -Hudson.TrailingDot=Um nome n\u00E3o pode come\u00E7ar com '.' -UpdateCenter.PluginCategory.parameter=Par\u00E2metros de constru\u00E7\u00E3o +User.IllegalUsername="{0}" é proibindo como nome de usuário por razões de segurança. +Hudson.TrailingDot=Um nome não pode começar com '.' +UpdateCenter.PluginCategory.parameter=Parâmetros de construção Run.running_as_SYSTEM=Rodando como SISTEMA -AbstractItem.NewNameUnchanged=O novo nome \u00E9 igual ao nome atual. -Slave.WindowsSlave=Este \u00E9 um agente Windows -CLI.clear-queue.shortDescription=Limpa a fila de constru\u00E7\u00E3o. -Permalink.LastCompletedBuild=\u00DAltima constru\u00E7\u00E3o completada. +AbstractItem.NewNameUnchanged=O novo nome é igual ao nome atual. +Slave.WindowsSlave=Este é um agente Windows +CLI.clear-queue.shortDescription=Limpa a fila de construção. +Permalink.LastCompletedBuild=Última construção completada. HealthReport.EmptyString= JDK.DisplayName=JDK -TimeZoneProperty.DisplayDefaultTimeZone=Padr\u00E3o -AbstractItem.BeingDeleted={0} est\u00E1 atualmente sendo apagado -Node.BecauseNodeIsNotAcceptingTasks='{0}' n\u00E3o est\u00E1 aceitando tarefas +TimeZoneProperty.DisplayDefaultTimeZone=Padrão +AbstractItem.BeingDeleted={0} está atualmente sendo apagado +Node.BecauseNodeIsNotAcceptingTasks='{0}' não está aceitando tarefas LoadStatistics.Legends.ConnectingExecutors=Executores conectando AbstractProject.PollingVetoed=Sondagem do SCM vetada por {0} Jenkins.Manage.Description= \ - Esta permiss\u00E3o concede a habilidade de configurar partes da configura\u00E7\u00E3o global do sistema \ - onde n\u00E3o se espera que hajam impactos na estabilidade global e de seguran\u00E7a do sistema. -UpdateCenter.PluginCategory.orchestration=Orquestra\u00E7\u00E3o -UpdateCenter.PluginCategory.runcondition=Condi\u00E7\u00F5es de execu\u00E7\u00E3o para a extens\u00E3o Run Condition -ManagementLink.Category.SECURITY=Seguran\u00E7a -Computer.DeletePermission.Description=Esta permiss\u00E3o concede a usu\u00E1rios o direito de apagar agentes existentes. -Computer.BuildPermission.Description=Esta permiss\u00E3o concede a usu\u00E1rios o direito de executar tarefas como eles em \ + Esta permissão concede a habilidade de configurar partes da configuração global do sistema \ + onde não se espera que hajam impactos na estabilidade global e de segurança do sistema. +UpdateCenter.PluginCategory.orchestration=Orquestração +UpdateCenter.PluginCategory.runcondition=Condições de execução para a extensão Run Condition +ManagementLink.Category.SECURITY=Segurança +Computer.DeletePermission.Description=Esta permissão concede a usuários o direito de apagar agentes existentes. +Computer.BuildPermission.Description=Esta permissão concede a usuários o direito de executar tarefas como eles em \ agentes. Slave.Terminated=O agente {0} foi terminado -UpdateCenter.PluginCategory.view=Vis\u00F5es -UpdateCenter.PluginCategory.api-plugin=Biblioteca de extens\u00F5es (para usar com outras extens\u00F5es) +UpdateCenter.PluginCategory.view=Visões +UpdateCenter.PluginCategory.api-plugin=Biblioteca de extensões (para usar com outras extensões) UpdateCenter.PluginCategory.cloud=Provedores de nuvem -LoadStatistics.Legends.AvailableExecutors=Executores dispon\u00EDveis -Slave.UnixSlave=Este \u00E9 um agente Unix -Build.post_build_steps_failed=Passos p\u00F3s-constru\u00E7\u00E3o falharam +LoadStatistics.Legends.AvailableExecutors=Executores disponíveis +Slave.UnixSlave=Este é um agente Unix +Build.post_build_steps_failed=Passos pós-construção falharam diff --git a/core/src/main/resources/hudson/model/Messages_pt_PT.properties b/core/src/main/resources/hudson/model/Messages_pt_PT.properties index be8cf4950ca9..6978146ab722 100644 --- a/core/src/main/resources/hudson/model/Messages_pt_PT.properties +++ b/core/src/main/resources/hudson/model/Messages_pt_PT.properties @@ -1,3 +1,3 @@ ManageJenkinsAction.DisplayName=Gerir o Jenkins -FreeStyleProject.Description=Isto \u00E9 uma caracter\u00EDstica central do Jenkins. Jenkins vai construir o seu projecto, combinando qualquer SCM com qualquer sistema de compila\u00E7\u00E3o e isto pode ser usado mesmo em qualquer outra compila\u00E7\u00E3o de software. +FreeStyleProject.Description=Isto é uma característica central do Jenkins. Jenkins vai construir o seu projecto, combinando qualquer SCM com qualquer sistema de compilação e isto pode ser usado mesmo em qualquer outra compilação de software. diff --git a/core/src/main/resources/hudson/model/Messages_ro.properties b/core/src/main/resources/hudson/model/Messages_ro.properties index 8a8fa99a17cd..c0a2697b2e0e 100644 --- a/core/src/main/resources/hudson/model/Messages_ro.properties +++ b/core/src/main/resources/hudson/model/Messages_ro.properties @@ -1,3 +1,3 @@ ParametersDefinitionProperty.DisplayName=Acest build este parametrizat -FreeStyleProject.Description=Aceasta este func\u021Bionalitatea principal\u0103 a lui Jenkins. Jenkins va construi proiectul dvs, combin\u00E2nd orice SCM cu orice sistem de build-uri, \u0219i aceasta poate fi folosit\u0103 chiar \u0219i la altceva dec\u00E2t build-uri de aplica\u021Bii. +FreeStyleProject.Description=Aceasta este funcÈ›ionalitatea principală a lui Jenkins. Jenkins va construi proiectul dvs, combinând orice SCM cu orice sistem de build-uri, È™i aceasta poate fi folosită chiar È™i la altceva decât build-uri de aplicaÈ›ii. diff --git a/core/src/main/resources/hudson/model/Messages_ru.properties b/core/src/main/resources/hudson/model/Messages_ru.properties index bb551b4c914d..13d4f2b7a250 100644 --- a/core/src/main/resources/hudson/model/Messages_ru.properties +++ b/core/src/main/resources/hudson/model/Messages_ru.properties @@ -20,83 +20,83 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -AbstractBuild.BuildingRemotely=\u0421\u043e\u0431\u0438\u0440\u0430\u0435\u0442\u0441\u044f \u0443\u0434\u0430\u043b\u0435\u043d\u043d\u043e \u043d\u0430 {0} -AbstractBuild.KeptBecause=\u0421\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043e, \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e {0} +AbstractBuild.BuildingRemotely=СобираетÑÑ ÑƒÐ´Ð°Ð»ÐµÐ½Ð½Ð¾ на {0} +AbstractBuild.KeptBecause=Сохранено, потому что {0} -AbstractItem.NewNameInUse=\u0417\u0430\u0434\u0430\u0447\u0430 \u0441 \u0438\u043c\u0435\u043d\u0435\u043c {0} \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442. +AbstractItem.NewNameInUse=Задача Ñ Ð¸Ð¼ÐµÐ½ÐµÐ¼ {0} уже ÑущеÑтвует. -AbstractProject.Pronoun=\u041f\u0440\u043e\u0435\u043a\u0442 -AbstractProject.Aborted=\u041f\u0440\u0435\u0440\u0432\u0430\u043d\u043e -AbstractProject.Disabled=\u0421\u0431\u043e\u0440\u043a\u0430 \u043f\u0440\u0438\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430 -AbstractProject.NoSCM=\u041d\u0435\u0442 \u0421\u0438\u0441\u0442\u0435\u043c\u044b \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044f \u0432\u0435\u0440\u0441\u0438\u0439 -AbstractProject.NoWorkspace=\u0421\u0431\u043e\u0440\u043e\u0447\u043d\u043e\u0439 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u0438 \u043d\u0435\u0442, \u043d\u0435 \u043c\u043e\u0433\u0443 \u043f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f. -AbstractProject.PollingABorted=\u041e\u043f\u0440\u043e\u0441 SCM \u043f\u0440\u0435\u0440\u0432\u0430\u043d -AbstractProject.ScmAborted=\u0412\u044b\u0433\u0440\u0443\u0437\u043a\u0430 \u0438\u0437 SCM \u043f\u0440\u0435\u0440\u0432\u0430\u043d\u0430 -AbstractProject.WorkspaceOffline=\u0421\u0431\u043e\u0440\u043e\u0447\u043d\u0430\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u043d\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430. +AbstractProject.Pronoun=Проект +AbstractProject.Aborted=Прервано +AbstractProject.Disabled=Сборка приоÑтановлена +AbstractProject.NoSCM=Ðет СиÑтемы ÐºÐ¾Ð½Ñ‚Ñ€Ð¾Ð»Ñ Ð²ÐµÑ€Ñий +AbstractProject.NoWorkspace=Сборочной директории нет, не могу проверить обновлениÑ. +AbstractProject.PollingABorted=ÐžÐ¿Ñ€Ð¾Ñ SCM прерван +AbstractProject.ScmAborted=Выгрузка из SCM прервана +AbstractProject.WorkspaceOffline=Ð¡Ð±Ð¾Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð½ÐµÐ´Ð¾Ñтупна. -Api.MultipleMatch=XPath "{0}" \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0438\u043b {1} \u0443\u0437\u043b\u043e\u0432. \ - \u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 XPath \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0434\u043d\u043e\u0439, \u0438\u043b\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 "wrapper" \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0434\u043b\u044f \u0442\u043e\u0433\u043e \u0447\u0442\u043e\u0431\u044b \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u0438\u0445 \u0432 \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442. -Api.NoXPathMatch=XPath {0} \u043d\u0435\u0442 \u0441\u043e\u0432\u043f\u0430\u0434\u0435\u043d\u0438\u0439 +Api.MultipleMatch=XPath "{0}" обнаружил {1} узлов. \ + Создайте XPath который ÑоответÑтвует только одной, или иÑпользуйте "wrapper" параметр запроÑа Ð´Ð»Ñ Ñ‚Ð¾Ð³Ð¾ чтобы объединить их в корневой документ. +Api.NoXPathMatch=XPath {0} нет Ñовпадений -BallColor.Aborted=\u041f\u0440\u0435\u0440\u0432\u0430\u043d\u043e -BallColor.Disabled=\u041f\u0440\u0438\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e -BallColor.Failed=\u041f\u0440\u043e\u0432\u0430\u043b\u0438\u043b\u043e\u0441\u044c -BallColor.InProgress=\u0412 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 -BallColor.Pending=\u041e\u0436\u0438\u0434\u0430\u0435\u0442 -BallColor.Success=\u0423\u0441\u043f\u0435\u0448\u043d\u043e -BallColor.Unstable=\u041D\u0435\u0441\u0442\u0430\u0431\u0438\u043B\u044C\u043D\u044B\u0439 +BallColor.Aborted=Прервано +BallColor.Disabled=ПриоÑтановлено +BallColor.Failed=ПровалилоÑÑŒ +BallColor.InProgress=Ð’ процеÑÑе +BallColor.Pending=Ожидает +BallColor.Success=УÑпешно +BallColor.Unstable=ÐеÑтабильный -Executor.NotAvailable=\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e +Executor.NotAvailable=ÐеизвеÑтно -FreeStyleProject.DisplayName=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0437\u0430\u0434\u0430\u0447\u0443 \u0441\u043e \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0439 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0435\u0439 +FreeStyleProject.DisplayName=Создать задачу Ñо Ñвободной конфигурацией FreeStyleProject.Description=\ - \u042d\u0442\u043e - \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u0438 \u043d\u0430\u0438\u0431\u043e\u043b\u0435\u0435 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u044b\u0439 \u0442\u0438\u043f \u0437\u0430\u0434\u0430\u0447 \u0432 Jenkins. \ - Jenkins \u0431\u0443\u0434\u0435\u0442 \u0441\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u0432\u0430\u0448 \u043f\u0440\u043e\u0435\u043a\u0442, \u043a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u0443\u044f \u043b\u044e\u0431\u0443\u044e SCM \u0441 \u043b\u044e\u0431\u043e\u0439 \u0441\u0431\u043e\u0440\u043e\u0447\u043d\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u043e\u0439. \ - \u0414\u0430\u043d\u043d\u044b\u0439 \u0442\u0438\u043f \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u0432 \u043c\u043e\u0436\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0437\u0430\u0434\u0430\u0447, \u043e\u0442\u043b\u0438\u0447\u043d\u044b\u0445 \u043e\u0442 \u0441\u0431\u043e\u0440\u043a\u0438 \u041f\u041e. - -Hudson.BadPortNumber=\u041d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u043f\u043e\u0440\u0442\u0430: {0} -Hudson.Computer.Caption=\u041c\u0430\u0441\u0442\u0435\u0440 -Hudson.Computer.DisplayName=\u043c\u0430\u0441\u0442\u0435\u0440 -Hudson.ControlCodeNotAllowed=\u0423\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0449\u0438\u0439 \u043a\u043e\u0434 \u043d\u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d: {0} + Это - оÑновной и наиболее универÑальный тип задач в Jenkins. \ + Jenkins будет Ñобирать ваш проект, ÐºÐ¾Ð¼Ð±Ð¸Ð½Ð¸Ñ€ÑƒÑ Ð»ÑŽÐ±ÑƒÑŽ SCM Ñ Ð»ÑŽÐ±Ð¾Ð¹ Ñборочной ÑиÑтемой. \ + Данный тип проектов может иÑпользоватьÑÑ Ð´Ð»Ñ Ð·Ð°Ð´Ð°Ñ‡, отличных от Ñборки ПО. + +Hudson.BadPortNumber=Ðекорректный номер порта: {0} +Hudson.Computer.Caption=МаÑтер +Hudson.Computer.DisplayName=маÑтер +Hudson.ControlCodeNotAllowed=УправлÑющий код не разрешен: {0} Hudson.DisplayName=Jenkins -Hudson.JobAlreadyExists=\u0417\u0430\u0434\u0430\u0447\u0430 \u0441 \u0438\u043c\u0435\u043d\u0435\u043c ''{0}'' \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 -Hudson.NoJavaInPath=java \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430 \u0432 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f\u0445 PATH. \u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e, \u0432\u0430\u043c \u043d\u0443\u0436\u043d\u043e \u0441\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c JDK? -Hudson.NoName=\u0418\u043c\u044f \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u043e -Hudson.NoSuchDirectory=\u0422\u0430\u043a\u043e\u0439 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u0438 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442: {0} -Hudson.NotADirectory={0} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u0435\u0439 -Hudson.NotAPlugin={0} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u043c \u0434\u043b\u044f Jenkins -Hudson.NotJDKDir={0} \u043d\u0435 \u043f\u043e\u0445\u043e\u0436\u0430 \u043d\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044e JDK -Hudson.Permissions.Title=\u041f\u043e\u043b\u043d\u044b\u0435 -Hudson.UnsafeChar=''{0}'' \u043d\u0435\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u044b\u0439 \u0441\u0438\u043c\u0432\u043e\u043b -Hudson.ViewName=\u0412\u0441\u0435 - -Item.Permissions.Title=\u0417\u0430\u0434\u0430\u0447\u0430 - -Job.AllRecentBuildFailed=\u0412\u0441\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0441\u0431\u043e\u0440\u043a\u0438 \u043f\u0440\u043e\u0432\u0430\u043b\u0438\u043b\u0438\u0441\u044c. -Job.BuildStability=\u0421\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0441\u0431\u043e\u0440\u043e\u043a: {0} -Job.NOfMFailed={0} \u0438\u0437 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0445 {1} \u0441\u0431\u043e\u0440\u043e\u043a \u043f\u0440\u043e\u0432\u0430\u043b\u0438\u043b\u0438\u0441\u044c. -Job.NoRecentBuildFailed=\u0421\u0440\u0435\u0434\u0438 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0445 \u0441\u0431\u043e\u0440\u043e\u043a \u043f\u0440\u043e\u0432\u0430\u043b\u0438\u0432\u0448\u0438\u0445\u0441\u044f \u043d\u0435\u0442. -Job.Pronoun=\u041f\u0440\u043e\u0435\u043a\u0442 -Job.minutes=\u043c\u0438\u043d -Job.NoRenameWhileBuilding=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u0442\u044c \u0437\u0430\u0434\u0430\u0447\u0443 \u043f\u0440\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0445 \u0441\u0431\u043e\u0440\u043a\u0430\u0445 - -Queue.BlockedBy=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043e {0} -Queue.InProgress=\u0421\u0431\u043e\u0440\u043a\u0430 \u0443\u0436\u0435 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 -Queue.InQuietPeriod=\u0412\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f \u0437\u0430\u0434\u0435\u0440\u0436\u043a\u0430. \u0417\u0430\u043a\u043e\u043d\u0447\u0438\u0442\u0441\u044f \u0447\u0435\u0440\u0435\u0437 {0} -Queue.Unknown=\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e - -Run.BuildAborted=\u0421\u0431\u043e\u0440\u043a\u0430 \u0431\u044b\u043b\u0430 \u043f\u0440\u0435\u0440\u0432\u0430\u043d\u0430 -Run.MarkedExplicitly=\u043e\u0442\u043c\u0435\u0447\u0435\u043d\u043e \u0434\u043b\u044f \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u043e\u0433\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f -Run.Permissions.Title=\u0417\u0430\u043f\u0443\u0441\u043a -Run.UnableToDelete=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0443\u0434\u0430\u043b\u0438\u0442\u044c {0}: {1} - - -View.Permissions.Title=\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 -Permalink.LastBuild=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u0441\u0431\u043e\u0440\u043a\u0430 -Permalink.LastStableBuild=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u0430\u044f \u0441\u0431\u043e\u0440\u043a\u0430 -Permalink.LastSuccessfulBuild=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u0443\u0441\u043f\u0435\u0448\u043d\u0430\u044f \u0441\u0431\u043e\u0440\u043a\u0430 -Permalink.LastFailedBuild=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u043f\u0440\u043e\u0432\u0430\u043b\u0438\u0432\u0448\u0430\u044f\u0441\u044f \u0441\u0431\u043e\u0440\u043a\u0430 -ManageJenkinsAction.DisplayName=\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c Jenkins -ParametersDefinitionProperty.DisplayName=\u042d\u0442\u043e - \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0441\u0431\u043e\u0440\u043a\u0430 +Hudson.JobAlreadyExists=Задача Ñ Ð¸Ð¼ÐµÐ½ÐµÐ¼ ''{0}'' уже ÑущеÑтвует +Hudson.NoJavaInPath=java не найдена в директориÑÑ… PATH. Возможно, вам нужно Ñконфигурировать JDK? +Hudson.NoName=Ð˜Ð¼Ñ Ð½Ðµ указано +Hudson.NoSuchDirectory=Такой директории не ÑущеÑтвует: {0} +Hudson.NotADirectory={0} не ÑвлÑетÑÑ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸ÐµÐ¹ +Hudson.NotAPlugin={0} не ÑвлÑетÑÑ Ð¿Ð»Ð°Ð³Ð¸Ð½Ð¾Ð¼ Ð´Ð»Ñ Jenkins +Hudson.NotJDKDir={0} не похожа на директорию JDK +Hudson.Permissions.Title=Полные +Hudson.UnsafeChar=''{0}'' небезопаÑный Ñимвол +Hudson.ViewName=Ð’Ñе + +Item.Permissions.Title=Задача + +Job.AllRecentBuildFailed=Ð’Ñе поÑледние Ñборки провалилиÑÑŒ. +Job.BuildStability=СтабильноÑÑ‚ÑŒ Ñборок: {0} +Job.NOfMFailed={0} из поÑледних {1} Ñборок провалилиÑÑŒ. +Job.NoRecentBuildFailed=Среди поÑледних Ñборок провалившихÑÑ Ð½ÐµÑ‚. +Job.Pronoun=Проект +Job.minutes=мин +Job.NoRenameWhileBuilding=Ðевозможно переименовать задачу при активных Ñборках + +Queue.BlockedBy=Заблокировано {0} +Queue.InProgress=Сборка уже в процеÑÑе +Queue.InQuietPeriod=ВыполнÑетÑÑ Ð·Ð°Ð´ÐµÑ€Ð¶ÐºÐ°. ЗакончитÑÑ Ñ‡ÐµÑ€ÐµÐ· {0} +Queue.Unknown=ÐеизвеÑтно + +Run.BuildAborted=Сборка была прервана +Run.MarkedExplicitly=отмечено Ð´Ð»Ñ Ð¿Ð¾ÑтоÑнного Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ +Run.Permissions.Title=ЗапуÑк +Run.UnableToDelete=Ðевозможно удалить {0}: {1} + + +View.Permissions.Title=ПроÑмотр +Permalink.LastBuild=ПоÑледнÑÑ Ñборка +Permalink.LastStableBuild=ПоÑледнÑÑ ÑÑ‚Ð°Ð±Ð¸Ð»ÑŒÐ½Ð°Ñ Ñборка +Permalink.LastSuccessfulBuild=ПоÑледнÑÑ ÑƒÑÐ¿ÐµÑˆÐ½Ð°Ñ Ñборка +Permalink.LastFailedBuild=ПоÑледнÑÑ Ð¿Ñ€Ð¾Ð²Ð°Ð»Ð¸Ð²ÑˆÐ°ÑÑÑ Ñборка +ManageJenkinsAction.DisplayName=ÐаÑтроить Jenkins +ParametersDefinitionProperty.DisplayName=Это - Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð¸Ð·Ð¾Ð²Ð°Ð½Ð½Ð°Ñ Ñборка diff --git a/core/src/main/resources/hudson/model/Messages_sk.properties b/core/src/main/resources/hudson/model/Messages_sk.properties index d3cf7721e0e1..7e778d113167 100644 --- a/core/src/main/resources/hudson/model/Messages_sk.properties +++ b/core/src/main/resources/hudson/model/Messages_sk.properties @@ -1 +1 @@ -ParametersDefinitionProperty.DisplayName=Toto zostavenie je parametrizovan\u00E9 +ParametersDefinitionProperty.DisplayName=Toto zostavenie je parametrizované diff --git a/core/src/main/resources/hudson/model/Messages_sr.properties b/core/src/main/resources/hudson/model/Messages_sr.properties index ec285a88bbe3..5afaf342d29f 100644 --- a/core/src/main/resources/hudson/model/Messages_sr.properties +++ b/core/src/main/resources/hudson/model/Messages_sr.properties @@ -1,288 +1,288 @@ # This file is under the MIT License by authors -AbstractBuild.BuildingRemotely=\u0418\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0441\u0430 \u0434\u0430\u043B\u0435\u043A\u0430 \u043D\u0430 "{0}" -AbstractBuild.BuildingOnMaster=\u0418\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u043D\u0430 \u0433\u043B\u0430\u0432\u043D\u043E\u043C \u0441\u0435\u0440\u0432\u0435\u0440\u0443 -AbstractBuild_Building=\u0418\u0437\u0433\u0440\u0430\u0434\u045A\u0430 -AbstractBuild.BuildingInWorkspace=\u043D\u0430 \u0440\u0430\u0434\u043D\u043E\u043C \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0443 "{0}" -AbstractBuild.KeptBecause=\u041E\u0432\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 \u0458\u0435 \u0441\u0430\u0447\u0443\u0432\u0430\u043D\u043E \u0437\u0431\u043E\u0433 {0}. -AbstractItem.NoSuchJobExists=\u041D\u0435 \u043F\u043E\u0441\u0442\u043E\u0458\u0438 \u0437\u0430\u0434\u0430\u0442\u0430\u043A "{0}". \u0414\u0430 \u043B\u0438 \u0441\u0442\u0435 \u0438\u043C\u0430\u043B\u0438 "{1}"? -AbstractItem.NoSuchJobExistsWithoutSuggestion=\u041D\u0435 \u043F\u043E\u0441\u0442\u043E\u0458\u0438 \u0437\u0430\u0434\u0430\u0442\u0430\u043A \u0441\u0430 \u0438\u043C\u0435\u043D\u043E\u043C "{0}". -AbstractItem.Pronoun=\u043E\u0431\u0458\u0435\u043A\u0430\u0442 -AbstractItem.NewNameInUse=\u0418\u043C\u0435 {0} \u0458\u0435 \u0437\u0430\u0443\u0437\u0435\u0442\u043E. -AbstractProject.NewBuildForWorkspace=\u0417\u0430\u043A\u0430\u0437\u0438\u0432\u0430\u045A\u0435 \u043D\u043E\u0432\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 \u0434\u0430 \u0431\u0438 \u0441\u0435 \u0434\u043E\u0431\u0438\u043E \u043D\u043E\u0432\u0438 \u0440\u0430\u0434\u043D\u0438 \u043F\u0440\u043E\u0441\u0442\u043E\u0440. -AbstractProject.Pronoun=\u041F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 -AbstractProject.AwaitingWorkspaceToComeOnline=\u041F\u043E\u043A\u0440\u0435\u043D\u0438\u0442\u0435 \u043D\u043E\u0432\u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 \u0434\u0430 \u0431\u0438 \u0441\u0442\u0435 \u0434\u043E\u0431\u0438\u043B\u0438 \u0440\u0430\u0434\u043D\u0438 \u043F\u0440\u043E\u0441\u0442\u043E\u0440. \u0427\u0435\u043A\u0430\u045A\u0435 {0}ms \u0441\u0430 \u043D\u0430\u0434\u043E\u043C \u0434\u0430 \u045B\u0435 \u0458\u0435\u043D\u0430\u043D \u0431\u0438\u0442\u0438 \u043E\u0441\u043B\u043E\u0431\u043E\u0452\u0435\u043D. -AbstractProject.AwaitingBuildForWorkspace=\u0427\u0435\u043A\u0430\u045A\u0435 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443, \u0434\u0430 \u0431\u0438 \u0441\u0435 \u0434\u043E\u0431\u0438\u043E \u0440\u0430\u0434\u043D\u0438 \u043F\u0440\u043E\u0441\u0442\u043E\u0440. -AbstractProject.Aborted=\u041F\u0440\u0435\u043A\u0438\u043D\u0443\u0442\u043E -AbstractProject.UpstreamBuildInProgress=\u0418\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 {0}, \u043E\u0434 \u043A\u043E\u0433\u0430 \u0437\u0430\u0432\u0438\u0441\u0438 \u043E\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430, \u0458\u0435 \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u0442. -AbstractProject.DownstreamBuildInProgress=\u0418\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 {0}, \u043A\u043E\u0458\u0438 \u0437\u0430\u0432\u0438\u0441\u0438 \u043D\u0430 \u043E\u0432\u043E\u043C, \u0458\u0435 \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u0430. -AbstractProject.Disabled=\u0418\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0458\u0435 \u043E\u043D\u0435\u043C\u043E\u0433\u0443\u045B\u0435\u043D\u0430 -AbstractProject.NoBuilds=\u041D\u0435 \u043F\u043E\u0441\u0442\u043E\u0458\u0438 \u043D\u0438 \u0458\u0435\u0434\u043D\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430. \u0417\u0430\u043A\u0430\u0437\u0438\u0432\u0430\u045A\u0435 \u043D\u043E\u0432\u0435 \u0443 \u0442\u043E\u043A\u0443. -AbstractProject.NoSCM=\u041D\u0435 \u043F\u043E\u0441\u0442\u043E\u0458\u0438 \u0441\u0438\u0441\u0442\u0435\u043C \u0437\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u0443 \u0438\u0437\u0432\u043E\u0440\u043D\u043E\u0433 \u043A\u043E\u0434\u0430 -AbstractProject.NoWorkspace=\u041D\u0438\u0458\u0435 \u043C\u043E\u0433\u043B\u043E \u0443\u0447\u0438\u0442\u0430\u0442\u0438 \u043D\u0430\u0434\u0433\u0440\u0430\u0434\u045A\u0430 \u0437\u0430\u0448\u0442\u043E \u043D\u0435\u043C\u0430 \u0441\u043B\u043E\u0431\u043E\u0434\u043D\u043E\u0433 \u0440\u0430\u0434\u043D\u043E\u0433 \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0430. +AbstractBuild.BuildingRemotely=Изградња Ñа далека на "{0}" +AbstractBuild.BuildingOnMaster=Изградња на главном Ñерверу +AbstractBuild_Building=Изградња +AbstractBuild.BuildingInWorkspace=на радном проÑтору "{0}" +AbstractBuild.KeptBecause=Ово изградње је Ñачувано због {0}. +AbstractItem.NoSuchJobExists=Ðе поÑтоји задатак "{0}". Да ли Ñте имали "{1}"? +AbstractItem.NoSuchJobExistsWithoutSuggestion=Ðе поÑтоји задатак Ñа именом "{0}". +AbstractItem.Pronoun=објекат +AbstractItem.NewNameInUse=Име {0} је заузето. +AbstractProject.NewBuildForWorkspace=Заказивање нове изградње да би Ñе добио нови радни проÑтор. +AbstractProject.Pronoun=Пројекат +AbstractProject.AwaitingWorkspaceToComeOnline=Покрените нову изградњу да би Ñте добили радни проÑтор. Чекање {0}ms Ñа надом да ће јенан бити оÑлобођен. +AbstractProject.AwaitingBuildForWorkspace=Чекање за изградњу, да би Ñе добио радни проÑтор. +AbstractProject.Aborted=Прекинуто +AbstractProject.UpstreamBuildInProgress=Изградња пројекта {0}, од кога завиÑи ова изградња, је покренут. +AbstractProject.DownstreamBuildInProgress=Изградња пројекта {0}, који завиÑи на овом, је покренута. +AbstractProject.Disabled=Изградња је онемогућена +AbstractProject.NoBuilds=Ðе поÑтоји ни једна изградња. Заказивање нове у току. +AbstractProject.NoSCM=Ðе поÑтоји ÑиÑтем за контролу изворног кода +AbstractProject.NoWorkspace=Ðије могло учитати надградња зашто нема Ñлободног радног проÑтора. UpdateCenter.PluginCategory.devops=DevOps -UpdateCenter.PluginCategory.dotnet=.NET \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u0438\u0440\u0430\u045A\u0435 -UpdateCenter.PluginCategory.database=\u0411\u0430\u0437\u0430 \u043F\u043E\u0434\u0430\u0442\u0430\u043A\u0430 -UpdateCenter.PluginCategory.deployment=\u0418\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430 -UpdateCenter.PluginCategory.external=\u0418\u043D\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u0458\u0430 \u0435\u043A\u0441\u0442\u0435\u0440\u043D\u0438\u043C \u0441\u0435\u0440\u0432\u0438\u0441\u0438\u043C\u0430 \u0438 \u0430\u043B\u0430\u0442\u0438\u043C\u0430 -UpdateCenter.PluginCategory.groovy-related=\u0423 \u0432\u0435\u0437\u0438 \u0441\u0430 Groovy -UpdateCenter.PluginCategory.ios=iOS \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u0438\u0440\u0430\u045A\u0435 -UpdateCenter.PluginCategory.api-plugin=\u0411\u0438\u0431\u043B\u0438\u043E\u0442\u0435\u043A\u0435 \u0437\u0430 \u043C\u043E\u0434\u0443\u043B\u0435 (\u0443 \u043A\u043E\u0440\u0438\u0441\u0442 \u0434\u0440\u0443\u0433\u0438\u0445 \u043C\u043E\u0434\u0443\u043B\u0430) +UpdateCenter.PluginCategory.dotnet=.NET програмирање +UpdateCenter.PluginCategory.database=База података +UpdateCenter.PluginCategory.deployment=ИнÑталација +UpdateCenter.PluginCategory.external=Интеграција екÑтерним ÑервиÑима и алатима +UpdateCenter.PluginCategory.groovy-related=У вези Ñа Groovy +UpdateCenter.PluginCategory.ios=iOS програмирање +UpdateCenter.PluginCategory.api-plugin=Библиотеке за модуле (у кориÑÑ‚ других модула) UpdateCenter.PluginCategory.maven=Maven -UpdateCenter.PluginCategory.cluster=\u0423\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 \u043A\u043B\u0430\u0441\u0442\u0435\u0440\u0430 \u0438 \u0440\u0430\u0441\u043F\u043E\u0434\u0435\u0459\u0435\u043D\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -UpdateCenter.PluginCategory.android=Android \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u0438\u0440\u0430\u045A\u0435 -UpdateCenter.PluginCategory.python=Python \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u0438\u0440\u0430\u045A\u0435 -UpdateCenter.PluginCategory.report=\u0418\u0437\u0432\u0435\u0448\u0442\u0430\u0458\u0438 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -UpdateCenter.PluginCategory.ruby=Ruby \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u0438\u0440\u0430\u045A\u0435 -UpdateCenter.PluginCategory.scm=\u0421\u0438\u0441\u0442\u0435\u043C \u0437\u0430 \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 \u0438\u0437\u0432\u043E\u0440\u043D\u043E\u0433 \u043A\u043E\u0434\u0430 -UpdateCenter.PluginCategory.scala=Scala \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u0438\u0440\u0430\u045A\u0435 -UpdateCenter.PluginCategory.scm-related=\u0412\u0435\u0437\u0430\u043D\u043E \u0441\u0430 \u0441\u0438\u0441\u0442\u0435\u043C\u043E\u043C \u0437\u0430 \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 \u0438\u0437\u0432\u043E\u0440\u043D\u043E\u0433 \u043A\u043E\u0434\u0430 -UpdateCenter.PluginCategory.security=\u0411\u0435\u0437\u0431\u0435\u0434\u043D\u043E\u0441\u0442 -UpdateCenter.PluginCategory.agent=\u041F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0435 \u0438 \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 \u0430\u0433\u0435\u043D\u0430\u0442\u0430 -UpdateCenter.PluginCategory.test=\u0422\u0435\u0441\u0442\u0438\u0440\u0430\u045A\u0435 -UpdateCenter.PluginCategory.trigger=\u0410\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0438 \u0441\u0442\u0430\u0440\u0442 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -\u043D\u0430\u043F\u0430\u0441\u0432\u0430= -AbstractProject.WorkspaceTitle=\u0420\u0430\u0434\u043D\u0438 \u043F\u0440\u043E\u0441\u0442\u043E\u0440 \u043E\u0434 {0} -AbstractProject.WorkspaceTitleOnComputer=\u0420\u0430\u0434\u043D\u0438 \u043F\u0440\u043E\u0441\u0442\u043E\u0440 {0} \u043D\u0430 {1} -AbstractProject.PollingABorted=\u041F\u0440\u043E\u0432\u0435\u0440\u0430 \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 \u0438\u0437\u0432\u043E\u0440\u043D\u043E\u0433 \u043A\u043E\u0434\u0430 \u0458\u0435 \u0443\u043A\u0438\u043D\u0443\u0442\u043E -AbstractProject.PollingVetoed=\u0417\u0430\u0445\u0442\u0435\u0432\u0438 \u043F\u0440\u0435\u043C\u0430 \u0441\u0438\u0441\u0442\u0435\u043C\u0443 \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0430 \u0438\u0437\u0432\u043E\u0440\u043D\u043E\u0433 \u043A\u043E\u0434\u0430 \u0441\u0443 \u043F\u0440\u0438\u0432\u0440\u0435\u043C\u0435\u043D\u043E \u0441\u0443\u0441\u043F\u0435\u043D\u0434\u043E\u0432\u0430\u043D\u0438 \u043E\u0434 \u0441\u0442\u0440\u0430\u043D\u0435 {0}. -AbstractProject.ScmAborted=\u0423\u0447\u0438\u0442\u0430\u0432\u0430\u045A\u0435 \u043E\u0434 \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 \u0438\u0437\u0432\u043E\u0440\u043D\u043E\u0433 \u043A\u043E\u0434\u0430 \u0458\u0435 \u043F\u0440\u0435\u043A\u0438\u043D\u0443\u0442\u043E -AbstractProject.WorkspaceOffline=\u0420\u0430\u0434\u043D\u0438 \u043F\u0440\u043E\u0441\u0442\u043E\u0440 \u0458\u0435 \u043D\u0435\u0434\u043E\u0441\u0442\u0443\u043F\u0430\u043D -AbstractProject.BuildPermission.Description=\u041E\u0432\u0430 \u0434\u043E\u0437\u0432\u043E\u043B\u0430 \u043F\u0440\u0443\u0436\u0438 \u043C\u043E\u0433\u0443\u045B\u043D\u043E\u0441\u0442 \u0434\u0430 \u0441\u0435 \u0437\u0430\u043F\u043E\u0447\u043D\u0435 \u043D\u043E\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430. -AbstractProject.WorkspacePermission.Description=\u041E\u0432\u0430 \u0434\u043E\u0437\u0432\u043E\u043B\u0430 \u043F\u0440\u0443\u0436\u0438 \u043C\u043E\u0433\u0443\u045B\u043D\u043E\u0441\u0442 \u0434\u0430 \u0441\u0435 \u0443\u0447\u0438\u0442\u0430 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0440\u0430\u0434\u043D\u043E\u0433 \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0430. -Computer.Caption=\u0410\u0433\u0435\u043D\u0442 {0} -Computer.NoSuchSlaveExists=\u041D\u043C\u0435\u0430 \u0430\u0433\u0435\u043D\u0442\u0430 "{0}". \u0414\u0430 \u043B\u0438 \u0441\u0442\u0435 \u043C\u0438\u0441\u043B\u0438\u043B\u0438 "{1}" \u0443 \u0432\u0438\u0434\u0443? -AbstractProject.ExtendedReadPermission.Description=\u041E\u0432\u043E \u043F\u0440\u0430\u0432\u043E \u0434\u0430\u0458\u0435 \u043F\u0440\u0438\u0441\u0442\u0443\u043F \u043D\u0430 \u0447\u0438\u0442\u0430\u045A\u0435 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u045A\u0430 \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442\u0430, \u0430 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0434\u043E\u0432\u0435\u0434\u0435 \u0434\u043E \u0448\u0438\u0440\u0435\u045A\u0435 \u0442\u0430\u0458\u043D\u0438 \u043A\u043E\u0458\u0435 \u0441\u0435 \u043D\u0430\u043B\u0430\u0437\u0435 \u043F\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0438 \u043A\u0430\u043E, \u043D\u0430 \u043F\u0440\u0438\u043C\u0435\u0440, \u043B\u043E\u0437\u0438\u043D\u043A\u0435. -AbstractProject.DiscoverPermission.Description=\u041E\u0432\u043E \u0434\u0430\u0458\u0435 \u043F\u0440\u0430\u0432\u043E \u043D\u0430 \u043E\u0442\u043A\u0440\u0438\u0432\u0430\u045A\u0435 \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0430, \u043A\u043E\u0458\u0438 \u043E\u043C\u043E\u0433\u0443\u045B\u0430\u0432\u0430 \u043F\u0440\u0435\u0443\u0441\u043C\u0435\u0440\u0430\u0432\u0430\u045A\u0435 \u0430\u043D\u043E\u043D\u0438\u043C\u043D\u0435 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0435 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0443 \u0437\u0430 \u043F\u0440\u0438\u0458\u0430\u0432\u0443 \u043A\u0430\u0434\u0430 \u0431\u0443\u0434\u0443 \u043F\u043E\u043A\u0443\u0448\u0430\u0432\u0430\u043B\u0438 \u0434\u0430 \u043E\u0442\u0432\u043E\u0440\u0435 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0443 \u043E\u0434\u0440\u0435\u0452\u0435\u043D\u043E\u0433 \u0437\u0430\u0434\u0430\u0442\u043A\u0430. \u0410\u043A\u043E \u043D\u0435\u043C\u0430\u0458\u0443 \u0434\u043E\u0432\u043B\u0430\u045B\u0435\u045A\u0435 \u043E\u043D\u0438 \u045B\u0435 \u0431\u0438\u0442\u0438 \u043F\u0440\u0435\u0443\u0441\u043C\u0435\u0440\u0435\u043D\u0438 \u0433\u0440\u0435\u0448\u0446\u0438 404 \u0438 \u043D\u0435\u045B\u0435 \u043C\u043E\u045B\u0438 \u043F\u0440\u0438\u0441\u0442\u0443\u043F\u0438\u0442\u0438 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u043E\u043C. -AbstractProject.WipeOutPermission.Description=\u041E\u0432\u043E \u0434\u0430\u0458\u0435 \u043F\u0440\u0430\u0432\u043E \u0434\u0430 \u0443\u043A\u043B\u043E\u043D\u0438\u0442\u0435 \u0441\u0430\u0432 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0440\u0430\u0434\u043D\u043E\u0433 \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0430. -AbstractProject.CancelPermission.Description=\u041E\u0432\u043E \u0434\u0430\u0458\u0435 \u043F\u0440\u0430\u0432\u043E \u0434\u0430 \u043E\u0442\u043A\u0430\u0436\u0435\u0442\u0435 \u043F\u043B\u0430\u043D\u0438\u0440\u0430\u043D\u0435 \u0438 \u0437\u0430\u0443\u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435. -AbstractProject.CustomWorkspaceEmpty=\u041F\u0440\u0438\u043B\u0430\u0433\u043E\u0452\u0435\u043D\u0438 \u0440\u0430\u0434\u043D\u0438 \u043F\u0440\u043E\u0441\u0442\u043E\u0440 \u0458\u0435 \u043F\u0440\u0430\u0437\u0430\u043D. -Api.MultipleMatch=\u0418\u0437\u0440\u0430\u0437 \u043A\u0440\u043E\u0437 XPath "{0}" \u043E\u0434\u0433\u043E\u0432\u0430\u0440\u0430 \u043C\u0430\u0448\u0438\u043D\u0438 {1}. \u0423\u043D\u0435\u0441\u0438\u0442\u0435 \u0438\u0437\u0440\u0430\u0437 \u0438\u043B\u0438 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0430\u0440 "wrapper", \u0434\u0430 \u0438\u0445 \u0441\u0432\u0435 \u043F\u043E\u043A\u0440\u0438\u0458\u0435 \u0433\u043B\u0430\u0432\u043D\u0438 \u0435\u043B\u0435\u043C\u0435\u043D\u0442. -Api.NoXPathMatch=\u0418\u0437\u0440\u0430\u0437 \u043A\u0440\u043E\u0437 XPath "{0}" \u043D\u0438\u0458\u0435 \u043D\u0430\u0448\u0430\u043E \u043D\u0438 \u0458\u0435\u0434\u043D\u0443 \u043C\u0430\u0448\u0438\u043D\u0443. -BallColor.Aborted=\u041E\u0442\u043A\u0430\u0437\u0430\u043D\u043E -BallColor.Disabled=\u041E\u043D\u0435\u043C\u043E\u0433\u0443\u045B\u0435\u043D\u043E -BallColor.Failed=\u041D\u0438\u0458\u0435 \u0443\u0441\u043F\u0435\u043B\u043E -BallColor.InProgress=\u0423 \u0442\u043E\u043A\u0443 -BallColor.NotBuilt=\u041D\u0435\u0438\u0437\u0433\u0440\u0430\u0452\u0435\u043D\u043E -BallColor.Pending=\u041E\u0447\u0435\u043A\u0443\u0458\u0435 -BallColor.Success=\u0423\u0441\u043F\u0435\u0448\u043D\u043E -BallColor.Unstable=\u041D\u0435\u0441\u0442\u0430\u0431\u0438\u043B\u043D\u043E -Build.post_build_steps_failed=\u041A\u043E\u0440\u0430\u0446\u0438 \u043F\u043E\u0441\u043B\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 \u043D\u0438\u0441\u0443 \u0443\u0441\u043F\u0435\u043B\u0435 -CLI.clear-queue.shortDescription=\u0418\u0437\u045B\u0438\u0441\u0442\u0438 \u0440\u0435\u0434 \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0430 -CLI.online-node.shortDescription=\u041D\u0430\u0441\u0442\u0430\u0432\u0438 \u043A\u043E\u0440\u0438\u0441\u0442\u0435\u045B\u0438 \u043C\u0430\u0448\u0438\u043D\u0435 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 \u0434\u0430 \u0431\u0438 \u0441\u0442\u0435 \u043F\u043E\u043D\u0438\u0448\u0442\u0438\u043B\u0438 \u043F\u0440\u0435\u0442\u0445\u043E\u0434\u043D\u0443 \u043A\u043E\u043C\u0430\u043D\u0434\u0443\ +UpdateCenter.PluginCategory.cluster=Управљање клаÑтера и раÑподељено изградње +UpdateCenter.PluginCategory.android=Android програмирање +UpdateCenter.PluginCategory.python=Python програмирање +UpdateCenter.PluginCategory.report=Извештаји изградње +UpdateCenter.PluginCategory.ruby=Ruby програмирање +UpdateCenter.PluginCategory.scm=СиÑтем за управљање изворног кода +UpdateCenter.PluginCategory.scala=Scala програмирање +UpdateCenter.PluginCategory.scm-related=Везано Ñа ÑиÑтемом за управљање изворног кода +UpdateCenter.PluginCategory.security=БезбедноÑÑ‚ +UpdateCenter.PluginCategory.agent=Покретање и управљање агената +UpdateCenter.PluginCategory.test=ТеÑтирање +UpdateCenter.PluginCategory.trigger=ÐутоматÑки Ñтарт изградње +напаÑва= +AbstractProject.WorkspaceTitle=Радни проÑтор од {0} +AbstractProject.WorkspaceTitleOnComputer=Радни проÑтор {0} на {1} +AbstractProject.PollingABorted=Провера ÑиÑтема управљање изворног кода је укинуто +AbstractProject.PollingVetoed=Захтеви према ÑиÑтему управљања изворног кода Ñу привремено ÑуÑпендовани од Ñтране {0}. +AbstractProject.ScmAborted=Учитавање од ÑиÑтема управљање изворног кода је прекинуто +AbstractProject.WorkspaceOffline=Радни проÑтор је недоÑтупан +AbstractProject.BuildPermission.Description=Ова дозвола пружи могућноÑÑ‚ да Ñе започне нова изградња. +AbstractProject.WorkspacePermission.Description=Ова дозвола пружи могућноÑÑ‚ да Ñе учита Ñадржај радног проÑтора. +Computer.Caption=Ðгент {0} +Computer.NoSuchSlaveExists=Ðмеа агента "{0}". Да ли Ñте миÑлили "{1}" у виду? +AbstractProject.ExtendedReadPermission.Description=Ово право даје приÑтуп на читање подешавња пројеката, а може да доведе до ширење тајни које Ñе налазе по изградњи као, на пример, лозинке. +AbstractProject.DiscoverPermission.Description=Ово даје право на откривање задатака, који омогућава преуÑмеравање анонимне кориÑнике на Ñтраницу за пријаву када буду покушавали да отворе Ñтраницу одређеног задатка. Ðко немају довлаћење они ће бити преуÑмерени грешци 404 и неће моћи приÑтупити пројектом. +AbstractProject.WipeOutPermission.Description=Ово даје право да уклоните Ñав Ñадржај радног проÑтора. +AbstractProject.CancelPermission.Description=Ово даје право да откажете планиране и зауÑтавите покренуте изградње. +AbstractProject.CustomWorkspaceEmpty=Прилагођени радни проÑтор је празан. +Api.MultipleMatch=Израз кроз XPath "{0}" одговара машини {1}. УнеÑите израз или параметар "wrapper", да их Ñве покрије главни елемент. +Api.NoXPathMatch=Израз кроз XPath "{0}" није нашао ни једну машину. +BallColor.Aborted=Отказано +BallColor.Disabled=Онемогућено +BallColor.Failed=Ðије уÑпело +BallColor.InProgress=У току +BallColor.NotBuilt=Ðеизграђено +BallColor.Pending=Очекује +BallColor.Success=УÑпешно +BallColor.Unstable=ÐеÑтабилно +Build.post_build_steps_failed=Кораци поÑле изградње ниÑу уÑпеле +CLI.clear-queue.shortDescription=ИзћиÑти ред задатака +CLI.online-node.shortDescription=ÐаÑтави кориÑтећи машине за изградњу да би Ñте поништили претходну команду\ "offline-node". -Computer.Permissions.Title=\u0410\u0433\u0435\u043D\u0442 -Computer.NoSuchSlaveExistsWithoutAdvice=\ \u041D\u0435\u043C\u0430 \u0430\u0433\u0435\u043D\u0442\u0430 {0} -Computer.ExtendedReadPermission.Description=\u041E\u0432\u043E \u0434\u043E\u0437\u0432\u043E\u0459\u0430\u0432\u0430 \u0434\u0430 \u043A\u043E\u0440\u0438\u043D\u0438\u0446\u0438 \u043F\u0440\u043E\u0447\u0438\u0442\u0430\u0458\u0443 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0430\u0433\u0435\u043D\u0430\u0442\u0430. -Computer.ConfigurePermission.Description=\u041E\u0432\u043E \u0434\u0430\u0458\u0435 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438\u043C\u0430 \u043F\u0440\u0430\u0432\u043E \u0434\u0430 \u043F\u043E\u0441\u0442\u0430\u0432\u0435 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0430\u0433\u0435\u043D\u0430\u0442\u0430. -Computer.DeletePermission.Description=\u041E\u0432\u043E \u0434\u0430\u0458\u0435 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438\u043C\u0430 \u043F\u0440\u0430\u0432\u043E \u0434\u0430 \u0431\u0440\u0438\u0448\u0443 \u0430\u0433\u0435\u043D\u0442\u0435. -Computer.CreatePermission.Description=\u041E\u0432\u043E \u0434\u0430\u0458\u0435 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438\u043C\u0430 \u043F\u0440\u0430\u0432\u043E \u0434\u0430 \u043F\u043E\u0441\u0442\u0430\u0432\u0435 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0430\u0433\u0435\u043D\u0430\u0442\u0430. -Computer.ConnectPermission.Description=\u041E\u0432\u043E \u0434\u0430\u0458\u0435 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438\u043C\u0430 \u043F\u0440\u0430\u0432\u043E \u0434\u0430 \u043F\u043E\u0432\u0435\u0436\u0443 \u0430\u0433\u0435\u043D\u0442\u0435 \u0438\u043B\u0438 \u0438\u0445 \u043E\u0437\u043D\u0430\u0447\u0435 \u043F\u043E\u0432\u0435\u0437\u0430\u043D\u0438\u043C. -Computer.DisconnectPermission.Description=\u041E\u0432\u043E \u0434\u0430\u0458\u0435 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438\u043C\u0430 \u043F\u0440\u0430\u0432\u043E \u0434\u0430 \u043E\u0442\u043A\u043E\u043F\u0447\u0430\u0458\u0443 \u0430\u0433\u0435\u043D\u0442\u0435 \u0438\u043B\u0438 \u043E\u0437\u043D\u0430\u0447\u0435 \u043F\u0440\u0438\u0432\u0440\u0435\u043C\u0435\u043C\u043E \u043D\u0435\u043F\u043E\u0432\u0435\u0437\u0430\u043D\u0438\u043C. -Computer.BuildPermission.Description=\u041E\u0432\u043E \u0434\u0430\u0458\u0435 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438\u043C\u0430 \u043F\u0440\u0430\u0432\u043E \u0434\u0430 \u043F\u043E\u043A\u0440\u0435\u043D\u0443 \u0437\u0430\u0434\u0430\u0442\u043A\u0435 \u0441\u0430 \u0441\u0432\u043E\u0458\u0438\u043C \u0438\u043C\u0435\u043D\u0438\u043C\u0430. -ComputerSet.NoSuchSlave=\u041D\u0435\u043C\u0430 \u0430\u0433\u0435\u043D\u0442\u0430 {0} -Computer.BadChannel=\u041C\u0430\u0448\u0438\u043D\u0430 \u0430\u0433\u0435\u043D\u0442\u0430 \u043D\u0438\u0458\u0435 \u043F\u043E\u0432\u0435\u0437\u0430\u043D\u0430 \u0438\u043B\u0438 \u043D\u0438\u0458\u0435 \u0434\u0430\u0459\u0438\u043D\u0441\u043A\u0438 \u043A\u0430\u043D\u0430\u043B (\u043A\u0430\u043E \u043D\u0430 \u043F\u0440\u0438\u043C\u0435\u0440 \u0448\u0442\u043E \u0458\u0435 \u0433\u043B\u0430\u0432\u043D\u0430 \u043C\u0430\u0448\u0438\u043D\u0430) -ComputerSet.SlaveAlreadyExists=\u0412\u0435\u045B \u043F\u043E\u0441\u0442\u043E\u0458\u0438 \u0430\u0433\u0435\u043D\u0442 \u0441\u0430 \u0438\u043C\u0435\u043D\u043E\u043C {0} -ComputerSet.SpecifySlaveToCopy=\u041E\u0434\u0440\u0435\u0434\u0438\u0442\u0435 \u0430\u0433\u0435\u043D\u0442 \u0437\u0430 \u043A\u043E\u043F\u0438\u0440\u0430\u045A\u0435 -ComputerSet.DisplayName=\u0420\u0430\u0447\u0443\u043D\u0430\u0440\u0438 -Descriptor.From=(\u043E\u0434 {0}) -Executor.NotAvailable=\u041D/\u0414 -FreeStyleProject.DisplayName=\u041D\u0435\u0437\u0430\u0432\u0438\u0441\u043D\u0438 \u0437\u0430\u0434\u0430\u0442\u0430\u043A -FreeStyleProject.Description=\u041E\u0432\u043E \u0458\u0435 \u043E\u0441\u043D\u043E\u0432\u043D\u0430 \u0444\u0443\u043D\u043A\u0446\u0438\u043E\u043D\u0430\u043B\u043D\u043E\u0441\u0442 Jenkins-\u0430. Jenkins \u043C\u043E\u0436\u0435 \u0434\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u0438 \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 \u043A\u043E\u0440\u0438\u0441\u0442\u0435\u045B\u0438 \u0431\u0438\u043B\u043E \u043A\u043E\u0433 \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 \u0438\u0437\u0432\u043E\u0440\u043D\u043E\u0433 \u043A\u043E\u0434\u0430 \u0438 \u0438\u0437\u0433\u0440\u0430\u0434\u043D\u0438\u043C \u0441\u0438\u0441\u0442\u0435\u043C\u043E\u043C. \u0422\u0430\u043A\u043E \u043C\u043E\u0436\u0435\u0442\u0435 \u043A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0435 Jenkins \u0437\u0430 \u0440\u0430\u0437\u043B\u0438\u0447\u0438\u0442\u0435 \u0441\u0432\u0440\u0445\u0435. +Computer.Permissions.Title=Ðгент +Computer.NoSuchSlaveExistsWithoutAdvice=\ Ðема агента {0} +Computer.ExtendedReadPermission.Description=Ово дозвољава да кориници прочитају подешавања агената. +Computer.ConfigurePermission.Description=Ово даје кориÑницима право да поÑтаве подешавања агената. +Computer.DeletePermission.Description=Ово даје кориÑницима право да бришу агенте. +Computer.CreatePermission.Description=Ово даје кориÑницима право да поÑтаве подешавања агената. +Computer.ConnectPermission.Description=Ово даје кориÑницима право да повежу агенте или их означе повезаним. +Computer.DisconnectPermission.Description=Ово даје кориÑницима право да откопчају агенте или означе привремемо неповезаним. +Computer.BuildPermission.Description=Ово даје кориÑницима право да покрену задатке Ñа Ñвојим именима. +ComputerSet.NoSuchSlave=Ðема агента {0} +Computer.BadChannel=Машина агента није повезана или није даљинÑки канал (као на пример што је главна машина) +ComputerSet.SlaveAlreadyExists=Већ поÑтоји агент Ñа именом {0} +ComputerSet.SpecifySlaveToCopy=Одредите агент за копирање +ComputerSet.DisplayName=Рачунари +Descriptor.From=(од {0}) +Executor.NotAvailable=Ð/Д +FreeStyleProject.DisplayName=ÐезавиÑни задатак +FreeStyleProject.Description=Ово је оÑновна функционалноÑÑ‚ Jenkins-а. Jenkins може да изгради пројекат кориÑтећи било ког ÑиÑтема управљање изворног кода и изградним ÑиÑтемом. Тако можете кориÑтите Jenkins за различите Ñврхе. HealthReport.EmptyString= -Hudson.BadPortNumber=\u041F\u043E\u0433\u0440\u0435\u0448\u0430\u043D \u0431\u0440\u043E\u0458 \u043F\u043E\u0440\u0442\u0430 {0} -Hudson.Computer.Caption=\u0413\u043B\u0430\u0432\u043D\u0430 -Hudson.Computer.DisplayName=\u0433\u043B\u0430\u0432\u043D\u0430 \u043C\u0430\u0448\u0438\u043D\u0430 -Hudson.ControlCodeNotAllowed=\u041A\u043E\u043D\u0442\u0440\u043E\u043B\u043D\u0438 \u043A\u043E\u0434 \u043D\u0438\u0458\u0435 \u0434\u043E\u0437\u0432\u043E\u0459\u0435\u043D: {0} -Hudson.JobAlreadyExists=\u0412\u0435\u045B \u043F\u043E\u0441\u0442\u043E\u0458\u0438 \u0437\u0430\u0434\u0430\u0442\u0430\u043A \u0441\u0430 \u0438\u043C\u0435\u043D\u043E\u043C \u2018{0}\u2019 +Hudson.BadPortNumber=Погрешан број порта {0} +Hudson.Computer.Caption=Главна +Hudson.Computer.DisplayName=главна машина +Hudson.ControlCodeNotAllowed=Контролни код није дозвољен: {0} +Hudson.JobAlreadyExists=Већ поÑтоји задатак Ñа именом ‘{0}’ Hudson.DisplayName=Jenkins -Hudson.NoJavaInPath=java \u043D\u0438\u0458\u0435 \u043F\u0440\u043E\u043D\u0430\u0452\u0435\u043D \u0443 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C\u0430 PATH-\u0430. \u041C\u043E\u0436\u0434\u0430 \u0431\u0438 \u0442\u0440\u0435\u0431\u0430\u043B\u0438 \u0434\u0430 \u043F\u043E\u0441\u0442\u0430\u0432\u0438\u0442\u0435 JDK? -Hudson.NoName=\u041D\u0438\u0458\u0435 \u043D\u0430\u0432\u0435\u0434\u0435\u043D\u043E \u0438\u043C\u0435. -Hudson.NoSuchDirectory=\u041D\u0435\u043C\u0430 \u0434\u0438\u0440\u0435\u0434\u043A\u043E\u0440\u0438\u0458\u0443\u043C\u0430 \u0441\u0430 \u0438\u043C\u0435\u043D\u043E\u043C {0} -Hudson.NodeBeingRemoved=\u041C\u0430\u0448\u0438\u043D\u0430 \u0441\u0435 \u0431\u0440\u0438\u0448\u0435 -Hudson.NotAPlugin={0} \u043D\u0438\u0458\u0435 \u0432\u0440\u0441\u0442\u0430 \u043C\u043E\u0434\u0443\u043B\u0435 \u0437\u0430 Jenkins -Hudson.NotJDKDir={0} \u043D\u0438\u0458\u0435 JDK \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C -Hudson.USER_CONTENT_README=\u0414\u0430\u0442\u043E\u0442\u0435\u043A\u0443 \u0443 \u043E\u0432\u043E\u043C \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C\u0443 \u045B\u0435 \u0431\u0438\u0442\u0438 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0438 \u043F\u0443\u0442\u0435\u043C \u0430\u0434\u0440\u0435\u0441\u0438 http://server/jenkins/userContent/ -Hudson.Permissions.Title=\u041E\u043F\u0448\u0442\u0435 -Hudson.UnsafeChar=\u041E\u043F\u0430\u0441\u043D\u043E \u0458\u0435 \u043A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0438 \u0437\u043D\u0430\u043A \u2018{0}\u2019 -Hudson.ViewAlreadyExists=\u0412\u0435\u045B \u043F\u043E\u0441\u0442\u043E\u0458\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 \u0441\u0430 \u0438\u043C\u0435\u043D\u043E\u043C "{0}" -Hudson.ViewName=\u0421\u0432\u0435 -Hudson.NotANumber=\u041D\u0438\u0458\u0435 \u0431\u0440\u043E\u0458\u043A\u0430 -Hudson.NotAPositiveNumber=\u041D\u0438\u0458\u0435 \u043F\u043E\u0437\u0438\u0442\u0438\u0432\u0430\u043D \u0431\u0440\u043E\u0458. -Hudson.NotANonNegativeNumber=\u0411\u0440\u043E\u0458 \u043D\u0435\u043C\u043E\u0436\u0435 \u0431\u0438\u0442\u0438 \u043D\u0435\u0433\u0430\u0442\u0438\u0432\u0430\u043D. -Hudson.NotANegativeNumber=\u041D\u0438\u0458\u0435 \u043D\u0435\u0433\u0430\u0442\u0438\u0432\u0430\u043D \u0431\u0440\u043E\u0458. -Hudson.NotUsesUTF8ToDecodeURL=URL \u0430\u0434\u0440\u0435\u0441\u0435 \u0432\u0430\u0448\u0435\u0433 \u043A\u043E\u043D\u0442\u0435\u0458\u043D\u0435\u0440\u0430 \u043D\u0438\u0441\u0443 \u0443\u043D\u0435\u0448\u0435\u043D\u0438 \u043F\u043E \u0444\u043E\u0440\u043C\u0430\u0442\u0443 UTF-8. \u0418\u043C\u0435\u043D\u0430 \u0441\u0430 \u0437\u043D\u0430\u0446\u0438\u043C\u0430 \u0438\u0437\u0432\u0430\u043D ASCII \u043C\u043E\u0433\u0443 \u0438\u0437\u0430\u0437\u0432\u0430\u0442\u0438 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0435. \u041C\u043E\u043B\u0438\u043C\u043E \u0432\u0430\u0441 \u043F\u0440\u043E\u0447\u0438\u0442\u0430\u0458\u0442\u0435 Containers \u0438 \ +Hudson.NoJavaInPath=java није пронађен у директоријума PATH-а. Можда би требали да поÑтавите JDK? +Hudson.NoName=Ðије наведено име. +Hudson.NoSuchDirectory=Ðема диредкоријума Ñа именом {0} +Hudson.NodeBeingRemoved=Машина Ñе брише +Hudson.NotAPlugin={0} није врÑта модуле за Jenkins +Hudson.NotJDKDir={0} није JDK директоријум +Hudson.USER_CONTENT_README=Датотеку у овом директоријуму ће бити доÑтупни путем адреÑи http://server/jenkins/userContent/ +Hudson.Permissions.Title=Опште +Hudson.UnsafeChar=ОпаÑно је кориÑтити знак ‘{0}’ +Hudson.ViewAlreadyExists=Већ поÑтоји преглед Ñа именом "{0}" +Hudson.ViewName=Све +Hudson.NotANumber=Ðије бројка +Hudson.NotAPositiveNumber=Ðије позитиван број. +Hudson.NotANonNegativeNumber=Број неможе бити негативан. +Hudson.NotANegativeNumber=Ðије негативан број. +Hudson.NotUsesUTF8ToDecodeURL=URL адреÑе вашег контејнера ниÑу унешени по формату UTF-8. Имена Ñа знацима изван ASCII могу изазвати проблеме. Молимо Ð²Ð°Ñ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ˜Ñ‚Ðµ Containers и \ Tomcat i18n. -Hudson.AdministerPermission.Description=\u0414\u0430\u0458\u0435 \u043F\u0440\u0430\u0432\u043E \u0434\u0430 \u043C\u0435\u045A\u0430 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0441\u0438\u0441\u0442\u0435\u043C\u0430, \u043A\u0430\u043E \u0438 \u043A\u043E\u043C\u043F\u043B\u0435\u0442\u0430\u043D \u043F\u0440\u0438\u0441\u0442\u0443\u043F \u043B\u043E\u043A\u0430\u043B\u043D\u043E\u0433 \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u0443 \u0458\u0435\u0434\u043D\u0430\u043A\u0435 \u043F\u043E \u043E\u043A\u0432\u0438\u0440\u0443 \u043F\u0440\u0430\u0432\u0430 \u0443 \u0441\u043A\u043B\u0430\u0434\u0443 \u0441\u0430 \u043E\u043F\u0435\u0440\u0430\u0442\u0438\u0432\u043D\u0438 \u0441\u0438\u0441\u0442\u0435\u043C\u043E\u043C. +Hudson.AdministerPermission.Description=Даје право да мења подешавања ÑиÑтема, као и комплетан приÑтуп локалног ÑиÑтема датотека у једнаке по оквиру права у Ñкладу Ñа оперативни ÑиÑтемом. Hudson.ReadPermission.Description= -Hudson.NodeDescription=\u0433\u043B\u0430\u0432\u043D\u0430 Jenkins \u043C\u0430\u0448\u0438\u043D\u0430 -Item.CREATE.description=\u041A\u0440\u0435\u0438\u0440\u0430\u0458 \u043D\u043E\u0432\u0438 \u0437\u0430\u0434\u0430\u0442\u0430\u043A -Item.Permissions.Title=\u0417\u0430\u0434\u0430\u0442\u0430\u043A -Item.DELETE.description=\u0423\u043A\u043B\u043E\u043D\u0438 \u0437\u0430\u0434\u0430\u0442\u0430\u043A -Item.CONFIGURE.description=\u041F\u0440\u043E\u043C\u0435\u043D\u0438 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0437\u0430\u0434\u0430\u0442\u043A\u0430 -Item.READ.description=\u041F\u0440\u0435\u0433\u043B\u0435\u0434 \u0437\u0430\u0434\u0430\u0442\u043A\u0430 (\u043C\u043E\u0436\u0435\u0442\u0435 \u0438\u0441\u0442\u043E\u0432\u0440\u0435\u043C\u0435\u043D\u043E\u043C \u0443\u043A\u043B\u043E\u043D\u0438\u0442\u0438 \u043E\u0432\u043E \u043F\u0440\u0430\u0432\u043E \u0438 \u0434\u043E\u0437\u0432\u043E\u043B\u0438\u0442\u0438 \u0430\u043D\u043E\u043D\u0438\u043C\u043D\u0438\u043C \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0443 \u0434\u0430 \u0441\u0435 \u043F\u0440\u0438\u0458\u0430\u0432\u0438 \u0434\u0430 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430 \u0437\u0430\u0434\u0430\u0442\u0430\u043A) -ItemGroupMixIn.may_not_copy_as_it_contains_secrets_and_=\u041D\u0435\u043C\u043E\u0436\u0435 \u0441\u0435 \u043A\u043E\u043F\u0438\u0440\u0430\u0442\u0438 {0} \u043F\u043E\u0448\u0442\u043E \u0441\u0430\u0434\u0440\u0436\u0438 \u0442\u0430\u0458\u043D\u0435 \u0438 {1} \u0438\u043C\u0430 {2}/{3} \u0430 \u043D\u0435 /{4} -Job.AllRecentBuildFailed=\u0421\u0432\u0430 \u043D\u0435\u0434\u0430\u0432\u043D\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0441\u0443 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0430 -Job.BuildStability=\u0421\u0442\u0430\u0431\u0438\u043B\u043D\u043E\u0441\u0442 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435: {0} -Job.NOfMFailed={0} \u043E\u0434 \u043F\u043E\u0441\u043B\u0435\u0434\u045A\u0438\u0445 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 {1} \u0441\u0437 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0430. -Job.NoRecentBuildFailed=\u0418\u0437\u043C\u0435\u045B\u0443 \u043D\u0430\u0458\u043D\u043E\u0432\u0438\u0458\u0438\u0445 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u043D\u0435\u043C\u0430 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0438\u0445. -Job.Pronoun=\u041F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 -Job.minutes=\u043C\u0438\u043D. -Job.NoRenameWhileBuilding=\u041D\u0438\u0458\u0435 \u043C\u043E\u0433\u0443\u045B\u0435 \u043F\u0440\u0435\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u0442\u0438 \u0437\u0430\u0434\u0430\u0442\u0430\u043A \u0434\u043E\u043A \u0441\u0435 \u0433\u0440\u0430\u0434\u0438. -Job.you_must_use_the_save_button_if_you_wish=\u0414\u0430 \u043F\u0440\u0435\u0438\u043C\u0435\u043D\u0443\u0458\u0442\u0435 \u0437\u0430\u0434\u0430\u0442\u0430\u043A, \u043A\u043B\u0438\u043A\u043D\u0438\u0442\u0435 \u043D\u0430 \u0434\u0443\u0433\u043C\u0435 "\u0421\u0430\u0447\u0443\u0432\u0430\u0458". -Label.GroupOf=\u0433\u0440\u0443\u043F\u0430 {0} -Label.InvalidLabel=\u043D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u043D\u0430 \u043B\u0430\u0431\u0435\u043B\u0430 -Label.ProvisionedFrom=\u041D\u0430\u0431\u0430\u0432\u0459\u0435\u043D\u043E \u043E\u0434 {0} -LabelExpression.InvalidBooleanExpression=\u041F\u043E\u0433\u0440\u0435\u0448\u043D\u0438 \u0431\u0443\u043B\u043E\u0432 \u0438\u0437\u0440\u0430\u0437: {0} -LabelExpression.LabelLink=\u041B\u0430\u0431\u0435\u043B\u0430 {1} \u0458\u0435 \u0441\u0435\u0440\u0432\u0438\u0441\u0438\u0440\u0430\u043D\u0430 {3,choice,0#\u043D\u0435\u043C\u0430 \u043C\u0430\u0448\u0438\u043D\u0430|1#1 \u043C\u0430\u0448\u0438\u043D\u0430|1<{3} \u043C\u0430\u0448\u0438\u043D\u0430\u043C\u0430}{4,choice,0#|1# \u0438 1 cloud|1< \u0438 {4} clouds} -LabelExpression.NoMatch=\u041D\u0435\u043C\u0430 \u0430\u0433\u0435\u043D\u0442/cloud \u0437\u0430\u0434\u0443\u0436\u0435\u043D \u043E\u0432\u0438\u043C \u0437\u0430\u0434\u0430\u0442\u043A\u043E\u043C -LabelExpression.NoMatch_DidYouMean=\u041D\u0435\u043C\u0430 \u0442\u0430\u043A\u0432\u043E\u0433 \u0430\u0433\u0435\u043D\u0442\u0430/cloud. \u0414\u0430 \u043B\u0438 \u0441\u0442\u0435 \u043C\u0438\u0441\u043B\u0438\u043B\u0438 "{1}" \u043D\u0430 \u0443\u043C\u0443 \u0443\u043C\u0435\u0441\u0442\u043E "{0}"? -ManageJenkinsAction.DisplayName=\u0423\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 Jenkins-\u043E\u043C +Hudson.NodeDescription=главна Jenkins машина +Item.CREATE.description=Креирај нови задатак +Item.Permissions.Title=Задатак +Item.DELETE.description=Уклони задатак +Item.CONFIGURE.description=Промени подешавања задатка +Item.READ.description=Преглед задатка (можете иÑтовременом уклонити ово право и дозволити анонимним кориÑнику да Ñе пријави да прегледа задатак) +ItemGroupMixIn.may_not_copy_as_it_contains_secrets_and_=Ðеможе Ñе копирати {0} пошто Ñадржи тајне и {1} има {2}/{3} а не /{4} +Job.AllRecentBuildFailed=Сва недавна изградња Ñу неуÑпешна +Job.BuildStability=СтабилноÑÑ‚ изградње: {0} +Job.NOfMFailed={0} од поÑледњих изградња {1} Ñз неуÑпешна. +Job.NoRecentBuildFailed=Измећу најновијих изградња нема неуÑпешних. +Job.Pronoun=Пројекат +Job.minutes=мин. +Job.NoRenameWhileBuilding=Ðије могуће преименовати задатак док Ñе гради. +Job.you_must_use_the_save_button_if_you_wish=Да преименујте задатак, кликните на дугме "Сачувај". +Label.GroupOf=група {0} +Label.InvalidLabel=неправилна лабела +Label.ProvisionedFrom=Ðабављено од {0} +LabelExpression.InvalidBooleanExpression=Погрешни булов израз: {0} +LabelExpression.LabelLink=Лабела {1} је ÑервиÑирана {3,choice,0#нема машина|1#1 машина|1<{3} машинама}{4,choice,0#|1# и 1 cloud|1< и {4} clouds} +LabelExpression.NoMatch=Ðема агент/cloud задужен овим задатком +LabelExpression.NoMatch_DidYouMean=Ðема таквог агента/cloud. Да ли Ñте миÑлили "{1}" на уму умеÑто "{0}"? +ManageJenkinsAction.DisplayName=Управљање Jenkins-ом MultiStageTimeSeries.EMPTY_STRING= -Queue.AllNodesOffline=\u0421\u0432\u0435 \u043C\u0430\u0448\u0438\u043D\u0435 \u0441\u0430 \u043B\u0430\u0431\u0435\u043B\u043E\u043C \u2018{0}\u2019 \u0441\u0443 \u0432\u0430\u043D \u043C\u0440\u0435\u0436\u0435 -Queue.LabelHasNoNodes=\u041D\u0435\u043C\u0430 \u043C\u0430\u0448\u0438\u043D\u0430 \u0441\u0430 \u043B\u0430\u0431\u0435\u043B\u043E\u043C \u2018{0}\u2019 -Queue.BlockedBy=\u0417\u0430\u0431\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u0430\u043D\u043E \u043E\u0434 {0} -Queue.HudsonIsAboutToShutDown=Jenkins \u0441\u0435 \u0443\u0441\u043A\u043E\u0440\u043E \u0433\u0430\u0441\u0438 -Queue.InProgress=\u0412\u0435\u045B \u0441\u0435 \u0432\u0440\u0448\u0438 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 -Queue.InQuietPeriod=\ \u0418\u043D\u0442\u0435\u0440\u0432\u0430\u043B \u0442\u0438\u0448\u0438\u043De, \u0438\u0437\u0442\u0438\u0447e \u0437\u0430 {0} -Queue.NodeOffline={0} \u0458\u0435 \u0432\u0430\u043D \u043C\u0440\u0435\u0436\u0435 -Queue.Unknown=\u041D/\u0414 -Queue.WaitingForNextAvailableExecutor=\u0427\u0435\u043A\u0430\u045A\u0435 \u043D\u0430 \u0441\u043B\u0435\u0434\u0435\u045B\u0443 \u0441\u043B\u043E\u0431\u043E\u0434\u043D\u0443 \u043C\u0430\u0448\u0438\u043D\u0443. -Queue.WaitingForNextAvailableExecutorOn=\u0427\u0435\u043A\u0430\u045A\u0435 \u043D\u0430 \u0441\u043B\u0435\u0434\u0435\u045B\u0443 \u0441\u043B\u043E\u0431\u043E\u0434\u043D\u0443 \u043C\u0430\u0448\u0438\u043D\u0443 \u043D\u0430 {0} -Queue.init=\u0412\u0440\u0430\u045B\u0430\u045A\u0435 \u0440\u0435\u0434\u0443 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443. -ResultTrend.Aborted=\u041E\u0434\u0443\u0441\u0442\u0430\u0432\u0459\u0435\u043D\u043E -ResultTrend.Failure=\u041D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u043E -ResultTrend.Fixed=\u041F\u043E\u043F\u0440\u0430\u0432\u0459\u0435\u043D\u043E -ResultTrend.NotBuilt=\u041D\u0435\u0438\u0437\u0433\u0440\u0430\u0452\u0435\u043D\u043E -ResultTrend.NowUnstable=\u041D\u0435\u0441\u0442\u0430\u0431\u0438\u043B\u043D\u043E -ResultTrend.StillFailing=\u0408\u043E\u0448 \u0458\u0435 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u043E -ResultTrend.StillUnstable=\u0408\u043E\u0448 \u0458\u0435 \u043D\u0435\u0441\u0442\u0430\u0431\u0438\u043B\u043D\u043E -ResultTrend.Success=\u0423\u0441\u043F\u0435\u0448\u043D\u043E -ResultTrend.Unstable=\u041D\u0435\u0441\u0442\u0430\u0431\u0438\u043B\u043D\u043E -Run.BuildAborted=\u0418\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u043E\u0434\u0443\u0441\u0442\u0430\u0432\u0459\u0435\u043D\u0430 -Run.MarkedExplicitly=\u041E\u0432\u0430\u0458 \u0440\u0435\u043A\u043E\u0440\u0434 \u0458\u0435 \u043E\u0431\u0435\u043B\u0435\u0436\u0435\u043D \u0437\u0430 \u0447\u0443\u0432\u0430\u045A\u0435. -Run._is_waiting_for_a_checkpoint_on_={0} \u0447\u0435\u043A\u0430 \u0442\u0440\u0435\u043D\u0443\u0442\u0430\u043A \u0437\u0430 {1} -Run.Permissions.Title=\u0418\u0437\u0432\u0440\u0448\u0438 -Run.running_as_=\u0418\u0437\u0432\u0440\u0448\u0430\u045A\u0435 \u043A\u0430\u043E {0} -Run.UnableToDelete=\u041D\u0438\u0458\u0435 \u043C\u043E\u0433\u0443\u045B\u0435 \u0443\u043A\u043B\u043E\u043D\u0438\u0442\u0438 {0}: {1} -Run.DeletePermission.Description=\u0414\u0430\u0458\u0435 \u043F\u0440\u0430\u0432\u043E \u043D\u0430 \u0431\u0440\u0438\u0441\u0430\u045A\u0435 \u0438\u0437\u0430\u0431\u0440\u0430\u043D\u0438\u0445 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0441\u0430 \u0438\u0441\u0442\u043E\u0440\u0438\u0458\u0435 \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0430. -Run.UpdatePermission.Description=\u0414\u0430\u0458\u0435 \u043F\u0440\u0430\u0432\u043E \u0434\u0430 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438 \u043F\u0440\u043E\u043C\u0435\u043D\u0435 \u043E\u043F\u0438\u0441 \u0438 \u0434\u0440\u0443\u0433\u0435 \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 \u0441\u0430 \u0438\u0441\u0442\u043E\u0440\u0438\u0458\u0435 \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0430. \u041C\u043E\u0436\u0435 \u0441\u0435, \u043D\u0430 \u043F\u0440\u0438\u043C\u0435\u0440, \u043E\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043F\u043E\u0440\u0443\u043A\u0430 \u043A\u043E\u0458\u0430 \u043E\u043F\u0438\u0441\u0443\u0458\u0435 \u0440\u0430\u0437\u043B\u043E\u0433 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435. -Run.ArtifactsPermission.Description=\u0414\u0430\u0458\u0435 \u043F\u0440\u0430\u0432\u043E \u0434\u0430 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438 \u043F\u0440\u043E\u0447\u0438\u0442\u0430\u0458\u0443 \u0430\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0435 \u043F\u0440\u043E\u0438\u0437\u0432\u0435\u0434\u0435\u043D\u0438 \u043E\u0434 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435. \u041D\u0435\u043C\u043E\u0458 \u0442\u0435 \u0434\u0430\u0442\u0438 \u043E\u0432\u043E \u043F\u0440\u0430\u0432\u043E \u0430\u043A\u043E \u043D\u0435 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438 \u0434\u043E\u0441\u0442\u0443\u043F\u0435 \u0430\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0438\u043C\u0430. -Run.InProgressDuration={0} \u0438 \u0440\u0430\u0441\u0442\u0435 -Run.NotStartedYet=\u041D\u0438\u0458\u0435 \u0458\u043E\u0448 \u043F\u043E\u0447\u0435\u043B\u043E -Run.ArtifactsBrowserTitle=\u0410\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0438 \u043D\u0430 {0} {1} -Run.Summary.Stable=\u0441\u0442\u0430\u0431\u0438\u043B\u043D\u043E -Run.Summary.Unstable=\u043D\u0435\u0441\u0442\u0430\u0431\u0438\u043B\u043D\u043E -Run.Summary.NotBuilt=\u043D\u0435\u0438\u0437\u0433\u0440\u0430\u0452\u0435\u043D\u043E -Run.Summary.Aborted=\u043E\u0434\u0443\u0441\u0442\u0430\u0432\u0459\u0435\u043D\u043E -Run.Summary.BackToNormal=\u043D\u043E\u0440\u043C\u0430\u043B\u043D\u043E -Run.Summary.BrokenForALongTime=\u0434\u0443\u0436\u0435 \u0432\u0440\u0435\u043C\u0435 \u0441\u043B\u043E\u043C\u0459\u0435\u043D\u043E -Run.Summary.BrokenSinceThisBuild=\u0441\u043B\u043E\u043C\u0459\u0435\u043D\u043E \u043E\u0434 \u043E\u0432\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -Run.Summary.BrokenSince=\u0441\u043B\u043E\u043C\u0459\u0435\u043D\u043E \u043E\u0434 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 {0} -Run.Summary.Unknown=\u041D/\u0414 -Slave.InvalidConfig.Executors=\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u043D\u043E \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0435 \u043D\u0430 \u0430\u0433\u0435\u043D\u0442\u0443 \u0437\u0430 {0}. \u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u0430\u043D \u0431\u0440\u043E\u0458 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430. -Slave.InvalidConfig.NoName=\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u043D\u043E \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0435 \u043D\u0430 \u0430\u0433\u0435\u043D\u0442\u0443 \u2014 \u0438\u043C\u0435 \u0458\u0435 \u043F\u0440\u0430\u0437\u043D\u043E. -Slave.Network.Mounted.File.System.Warning=\u0414\u0430 \u043B\u0438 \u0441\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043D\u0438 \u0434\u0430 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u043A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u043C\u0440\u0435\u0436\u043D\u0438 \u0441\u0438\u0441\u0442\u0435\u043C \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u0437\u0430 \u043A\u043E\u0440\u0435\u043D \u0442\u043E\u0433 \u0441\u0438\u0441\u0442\u0435\u043C\u0430. \u0414\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C \u043D\u0435\u043C\u043E\u0440\u0430 \u0431\u0438\u0442\u0438 \u0432\u0438\u0434\u0459\u0438\u0432 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0443. -Slave.Remote.Director.Mandatory=\u041E\u0431\u0430\u0432\u0435\u0437\u043D\u043E \u0458\u0435 \u0438\u043C\u0430\u0442\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C \u043D\u0430 \u0434\u0430\u0459\u0438\u043D\u0438 -Slave.Terminated=\u0410\u0433\u0435\u043D\u0442 {0} \u0458\u0435 \u0443\u043A\u043B\u043E\u045A\u0435\u043D -Slave.Remote.Relative.Path.Warning=\u0414\u0430 \u043B\u0438 \u0441\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043D\u0438 \u0434\u0430 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u043A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u0440\u0435\u043B\u0430\u0442\u0438\u0432\u043D\u0430 \u043F\u0443\u0442\u0435\u0432\u0430 \u0437\u0430 \u043A\u043E\u0440\u0435\u043D \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430. \u041F\u0440\u043E\u0432\u0435\u0440\u0438\u0442\u0435 \u0434\u0430 \u0438\u0437\u0430\u0431\u0440\u0430\u043D\u0438 \u043F\u0440\u043E\u0446\u0435\u0441 \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0430 \u043E\u0431\u0435\u0437\u0431\u0435\u0452\u0443\u0458\u0435 \u043A\u043E\u043D\u0441\u0438\u0441\u0442\u0435\u043D\u0442\u043D\u043E\u0433 \u0440\u0430\u0434\u043D\u043E\u0433 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C\u0430. \u041F\u0440\u0435\u043F\u043E\u0440\u0443\u0447\u0443\u0458\u0435 \u0441\u0435 \u0434\u0430 \u043A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u0430\u043F\u0441\u043E\u043B\u0443\u0442\u043D\u0430 \u043F\u0443\u0442\u0435\u0432\u0430. -Slave.UnixSlave=\u041E\u0432\u043E \u0458\u0435 \u0430\u0433\u0435\u043D\u0442 \u0437\u0430 Unix -TopLevelItemDescriptor.NotApplicableIn={0} \u0435\u043B\u0435\u043C\u0435\u043D\u0442\u0430 \u043D\u0435 \u043C\u043E\u0433\u0443 \u0441\u0435 \u043F\u0440\u0438\u043C\u0435\u043D\u0438\u0442\u0438 \u0443 {1} -Slave.WindowsSlave=\u041E\u0432\u043E \u0458\u0435 \u0430\u0433\u0435\u043D\u0442 \u0437\u0430 Windows -UpdateCenter.DownloadButNotActivated=\u0423\u0441\u043F\u0435\u0448\u043D\u043E \u043F\u0440\u0435\u0443\u0437\u0438\u043C\u0430\u045A\u0435. \u041F\u043E\u0447\u0435\u045B\u0435 \u0434\u0430 \u0440\u0430\u0434\u0438 \u043F\u043E\u0441\u043B\u0435 \u0441\u043B\u0435\u0434\u0435\u045B\u0435\u0433 \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0430. -UpdateCenter.n_a=\u041D\u0435\u043C\u0430 -View.Permissions.Title=\u041F\u0440\u0435\u0433\u043B\u0435\u0434 -View.CreatePermission.Description=\u0414\u0430\u0458\u0435 \u043F\u0440\u0430\u0432\u043E \u043A\u043E\u0440\u0438\u043D\u0438\u0446\u0438\u043C\u0430 \u0434\u0430 \u043A\u0440\u0435\u0438\u0440\u0430\u0458\u0443 \u043D\u043E\u0432\u0430 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430. -View.DeletePermission.Description=\u0414\u0430\u0458\u0435 \u043F\u0440\u0430\u0432\u043E \u043A\u043E\u0440\u0438\u043D\u0438\u0446\u0438\u043C\u0430 \u0434\u0430 \u0431\u0440\u0438\u0448\u0443 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0435. -View.ConfigurePermission.Description=\u0414\u0430\u0458\u0435 \u043F\u0440\u0430\u0432\u043E \u043A\u043E\u0440\u0438\u043D\u0438\u0446\u0438\u043C\u0430 \u0434\u0430 \u043C\u0435\u045A\u0430\u0458\u0443 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430. -View.ReadPermission.Description=\u0414\u0430\u0458\u0435 \u043F\u0440\u0430\u0432\u043E \u043A\u043E\u0440\u0438\u043D\u0438\u0446\u0438\u043C\u0430 \u0434\u0430 \u0434\u043E\u0441\u0442\u0443\u043F\u0435 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0438\u043C\u0430. -View.MissingMode=\u0412\u0440\u0441\u0442\u0430 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430 \u043D\u0438\u0458\u0435 \u0438\u0437\u0430\u0431\u0440\u0430\u043D\u043E -UpdateCenter.Status.CheckingInternet=\u041F\u0440\u043E\u0432\u0435\u0440\u0430 \u0432\u0435\u0437\u043E\u043C \u0441\u0430 \u0438\u043D\u0442\u0435\u0440\u043D\u0435\u0442\u043E\u043C -UpdateCenter.Status.CheckingJavaNet=\u041F\u0440\u043E\u0432\u0435\u0440\u0430 \u0432\u0435\u0437\u043E\u043C \u0441\u0430 \u0446\u0435\u043D\u0442\u0430\u0440 \u0437\u0430 a\u0436\u0443\u0440\u0438\u0440\u0430\u045A\u0435 -UpdateCenter.Status.Success=\u0423\u0441\u043F\u0435\u0445 -UpdateCenter.Status.UnknownHostException=\u041D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0430 \u043F\u0440\u043E\u0432\u0435\u0440\u0430 \u0430\u0434\u0440\u0435\u0441\u0435 {0}. \ -\u041C\u043E\u0436\u0434\u0430 \u043C\u043E\u0440\u0430\u0442\u0435 \u043F\u043E\u0441\u0442\u0430\u0432\u0438\u0442\u0438 HTTP proxy? -UpdateCenter.Status.ConnectionFailed=\u041D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u043E \u043F\u043E\u0432\u0435\u0437\u0438\u0432\u0430\u045A\u0435 \u0441\u0430 {0}. \ -\u041C\u043E\u0436\u0434\u0430 \u043C\u043E\u0440\u0430\u0442\u0435 \u043F\u043E\u0441\u0442\u0430\u0432\u0438\u0442\u0438 HTTP proxy? -UpdateCenter.init=\u0418\u043D\u0438\u0446\u0438\u0430\u043B\u0438\u0437\u0430\u0446\u0438\u0458\u0430 \u0446\u0435\u043D\u0442\u0440\u0430 \u0437\u0430 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045A\u0435 -UpdateCenter.PluginCategory.builder=\u0410\u043B\u0430\u0442\u0438 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 -UpdateCenter.PluginCategory.buildwrapper=\u0421\u043A\u0440\u0438\u043F\u0442 \u043E\u043C\u043E\u0442\u0430\u0447\u0438 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 -UpdateCenter.PluginCategory.cli=\u0418\u043D\u0442\u0435\u0440\u0444\u0435\u0458\u0441 \u043D\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u043E\u0458 \u043B\u0438\u043D\u0438\u0458\u0438 -UpdateCenter.PluginCategory.cloud=\u041F\u0440\u043E\u0432\u0430\u0458\u0434\u0435\u0440\u0438 cloud \u0441\u0435\u0440\u0432\u0438\u0441\u0435 -UpdateCenter.PluginCategory.listview-column=\u041F\u0440\u0435\u0433\u043B\u0435\u0434 \u0441\u043F\u0438\u0441\u0430\u043A\u0430 \u043F\u043E \u043A\u043E\u043B\u043E\u043D\u0438\u043C\u0430 -UpdateCenter.PluginCategory.misc=\u0420\u0430\u0437\u043D\u043E -UpdateCenter.PluginCategory.notifier=\u041E\u0431\u0430\u0432\u0435\u0448\u0442\u0435\u045A\u0430 \u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0438 -UpdateCenter.PluginCategory.page-decorator=\u0414\u0435\u043A\u043E\u0440\u0430\u0446\u0438\u0458\u0430 \u0437\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0435 -UpdateCenter.PluginCategory.parameter=\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0438 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 -UpdateCenter.PluginCategory.post-build=\u0414\u043E\u0434\u0430\u0442\u043D\u0435 \u0430\u043A\u0446\u0438\u0458\u0435 \u043F\u043E\u0441\u043B\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -UpdateCenter.PluginCategory.runcondition=\u0423\u0441\u043B\u043E\u0432\u0438 \u0437\u0430 \u0438\u0437\u0432\u0440\u0448\u0430\u0432\u0430\u045A\u0435 -UpdateCenter.PluginCategory.ui=\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u0438 \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0458\u0441 -UpdateCenter.PluginCategory.upload=\u041F\u0440\u0435\u0443\u0437\u0438\u043C\u0430\u045A\u0435 \u0430\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0438 -UpdateCenter.PluginCategory.user=\u0410\u0443\u0442\u0435\u043D\u0442\u0438\u043A\u0430\u0446\u0438\u0458\u0430 \u0438 \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438\u043C\u0430 -UpdateCenter.PluginCategory.view=\u041F\u0440\u0435\u0433\u043B\u0435\u0434\u0438 -UpdateCenter.PluginCategory.must-be-labeled=\u0431\u0435\u0437 \u043A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u0458\u0435 -UpdateCenter.PluginCategory.unrecognized=\u0420\u0430\u0437\u043D\u043E ({0}) -Permalink.LastBuild=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -Permalink.LastStableBuild=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u043E \u0441\u0442\u0430\u0431\u0438\u043B\u043D\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -Permalink.LastUnstableBuild=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u043E \u043D\u0435\u0441\u0442\u0430\u0431\u0438\u043B\u043D\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -Permalink.LastUnsuccessfulBuild=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u043E \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -Permalink.LastSuccessfulBuild=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u043E \u0443\u0441\u043F\u0435\u0448\u043D\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -Permalink.LastFailedBuild=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u043E \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -Permalink.LastCompletedBuild=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u043E \u0437\u0430\u0432\u0440\u0448\u0435\u043D\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -ParameterAction.DisplayName=\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0438 -ParametersDefinitionProperty.DisplayName=\u041E\u0432\u0430\u0458 \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 \u0438\u043C\u0430 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0438 -StringParameterDefinition.DisplayName=\u041D\u0438\u0437 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0430\u0440 -TextParameterDefinition.DisplayName=\u0422\u0435\u043A\u0441\u0442 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0430\u0440 -FileParameterDefinition.DisplayName=\u0414\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0430\u0440 -BooleanParameterDefinition.DisplayName=\u0411\u0437\u043B\u043E\u0432 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0430\u0440 -ChoiceParameterDefinition.DisplayName=\u0421\u043F\u0438\u0441\u0430\u043A \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0430\u0440 -ChoiceParameterDefinition.MissingChoices=\u041F\u043E\u0442\u0440\u0435\u0431\u043D\u043E \u0458\u0435 \u0443\u043D\u0435\u0442\u0438 \u0432\u0440\u0435\u0434\u043D\u043E\u0441\u0442\u0438. -PasswordParameterDefinition.DisplayName=\u041B\u043E\u0437\u0438\u043D\u043A\u0430 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0430\u0440 -RunParameterDefinition.DisplayName=\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0430\u0440 \u0437\u0430 \u0438\u0437\u0432\u0440\u0448\u0435\u045A\u0435 -Node.BecauseNodeIsReserved={0} \u0458\u0435 \u0440\u0435\u0437\u0435\u0440\u0432\u0438\u0440\u0430\u043D\u043E \u0437\u0430 \u0437\u0430\u0434\u0430\u0442\u043A\u0435 \u0441\u0430 \u043E\u0434\u0433\u043E\u0432\u0430\u0440\u0430\u0458\u0443\u045B\u043E\u0458 \u043B\u0430\u0431\u0435\u043B\u0438 -Node.BecauseNodeIsNotAcceptingTasks={0} \u043D\u0435 \u043F\u0440\u0438\u043C\u0430 \u0437\u0430\u0434\u0430\u0442\u043A\u0435 -Node.LabelMissing={0} \u043D\u0435\u043C\u0430 \u043B\u0430\u0431\u0435\u043B\u0443 {1} -Node.LackingBuildPermission={0} \u043D\u0435\u043C\u0430 \u043F\u0440\u0430\u0432\u043E \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u0440\u0448\u0430\u0432\u0430 \u043D\u0430 {1} -Node.Mode.EXCLUSIVE=\u0418\u0437\u0433\u0440\u0430\u0434\u0438 \u0441\u0430\u043C\u043E \u0437\u0430\u0434\u0430\u0442\u043A\u0435 \u0441\u0430 \u043B\u0430\u0431\u0435\u043B\u043E\u043C \u043A\u043E\u0458\u0430 \u043E\u0434\u0433\u043E\u0432\u0430\u0440\u0430 \u043E\u0432\u043E\u0458 \u043C\u0430\u0448\u0438\u043D\u0438 -Node.Mode.NORMAL=\u041A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u043E\u0432\u0443 \u043C\u0430\u0448\u0438\u043D\u0443 \u043A\u043E\u043B\u0438\u043A\u043E \u0433\u043E\u0434 \u043C\u043E\u0436\u0435\u0442\u0435 -ListView.DisplayName=\u0421\u043F\u0438\u0441\u0447\u0435\u043D\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 -MyView.DisplayName=\u041C\u043E\u0458 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 -LoadStatistics.Legends.DefinedExecutors=\u0414\u0435\u0444\u043D\u0438\u0441\u0430\u043D\u0435 \u043C\u0430\u0448\u0438\u043D\u0435-\u0438\u0437\u0432\u043E\u0452\u0430\u0447\u0438 -LoadStatistics.Legends.ConnectingExecutors=\u041F\u043E\u0432\u0435\u0437\u0443\u0458\u0435 \u043C\u0430\u0448\u0438\u043D\u0435-\u0438\u0437\u0432\u043E\u0452\u0430\u0447\u0435 -LoadStatistics.Legends.OnlineExecutors=\u041C\u0430\u0448\u0438\u043D\u0435-\u0438\u0437\u0432\u043E\u0452\u0430\u0447\u0438 \u043D\u0430 \u043C\u0440\u0435\u0436\u0438 -LoadStatistics.Legends.TotalExecutors=\u0423\u043A\u0443\u043F\u043D\u043E \u043C\u0430\u0448\u0438\u043D\u0435-\u0438\u0437\u0432\u043E\u0452\u0430\u0447\u0430 -LoadStatistics.Legends.BusyExecutors=\u0417\u0430\u0443\u0437\u0435\u0442\u0435 \u043C\u0430\u0448\u0438\u043D\u0435-\u0438\u0437\u0432\u043E\u0452\u0430\u0447\u0438 -LoadStatistics.Legends.IdleExecutors=\u0421\u043B\u043E\u0431\u043E\u0434\u043D\u0435 \u043C\u0430\u0448\u0438\u043D\u0435-\u0438\u0437\u0432\u043E\u0452\u0430\u0447\u0438 -LoadStatistics.Legends.AvailableExecutors=\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u0435 \u043C\u0430\u0448\u0438\u043D\u0435-\u0438\u0437\u0432\u043E\u0452\u0430\u0447\u0438 -LoadStatistics.Legends.QueueLength=\u0414\u0443\u0436\u0438\u043D\u0430 \u0440\u0435\u0434\u0430 -Cause.LegacyCodeCause.ShortDescription=\u0421\u0442\u0430\u0440\u0438 \u043A\u043E\u0434 \u0458\u0435 \u0437\u0430\u043F\u043E\u0447\u0435\u043E \u043E\u0432\u0430\u0458 \u0437\u0430\u0434\u0430\u0442\u0430\u043A - \u043D\u0435\u0434\u043E\u0441\u0442\u0430\u0458\u0435 \u0440\u0430\u0437\u043B\u043E\u0433. -Cause.UpstreamCause.ShortDescription=\u041F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u043E \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u043E\u043C "{0}" \u0438\u0437\u0433\u0440\u0430\u0434\u043D\u0438 \u0431\u0440\u043E\u0458 {1} -Cause.UpstreamCause.CausedBy=\u043F\u0440\u0432\u043E\u0431\u0438\u0442\u043D\u043E \u0437\u0431\u043E\u0433: -Cause.UserCause.ShortDescription=\u041F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u043E \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u043E\u043C {0} -Cause.UserIdCause.ShortDescription=\u041F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u043E \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u043E\u043C {0} -Cause.RemoteCause.ShortDescription=\u041F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u043E \u0443\u0434\u0430\u0459\u0435\u043D\u043E\u043C \u043C\u0430\u0448\u0438\u043D\u043E\u043C {0} -Cause.RemoteCause.ShortDescriptionWithNote=\u041F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u043E \u0443\u0434\u0430\u0459\u0435\u043D\u043E\u043C \u043C\u0430\u0448\u0438\u043D\u043E\u043C {0} \u0441\u0430 \u0431\u0435\u043B\u0435\u0448\u043A\u043E\u043C: {0} -ProxyView.NoSuchViewExists=\u0413\u043B\u043E\u0431\u0430\u043B\u043D\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 {0} \u043D\u0435 \u043F\u043E\u0441\u0442\u043E\u0458\u0438 -ProxyView.DisplayName=\u0423\u043A\u0459\u0443\u0447\u0438 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 -MyViewsProperty.DisplayName=\u041C\u043E\u0458\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0438 -MyViewsProperty.GlobalAction.DisplayName=\u041C\u043E\u0458\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0438 -MyViewsProperty.ViewExistsCheck.NotExist=\u041F\u0440\u0435\u0433\u043B\u0435\u0434 \u0441\u0430 \u0438\u043C\u0435\u043D\u043E\u043C {0} \u043D\u0435 \u043F\u043E\u0441\u0442\u043E\u0458\u0438 -MyViewsProperty.ViewExistsCheck.AlreadyExists=\u041F\u0440\u0435\u0433\u043B\u0435\u0434 \u0441\u0430 \u0438\u043C\u0435\u043D\u043E\u043C {0} \u0432\u0435\u045B \u043F\u043E\u0441\u0442\u043E\u0458\u0438 -CLI.restart.shortDescription=\u041F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0438 Jenkins -CLI.safe-restart.shortDescription=\u0411\u0435\u0437\u0431\u0435\u0434\u043D\u043E \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0438 Jenkins -CLI.keep-build.shortDescription=\u041E\u0437\u043D\u0430\u0447\u0438\u0442\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 \u0434\u0430 \u0458\u0435 \u0434\u0443\u0433\u043E\u0442\u0440\u0430\u0458\u043D\u043E \u0441\u0430\u0447\u0443\u0432\u0430\u0442\u0435 -BuildAuthorizationToken.InvalidTokenProvided=\u0417\u0430\u0434\u0430\u0442\u0438 \u0442\u043E\u043A\u0435\u043D \u0458\u0435 \u043D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u0430\u043D -Jenkins.CheckDisplayName.NameNotUniqueWarning=\u0418\u043C\u0435 "{0}", \u0441\u0435 \u0432\u0435\u045B \u043A\u043E\u0440\u0438\u0441\u0442\u0438 \u043A\u0430\u043E \u0438\u043C\u0435 \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0430, \u0448\u0442\u043E \u043C\u043E\u0436\u0435 \u0434\u043E\u0432\u0435\u0441\u0442\u0438 \u0434\u043E \u0437\u0431\u0443\u045A\u0443\u0458\u0443\u045B\u0430 \u0440\u0435\u0437\u0443\u043B\u0442\u0430\u0442\u0430 \u043F\u0440\u0435\u0433\u0440\u0430\u0442\u0435. -Jenkins.CheckDisplayName.DisplayNameNotUniqueWarning=\u0418\u043C\u0435 "{0}", \u0441\u0435 \u0432\u0435\u045B \u043A\u043E\u0440\u0438\u0441\u0442\u0438 \u0434\u0440\u0443\u0433\u0438\u043C \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u043E\u043C, \u0448\u0442\u043E \u043C\u043E\u0436\u0435 \u0434\u043E\u0432\u0435\u0441\u0442\u0438 \u0434\u043E \u0437\u0431\u0443\u045A\u0443\u0458\u0443\u045B\u0430 \u0440\u0435\u0437\u0443\u043B\u0442\u0430\u0442\u0430 \u043F\u0440\u0435\u0433\u0440\u0430\u0442\u0435. -Jenkins.NotAllowedName="{0}" \u0458\u0435 \u043D\u0435\u0434\u043E\u0437\u0432\u043E\u0459\u0435\u043D\u043E \u0438\u043C\u0435 -Jenkins.IsRestarting=Jenkins \u0441\u0435 \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u045B\u0435 -User.IllegalUsername=\u041D\u0435 \u043C\u043E\u0436\u0435\u0442\u0435 \u043A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0438 "{0}" \u0437\u0430 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u043E \u0438\u043C\u0435 \u0438\u0437 \u0431\u0435\u0437\u0431\u0435\u0434\u043D\u043E\u0441\u043D\u0438\u0445 \u0440\u0430\u0437\u043B\u043E\u0433\u0430. -User.IllegalFullname=\u041D\u0435 \u043C\u043E\u0436\u0435\u0442\u0435 \u043A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0438 "{0}" \u0437\u0430 \u043F\u0443\u043D\u043E \u0438\u043C\u0435 \u0438\u0437 \u0431\u0435\u0437\u0431\u0435\u0434\u043D\u043E\u0441\u043D\u0438\u0445 \u0440\u0430\u0437\u043B\u043E\u0433\u0430. -Hudson.NoParamsSpecified=\u041D\u0438\u0441\u0443 \u043D\u0430\u0432\u0435\u0434\u0435\u043D\u0438 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0438 \u0437\u0430 \u043E\u0432\u0430\u0458 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0438\u0437\u043E\u0432\u0430\u043D\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -CLI.delete-job.shortDescription=\u0423\u043A\u043B\u043E\u043D\u0438 \u0437\u0430\u0434\u0430\u0442\u0430\u043A -CLI.reload-job.shortDescription=\u041F\u043E\u043D\u043E\u0432\u043E \u0443\u0447\u0438\u0442\u0430\u0458 \u0437\u0430\u0434\u0430\u0442\u0430\u043A \u0438\u0437 \u0434\u0438\u0441\u043A\u0430 -CLI.delete-node.shortDescription=\u0423\u043A\u043B\u043E\u043D\u0438 \u0437\u0430\u0434\u0430\u0442\u0430\u043A -CLI.disconnect-node.shortDescription=\u041F\u0440\u0435\u043A\u0438\u043D\u0438 \u0432\u0435\u0437\u0443 \u0441\u0430 \u043C\u0430\u0448\u0438\u043D\u043E\u043C -CLI.connect-node.shortDescription=\u041F\u043E\u0432\u0435\u0436\u0438 \u0441\u0430 \u043C\u0430\u0448\u0438\u043D\u043E\u043C +Queue.AllNodesOffline=Све машине Ñа лабелом ‘{0}’ Ñу ван мреже +Queue.LabelHasNoNodes=Ðема машина Ñа лабелом ‘{0}’ +Queue.BlockedBy=Заблокировано од {0} +Queue.HudsonIsAboutToShutDown=Jenkins Ñе уÑкоро гаÑи +Queue.InProgress=Већ Ñе врши изградња +Queue.InQuietPeriod=\ Интервал тишинe, изтичe за {0} +Queue.NodeOffline={0} је ван мреже +Queue.Unknown=Ð/Д +Queue.WaitingForNextAvailableExecutor=Чекање на Ñледећу Ñлободну машину. +Queue.WaitingForNextAvailableExecutorOn=Чекање на Ñледећу Ñлободну машину на {0} +Queue.init=Враћање реду за изградњу. +ResultTrend.Aborted=ОдуÑтављено +ResultTrend.Failure=ÐеуÑпешно +ResultTrend.Fixed=Поправљено +ResultTrend.NotBuilt=Ðеизграђено +ResultTrend.NowUnstable=ÐеÑтабилно +ResultTrend.StillFailing=Још је неуÑпешно +ResultTrend.StillUnstable=Још је неÑтабилно +ResultTrend.Success=УÑпешно +ResultTrend.Unstable=ÐеÑтабилно +Run.BuildAborted=Изградња одуÑтављена +Run.MarkedExplicitly=Овај рекорд је обележен за чување. +Run._is_waiting_for_a_checkpoint_on_={0} чека тренутак за {1} +Run.Permissions.Title=Изврши +Run.running_as_=Извршање као {0} +Run.UnableToDelete=Ðије могуће уклонити {0}: {1} +Run.DeletePermission.Description=Даје право на бриÑање изабраних изградња Ñа иÑторије задатака. +Run.UpdatePermission.Description=Даје право да кориÑници промене Ð¾Ð¿Ð¸Ñ Ð¸ друге поÑтавке изградње Ñа иÑторије задатака. Може Ñе, на пример, оÑтавити порука која опиÑује разлог неуÑпешне изградње. +Run.ArtifactsPermission.Description=Даје право да кориÑници прочитају артефакте произведени од изградње. Ðемој те дати ово право ако не желите да кориÑници доÑтупе артефактима. +Run.InProgressDuration={0} и раÑте +Run.NotStartedYet=Ðије још почело +Run.ArtifactsBrowserTitle=Ðртефакти на {0} {1} +Run.Summary.Stable=Ñтабилно +Run.Summary.Unstable=неÑтабилно +Run.Summary.NotBuilt=неизграђено +Run.Summary.Aborted=одуÑтављено +Run.Summary.BackToNormal=нормално +Run.Summary.BrokenForALongTime=дуже време Ñломљено +Run.Summary.BrokenSinceThisBuild=Ñломљено од ове изградње +Run.Summary.BrokenSince=Ñломљено од изградње {0} +Run.Summary.Unknown=Ð/Д +Slave.InvalidConfig.Executors=Ðеправилно подешавање на агенту за {0}. Ðеправилан број извршитеља. +Slave.InvalidConfig.NoName=Ðеправилно подешавање на агенту — име је празно. +Slave.Network.Mounted.File.System.Warning=Да ли Ñте Ñигурни да желите да кориÑтите мрежни ÑиÑтем датотека за корен тог ÑиÑтема. Директоријум немора бити видљив кориÑнику. +Slave.Remote.Director.Mandatory=Обавезно је имати директоријум на даљини +Slave.Terminated=Ðгент {0} је уклоњен +Slave.Remote.Relative.Path.Warning=Да ли Ñте Ñигурни да желите да кориÑтите релативна путева за корен ÑиÑтема датотека. Проверите да изабрани Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð¿Ð¾ÐºÑ€ÐµÑ‚Ð°ÑšÐ° обезбеђује конÑиÑтентног радног директоријума. Препоручује Ñе да кориÑтите апÑолутна путева. +Slave.UnixSlave=Ово је агент за Unix +TopLevelItemDescriptor.NotApplicableIn={0} елемента не могу Ñе применити у {1} +Slave.WindowsSlave=Ово је агент за Windows +UpdateCenter.DownloadButNotActivated=УÑпешно преузимање. Почеће да ради поÑле Ñледећег покретања. +UpdateCenter.n_a=Ðема +View.Permissions.Title=Преглед +View.CreatePermission.Description=Даје право кориницима да креирају нова прегледа. +View.DeletePermission.Description=Даје право кориницима да бришу прегледе. +View.ConfigurePermission.Description=Даје право кориницима да мењају подешавања прегледа. +View.ReadPermission.Description=Даје право кориницима да доÑтупе прегледима. +View.MissingMode=Ð’Ñ€Ñта прегледа није изабрано +UpdateCenter.Status.CheckingInternet=Провера везом Ñа интернетом +UpdateCenter.Status.CheckingJavaNet=Провера везом Ñа центар за aжурирање +UpdateCenter.Status.Success=УÑпех +UpdateCenter.Status.UnknownHostException=ÐеуÑпешна провера адреÑе {0}. \ +Можда морате поÑтавити HTTP proxy? +UpdateCenter.Status.ConnectionFailed=ÐеуÑпешно повезивање Ñа {0}. \ +Можда морате поÑтавити HTTP proxy? +UpdateCenter.init=Инициализација центра за ажурирање +UpdateCenter.PluginCategory.builder=Ðлати за изградњу +UpdateCenter.PluginCategory.buildwrapper=Скрипт омотачи за изградњу +UpdateCenter.PluginCategory.cli=Ð˜Ð½Ñ‚ÐµÑ€Ñ„ÐµÑ˜Ñ Ð½Ð° командној линији +UpdateCenter.PluginCategory.cloud=Провајдери cloud ÑервиÑе +UpdateCenter.PluginCategory.listview-column=Преглед ÑпиÑака по колонима +UpdateCenter.PluginCategory.misc=Разно +UpdateCenter.PluginCategory.notifier=Обавештења о изградњи +UpdateCenter.PluginCategory.page-decorator=Декорација за Ñтранице +UpdateCenter.PluginCategory.parameter=Параметри за изградњу +UpdateCenter.PluginCategory.post-build=Додатне акције поÑле изградње +UpdateCenter.PluginCategory.runcondition=УÑлови за извршавање +UpdateCenter.PluginCategory.ui=КориÑнички Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÑ˜Ñ +UpdateCenter.PluginCategory.upload=Преузимање артефакти +UpdateCenter.PluginCategory.user=Ðутентикација и управљање кориÑницима +UpdateCenter.PluginCategory.view=Прегледи +UpdateCenter.PluginCategory.must-be-labeled=без категорије +UpdateCenter.PluginCategory.unrecognized=Разно ({0}) +Permalink.LastBuild=ПоÑледно изградње +Permalink.LastStableBuild=ПоÑледно Ñтабилно изградње +Permalink.LastUnstableBuild=ПоÑледно неÑтабилно изградње +Permalink.LastUnsuccessfulBuild=ПоÑледно неуÑпешно изградње +Permalink.LastSuccessfulBuild=ПоÑледно уÑпешно изградње +Permalink.LastFailedBuild=ПоÑледно неуÑпешно изградње +Permalink.LastCompletedBuild=ПоÑледно завршено изградње +ParameterAction.DisplayName=Параметри +ParametersDefinitionProperty.DisplayName=Овај пројекат има параметри +StringParameterDefinition.DisplayName=Ðиз параметар +TextParameterDefinition.DisplayName=ТекÑÑ‚ параметар +FileParameterDefinition.DisplayName=Датотека параметар +BooleanParameterDefinition.DisplayName=Бзлов параметар +ChoiceParameterDefinition.DisplayName=СпиÑак параметар +ChoiceParameterDefinition.MissingChoices=Потребно је унети вредноÑти. +PasswordParameterDefinition.DisplayName=Лозинка параметар +RunParameterDefinition.DisplayName=Параметар за извршење +Node.BecauseNodeIsReserved={0} је резервирано за задатке Ñа одговарајућој лабели +Node.BecauseNodeIsNotAcceptingTasks={0} не прима задатке +Node.LabelMissing={0} нема лабелу {1} +Node.LackingBuildPermission={0} нема право да Ñе извршава на {1} +Node.Mode.EXCLUSIVE=Изгради Ñамо задатке Ñа лабелом која одговара овој машини +Node.Mode.NORMAL=КориÑтите ову машину колико год можете +ListView.DisplayName=СпиÑчени преглед +MyView.DisplayName=Мој преглед +LoadStatistics.Legends.DefinedExecutors=ДефниÑане машине-извођачи +LoadStatistics.Legends.ConnectingExecutors=Повезује машине-извођаче +LoadStatistics.Legends.OnlineExecutors=Машине-извођачи на мрежи +LoadStatistics.Legends.TotalExecutors=Укупно машине-извођача +LoadStatistics.Legends.BusyExecutors=Заузете машине-извођачи +LoadStatistics.Legends.IdleExecutors=Слободне машине-извођачи +LoadStatistics.Legends.AvailableExecutors=ДоÑтупне машине-извођачи +LoadStatistics.Legends.QueueLength=Дужина реда +Cause.LegacyCodeCause.ShortDescription=Стари код је започео овај задатак - недоÑтаје разлог. +Cause.UpstreamCause.ShortDescription=Покренуто пројектом "{0}" изградни број {1} +Cause.UpstreamCause.CausedBy=првобитно због: +Cause.UserCause.ShortDescription=Покренуто кориÑником {0} +Cause.UserIdCause.ShortDescription=Покренуто кориÑником {0} +Cause.RemoteCause.ShortDescription=Покренуто удаљеном машином {0} +Cause.RemoteCause.ShortDescriptionWithNote=Покренуто удаљеном машином {0} Ñа белешком: {0} +ProxyView.NoSuchViewExists=Глобални преглед {0} не поÑтоји +ProxyView.DisplayName=Укључи глобални преглед +MyViewsProperty.DisplayName=Моји прегледи +MyViewsProperty.GlobalAction.DisplayName=Моји прегледи +MyViewsProperty.ViewExistsCheck.NotExist=Преглед Ñа именом {0} не поÑтоји +MyViewsProperty.ViewExistsCheck.AlreadyExists=Преглед Ñа именом {0} већ поÑтоји +CLI.restart.shortDescription=Поново покрени Jenkins +CLI.safe-restart.shortDescription=Безбедно поново покрени Jenkins +CLI.keep-build.shortDescription=Означите изградњу да је дуготрајно Ñачувате +BuildAuthorizationToken.InvalidTokenProvided=Задати токен је неправилан +Jenkins.CheckDisplayName.NameNotUniqueWarning=Име "{0}", Ñе већ кориÑти као име задатака, што може довеÑти до збуњујућа резултата преграте. +Jenkins.CheckDisplayName.DisplayNameNotUniqueWarning=Име "{0}", Ñе већ кориÑти другим задатаком, што може довеÑти до збуњујућа резултата преграте. +Jenkins.NotAllowedName="{0}" је недозвољено име +Jenkins.IsRestarting=Jenkins Ñе поново покреће +User.IllegalUsername=Ðе можете кориÑтити "{0}" за кориÑничко име из безбедноÑних разлога. +User.IllegalFullname=Ðе можете кориÑтити "{0}" за пуно име из безбедноÑних разлога. +Hudson.NoParamsSpecified=ÐиÑу наведени параметри за овај параметризовано изградње +CLI.delete-job.shortDescription=Уклони задатак +CLI.reload-job.shortDescription=Поново учитај задатак из диÑка +CLI.delete-node.shortDescription=Уклони задатак +CLI.disconnect-node.shortDescription=Прекини везу Ñа машином +CLI.connect-node.shortDescription=Повежи Ñа машином CLI.offline-node.shortDescription= -Hudson.NotADirectory={0} \u043D\u0438\u0458\u0435 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C +Hudson.NotADirectory={0} није директоријум diff --git a/core/src/main/resources/hudson/model/Messages_sv_SE.properties b/core/src/main/resources/hudson/model/Messages_sv_SE.properties index 6376d4e09d87..fa2c305e9b89 100644 --- a/core/src/main/resources/hudson/model/Messages_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Messages_sv_SE.properties @@ -4,6 +4,6 @@ AbstractProject.Pronoun=Projekt Job.Pronoun=Projekt ManageJenkinsAction.DisplayName=Hantera Jenkins -ParametersDefinitionProperty.DisplayName=Detta bygge \u00E4r parametriserat +ParametersDefinitionProperty.DisplayName=Detta bygge är parametriserat -FreeStyleProject.Description=Detta \u00E4r en central del i Jenkins. Jenkins kommer att bygga ditt projekt med valfri versionshanterare och med vilket byggsystem som helst, och detta kan \u00E4ven anv\u00E4ndas f\u00F6r n\u00E5got annat \u00E4n mjukvarubyggen. +FreeStyleProject.Description=Detta är en central del i Jenkins. Jenkins kommer att bygga ditt projekt med valfri versionshanterare och med vilket byggsystem som helst, och detta kan även användas för nÃ¥got annat än mjukvarubyggen. diff --git a/core/src/main/resources/hudson/model/Messages_tr.properties b/core/src/main/resources/hudson/model/Messages_tr.properties index 759d96a60803..eb8f57f0b466 100644 --- a/core/src/main/resources/hudson/model/Messages_tr.properties +++ b/core/src/main/resources/hudson/model/Messages_tr.properties @@ -20,88 +20,88 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -AbstractBuild.BuildingRemotely={0} \u00fczerinde uzaktan yap\u0131land\u0131rma i\u015flemi y\u00fcr\u00fct\u00fcl\u00fcyor -AbstractBuild.KeptBecause={0} y\u00fcz\u00fcnden tutulmu\u015f +AbstractBuild.BuildingRemotely={0} üzerinde uzaktan yapılandırma iÅŸlemi yürütülüyor +AbstractBuild.KeptBecause={0} yüzünden tutulmuÅŸ -AbstractItem.Pronoun=\u00d6\u011fe +AbstractItem.Pronoun=Öğe -AbstractProject.NewBuildForWorkspace=\u00c7al\u0131\u015fma alan\u0131 olu\u015fturmak i\u00e7in bir yap\u0131land\u0131rma planlan\u0131yor +AbstractProject.NewBuildForWorkspace=Çalışma alanı oluÅŸturmak için bir yapılandırma planlanıyor AbstractProject.Pronoun=Proje AbstractProject.Aborted=Durduruldu -AbstractProject.Disabled=Yap\u0131land\u0131rma devre d\u0131\u015f\u0131 b\u0131rak\u0131ld\u0131 +AbstractProject.Disabled=Yapılandırma devre dışı bırakıldı AbstractProject.NoSCM=SCM yok -AbstractProject.NoWorkspace=Herhangi bir \u00e7al\u0131\u015fma alan\u0131 bulunmad\u0131\u011f\u0131ndan g\u00fcncellemeler kontrol edilemiyor. -AbstractProject.PollingABorted=SCM kontrol\u00fc durduruldu -AbstractProject.ScmAborted=SCM checkout i\u015flemi durduruldu -AbstractProject.WorkspaceOffline=\u00c7al\u0131\u015fma alan\u0131 \u00e7evrim d\u0131\u015f\u0131. +AbstractProject.NoWorkspace=Herhangi bir çalışma alanı bulunmadığından güncellemeler kontrol edilemiyor. +AbstractProject.PollingABorted=SCM kontrolü durduruldu +AbstractProject.ScmAborted=SCM checkout iÅŸlemi durduruldu +AbstractProject.WorkspaceOffline=Çalışma alanı çevrim dışı. -Api.MultipleMatch=XPath "{0}", {1} nodla e\u015fle\u015fti. \ - Sadece bir tane ile e\u015fle\u015fen XPath olu\u015fturun, veya k\u00f6k elementteki t\u00fcm\u00fcn\u00fc kapsamak i\u00e7in "wrapper" sorgu parametresini kullan\u0131n. -Api.NoXPathMatch=XPath {0} e\u015fle\u015fmedi +Api.MultipleMatch=XPath "{0}", {1} nodla eÅŸleÅŸti. \ + Sadece bir tane ile eÅŸleÅŸen XPath oluÅŸturun, veya kök elementteki tümünü kapsamak için "wrapper" sorgu parametresini kullanın. +Api.NoXPathMatch=XPath {0} eÅŸleÅŸmedi BallColor.Aborted=Durduruldu -BallColor.Disabled=Devre d\u0131\u015f\u0131 b\u0131rak\u0131ld\u0131 -BallColor.Failed=Ba\u015far\u0131s\u0131z -BallColor.InProgress=\u0130lerliyor +BallColor.Disabled=Devre dışı bırakıldı +BallColor.Failed=BaÅŸarısız +BallColor.InProgress=Ä°lerliyor BallColor.Pending=Bekliyor -BallColor.Success=Ba\u015far\u0131l\u0131 +BallColor.Success=BaÅŸarılı BallColor.Unstable=Dengesiz -Executor.NotAvailable=Mevcut De\u011fil +Executor.NotAvailable=Mevcut DeÄŸil -FreeStyleProject.DisplayName=Serbest-stil yaz\u0131l\u0131m projesi yap\u0131land\u0131r +FreeStyleProject.DisplayName=Serbest-stil yazılım projesi yapılandır FreeStyleProject.Description=\ - Jenkins''in merkezi \u00f6zelli\u011fi, projelerinizi yap\u0131land\u0131rman\u0131za yard\u0131m etmesidir. Bu proje t\u00fcr\u00fcn\u00fc kullanarak, \ - herhangi bir yap\u0131land\u0131rma sistemini herhangi bir Kaynak Kodu Y\u00f6netimi arac\u0131 ile birle\u015ftirebilirsiniz,\ - ve hatta yaz\u0131l\u0131m yap\u0131land\u0131rman\u0131n d\u0131\u015f\u0131nda ba\u015fka t\u00fcr projeler i\u00e7in dahi kullanabilirsiniz. + Jenkins''in merkezi özelliÄŸi, projelerinizi yapılandırmanıza yardım etmesidir. Bu proje türünü kullanarak, \ + herhangi bir yapılandırma sistemini herhangi bir Kaynak Kodu Yönetimi aracı ile birleÅŸtirebilirsiniz,\ + ve hatta yazılım yapılandırmanın dışında baÅŸka tür projeler için dahi kullanabilirsiniz. -Hudson.BadPortNumber=Yanl\u0131\u015f Port Numaras\u0131 {0} +Hudson.BadPortNumber=Yanlış Port Numarası {0} Hudson.Computer.Caption=Master Hudson.Computer.DisplayName=master Hudson.ControlCodeNotAllowed=Kontrol koduna izin verilmiyor: {0} Hudson.DisplayName=Jenkins -Hudson.JobAlreadyExists=''{0}'' isminde bir i\u015f zaten mevcut -Hudson.NoJavaInPath=java, PATH i\u00e7erisinde de\u011fil. JDK konfig\u00fcrasyonunu d\u00fczeltmeniz gerekebilir? -Hudson.NoName=\u0130sim belirtilmedi -Hudson.NoSuchDirectory=Dizin mevcut de\u011fil: {0} -Hudson.NotADirectory={0}, bir dizin de\u011fil -Hudson.NotAPlugin={0}, bir Jenkins eklentisi de\u011fil -Hudson.NotJDKDir={0}, bir JDK dizini gibi g\u00f6r\u00fcnm\u00fcyor. -Hudson.Permissions.Title=T\u00fcm Hepsi -Hudson.UnsafeChar=''{0}'' g\u00fcvenli olmayan bir karakter +Hudson.JobAlreadyExists=''{0}'' isminde bir iÅŸ zaten mevcut +Hudson.NoJavaInPath=java, PATH içerisinde deÄŸil. JDK konfigürasyonunu düzeltmeniz gerekebilir? +Hudson.NoName=Ä°sim belirtilmedi +Hudson.NoSuchDirectory=Dizin mevcut deÄŸil: {0} +Hudson.NotADirectory={0}, bir dizin deÄŸil +Hudson.NotAPlugin={0}, bir Jenkins eklentisi deÄŸil +Hudson.NotJDKDir={0}, bir JDK dizini gibi görünmüyor. +Hudson.Permissions.Title=Tüm Hepsi +Hudson.UnsafeChar=''{0}'' güvenli olmayan bir karakter Hudson.ViewName=Hepsi -Item.Permissions.Title=\u0130\u015f +Item.Permissions.Title=Ä°ÅŸ -Job.AllRecentBuildFailed=Son yap\u0131land\u0131rmalar\u0131n hepsi ba\u015far\u0131s\u0131z oldu. -Job.BuildStability=Yap\u0131land\u0131rma istikrar\u0131: {0} -Job.NOfMFailed=Son {1} yap\u0131land\u0131rmadan {0} tanesi ba\u015far\u0131s\u0131z oldu. -Job.NoRecentBuildFailed=Son yap\u0131land\u0131rmalar\u0131n hepsi ba\u015far\u0131l\u0131 oldu +Job.AllRecentBuildFailed=Son yapılandırmaların hepsi baÅŸarısız oldu. +Job.BuildStability=Yapılandırma istikrarı: {0} +Job.NOfMFailed=Son {1} yapılandırmadan {0} tanesi baÅŸarısız oldu. +Job.NoRecentBuildFailed=Son yapılandırmaların hepsi baÅŸarılı oldu Job.Pronoun=Proje Job.minutes=dak -MyView.DisplayName=Ki\u015fisel G\u00f6r\u00fcn\u00fcm -MyViewsProperty.DisplayName=Ki\u015fisel G\u00f6r\u00fcn\u00fcmler -MyViewsProperty.GlobalAction.DisplayName=Ki\u015fisel G\u00f6r\u00fcn\u00fcmler +MyView.DisplayName=KiÅŸisel Görünüm +MyViewsProperty.DisplayName=KiÅŸisel Görünümler +MyViewsProperty.GlobalAction.DisplayName=KiÅŸisel Görünümler -Queue.BlockedBy={0} taraf\u0131ndan engellendi -Queue.InProgress=Bir yap\u0131land\u0131rma zaten i\u015flemde -Queue.InQuietPeriod=Sessiz periyotta. {0} i\u00e7erisinde sona erecek. +Queue.BlockedBy={0} tarafından engellendi +Queue.InProgress=Bir yapılandırma zaten iÅŸlemde +Queue.InQuietPeriod=Sessiz periyotta. {0} içerisinde sona erecek. Queue.Unknown=??? -Run.BuildAborted=Yap\u0131land\u0131rma durduruldu -Run.MarkedExplicitly=kayd\u0131 tutmak i\u00e7in d\u0131\u015far\u0131dan i\u015faretlendi -Run.Permissions.Title=\u00c7al\u0131\u015ft\u0131r +Run.BuildAborted=Yapılandırma durduruldu +Run.MarkedExplicitly=kaydı tutmak için dışarıdan iÅŸaretlendi +Run.Permissions.Title=Çalıştır Run.UnableToDelete={0} silinemiyor: {1} -View.Permissions.Title=G\u00f6r\u00fcnt\u00fc -Permalink.LastBuild=Son yap\u0131land\u0131rma -Permalink.LastStableBuild=Son stabil yap\u0131land\u0131rma -Permalink.LastSuccessfulBuild=Son ba\u015far\u0131l\u0131 yap\u0131land\u0131rma -Permalink.LastFailedBuild=Son ba\u015far\u0131s\u0131z yap\u0131land\u0131rma -ManageJenkinsAction.DisplayName=Jenkins''i Y\u00f6net -ParametersDefinitionProperty.DisplayName=Bu yap\u0131land\u0131rma parametrele\u015ftirilmi\u015ftir. +View.Permissions.Title=Görüntü +Permalink.LastBuild=Son yapılandırma +Permalink.LastStableBuild=Son stabil yapılandırma +Permalink.LastSuccessfulBuild=Son baÅŸarılı yapılandırma +Permalink.LastFailedBuild=Son baÅŸarısız yapılandırma +ManageJenkinsAction.DisplayName=Jenkins''i Yönet +ParametersDefinitionProperty.DisplayName=Bu yapılandırma parametreleÅŸtirilmiÅŸtir. diff --git a/core/src/main/resources/hudson/model/Messages_uk.properties b/core/src/main/resources/hudson/model/Messages_uk.properties index 812ebc54065d..0e17bda155e3 100644 --- a/core/src/main/resources/hudson/model/Messages_uk.properties +++ b/core/src/main/resources/hudson/model/Messages_uk.properties @@ -1,3 +1,3 @@ -ParametersDefinitionProperty.DisplayName=\u0426\u044F \u0431\u0443\u0434\u043E\u0432\u0430 \u043C\u0430\u0454 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0438 +ParametersDefinitionProperty.DisplayName=Ð¦Ñ Ð±ÑƒÐ´Ð¾Ð²Ð° має параметри -FreeStyleProject.Description=\u0426\u0435 - \u043E\u0441\u043D\u043E\u0432\u043D\u0430 \u0432\u0456\u0434\u043C\u0456\u043D\u043D\u0456\u0441\u0442\u044C Jenkins. Jenkins \u043F\u043E\u0431\u0443\u0434\u0443\u0454 \u0432\u0430\u0448 \u043F\u0440\u043E\u0435\u043A\u0442, \u043A\u043E\u043C\u0431\u0456\u043D\u0443\u044E\u0447\u0438 \u0431\u0443\u0434\u044C-\u044F\u043A\u0456 \u0441\u0438\u0441\u0442\u0435\u043C\u0438 \u0443\u043F\u0440\u0430\u0432\u043B\u0456\u043D\u043D\u044F \u043A\u043E\u0434\u043E\u043C \u0437 \u0431\u0443\u0434\u044C-\u044F\u043A\u0438\u043C\u0438 \u0441\u0438\u0441\u0442\u0435\u043C\u0430\u043C\u0438 \u0437\u0431\u0456\u0440\u043A\u0438, \u0449\u043E \u043C\u043E\u0436\u0435 \u0431\u0443\u0442\u0438 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043E \u043D\u0430\u0432\u0456\u0442\u044C \u0434\u043B\u044F \u0446\u0456\u043B\u0435\u0439 \u0432\u0456\u0434\u043C\u0456\u043D\u043D\u0438\u0445 \u0432\u0456\u0434 \u0437\u0431\u0456\u0440\u043A\u0438 \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u043D\u043E\u0433\u043E \u0437\u0430\u0431\u0435\u0437\u043F\u0435\u0447\u0435\u043D\u043D\u044F. +FreeStyleProject.Description=Це - оÑновна відмінніÑÑ‚ÑŒ Jenkins. Jenkins побудує ваш проект, комбінуючи будь-Ñкі ÑиÑтеми ÑƒÐ¿Ñ€Ð°Ð²Ð»Ñ–Ð½Ð½Ñ ÐºÐ¾Ð´Ð¾Ð¼ з будь-Ñкими ÑиÑтемами збірки, що може бути викориÑтано навіть Ð´Ð»Ñ Ñ†Ñ–Ð»ÐµÐ¹ відмінних від збірки програмного забезпеченнÑ. diff --git a/core/src/main/resources/hudson/model/Messages_zh_TW.properties b/core/src/main/resources/hudson/model/Messages_zh_TW.properties index acef3ae546d0..ee910ee05479 100644 --- a/core/src/main/resources/hudson/model/Messages_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Messages_zh_TW.properties @@ -21,276 +21,276 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -AbstractBuild.BuildingRemotely=\u5728 {0} \u4e0a\u9060\u7aef\u5efa\u7f6e -AbstractBuild.BuildingOnMaster=\u5728 Master \u4e0a\u5efa\u7f6e -AbstractBuild_Building=\u5efa\u7f6e\u4e2d -AbstractBuild.BuildingInWorkspace=\ \u5de5\u4f5c\u5340 {0} -AbstractBuild.KeptBecause=\u56e0\u70ba {0} \u800c\u4fdd\u7559 - -AbstractItem.NoSuchJobExists=\u6c92\u6709 ''{0}'' \u4f5c\u696d\u3002\u60a8\u6307\u7684\u662f ''{1}'' \u55ce? -AbstractItem.Pronoun=\u4f5c\u696d -AbstractItem.NewNameInUse={0} \u9019\u500b\u540d\u5b57\u5df2\u7d93\u88ab\u4f7f\u7528\u4e86\u3002 -AbstractProject.NewBuildForWorkspace=\u6311\u500b\u6642\u9593\u5efa\u7f6e\uff0c\u5c31\u80fd\u7522\u751f\u5de5\u4f5c\u5340\u3002 -AbstractProject.AwaitingBuildForWorkspace=\u7b49\u5019\u5efa\u7f6e\u7522\u51fa\u5de5\u4f5c\u5340\u3002 -AbstractProject.Pronoun=\u5c08\u6848 -AbstractProject.Aborted=\u4e2d\u65b7 -AbstractProject.UpstreamBuildInProgress=\u4e0a\u6e38\u5c08\u6848 {0} \u5efa\u7f6e\u4e2d\u3002 -AbstractProject.DownstreamBuildInProgress=\u4e0b\u6e38\u5c08\u6848 {0} \u5efa\u7f6e\u4e2d\u3002 -AbstractProject.Disabled=\u5efa\u7f6e\u505c\u7528 -AbstractProject.NoBuilds=\u6c92\u6709\u5efa\u7f6e\u8a18\u9304\u3002\u99ac\u4e0a\u5efa\u7f6e\u4e00\u6b21\u5427\u3002 -AbstractProject.NoSCM=\u7121 SCM -AbstractProject.NoWorkspace=\u6c92\u6709\u5de5\u4f5c\u5340\uff0c\u7121\u6cd5\u6aa2\u67e5\u66f4\u65b0\u3002 -AbstractProject.PollingABorted=\u4e2d\u65b7 SCM \u8f2a\u8a62 -AbstractProject.ScmAborted=\u4e2d\u65b7 SCM Checkout -AbstractProject.WorkspaceOffline=\u5de5\u4f5c\u5340\u96e2\u7dda\u3002 +AbstractBuild.BuildingRemotely=在 {0} 上é ç«¯å»ºç½® +AbstractBuild.BuildingOnMaster=在 Master 上建置 +AbstractBuild_Building=建置中 +AbstractBuild.BuildingInWorkspace=\ å·¥ä½œå€ {0} +AbstractBuild.KeptBecause=因為 {0} 而ä¿ç•™ + +AbstractItem.NoSuchJobExists=沒有 ''{0}'' 作業。您指的是 ''{1}'' å—Ž? +AbstractItem.Pronoun=作業 +AbstractItem.NewNameInUse={0} 這個å字已經被使用了。 +AbstractProject.NewBuildForWorkspace=挑個時間建置,就能產生工作å€ã€‚ +AbstractProject.AwaitingBuildForWorkspace=等候建置產出工作å€ã€‚ +AbstractProject.Pronoun=專案 +AbstractProject.Aborted=中斷 +AbstractProject.UpstreamBuildInProgress=上游專案 {0} 建置中。 +AbstractProject.DownstreamBuildInProgress=下游專案 {0} 建置中。 +AbstractProject.Disabled=建置åœç”¨ +AbstractProject.NoBuilds=沒有建置記錄。馬上建置一次å§ã€‚ +AbstractProject.NoSCM=ç„¡ SCM +AbstractProject.NoWorkspace=沒有工作å€ï¼Œç„¡æ³•æª¢æŸ¥æ›´æ–°ã€‚ +AbstractProject.PollingABorted=中斷 SCM 輪詢 +AbstractProject.ScmAborted=中斷 SCM Checkout +AbstractProject.WorkspaceOffline=工作å€é›¢ç·šã€‚ AbstractProject.BuildPermission.Description=\ - \u6388\u8207\u555f\u52d5\u5efa\u7f6e\u7684\u6b0a\u9650\u3002 + 授與啟動建置的權é™ã€‚ AbstractProject.WorkspacePermission.Description=\ - \u6388\u8207\u5b58\u53d6\u5de5\u4f5c\u5340\u5167\u5bb9\u7684\u6b0a\u9650\u3002\ - Jenkins \u6703\u5c07\u7a0b\u5f0f\u78bc\u5b58\u5728\u9019\u88e1\u624d\u958b\u59cb\u5efa\u7f6e\u3002\u5982\u679c\u60a8\u4e0d\u5e0c\u671b\u4f7f\u7528\u8005\u770b\u5230\u539f\u59cb\u78bc\uff0c\u8acb\u64a4\u92b7\u8a72\u6b0a\u9650\u3002 + 授與存å–工作å€å…§å®¹çš„權é™ã€‚\ + Jenkins 會將程å¼ç¢¼å­˜åœ¨é€™è£¡æ‰é–‹å§‹å»ºç½®ã€‚如果您ä¸å¸Œæœ›ä½¿ç”¨è€…看到原始碼,請撤銷該權é™ã€‚ AbstractProject.ExtendedReadPermission.Description=\ - \u6388\u8207\u8b80\u53d6\u5c08\u6848\u8a2d\u5b9a\u7684\u6b0a\u9650\u3002\ - \u8acb\u7559\u610f\uff0c\u6388\u8207\u9019\u9805\u6b0a\u9650\u5f8c\uff0c\u60a8\u5efa\u7f6e\u4f5c\u696d\u4e2d\u7684\u5bc6\u78bc\u7b49\u654f\u611f\u8cc7\u8a0a\uff0c\u53ef\u80fd\u6703\u8b93\u592a\u591a\u4eba\u770b\u5230\u3002 + 授與讀å–專案設定的權é™ã€‚\ + è«‹ç•™æ„,授與這項權é™å¾Œï¼Œæ‚¨å»ºç½®ä½œæ¥­ä¸­çš„密碼等æ•æ„Ÿè³‡è¨Šï¼Œå¯èƒ½æœƒè®“太多人看到。 AbstractProject.DiscoverPermission.Description=\ - \u6388\u8207\u63a2\u7d22\u4f5c\u696d\u7684\u6b0a\u9650\u3002 \ - \u6bd4\u8b80\u53d6\u6b0a\u9650\u9084\u8981\u4f4e\uff0c\u7576\u533f\u540d\u4f7f\u7528\u8005\u76f4\u63a5\u9023\u5230\u4f5c\u696d\u7db2\u5740\u6642\uff0c\u5c07\u4ed6\u5011\u5c0e\u5230\u767b\u5165\u9801\u9762\u3002\ - \u5426\u5247\u5c31\u76f4\u63a5\u56de\u50b3 404 \u932f\u8aa4\uff0c\u4e0d\u8b93\u4f7f\u7528\u8005\u6709\u6a5f\u6703\u63a2\u7d22\u5c08\u6848\u540d\u7a31\u3002 + 授與探索作業的權é™ã€‚ \ + 比讀å–權é™é‚„è¦ä½Žï¼Œç•¶åŒ¿å使用者直接連到作業網å€æ™‚,將他們導到登入é é¢ã€‚\ + å¦å‰‡å°±ç›´æŽ¥å›žå‚³ 404 錯誤,ä¸è®“使用者有機會探索專案å稱。 AbstractProject.WipeOutPermission.Description=\ - \u6388\u8207\u6e05\u7a7a\u5de5\u4f5c\u5340\u7684\u6b0a\u9650\u3002 + 授與清空工作å€çš„權é™ã€‚ AbstractProject.CancelPermission.Description=\ - \u6388\u8207\u53d6\u6d88\u5efa\u7f6e\u7684\u80fd\u529b\u3002 -AbstractProject.CustomWorkspaceEmpty=\u81ea\u8a02\u5de5\u4f5c\u5340\u662f\u7a7a\u7684\u3002 + 授與å–消建置的能力。 +AbstractProject.CustomWorkspaceEmpty=自訂工作å€æ˜¯ç©ºçš„。 -Api.MultipleMatch=XPath "{0}" \u6bd4\u5c0d\u51fa {1} \u500b\u7bc0\u9ede\u3002\ - \u5efa\u7acb\u525b\u525b\u597d\u7b26\u5408\u4e00\u500b\u7bc0\u9ede\u7684 XPath\uff0c\u6216\u662f\u4f7f\u7528 "wrapper" \u67e5\u8a62\u53c3\u6578\u5c07\u6240\u6709\u7b26\u5408\u7bc0\u9ede\u5305\u5728\u6839\u5143\u7d20\u4e2d\u3002 -Api.NoXPathMatch=XPath {0} \u6c92\u6709\u7b26\u5408\u9805\u76ee +Api.MultipleMatch=XPath "{0}" 比å°å‡º {1} 個節點。\ + 建立剛剛好符åˆä¸€å€‹ç¯€é»žçš„ XPath,或是使用 "wrapper" 查詢åƒæ•¸å°‡æ‰€æœ‰ç¬¦åˆç¯€é»žåŒ…在根元素中。 +Api.NoXPathMatch=XPath {0} 沒有符åˆé …ç›® -BallColor.Aborted=\u4e2d\u65b7 -BallColor.Disabled=\u505c\u7528 -BallColor.Failed=\u5931\u6557 -BallColor.InProgress=\u57f7\u884c\u4e2d -BallColor.NotBuilt=\u672a\u5efa\u7f6e -BallColor.Pending=\u64f1\u7f6e -BallColor.Success=\u6210\u529f -BallColor.Unstable=\u4e0d\u7a69\u5b9a +BallColor.Aborted=中斷 +BallColor.Disabled=åœç”¨ +BallColor.Failed=失敗 +BallColor.InProgress=執行中 +BallColor.NotBuilt=未建置 +BallColor.Pending=擱置 +BallColor.Success=æˆåŠŸ +BallColor.Unstable=ä¸ç©©å®š -CLI.disconnect-node.shortDescription=\u4e2d\u65b7\u8207\u6307\u5b9a\u7bc0\u9ede\u7684\u9023\u7dda\u3002 -CLI.online-node.shortDescription=\u7e7c\u7e8c\u4f7f\u7528\u6307\u5b9a\u7bc0\u9ede\u4f86\u5efa\u7f6e\uff0c\u53d6\u6d88\u5148\u524d\u7684 "offline-node" \u6307\u4ee4\u3002 +CLI.disconnect-node.shortDescription=中斷與指定節點的連線。 +CLI.online-node.shortDescription=繼續使用指定節點來建置,å–消先å‰çš„ "offline-node" 指令。 -ComputerSet.DisplayName=\u7bc0\u9ede +ComputerSet.DisplayName=節點 Descriptor.From=(from {0}) Executor.NotAvailable=N/A -FreeStyleProject.DisplayName=\u5efa\u7f6e Free-Style \u8edf\u9ad4\u5c08\u6848 +FreeStyleProject.DisplayName=建置 Free-Style 軟體專案 FreeStyleProject.Description=\ - \u9019\u662f Jenkins \u7684\u4e3b\u8981\u529f\u80fd\u3002\ - Jenkins \u80fd\u642d\u914d\u5404\u5f0f\u7a0b\u5f0f\u78bc\u7ba1\u7406\u3001\u5efa\u7f6e\u7cfb\u7d71\u4f86\u5efa\u7f6e\u60a8\u7684\u5c08\u6848\uff0c\ - \u751a\u81f3\u9084\u80fd\u505a\u8edf\u9ad4\u5efa\u7f6e\u4ee5\u5916\u7684\u5176\u4ed6\u4e8b\u60c5\u3002 + 這是 Jenkins 的主è¦åŠŸèƒ½ã€‚\ + Jenkins 能æ­é…å„å¼ç¨‹å¼ç¢¼ç®¡ç†ã€å»ºç½®ç³»çµ±ä¾†å»ºç½®æ‚¨çš„專案,\ + 甚至還能åšè»Ÿé«”建置以外的其他事情。 -Hudson.BadPortNumber=\u9023\u63a5\u57e0\u865f {0} \u7121\u6548 +Hudson.BadPortNumber=連接埠號 {0} 無效 Hudson.Computer.Caption=Master Hudson.Computer.DisplayName=master -Hudson.ControlCodeNotAllowed=\u4e0d\u5141\u8a31\u63a7\u5236\u78bc: {0} +Hudson.ControlCodeNotAllowed=ä¸å…許控制碼: {0} Hudson.DisplayName=Jenkins -Hudson.JobAlreadyExists=\u5df2\u7d93\u6709\u53eb\u505a ''{0}'' \u7684\u4f5c\u696d\u4e86 -Hudson.NoJavaInPath=java \u4e26\u4e0d\u5728 PATH \u4e2d\u3002\u4e5f\u8a31\u60a8\u8a72\u8a2d\u5b9a\u4e00\u4e0b JDK? -Hudson.NoName=\u6c92\u6709\u6307\u5b9a\u540d\u7a31 -Hudson.NoSuchDirectory=\u6c92\u6709\u76ee\u9304: {0} -Hudson.NodeBeingRemoved=\u7bc0\u9ede\u6b63\u88ab\u79fb\u9664 -Hudson.NotADirectory={0} \u4e0d\u662f\u76ee\u9304 -Hudson.NotAPlugin={0} \u4e0d\u662f Jenkins \u5916\u639b\u7a0b\u5f0f -Hudson.NotJDKDir={0} \u4e0d\u50cf\u662f JDK \u76ee\u9304 -Hudson.Permissions.Title=\u6574\u9ad4 -Hudson.USER_CONTENT_README=\u9019\u500b\u76ee\u9304\u4e2d\u7684\u6a94\u6848\u53ef\u4ee5\u900f\u904e http://server/jenkins/userContent/ \u5b58\u53d6 -Hudson.UnsafeChar=''{0}'' \u662f\u4e0d\u5efa\u8b70\u4f7f\u7528\u7684\u5b57\u5143 -Hudson.ViewAlreadyExists=\u5df2\u7d93\u6709\u53eb\u505a "{0}" \u7684\u8996\u666f\u4e86 -Hudson.ViewName=\u5168\u90e8 -Hudson.NotANumber=\u4e0d\u662f\u6578\u5b57 -Hudson.NotAPositiveNumber=\u4e0d\u662f\u6b63\u6578 -Hudson.NotANonNegativeNumber=\u4e0d\u80fd\u70ba\u8ca0\u6578 -Hudson.NotANegativeNumber=\u4e0d\u662f\u8ca0\u6578 +Hudson.JobAlreadyExists=已經有å«åš ''{0}'' 的作業了 +Hudson.NoJavaInPath=java 並ä¸åœ¨ PATH 中。也許您該設定一下 JDK? +Hudson.NoName=沒有指定å稱 +Hudson.NoSuchDirectory=沒有目錄: {0} +Hudson.NodeBeingRemoved=節點正被移除 +Hudson.NotADirectory={0} ä¸æ˜¯ç›®éŒ„ +Hudson.NotAPlugin={0} ä¸æ˜¯ Jenkins å¤–æŽ›ç¨‹å¼ +Hudson.NotJDKDir={0} ä¸åƒæ˜¯ JDK 目錄 +Hudson.Permissions.Title=æ•´é«” +Hudson.USER_CONTENT_README=這個目錄中的檔案å¯ä»¥é€éŽ http://server/jenkins/userContent/ å­˜å– +Hudson.UnsafeChar=''{0}'' 是ä¸å»ºè­°ä½¿ç”¨çš„å­—å…ƒ +Hudson.ViewAlreadyExists=已經有å«åš "{0}" 的視景了 +Hudson.ViewName=全部 +Hudson.NotANumber=ä¸æ˜¯æ•¸å­— +Hudson.NotAPositiveNumber=ä¸æ˜¯æ­£æ•¸ +Hudson.NotANonNegativeNumber=ä¸èƒ½ç‚ºè² æ•¸ +Hudson.NotANegativeNumber=ä¸æ˜¯è² æ•¸ Hudson.NotUsesUTF8ToDecodeURL=\ - \u60a8\u7684\u5bb9\u5668\u4e0d\u662f\u4f7f\u7528 UTF-8 \u89e3\u8b6f URL\u3002\u5982\u679c\u60a8\u5728\u4f5c\u696d\u7b49\u540d\u7a31\u4e2d\u4f7f\u7528\u4e86\u975e ASCII \u5b57\u5143\uff0c\u53ef\u80fd\u6703\u9020\u6210\u554f\u984c\u3002\ - \u8acb\u53c3\u8003 Container \u53ca \ - Tomcat i18n \u8cc7\u6599\u3002 + 您的容器ä¸æ˜¯ä½¿ç”¨ UTF-8 解譯 URL。如果您在作業等åç¨±ä¸­ä½¿ç”¨äº†éž ASCII 字元,å¯èƒ½æœƒé€ æˆå•é¡Œã€‚\ + è«‹åƒè€ƒ Container åŠ \ + Tomcat i18n 資料。 Hudson.AdministerPermission.Description=\ - \u6388\u8207\u8b8a\u66f4\u6574\u500b\u7cfb\u7d71\u8a2d\u5b9a\u7684\u6b0a\u9650\u3002\ - \u5305\u62ec\u57f7\u884c\u9ad8\u5ea6\u654f\u611f\u7684\u4f5c\u696d\uff0c\u751a\u81f3\u53ef\u4ee5\u5b58\u53d6\u6574\u500b\u672c\u5730\u7cfb\u7d71 \ - (\u4f46\u4ecd\u6703\u53d7\u9650\u65bc\u4f4e\u5c64\u4f5c\u696d\u7cfb\u7d71\u7684\u6b0a\u9650\u63a7\u5236)\u3002 + 授與變更整個系統設定的權é™ã€‚\ + 包括執行高度æ•æ„Ÿçš„作業,甚至å¯ä»¥å­˜å–整個本地系統 \ + (但ä»æœƒå—é™æ–¼ä½Žå±¤ä½œæ¥­ç³»çµ±çš„權é™æŽ§åˆ¶)。 Hudson.ReadPermission.Description=\ - \u6709\u8b80\u53d6\u6b0a\u9650\u624d\u80fd\u770b\u5230 Jenkins \u7684\u5927\u90e8\u5206\u7db2\u9801\u3002\ - \u5982\u679c\u60a8\u4e0d\u60f3\u8b93\u6c92\u901a\u904e\u9a57\u8b49\u7684\u4f7f\u7528\u8005\u770b\u5230 Jenkins \u7db2\u9801\uff0c\u8acb\u64a4\u92b7 anonymous \u4f7f\u7528\u8005\u7684\u6b0a\u9650\uff0c\ - \u518d\u65b0\u589e "authenticated" \u865b\u64ec\u4f7f\u7528\u8005\uff0c\u4e26\u6388\u8207\u8b80\u53d6\u6b0a\u9650\u3002 -Hudson.NodeDescription=Jenkins \u4e3b\u7bc0\u9ede - -Item.Permissions.Title=\u4f5c\u696d -Item.CREATE.description=\u5efa\u7acb\u65b0\u4f5c\u696d\u3002 -Item.DELETE.description=\u522a\u9664\u4f5c\u696d\u3002 -Item.CONFIGURE.description=\u8b8a\u66f4\u4f5c\u696d\u8a2d\u5b9a\u3002 -Item.READ.description=\u6aa2\u8996\u4f5c\u696d\u3002(\u60a8\u53ef\u4ee5\u5141\u8a31 Discover (\u63a2\u7d22) \u6b0a\u9650\uff0c\u540c\u6642\u9650\u5236\u4f4f\u9019\u9805\u6b0a\u9650\uff0c\u5f37\u8feb\u4f7f\u7528\u8005\u8981\u767b\u5165\u624d\u80fd\u770b\u5230\u4f5c\u696d\u5167\u5bb9\u3002) - -Job.AllRecentBuildFailed=\u6700\u8fd1\u5e7e\u6b21\u5efa\u7f6e\u90fd\u5931\u6557\u3002 -Job.BuildStability=\u5efa\u7f6e\u7a69\u5b9a\u6027: {0} -Job.NOfMFailed=\u6700\u8fd1 {1} \u6b21\u5efa\u7f6e\u4e2d\u6709 {0} \u6b21\u5931\u6557\u3002 -Job.NoRecentBuildFailed=\u6700\u8fd1\u5e7e\u6b21\u5efa\u7f6e\u90fd\u6c92\u6709\u5931\u6557\u3002 -Job.Pronoun=\u5c08\u6848 -Job.minutes=\u5206 -Job.NoRenameWhileBuilding=\u4f5c\u696d\u5efa\u7f6e\u4e2d\uff0c\u7121\u6cd5\u6539\u540d\u3002 - -Label.GroupOf={0} \u7fa4\u7d44 -Label.InvalidLabel=\u6a19\u7c64\u7121\u6548 -Label.ProvisionedFrom=\u7531 {0} \u63d0\u4f9b + 有讀å–權é™æ‰èƒ½çœ‹åˆ° Jenkins 的大部分網é ã€‚\ + 如果您ä¸æƒ³è®“沒通éŽé©—證的使用者看到 Jenkins 網é ï¼Œè«‹æ’¤éŠ· anonymous 使用者的權é™ï¼Œ\ + å†æ–°å¢ž "authenticated" 虛擬使用者,並授與讀å–權é™ã€‚ +Hudson.NodeDescription=Jenkins 主節點 + +Item.Permissions.Title=作業 +Item.CREATE.description=建立新作業。 +Item.DELETE.description=刪除作業。 +Item.CONFIGURE.description=變更作業設定。 +Item.READ.description=檢視作業。(您å¯ä»¥å…許 Discover (探索) 權é™ï¼ŒåŒæ™‚é™åˆ¶ä½é€™é …權é™ï¼Œå¼·è¿«ä½¿ç”¨è€…è¦ç™»å…¥æ‰èƒ½çœ‹åˆ°ä½œæ¥­å…§å®¹ã€‚) + +Job.AllRecentBuildFailed=最近幾次建置都失敗。 +Job.BuildStability=建置穩定性: {0} +Job.NOfMFailed=最近 {1} 次建置中有 {0} 次失敗。 +Job.NoRecentBuildFailed=最近幾次建置都沒有失敗。 +Job.Pronoun=專案 +Job.minutes=分 +Job.NoRenameWhileBuilding=作業建置中,無法改å。 + +Label.GroupOf={0} 群組 +Label.InvalidLabel=標籤無效 +Label.ProvisionedFrom=ç”± {0} æä¾› LabelExpression.InvalidBooleanExpression=\ - \u7121\u6548\u7684\u5e03\u6797\u8868\u793a\u5f0f: {0} \ - \u6c92\u6709\u7b26\u5408\u7684\u7bc0\u9ede -ManageJenkinsAction.DisplayName=\u7ba1\u7406 Jenkins -Node.BecauseNodeIsReserved={0} \u4fdd\u7559\u7d66\u9650\u5b9a\u7bc0\u9ede\u7684\u4f5c\u696d -Node.LabelMissing={0} \u6c92\u6709\u6a19\u7c64 {1} -Queue.AllNodesOffline=\u6240\u6709\u6a19\u7c64\u70ba ''{0}'' \u7684\u7bc0\u9ede\u90fd\u96e2\u7dda\u4e86 -Queue.BlockedBy=\u88ab {0} \u963b\u64cb -Queue.HudsonIsAboutToShutDown=Jenkins \u8981\u95dc\u6a5f\u4e86 -Queue.InProgress=\u5df2\u5728\u5efa\u7f6e -Queue.InQuietPeriod=\u5728\u975c\u5019\u6642\u9593\u5167\uff0c\u9084\u8981 {0} -Queue.NodeOffline={0} \u96e2\u7dda + 無效的布林表示å¼: {0} \ + 沒有符åˆçš„節點 +ManageJenkinsAction.DisplayName=ç®¡ç† Jenkins +Node.BecauseNodeIsReserved={0} ä¿ç•™çµ¦é™å®šç¯€é»žçš„作業 +Node.LabelMissing={0} 沒有標籤 {1} +Queue.AllNodesOffline=所有標籤為 ''{0}'' 的節點都離線了 +Queue.BlockedBy=被 {0} 阻擋 +Queue.HudsonIsAboutToShutDown=Jenkins è¦é—œæ©Ÿäº† +Queue.InProgress=已在建置 +Queue.InQuietPeriod=在éœå€™æ™‚é–“å…§ï¼Œé‚„è¦ {0} +Queue.NodeOffline={0} 離線 Queue.Unknown=??? -Queue.WaitingForNextAvailableExecutor=\u7b49\u5019\u53ef\u7528\u7684\u57f7\u884c\u7a0b\u5f0f -Queue.WaitingForNextAvailableExecutorOn=\u7b49\u5019 {0} \u4e2d\u7684\u57f7\u884c\u7a0b\u5f0f -Queue.init=\u9084\u539f\u5efa\u7f6e\u4f47\u5217 - -ResultTrend.Aborted=\u4e2d\u65b7 -ResultTrend.Failure=\u5931\u6557 -ResultTrend.Fixed=\u4fee\u6b63 -ResultTrend.NotBuilt=\u672a\u5efa\u7f6e -ResultTrend.NowUnstable=\u76ee\u524d\u4e0d\u7a69\u5b9a -ResultTrend.StillFailing=\u9084\u662f\u5931\u6557 -ResultTrend.StillUnstable=\u9084\u662f\u4e0d\u7a69\u5b9a -ResultTrend.Success=\u6210\u529f -ResultTrend.Unstable=\u4e0d\u7a69\u5b9a - -Run.BuildAborted=\u5efa\u7f6e\u5df2\u4e2d\u65b7 -Run.MarkedExplicitly=\u6307\u660e\u4fdd\u5b58\u8a72\u7b46\u8a18\u9304 -Run.Permissions.Title=\u57f7\u884c -Run.UnableToDelete=\u7121\u6cd5\u522a\u9664 {0}: {1} +Queue.WaitingForNextAvailableExecutor=等候å¯ç”¨çš„åŸ·è¡Œç¨‹å¼ +Queue.WaitingForNextAvailableExecutorOn=等候 {0} ä¸­çš„åŸ·è¡Œç¨‹å¼ +Queue.init=還原建置佇列 + +ResultTrend.Aborted=中斷 +ResultTrend.Failure=失敗 +ResultTrend.Fixed=修正 +ResultTrend.NotBuilt=未建置 +ResultTrend.NowUnstable=ç›®å‰ä¸ç©©å®š +ResultTrend.StillFailing=還是失敗 +ResultTrend.StillUnstable=還是ä¸ç©©å®š +ResultTrend.Success=æˆåŠŸ +ResultTrend.Unstable=ä¸ç©©å®š + +Run.BuildAborted=建置已中斷 +Run.MarkedExplicitly=指明ä¿å­˜è©²ç­†è¨˜éŒ„ +Run.Permissions.Title=執行 +Run.UnableToDelete=無法刪除 {0}: {1} Run.DeletePermission.Description=\ - \u6388\u8207\u4f7f\u7528\u8005\u624b\u52d5\u522a\u9664\u5efa\u7f6e\u6b77\u7a0b\u4e2d\u4efb\u4e00\u7b46\u8a18\u9304\u7684\u6b0a\u9650\u3002 + 授與使用者手動刪除建置歷程中任一筆記錄的權é™ã€‚ Run.UpdatePermission.Description=\ - \u6388\u8207\u4f7f\u7528\u8005\u66f4\u65b0\u5efa\u7f6e\u63cf\u8ff0\u8aaa\u660e\u53ca\u5176\u4ed6\u5167\u5bb9\u7684\u6b0a\u9650\u3002\ - \u4f8b\u5982\u8a3b\u8a18\u5efa\u7f6e\u5931\u6557\u7684\u539f\u56e0\u3002 + 授與使用者更新建置æ述說明åŠå…¶ä»–內容的權é™ã€‚\ + 例如註記建置失敗的原因。 Run.ArtifactsPermission.Description=\ - \u6388\u8207\u53d6\u5f97\u5efa\u7f6e\u6210\u54c1\u7684\u6b0a\u9650\u3002 \ - \u5982\u679c\u60a8\u4e0d\u60f3\u8b93\u4f7f\u7528\u8005\u62ff\u5230\u7522\u51fa\u7269\uff0c\u5c31\u53ef\u4ee5\u64a4\u92b7\u9019\u9805\u6b0a\u9650\u3002 -Run.InProgressDuration={0}\u4ee5\u4e0a - -Run.Summary.Stable=\u7a69\u5b9a -Run.Summary.Unstable=\u4e0d\u7a69\u5b9a -Run.Summary.Aborted=\u4e2d\u65b7 -Run.Summary.NotBuilt=\u672a\u5efa\u7f6e -Run.Summary.BackToNormal=\u6062\u5fa9\u6b63\u5e38 -Run.Summary.BrokenForALongTime=\u721b\u6389\u597d\u4e00\u9663\u5b50\u4e86 -Run.Summary.BrokenSinceThisBuild=\u5f9e\u9019\u6b21\u5efa\u7f6e\u958b\u59cb\u721b\u4e86 -Run.Summary.BrokenSince=\u5f9e {0} \u6b21\u5efa\u7f6e\u958b\u59cb\u721b\u4e86 + 授與å–得建置æˆå“的權é™ã€‚ \ + 如果您ä¸æƒ³è®“使用者拿到產出物,就å¯ä»¥æ’¤éŠ·é€™é …權é™ã€‚ +Run.InProgressDuration={0}以上 + +Run.Summary.Stable=穩定 +Run.Summary.Unstable=ä¸ç©©å®š +Run.Summary.Aborted=中斷 +Run.Summary.NotBuilt=未建置 +Run.Summary.BackToNormal=æ¢å¾©æ­£å¸¸ +Run.Summary.BrokenForALongTime=爛掉好一陣å­äº† +Run.Summary.BrokenSinceThisBuild=從這次建置開始爛了 +Run.Summary.BrokenSince=從 {0} 次建置開始爛了 Run.Summary.Unknown=? -Slave.Network.Mounted.File.System.Warning=\u60a8\u78ba\u5b9a\u8981\u4f7f\u7528\u7db2\u8def\u639b\u8f09\u7684\u6a94\u6848\u7cfb\u7d71\u505a\u70ba\u6839\u76ee\u9304\u55ce? \u9019\u500b\u76ee\u9304 Master \u4e0d\u9700\u8981\u8b93\u76f4\u63a5\u5b58\u53d6\u5594\u3002 -Slave.Remote.Director.Mandatory=\u4e00\u5b9a\u8981\u6307\u5b9a\u9060\u7aef\u76ee\u9304 +Slave.Network.Mounted.File.System.Warning=您確定è¦ä½¿ç”¨ç¶²è·¯æŽ›è¼‰çš„檔案系統åšç‚ºæ ¹ç›®éŒ„å—Ž? 這個目錄 Master ä¸éœ€è¦è®“直接存å–喔。 +Slave.Remote.Director.Mandatory=一定è¦æŒ‡å®šé ç«¯ç›®éŒ„ -View.Permissions.Title=\u8996\u666f +View.Permissions.Title=視景 View.CreatePermission.Description=\ - \u6388\u8207\u4f7f\u7528\u8005\u5efa\u7acb\u65b0\u8996\u666f\u7684\u6b0a\u9650\u3002 + 授與使用者建立新視景的權é™ã€‚ View.DeletePermission.Description=\ - \u6388\u8207\u4f7f\u7528\u8005\u522a\u9664\u65e2\u6709\u8996\u666f\u7684\u6b0a\u9650\u3002 + 授與使用者刪除既有視景的權é™ã€‚ View.ConfigurePermission.Description=\ - \u6388\u8207\u4f7f\u7528\u8005\u4fee\u6539\u8996\u666f\u8a2d\u5b9a\u7684\u6b0a\u9650\u3002 + 授與使用者修改視景設定的權é™ã€‚ View.ReadPermission.Description=\ - \u6388\u8207\u4f7f\u7528\u8005\u770b\u5230\u8996\u666f\u7684\u6b0a\u9650 (\u4e5f\u53ef\u7531\u4e00\u822c\u8b80\u53d6\u6b0a\u9650\u6388\u8207)\u3002 -View.MissingMode=\u6c92\u6709\u6307\u5b9a\u8996\u666f\u985e\u578b + æŽˆèˆ‡ä½¿ç”¨è€…çœ‹åˆ°è¦–æ™¯çš„æ¬Šé™ (也å¯ç”±ä¸€èˆ¬è®€å–權é™æŽˆèˆ‡)。 +View.MissingMode=沒有指定視景類型 -UpdateCenter.DownloadButNotActivated=\u4e0b\u8f09\u6210\u529f\u3002\u4e0b\u6b21\u555f\u52d5\u5f8c\u5c31\u6703\u751f\u6548\u3002 +UpdateCenter.DownloadButNotActivated=下載æˆåŠŸã€‚下次啟動後就會生效。 UpdateCenter.n_a=N/A -UpdateCenter.Status.CheckingInternet=\u6aa2\u67e5\u662f\u5426\u80fd\u9023\u5230\u7db2\u969b\u7db2\u8def -UpdateCenter.Status.CheckingJavaNet=\u6aa2\u67e5\u662f\u5426\u80fd\u9023\u5230\u66f4\u65b0\u4e2d\u5fc3 -UpdateCenter.Status.Success=\u6210\u529f +UpdateCenter.Status.CheckingInternet=檢查是å¦èƒ½é€£åˆ°ç¶²éš›ç¶²è·¯ +UpdateCenter.Status.CheckingJavaNet=檢查是å¦èƒ½é€£åˆ°æ›´æ–°ä¸­å¿ƒ +UpdateCenter.Status.Success=æˆåŠŸ UpdateCenter.Status.UnknownHostException=\ - \u7121\u6cd5\u89e3\u6790\u4e3b\u6a5f\u540d\u7a31 {0}\u3002\ - \u8aaa\u4e0d\u5b9a\u60a8\u61c9\u8a72\u8981\u8a2d\u5b9a HTTP \u4ee3\u7406\u4f3a\u670d\u5668? + 無法解æžä¸»æ©Ÿå稱 {0}。\ + 說ä¸å®šæ‚¨æ‡‰è©²è¦è¨­å®š HTTP 代ç†ä¼ºæœå™¨? UpdateCenter.Status.ConnectionFailed=\ - \u7121\u6cd5\u9023\u7dda\u5230{0}\u3002\ - \u8aaa\u4e0d\u5b9a\u60a8\u61c9\u8a72\u8981\u8a2d\u5b9a HTTP \u4ee3\u7406\u4f3a\u670d\u5668? -UpdateCenter.init=\u521d\u59cb\u5316\u66f4\u65b0\u4e2d\u5fc3 -UpdateCenter.PluginCategory.builder=\u5efa\u7f6e\u5de5\u5177 -UpdateCenter.PluginCategory.buildwrapper=\u5efa\u7f6e\u5305\u88dd\u7a0b\u5f0f -UpdateCenter.PluginCategory.cli=\u547d\u4ee4\u5217\u4ecb\u9762 -UpdateCenter.PluginCategory.cluster=\u53e2\u96c6\u7ba1\u7406\u53ca\u5206\u6563\u5f0f\u5efa\u7f6e -UpdateCenter.PluginCategory.external=\u5916\u90e8\u7db2\u7ad9/\u5de5\u5177\u6574\u5408 -UpdateCenter.PluginCategory.listview-column=\u6e05\u55ae\u6aa2\u8996\u6b04\u4f4d + 無法連線到{0}。\ + 說ä¸å®šæ‚¨æ‡‰è©²è¦è¨­å®š HTTP 代ç†ä¼ºæœå™¨? +UpdateCenter.init=åˆå§‹åŒ–更新中心 +UpdateCenter.PluginCategory.builder=建置工具 +UpdateCenter.PluginCategory.buildwrapper=建置包è£ç¨‹å¼ +UpdateCenter.PluginCategory.cli=å‘½ä»¤åˆ—ä»‹é¢ +UpdateCenter.PluginCategory.cluster=å¢é›†ç®¡ç†åŠåˆ†æ•£å¼å»ºç½® +UpdateCenter.PluginCategory.external=外部網站/å·¥å…·æ•´åˆ +UpdateCenter.PluginCategory.listview-column=æ¸…å–®æª¢è¦–æ¬„ä½ UpdateCenter.PluginCategory.maven=Maven -UpdateCenter.PluginCategory.misc=\u5176\u4ed6 -UpdateCenter.PluginCategory.notifier=\u5efa\u7f6e\u901a\u77e5\u7a0b\u5f0f -UpdateCenter.PluginCategory.page-decorator=\u9801\u9762\u4fee\u98fe -UpdateCenter.PluginCategory.post-build=\u5176\u4ed6\u5efa\u7f6e\u5f8c\u52d5\u4f5c -UpdateCenter.PluginCategory.report=\u5efa\u7f6e\u5831\u8868 -UpdateCenter.PluginCategory.scm=\u539f\u59cb\u78bc\u7ba1\u7406 -UpdateCenter.PluginCategory.scm-related=\u539f\u59cb\u78bc\u7ba1\u7406\u76f8\u95dc -UpdateCenter.PluginCategory.trigger=\u5efa\u7f6e\u89f8\u767c\u7a0b\u5e8f -UpdateCenter.PluginCategory.ui=\u4f7f\u7528\u8005\u4ecb\u9762 -UpdateCenter.PluginCategory.upload=\u6210\u54c1\u4e0a\u50b3 -UpdateCenter.PluginCategory.user=\u9a57\u8b49\u53ca\u4f7f\u7528\u8005\u7ba1\u7406 -UpdateCenter.PluginCategory.must-be-labeled=\u672a\u5206\u985e -UpdateCenter.PluginCategory.unrecognized=\u5176\u4ed6 ({0}) - -Permalink.LastBuild=\u6700\u65b0\u5efa\u7f6e -Permalink.LastStableBuild=\u6700\u65b0\u7a69\u5b9a\u5efa\u7f6e -Permalink.LastUnstableBuild=\u6700\u65b0\u4e0d\u7a69\u5b9a\u5efa\u7f6e -Permalink.LastUnsuccessfulBuild=\u6700\u65b0\u4e0d\u6210\u529f\u5efa\u7f6e -Permalink.LastSuccessfulBuild=\u6700\u65b0\u6210\u529f\u5efa\u7f6e -Permalink.LastFailedBuild=\u6700\u65b0\u5931\u6557\u5efa\u7f6e - -ParameterAction.DisplayName=\u53c3\u6578 -StringParameterDefinition.DisplayName=\u5b57\u4e32\u53c3\u6578 -TextParameterDefinition.DisplayName=\u6587\u5b57\u53c3\u6578 -FileParameterDefinition.DisplayName=\u6a94\u6848\u53c3\u6578 -BooleanParameterDefinition.DisplayName=\u5e03\u6797\u503c -ChoiceParameterDefinition.DisplayName=\u9078\u64c7 -RunParameterDefinition.DisplayName=\u57f7\u884c\u53c3\u6578 -PasswordParameterDefinition.DisplayName=\u5bc6\u78bc\u53c3\u6578 - -Node.Mode.NORMAL=\u76e1\u53ef\u80fd\u4f7f\u7528\u9019\u500b\u7bc0\u9ede -Node.Mode.EXCLUSIVE=\u53ea\u4fdd\u7559\u7d66\u9650\u5b9a\u7bc0\u9ede\u7684\u4f5c\u696d - -ListView.DisplayName=\u6e05\u55ae\u6aa2\u8996 - -MyView.DisplayName=\u6211\u7684\u8996\u666f - -LoadStatistics.Legends.TotalExecutors=\u57f7\u884c\u7a0b\u5f0f\u7e3d\u6578 -LoadStatistics.Legends.BusyExecutors=\u5de5\u4f5c\u4e2d\u57f7\u884c\u7a0b\u5f0f\u6578 -LoadStatistics.Legends.QueueLength=\u4f47\u5217\u9577\u5ea6 - -Cause.LegacyCodeCause.ShortDescription=\u820a\u7248\u7a0b\u5f0f\u555f\u52d5\u4f5c\u696d\u3002\u6c92\u6709\u8aaa\u660e\u539f\u56e0 -Cause.UpstreamCause.ShortDescription=\u7531\u4e0a\u50b3\u5c08\u6848 "{0}" \u7684\u7b2c {1} \u6b21\u5efa\u7f6e\u555f\u52d5 -Cause.UpstreamCause.CausedBy=\u539f\u56e0\u70ba: -Cause.UserCause.ShortDescription=\u7531\u4f7f\u7528\u8005 {0} \u555f\u52d5 -Cause.UserIdCause.ShortDescription=\u7531\u4f7f\u7528\u8005 {0} \u555f\u52d5 -Cause.RemoteCause.ShortDescription=\u7531\u9060\u7aef\u4e3b\u6a5f {0} \u555f\u52d5 -Cause.RemoteCause.ShortDescriptionWithNote=\u7531\u9060\u7aef\u4e3b\u6a5f {0} \u555f\u52d5\uff0c\u8a3b\u8a18: {1} - -ProxyView.NoSuchViewExists=\u6c92\u6709\u5168\u57df\u8996\u666f {0} -ProxyView.DisplayName=\u5305\u542b\u5168\u57df\u8996\u666f - -MyViewsProperty.DisplayName=\u6211\u7684\u8996\u666f -MyViewsProperty.GlobalAction.DisplayName=\u6211\u7684\u8996\u666f -MyViewsProperty.ViewExistsCheck.NotExist=\u6c92\u6709\u53eb\u505a "{0}" \u7684\u8996\u666f -MyViewsProperty.ViewExistsCheck.AlreadyExists=\u5df2\u7d93\u6709\u53eb\u505a "{0}" \u7684\u8996\u666f\u4e86 - -CLI.restart.shortDescription=\u91cd\u65b0\u555f\u52d5 Jenkins -CLI.safe-restart.shortDescription=\u5b89\u5168\u7684\u91cd\u65b0\u555f\u52d5 Jenkins -CLI.keep-build.shortDescription=\u6c38\u4e45\u4fdd\u5b58\u9019\u6b21\u5efa\u7f6e\u3002 - -BuildAuthorizationToken.InvalidTokenProvided=\u63d0\u4f9b\u7684 Token \u7121\u6548\u3002 - -Jenkins.CheckDisplayName.NameNotUniqueWarning=\u5df2\u7d93\u6709\u4f5c\u696d\u53eb\u505a "{0}"\uff0c\u65e5\u5f8c\u7684\u641c\u5c0b\u7d50\u679c\u53ef\u80fd\u4ee4\u4eba\u6478\u4e0d\u8457\u982d\u7dd2\u3002 -Jenkins.CheckDisplayName.DisplayNameNotUniqueWarning=\u5df2\u7d93\u6709\u4f5c\u696d\u7684\u986f\u793a\u540d\u7a31\u662f "{0}"\uff0c\u53ef\u80fd\u6703\u9020\u6210\u6df7\u6dc6\u53ca\u5ef6\u9072\u3002 - -Jenkins.NotAllowedName="{0}" \u4e26\u4e0d\u662f\u53ef\u4ee5\u4f7f\u7528\u7684\u540d\u7a31 -ParametersDefinitionProperty.DisplayName=\u53c3\u6578\u5316\u5efa\u7f6e +UpdateCenter.PluginCategory.misc=其他 +UpdateCenter.PluginCategory.notifier=å»ºç½®é€šçŸ¥ç¨‹å¼ +UpdateCenter.PluginCategory.page-decorator=é é¢ä¿®é£¾ +UpdateCenter.PluginCategory.post-build=其他建置後動作 +UpdateCenter.PluginCategory.report=建置報表 +UpdateCenter.PluginCategory.scm=åŽŸå§‹ç¢¼ç®¡ç† +UpdateCenter.PluginCategory.scm-related=原始碼管ç†ç›¸é—œ +UpdateCenter.PluginCategory.trigger=å»ºç½®è§¸ç™¼ç¨‹åº +UpdateCenter.PluginCategory.ui=ä½¿ç”¨è€…ä»‹é¢ +UpdateCenter.PluginCategory.upload=æˆå“上傳 +UpdateCenter.PluginCategory.user=é©—è­‰åŠä½¿ç”¨è€…ç®¡ç† +UpdateCenter.PluginCategory.must-be-labeled=未分類 +UpdateCenter.PluginCategory.unrecognized=其他 ({0}) + +Permalink.LastBuild=最新建置 +Permalink.LastStableBuild=最新穩定建置 +Permalink.LastUnstableBuild=最新ä¸ç©©å®šå»ºç½® +Permalink.LastUnsuccessfulBuild=最新ä¸æˆåŠŸå»ºç½® +Permalink.LastSuccessfulBuild=最新æˆåŠŸå»ºç½® +Permalink.LastFailedBuild=最新失敗建置 + +ParameterAction.DisplayName=åƒæ•¸ +StringParameterDefinition.DisplayName=字串åƒæ•¸ +TextParameterDefinition.DisplayName=文字åƒæ•¸ +FileParameterDefinition.DisplayName=檔案åƒæ•¸ +BooleanParameterDefinition.DisplayName=布林值 +ChoiceParameterDefinition.DisplayName=é¸æ“‡ +RunParameterDefinition.DisplayName=執行åƒæ•¸ +PasswordParameterDefinition.DisplayName=密碼åƒæ•¸ + +Node.Mode.NORMAL=盡å¯èƒ½ä½¿ç”¨é€™å€‹ç¯€é»ž +Node.Mode.EXCLUSIVE=åªä¿ç•™çµ¦é™å®šç¯€é»žçš„作業 + +ListView.DisplayName=清單檢視 + +MyView.DisplayName=我的視景 + +LoadStatistics.Legends.TotalExecutors=執行程å¼ç¸½æ•¸ +LoadStatistics.Legends.BusyExecutors=工作中執行程å¼æ•¸ +LoadStatistics.Legends.QueueLength=佇列長度 + +Cause.LegacyCodeCause.ShortDescription=舊版程å¼å•Ÿå‹•ä½œæ¥­ã€‚沒有說明原因 +Cause.UpstreamCause.ShortDescription=由上傳專案 "{0}" 的第 {1} 次建置啟動 +Cause.UpstreamCause.CausedBy=原因為: +Cause.UserCause.ShortDescription=由使用者 {0} å•Ÿå‹• +Cause.UserIdCause.ShortDescription=由使用者 {0} å•Ÿå‹• +Cause.RemoteCause.ShortDescription=ç”±é ç«¯ä¸»æ©Ÿ {0} å•Ÿå‹• +Cause.RemoteCause.ShortDescriptionWithNote=ç”±é ç«¯ä¸»æ©Ÿ {0} 啟動,註記: {1} + +ProxyView.NoSuchViewExists=沒有全域視景 {0} +ProxyView.DisplayName=包å«å…¨åŸŸè¦–景 + +MyViewsProperty.DisplayName=我的視景 +MyViewsProperty.GlobalAction.DisplayName=我的視景 +MyViewsProperty.ViewExistsCheck.NotExist=沒有å«åš "{0}" 的視景 +MyViewsProperty.ViewExistsCheck.AlreadyExists=已經有å«åš "{0}" 的視景了 + +CLI.restart.shortDescription=é‡æ–°å•Ÿå‹• Jenkins +CLI.safe-restart.shortDescription=安全的é‡æ–°å•Ÿå‹• Jenkins +CLI.keep-build.shortDescription=永久ä¿å­˜é€™æ¬¡å»ºç½®ã€‚ + +BuildAuthorizationToken.InvalidTokenProvided=æ供的 Token 無效。 + +Jenkins.CheckDisplayName.NameNotUniqueWarning=已經有作業å«åš "{0}",日後的æœå°‹çµæžœå¯èƒ½ä»¤äººæ‘¸ä¸è‘—頭緒。 +Jenkins.CheckDisplayName.DisplayNameNotUniqueWarning=已經有作業的顯示å稱是 "{0}",å¯èƒ½æœƒé€ æˆæ··æ·†åŠå»¶é²ã€‚ + +Jenkins.NotAllowedName="{0}" 並ä¸æ˜¯å¯ä»¥ä½¿ç”¨çš„å稱 +ParametersDefinitionProperty.DisplayName=åƒæ•¸åŒ–建置 diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_bg.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_bg.properties index 5cbef8173a7d..c1e4eb9127d6 100644 --- a/core/src/main/resources/hudson/model/MyView/newViewDetail_bg.properties +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_bg.properties @@ -23,5 +23,5 @@ # \ # This view automatically displays all the jobs that the current user has an access to. blurb=\ - \u0422\u043e\u0437\u0438 \u0438\u0437\u0433\u043b\u0435\u0434 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u043f\u043e\u043a\u0430\u0437\u0432\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u0437\u0430\u0434\u0430\u043d\u0438\u044f, \u0434\u043e \u043a\u043e\u0438\u0442\u043e \u0442\u0435\u043a\u0443\u0449\u0438\u044f\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\ - \u0438\u043c\u0430 \u0434\u043e\u0441\u0442\u044a\u043f. + Този изглед автоматично показва вÑички заданиÑ, до които текущиÑÑ‚ потребител\ + има доÑтъп. diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_ca.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_ca.properties index 59bab268eeef..875244000d9a 100644 --- a/core/src/main/resources/hudson/model/MyView/newViewDetail_ca.properties +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_ca.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -blurb=Aquesta vista mostra autom\u00E0ticament tots els treballs al que t\u00E9 acc\u00E9s l''''usuari actual. +blurb=Aquesta vista mostra automàticament tots els treballs al que té accés l''''usuari actual. diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_da.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_da.properties index 0c696be01a0e..0039cfd8cfd6 100644 --- a/core/src/main/resources/hudson/model/MyView/newViewDetail_da.properties +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Denne visning viser automatisk alle de jobs som den nuv\u00e6rende bruger har adgang til. +blurb=Denne visning viser automatisk alle de jobs som den nuværende bruger har adgang til. diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_es.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_es.properties index 14cbc099503b..ffe0958e2086 100644 --- a/core/src/main/resources/hudson/model/MyView/newViewDetail_es.properties +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_es.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. blurb=\ - Esta vista muestra automáticamente todas las tareas a las que el usuario puede acceder. + Esta vista muestra automáticamente todas las tareas a las que el usuario puede acceder. diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_fr.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_fr.properties index 360b2fa6cc2f..d2d75b0536f3 100644 --- a/core/src/main/resources/hudson/model/MyView/newViewDetail_fr.properties +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Cette vue affiche automatiquement tous les jobs auxquels l''utilisateur a acc\u00E8s. +blurb=Cette vue affiche automatiquement tous les jobs auxquels l''utilisateur a accès. diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_it.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_it.properties index af7b010574c9..53bdb1daf1e4 100644 --- a/core/src/main/resources/hudson/model/MyView/newViewDetail_it.properties +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_ja.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_ja.properties index 4ae3232d0308..dd6f6d187a64 100644 --- a/core/src/main/resources/hudson/model/MyView/newViewDetail_ja.properties +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_ja.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. blurb=\ - \u73FE\u5728\u306E\u30E6\u30FC\u30B6\u30FC\u304C\u30A2\u30AF\u30BB\u30B9\u53EF\u80FD\u306A\u30B8\u30E7\u30D6\u3092\u3059\u3079\u3066\u81EA\u52D5\u7684\u306B\u8868\u793A\u3059\u308B\u30D3\u30E5\u30FC\u3067\u3059\u3002 + ç¾åœ¨ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ãŒã‚¢ã‚¯ã‚»ã‚¹å¯èƒ½ãªã‚¸ãƒ§ãƒ–ã‚’ã™ã¹ã¦è‡ªå‹•çš„ã«è¡¨ç¤ºã™ã‚‹ãƒ“ューã§ã™ã€‚ diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_ko.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_ko.properties index de7ab91b36f4..902bf769fce3 100644 --- a/core/src/main/resources/hudson/model/MyView/newViewDetail_ko.properties +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\uC774 \uC870\uD68C\uB294 \uD604\uC7AC \uC0AC\uC6A9\uC790\uAC00 \uC811\uADFC\uD558\uACE0 \uC788\uB294 \uBAA8\uB4E0 \uC791\uC5C5\uC744 \uC790\uB3D9\uC801\uC73C\uB85C \uD45C\uC2DC\uD568. +blurb=ì´ ì¡°íšŒëŠ” 현재 사용ìžê°€ 접근하고 있는 모든 ìž‘ì—…ì„ ìžë™ì ìœ¼ë¡œ 표시함. diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_lv.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_lv.properties index 91b58e87a0b5..415dd6099356 100644 --- a/core/src/main/resources/hudson/model/MyView/newViewDetail_lv.properties +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\u0160is skats autom\u0101tiski atr\u0101da visus darbus, kuriem ir pa\u0161reiz\u0113j\u0101 lietot\u0101ja piek\u013Cuve. +blurb=Å is skats automÄtiski atrÄda visus darbus, kuriem ir paÅ¡reizÄ“jÄ lietotÄja piekļuve. diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_pl.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_pl.properties index ceda1f8b1378..eaef3fad314b 100644 --- a/core/src/main/resources/hudson/model/MyView/newViewDetail_pl.properties +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_pl.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -blurb=Widok ten automatycznie wy\u015Bwietla wszystkie zadania do kt\u00F3rych aktualnie zalogowany u\u017Cytkownik ma dost\u0119p. +blurb=Widok ten automatycznie wyÅ›wietla wszystkie zadania do których aktualnie zalogowany użytkownik ma dostÄ™p. diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_pt_BR.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_pt_BR.properties index bfdbf10dd9b4..90e12d59a318 100644 --- a/core/src/main/resources/hudson/model/MyView/newViewDetail_pt_BR.properties +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Essa vis\u00E3o mostra todas as tarefas que o usu\u00E1rio est\u00E1 acessando +blurb=Essa visão mostra todas as tarefas que o usuário está acessando diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_ru.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_ru.properties index 2923b8b35b1b..1eb360163d9d 100644 --- a/core/src/main/resources/hudson/model/MyView/newViewDetail_ru.properties +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\u0414\u0430\u043D\u043D\u043E\u0435 \u043F\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0430\u0435\u0442 \u0432\u0441\u0435 \u0437\u0430\u0434\u0430\u0447\u0438, \u0434\u043E\u0441\u0442\u0443\u043F \u043A \u043A\u043E\u0442\u043E\u0440\u044B\u043C \u0438\u043C\u0435\u0435\u0442 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C. +blurb=Данное предÑтавление автоматичеÑки отображает вÑе задачи, доÑтуп к которым имеет пользователь. diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_sr.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_sr.properties index f0a62a8baabe..dc6753963477 100644 --- a/core/src/main/resources/hudson/model/MyView/newViewDetail_sr.properties +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -blurb=\u041E\u0432\u0430 \u043F\u0440\u0435\u0437\u0435\u043D\u0442\u0430\u0446\u0438\u0458\u0430 \u045B\u0435 \u0441\u0435 \u0430\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0438 \u043F\u0440\u0438\u043A\u0430\u0437\u0438\u0432\u0430\u0442\u0438 \u0437\u0430 \u0441\u0432\u0435 \u0437\u0430\u0434\u0430\u0442\u043A\u0435 \u0437\u0430 \u043A\u043E\u0458\u0435 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A \u0438\u043C\u0430 \u043F\u0440\u0438\u0441\u0442\u0443\u043F. +blurb=Ова презентација ће Ñе аутоматÑки приказивати за Ñве задатке за које кориÑник има приÑтуп. diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_sv_SE.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_sv_SE.properties index 2f1b5faf0cc4..d9a543001a43 100644 --- a/core/src/main/resources/hudson/model/MyView/newViewDetail_sv_SE.properties +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Visar jobb som den aktuella anv\u00E4ndaren har tillg\u00E5ng till. +blurb=Visar jobb som den aktuella användaren har tillgÃ¥ng till. diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_zh_TW.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_zh_TW.properties index 61a9ee859179..3c5da0c4d5b8 100644 --- a/core/src/main/resources/hudson/model/MyView/newViewDetail_zh_TW.properties +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_zh_TW.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. blurb=\ - \u9019\u500b\u8996\u666f\u4e2d\u81ea\u52d5\u5217\u51fa\u4f7f\u7528\u8005\u73fe\u5728\u6240\u80fd\u770b\u5230\u7684\u6240\u6709\u4f5c\u696d\u3002 + 這個視景中自動列出使用者ç¾åœ¨æ‰€èƒ½çœ‹åˆ°çš„所有作業。 diff --git a/core/src/main/resources/hudson/model/MyView/noJob_bg.properties b/core/src/main/resources/hudson/model/MyView/noJob_bg.properties index 5040f89100df..7d3be47a709d 100644 --- a/core/src/main/resources/hudson/model/MyView/noJob_bg.properties +++ b/core/src/main/resources/hudson/model/MyView/noJob_bg.properties @@ -22,4 +22,4 @@ # This view has no jobs. blurb=\ - \u0412 \u0442\u043e\u0437\u0438 \u0438\u0437\u0433\u043b\u0435\u0434 \u043d\u044f\u043c\u0430 \u0437\u0430\u0434\u0430\u043d\u0438\u044f. + Ð’ този изглед нÑма заданиÑ. diff --git a/core/src/main/resources/hudson/model/MyView/noJob_de.properties b/core/src/main/resources/hudson/model/MyView/noJob_de.properties index 9d31bb2e1b0a..d275986f20b8 100644 --- a/core/src/main/resources/hudson/model/MyView/noJob_de.properties +++ b/core/src/main/resources/hudson/model/MyView/noJob_de.properties @@ -1 +1 @@ -blurb=Diese Ansicht enthält keine Jobs. +blurb=Diese Ansicht enthält keine Jobs. diff --git a/core/src/main/resources/hudson/model/MyView/noJob_fr.properties b/core/src/main/resources/hudson/model/MyView/noJob_fr.properties index ea8b88f67230..f49a1e9f1e8d 100644 --- a/core/src/main/resources/hudson/model/MyView/noJob_fr.properties +++ b/core/src/main/resources/hudson/model/MyView/noJob_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Cette vue n''a pas de job associé. +blurb=Cette vue n''a pas de job associé. diff --git a/core/src/main/resources/hudson/model/MyView/noJob_it.properties b/core/src/main/resources/hudson/model/MyView/noJob_it.properties index 9cdad1c13d5b..e0e5d67c9014 100644 --- a/core/src/main/resources/hudson/model/MyView/noJob_it.properties +++ b/core/src/main/resources/hudson/model/MyView/noJob_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/MyView/noJob_ja.properties b/core/src/main/resources/hudson/model/MyView/noJob_ja.properties index 3f845d1d1381..2048b121f79c 100644 --- a/core/src/main/resources/hudson/model/MyView/noJob_ja.properties +++ b/core/src/main/resources/hudson/model/MyView/noJob_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\u3053\u306E\u30D3\u30E5\u30FC\u306B\u306F\u30B8\u30E7\u30D6\u306F\u3042\u308A\u307E\u305B\u3093\u3002 +blurb=ã“ã®ãƒ“ューã«ã¯ã‚¸ãƒ§ãƒ–ã¯ã‚ã‚Šã¾ã›ã‚“。 diff --git a/core/src/main/resources/hudson/model/MyView/noJob_pl.properties b/core/src/main/resources/hudson/model/MyView/noJob_pl.properties index 5a9808d319e4..59d437eaf837 100644 --- a/core/src/main/resources/hudson/model/MyView/noJob_pl.properties +++ b/core/src/main/resources/hudson/model/MyView/noJob_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Ten widok nie ma jeszcze \u017Cadnych projekt\u00F3w. +blurb=Ten widok nie ma jeszcze żadnych projektów. diff --git a/core/src/main/resources/hudson/model/MyView/noJob_pt_BR.properties b/core/src/main/resources/hudson/model/MyView/noJob_pt_BR.properties index 9a8a88431ddf..f64da4d9bf1d 100644 --- a/core/src/main/resources/hudson/model/MyView/noJob_pt_BR.properties +++ b/core/src/main/resources/hudson/model/MyView/noJob_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Essa vis\u00E3o n\u00E3o possui nenhuma tarefa +blurb=Essa visão não possui nenhuma tarefa diff --git a/core/src/main/resources/hudson/model/MyView/noJob_ru.properties b/core/src/main/resources/hudson/model/MyView/noJob_ru.properties index 87a09862b421..556666eda7ca 100644 --- a/core/src/main/resources/hudson/model/MyView/noJob_ru.properties +++ b/core/src/main/resources/hudson/model/MyView/noJob_ru.properties @@ -1,2 +1,2 @@ # This view has no jobs. -blurb=\u0414\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0437\u0430\u0434\u0430\u0447. +blurb=Данное предÑтавление не Ñодержит задач. diff --git a/core/src/main/resources/hudson/model/MyView/noJob_sr.properties b/core/src/main/resources/hudson/model/MyView/noJob_sr.properties index bad4b3bbeff5..5c10f6d0b3c0 100644 --- a/core/src/main/resources/hudson/model/MyView/noJob_sr.properties +++ b/core/src/main/resources/hudson/model/MyView/noJob_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -blurb=\u041E\u0432\u0430\u0458 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 \u043D\u0435\u043C\u0430 \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0430. +blurb=Овај преглед нема задатака. diff --git a/core/src/main/resources/hudson/model/MyView/noJob_zh_TW.properties b/core/src/main/resources/hudson/model/MyView/noJob_zh_TW.properties index f36b55a33818..3c386884bfe2 100644 --- a/core/src/main/resources/hudson/model/MyView/noJob_zh_TW.properties +++ b/core/src/main/resources/hudson/model/MyView/noJob_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\u8996\u666f\u4e2d\u6c92\u6709\u4efb\u4f55\u4f5c\u696d\u3002 +blurb=視景中沒有任何作業。 diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_bg.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_bg.properties index fdd4de27940d..97363c238f08 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/config_bg.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Default\ View=\ - \u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0435\u043d \u0438\u0437\u0433\u043b\u0435\u0434 + Стандартен изглед # The view selected by default when navigating to the users' private views description=\ - \u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438\u044f\u0442 \u0438\u0437\u0433\u043b\u0435\u0434, \u043a\u043e\u0439\u0442\u043e \u0441\u0435 \u043f\u043e\u044f\u0432\u044f\u0432\u0430 \u043f\u0440\u0438 \u043f\u0440\u0435\u043c\u0438\u043d\u0430\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u043b\u0438\u0447\u043d\u0438\u0442\u0435 \u0438\u0437\u0433\u043b\u0435\u0434\u0438 \u043d\u0430\ - \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438\u0442\u0435. + СтандартниÑÑ‚ изглед, който Ñе поÑвÑва при преминаването на личните изгледи на\ + потребителите. diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_de.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_de.properties index 592b032c0498..91deaca349fd 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/config_de.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_de.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Default\ View=Standardansicht -description=Die Ansicht wird als Vorgabe ausgewählt, wenn der Anwender seine privaten Ansichten öffnet. +description=Die Ansicht wird als Vorgabe ausgewählt, wenn der Anwender seine privaten Ansichten öffnet. diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_fi.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_fi.properties index d2ce7a832a0e..e7b3c792e3b4 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/config_fi.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_fi.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Default\ View=Oletusn\u00E4kym\u00E4 +Default\ View=Oletusnäkymä diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_fr.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_fr.properties index 7882da2809dc..e81242e070df 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/config_fr.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Default\ View=Vue par d\u00E9faut -description=La vue s\u00E9lectionn\u00E9e par d\u00E9faut lors de la navigation dans les vues priv\u00E9es de l''utilisateur +Default\ View=Vue par défaut +description=La vue sélectionnée par défaut lors de la navigation dans les vues privées de l''utilisateur diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_it.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_it.properties index 53df2d2ce03d..306ad1bfdfdb 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/config_it.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_ja.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_ja.properties index deaf432dd304..722674a9cf6d 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/config_ja.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Default\ View=\u30C7\u30D5\u30A9\u30EB\u30C8\u30D3\u30E5\u30FC -description=\u30E6\u30FC\u30B6\u30FC\u500B\u4EBA\u306E\u30D3\u30E5\u30FC\u3092\u8868\u793A\u3059\u308B\u969B\u306B\u30C7\u30D5\u30A9\u30EB\u30C8\u3067\u8868\u793A\u3059\u308B\u30D3\u30E5\u30FC +Default\ View=デフォルトビュー +description=ユーザー個人ã®ãƒ“ューを表示ã™ã‚‹éš›ã«ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã§è¡¨ç¤ºã™ã‚‹ãƒ“ュー diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_lv.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_lv.properties index 96f3fc3d3c6a..535142f3572f 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/config_lv.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_lv.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Default\ View=Noklus\u0113tais skats -description=Noklus\u0113ti izv\u0113l\u0113tais skats, veicot ie\u0161anu uz lietot\u0101ja priv\u0101tajiem skatiem +Default\ View=NoklusÄ“tais skats +description=NoklusÄ“ti izvÄ“lÄ“tais skats, veicot ieÅ¡anu uz lietotÄja privÄtajiem skatiem diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_nb_NO.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_nb_NO.properties index 56ef90b32abd..d11ff47f4645 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/config_nb_NO.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_nb_NO.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Default\ View=Standardvisning -description=Standardvisningen n\u00E5r du g\u00E5r til brukerens private visninger +description=Standardvisningen nÃ¥r du gÃ¥r til brukerens private visninger diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_pl.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_pl.properties index df58035e37b3..055b791efc68 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/config_pl.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_pl.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -description=Domy\u015Blny widok po przej\u015Bciu do strony ''''Moje widoki'''' -Default\ View=Domy\u015Blny widok +description=DomyÅ›lny widok po przejÅ›ciu do strony ''''Moje widoki'''' +Default\ View=DomyÅ›lny widok diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_pt_BR.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_pt_BR.properties index d19c1ff1b383..11125ff17d88 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/config_pt_BR.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Default\ View=Essa view mostra os usu\u00e1rios em modo privado +Default\ View=Essa view mostra os usuários em modo privado # The view selected by default when navigating to the users' private views description=Essa view diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_ru.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_ru.properties index af4b59527d51..d4c04c55390d 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/config_ru.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Default\ View=\u0412\u0438\u0434 \u043F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E -description=\u0412\u0438\u0434, \u0432\u044B\u0431\u0438\u0440\u0430\u0435\u043C\u044B\u0439 \u043F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E \u043F\u0440\u0438 \u043F\u0435\u0440\u0435\u0445\u043E\u0434\u0435 \u0432 \u0432\u0438\u0434\u044B \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F +Default\ View=Вид по умолчанию +description=Вид, выбираемый по умолчанию при переходе в виды Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_sk.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_sk.properties index 9c1256b52a4c..25962a84389a 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/config_sk.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_sk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Default\ View=Predvolen\u00FD poh\u013Ead +Default\ View=Predvolený pohľad diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_sr.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_sr.properties index 0d21018daff8..474bc77642ce 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/config_sr.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Default\ View=\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u043D\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 -description=\u041F\u0440\u0435\u0433\u043B\u0435\u0434 \u0458\u0435 \u0438\u0437\u0430\u0431\u0440\u0430\u043D \u043A\u0430\u0434\u0430 \u0441\u0435 \u0438\u0434\u0435 \u043D\u0430 \u043F\u0440\u0438\u0432\u0430\u0442\u043D\u0430 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430 +Default\ View=Стандардни преглед +description=Преглед је изабран када Ñе иде на приватна прегледа кориÑника diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_sv_SE.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_sv_SE.properties index da41933e98ae..e1da052478e0 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/config_sv_SE.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_sv_SE.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Default\ View=Standard Vy -description=Vyn vald som standard vid navigering till anv\u00E4ndarens privata vyer +description=Vyn vald som standard vid navigering till användarens privata vyer diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_zh_TW.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_zh_TW.properties index f59d641ba0b9..e1553dece280 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/config_zh_TW.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_zh_TW.properties @@ -21,5 +21,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Default\ View=\u9810\u8a2d\u8996\u666f -description=\u79fb\u5230\u4f7f\u7528\u8005\u500b\u4eba\u8996\u666f\u6642\u9810\u8a2d\u51fa\u73fe\u7684\u8996\u666f +Default\ View=é è¨­è¦–景 +description=移到使用者個人視景時é è¨­å‡ºç¾çš„視景 diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/newView_bg.properties b/core/src/main/resources/hudson/model/MyViewsProperty/newView_bg.properties index 07cb7f55727a..faacfd20737e 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/newView_bg.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/newView_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. View\ name=\ - \u0418\u043c\u0435 \u043d\u0430 \u0438\u0437\u0433\u043b\u0435\u0434\u0430 + Име на изгледа diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/newView_fi.properties b/core/src/main/resources/hudson/model/MyViewsProperty/newView_fi.properties index 41e77939b2f6..1bad3f644727 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/newView_fi.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/newView_fi.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -View\ name=N\u00E4kym\u00E4n nimi +View\ name=Näkymän nimi diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/newView_it.properties b/core/src/main/resources/hudson/model/MyViewsProperty/newView_it.properties index 4aab81c94c05..7977fa32c423 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/newView_it.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/newView_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/newView_ja.properties b/core/src/main/resources/hudson/model/MyViewsProperty/newView_ja.properties index 16ebc119b52c..9e170bbb0d62 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/newView_ja.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/newView_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -View\ name=\u30D3\u30E5\u30FC\u540D +View\ name=ビューå diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/newView_ru.properties b/core/src/main/resources/hudson/model/MyViewsProperty/newView_ru.properties index 240ca31d34b6..922ace27b9a0 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/newView_ru.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/newView_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -View\ name=\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u0432\u0438\u0434\u0430 +View\ name=Ðазвание вида diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/newView_sr.properties b/core/src/main/resources/hudson/model/MyViewsProperty/newView_sr.properties index 14b8d5c30fff..51f95c1decf3 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/newView_sr.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/newView_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -View\ name=\u0418\u043C\u0435 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430 +View\ name=Име прегледа diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/newView_zh_TW.properties b/core/src/main/resources/hudson/model/MyViewsProperty/newView_zh_TW.properties index 731744e3013f..74f6e90da8a2 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/newView_zh_TW.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/newView_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -View\ name=\u8996\u666f\u540d\u7a31 +View\ name=視景å稱 diff --git a/core/src/main/resources/hudson/model/NoFingerprintMatch/index.properties b/core/src/main/resources/hudson/model/NoFingerprintMatch/index.properties index eea7b0af5f0e..c9c845aa6a38 100644 --- a/core/src/main/resources/hudson/model/NoFingerprintMatch/index.properties +++ b/core/src/main/resources/hudson/model/NoFingerprintMatch/index.properties @@ -23,7 +23,7 @@ description=The fingerprint {0} did not match any of the recorded data. cause.1=\ Perhaps the file was not created under Jenkins. \ - Maybe it\u2019s a version that someone built locally on his/her own machine. + Maybe it’s a version that someone built locally on his/her own machine. cause.2=\ Perhaps the projects are not set up correctly and not recording \ fingerprints. Check the project setting. diff --git a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_bg.properties b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_bg.properties index b0593f3c6ecb..f493500c2f13 100644 --- a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_bg.properties +++ b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_bg.properties @@ -22,20 +22,20 @@ # The fingerprint {0} did not match any of the recorded data. description=\ - \u0426\u0438\u0444\u0440\u043e\u0432\u0438\u044f\u0442 \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u044a\u043a \u201e{0}\u201c \u043d\u0435 \u0441\u044a\u0432\u043f\u0430\u0434\u0430 \u0441 \u043d\u0438\u043a\u043e\u0439 \u043e\u0442 \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0438\u0442\u0435. + ЦифровиÑÑ‚ отпечатък „{0}“ не Ñъвпада Ñ Ð½Ð¸ÐºÐ¾Ð¹ от извеÑтните. # \ # Perhaps the projects are not set up correctly and not recording \ # fingerprints. Check the project setting. cause.2=\ - \u0412\u044a\u0437\u043c\u043e\u0436\u043d\u043e \u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0442\u0435 \u0434\u0430 \u043d\u0435 \u0441\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u0438 \u043f\u0440\u0430\u0432\u0438\u043b\u043d\u043e \u0438 \u0434\u0430 \u043d\u0435 \u0437\u0430\u043f\u0430\u0437\u0432\u0430\u0442\ - \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u044a\u0446\u0438\u0442\u0435. \u041f\u0440\u043e\u0432\u0435\u0440\u0435\u0442\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435. + Възможно е проектите да не Ñа наÑтроени правилно и да не запазват\ + отпечатъците. Проверете наÑтройките. Back\ to\ Dashboard=\ - \u041a\u044a\u043c \u0442\u0430\u0431\u043b\u043e\u0442\u043e \u0437\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 + Към таблото за управление # \ # Perhaps the file was not created under Jenkins. \ -# Maybe it\u2019s a version that someone built locally on his/her own machine. +# Maybe it’s a version that someone built locally on his/her own machine. cause.1=\ - \u0412\u044a\u0437\u043c\u043e\u0436\u043d\u043e \u0435 \u0444\u0430\u0439\u043b\u044a\u0442 \u0434\u0430 \u043d\u0435 \u0435 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u043e\u0442 Jenkins, \u0430 \u0434\u0430 \u0435 \u0432\u0435\u0440\u0441\u0438\u044f, \u0438\u0437\u0433\u0440\u0430\u0434\u0435\u043d\u0430 \u043e\u0442\ - \u043d\u044f\u043a\u043e\u0439 \u043e\u0442 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u0446\u0438\u0442\u0435 \u043d\u0430 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u0430\u0442\u0430 \u043c\u0443 \u043c\u0430\u0448\u0438\u043d\u0430. + Възможно е файлът да не е Ñъздаден от Jenkins, а да е верÑиÑ, изградена от\ + нÑкой от разработчиците на ÑобÑтвената му машина. No\ matching\ record\ found=\ - \u041d\u044f\u043c\u0430 \u0442\u0430\u043a\u0438\u0432\u0430 \u0437\u0430\u043f\u0438\u0441\u0438. + ÐÑма такива запиÑи. diff --git a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_da.properties b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_da.properties index a852b0f782e2..f3d6125acc40 100644 --- a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_da.properties +++ b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_da.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -cause.2=M\u00e5ske er projektet konfigureret forkert og opsamler ikke filfingeraftryk. \ +cause.2=MÃ¥ske er projektet konfigureret forkert og opsamler ikke filfingeraftryk. \ Check projektets indstillinger. Back\ to\ Dashboard=Tilbage til oversigtssiden description=filfingeraftryk {0} matcher ingen opsamlede data. No\ matching\ record\ found=Ingen matchende opslag fundet -cause.1=M\u00e5ske blev filen ikke skabt under Jenkins. \ -M\u00e5ske er det en version nogen har bygget manuelt. +cause.1=MÃ¥ske blev filen ikke skabt under Jenkins. \ +MÃ¥ske er det en version nogen har bygget manuelt. diff --git a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_de.properties b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_de.properties index 0cf433973346..d7e1dce0c4c1 100644 --- a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_de.properties +++ b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_de.properties @@ -1,7 +1,7 @@ -Back\ to\ Dashboard=Zurück zur Übersicht -No\ matching\ record\ found=Kein übereinstimmender Fingerabdruck gefunden. -description=Der Fingerabdruck {0} stimmte in keinem Fall mit aufgezeichneten Daten überein. +Back\ to\ Dashboard=Zurück zur Ãœbersicht +No\ matching\ record\ found=Kein übereinstimmender Fingerabdruck gefunden. +description=Der Fingerabdruck {0} stimmte in keinem Fall mit aufgezeichneten Daten überein. cause.1=Vielleicht ist die Datei nicht innerhalb von Jenkins erstellt worden. \ - Möglicherweise wurde sie von jemandem lokal auf seinem/ihrem Rechner erstellt. -cause.2=Vielleicht wurde das Aufzeichnen von Fingerabdrücken in den Projekteinstellungen \ - nicht konfiguriert. Überprüfen Sie die Projekteinstellungen. + Möglicherweise wurde sie von jemandem lokal auf seinem/ihrem Rechner erstellt. +cause.2=Vielleicht wurde das Aufzeichnen von Fingerabdrücken in den Projekteinstellungen \ + nicht konfiguriert. Ãœberprüfen Sie die Projekteinstellungen. diff --git a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_es.properties b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_es.properties index fcf2e7851bf0..36d561d9ab5a 100644 --- a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_es.properties +++ b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_es.properties @@ -22,9 +22,9 @@ description=La firma del fichero {0} no coincide con ninguna de las que hay almacenadas. cause.1=\ - Quizás el fichero no fué creado con Jenkins y sea un fichero creado por alguien en su propia máquina. + Quizás el fichero no fué creado con Jenkins y sea un fichero creado por alguien en su propia máquina. cause.2=\ - O puede ser que los proyectos no estén correctamente configurados para almacenar la firma de ficheros. Compruebe que la configuración del proyecto sea correcta. + O puede ser que los proyectos no estén correctamente configurados para almacenar la firma de ficheros. Compruebe que la configuración del proyecto sea correcta. No\ matching\ record\ found=No se encontraron registros Back\ to\ Dashboard=Volver al Panel de control diff --git a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_fr.properties b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_fr.properties index 496d183ee196..da0ca264d13d 100644 --- a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_fr.properties +++ b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_fr.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description=L''empreinte numérique {0} ne correspond pas aux empreintes déjà enregistrées. +description=L''empreinte numérique {0} ne correspond pas aux empreintes déjà enregistrées. cause.1=\ - Le fichier n''a peut-être pas été créé par Jenkins.\ - Peut-être est-ce une version que quelqu''un a construit localement sur sa propre machine. + Le fichier n''a peut-être pas été créé par Jenkins.\ + Peut-être est-ce une version que quelqu''un a construit localement sur sa propre machine. cause.2=\ - Peut-être que les projets n''ont pas été configurés pour enregistrer les empreintes. \ - Vérifiez la configuration du projet -No\ matching\ record\ found=Aucune donnée correspondante trouvée + Peut-être que les projets n''ont pas été configurés pour enregistrer les empreintes. \ + Vérifiez la configuration du projet +No\ matching\ record\ found=Aucune donnée correspondante trouvée Back\ to\ Dashboard=Retour au tableau de bord diff --git a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_it.properties b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_it.properties index 9214224b3493..8dc66a682664 100644 --- a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_it.properties +++ b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,7 +22,7 @@ # THE SOFTWARE. Back\ to\ Dashboard=Torna al cruscotto -cause.1=Forse il file non è stato creato con Jenkins. Forse è una versione \ +cause.1=Forse il file non è stato creato con Jenkins. Forse è una versione \ che qualcuno ha compilato localmente sul proprio sistema. cause.2=Forse i progetti non sono impostati correttamente e non stanno \ registrando le impronte digitali. Controllare le impostazioni del progetto. diff --git a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_ja.properties b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_ja.properties index 977db0a5e668..3ea7a363df6a 100644 --- a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_ja.properties +++ b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_ja.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description=\u30d5\u30a1\u30a4\u30eb\u6307\u7d0b {0} \u306f\u8a18\u9332\u3055\u308c\u3066\u3044\u308b\u3069\u306e\u30c7\u30fc\u30bf\u3068\u3082\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002 -No\ matching\ record\ found=\u8a72\u5f53\u3059\u308b\u8a18\u9332\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093 -Back\ to\ Dashboard=\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u3078\u623b\u308b +description=ファイル指紋 {0} ã¯è¨˜éŒ²ã•ã‚Œã¦ã„ã‚‹ã©ã®ãƒ‡ãƒ¼ã‚¿ã¨ã‚‚一致ã—ã¾ã›ã‚“。 +No\ matching\ record\ found=該当ã™ã‚‹è¨˜éŒ²ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ +Back\ to\ Dashboard=ダッシュボードã¸æˆ»ã‚‹ cause.1=\ - \u304a\u305d\u3089\u304f\u3001\u5f53\u8a72\u30d5\u30a1\u30a4\u30eb\u306fJenkins\u3067\u4f5c\u6210\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002\ - \u8ab0\u304b\u304c\u30ed\u30fc\u30ab\u30eb\u30de\u30b7\u30f3\u3067\u4f5c\u6210\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u3002 + ãŠãらãã€å½“該ファイルã¯Jenkinsã§ä½œæˆã•ã‚Œã¦ã„ã¾ã›ã‚“。\ + 誰ã‹ãŒãƒ­ãƒ¼ã‚«ãƒ«ãƒžã‚·ãƒ³ã§ä½œæˆã—ãŸãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。 cause.2=\ - \u304a\u305d\u3089\u304f\u3001\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u304c\u6b63\u3057\u304f\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u306e\u3067\u3001\u30d5\u30a1\u30a4\u30eb\u6307\u7d0b\u3092\u8a18\u9332\u3067\u304d\u3066\u3044\u307e\u305b\u3093\u3002\ - \u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u8a2d\u5b9a\u3092\u898b\u76f4\u3057\u3066\u304f\u3060\u3055\u3044\u3002 + ãŠãらãã€ãƒ—ロジェクトãŒæ­£ã—ã設定ã•ã‚Œã¦ã„ãªã„ã®ã§ã€ãƒ•ã‚¡ã‚¤ãƒ«æŒ‡ç´‹ã‚’記録ã§ãã¦ã„ã¾ã›ã‚“。\ + プロジェクトã®è¨­å®šã‚’見直ã—ã¦ãã ã•ã„。 diff --git a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_pt_BR.properties b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_pt_BR.properties index dd606f7acb67..d2cb5856ec2b 100644 --- a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_pt_BR.properties +++ b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_pt_BR.properties @@ -23,12 +23,12 @@ # \ # Perhaps the projects are not set up correctly and not recording \ # fingerprints. Check the project setting. -cause.2=Talvez o projeto n\u00e3o esteja devidamente configurado +cause.2=Talvez o projeto não esteja devidamente configurado Back\ to\ Dashboard=Voltar ao painel principal # The fingerprint {0} did not match any of the recorded data. -description=O fingerprint {0} n\u00e3o casa com nenhum registro gravado +description=O fingerprint {0} não casa com nenhum registro gravado No\ matching\ record\ found=Nenhum registro encontrado # \ # Perhaps the file was not created under Jenkins. \ # Maybe it''s a version that someone built locally on his/her own machine. -cause.1=Talvez o arquivo n\u00e3o foi criado dentro do Jenkins +cause.1=Talvez o arquivo não foi criado dentro do Jenkins diff --git a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_ru.properties b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_ru.properties index e8ef1206c02e..ecc721e2fbd0 100644 --- a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_ru.properties +++ b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_ru.properties @@ -1,11 +1,11 @@ # This file is under the MIT License by authors -Back\ to\ Dashboard=\u0412\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f \u043a \u043f\u0440\u0438\u0431\u043e\u0440\u043d\u043e\u0439 \u043f\u0430\u043d\u0435\u043b\u0438 -No\ matching\ record\ found=\u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e +Back\ to\ Dashboard=ВернутьÑÑ Ðº приборной панели +No\ matching\ record\ found=СоответÑтвующих запиÑей не найдено cause.1=\ - \u0412\u0435\u0440\u043e\u044f\u0442\u043d\u043e, \u0434\u0430\u043d\u043d\u044b\u0439 \u0444\u0430\u0439\u043b \u043d\u0435 \u0431\u044b\u043b \u0441\u043e\u0437\u0434\u0430\u043d \u0432 Jenkins. \ - \u0414\u0430\u043d\u043d\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f \u043c\u043e\u0433\u043b\u0430 \u0431\u044b\u0442\u044c \u0441\u043e\u0437\u0434\u0430\u043d\u0430 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e \u043e\u0434\u043d\u0438\u043c \u0438\u0437 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439. + ВероÑтно, данный файл не был Ñоздан в Jenkins. \ + Ð”Ð°Ð½Ð½Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ Ð¼Ð¾Ð³Ð»Ð° быть Ñоздана локально одним из пользователей. cause.2=\ - \u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e, \u043f\u0440\u043e\u0435\u043a\u0442\u044b \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u044b \u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u043e, \u0438\u0437-\u0437\u0430 \u0447\u0435\u0433\u043e \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u043a\u0438 \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u043a\u0438 \u043d\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u044e\u0442\u0441\u044f.\ - \u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0430. -description=\u041e\u0442\u043f\u0435\u0447\u0430\u0442\u043e\u043a {0} \u043d\u0435 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u043d\u0438 \u043e\u0434\u043d\u043e\u043c\u0443 \u0438\u0437 \u0437\u0430\u043f\u0438\u0441\u0430\u043d\u043d\u044b\u0445 \u0434\u0430\u043d\u043d\u044b\u0445. + Возможно, проекты наÑтроены некорректно, из-за чего отпечатки отпечатки не ÑохранÑÑŽÑ‚ÑÑ.\ + Проверьте наÑтройки проекта. +description=Отпечаток {0} не ÑоответÑтвует ни одному из запиÑанных данных. diff --git a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_sk.properties b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_sk.properties index 45f4d66f59ad..256913021be9 100644 --- a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_sk.properties +++ b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_sk.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Back\ to\ Dashboard=Nasp\u00E4\u0165 na Dashboard -No\ matching\ record\ found=Nena\u0161li sa zodpovedaj\u00FAce z\u00E1znamy -description=Odtla\u010Dok {0} nezodpoved\u00E1 \u017Eiadnemu z\u00E1znamu. +Back\ to\ Dashboard=Naspäť na Dashboard +No\ matching\ record\ found=NenaÅ¡li sa zodpovedajúce záznamy +description=OdtlaÄok {0} nezodpovedá žiadnemu záznamu. diff --git a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_sr.properties b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_sr.properties index fadf59694006..e62a5e9a4d9f 100644 --- a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_sr.properties +++ b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_sr.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -No\ matching\ record\ found=\u041D\u0435 \u043E\u0434\u0433\u043E\u0432\u0430\u0440\u0430 \u043D\u0438 \u0458\u0435\u0434\u043D\u043E\u043C \u043E\u0434 \u0437\u0430\u0431\u0435\u043B\u0435\u0436\u0435\u043D\u0438\u0445 \u043F\u043E\u0434\u0430\u0442\u0430\u043A\u0430. -Back\ to\ Dashboard=\u041D\u0430\u0437\u0430\u0434 \u043D\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043D\u0443 \u043F\u0430\u043D\u0435\u043B\u0443 -description=\u041E\u0442\u0438\u0441\u0430\u043A {0} \u043D\u0435 \u043E\u0434\u0433\u043E\u0432\u0430\u0440\u0430 \u043D\u0438 \u0458\u0435\u0434\u043D\u043E\u043C \u043E\u0434 \u0437\u0430\u0431\u0435\u043B\u0435\u0436\u0435\u043D\u0438\u0445 \u043F\u043E\u0434\u0430\u0442\u0430\u043A\u0430. -cause.1=\u041C\u043E\u0433\u0443\u045B\u0435 \u0458\u0435 \u0434\u0430 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u043D\u0438\u0458\u0435 \u043D\u0430\u043F\u0440\u0430\u0432\u0459\u0435\u043D\u0430 \u0443 Jenkins.\ -\u041C\u043E\u0436\u0435 \u0431\u0438\u0442\u0438 \u0434\u0430 \u0458\u0435 \u0438\u0437\u0433\u0440\u0430\u0452\u0435\u043D\u043E \u043D\u0430 \u043B\u043E\u043A\u0430\u043B\u043D\u043E\u0458 \u043C\u0430\u0448\u0438\u043D\u0438 \u043D\u0435\u043A\u043E\u0433 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430. -cause.2=\u041C\u043E\u0436\u0434\u0430 \u043D\u0438\u0441\u0443 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0438 \u0434\u043E\u0431\u0440\u043E \u043F\u043E\u0441\u0442\u0430\u0432\u0459\u0435\u043D\u0438, \u0437\u0431\u043E\u0433 \u0447\u0435\u0433\u0430 \u043E\u0442\u0438\u0441\u0446\u0438 \u043D\u0435\u043C\u043E\u0433\u0443 \u0431\u0438\u0442\u0438 \u0441\u0430\u0447\u0443\u0432\u0430\u043D\u0438. \u041C\u043E\u043B\u0438\u043C\u043E \u0432\u0430\u0441 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430. +No\ matching\ record\ found=Ðе одговара ни једном од забележених података. +Back\ to\ Dashboard=Ðазад на контролну панелу +description=ОтиÑак {0} не одговара ни једном од забележених података. +cause.1=Могуће је да датотека није направљена у Jenkins.\ +Може бити да је изграђено на локалној машини неког кориÑника. +cause.2=Можда ниÑу пројекти добро поÑтављени, због чега отиÑци немогу бити Ñачувани. Молимо Ð²Ð°Ñ Ð¿Ñ€ÐµÐ³Ð»ÐµÐ´Ð°Ñ˜Ñ‚Ðµ подешавања. diff --git a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_tr.properties b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_tr.properties index 679e8f4ba087..b6e27291aab6 100644 --- a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_tr.properties +++ b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_tr.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ matching\ record\ found=E\u015fle\u015fen kay\u0131t bulunamad\u0131 -Back\ to\ Dashboard=Kontrol Merkezi''ne D\u00f6n -description=Parmakizi {0}, kay\u0131tl\u0131 herhangi bir bilgi ile e\u015fle\u015ftirilemedi +No\ matching\ record\ found=EÅŸleÅŸen kayıt bulunamadı +Back\ to\ Dashboard=Kontrol Merkezi''ne Dön +description=Parmakizi {0}, kayıtlı herhangi bir bilgi ile eÅŸleÅŸtirilemedi cause.1=\ - Dosya Jenkins alt\u0131nda olu\u015fturulmam\u0131\u015f olabilir.\ - Arad\u0131\u011f\u0131n\u0131z versiyon, belki de ba\u015fkas\u0131n\u0131n kendi bilgisayar\u0131nda yap\u0131land\u0131rd\u0131\u011f\u0131 bir versiyondur. + Dosya Jenkins altında oluÅŸturulmamış olabilir.\ + Aradığınız versiyon, belki de baÅŸkasının kendi bilgisayarında yapılandırdığı bir versiyondur. cause.2=\ - Proje ayarlar\u0131 parmakizi kaydedecek \u015fekilde ayarlanmam\u0131\u015f olabilir. L\u00fctfen proje ayarlar\u0131n\u0131 kontrol edin. + Proje ayarları parmakizi kaydedecek ÅŸekilde ayarlanmamış olabilir. Lütfen proje ayarlarını kontrol edin. diff --git a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_uk.properties b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_uk.properties index a2d626f4ff33..702430aaf9a6 100644 --- a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_uk.properties +++ b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_uk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Back\ to\ Dashboard=\u041F\u043E\u0432\u0435\u0440\u043D\u0443\u0442\u0438\u0441\u044F \u043D\u0430\u0437\u0430\u0434 -No\ matching\ record\ found=\u041D\u0456\u0447\u043E\u0433\u043E \u043D\u0435 \u0437\u043D\u0430\u0439\u0434\u0435\u043D\u043E +Back\ to\ Dashboard=ПовернутиÑÑ Ð½Ð°Ð·Ð°Ð´ +No\ matching\ record\ found=Ðічого не знайдено diff --git a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_zh_TW.properties b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_zh_TW.properties index b7a12fe41e3e..6ba2d3852f83 100644 --- a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_zh_TW.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ matching\ record\ found=\u6c92\u6709\u7b26\u5408\u7684\u8a18\u9304\u3002 +No\ matching\ record\ found=沒有符åˆçš„記錄。 -description=\u6c92\u6709\u4efb\u4f55\u7b26\u5408\u6307\u7d0b {0} \u7684\u8cc7\u6599\u3002 +description=沒有任何符åˆæŒ‡ç´‹ {0} 的資料。 cause.1=\ - \u8aaa\u4e0d\u5b9a\u6a94\u6848\u4e0d\u662f\u7531 Jenkins \u7522\u751f\u3002\ - \u9019\u500b\u7248\u672c\u6709\u53ef\u80fd\u662f\u67d0\u4eba\u5728\u81ea\u5df1\u7684\u6a5f\u5668\u4e0a\u5efa\u7f6e\u51fa\u4f86\u7684\u3002 + 說ä¸å®šæª”案ä¸æ˜¯ç”± Jenkins 產生。\ + 這個版本有å¯èƒ½æ˜¯æŸäººåœ¨è‡ªå·±çš„機器上建置出來的。 cause.2=\ - \u4e5f\u6709\u53ef\u80fd\u662f\u5c08\u6848\u8a2d\u5b9a\u51fa\u4e86\u554f\u984c\uff0c\u4e0d\u6703\u8a18\u9304\u6307\u7d0b\u3002 \ - \u8acb\u6aa2\u67e5\u5c08\u6848\u8a2d\u5b9a\u3002 -Back\ to\ Dashboard=\u8fd4\u56de\u8cc7\u8a0a\u4e3b\u9801 + 也有å¯èƒ½æ˜¯å°ˆæ¡ˆè¨­å®šå‡ºäº†å•é¡Œï¼Œä¸æœƒè¨˜éŒ„指紋。 \ + 請檢查專案設定。 +Back\ to\ Dashboard=è¿”å›žè³‡è¨Šä¸»é  diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_bg.properties b/core/src/main/resources/hudson/model/ParametersAction/index_bg.properties index c423c2cdbd45..294f82f7dae3 100644 --- a/core/src/main/resources/hudson/model/ParametersAction/index_bg.properties +++ b/core/src/main/resources/hudson/model/ParametersAction/index_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Build=\ - \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + Изграждане Parameters=\ - \u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 + Параметри diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_ca.properties b/core/src/main/resources/hudson/model/ParametersAction/index_ca.properties index bc755f0d9c74..8680a4d399c5 100644 --- a/core/src/main/resources/hudson/model/ParametersAction/index_ca.properties +++ b/core/src/main/resources/hudson/model/ParametersAction/index_ca.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Parameters=Par\u00E0metres +Parameters=Paràmetres diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_cs.properties b/core/src/main/resources/hudson/model/ParametersAction/index_cs.properties index 18bc4bf97cca..5af9b1a4a3d1 100644 --- a/core/src/main/resources/hudson/model/ParametersAction/index_cs.properties +++ b/core/src/main/resources/hudson/model/ParametersAction/index_cs.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Build=Sestaven\u00ED +Build=Sestavení Parameters=Parametry diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_es.properties b/core/src/main/resources/hudson/model/ParametersAction/index_es.properties index 90b1cbcc3fc4..773da9759326 100644 --- a/core/src/main/resources/hudson/model/ParametersAction/index_es.properties +++ b/core/src/main/resources/hudson/model/ParametersAction/index_es.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Build=Proyecto -Parameters=Parámetros +Parameters=Parámetros diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_fr.properties b/core/src/main/resources/hudson/model/ParametersAction/index_fr.properties index 16de5725fdcb..31b21e530a7d 100644 --- a/core/src/main/resources/hudson/model/ParametersAction/index_fr.properties +++ b/core/src/main/resources/hudson/model/ParametersAction/index_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Parameters=Paramètres +Parameters=Paramètres diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_hu.properties b/core/src/main/resources/hudson/model/ParametersAction/index_hu.properties index ef100fc27531..cc2cf87073e3 100644 --- a/core/src/main/resources/hudson/model/ParametersAction/index_hu.properties +++ b/core/src/main/resources/hudson/model/ParametersAction/index_hu.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Parameters=Param\u00E9terek +Parameters=Paraméterek diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_it.properties b/core/src/main/resources/hudson/model/ParametersAction/index_it.properties index 9dc7db427ce4..f9534378fd87 100644 --- a/core/src/main/resources/hudson/model/ParametersAction/index_it.properties +++ b/core/src/main/resources/hudson/model/ParametersAction/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_ja.properties b/core/src/main/resources/hudson/model/ParametersAction/index_ja.properties index 1076650270c9..9c4cdb4ab36d 100644 --- a/core/src/main/resources/hudson/model/ParametersAction/index_ja.properties +++ b/core/src/main/resources/hudson/model/ParametersAction/index_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=\u30D3\u30EB\u30C9 -Parameters=\u30D1\u30E9\u30E1\u30FC\u30BF +Build=ビルド +Parameters=パラメータ diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_ko.properties b/core/src/main/resources/hudson/model/ParametersAction/index_ko.properties index 99b7730f57da..5605fe2d88cc 100644 --- a/core/src/main/resources/hudson/model/ParametersAction/index_ko.properties +++ b/core/src/main/resources/hudson/model/ParametersAction/index_ko.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Build=\uBE4C\uB4DC -Parameters=\uB9E4\uAC1C\uBCC0\uC218 +Build=빌드 +Parameters=매개변수 diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_lv.properties b/core/src/main/resources/hudson/model/ParametersAction/index_lv.properties index 016a683a4512..38ae07a21624 100644 --- a/core/src/main/resources/hudson/model/ParametersAction/index_lv.properties +++ b/core/src/main/resources/hudson/model/ParametersAction/index_lv.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=B\u016Bv\u0113jums +Build=BÅ«vÄ“jums Parameters=Parametri diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_pt_BR.properties b/core/src/main/resources/hudson/model/ParametersAction/index_pt_BR.properties index 0cb582d77401..2edea5589c2d 100644 --- a/core/src/main/resources/hudson/model/ParametersAction/index_pt_BR.properties +++ b/core/src/main/resources/hudson/model/ParametersAction/index_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Build=Construir -Parameters=Par\u00e2metros +Parameters=Parâmetros diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_ru.properties b/core/src/main/resources/hudson/model/ParametersAction/index_ru.properties index 26c54acc08a2..8cd29a683145 100644 --- a/core/src/main/resources/hudson/model/ParametersAction/index_ru.properties +++ b/core/src/main/resources/hudson/model/ParametersAction/index_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=\u0421\u0431\u043E\u0440\u043A\u0430 -Parameters=\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u044B +Build=Сборка +Parameters=Параметры diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_sr.properties b/core/src/main/resources/hudson/model/ParametersAction/index_sr.properties index 4063f794159a..6a68b907f4c7 100644 --- a/core/src/main/resources/hudson/model/ParametersAction/index_sr.properties +++ b/core/src/main/resources/hudson/model/ParametersAction/index_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Build=\u0418\u0437\u0433\u0440\u0430\u0434\u045A\u0430 -Parameters=\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0438 +Build=Изградња +Parameters=Параметри diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_tr.properties b/core/src/main/resources/hudson/model/ParametersAction/index_tr.properties index 5ee790cf0bd8..fdd8d84100d0 100644 --- a/core/src/main/resources/hudson/model/ParametersAction/index_tr.properties +++ b/core/src/main/resources/hudson/model/ParametersAction/index_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Yap\u0131land\u0131rma +Build=Yapılandırma Parameters=Parametreler diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_uk.properties b/core/src/main/resources/hudson/model/ParametersAction/index_uk.properties index af4e9a81d9d8..d64a8a2c4aa9 100644 --- a/core/src/main/resources/hudson/model/ParametersAction/index_uk.properties +++ b/core/src/main/resources/hudson/model/ParametersAction/index_uk.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=\u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0430 -Parameters=\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0438 +Build=Побудова +Parameters=Параметри diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_zh_TW.properties b/core/src/main/resources/hudson/model/ParametersAction/index_zh_TW.properties index 368a1597ded5..95d7ac95036a 100644 --- a/core/src/main/resources/hudson/model/ParametersAction/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/ParametersAction/index_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=\u5EFA\u7F6E -Parameters=\u53C3\u6578 +Build=建置 +Parameters=åƒæ•¸ diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_bg.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_bg.properties index c800c6958766..0c709acfd168 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_bg.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Add\ Parameter=\ - \u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u044a\u0440 + ДобавÑне на параметър diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_ca.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_ca.properties index 896325474ab9..65fb1213cccb 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_ca.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_ca.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Add\ Parameter=Afegir par\u00E0metre +Add\ Parameter=Afegir paràmetre diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_da.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_da.properties index 3b313b654241..ae40e63efd21 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_da.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ Parameter=Tilf\u00f8j Parametre +Add\ Parameter=Tilføj Parametre diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_de.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_de.properties index 315117f2c31c..7b14afc20fc8 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_de.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_de.properties @@ -1 +1 @@ -Add\ Parameter=Parameter hinzufügen +Add\ Parameter=Parameter hinzufügen diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_es.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_es.properties index dbfed3fa2544..ec9ea4277baf 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_es.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ Parameter=Añadir un parámetro +Add\ Parameter=Añadir un parámetro diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_fi.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_fi.properties index a8c1dd2413cc..bbfc3ef78372 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_fi.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_fi.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ Parameter=Lis\u00E4\u00E4 parametri +Add\ Parameter=Lisää parametri diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_fr.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_fr.properties index bab6b2cbeabd..2cc9ac69834a 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_fr.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ Parameter=Ajouter un paramètre +Add\ Parameter=Ajouter un paramètre diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_he.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_he.properties index 3ffb627eec0d..e4514a1b11a5 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_he.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Add\ Parameter=\u05D4\u05D5\u05E1\u05E3 \u05DE\u05E9\u05EA\u05E0\u05D4 +Add\ Parameter=הוסף משתנה diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_hu.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_hu.properties index 265e1c7a5cb0..c5dde7169bc3 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_hu.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_hu.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Add\ Parameter=Param\u00E9ter hozz\u00E1ad\u00E1sa +Add\ Parameter=Paraméter hozzáadása diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_it.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_it.properties index 5a1e7d54e247..4dfae47be998 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_it.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_ja.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_ja.properties index c4fabe7ca95e..b3c6ce46b742 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_ja.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ Parameter=\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u8ffd\u52a0 +Add\ Parameter=パラメータã®è¿½åŠ  diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_ko.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_ko.properties index 6ebd2a13ecaa..42fa27165309 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_ko.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_ko.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Add\ Parameter=\uB9E4\uAC1C\uBCC0\uC218 \uCD94\uAC00 +Add\ Parameter=매개변수 추가 diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_lt.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_lt.properties index d1aace2dae62..0023787dbe47 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_lt.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_lt.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Add\ Parameter=Prid\u0117ti parametr\u0105 +Add\ Parameter=PridÄ—ti parametrÄ… diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_pt_BR.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_pt_BR.properties index 0f269cfdd689..9ceb66cc3d22 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_pt_BR.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ Parameter=Adicionar par\u00e2metro +Add\ Parameter=Adicionar parâmetro diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_ru.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_ru.properties index af02f213e56a..35f3e5e3c222 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_ru.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ Parameter=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 +Add\ Parameter=Добавить Параметр diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_sr.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_sr.properties index a85431294b30..442d830caef9 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_sr.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Add\ Parameter=\u0414\u043E\u0434\u0430\u0458 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0430\u0440 +Add\ Parameter=Додај параметар diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_sv_SE.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_sv_SE.properties index 9c8d2bc11650..82aef17b1e12 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_sv_SE.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ Parameter=L\u00E4gg till parameter +Add\ Parameter=Lägg till parameter diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_uk.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_uk.properties index 0c6b712511d6..0efd9a7ac896 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_uk.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Add\ Parameter=\u0414\u043E\u0434\u0430\u0442\u0438 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440 +Add\ Parameter=Додати параметр diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_zh_TW.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_zh_TW.properties index 1ba5e442e094..155edc3099f7 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_zh_TW.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ Parameter=\u65B0\u589E\u53C3\u6578 +Add\ Parameter=新增åƒæ•¸ diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index.properties index 19d0dfb6dbcd..162db8d2f43f 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. description=This build requires parameters: +LOADING=Loading diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_bg.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_bg.properties index 9b3bee5571dc..1251d0486aa0 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_bg.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_bg.properties @@ -22,8 +22,8 @@ # This build requires parameters: description=\ - \u0422\u043e\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0438\u0437\u0438\u0441\u043a\u0432\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438: + Това изграждане изиÑква параметри: Build=\ - \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + Изграждане LOADING=\ - \u0417\u0410\u0420\u0415\u0416\u0414\u0410\u041d\u0415 + ЗÐРЕЖДÐÐЕ diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_da.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_da.properties index 3c4ef981bcd1..18f85365a597 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_da.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_da.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Build=Byg -description=Dette byg kr\u00e6ver parametre: +description=Dette byg kræver parametre: diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_es.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_es.properties index a373decf7aa7..a39e4ae6d93b 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_es.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_es.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description=Esta ejecuci\u00F3n requiere par\u00E1metros adicionales: -Build=Ejecución +description=Esta ejecución requiere parámetros adicionales: +Build=Ejecución LOADING=CARGANDO diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_fr.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_fr.properties index dd13747fabe7..e7e88ed2b282 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_fr.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_fr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description=Ce build n\u00e9cessite des param\u00e8tres : +description=Ce build nécessite des paramètres : Build=Build LOADING=CHARGEMENT diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_it.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_it.properties index 3e5de93fe5e2..01e8b2e60f68 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_it.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ja.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ja.properties index 160886459926..c20e0f901614 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ja.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description=\u3053\u306e\u30d3\u30eb\u30c9\u306f\u30d1\u30e9\u30e1\u30fc\u30bf\u304c\u5fc5\u8981\u3067\u3059\u3002 -Build=\u30d3\u30eb\u30c9 -LOADING=\u30ed\u30fc\u30c9\u4e2d +description=ã“ã®ãƒ“ルドã¯ãƒ‘ラメータãŒå¿…è¦ã§ã™ã€‚ +Build=ビルド +LOADING=ロード中 diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ko.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ko.properties index 4cda614cc22a..e2cbe89ab155 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ko.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ko.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=\uBE4C\uB4DC\uD558\uAE30 -LOADING=\uC5EC\uB294 \uC911 -description=\uB9E4\uAC1C\uBCC0\uC218\uAC00 \uD544\uC694\uD55C \uBE4C\uB4DC\uC785\uB2C8\uB2E4. +Build=빌드하기 +LOADING=여는 중 +description=매개변수가 필요한 빌드입니다. diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_lv.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_lv.properties index 7ce84a94c478..3ad308d43713 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_lv.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_lv.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=B\u016Bv\u0113t -LOADING=IEL\u0100D\u0112JU -description=\u0160is b\u016Bv\u0113jums pieprasa parametrus: +Build=BÅ«vÄ“t +LOADING=IELÄ€DÄ’JU +description=Å is bÅ«vÄ“jums pieprasa parametrus: diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_pl.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_pl.properties index 188cbcaf55f8..38518c3a3ca7 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_pl.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_pl.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Build=Buduj -LOADING=\u0141ADOWANIE -description=To zadanie wymaga parametr\u00F3w: +LOADING=ÅADOWANIE +description=To zadanie wymaga parametrów: diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_pt_BR.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_pt_BR.properties index 13520ff8cf9b..5259e7c068bc 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_pt_BR.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_pt_BR.properties @@ -22,5 +22,5 @@ # THE SOFTWARE. LOADING=CARREGANDO -description=Esta constru\u00E7\u00E3o requer par\u00E2metros: +description=Esta construção requer parâmetros: Build=Construir diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ru.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ru.properties index 73e634ee4413..dab4bc5e690d 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ru.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ru.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Build=\u0421\u043e\u0431\u0440\u0430\u0442\u044c -LOADING=\u0417\u0410\u0413\u0420\u0423\u0417\u041a\u0410 -description=\u0414\u043b\u044f \u044d\u0442\u043e\u0439 \u0441\u0431\u043e\u0440\u043a\u0438 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u044b \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b: +Build=Собрать +LOADING=ЗÐГРУЗКР+description=Ð”Ð»Ñ Ñтой Ñборки необходимы Ñледующие параметры: diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sk.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sk.properties index f271421ce2ee..dba7efb93a01 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sk.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sk.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Build=Zostav -description=Toto zostavenie vy\u017Eaduje parametre: +description=Toto zostavenie vyžaduje parametre: diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sr.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sr.properties index a8a3c1a60a68..ddc4c76c730e 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sr.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -LOADING=\u0423\u0427\u0418\u0422\u0410\u0412\u0410\u040A\u0415 -description=\u041E\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0437\u0430\u0445\u0442\u0435\u0432\u0430 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0435: -Build=\u0418\u0437\u0433\u0440\u0430\u0434\u045A\u0430 +LOADING=УЧИТÐÐ’ÐЊЕ +description=Ова изградња захтева параметре: +Build=Изградња diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sv_SE.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sv_SE.properties index 948d1f5fd47f..de74342e7b1a 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sv_SE.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sv_SE.properties @@ -2,4 +2,4 @@ Build=Bygg LOADING=LADDAR -description=Det h\u00E4r bygget kr\u00E4ver parametrar: +description=Det här bygget kräver parametrar: diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_tr.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_tr.properties index 96741b96958d..dbfafb4fb861 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_tr.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description=tan\u0131m -Build=Yap\u0131land\u0131rma +description=tanım +Build=Yapılandırma diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_uk.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_uk.properties index 16194ae07110..74b46178b04b 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_uk.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -LOADING=\u0417\u0410\u0412\u0410\u041D\u0422\u0410\u0416\u0415\u041D\u041D\u042F +LOADING=ЗÐÐ’ÐÐТÐЖЕÐÐЯ diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_zh_TW.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_zh_TW.properties index 8ff9c3f381af..611fafc2676d 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -LOADING=\u8f09\u5165\u4e2d -description=\u9019\u9805\u5efa\u7f6e\u9700\u8981\u53c3\u6578: -Build=\u5efa\u7f6e +LOADING=載入中 +description=這項建置需è¦åƒæ•¸: +Build=建置 diff --git a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_bg.properties b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_bg.properties index 7e7c8cd6bdac..e02851f3fc23 100644 --- a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_bg.properties +++ b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Name=\ - \u0418\u043c\u0435 + Име Default\ Value=\ - \u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 + Стандартна ÑтойноÑÑ‚ Description=\ - \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 + ОпиÑание diff --git a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_da.properties b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_da.properties index 1fa04ed0bbe5..e5f2b128d353 100644 --- a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_da.properties +++ b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_da.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Name=Navn -Default\ Value=Standardv\u00e6rdi +Default\ Value=Standardværdi Description=Beskrivelse diff --git a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_es.properties b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_es.properties index 0effa47580d5..b14a3a47ab33 100644 --- a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_es.properties +++ b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_es.properties @@ -22,4 +22,4 @@ Name=Nombre Default\ Value=Valor por defecto -Description=Descripción +Description=Descripción diff --git a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_fr.properties b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_fr.properties index 215680b6c555..9b301b10a109 100644 --- a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_fr.properties +++ b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_fr.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Name=Nom -Default\ Value=Valeur par d\u00E9faut +Default\ Value=Valeur par défaut Description=Description diff --git a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_it.properties b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_it.properties index 26e1c75e5100..82581f605194 100644 --- a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_it.properties +++ b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_ja.properties b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_ja.properties index 100892f388a9..2d34c802d87e 100644 --- a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_ja.properties +++ b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540D\u524D -Default\ Value=\u30C7\u30D5\u30A9\u30EB\u30C8\u5024 -Description=\u8AAC\u660E +Name=åå‰ +Default\ Value=デフォルト値 +Description=説明 diff --git a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_ko.properties b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_ko.properties index 3e552bc6f540..978842b2ea0c 100644 --- a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_ko.properties +++ b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_ko.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=\uC0C1\uC138 -Name=\uB9E4\uAC1C\uBCC0\uC218 \uBA85 +Description=ìƒì„¸ +Name=매개변수 명 diff --git a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_pl.properties b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_pl.properties index 18604ca79dd6..4985e8c1e3b2 100644 --- a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_pl.properties +++ b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_pl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. Name=Nazwa -Default\ Value=Domy\u015Blne has\u0142o +Default\ Value=DomyÅ›lne hasÅ‚o Description=Opis diff --git a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_pt_BR.properties b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_pt_BR.properties index 77cc3272694f..1381654195f5 100644 --- a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_pt_BR.properties +++ b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_pt_BR.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Name=Nome -Default\ Value=Valor padr\u00e3 -Description=Descri\u00e7\u00e3o +Default\ Value=Valor padrã +Description=Descrição diff --git a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_sr.properties b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_sr.properties index 9d202ad38b4e..b6fd7f07bdda 100644 --- a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_sr.properties +++ b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Name=\u0418\u043C\u0435 +Name=Име Default\ Value= -Description=\u041E\u043F\u0438\u0441 +Description=ÐžÐ¿Ð¸Ñ diff --git a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_zh_TW.properties b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_zh_TW.properties index eadfc25e444c..1447cae425b6 100644 --- a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_zh_TW.properties +++ b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_zh_TW.properties @@ -21,6 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540d\u7a31 -Default\ Value=\u9810\u8a2d\u503c -Description=\u8aaa\u660e +Name=å稱 +Default\ Value=é è¨­å€¼ +Description=說明 diff --git a/core/src/main/resources/hudson/model/PasswordParameterValue/value_it.properties b/core/src/main/resources/hudson/model/PasswordParameterValue/value_it.properties index 977de4860dbc..e5b254c6f809 100644 --- a/core/src/main/resources/hudson/model/PasswordParameterValue/value_it.properties +++ b/core/src/main/resources/hudson/model/PasswordParameterValue/value_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/PasswordParameterValue/value_pt_BR.properties b/core/src/main/resources/hudson/model/PasswordParameterValue/value_pt_BR.properties index a00ef7240204..54cc79996415 100644 --- a/core/src/main/resources/hudson/model/PasswordParameterValue/value_pt_BR.properties +++ b/core/src/main/resources/hudson/model/PasswordParameterValue/value_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -hidden=senha n\u00E3o mostrada abaixo +hidden=senha não mostrada abaixo diff --git a/core/src/main/resources/hudson/model/PasswordParameterValue/value_zh_TW.properties b/core/src/main/resources/hudson/model/PasswordParameterValue/value_zh_TW.properties index 8fcf0fe24773..75adde959f0f 100644 --- a/core/src/main/resources/hudson/model/PasswordParameterValue/value_zh_TW.properties +++ b/core/src/main/resources/hudson/model/PasswordParameterValue/value_zh_TW.properties @@ -1 +1 @@ -hidden=(\u5df2\u96b1\u85cf\u5bc6\u78bc) +hidden=(已隱è—密碼) diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_bg.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_bg.properties index 3f060afc098d..c4b7c31cc26f 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_bg.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. format=\ - {0} ({1}), \u043f\u0440\u0435\u0434\u0438 {2} + {0} ({1}), преди {2} diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_cs.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_cs.properties index 087b2ba6943f..8542507007fc 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_cs.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -format="{0} ({1}), p\u0159ed {2}" +format="{0} ({1}), pÅ™ed {2}" diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_el.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_el.properties index 472277d90335..4a38b46e2420 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_el.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_el.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -format="{0} ({1}), \u03C0\u03C1\u03B9\u03BD \u03B1\u03C0\u03CC {2}" +format="{0} ({1}), Ï€Ïιν από {2}" diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_he.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_he.properties index 3787f046bba7..54f29c8aac06 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_he.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -format={0} ({1}), {2} \u05DC\u05E4\u05E0\u05D9 +format={0} ({1}), {2} לפני diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_hu.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_hu.properties index c13717065127..5ea9a58e7cc7 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_hu.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -format={0} ({1}), {2} ezel\u0151tt +format={0} ({1}), {2} ezelÅ‘tt diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_it.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_it.properties index 742e9076a9df..a31292cdc9bb 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_it.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ko.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ko.properties index 7eb4bdf479d2..fb02627252e3 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ko.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -format={0}, ({1}),{2} \uC804 +format={0}, ({1}),{2} ì „ diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_lt.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_lt.properties index 1d706b51cfca..454dc8511c03 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_lt.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_lt.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -format=prie\u0161 {0} ({1}), {2} +format=prieÅ¡ {0} ({1}), {2} diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_pt_BR.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_pt_BR.properties index 3b5a83cf4b8c..95035c007597 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_pt_BR.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -format={0} ({1}), {2} atr\u00e1s +format={0} ({1}), {2} atrás diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_pt_PT.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_pt_PT.properties index 1e11a9e5e402..3db993259abc 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_pt_PT.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_pt_PT.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -format={0} ({1}), {2} atr\u00E1s +format={0} ({1}), {2} atrás diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ro.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ro.properties index b4c0d3cdfee2..52c27d6c86b9 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ro.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ro.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -format=\u00CEn urm\u0103 cu {0} ({1}), {2} +format=ÃŽn urmă cu {0} ({1}), {2} diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ru.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ru.properties index 8938df9ee622..e251237c1b22 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ru.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -format={0} ({1}), {2} \u043d\u0430\u0437\u0430\u0434 +format={0} ({1}), {2} назад diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_sr.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_sr.properties index dde884e8fe85..cc49055a1655 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_sr.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -format={0}({1}), {2} \u043F\u0440\u0435 +format={0}({1}), {2} пре diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_tr.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_tr.properties index ad3fa8b60318..3fee0fb56c27 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_tr.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -format={0} ({1}), {2} \u00f6nce +format={0} ({1}), {2} önce diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_uk.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_uk.properties index 657432a724a9..df3d0c6e2dbd 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_uk.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -format={0} ({1}), {2} \u0442\u043E\u043C\u0443 +format={0} ({1}), {2} тому diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_zh_TW.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_zh_TW.properties index 8e4313af1a77..0e96bf3afb10 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_zh_TW.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -format={0} ({1}), {2} \u4EE5\u524D +format={0} ({1}), {2} ä»¥å‰ diff --git a/core/src/main/resources/hudson/model/ProxyView/configure-entries_bg.properties b/core/src/main/resources/hudson/model/ProxyView/configure-entries_bg.properties index 75c838566c02..3047db81eeae 100644 --- a/core/src/main/resources/hudson/model/ProxyView/configure-entries_bg.properties +++ b/core/src/main/resources/hudson/model/ProxyView/configure-entries_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=\ - \u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u0433\u043b\u043e\u0431\u0430\u043b\u043d\u0438\u044f \u0438\u0437\u0433\u043b\u0435\u0434, \u043a\u043e\u0439\u0442\u043e \u0449\u0435 \u0431\u044a\u0434\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u043d. + Името на Ð³Ð»Ð¾Ð±Ð°Ð»Ð½Ð¸Ñ Ð¸Ð·Ð³Ð»ÐµÐ´, който ще бъде показан. View\ name=\ - \u0418\u043c\u0435 \u043d\u0430 \u0438\u0437\u0433\u043b\u0435\u0434 + Име на изглед diff --git a/core/src/main/resources/hudson/model/ProxyView/configure-entries_da.properties b/core/src/main/resources/hudson/model/ProxyView/configure-entries_da.properties index 53b57f716c5a..b72007fd80d0 100644 --- a/core/src/main/resources/hudson/model/ProxyView/configure-entries_da.properties +++ b/core/src/main/resources/hudson/model/ProxyView/configure-entries_da.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=Navnet p\u00e5 den globale visning der vil blive vist. +The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=Navnet pÃ¥ den globale visning der vil blive vist. View\ name=Visningens navn diff --git a/core/src/main/resources/hudson/model/ProxyView/configure-entries_fr.properties b/core/src/main/resources/hudson/model/ProxyView/configure-entries_fr.properties index 8bd5490935eb..34b851575248 100644 --- a/core/src/main/resources/hudson/model/ProxyView/configure-entries_fr.properties +++ b/core/src/main/resources/hudson/model/ProxyView/configure-entries_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=Le nom de la vue globale qui sera affich\u00E9e. +The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=Le nom de la vue globale qui sera affichée. View\ name=Nom de la vue diff --git a/core/src/main/resources/hudson/model/ProxyView/configure-entries_it.properties b/core/src/main/resources/hudson/model/ProxyView/configure-entries_it.properties index d7feac8905de..2c215279df09 100644 --- a/core/src/main/resources/hudson/model/ProxyView/configure-entries_it.properties +++ b/core/src/main/resources/hudson/model/ProxyView/configure-entries_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,5 +22,5 @@ # THE SOFTWARE. The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=Il nome della vista \ - globale che sarà visualizzata. + globale che sarà visualizzata. View\ name=Nome vista diff --git a/core/src/main/resources/hudson/model/ProxyView/configure-entries_ja.properties b/core/src/main/resources/hudson/model/ProxyView/configure-entries_ja.properties index fc5ccdae4057..fab8c9b1acad 100644 --- a/core/src/main/resources/hudson/model/ProxyView/configure-entries_ja.properties +++ b/core/src/main/resources/hudson/model/ProxyView/configure-entries_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -View\ name=\u30D3\u30E5\u30FC\u540D +View\ name=ビューå The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=\ - \u8868\u793A\u3059\u308B\u30B0\u30ED\u30FC\u30D0\u30EB\u306A\u30D3\u30E5\u30FC\u306E\u540D\u524D + 表示ã™ã‚‹ã‚°ãƒ­ãƒ¼ãƒãƒ«ãªãƒ“ューã®åå‰ diff --git a/core/src/main/resources/hudson/model/ProxyView/configure-entries_pl.properties b/core/src/main/resources/hudson/model/ProxyView/configure-entries_pl.properties index da8020acd31c..512d527ccfcc 100644 --- a/core/src/main/resources/hudson/model/ProxyView/configure-entries_pl.properties +++ b/core/src/main/resources/hudson/model/ProxyView/configure-entries_pl.properties @@ -19,5 +19,5 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=Nazwa globalnego widoku, kt\u00F3ra b\u0119dzie wy\u015Bwietlana +The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=Nazwa globalnego widoku, która bÄ™dzie wyÅ›wietlana View\ name=Nazwa widoku diff --git a/core/src/main/resources/hudson/model/ProxyView/configure-entries_pt_BR.properties b/core/src/main/resources/hudson/model/ProxyView/configure-entries_pt_BR.properties index 1ca935ea221d..bb7fd0705901 100644 --- a/core/src/main/resources/hudson/model/ProxyView/configure-entries_pt_BR.properties +++ b/core/src/main/resources/hudson/model/ProxyView/configure-entries_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=O nome da view global que ser\u00e1 mostrada -View\ name=Nome da visualiza\u00E7\u00E3o +The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=O nome da view global que será mostrada +View\ name=Nome da visualização diff --git a/core/src/main/resources/hudson/model/ProxyView/configure-entries_ru.properties b/core/src/main/resources/hudson/model/ProxyView/configure-entries_ru.properties index 487139ac0987..885dbab248c9 100644 --- a/core/src/main/resources/hudson/model/ProxyView/configure-entries_ru.properties +++ b/core/src/main/resources/hudson/model/ProxyView/configure-entries_ru.properties @@ -1,2 +1,2 @@ -The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=\u0418\u043c\u044f \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0431\u0443\u0434\u0435\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043e. -View\ name=\u0418\u043c\u044f \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f +The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=Ð˜Ð¼Ñ Ð³Ð»Ð¾Ð±Ð°Ð»ÑŒÐ½Ð¾Ð³Ð¾ предÑтавлениÑ, которое будет отображено. +View\ name=Ð˜Ð¼Ñ Ð¿Ñ€ÐµÐ´ÑÑ‚Ð°Ð²Ð»ÐµÐ½Ð¸Ñ diff --git a/core/src/main/resources/hudson/model/ProxyView/configure-entries_sr.properties b/core/src/main/resources/hudson/model/ProxyView/configure-entries_sr.properties index 6cb8749ad81c..fc878e5059b3 100644 --- a/core/src/main/resources/hudson/model/ProxyView/configure-entries_sr.properties +++ b/core/src/main/resources/hudson/model/ProxyView/configure-entries_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -View\ name=\u0418\u043C\u0435 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430 -The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=\u0418\u043C\u0435 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E\u0433 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430 \u043A\u043E\u0458\u0438 \u045B\u0435 \u0431\u0438\u0442\u0438 \u043F\u0440\u0438\u043A\u0430\u0437\u0430\u043D. +View\ name=Име прегледа +The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=Име глобалног прегледа који ће бити приказан. diff --git a/core/src/main/resources/hudson/model/ProxyView/configure-entries_zh_TW.properties b/core/src/main/resources/hudson/model/ProxyView/configure-entries_zh_TW.properties index 26ce6d511aaa..de5b2488e28d 100644 --- a/core/src/main/resources/hudson/model/ProxyView/configure-entries_zh_TW.properties +++ b/core/src/main/resources/hudson/model/ProxyView/configure-entries_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -View\ name=\u8996\u666f\u540d\u7a31 -The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=\u8981\u986f\u793a\u7684\u5168\u57df\u8996\u666f\u540d\u7a31\u3002 +View\ name=視景å稱 +The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=è¦é¡¯ç¤ºçš„全域視景å稱。 diff --git a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_bg.properties b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_bg.properties index 68848fe8ab50..96aa4e64a334 100644 --- a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_bg.properties +++ b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Shows\ the\ content\ of\ a\ global\ view.=\ - \u0418\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u043d\u0430 \u0433\u043b\u043e\u0431\u0430\u043b\u0435\u043d \u0438\u0437\u0433\u043b\u0435\u0434. + Извеждане на Ñъдържанието на глобален изглед. diff --git a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_it.properties b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_it.properties index 750f5d8e1f35..fea25f64f774 100644 --- a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_it.properties +++ b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_ja.properties b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_ja.properties index c4e42db36a25..9253aee39b4b 100644 --- a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_ja.properties +++ b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_ja.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Shows\ the\ content\ of\ a\ global\ view.=\ - \u30B0\u30ED\u30FC\u30D0\u30EB\u306A\u30D3\u30E5\u30FC\u3068\u540C\u4E00\u306E\u5185\u5BB9\u3092\u8868\u793A\u3057\u307E\u3059\u3002 + グローãƒãƒ«ãªãƒ“ューã¨åŒä¸€ã®å†…容を表示ã—ã¾ã™ã€‚ diff --git a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_lv.properties b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_lv.properties index bbdc7b54bbb8..6a3951b7aa71 100644 --- a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_lv.properties +++ b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Shows\ the\ content\ of\ a\ global\ view.=Att\u0113lo visp\u0101r\u0113j\u0101 skata saturu +Shows\ the\ content\ of\ a\ global\ view.=AttÄ“lo vispÄrÄ“jÄ skata saturu diff --git a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_pl.properties b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_pl.properties index d4a258276c3d..a9406fa2ce29 100644 --- a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_pl.properties +++ b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_pl.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Shows\ the\ content\ of\ a\ global\ view.=Pokazuje zawarto\u015B\u0107 globalnego widoku +Shows\ the\ content\ of\ a\ global\ view.=Pokazuje zawartość globalnego widoku diff --git a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_pt_BR.properties b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_pt_BR.properties index 124e8c203a25..2f0040a1838c 100644 --- a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_pt_BR.properties +++ b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Shows\ the\ content\ of\ a\ global\ view.=Mostrar o conte\u00fado de uma view global +Shows\ the\ content\ of\ a\ global\ view.=Mostrar o conteúdo de uma view global diff --git a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_ru.properties b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_ru.properties index 7a76ffd0d913..d3605d60006b 100644 --- a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_ru.properties +++ b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Shows\ the\ content\ of\ a\ global\ view.=\u041F\u043E\u043A\u0430\u0437\u044B\u0432\u0430\u0435\u0442 \u0441\u043E\u0434\u0435\u0440\u0436\u0438\u043C\u043E\u0435 \u0433\u043B\u0430\u0432\u043D\u043E\u0433\u043E \u0432\u0438\u0434\u0430 +Shows\ the\ content\ of\ a\ global\ view.=Показывает Ñодержимое главного вида diff --git a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_sr.properties b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_sr.properties index b38fb5f6e69d..00eb938cf556 100644 --- a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_sr.properties +++ b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Shows\ the\ content\ of\ a\ global\ view.=\u041F\u0440\u0438\u043A\u0430\u0437\u0443\u0458\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0433\u043B\u0430\u0432\u043D\u043E\u0433 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430 +Shows\ the\ content\ of\ a\ global\ view.=Приказује Ñадржај главног прегледа diff --git a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_zh_TW.properties b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_zh_TW.properties index 1fb765e4f5d8..502662f05cdc 100644 --- a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_zh_TW.properties +++ b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Shows\ the\ content\ of\ a\ global\ view.=\u986f\u793a\u5168\u57df\u8996\u666f\u5167\u5bb9\u3002 +Shows\ the\ content\ of\ a\ global\ view.=顯示全域視景內容。 diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_bg.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_bg.properties index 648b75e6637b..8c058f4aa6a2 100644 --- a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_bg.properties +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Keep\ this\ build\ forever=\ - \u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e \u0437\u0430\u0432\u0438\u043d\u0430\u0433\u0438 + Запазване на изграждането завинаги diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_cs.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_cs.properties index 7b297168e446..8649398e9420 100644 --- a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_cs.properties +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_cs.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Keep\ this\ build\ forever=Ponechat toto sestaven\u00ED nav\u017Edy +Keep\ this\ build\ forever=Ponechat toto sestavení navždy diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_es.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_es.properties index e323d1573964..eee1a2846238 100644 --- a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_es.properties +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_es.properties @@ -1 +1 @@ -Keep\ this\ build\ forever=Mantener esta ejecución para siempre +Keep\ this\ build\ forever=Mantener esta ejecución para siempre diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_fi.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_fi.properties index 7e9d4b191299..fb0348b88f04 100644 --- a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_fi.properties +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_fi.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Keep\ this\ build\ forever=S\u00E4ilyt\u00E4 t\u00E4m\u00E4 k\u00E4\u00E4nn\u00F6s ikuisesti +Keep\ this\ build\ forever=Säilytä tämä käännös ikuisesti diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_fr.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_fr.properties index 9ed9229f937c..92598491dc09 100644 --- a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_fr.properties +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Keep\ this\ build\ forever=Garder ce build ind\u00E9finiment +Keep\ this\ build\ forever=Garder ce build indéfiniment diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_hu.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_hu.properties index 962526af0bd1..8af9cb1024b5 100644 --- a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_hu.properties +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_hu.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Keep\ this\ build\ forever=Tartsa meg a buildet \u00F6r\u00F6kk\u00E9 +Keep\ this\ build\ forever=Tartsa meg a buildet örökké diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_it.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_it.properties index 107ef929aede..bbcd8d1c4b92 100644 --- a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_it.properties +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_ja.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_ja.properties index f1aba41fbfc0..eb752aba6ec4 100644 --- a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_ja.properties +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Keep\ this\ build\ forever=\u30D3\u30EB\u30C9\u3092\u4FDD\u5B58 +Keep\ this\ build\ forever=ビルドをä¿å­˜ diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_ko.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_ko.properties index 72507e922db9..862931908371 100644 --- a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_ko.properties +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_ko.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Keep\ this\ build\ forever=\uC774 \uBE4C\uB4DC\uB97C \uC601\uAD6C \uBCF4\uC874 +Keep\ this\ build\ forever=ì´ ë¹Œë“œë¥¼ ì˜êµ¬ ë³´ì¡´ diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_lv.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_lv.properties index 7cd99b98bbfe..021bd196a881 100644 --- a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_lv.properties +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Keep\ this\ build\ forever=Patur\u0113t \u0161o b\u016Bv\u0113jumu m\u016B\u017E\u012Bgi +Keep\ this\ build\ forever=PaturÄ“t Å¡o bÅ«vÄ“jumu mūžīgi diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_pt_BR.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_pt_BR.properties index ceee55ebf2f0..5b1337d37a18 100644 --- a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Keep\ this\ build\ forever=Manter esta constru\u00E7\u00E3o como permanente +Keep\ this\ build\ forever=Manter esta construção como permanente diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_pt_PT.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_pt_PT.properties index 83f2543cac48..65b47bfc9520 100644 --- a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_pt_PT.properties +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_pt_PT.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Keep\ this\ build\ forever=Manter esta vers\u00E3o para sempre +Keep\ this\ build\ forever=Manter esta versão para sempre diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_ru.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_ru.properties index 2481e51878a5..efe9358a09d6 100644 --- a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_ru.properties +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Keep\ this\ build\ forever=\u0425\u0440\u0430\u043D\u0438\u0442\u044C \u044D\u0442\u0443 \u0441\u0431\u043E\u0440\u043A\u0443 \u0432\u0435\u0447\u043D\u043E +Keep\ this\ build\ forever=Хранить Ñту Ñборку вечно diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sk.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sk.properties index 207a19a241c0..c4483b76d93e 100644 --- a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sk.properties +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Keep\ this\ build\ forever=Ponechaj toto zostavenie nav\u017Edy +Keep\ this\ build\ forever=Ponechaj toto zostavenie navždy diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sr.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sr.properties index bdd27859e364..e14d02dbee81 100644 --- a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sr.properties +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Keep\ this\ build\ forever=\u0417\u0430\u043F\u0430\u043C\u0442\u0438 \u043E\u0432\u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 \u0437\u0430\u0443\u0432\u0435\u043A +Keep\ this\ build\ forever=Запамти ову изградњу заувек diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sv_SE.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sv_SE.properties index e1a36c5e5540..1feac2214768 100644 --- a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sv_SE.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Keep\ this\ build\ forever=Spara detta bygge f\u00F6r evigt +Keep\ this\ build\ forever=Spara detta bygge för evigt diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_uk.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_uk.properties index d9179be57293..552ffa292f05 100644 --- a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_uk.properties +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Keep\ this\ build\ forever=\u0417\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u0446\u0435\u0439 \u0431\u0456\u043B\u0434 \u0437\u0430\u0432\u0436\u0434\u0438 +Keep\ this\ build\ forever=Зберігати цей білд завжди diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_zh_TW.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_zh_TW.properties index 8228fc698d18..c606da941f38 100644 --- a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Keep\ this\ build\ forever=\u6c38\u4e45\u4fdd\u7559\u6b64\u5efa\u7f6e +Keep\ this\ build\ forever=永久ä¿ç•™æ­¤å»ºç½® diff --git a/core/src/main/resources/hudson/model/Run/artifacts-index_bg.properties b/core/src/main/resources/hudson/model/Run/artifacts-index_bg.properties index 38b8e8f3880c..7cb90cb1aca5 100644 --- a/core/src/main/resources/hudson/model/Run/artifacts-index_bg.properties +++ b/core/src/main/resources/hudson/model/Run/artifacts-index_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Build\ Artifacts=\ - \u041e\u0431\u0435\u043a\u0442\u0438 \u043e\u0442 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e + Обекти от изграждането diff --git a/core/src/main/resources/hudson/model/Run/artifacts-index_it.properties b/core/src/main/resources/hudson/model/Run/artifacts-index_it.properties index ae90a0e2eb57..331f3e66a58d 100644 --- a/core/src/main/resources/hudson/model/Run/artifacts-index_it.properties +++ b/core/src/main/resources/hudson/model/Run/artifacts-index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/Run/artifacts-index_ja.properties b/core/src/main/resources/hudson/model/Run/artifacts-index_ja.properties index 1cebeca8972a..982f8c0c5abe 100644 --- a/core/src/main/resources/hudson/model/Run/artifacts-index_ja.properties +++ b/core/src/main/resources/hudson/model/Run/artifacts-index_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Artifacts=\u30D3\u30EB\u30C9\u306E\u6210\u679C\u7269 +Build\ Artifacts=ビルドã®æˆæžœç‰© diff --git a/core/src/main/resources/hudson/model/Run/artifacts-index_pt_BR.properties b/core/src/main/resources/hudson/model/Run/artifacts-index_pt_BR.properties index 76a119a0c825..a143cd4d5d3b 100644 --- a/core/src/main/resources/hudson/model/Run/artifacts-index_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Run/artifacts-index_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Artifacts=Artefatos de constru\u00E7\u00F5es +Build\ Artifacts=Artefatos de construções diff --git a/core/src/main/resources/hudson/model/Run/artifacts-index_sr.properties b/core/src/main/resources/hudson/model/Run/artifacts-index_sr.properties index ed4de01fde7e..e777d4f6dc6c 100644 --- a/core/src/main/resources/hudson/model/Run/artifacts-index_sr.properties +++ b/core/src/main/resources/hudson/model/Run/artifacts-index_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Build\ Artifacts=\u0410\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0438 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 +Build\ Artifacts=Ðртефакти изградње diff --git a/core/src/main/resources/hudson/model/Run/artifacts-index_zh_TW.properties b/core/src/main/resources/hudson/model/Run/artifacts-index_zh_TW.properties index e8e6faf7c6e1..4be20bced9ed 100644 --- a/core/src/main/resources/hudson/model/Run/artifacts-index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Run/artifacts-index_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Artifacts=\u5efa\u7f6e\u6210\u54c1 +Build\ Artifacts=建置æˆå“ diff --git a/core/src/main/resources/hudson/model/Run/configure.properties b/core/src/main/resources/hudson/model/Run/configure.properties new file mode 100644 index 000000000000..e10805d08ccf --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure.properties @@ -0,0 +1 @@ +LOADING=Loading diff --git a/core/src/main/resources/hudson/model/Run/configure_bg.properties b/core/src/main/resources/hudson/model/Run/configure_bg.properties index 1d4af2f277c7..61af51737282 100644 --- a/core/src/main/resources/hudson/model/Run/configure_bg.properties +++ b/core/src/main/resources/hudson/model/Run/configure_bg.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. Description=\ - \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 + ОпиÑание DisplayName=\ - \u0418\u043c\u0435 \u0437\u0430 \u0438\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435 + Име за извеждане LOADING=\ - \u0417\u0410\u0420\u0415\u0416\u0414\u0410\u041d\u0415 + ЗÐРЕЖДÐÐЕ Save=\ - \u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 + Запазване diff --git a/core/src/main/resources/hudson/model/Run/configure_ca.properties b/core/src/main/resources/hudson/model/Run/configure_ca.properties index 9e339b4d0b82..198feb6a3569 100644 --- a/core/src/main/resources/hudson/model/Run/configure_ca.properties +++ b/core/src/main/resources/hudson/model/Run/configure_ca.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Description=Descripci\u00F3 +Description=Descripció DisplayName=Nom per mostrar LOADING=CARREGANT Save=Desa diff --git a/core/src/main/resources/hudson/model/Run/configure_cs.properties b/core/src/main/resources/hudson/model/Run/configure_cs.properties index d73238e8393d..e98e91f86df6 100644 --- a/core/src/main/resources/hudson/model/Run/configure_cs.properties +++ b/core/src/main/resources/hudson/model/Run/configure_cs.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Description=Popis -DisplayName=Zobrazovan\u00E9 jm\u00E9no -LOADING=NAHR\u00C1V\u00C1N\u00CD -Save=Ulo\u017Eit +DisplayName=Zobrazované jméno +LOADING=NAHRÃVÃNà +Save=Uložit diff --git a/core/src/main/resources/hudson/model/Run/configure_da.properties b/core/src/main/resources/hudson/model/Run/configure_da.properties index a678d199b77c..5836691dfbb0 100644 --- a/core/src/main/resources/hudson/model/Run/configure_da.properties +++ b/core/src/main/resources/hudson/model/Run/configure_da.properties @@ -22,5 +22,5 @@ Description=Beskrivelse DisplayName=Vist navn -LOADING=INDL\u00C6SER +LOADING=INDLÆSER Save=Sikker diff --git a/core/src/main/resources/hudson/model/Run/configure_es.properties b/core/src/main/resources/hudson/model/Run/configure_es.properties index 17f3a702063f..3e880d0d0b2e 100644 --- a/core/src/main/resources/hudson/model/Run/configure_es.properties +++ b/core/src/main/resources/hudson/model/Run/configure_es.properties @@ -23,4 +23,4 @@ DisplayName=Nombre Save=Guardar LOADING=CARGANDO -Description=Descripción +Description=Descripción diff --git a/core/src/main/resources/hudson/model/Run/configure_fi.properties b/core/src/main/resources/hudson/model/Run/configure_fi.properties index 2f0b5a110590..e1429989f73f 100644 --- a/core/src/main/resources/hudson/model/Run/configure_fi.properties +++ b/core/src/main/resources/hudson/model/Run/configure_fi.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors Description=Kuvaus -DisplayName=N\u00E4ytt\u00F6nimi +DisplayName=Näyttönimi LOADING=LATAA diff --git a/core/src/main/resources/hudson/model/Run/configure_fr.properties b/core/src/main/resources/hudson/model/Run/configure_fr.properties index ab1bfcc1d017..55626bef2e2d 100644 --- a/core/src/main/resources/hudson/model/Run/configure_fr.properties +++ b/core/src/main/resources/hudson/model/Run/configure_fr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -DisplayName=Nom \u00E0 l''affichage +DisplayName=Nom à l''affichage LOADING=Chargement Save=Sauvegarder diff --git a/core/src/main/resources/hudson/model/Run/configure_he.properties b/core/src/main/resources/hudson/model/Run/configure_he.properties index b672fcedbc1c..69d8acd6020c 100644 --- a/core/src/main/resources/hudson/model/Run/configure_he.properties +++ b/core/src/main/resources/hudson/model/Run/configure_he.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Description=\u05E6\u05D9\u05D0\u05D5\u05E8 -DisplayName=\u05E9\u05DD \u05DE\u05D5\u05E6\u05D2 -LOADING=\u05D8\u05D5\u05E2\u05DF -Save=\u05E9\u05DE\u05D5\u05E8 +Description=צי×ור +DisplayName=×©× ×ž×•×¦×’ +LOADING=טוען +Save=שמור diff --git a/core/src/main/resources/hudson/model/Run/configure_hu.properties b/core/src/main/resources/hudson/model/Run/configure_hu.properties index 4c64a34745a4..b5582253fc65 100644 --- a/core/src/main/resources/hudson/model/Run/configure_hu.properties +++ b/core/src/main/resources/hudson/model/Run/configure_hu.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Description=Le\u00EDr\u00E1s -DisplayName=Megjelen\u00E9si n\u00E9v -LOADING=BET\u00D6LT\u00C9S -Save=Ment\u00E9s +Description=Leírás +DisplayName=Megjelenési név +LOADING=BETÖLTÉS +Save=Mentés diff --git a/core/src/main/resources/hudson/model/Run/configure_it.properties b/core/src/main/resources/hudson/model/Run/configure_it.properties index 523811fecb19..8c33ce3097f8 100644 --- a/core/src/main/resources/hudson/model/Run/configure_it.properties +++ b/core/src/main/resources/hudson/model/Run/configure_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/Run/configure_ja.properties b/core/src/main/resources/hudson/model/Run/configure_ja.properties index f48213f2f08a..b8ce4158bbfe 100644 --- a/core/src/main/resources/hudson/model/Run/configure_ja.properties +++ b/core/src/main/resources/hudson/model/Run/configure_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -LOADING=\u30ed\u30fc\u30c9\u4e2d -DisplayName=\u8868\u793a\u540d -Description=\u8aac\u660e -Save=\u4fdd\u5b58 +LOADING=ロード中 +DisplayName=表示å +Description=説明 +Save=ä¿å­˜ diff --git a/core/src/main/resources/hudson/model/Run/configure_ko.properties b/core/src/main/resources/hudson/model/Run/configure_ko.properties index a19a9fedb15e..ad0c8c763d50 100644 --- a/core/src/main/resources/hudson/model/Run/configure_ko.properties +++ b/core/src/main/resources/hudson/model/Run/configure_ko.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=\uC124\uBA85 -DisplayName=\uD45C\uC2DC \uC774\uB984 -LOADING=\uBD88\uB7EC\uC624\uB294 \uC911 -Save=\uC800\uC7A5 +Description=설명 +DisplayName=표시 ì´ë¦„ +LOADING=불러오는 중 +Save=저장 diff --git a/core/src/main/resources/hudson/model/Run/configure_lt.properties b/core/src/main/resources/hudson/model/Run/configure_lt.properties index 7d29bab1fb63..9f8a12efbbc3 100644 --- a/core/src/main/resources/hudson/model/Run/configure_lt.properties +++ b/core/src/main/resources/hudson/model/Run/configure_lt.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Description=Apra\u0161ymas +Description=ApraÅ¡ymas DisplayName=Pavadinimas LOADING=KRAUNAMA -Save=I\u0161saugoti +Save=IÅ¡saugoti diff --git a/core/src/main/resources/hudson/model/Run/configure_lv.properties b/core/src/main/resources/hudson/model/Run/configure_lv.properties index 9558fc998285..fab8a9a06a3a 100644 --- a/core/src/main/resources/hudson/model/Run/configure_lv.properties +++ b/core/src/main/resources/hudson/model/Run/configure_lv.properties @@ -22,5 +22,5 @@ Description=Apraksts DisplayName=Nosaukums -LOADING=Iel\u0101d\u0113ju... -Save=Saglab\u0101t +LOADING=IelÄdÄ“ju... +Save=SaglabÄt diff --git a/core/src/main/resources/hudson/model/Run/configure_pl.properties b/core/src/main/resources/hudson/model/Run/configure_pl.properties index 215f2e845db4..196f9e400310 100644 --- a/core/src/main/resources/hudson/model/Run/configure_pl.properties +++ b/core/src/main/resources/hudson/model/Run/configure_pl.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Description=Opis -DisplayName=Wy\u015Bwietlana nazwa -LOADING=\u0141ADOWANIE +DisplayName=WyÅ›wietlana nazwa +LOADING=ÅADOWANIE Save=Zapisz diff --git a/core/src/main/resources/hudson/model/Run/configure_pt_BR.properties b/core/src/main/resources/hudson/model/Run/configure_pt_BR.properties index b360c7fad259..3390bf63d4d5 100644 --- a/core/src/main/resources/hudson/model/Run/configure_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Run/configure_pt_BR.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=Descri\u00E7\u00E3o +Description=Descrição DisplayName=Nome LOADING=CARREGANDO Save=Salvar diff --git a/core/src/main/resources/hudson/model/Run/configure_pt_PT.properties b/core/src/main/resources/hudson/model/Run/configure_pt_PT.properties index 4152cc31e2af..91f571f7760e 100644 --- a/core/src/main/resources/hudson/model/Run/configure_pt_PT.properties +++ b/core/src/main/resources/hudson/model/Run/configure_pt_PT.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Description=Descri\u00E7\u00E3o -DisplayName=Nome para Apresenta\u00E7\u00E3o +Description=Descrição +DisplayName=Nome para Apresentação LOADING=A CARREGAR diff --git a/core/src/main/resources/hudson/model/Run/configure_ru.properties b/core/src/main/resources/hudson/model/Run/configure_ru.properties index ca396d9bc1cb..94f676aa2e79 100644 --- a/core/src/main/resources/hudson/model/Run/configure_ru.properties +++ b/core/src/main/resources/hudson/model/Run/configure_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 -DisplayName=\u041E\u0442\u043E\u0431\u0440\u0430\u0436\u0430\u0435\u043C\u043E\u0435 \u0438\u043C\u044F -LOADING=\u0417\u0410\u0413\u0420\u0423\u0417\u041A\u0410 -Save=\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C +Description=ОпиÑание +DisplayName=Отображаемое Ð¸Ð¼Ñ +LOADING=ЗÐГРУЗКР+Save=Сохранить diff --git a/core/src/main/resources/hudson/model/Run/configure_sk.properties b/core/src/main/resources/hudson/model/Run/configure_sk.properties index be62d618fc45..e777b941b4f9 100644 --- a/core/src/main/resources/hudson/model/Run/configure_sk.properties +++ b/core/src/main/resources/hudson/model/Run/configure_sk.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Description=Popis -DisplayName=Zobrazovan\u00E9 meno -LOADING=Nahr\u00E1vanie -Save=Ulo\u017E +DisplayName=Zobrazované meno +LOADING=Nahrávanie +Save=Ulož diff --git a/core/src/main/resources/hudson/model/Run/configure_sr.properties b/core/src/main/resources/hudson/model/Run/configure_sr.properties index 6fffe044fdec..140a362b13e5 100644 --- a/core/src/main/resources/hudson/model/Run/configure_sr.properties +++ b/core/src/main/resources/hudson/model/Run/configure_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -LOADING=\u0423\u0427\u0418\u0422\u0410\u0412\u0410\u040A\u0415 -DisplayName=\u0418\u043C\u0435 \u0437\u0430 \u043F\u0440\u0438\u043A\u0430\u0437 -Description=\u041E\u043F\u0438\u0441 -Save=\u0421\u0430\u0447\u0443\u0432\u0430\u0458 +LOADING=УЧИТÐÐ’ÐЊЕ +DisplayName=Име за приказ +Description=ÐžÐ¿Ð¸Ñ +Save=Сачувај diff --git a/core/src/main/resources/hudson/model/Run/configure_uk.properties b/core/src/main/resources/hudson/model/Run/configure_uk.properties index 0de1a9dc01e3..3de78939241c 100644 --- a/core/src/main/resources/hudson/model/Run/configure_uk.properties +++ b/core/src/main/resources/hudson/model/Run/configure_uk.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Description=\u041E\u043F\u0438\u0441 -DisplayName=\u041D\u0430\u0437\u0432\u0430 -LOADING=\u0417\u0410\u0412\u0410\u041D\u0422\u0410\u0416\u0415\u041D\u041D\u042F -Save=\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438 +Description=ÐžÐ¿Ð¸Ñ +DisplayName=Ðазва +LOADING=ЗÐÐ’ÐÐТÐЖЕÐÐЯ +Save=Зберегти diff --git a/core/src/main/resources/hudson/model/Run/configure_zh_TW.properties b/core/src/main/resources/hudson/model/Run/configure_zh_TW.properties index bfdd467971a9..58868e403b89 100644 --- a/core/src/main/resources/hudson/model/Run/configure_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Run/configure_zh_TW.properties @@ -21,7 +21,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -LOADING=\u8f09\u5165\u4e2d -DisplayName=\u986f\u793a\u540d\u7a31 -Description=\u8aaa\u660e -Save=\u5132\u5b58 +LOADING=載入中 +DisplayName=顯示å稱 +Description=說明 +Save=儲存 diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete.properties b/core/src/main/resources/hudson/model/Run/confirmDelete.properties index 2140d59aaaac..59e26ad0ad07 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete.properties @@ -1 +1 @@ -delete.build=Delete the build \u2018{0}\u2019? +delete.build=Delete the build ‘{0}’? diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_bg.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_bg.properties index 378fa43b75a8..27b50976bac5 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_bg.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Are\ you\ sure\ about\ deleting\ the\ build?=\ - \u041d\u0430\u0438\u0441\u0442\u0438\u043d\u0430 \u043b\u0438 \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u0434\u0430 \u0438\u0437\u0442\u0440\u0438\u0435\u0442\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u0435\u043d\u043e\u0442\u043e? + ÐаиÑтина ли желаете да изтриете изграденото? Yes=\ - \u0414\u0430 + Да Warning=\ - \u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435 + Предупреждение diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_ca.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_ca.properties index 2c61f3b2eca8..5abb02e422f4 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_ca.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_ca.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -delete.build=Est\u00E0s segur que vols esborrar la construcci\u00F3 ? ({0}) +delete.build=Estàs segur que vols esborrar la construcció ? ({0}) -Yes=S\u00ED +Yes=Sí diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_cs.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_cs.properties index bfcd5f6aae39..c7633d928cf0 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_cs.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_cs.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -delete.build=Jste si jisti, \u017Ee chcete smazat tento build? ({0}) +delete.build=Jste si jisti, že chcete smazat tento build? ({0}) Yes=Ano diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_da.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_da.properties index b17fff5d8b78..f96d12101b23 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_da.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_da.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Yes=Ja -delete.build=Er du sikker p\u00e5 at du vil slette dette byg? ({0}) +delete.build=Er du sikker pÃ¥ at du vil slette dette byg? ({0}) Warning=Advarsel diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_de.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_de.properties index d88f0901227f..7a1f177267e4 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_de.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_de.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Warning=Warnung -delete.build=Soll der Build wirklich gelöscht werden? ({0}) +delete.build=Soll der Build wirklich gelöscht werden? ({0}) Yes=Ja diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_es.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_es.properties index d3c77c320e31..118a228f5899 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_es.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_es.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Warning=Cuidado -Yes=Sí -delete.build=¿Estás seguro de quere borrar la ejecución? ({0}) +Yes=Sí +delete.build=¿Estás seguro de quere borrar la ejecución? ({0}) diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_fi.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_fi.properties index bec42ec890b5..cfa0c39af7fd 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_fi.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_fi.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -delete.build=Haluatko varmasti poistaa k\u00E4\u00E4nn\u00F6ksen? ({0}) +delete.build=Haluatko varmasti poistaa käännöksen? ({0}) -Yes=Kyll\u00E4 +Yes=Kyllä diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_fr.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_fr.properties index 1aa771d95026..9864f784d9c4 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_fr.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_fr.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Warning=Avertissement -delete.build=Etes-vous sûr de vouloir supprimer le build? ({0}) +delete.build=Etes-vous sûr de vouloir supprimer le build? ({0}) Yes=Oui diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_it.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_it.properties index 7820c4d54dfd..981c6017d70f 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_it.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -23,4 +23,4 @@ delete.build=Eliminare la compilazione "{0}"? Warning=Avviso -Yes=Sì +Yes=Sì diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_ja.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_ja.properties index 4d58f1c27118..cf12d13eb8cf 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_ja.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Warning=\u8b66\u544a -Are\ you\ sure\ about\ deleting\ the\ build?=\u30d3\u30eb\u30c9\u3092\u524a\u9664\u3057\u307e\u3059\u304b\uff1f -Yes=\u306f\u3044 +Warning=警告 +Are\ you\ sure\ about\ deleting\ the\ build?=ビルドを削除ã—ã¾ã™ã‹ï¼Ÿ +Yes=ã¯ã„ diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_ko.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_ko.properties index b6f133180d75..d405e0e642a3 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_ko.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_ko.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -delete.build=\uC815\uB9D0\uB85C \uC774 \uBE4C\uB4DC\uB97C \uC0AD\uC81C\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C? ({0}) +delete.build=ì •ë§ë¡œ ì´ ë¹Œë“œë¥¼ 삭제하시겠습니까? ({0}) -Yes=\uC608 +Yes=예 diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_lv.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_lv.properties index 97aeba7367d7..2676aa3083f9 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_lv.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_lv.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -delete.build=Vai j\u016Bs esat dro\u0161s par \u0161i b\u016Bv\u0113juma dz\u0113\u0161anu? ({0}) +delete.build=Vai jÅ«s esat droÅ¡s par Å¡i bÅ«vÄ“juma dzÄ“Å¡anu? ({0}) -Yes=J\u0101 +Yes=JÄ diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_pl.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_pl.properties index a09d03cd853d..3796802a2ba5 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_pl.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_pl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -delete.build=Potwierdzasz usuni\u0119cie zadania? ({0}) +delete.build=Potwierdzasz usuniÄ™cie zadania? ({0}) Yes=Tak diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_pt_BR.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_pt_BR.properties index 0375c0c674ea..8a221ac1c23a 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_pt_BR.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Warning=Aviso -delete.build=Tem certeza que deseja excluir a constru\u00E7\u00E3o? ({0}) +delete.build=Tem certeza que deseja excluir a construção? ({0}) Yes=Sim diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_ru.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_ru.properties index 45cd79e3972b..a9c22d89eabb 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_ru.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Warning=\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435 -delete.build=\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u044d\u0442\u0443 \u0441\u0431\u043e\u0440\u043a\u0443? ({0}) +Warning=Предупреждение +delete.build=Ð’Ñ‹ уверены что хотите удалить Ñту Ñборку? ({0}) -Yes=\u0414\u0430 +Yes=Да diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_sk.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_sk.properties index 783aaa4853ec..f1d2f2329264 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_sk.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_sk.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -delete.build=Ste si ist\u00FD, \u017Ee chcete zmaza\u0165 toto zostavenie? ({0}) +delete.build=Ste si istý, že chcete zmazaÅ¥ toto zostavenie? ({0}) -Yes=\u00C1no +Yes=Ãno diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_sr.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_sr.properties index d11dc0f6c482..beb773fd7502 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_sr.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Warning=\u0423\u043F\u043E\u0437\u043E\u0440\u0435\u045A\u0435 -Yes=\u0414\u0430 -delete.build=\u0414\u0430 \u043B\u0438 \u0441\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043D\u0438 \u0434\u0430 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u0443\u043A\u043B\u043E\u043D\u0438\u0442\u0435 \u043E\u0432\u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443? ({0}) +Warning=Упозорење +Yes=Да +delete.build=Да ли Ñте Ñигурни да желите да уклоните ову изградњу? ({0}) diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_sv_SE.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_sv_SE.properties index c7942128fd72..6c8f3a9b78eb 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_sv_SE.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -delete.build=\u00C4r du s\u00E4ker p\u00E5 att du vill ta bort det h\u00E4r bygget? ({0}) +delete.build=Är du säker pÃ¥ att du vill ta bort det här bygget? ({0}) Yes=Ja diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_tr.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_tr.properties index 50a31e8d8771..8b1b81dcc93a 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_tr.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_tr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Warning=Uyar\u0131 -delete.build=Bu yap\u0131land\u0131rmay\u0131 silmek istedi\u011finize emin misiniz? ({0}) +Warning=Uyarı +delete.build=Bu yapılandırmayı silmek istediÄŸinize emin misiniz? ({0}) Yes=Evet diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_uk.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_uk.properties index 083ce72101b1..a7a998db7146 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_uk.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_uk.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -delete.build=\u0412\u0438 \u0432\u043F\u0435\u0432\u043D\u0435\u043D\u0456, \u0449\u043E \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0432\u0438\u0434\u0430\u043B\u0438\u0442\u0438 \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0443? ({0}) +delete.build=Ви впевнені, що бажаєте видалити побудову? ({0}) -Yes=\u0422\u0430\u043A +Yes=Так diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_zh_TW.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_zh_TW.properties index bb92913ba3ad..021ac5e8bb34 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -delete.build=\u78ba\u5b9a\u8981\u522a\u9664\u5efa\u7f6e\u300c{0}\u300d\u55ce\uff1f -Warning=\u8b66\u544a -Yes=\u662f +delete.build=確定è¦åˆªé™¤å»ºç½®ã€Œ{0}ã€å—Žï¼Ÿ +Warning=警告 +Yes=是 diff --git a/core/src/main/resources/hudson/model/Run/console_bg.properties b/core/src/main/resources/hudson/model/Run/console_bg.properties index e4a3d944382c..2f984024e758 100644 --- a/core/src/main/resources/hudson/model/Run/console_bg.properties +++ b/core/src/main/resources/hudson/model/Run/console_bg.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Console\ Output=\ - \u041a\u043e\u043d\u0437\u043e\u043b\u0430 \u0441 \u0440\u0435\u0437\u0443\u043b\u0442\u0430\u0442\u0430 + Конзола Ñ Ñ€ÐµÐ·ÑƒÐ»Ñ‚Ð°Ñ‚Ð° # Skipping {0,number,integer} KB.. Full Log skipSome=\ - \u041f\u0440\u043e\u043f\u0443\u0441\u043a\u0430\u043d\u0435 \u043d\u0430 {0,number,integer}\u200aKB\u2026 \u041f\u044a\u043b\u0435\u043d \u0436\u0443\u0440\u043d\u0430\u043b + ПропуÑкане на {0,number,integer} KB… Пълен журнал diff --git a/core/src/main/resources/hudson/model/Run/console_cs.properties b/core/src/main/resources/hudson/model/Run/console_cs.properties index a9f657728965..26dd506ede2b 100644 --- a/core/src/main/resources/hudson/model/Run/console_cs.properties +++ b/core/src/main/resources/hudson/model/Run/console_cs.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=V\u00FDstup na konzoli -skipSome=Vynech\u00E1no {0,number,integer} kB.. Zobrazit cel\u00FD text +Console\ Output=Výstup na konzoli +skipSome=Vynecháno {0,number,integer} kB.. Zobrazit celý text diff --git a/core/src/main/resources/hudson/model/Run/console_el.properties b/core/src/main/resources/hudson/model/Run/console_el.properties index 616e47b63032..a438d1632a0d 100644 --- a/core/src/main/resources/hudson/model/Run/console_el.properties +++ b/core/src/main/resources/hudson/model/Run/console_el.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u0391\u03C0\u03BF\u03C4\u03B5\u03BB\u03AD\u03C3\u03BC\u03B1\u03C4\u03B1 \u039A\u03BF\u03BD\u03C3\u03CC\u03BB\u03B1\u03C2 +Console\ Output=Αποτελέσματα Κονσόλας diff --git a/core/src/main/resources/hudson/model/Run/console_et.properties b/core/src/main/resources/hudson/model/Run/console_et.properties index fc3c1182489d..c2ddbbd6725d 100644 --- a/core/src/main/resources/hudson/model/Run/console_et.properties +++ b/core/src/main/resources/hudson/model/Run/console_et.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Console\ Output=Konsooli v\u00E4ljund +Console\ Output=Konsooli väljund View\ as\ plain\ text=Vaata tekstina diff --git a/core/src/main/resources/hudson/model/Run/console_fi.properties b/core/src/main/resources/hudson/model/Run/console_fi.properties index 3683c8333bba..fa015bdf7fe7 100644 --- a/core/src/main/resources/hudson/model/Run/console_fi.properties +++ b/core/src/main/resources/hudson/model/Run/console_fi.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Console\ Output=Konsolituloste -skipSome=Piilotettu {0,number,integer} KB.. N\u00E4yt\u00E4 kaikki +skipSome=Piilotettu {0,number,integer} KB.. Näytä kaikki diff --git a/core/src/main/resources/hudson/model/Run/console_he.properties b/core/src/main/resources/hudson/model/Run/console_he.properties index 03765f592e75..156b5b884bdd 100644 --- a/core/src/main/resources/hudson/model/Run/console_he.properties +++ b/core/src/main/resources/hudson/model/Run/console_he.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u05E4\u05DC\u05D8 \u05DE\u05E1\u05DA -View\ as\ plain\ text=\u05E6\u05E4\u05D9\u05D9\u05D4 \u05DB\u05D8\u05E7\u05E1\u05D8 -skipSome=\u05DE\u05D3\u05DC\u05D2 {0,number,integer} \u05E7"\u05D1.. \u05D3\u05D5"\u05D7 \u05DE\u05DC\u05D0 +Console\ Output=פלט מסך +View\ as\ plain\ text=צפייה כטקסט +skipSome=מדלג {0,number,integer} ק"ב.. דו"×— ×ž×œ× diff --git a/core/src/main/resources/hudson/model/Run/console_hu.properties b/core/src/main/resources/hudson/model/Run/console_hu.properties index 4cf20c4d3996..b2e63b7a0dd5 100644 --- a/core/src/main/resources/hudson/model/Run/console_hu.properties +++ b/core/src/main/resources/hudson/model/Run/console_hu.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Console\ Output=Parancssor kimenete -View\ as\ plain\ text=Mutasd sima sz\u00F6vegk\u00E9nt -skipSome=Kimaradt {0,number,integer} KB.. Teljes Napl\u00F3 +View\ as\ plain\ text=Mutasd sima szövegként +skipSome=Kimaradt {0,number,integer} KB.. Teljes Napló diff --git a/core/src/main/resources/hudson/model/Run/console_it.properties b/core/src/main/resources/hudson/model/Run/console_it.properties index 18c2ac01223b..771751b4f8ac 100644 --- a/core/src/main/resources/hudson/model/Run/console_it.properties +++ b/core/src/main/resources/hudson/model/Run/console_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/Run/console_ja.properties b/core/src/main/resources/hudson/model/Run/console_ja.properties index 994450ff5333..5a19b791b70c 100644 --- a/core/src/main/resources/hudson/model/Run/console_ja.properties +++ b/core/src/main/resources/hudson/model/Run/console_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u30B3\u30F3\u30BD\u30FC\u30EB\u51FA\u529B -skipSome=\u30B9\u30AD\u30C3\u30D7 {0,number,integer}KB .. \u3059\u3079\u3066\u306E\u30ED\u30B0 +Console\ Output=コンソール出力 +skipSome=スキップ {0,number,integer}KB .. ã™ã¹ã¦ã®ãƒ­ã‚° diff --git a/core/src/main/resources/hudson/model/Run/console_ko.properties b/core/src/main/resources/hudson/model/Run/console_ko.properties index 7724f523a68c..6995a3a7c364 100644 --- a/core/src/main/resources/hudson/model/Run/console_ko.properties +++ b/core/src/main/resources/hudson/model/Run/console_ko.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\uCF58\uC194 \uCD9C\uB825 -skipSome=\uAC74\uB108 \uB6F0\uAE30 {0,number,integer} KB.. Full Log +Console\ Output=콘솔 출력 +skipSome=건너 뛰기 {0,number,integer} KB.. Full Log diff --git a/core/src/main/resources/hudson/model/Run/console_lt.properties b/core/src/main/resources/hudson/model/Run/console_lt.properties index 610c1e2d76d6..09324ad7513e 100644 --- a/core/src/main/resources/hudson/model/Run/console_lt.properties +++ b/core/src/main/resources/hudson/model/Run/console_lt.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Konsol\u0117s i\u0161vestis -skipSome=Praleid\u017Eiame {0,number,integer} KB.. Pilna istorija +Console\ Output=KonsolÄ—s iÅ¡vestis +skipSome=Praleidžiame {0,number,integer} KB.. Pilna istorija diff --git a/core/src/main/resources/hudson/model/Run/console_lv.properties b/core/src/main/resources/hudson/model/Run/console_lv.properties index 77b52000b08d..2332f687a5da 100644 --- a/core/src/main/resources/hudson/model/Run/console_lv.properties +++ b/core/src/main/resources/hudson/model/Run/console_lv.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Console\ Output=Konsoles izvads -View\ as\ plain\ text=R\u0101d\u012Bt k\u0101 vienk\u0101r\u0161u tekstu -skipSome=Izlai\u017E {0,number,integer} KB.. Viss \u017Eurn\u0101ls +View\ as\ plain\ text=RÄdÄ«t kÄ vienkÄrÅ¡u tekstu +skipSome=Izlaiž {0,number,integer} KB.. Viss žurnÄls diff --git a/core/src/main/resources/hudson/model/Run/console_pl.properties b/core/src/main/resources/hudson/model/Run/console_pl.properties index 138b0e72ed6c..a2179fc1206f 100644 --- a/core/src/main/resources/hudson/model/Run/console_pl.properties +++ b/core/src/main/resources/hudson/model/Run/console_pl.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Console\ Output=Logi konsoli -skipSome=Pomini\u0119to {0,number,integer} KB.. Poka\u017C wszystko +skipSome=PominiÄ™to {0,number,integer} KB.. Pokaż wszystko diff --git a/core/src/main/resources/hudson/model/Run/console_pt_BR.properties b/core/src/main/resources/hudson/model/Run/console_pt_BR.properties index 6d32d7768cdb..784110d5cec3 100644 --- a/core/src/main/resources/hudson/model/Run/console_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Run/console_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Sa\u00EDda do console +Console\ Output=Saída do console # Skipping {0,number,integer} KB.. Full Log skipSome=Ignorando {0,number,integer} KB.. Ver log completo diff --git a/core/src/main/resources/hudson/model/Run/console_ro.properties b/core/src/main/resources/hudson/model/Run/console_ro.properties index 685cc428e245..2bcab1cf9d2a 100644 --- a/core/src/main/resources/hudson/model/Run/console_ro.properties +++ b/core/src/main/resources/hudson/model/Run/console_ro.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Afi\u0219aj consola +Console\ Output=AfiÈ™aj consola diff --git a/core/src/main/resources/hudson/model/Run/console_ru.properties b/core/src/main/resources/hudson/model/Run/console_ru.properties index 090ddbcf99c0..743ca3cd71e1 100644 --- a/core/src/main/resources/hudson/model/Run/console_ru.properties +++ b/core/src/main/resources/hudson/model/Run/console_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u0412\u044B\u0432\u043E\u0434 \u043D\u0430 \u043A\u043E\u043D\u0441\u043E\u043B\u044C -skipSome=\u041F\u0440\u043E\u043F\u0443\u0449\u0435\u043D\u043E {0,number,integer} KB.. \u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0432\u0435\u0441\u044C Log +Console\ Output=Вывод на конÑоль +skipSome=Пропущено {0,number,integer} KB.. Показать веÑÑŒ Log diff --git a/core/src/main/resources/hudson/model/Run/console_sk.properties b/core/src/main/resources/hudson/model/Run/console_sk.properties index 63fb512d24a7..20f988c45c43 100644 --- a/core/src/main/resources/hudson/model/Run/console_sk.properties +++ b/core/src/main/resources/hudson/model/Run/console_sk.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Konzolov\u00FD v\u00FDstup -View\ as\ plain\ text=Zobrazi\u0165 ako ne\u0161ifrovan\u00FD text -skipSome=Presko\u010Den\u00FDch {0,number,integer} KB.. Pln\u00FD log +Console\ Output=Konzolový výstup +View\ as\ plain\ text=ZobraziÅ¥ ako neÅ¡ifrovaný text +skipSome=PreskoÄených {0,number,integer} KB.. Plný log diff --git a/core/src/main/resources/hudson/model/Run/console_sl.properties b/core/src/main/resources/hudson/model/Run/console_sl.properties index f5dad9a1cca9..aedc9197a06a 100644 --- a/core/src/main/resources/hudson/model/Run/console_sl.properties +++ b/core/src/main/resources/hudson/model/Run/console_sl.properties @@ -2,4 +2,4 @@ Console\ Output=Izpis konzole View\ as\ plain\ text=Poglej kot text -skipSome=Izpu\u0161\u010Deno {0,number,integer} KB.. Celoten izpis +skipSome=IzpuÅ¡Äeno {0,number,integer} KB.. Celoten izpis diff --git a/core/src/main/resources/hudson/model/Run/console_sr.properties b/core/src/main/resources/hudson/model/Run/console_sr.properties index 3e24c621d1ec..1fa294a7f2cf 100644 --- a/core/src/main/resources/hudson/model/Run/console_sr.properties +++ b/core/src/main/resources/hudson/model/Run/console_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Console\ Output=\u0418\u0441\u0445\u043E\u0434 \u0438\u0437 \u043A\u043E\u043D\u0437\u043E\u043B\u0435 -View\ as\ plain\ text=\u041F\u0440\u0435\u0433\u043B\u0435\u0434 \u043E\u0431\u0438\u0447\u043D\u043E\u0433 \u0442\u0435\u043A\u0441\u0442\u0430 -skipSome=\u041F\u0440\u0435\u0441\u043A\u0430\u0447\u0435 {0,number,integer} KB.. \u041A\u043E\u043C\u043F\u043B\u0435\u0442\u0430\u043D \u0436\u0443\u0440\u043D\u0430\u043B +Console\ Output=ИÑход из конзоле +View\ as\ plain\ text=Преглед обичног текÑта +skipSome=ПреÑкаче {0,number,integer} KB.. Комплетан журнал diff --git a/core/src/main/resources/hudson/model/Run/console_sv_SE.properties b/core/src/main/resources/hudson/model/Run/console_sv_SE.properties index 80cc3678a54d..a1c0cc075990 100644 --- a/core/src/main/resources/hudson/model/Run/console_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Run/console_sv_SE.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Console\ Output=Konsollutskrift -skipSome=Hoppar \u00F6ver {0,number,integer} KB.. Visa Logg +skipSome=Hoppar över {0,number,integer} KB.. Visa Logg diff --git a/core/src/main/resources/hudson/model/Run/console_tr.properties b/core/src/main/resources/hudson/model/Run/console_tr.properties index 9c03c22807ed..130b958eef3f 100644 --- a/core/src/main/resources/hudson/model/Run/console_tr.properties +++ b/core/src/main/resources/hudson/model/Run/console_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Konsol \u00C7\u0131kt\u0131s\u0131 -skipSome={0,number,integer} KB atlan\u0131yor.. T\u00FCm Tutanak +Console\ Output=Konsol Çıktısı +skipSome={0,number,integer} KB atlanıyor.. Tüm Tutanak diff --git a/core/src/main/resources/hudson/model/Run/console_uk.properties b/core/src/main/resources/hudson/model/Run/console_uk.properties index 706426ea284d..17dcb2c71a20 100644 --- a/core/src/main/resources/hudson/model/Run/console_uk.properties +++ b/core/src/main/resources/hudson/model/Run/console_uk.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u041A\u043E\u043D\u0441\u043E\u043B\u044C\u043D\u0438\u0439 \u0412\u0438\u0432\u0456\u0434 -skipSome=\u041F\u0440\u043E\u043F\u0443\u0441\u043A\u0430\u0454\u043C\u043E {0,number,integer} \u041A\u0411.. \u041F\u043E\u0432\u043D\u0438\u0439 \u043B\u043E\u0433 +Console\ Output=КонÑольний Вивід +skipSome=ПропуÑкаємо {0,number,integer} КБ.. Повний лог diff --git a/core/src/main/resources/hudson/model/Run/console_zh_TW.properties b/core/src/main/resources/hudson/model/Run/console_zh_TW.properties index c3372e796215..2b161783ea16 100644 --- a/core/src/main/resources/hudson/model/Run/console_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Run/console_zh_TW.properties @@ -20,5 +20,5 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -skipSome=\u7565\u904e {0,number,integer} KB... \u5b8c\u6574\u5167\u5bb9 -Console\ Output=\u4e3b\u63a7\u53f0\u8f38\u51fa +skipSome=ç•¥éŽ {0,number,integer} KB... 完整內容 +Console\ Output=主控å°è¼¸å‡º diff --git a/core/src/main/resources/hudson/model/Run/delete-retry_bg.properties b/core/src/main/resources/hudson/model/Run/delete-retry_bg.properties index dc8c79c7803a..4ef5d40e4019 100644 --- a/core/src/main/resources/hudson/model/Run/delete-retry_bg.properties +++ b/core/src/main/resources/hudson/model/Run/delete-retry_bg.properties @@ -22,10 +22,10 @@ # Deletion of the build failed Not\ successful=\ - \u041d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u0435\u043d\u043e\u0442\u043e + ÐеуÑпешно изтриване на изграденото # Retry delete Retry\ delete=\ - \u041d\u043e\u0432 \u043e\u043f\u0438\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + Ðов опит за изграждане # Show reason Show\ reason=\ - \u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0438\u0447\u0438\u043d\u0430\u0442\u0430 + Показване на причината diff --git a/core/src/main/resources/hudson/model/Run/delete-retry_it.properties b/core/src/main/resources/hudson/model/Run/delete-retry_it.properties index bebb24e8a071..5fee30d39cae 100644 --- a/core/src/main/resources/hudson/model/Run/delete-retry_it.properties +++ b/core/src/main/resources/hudson/model/Run/delete-retry_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/Run/delete-retry_ja.properties b/core/src/main/resources/hudson/model/Run/delete-retry_ja.properties index f6a534eb64d4..f8d7adb4a676 100644 --- a/core/src/main/resources/hudson/model/Run/delete-retry_ja.properties +++ b/core/src/main/resources/hudson/model/Run/delete-retry_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Not\ successful=\u30d3\u30eb\u30c9\u306e\u524a\u9664\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002 -Retry\ delete=\u30ea\u30c8\u30e9\u30a4 -Show\ reason=\u539f\u56e0\u3092\u8868\u793a +Not\ successful=ビルドã®å‰Šé™¤ã«å¤±æ•—ã—ã¾ã—ãŸã€‚ +Retry\ delete=リトライ +Show\ reason=原因を表示 diff --git a/core/src/main/resources/hudson/model/Run/delete-retry_pt_BR.properties b/core/src/main/resources/hudson/model/Run/delete-retry_pt_BR.properties index 5b22cdecbd9a..5b6fa93514c8 100644 --- a/core/src/main/resources/hudson/model/Run/delete-retry_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Run/delete-retry_pt_BR.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Retry\ delete=Tentar excluir novamente -Not\ successful=A exclus\u00E3o da constru\u00E7\u00E3o falhou +Not\ successful=A exclusão da construção falhou Show\ reason=Mostrar o motivo diff --git a/core/src/main/resources/hudson/model/Run/delete-retry_sr.properties b/core/src/main/resources/hudson/model/Run/delete-retry_sr.properties index d5454cf7ecc1..886973e9847a 100644 --- a/core/src/main/resources/hudson/model/Run/delete-retry_sr.properties +++ b/core/src/main/resources/hudson/model/Run/delete-retry_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Retry\ delete=\u041F\u043E\u043A\u0443\u0448\u0430\u0458 \u0431\u0440\u0438\u0441\u0430\u045A\u0435 \u043F\u043E\u043D\u043E\u0432\u043E -Show\ reason=\u041F\u0440\u0438\u043A\u0430\u0436\u0438 \u0440\u0430\u0437\u043B\u043E\u0433 -Not\ successful=\u041D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u043E +Retry\ delete=Покушај бриÑање поново +Show\ reason=Прикажи разлог +Not\ successful=ÐеуÑпешно diff --git a/core/src/main/resources/hudson/model/Run/delete-retry_zh_TW.properties b/core/src/main/resources/hudson/model/Run/delete-retry_zh_TW.properties index 95af11e8548a..8a52cfed87ba 100644 --- a/core/src/main/resources/hudson/model/Run/delete-retry_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Run/delete-retry_zh_TW.properties @@ -19,6 +19,6 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Not\ successful=\u5617\u8a66\u522a\u9664\u5efa\u7f6e\u6642\u5931\u6557 -Retry\ delete=\u91cd\u65b0\u5617\u8a66\u522a\u9664 -Show\ reason=\u986f\u793a\u539f\u56e0 +Not\ successful=嘗試刪除建置時失敗 +Retry\ delete=é‡æ–°å˜—試刪除 +Show\ reason=顯示原因 diff --git a/core/src/main/resources/hudson/model/Run/delete.properties b/core/src/main/resources/hudson/model/Run/delete.properties index 23dce2f45a38..d5272a6a3a43 100644 --- a/core/src/main/resources/hudson/model/Run/delete.properties +++ b/core/src/main/resources/hudson/model/Run/delete.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Delete\ this\ build=Delete Build -delete.build=Delete build \u2018{0}\u2019 +delete.build=Delete build ‘{0}’ diff --git a/core/src/main/resources/hudson/model/Run/delete_bg.properties b/core/src/main/resources/hudson/model/Run/delete_bg.properties index 47e6e98e8e4c..bb1c1ad2e599 100644 --- a/core/src/main/resources/hudson/model/Run/delete_bg.properties +++ b/core/src/main/resources/hudson/model/Run/delete_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Delete\ this\ build=\ -\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u0435\u043d\u043e\u0442\u043e +Изтриване на изграденото diff --git a/core/src/main/resources/hudson/model/Run/delete_ca.properties b/core/src/main/resources/hudson/model/Run/delete_ca.properties index fc13ca002086..3148ab9a5905 100644 --- a/core/src/main/resources/hudson/model/Run/delete_ca.properties +++ b/core/src/main/resources/hudson/model/Run/delete_ca.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Delete\ this\ build=Elimina la contrucci\u00F3 +Delete\ this\ build=Elimina la contrucció diff --git a/core/src/main/resources/hudson/model/Run/delete_cs.properties b/core/src/main/resources/hudson/model/Run/delete_cs.properties index 1f966f733832..e72b5a07c32e 100644 --- a/core/src/main/resources/hudson/model/Run/delete_cs.properties +++ b/core/src/main/resources/hudson/model/Run/delete_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=Smazat toto sestaven\u00ED +Delete\ this\ build=Smazat toto sestavení diff --git a/core/src/main/resources/hudson/model/Run/delete_de.properties b/core/src/main/resources/hudson/model/Run/delete_de.properties index 5233b6086bee..bfadc0f9c66a 100644 --- a/core/src/main/resources/hudson/model/Run/delete_de.properties +++ b/core/src/main/resources/hudson/model/Run/delete_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=Build löschen +Delete\ this\ build=Build löschen diff --git a/core/src/main/resources/hudson/model/Run/delete_el.properties b/core/src/main/resources/hudson/model/Run/delete_el.properties index 83da46ffd545..e70ba9489bb9 100644 --- a/core/src/main/resources/hudson/model/Run/delete_el.properties +++ b/core/src/main/resources/hudson/model/Run/delete_el.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Delete\ this\ build=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE Build +Delete\ this\ build=ΔιαγÏαφή Build diff --git a/core/src/main/resources/hudson/model/Run/delete_fi.properties b/core/src/main/resources/hudson/model/Run/delete_fi.properties index cd5c1a789242..459169145754 100644 --- a/core/src/main/resources/hudson/model/Run/delete_fi.properties +++ b/core/src/main/resources/hudson/model/Run/delete_fi.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=Poista t\u00E4m\u00E4 buildi +Delete\ this\ build=Poista tämä buildi diff --git a/core/src/main/resources/hudson/model/Run/delete_he.properties b/core/src/main/resources/hudson/model/Run/delete_he.properties index ad6d73779804..c955608afc6c 100644 --- a/core/src/main/resources/hudson/model/Run/delete_he.properties +++ b/core/src/main/resources/hudson/model/Run/delete_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Delete\ this\ build=\u05DE\u05D7\u05E7 \u05D1\u05E0\u05D9\u05D4 +Delete\ this\ build=מחק בניה diff --git a/core/src/main/resources/hudson/model/Run/delete_hu.properties b/core/src/main/resources/hudson/model/Run/delete_hu.properties index 2f9f84411fe6..7b08f9f66665 100644 --- a/core/src/main/resources/hudson/model/Run/delete_hu.properties +++ b/core/src/main/resources/hudson/model/Run/delete_hu.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Delete\ this\ build=\u00C9p\u00EDt\u00E9s t\u00F6rl\u00E9se +Delete\ this\ build=Építés törlése diff --git a/core/src/main/resources/hudson/model/Run/delete_it.properties b/core/src/main/resources/hudson/model/Run/delete_it.properties index bad768cf6470..0f2f5077d921 100644 --- a/core/src/main/resources/hudson/model/Run/delete_it.properties +++ b/core/src/main/resources/hudson/model/Run/delete_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/Run/delete_ja.properties b/core/src/main/resources/hudson/model/Run/delete_ja.properties index 3180a421dc33..1dee39a7fc84 100644 --- a/core/src/main/resources/hudson/model/Run/delete_ja.properties +++ b/core/src/main/resources/hudson/model/Run/delete_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=\u30D3\u30EB\u30C9\u3092\u524A\u9664 +Delete\ this\ build=ビルドを削除 diff --git a/core/src/main/resources/hudson/model/Run/delete_ko.properties b/core/src/main/resources/hudson/model/Run/delete_ko.properties index 726183a7004a..4ae03a45906f 100644 --- a/core/src/main/resources/hudson/model/Run/delete_ko.properties +++ b/core/src/main/resources/hudson/model/Run/delete_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=\uC774 \uBE4C\uB4DC\uB97C \uC0AD\uC81C +Delete\ this\ build=ì´ ë¹Œë“œë¥¼ ì‚­ì œ diff --git a/core/src/main/resources/hudson/model/Run/delete_lt.properties b/core/src/main/resources/hudson/model/Run/delete_lt.properties index 0cda1d875f99..56a97b822849 100644 --- a/core/src/main/resources/hudson/model/Run/delete_lt.properties +++ b/core/src/main/resources/hudson/model/Run/delete_lt.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Delete\ this\ build=I\u0161trinti konstrukcij\u0105 +Delete\ this\ build=IÅ¡trinti konstrukcijÄ… diff --git a/core/src/main/resources/hudson/model/Run/delete_lv.properties b/core/src/main/resources/hudson/model/Run/delete_lv.properties index 55904103a7d6..20b8b004920c 100644 --- a/core/src/main/resources/hudson/model/Run/delete_lv.properties +++ b/core/src/main/resources/hudson/model/Run/delete_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=Dz\u0113st \u0161o b\u016Bv\u0113jumu +Delete\ this\ build=DzÄ“st Å¡o bÅ«vÄ“jumu diff --git a/core/src/main/resources/hudson/model/Run/delete_pl.properties b/core/src/main/resources/hudson/model/Run/delete_pl.properties index 12c3de72bbce..79837e504e66 100644 --- a/core/src/main/resources/hudson/model/Run/delete_pl.properties +++ b/core/src/main/resources/hudson/model/Run/delete_pl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=Usu\u0144 to zadanie -delete.build=Usu\u0144 zadanie \u2018{0}\u2019 +Delete\ this\ build=UsuÅ„ to zadanie +delete.build=UsuÅ„ zadanie ‘{0}’ diff --git a/core/src/main/resources/hudson/model/Run/delete_pt_BR.properties b/core/src/main/resources/hudson/model/Run/delete_pt_BR.properties index 5be55014c23a..75f8cf20a497 100644 --- a/core/src/main/resources/hudson/model/Run/delete_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Run/delete_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -delete.build=Apagar a constru\u00E7\u00E3o '{0}' +delete.build=Apagar a construção '{0}' diff --git a/core/src/main/resources/hudson/model/Run/delete_ru.properties b/core/src/main/resources/hudson/model/Run/delete_ru.properties index 97884692b281..206a1736be2f 100644 --- a/core/src/main/resources/hudson/model/Run/delete_ru.properties +++ b/core/src/main/resources/hudson/model/Run/delete_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0431\u043e\u0440\u043a\u0443 +Delete\ this\ build=Удалить Ñборку diff --git a/core/src/main/resources/hudson/model/Run/delete_sk.properties b/core/src/main/resources/hudson/model/Run/delete_sk.properties index aa06e1d85152..0f18168dc949 100644 --- a/core/src/main/resources/hudson/model/Run/delete_sk.properties +++ b/core/src/main/resources/hudson/model/Run/delete_sk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=Odstr\u00E1ni\u0165 beh +Delete\ this\ build=OdstrániÅ¥ beh diff --git a/core/src/main/resources/hudson/model/Run/delete_sl.properties b/core/src/main/resources/hudson/model/Run/delete_sl.properties index 73ec426c8f74..354d93b69a66 100644 --- a/core/src/main/resources/hudson/model/Run/delete_sl.properties +++ b/core/src/main/resources/hudson/model/Run/delete_sl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=Zbri\u0161i prevajanje +Delete\ this\ build=ZbriÅ¡i prevajanje diff --git a/core/src/main/resources/hudson/model/Run/delete_sr.properties b/core/src/main/resources/hudson/model/Run/delete_sr.properties index 50398669a83f..753c1c8b77a4 100644 --- a/core/src/main/resources/hudson/model/Run/delete_sr.properties +++ b/core/src/main/resources/hudson/model/Run/delete_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Delete\ this\ build=\u0423\u043A\u043B\u043E\u043D\u0438 \u043E\u0432\u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 +Delete\ this\ build=Уклони ову изградњу diff --git a/core/src/main/resources/hudson/model/Run/delete_sv_SE.properties b/core/src/main/resources/hudson/model/Run/delete_sv_SE.properties index b30781ab03e9..d5231960016c 100644 --- a/core/src/main/resources/hudson/model/Run/delete_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Run/delete_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=Ta bort det h\u00E4r bygget +Delete\ this\ build=Ta bort det här bygget diff --git a/core/src/main/resources/hudson/model/Run/delete_tr.properties b/core/src/main/resources/hudson/model/Run/delete_tr.properties index 7d135498aaea..0804d6d97f1f 100644 --- a/core/src/main/resources/hudson/model/Run/delete_tr.properties +++ b/core/src/main/resources/hudson/model/Run/delete_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=Bu yap\u0131land\u0131rmay\u0131 sil +Delete\ this\ build=Bu yapılandırmayı sil diff --git a/core/src/main/resources/hudson/model/Run/delete_uk.properties b/core/src/main/resources/hudson/model/Run/delete_uk.properties index 614e191cc991..98aa07369c29 100644 --- a/core/src/main/resources/hudson/model/Run/delete_uk.properties +++ b/core/src/main/resources/hudson/model/Run/delete_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438 \u0437\u0431\u0456\u0440\u043A\u0443 +Delete\ this\ build=Видалити збірку diff --git a/core/src/main/resources/hudson/model/Run/delete_zh_TW.properties b/core/src/main/resources/hudson/model/Run/delete_zh_TW.properties index 7a82a22dab50..d38a2bedffcb 100644 --- a/core/src/main/resources/hudson/model/Run/delete_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Run/delete_zh_TW.properties @@ -19,5 +19,5 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=\u522a\u9664\u5efa\u7f6e -delete.build=\u522a\u9664\u5efa\u7f6e\u300c{0}\u300d +Delete\ this\ build=刪除建置 +delete.build=刪除建置「{0}〠diff --git a/core/src/main/resources/hudson/model/Run/logKeep_bg.properties b/core/src/main/resources/hudson/model/Run/logKeep_bg.properties index bce91f780be5..b38bb956b76d 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_bg.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Keep\ this\ build\ forever=\ - \u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u0435\u043d\u043e\u0442\u043e \u0437\u0430\u0432\u0438\u043d\u0430\u0433\u0438 + Запазване на изграденото завинаги Don''t\ keep\ this\ build\ forever=\ - \u0418\u0437\u0433\u0440\u0430\u0434\u0435\u043d\u043e\u0442\u043e \u0434\u0430 \u043d\u0435 \u0441\u0438 \u043f\u0430\u0437\u0438 \u0437\u0430\u0432\u0438\u043d\u0430\u0433\u0438 + Изграденото да не Ñи пази завинаги diff --git a/core/src/main/resources/hudson/model/Run/logKeep_cs.properties b/core/src/main/resources/hudson/model/Run/logKeep_cs.properties index 27dbe97bbed1..5047af874ad8 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_cs.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Keep\ this\ build\ forever=Zachovat toto sestaven\u00ED nav\u017Edy +Keep\ this\ build\ forever=Zachovat toto sestavení navždy diff --git a/core/src/main/resources/hudson/model/Run/logKeep_es.properties b/core/src/main/resources/hudson/model/Run/logKeep_es.properties index 08637469ba19..23617a22bad8 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_es.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_es.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Don''t\ keep\ this\ build\ forever=No conservar esta ejecución. -Keep\ this\ build\ forever=Conservar esta ejecuci\u00F3n para siempre +Don''t\ keep\ this\ build\ forever=No conservar esta ejecución. +Keep\ this\ build\ forever=Conservar esta ejecución para siempre diff --git a/core/src/main/resources/hudson/model/Run/logKeep_fi.properties b/core/src/main/resources/hudson/model/Run/logKeep_fi.properties index deb16ce21aad..65eed16a07b5 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_fi.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_fi.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Don''t\ keep\ this\ build\ forever=\u00C4l\u00E4 s\u00E4\u00E4st\u00E4 t\u00E4t\u00E4 k\u00E4\u00E4nn\u00F6st\u00E4 ikuisesti -Keep\ this\ build\ forever=S\u00E4ilyt\u00E4 t\u00E4m\u00E4 k\u00E4\u00E4nn\u00F6s ikuisesti +Don''t\ keep\ this\ build\ forever=Älä säästä tätä käännöstä ikuisesti +Keep\ this\ build\ forever=Säilytä tämä käännös ikuisesti diff --git a/core/src/main/resources/hudson/model/Run/logKeep_he.properties b/core/src/main/resources/hudson/model/Run/logKeep_he.properties index efa6560e2d31..d52f37ff5916 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_he.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Keep\ this\ build\ forever=\u05E9\u05DE\u05D5\u05E8 \u05E2\u05DC \u05D1\u05E0\u05D9\u05D4 \u05D6\u05D5 \u05DC\u05EA\u05DE\u05D9\u05D3 +Keep\ this\ build\ forever=שמור על בניה זו לתמיד diff --git a/core/src/main/resources/hudson/model/Run/logKeep_hu.properties b/core/src/main/resources/hudson/model/Run/logKeep_hu.properties index 47bc23046db5..bbe877a2b457 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_hu.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_hu.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Keep\ this\ build\ forever=\u00C9p\u00EDtm\u00E9ny megtart\u00E1sa \u00F6r\u00F6kre +Keep\ this\ build\ forever=Építmény megtartása örökre diff --git a/core/src/main/resources/hudson/model/Run/logKeep_it.properties b/core/src/main/resources/hudson/model/Run/logKeep_it.properties index 94501490de43..a332b8bd7e0c 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_it.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/Run/logKeep_ja.properties b/core/src/main/resources/hudson/model/Run/logKeep_ja.properties index 1ad1d49f6fc1..6235ee9d4361 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_ja.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Don't\ keep\ this\ build\ forever=\u30d3\u30eb\u30c9\u3092\u4fdd\u5b58\u3057\u306a\u3044 -Keep\ this\ build\ forever=\u30d3\u30eb\u30c9\u3092\u4fdd\u5b58 +Don't\ keep\ this\ build\ forever=ビルドをä¿å­˜ã—ãªã„ +Keep\ this\ build\ forever=ビルドをä¿å­˜ diff --git a/core/src/main/resources/hudson/model/Run/logKeep_ko.properties b/core/src/main/resources/hudson/model/Run/logKeep_ko.properties index 92d4d84e629d..e2b6e5264f3c 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_ko.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_ko.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Keep\ this\ build\ forever=\uC774\uBC88 \uBE4C\uB4DC \uC601\uAD6C \uBCF4\uAD00\uD558\uAE30 +Keep\ this\ build\ forever=ì´ë²ˆ 빌드 ì˜êµ¬ 보관하기 diff --git a/core/src/main/resources/hudson/model/Run/logKeep_lt.properties b/core/src/main/resources/hudson/model/Run/logKeep_lt.properties index f0ee3694195a..d52ad681878a 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_lt.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_lt.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Keep\ this\ build\ forever=Palikti \u0161it\u0105 darb\u0105 am\u017Einai +Keep\ this\ build\ forever=Palikti Å¡itÄ… darbÄ… amžinai diff --git a/core/src/main/resources/hudson/model/Run/logKeep_lv.properties b/core/src/main/resources/hudson/model/Run/logKeep_lv.properties index 8f4b761fce93..cb5cf9ffffa2 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_lv.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_lv.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Don''t\ keep\ this\ build\ forever=Nesaglab\u0101t \u0161o b\u016Bv\u0113jumu m\u016B\u017E\u012Bgi -Keep\ this\ build\ forever=Glab\u0101t \u0161o b\u016Bv\u0113jumu visu laiku +Don''t\ keep\ this\ build\ forever=NesaglabÄt Å¡o bÅ«vÄ“jumu mūžīgi +Keep\ this\ build\ forever=GlabÄt Å¡o bÅ«vÄ“jumu visu laiku diff --git a/core/src/main/resources/hudson/model/Run/logKeep_pt_BR.properties b/core/src/main/resources/hudson/model/Run/logKeep_pt_BR.properties index 094c6a754db3..fc36ed959bbf 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_pt_BR.properties @@ -21,5 +21,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Keep\ this\ build\ forever=Deixar essa constru\u00E7\u00E3o como permanente -Don''t\ keep\ this\ build\ forever= N\u00E3o deixar essa constru\u00E7\u00E3o como permanente +Keep\ this\ build\ forever=Deixar essa construção como permanente +Don''t\ keep\ this\ build\ forever= Não deixar essa construção como permanente diff --git a/core/src/main/resources/hudson/model/Run/logKeep_pt_PT.properties b/core/src/main/resources/hudson/model/Run/logKeep_pt_PT.properties index bb2e75f3bb34..402568647a0e 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_pt_PT.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_pt_PT.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Keep\ this\ build\ forever=Mantenha esta f\u00E1brica para sempre +Keep\ this\ build\ forever=Mantenha esta fábrica para sempre diff --git a/core/src/main/resources/hudson/model/Run/logKeep_ru.properties b/core/src/main/resources/hudson/model/Run/logKeep_ru.properties index 21e246fddcea..8e9f245bfc86 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_ru.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Don't\ keep\ this\ build\ forever=\u041d\u0435 \u0445\u0440\u0430\u043d\u0438\u0442\u044c \u044d\u0442\u0443 \u0441\u0431\u043e\u0440\u043a\u0443 \u0432\u0435\u0447\u043d\u043e -Keep\ this\ build\ forever=\u0425\u0440\u0430\u043d\u0438\u0442\u044c \u044d\u0442\u0443 \u0441\u0431\u043e\u0440\u043a\u0443 \u0432\u0435\u0447\u043d\u043e +Don't\ keep\ this\ build\ forever=Ðе хранить Ñту Ñборку вечно +Keep\ this\ build\ forever=Хранить Ñту Ñборку вечно diff --git a/core/src/main/resources/hudson/model/Run/logKeep_sk.properties b/core/src/main/resources/hudson/model/Run/logKeep_sk.properties index 210d012cffe3..9ab41c8aa9ba 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_sk.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_sk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Don''t\ keep\ this\ build\ forever=Neponechaj zostavenie nav\u017Edy -Keep\ this\ build\ forever=Ponecha\u0165 beh nav\u017Edy +Don''t\ keep\ this\ build\ forever=Neponechaj zostavenie navždy +Keep\ this\ build\ forever=PonechaÅ¥ beh navždy diff --git a/core/src/main/resources/hudson/model/Run/logKeep_sr.properties b/core/src/main/resources/hudson/model/Run/logKeep_sr.properties index 9c069ff8dff4..276d7aaa95e1 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_sr.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Don't\ keep\ this\ build\ forever=\u041D\u0435\u043C\u043E\u0458 \u0437\u0430\u0434\u0440\u0436\u0430\u0442\u0438 \u043E\u0432\u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 -Keep\ this\ build\ forever=\u0417\u0430\u0434\u0440\u0436\u0438 \u043E\u0432\u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 -Don''t\ keep\ this\ build\ forever=\u041D\u0435\u043C\u043E\u0458 \u0437\u0430\u0434\u0440\u0436\u0430\u0442\u0438 \u043E\u0432\u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 +Don't\ keep\ this\ build\ forever=Ðемој задржати ову изградњу +Keep\ this\ build\ forever=Задржи ову изградњу +Don''t\ keep\ this\ build\ forever=Ðемој задржати ову изградњу diff --git a/core/src/main/resources/hudson/model/Run/logKeep_sv_SE.properties b/core/src/main/resources/hudson/model/Run/logKeep_sv_SE.properties index 2f9d5b2becf4..908d824fc860 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_sv_SE.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Don''t\ keep\ this\ build\ forever=Spara inte bygget f\u00F6r alltid -Keep\ this\ build\ forever=Spara det h\u00E4r bygget f\u00F6r alltid +Don''t\ keep\ this\ build\ forever=Spara inte bygget för alltid +Keep\ this\ build\ forever=Spara det här bygget för alltid diff --git a/core/src/main/resources/hudson/model/Run/logKeep_tr.properties b/core/src/main/resources/hudson/model/Run/logKeep_tr.properties index ad04602c39d0..ebe6878d28cd 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_tr.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Don't\ keep\ this\ build\ forever=Bu yap\u0131land\u0131rmay\u0131 sonsuza kadar tutma -Keep\ this\ build\ forever=Bu yap\u0131land\u0131rmay\u0131 sonsuza kadar tut +Don't\ keep\ this\ build\ forever=Bu yapılandırmayı sonsuza kadar tutma +Keep\ this\ build\ forever=Bu yapılandırmayı sonsuza kadar tut diff --git a/core/src/main/resources/hudson/model/Run/logKeep_uk.properties b/core/src/main/resources/hudson/model/Run/logKeep_uk.properties index a2a871908bcd..62cc3c34051c 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_uk.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_uk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Don''t\ keep\ this\ build\ forever=\u041D\u0435 \u0437\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u0446\u044E \u0437\u0431\u0456\u0440\u043A\u0443 -Keep\ this\ build\ forever=\u0422\u0440\u0438\u043C\u0430\u0442\u0438 \u0446\u044E \u0437\u0431\u0456\u0440\u043A\u0443 +Don''t\ keep\ this\ build\ forever=Ðе зберігати цю збірку +Keep\ this\ build\ forever=Тримати цю збірку diff --git a/core/src/main/resources/hudson/model/Run/logKeep_zh_TW.properties b/core/src/main/resources/hudson/model/Run/logKeep_zh_TW.properties index 3f1b6f397db2..be8090125a8a 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Don't\ keep\ this\ build\ forever=\u4e0d\u8981\u6c38\u4e45\u4fdd\u7559\u6b64\u5efa\u7f6e -Keep\ this\ build\ forever=\u6c38\u4e45\u4fdd\u7559\u6b64\u5efa\u7f6e +Don't\ keep\ this\ build\ forever=ä¸è¦æ°¸ä¹…ä¿ç•™æ­¤å»ºç½® +Keep\ this\ build\ forever=永久ä¿ç•™æ­¤å»ºç½® diff --git a/core/src/main/resources/hudson/model/RunParameterDefinition/config_bg.properties b/core/src/main/resources/hudson/model/RunParameterDefinition/config_bg.properties index 4986260823da..151c3beee389 100644 --- a/core/src/main/resources/hudson/model/RunParameterDefinition/config_bg.properties +++ b/core/src/main/resources/hudson/model/RunParameterDefinition/config_bg.properties @@ -21,18 +21,18 @@ # THE SOFTWARE. Name=\ - \u0418\u043c\u0435 + Име Successful\ Builds\ Only=\ - \u0421\u0430\u043c\u043e \u0443\u0441\u043f\u0435\u0448\u043d\u0438\u0442\u0435 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f + Само уÑпешните Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ Filter=\ - \u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u0435 + Филтриране Stable\ Builds\ Only=\ - \u0421\u0430\u043c\u043e \u0441\u0442\u0430\u0431\u0438\u043b\u043d\u0438\u0442\u0435 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f + Само Ñтабилните Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ Description=\ - \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 + ОпиÑание All\ Builds=\ - \u0412\u0441\u0438\u0447\u043a\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f + Ð’Ñички Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ Completed\ Builds\ Only=\ - \u0421\u0430\u043c\u043e \u0437\u0430\u0432\u044a\u0440\u0448\u0438\u043b\u0438\u0442\u0435 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f + Само завършилите Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ Project=\ - \u041f\u0440\u043e\u0435\u043a\u0442 + Проект diff --git a/core/src/main/resources/hudson/model/RunParameterDefinition/config_es.properties b/core/src/main/resources/hudson/model/RunParameterDefinition/config_es.properties index d09baf053f9b..da56c95222c2 100644 --- a/core/src/main/resources/hudson/model/RunParameterDefinition/config_es.properties +++ b/core/src/main/resources/hudson/model/RunParameterDefinition/config_es.properties @@ -22,4 +22,4 @@ Name=Nombre Project=Proyecto -Description=Descripción +Description=Descripción diff --git a/core/src/main/resources/hudson/model/RunParameterDefinition/config_it.properties b/core/src/main/resources/hudson/model/RunParameterDefinition/config_it.properties index 7f951d808fb7..e4c988b16cf9 100644 --- a/core/src/main/resources/hudson/model/RunParameterDefinition/config_it.properties +++ b/core/src/main/resources/hudson/model/RunParameterDefinition/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/RunParameterDefinition/config_ja.properties b/core/src/main/resources/hudson/model/RunParameterDefinition/config_ja.properties index 3cd6a5ff9df5..c495b677bb29 100644 --- a/core/src/main/resources/hudson/model/RunParameterDefinition/config_ja.properties +++ b/core/src/main/resources/hudson/model/RunParameterDefinition/config_ja.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540d\u524d -Project=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8 -Description=\u8aac\u660e -Filter=\u30d5\u30a3\u30eb\u30bf\u30fc -All\ Builds=\u5168\u30d3\u30eb\u30c9 -Completed\ Builds\ Only=\u5b8c\u4e86\u30d3\u30eb\u30c9\u306e\u307f -Successful\ Builds\ Only=\u6210\u529f\u30d3\u30eb\u30c9\u306e\u307f -Stable\ Builds\ Only=\u5b89\u5b9a\u30d3\u30eb\u30c9\u306e\u307f +Name=åå‰ +Project=プロジェクト +Description=説明 +Filter=フィルター +All\ Builds=全ビルド +Completed\ Builds\ Only=完了ビルドã®ã¿ +Successful\ Builds\ Only=æˆåŠŸãƒ“ルドã®ã¿ +Stable\ Builds\ Only=安定ビルドã®ã¿ diff --git a/core/src/main/resources/hudson/model/RunParameterDefinition/config_pl.properties b/core/src/main/resources/hudson/model/RunParameterDefinition/config_pl.properties index 7b9a58280381..63caf25e501f 100644 --- a/core/src/main/resources/hudson/model/RunParameterDefinition/config_pl.properties +++ b/core/src/main/resources/hudson/model/RunParameterDefinition/config_pl.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. Filter=Filtr -Completed\ Builds\ Only=Tylko zadania zako\u0144czone -Successful\ Builds\ Only=Tylko zadania zako\u0144czone sukcesem +Completed\ Builds\ Only=Tylko zadania zakoÅ„czone +Successful\ Builds\ Only=Tylko zadania zakoÅ„czone sukcesem Project=Projekt Name=Nazwa All\ Builds=Wszystkie zadania diff --git a/core/src/main/resources/hudson/model/RunParameterDefinition/config_pt_BR.properties b/core/src/main/resources/hudson/model/RunParameterDefinition/config_pt_BR.properties index 67adefacfe2f..2755e15cc368 100644 --- a/core/src/main/resources/hudson/model/RunParameterDefinition/config_pt_BR.properties +++ b/core/src/main/resources/hudson/model/RunParameterDefinition/config_pt_BR.properties @@ -22,9 +22,9 @@ Project=Projeto Name=Nome -Description=Descri\u00E7\u00E3o -Successful\ Builds\ Only=Apenas constru\u00E7\u00F5es terminadas com sucesso +Description=Descrição +Successful\ Builds\ Only=Apenas construções terminadas com sucesso Filter=Filtro -Completed\ Builds\ Only=Apenas constru\u00E7\u00F5es terminadas -All\ Builds=Todas as constru\u00E7\u00F5es -Stable\ Builds\ Only=Apenas constru\u00E7\u00F5es est\u00E1veis +Completed\ Builds\ Only=Apenas construções terminadas +All\ Builds=Todas as construções +Stable\ Builds\ Only=Apenas construções estáveis diff --git a/core/src/main/resources/hudson/model/RunParameterDefinition/config_ru.properties b/core/src/main/resources/hudson/model/RunParameterDefinition/config_ru.properties index 46cd35fdf206..c272712aaa4f 100644 --- a/core/src/main/resources/hudson/model/RunParameterDefinition/config_ru.properties +++ b/core/src/main/resources/hudson/model/RunParameterDefinition/config_ru.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Project=\u041F\u0440\u043E\u0435\u043A\u0442 -Description=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 -Completed\ Builds\ Only=\u0422\u043e\u043b\u044c\u043a\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u044b\u0435 \u0441\u0431\u043e\u0440\u043a\u0438 -All\ Builds=\u0412\u0441\u0435 \u0441\u0431\u043e\u0440\u043a\u0438 -Name=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 -Filter=\u0424\u0438\u043b\u044c\u0442\u0440 -Stable\ Builds\ Only=\u0422\u043e\u043b\u044c\u043a\u043e \u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u044b\u0435 \u0441\u0431\u043e\u0440\u043a\u0438 -Successful\ Builds\ Only=\u0422\u043e\u043b\u044c\u043a\u043e \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0435 \u0441\u0431\u043e\u0440\u043a\u0438 \ No newline at end of file +Project=Проект +Description=ОпиÑание +Completed\ Builds\ Only=Только завершенные Ñборки +All\ Builds=Ð’Ñе Ñборки +Name=Ðазвание +Filter=Фильтр +Stable\ Builds\ Only=Только Ñтабильные Ñборки +Successful\ Builds\ Only=Только уÑпешные Ñборки \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/RunParameterDefinition/config_sr.properties b/core/src/main/resources/hudson/model/RunParameterDefinition/config_sr.properties index 0f48747b5adc..3cedd65f98e1 100644 --- a/core/src/main/resources/hudson/model/RunParameterDefinition/config_sr.properties +++ b/core/src/main/resources/hudson/model/RunParameterDefinition/config_sr.properties @@ -1,10 +1,10 @@ # This file is under the MIT License by authors -Name=\u0418\u043C\u0435 -Project=\u041F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 -Description=\u041E\u043F\u0438\u0441 -Filter=\u0424\u0438\u043B\u0442\u0435\u0440 -All\ Builds=\u0421\u0432\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -Completed\ Builds\ Only=\u0421\u0430\u043C\u043E \u0437\u0430\u0432\u0440\u0448\u0435\u043D\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 -Successful\ Builds\ Only=\u0421\u0430\u043C\u043E \u0443\u0441\u043F\u0435\u0448\u043D\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 -Stable\ Builds\ Only=\u0421\u0430\u043C\u043E \u0441\u0442\u0430\u0431\u0438\u043B\u043D\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 +Name=Име +Project=Пројекат +Description=ÐžÐ¿Ð¸Ñ +Filter=Филтер +All\ Builds=Све изградње +Completed\ Builds\ Only=Само завршена изградња +Successful\ Builds\ Only=Само уÑпешна изградња +Stable\ Builds\ Only=Само Ñтабилна изградња diff --git a/core/src/main/resources/hudson/model/RunParameterDefinition/config_zh_TW.properties b/core/src/main/resources/hudson/model/RunParameterDefinition/config_zh_TW.properties index 4edc0ff3da9e..b8766cfb3b2e 100644 --- a/core/src/main/resources/hudson/model/RunParameterDefinition/config_zh_TW.properties +++ b/core/src/main/resources/hudson/model/RunParameterDefinition/config_zh_TW.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540d\u7a31 -Project=\u5c08\u6848 -Description=\u8aaa\u660e -All\ Builds=\u6240\u6709\u5efa\u7f6e -Filter=\u7be9\u9078\u689d\u4ef6 -Successful\ Builds\ Only=\u53ea\u986f\u793a\u6210\u529f\u7684\u5efa\u7f6e -Completed\ Builds\ Only=\u53ea\u986f\u793a\u5df2\u5b8c\u6210\u7684\u5efa\u7f6e -Stable\ Builds\ Only=\u53ea\u986f\u793a\u7a69\u5b9a\u7684\u5efa\u7f6e +Name=å稱 +Project=專案 +Description=說明 +All\ Builds=所有建置 +Filter=篩é¸æ¢ä»¶ +Successful\ Builds\ Only=åªé¡¯ç¤ºæˆåŠŸçš„建置 +Completed\ Builds\ Only=åªé¡¯ç¤ºå·²å®Œæˆçš„建置 +Stable\ Builds\ Only=åªé¡¯ç¤ºç©©å®šçš„建置 diff --git a/core/src/main/resources/hudson/model/Slave/help-launcher_bg.properties b/core/src/main/resources/hudson/model/Slave/help-launcher_bg.properties index 72d83f2ea111..439d6595e21d 100644 --- a/core/src/main/resources/hudson/model/Slave/help-launcher_bg.properties +++ b/core/src/main/resources/hudson/model/Slave/help-launcher_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Controls\ how\ Jenkins\ starts\ this\ agent.=\ - \u041a\u0430\u043a Jenkins \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430 \u0442\u043e\u0437\u0438 \u0430\u0433\u0435\u043d\u0442. + Как Jenkins Ñтартира този агент. diff --git a/core/src/main/resources/hudson/model/Slave/help-launcher_it.properties b/core/src/main/resources/hudson/model/Slave/help-launcher_it.properties index 0fae5302430a..d45e103df343 100644 --- a/core/src/main/resources/hudson/model/Slave/help-launcher_it.properties +++ b/core/src/main/resources/hudson/model/Slave/help-launcher_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,5 +21,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Controls\ how\ Jenkins\ starts\ this\ agent.=Controlla la modalità con cui \ +Controls\ how\ Jenkins\ starts\ this\ agent.=Controlla la modalità con cui \ Jenkins avvia quest''agente. diff --git a/core/src/main/resources/hudson/model/Slave/help-launcher_sr.properties b/core/src/main/resources/hudson/model/Slave/help-launcher_sr.properties index 2e4d562fe1c5..ed87a2fdd92d 100644 --- a/core/src/main/resources/hudson/model/Slave/help-launcher_sr.properties +++ b/core/src/main/resources/hudson/model/Slave/help-launcher_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Controls\ how\ Jenkins\ starts\ this\ agent.=\u041F\u043E\u0434\u0435\u0441\u0438 \u043D\u0430\u0447\u0438\u043D \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0435 \u0430\u0433\u0435\u043D\u0442\u0430 \u043A\u0440\u043E\u0437 Jenkins. +Controls\ how\ Jenkins\ starts\ this\ agent.=ПодеÑи начин покретање агента кроз Jenkins. diff --git a/core/src/main/resources/hudson/model/Slave/help-launcher_zh_TW.properties b/core/src/main/resources/hudson/model/Slave/help-launcher_zh_TW.properties index 2c6136dfee3c..95947d1cc5cf 100644 --- a/core/src/main/resources/hudson/model/Slave/help-launcher_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Slave/help-launcher_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Controls\ how\ Jenkins\ starts\ this\ agent.=\u63a7\u5236 Jenkins \u5982\u4f55\u555f\u52d5\u6b64 Agent\u3002 +Controls\ how\ Jenkins\ starts\ this\ agent.=控制 Jenkins 如何啟動此 Agent。 diff --git a/core/src/main/resources/hudson/model/Slave/help-retentionStrategy_bg.properties b/core/src/main/resources/hudson/model/Slave/help-retentionStrategy_bg.properties index 1a7b19aeffc3..d2afc73ce582 100644 --- a/core/src/main/resources/hudson/model/Slave/help-retentionStrategy_bg.properties +++ b/core/src/main/resources/hudson/model/Slave/help-retentionStrategy_bg.properties @@ -1 +1 @@ -Controls\ when\ Jenkins\ starts\ and\ stops\ this\ agent.=\u0423\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043A\u043E\u0433\u0430 Jenkins \u0432\u043A\u043B\u044E\u0447\u0432\u0430 \u0438 \u0438\u0437\u043A\u043B\u044E\u0447\u0432\u0430 \u0442\u043E\u0437\u0438 \u0430\u0433\u0435\u043D\u0442. +Controls\ when\ Jenkins\ starts\ and\ stops\ this\ agent.=Управление кога Jenkins включва и изключва този агент. diff --git a/core/src/main/resources/hudson/model/Slave/help-retentionStrategy_fr.properties b/core/src/main/resources/hudson/model/Slave/help-retentionStrategy_fr.properties index e933c3604ae8..33f03eb34b0d 100644 --- a/core/src/main/resources/hudson/model/Slave/help-retentionStrategy_fr.properties +++ b/core/src/main/resources/hudson/model/Slave/help-retentionStrategy_fr.properties @@ -1 +1 @@ -Controls\ when\ Jenkins\ starts\ and\ stops\ this\ agent.=Contrôle le moment où Jenkins démarrage et arrête l'agent. +Controls\ when\ Jenkins\ starts\ and\ stops\ this\ agent.=Contrôle le moment où Jenkins démarrage et arrête l'agent. diff --git a/core/src/main/resources/hudson/model/Slave/help-retentionStrategy_ja.properties b/core/src/main/resources/hudson/model/Slave/help-retentionStrategy_ja.properties index d7dca04b455b..5768c4d6c320 100644 --- a/core/src/main/resources/hudson/model/Slave/help-retentionStrategy_ja.properties +++ b/core/src/main/resources/hudson/model/Slave/help-retentionStrategy_ja.properties @@ -1 +1 @@ -Controls\ when\ Jenkins\ starts\ and\ stops\ this\ agent.=\u3044\u3064\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u958B\u59CB\u30FB\u7D42\u4E86\u3059\u308B\u306E\u304B\u9078\u629E\u3057\u307E\u3059\u3002 +Controls\ when\ Jenkins\ starts\ and\ stops\ this\ agent.=ã„ã¤ã‚¨ãƒ¼ã‚¸ã‚§ãƒ³ãƒˆã‚’開始・終了ã™ã‚‹ã®ã‹é¸æŠžã—ã¾ã™ã€‚ diff --git a/core/src/main/resources/hudson/model/Slave/help-retentionStrategy_zh_TW.properties b/core/src/main/resources/hudson/model/Slave/help-retentionStrategy_zh_TW.properties index 3bc0142ca666..ab8b6ba7d9b6 100644 --- a/core/src/main/resources/hudson/model/Slave/help-retentionStrategy_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Slave/help-retentionStrategy_zh_TW.properties @@ -1 +1 @@ -Controls\ when\ Jenkins\ starts\ and\ stops\ this\ agent.=\u63A7\u5236 Jenkins \u4EC0\u9EBC\u6642\u9593\u555F\u52D5\u53CA\u505C\u6B62 Agent\u3002 +Controls\ when\ Jenkins\ starts\ and\ stops\ this\ agent.=控制 Jenkins 什麼時間啟動åŠåœæ­¢ Agent。 diff --git a/core/src/main/resources/hudson/model/StringParameterDefinition/config_bg.properties b/core/src/main/resources/hudson/model/StringParameterDefinition/config_bg.properties index 6f20bc648a92..c09f432455da 100644 --- a/core/src/main/resources/hudson/model/StringParameterDefinition/config_bg.properties +++ b/core/src/main/resources/hudson/model/StringParameterDefinition/config_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Description=\ - \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 + ОпиÑание Name=\ - \u0418\u043c\u0435 + Име Default\ Value=\ - \u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 + Стандартна ÑтойноÑÑ‚ diff --git a/core/src/main/resources/hudson/model/StringParameterDefinition/config_da.properties b/core/src/main/resources/hudson/model/StringParameterDefinition/config_da.properties index 1fa04ed0bbe5..e5f2b128d353 100644 --- a/core/src/main/resources/hudson/model/StringParameterDefinition/config_da.properties +++ b/core/src/main/resources/hudson/model/StringParameterDefinition/config_da.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Name=Navn -Default\ Value=Standardv\u00e6rdi +Default\ Value=Standardværdi Description=Beskrivelse diff --git a/core/src/main/resources/hudson/model/StringParameterDefinition/config_es.properties b/core/src/main/resources/hudson/model/StringParameterDefinition/config_es.properties index 0effa47580d5..b14a3a47ab33 100644 --- a/core/src/main/resources/hudson/model/StringParameterDefinition/config_es.properties +++ b/core/src/main/resources/hudson/model/StringParameterDefinition/config_es.properties @@ -22,4 +22,4 @@ Name=Nombre Default\ Value=Valor por defecto -Description=Descripción +Description=Descripción diff --git a/core/src/main/resources/hudson/model/StringParameterDefinition/config_fr.properties b/core/src/main/resources/hudson/model/StringParameterDefinition/config_fr.properties index f955c9153216..174fa88e16b3 100644 --- a/core/src/main/resources/hudson/model/StringParameterDefinition/config_fr.properties +++ b/core/src/main/resources/hudson/model/StringParameterDefinition/config_fr.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Name=Nom -Default\ Value=Valeur par défaut +Default\ Value=Valeur par défaut Description=Description diff --git a/core/src/main/resources/hudson/model/StringParameterDefinition/config_it.properties b/core/src/main/resources/hudson/model/StringParameterDefinition/config_it.properties index 4fd63b997c52..30693f13e454 100644 --- a/core/src/main/resources/hudson/model/StringParameterDefinition/config_it.properties +++ b/core/src/main/resources/hudson/model/StringParameterDefinition/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/StringParameterDefinition/config_ja.properties b/core/src/main/resources/hudson/model/StringParameterDefinition/config_ja.properties index dc4c2c15b62c..8e6bdbdcea34 100644 --- a/core/src/main/resources/hudson/model/StringParameterDefinition/config_ja.properties +++ b/core/src/main/resources/hudson/model/StringParameterDefinition/config_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540D\u524D -Default\ Value=\u30C7\u30D5\u30A9\u30EB\u30C8\u5024 -Description=\u8AAC\u660E +Name=åå‰ +Default\ Value=デフォルト値 +Description=説明 diff --git a/core/src/main/resources/hudson/model/StringParameterDefinition/config_ko.properties b/core/src/main/resources/hudson/model/StringParameterDefinition/config_ko.properties index 35fc7105afcc..ec996eab2638 100644 --- a/core/src/main/resources/hudson/model/StringParameterDefinition/config_ko.properties +++ b/core/src/main/resources/hudson/model/StringParameterDefinition/config_ko.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=\uC124\uBA85 -Name=\uB9E4\uAC1C\uBCC0\uC218 \uBA85 +Description=설명 +Name=매개변수 명 diff --git a/core/src/main/resources/hudson/model/StringParameterDefinition/config_pl.properties b/core/src/main/resources/hudson/model/StringParameterDefinition/config_pl.properties index f825b49123fa..d597a57cd0dc 100644 --- a/core/src/main/resources/hudson/model/StringParameterDefinition/config_pl.properties +++ b/core/src/main/resources/hudson/model/StringParameterDefinition/config_pl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. Name=Nazwa -Default\ Value=Domy\u015Blna warto\u015B\u0107 +Default\ Value=DomyÅ›lna wartość Description=Opis diff --git a/core/src/main/resources/hudson/model/StringParameterDefinition/config_pt_BR.properties b/core/src/main/resources/hudson/model/StringParameterDefinition/config_pt_BR.properties index 6b4e422d05a8..308b9b70cab7 100644 --- a/core/src/main/resources/hudson/model/StringParameterDefinition/config_pt_BR.properties +++ b/core/src/main/resources/hudson/model/StringParameterDefinition/config_pt_BR.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Name=Nome -Default\ Value=Valor\ padr\u00E3o -Description=Descri\u00E7\u00E3o -Trim\ the\ string=Remover espa\u00E7os em branco da sequ\u00EAncia de caracteres +Default\ Value=Valor\ padrão +Description=Descrição +Trim\ the\ string=Remover espaços em branco da sequência de caracteres diff --git a/core/src/main/resources/hudson/model/StringParameterDefinition/config_ru.properties b/core/src/main/resources/hudson/model/StringParameterDefinition/config_ru.properties index 069c2794cb07..b5ea667eb56a 100644 --- a/core/src/main/resources/hudson/model/StringParameterDefinition/config_ru.properties +++ b/core/src/main/resources/hudson/model/StringParameterDefinition/config_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Default\ Value=\u0417\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u043F\u043E-\u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E -Description=\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 -Name=\u0418\u043C\u044F +Default\ Value=Значение по-умолчанию +Description=ОпиÑание +Name=Ð˜Ð¼Ñ diff --git a/core/src/main/resources/hudson/model/StringParameterDefinition/config_sr.properties b/core/src/main/resources/hudson/model/StringParameterDefinition/config_sr.properties index 93ae61cbc274..eaf799059da7 100644 --- a/core/src/main/resources/hudson/model/StringParameterDefinition/config_sr.properties +++ b/core/src/main/resources/hudson/model/StringParameterDefinition/config_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Name=\u0418\u043C\u0435 -Default\ Value=\u041F\u043E\u0434\u0440\u0430\u0437\u0443\u043C\u0435\u0432\u0430\u043D\u0430 \u0432\u0440\u0435\u0434\u043D\u043E\u0441\u0442 +Name=Име +Default\ Value=Подразумевана вредноÑÑ‚ Description= diff --git a/core/src/main/resources/hudson/model/StringParameterDefinition/config_sv_SE.properties b/core/src/main/resources/hudson/model/StringParameterDefinition/config_sv_SE.properties index 68f7d6cffb63..af09cf78f44a 100644 --- a/core/src/main/resources/hudson/model/StringParameterDefinition/config_sv_SE.properties +++ b/core/src/main/resources/hudson/model/StringParameterDefinition/config_sv_SE.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Default\ Value=F\u00F6rvalt v\u00E4rde +Default\ Value=Förvalt värde Description=Beskrivning Name=Namn diff --git a/core/src/main/resources/hudson/model/StringParameterDefinition/config_zh_TW.properties b/core/src/main/resources/hudson/model/StringParameterDefinition/config_zh_TW.properties index b7b3721a903a..30edc33719c8 100644 --- a/core/src/main/resources/hudson/model/StringParameterDefinition/config_zh_TW.properties +++ b/core/src/main/resources/hudson/model/StringParameterDefinition/config_zh_TW.properties @@ -21,7 +21,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540d\u7a31 -Default\ Value=\u9810\u8a2d\u503c -Description=\u8aaa\u660e -Trim\ the\ string=\u4fee\u526a (Trim) \u5b57\u4e32 +Name=å稱 +Default\ Value=é è¨­å€¼ +Description=說明 +Trim\ the\ string=修剪 (Trim) 字串 diff --git a/core/src/main/resources/hudson/model/TaskAction/log_bg.properties b/core/src/main/resources/hudson/model/TaskAction/log_bg.properties index 3fff418665a7..63ead9a8c646 100644 --- a/core/src/main/resources/hudson/model/TaskAction/log_bg.properties +++ b/core/src/main/resources/hudson/model/TaskAction/log_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Clear\ error\ to\ retry=\ - \u0418\u0437\u0447\u0438\u0441\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0430\u0442\u0430 \u0437\u0430 \u043d\u043e\u0432 \u043e\u043f\u0438\u0442 + ИзчиÑтване на грешката за нов опит diff --git a/core/src/main/resources/hudson/model/TaskAction/log_da.properties b/core/src/main/resources/hudson/model/TaskAction/log_da.properties index ea8d633d999f..5f051124741f 100644 --- a/core/src/main/resources/hudson/model/TaskAction/log_da.properties +++ b/core/src/main/resources/hudson/model/TaskAction/log_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Clear\ error\ to\ retry=Ryd fejl for at fors\u00f8ge igen +Clear\ error\ to\ retry=Ryd fejl for at forsøge igen diff --git a/core/src/main/resources/hudson/model/TaskAction/log_de.properties b/core/src/main/resources/hudson/model/TaskAction/log_de.properties index b94cb5d62f81..458f182ac5e6 100644 --- a/core/src/main/resources/hudson/model/TaskAction/log_de.properties +++ b/core/src/main/resources/hudson/model/TaskAction/log_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Clear\ error\ to\ retry=Fehler löschen und erneut versuchen +Clear\ error\ to\ retry=Fehler löschen und erneut versuchen diff --git a/core/src/main/resources/hudson/model/TaskAction/log_fr.properties b/core/src/main/resources/hudson/model/TaskAction/log_fr.properties index bbe6cd4f7e8d..facf16ab8cf1 100644 --- a/core/src/main/resources/hudson/model/TaskAction/log_fr.properties +++ b/core/src/main/resources/hudson/model/TaskAction/log_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Clear\ error\ to\ retry=Supprimez l''erreur pour réessayer +Clear\ error\ to\ retry=Supprimez l''erreur pour réessayer diff --git a/core/src/main/resources/hudson/model/TaskAction/log_it.properties b/core/src/main/resources/hudson/model/TaskAction/log_it.properties index 9a682c295027..44433221fb9d 100644 --- a/core/src/main/resources/hudson/model/TaskAction/log_it.properties +++ b/core/src/main/resources/hudson/model/TaskAction/log_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/TaskAction/log_ja.properties b/core/src/main/resources/hudson/model/TaskAction/log_ja.properties index 4d551114807a..934062bcb9e2 100644 --- a/core/src/main/resources/hudson/model/TaskAction/log_ja.properties +++ b/core/src/main/resources/hudson/model/TaskAction/log_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Clear\ error\ to\ retry=\u30A8\u30E9\u30FC\u3092\u30AF\u30EA\u30A2\u3057\u3066\u518D\u5B9F\u884C +Clear\ error\ to\ retry=エラーをクリアã—ã¦å†å®Ÿè¡Œ diff --git a/core/src/main/resources/hudson/model/TaskAction/log_ru.properties b/core/src/main/resources/hudson/model/TaskAction/log_ru.properties index 43853cfb1174..fbca79a35137 100644 --- a/core/src/main/resources/hudson/model/TaskAction/log_ru.properties +++ b/core/src/main/resources/hudson/model/TaskAction/log_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Clear\ error\ to\ retry=\u0421\u0431\u0440\u043e\u0441\u0438\u0442\u044c \u043e\u0448\u0438\u0431\u043a\u0443 \u0434\u043b\u044f \u043f\u043e\u0432\u0442\u043e\u0440\u0435\u043d\u0438\u044f +Clear\ error\ to\ retry=СброÑить ошибку Ð´Ð»Ñ Ð¿Ð¾Ð²Ñ‚Ð¾Ñ€ÐµÐ½Ð¸Ñ diff --git a/core/src/main/resources/hudson/model/TaskAction/log_sr.properties b/core/src/main/resources/hudson/model/TaskAction/log_sr.properties index 9f1c8091f3f1..1490694f79d7 100644 --- a/core/src/main/resources/hudson/model/TaskAction/log_sr.properties +++ b/core/src/main/resources/hudson/model/TaskAction/log_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Clear\ error\ to\ retry=\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u0433\u0440\u0435\u0448\u043A\u0443 \u0438 \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0443\u0448\u0430\u0458 +Clear\ error\ to\ retry=Избриши грешку и поново покушај diff --git a/core/src/main/resources/hudson/model/TaskAction/log_tr.properties b/core/src/main/resources/hudson/model/TaskAction/log_tr.properties index f675bbaa96c9..fe12f4c68583 100644 --- a/core/src/main/resources/hudson/model/TaskAction/log_tr.properties +++ b/core/src/main/resources/hudson/model/TaskAction/log_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Clear\ error\ to\ retry=Yeniden denemek i\u00e7in hatay\u0131 temizleyin +Clear\ error\ to\ retry=Yeniden denemek için hatayı temizleyin diff --git a/core/src/main/resources/hudson/model/TaskAction/log_zh_TW.properties b/core/src/main/resources/hudson/model/TaskAction/log_zh_TW.properties index cf231d8bf076..ec6336545b44 100644 --- a/core/src/main/resources/hudson/model/TaskAction/log_zh_TW.properties +++ b/core/src/main/resources/hudson/model/TaskAction/log_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Clear\ error\ to\ retry=\u6E05\u9664\u932F\u8AA4\uFF0C\u91CD\u8A66\u4E00\u6B21 +Clear\ error\ to\ retry=清除錯誤,é‡è©¦ä¸€æ¬¡ diff --git a/core/src/main/resources/hudson/model/TextParameterDefinition/config_bg.properties b/core/src/main/resources/hudson/model/TextParameterDefinition/config_bg.properties index a961f4e69aad..7e179f2e7cb7 100644 --- a/core/src/main/resources/hudson/model/TextParameterDefinition/config_bg.properties +++ b/core/src/main/resources/hudson/model/TextParameterDefinition/config_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Description=\ - \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 + ОпиÑание Default\ Value=\ - \u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 + Стандартна ÑтойноÑÑ‚ Name=\ - \u0418\u043c\u0435 + Име diff --git a/core/src/main/resources/hudson/model/TextParameterDefinition/config_it.properties b/core/src/main/resources/hudson/model/TextParameterDefinition/config_it.properties index 26e1c75e5100..82581f605194 100644 --- a/core/src/main/resources/hudson/model/TextParameterDefinition/config_it.properties +++ b/core/src/main/resources/hudson/model/TextParameterDefinition/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/TextParameterDefinition/config_ja.properties b/core/src/main/resources/hudson/model/TextParameterDefinition/config_ja.properties index daf1fdf36a11..186c4398fd52 100644 --- a/core/src/main/resources/hudson/model/TextParameterDefinition/config_ja.properties +++ b/core/src/main/resources/hudson/model/TextParameterDefinition/config_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540d\u524d -Default\ Value=\u30c7\u30d5\u30a9\u30eb\u30c8\u5024 -Description=\u8aac\u660e +Name=åå‰ +Default\ Value=デフォルト値 +Description=説明 diff --git a/core/src/main/resources/hudson/model/TextParameterDefinition/config_pl.properties b/core/src/main/resources/hudson/model/TextParameterDefinition/config_pl.properties index f825b49123fa..d597a57cd0dc 100644 --- a/core/src/main/resources/hudson/model/TextParameterDefinition/config_pl.properties +++ b/core/src/main/resources/hudson/model/TextParameterDefinition/config_pl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. Name=Nazwa -Default\ Value=Domy\u015Blna warto\u015B\u0107 +Default\ Value=DomyÅ›lna wartość Description=Opis diff --git a/core/src/main/resources/hudson/model/TextParameterDefinition/config_pt_BR.properties b/core/src/main/resources/hudson/model/TextParameterDefinition/config_pt_BR.properties index 785e0866b8d5..8aa0903aba7b 100644 --- a/core/src/main/resources/hudson/model/TextParameterDefinition/config_pt_BR.properties +++ b/core/src/main/resources/hudson/model/TextParameterDefinition/config_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=Descri\u00e7\u00e3o -Default\ Value=Valor padr\u00e3o +Description=Descrição +Default\ Value=Valor padrão Name=Nome diff --git a/core/src/main/resources/hudson/model/TextParameterDefinition/config_sr.properties b/core/src/main/resources/hudson/model/TextParameterDefinition/config_sr.properties index cf61857320cd..e9cb15bff723 100644 --- a/core/src/main/resources/hudson/model/TextParameterDefinition/config_sr.properties +++ b/core/src/main/resources/hudson/model/TextParameterDefinition/config_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Name=\u0418\u043C\u0435 -Default\ Value=\u041F\u043E\u0434\u0440\u0430\u0437\u0443\u043C\u0435\u0432\u0430\u043D\u0430 \u0432\u0440\u0435\u0434\u043D\u043E\u0441\u0442 -Description=\u041E\u043F\u0438\u0441 +Name=Име +Default\ Value=Подразумевана вредноÑÑ‚ +Description=ÐžÐ¿Ð¸Ñ diff --git a/core/src/main/resources/hudson/model/TextParameterDefinition/config_zh_TW.properties b/core/src/main/resources/hudson/model/TextParameterDefinition/config_zh_TW.properties index a64f68980c41..cfb6abc56e62 100644 --- a/core/src/main/resources/hudson/model/TextParameterDefinition/config_zh_TW.properties +++ b/core/src/main/resources/hudson/model/TextParameterDefinition/config_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540d\u7a31 -Default\ Value=\u9810\u8a2d\u503c -Description=\u8aaa\u660e +Name=å稱 +Default\ Value=é è¨­å€¼ +Description=說明 diff --git a/core/src/main/resources/hudson/model/TimeZoneProperty/config_it.properties b/core/src/main/resources/hudson/model/TimeZoneProperty/config_it.properties index e3b8fbada0a1..dd8664b821bc 100644 --- a/core/src/main/resources/hudson/model/TimeZoneProperty/config_it.properties +++ b/core/src/main/resources/hudson/model/TimeZoneProperty/config_it.properties @@ -1,5 +1,5 @@ # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/TimeZoneProperty/config_ja.properties b/core/src/main/resources/hudson/model/TimeZoneProperty/config_ja.properties index cefc86cfd784..9a2e6c2da365 100644 --- a/core/src/main/resources/hudson/model/TimeZoneProperty/config_ja.properties +++ b/core/src/main/resources/hudson/model/TimeZoneProperty/config_ja.properties @@ -19,4 +19,4 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=\u30bf\u30a4\u30e0\u30be\u30fc\u30f3 +title=タイムゾーン diff --git a/core/src/main/resources/hudson/model/TimeZoneProperty/config_pt_BR.properties b/core/src/main/resources/hudson/model/TimeZoneProperty/config_pt_BR.properties index 5b2fb4f9533f..69165e681fc9 100644 --- a/core/src/main/resources/hudson/model/TimeZoneProperty/config_pt_BR.properties +++ b/core/src/main/resources/hudson/model/TimeZoneProperty/config_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=Fuso hor\u00E1rio +title=Fuso horário diff --git a/core/src/main/resources/hudson/model/TimeZoneProperty/config_zh_TW.properties b/core/src/main/resources/hudson/model/TimeZoneProperty/config_zh_TW.properties index 3ba2475a9d58..a35c89f565ff 100644 --- a/core/src/main/resources/hudson/model/TimeZoneProperty/config_zh_TW.properties +++ b/core/src/main/resources/hudson/model/TimeZoneProperty/config_zh_TW.properties @@ -17,4 +17,4 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=\u6642\u5340 +title=æ™‚å€ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Failure/status_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Failure/status_it.properties index a3e6e6a0477c..fd3dd0abf5a6 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Failure/status_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Failure/status_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Failure/status_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Failure/status_zh_TW.properties index bfd9d733b13e..43340f9c44ba 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Failure/status_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Failure/status_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Failure=\u5931\u6557 -Details=\u8a73\u60c5 +Failure=失敗 +Details=詳情 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Pending/status_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Pending/status_it.properties index a45baf2bae61..99bdcc8ef75c 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Pending/status_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Pending/status_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Pending/status_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Pending/status_zh_TW.properties index 0c9453a9e5a3..c044310c8f23 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Pending/status_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Pending/status_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=\u64f1\u7f6e +Pending=擱置 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Running/status_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Running/status_it.properties index 9f405f73005b..d0985c3cd85b 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Running/status_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Running/status_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Running/status_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Running/status_zh_TW.properties index 6aa7185d0da3..a52b9ebda3b1 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Running/status_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Running/status_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Running=\u6b63\u5728\u57f7\u884c +Running=正在執行 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Success/status_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Success/status_it.properties index 01fc633d57f5..7485cb4de518 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Success/status_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Success/status_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Success/status_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Success/status_zh_TW.properties index c16c6d08ca22..696fa5dcea96 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Success/status_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/Success/status_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Success=\u6210\u529f +Success=æˆåŠŸ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/row_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/row_it.properties index aff647a5a6fc..8f0b28e15b74 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/row_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/row_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/row_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/row_pl.properties index ea99c2da3af4..921fe95eecef 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/row_pl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/row_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Loading\ plugin\ extensions=\u0141adowanie wtyczki +Loading\ plugin\ extensions=Åadowanie wtyczki diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/row_pt_BR.properties b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/row_pt_BR.properties index d9293f548a38..619cc778edb7 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/row_pt_BR.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/row_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Loading\ plugin\ extensions=Carregando\ extens\u00F5es\ plug\u00E1veis +Loading\ plugin\ extensions=Carregando\ extensões\ plugáveis diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/row_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/row_zh_TW.properties index 81a338cdd4ff..b5b4452210ca 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/row_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CompleteBatchJob/row_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Loading\ plugin\ extensions=\u6b63\u5728\u8f09\u5165\u5916\u639b\u7a0b\u5f0f +Loading\ plugin\ extensions=æ­£åœ¨è¼‰å…¥å¤–æŽ›ç¨‹å¼ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_bg.properties index 8cb1375a9d08..907d818d4f5f 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_bg.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Preparation=\ - \u041f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 + Подготовка diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_cs.properties index 3c042d61dc40..9299eca808cd 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_cs.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preparation=P\u0159\u00EDprava +Preparation=Příprava diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_es.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_es.properties index 8398bb9a52fc..a8b6a75ee4aa 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_es.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preparation=Preaparaci\u00F3n +Preparation=Preaparación diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_es_AR.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_es_AR.properties index 38e48c832107..c4d0c30e66da 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_es_AR.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_es_AR.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Preparation=Preparaci\u00F3n +Preparation=Preparación diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_fr.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_fr.properties index 5f169d778c57..dfd2332a9a83 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_fr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preparation=Préparation +Preparation=Préparation diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_he.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_he.properties index 99871ec9eccd..b9079a0ef3dd 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_he.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_he.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preparation=\u05D4\u05DB\u05E0\u05D5\u05EA +Preparation=הכנות diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_hu.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_hu.properties index 858d3ccad0ed..6188fcc0ee7d 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_hu.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preparation=El\u0151k\u00E9sz\u00EDt\u00E9s +Preparation=ElÅ‘készítés diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_it.properties index f82354c99dc3..e7096c2cb612 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_ja.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_ja.properties index 331b64a9d422..2d13c8b2dc97 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_ja.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preparation=\u6e96\u5099 +Preparation=準備 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_ko.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_ko.properties index a4acde497314..cf0d7409d003 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_ko.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preparation=\uC900\uBE44 +Preparation=준비 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_lv.properties index 78a0a8743400..f87d4bb90e88 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_lv.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preparation=Sagatavo\u0161an\u0101s +Preparation=SagatavoÅ¡anÄs diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pt_BR.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pt_BR.properties index 1d6cbbe00b42..244847f90e4c 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pt_BR.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preparation=Prepara\u00E7\u00E3o +Preparation=Preparação diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_ru.properties index b4bf19504e6c..ad520df2e2e9 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preparation=\u041F\u043E\u0434\u0433\u043E\u0442\u043E\u0432\u043A\u0430 +Preparation=Подготовка diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sk.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sk.properties index bf1846bf8bef..9cec8639b34e 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sk.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Preparation=Pr\u00EDprava +Preparation=Príprava diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sr.properties index 05cfddd60fb4..7a21753bc688 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Preparation=\u041F\u0440\u0438\u043F\u0440\u0435\u043C\u0430\u045A\u0435 +Preparation=Припремање diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sv_SE.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sv_SE.properties index 5deed18ea65a..515d4ded5b0a 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sv_SE.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preparation=F\u00F6rberedelser +Preparation=Förberedelser diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_tr.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_tr.properties index 5271936d4ece..3e48d1933122 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_tr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preparation=Haz\u0131rl\u0131k +Preparation=Hazırlık diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_uk.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_uk.properties index 83bb9d3cd2ec..9dea61441aac 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_uk.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preparation=\u041F\u0456\u0434\u0433\u043E\u0442\u043E\u0432\u043A\u0430 +Preparation=Підготовка diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_zh_TW.properties index 14123332de72..2d6bd1d9b409 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preparation=\u6E96\u5099\u9805\u76EE +Preparation=準備項目 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/description_pt_BR.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/description_pt_BR.properties index 290d1175dca1..41a984e8d327 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/description_pt_BR.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/description_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Quando uma nova vers\u00E3o do Jenkins for liberada, isto informa administradores sobre isso. +blurb=Quando uma nova versão do Jenkins for liberada, isto informa administradores sobre isso. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/description_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/description_zh_TW.properties index bdd38ec80afa..adb746f0e60d 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/description_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/description_zh_TW.properties @@ -1 +1 @@ -blurb=\u7576 Jenkins \u6709\u65b0\u7248\u672c\u767c\u4f48\u6642\u901a\u77e5\u7ba1\u7406\u54e1\u3002 +blurb=當 Jenkins 有新版本發佈時通知管ç†å“¡ã€‚ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_bg.properties index 5c76d4878eaa..7678cd0de168 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_bg.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_bg.properties @@ -20,17 +20,17 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -UpgradeProgress=\u0418\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430 \u0441\u0435 \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043a\u044a\u043c Jenkins {0}. +UpgradeProgress=ИзпълнÑва Ñе обновÑване към Jenkins {0}. Retry=\ - \u041d\u043e\u0432 \u043e\u043f\u0438\u0442 + Ðов опит UpgradeComplete=\ - \u041e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435\u0442\u043e \u043a\u044a\u043c \u043d\u043e\u0432\u0430\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044f Jenkins {0} \u043f\u0440\u0438\u043a\u043b\u044e\u0447\u0438. \u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0442\u0435. -UpgradeFailed=\u041d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043a\u044a\u043c Jenkins {0}: {1}. + ОбновÑването към новата верÑÐ¸Ñ Jenkins {0} приключи. ТрÑбва да реÑтартирате. +UpgradeFailed=ÐеуÑпешно обновÑване към Jenkins {0}: {1}. NewVersionAvailable=\ - \u041d\u043e\u0432\u0430\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430 Jenkins ({0}) \u0435 \u043d\u0430\u043b\u0438\u0447\u043d\u0430 \u0437\u0430 \u0438\u0437\u0442\u0435\u0433\u043b\u044f\u043d\u0435\ - (\u0441\u043f\u0438\u0441\u044a\u043a \u0441 \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435). + Ðовата верÑÐ¸Ñ Ð½Ð° Jenkins ({0}) е налична за изтеглÑне\ + (ÑпиÑък Ñ Ð¿Ñ€Ð¾Ð¼ÐµÐ½Ð¸Ñ‚Ðµ). Or\ Upgrade\ Automatically=\ - \u0418\u043b\u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 + Или автоматично обновÑване UpgradeCompleteRestartNotSupported=\ - \u041e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435\u0442\u043e \u043a\u044a\u043c \u043d\u043e\u0432\u0430\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044f Jenkins {0} \u043f\u0440\u0438\u043a\u043b\u044e\u0447\u0438. \u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0442\u0435. + ОбновÑването към новата верÑÐ¸Ñ Jenkins {0} приключи. ТрÑбва да реÑтартирате. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_cs.properties index 2fbdd8a13f9d..9c640573b145 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_cs.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_cs.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewVersionAvailable=Nov\u00E1 verze Jenkins-u ({0}) je k dispozici ke sta\u017Een\u00ED (changelog). +NewVersionAvailable=Nová verze Jenkins-u ({0}) je k dispozici ke stažení (changelog). Or\ Upgrade\ Automatically=Nebo Upgradovat Automaticky -UpgradeComplete=Upgrade na Jenkinse {0} je hotov, \u010Dek\u00E1 na restart. -UpgradeCompleteRestartNotSupported=Upgrade na Jenkinse {0} je hotov, \u010Dek\u00E1 na restart. +UpgradeComplete=Upgrade na Jenkinse {0} je hotov, Äeká na restart. +UpgradeCompleteRestartNotSupported=Upgrade na Jenkinse {0} je hotov, Äeká na restart. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_da.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_da.properties index d23b6008575b..f27d5edf1290 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_da.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_da.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -UpgradeComplete=Opdatering til Jenkins {0} er fuldf\u00f8rt, afventer genstart. -UpgradeCompleteRestartNotSupported=Opdatering til Jenkins {0} er fuldf\u00f8rt, afventer genstart. +UpgradeComplete=Opdatering til Jenkins {0} er fuldført, afventer genstart. +UpgradeCompleteRestartNotSupported=Opdatering til Jenkins {0} er fuldført, afventer genstart. UpgradeProgress=Opdatering til Jenkins {0} er i gang eller er fejlet. Or\ Upgrade\ Automatically=Eller opdater automatisk -NewVersionAvailable=En ny version af Jenkins ({0}) er tilg\u00e6ngelig til hentning \ +NewVersionAvailable=En ny version af Jenkins ({0}) er tilgængelig til hentning \ (changelog). diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_es.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_es.properties index 77a67a82527e..eecaee3ff01f 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_es.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_es.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewVersionAvailable=Hay una nueva versi\u00f3n de Jenkins disponible ({0}). descargar (listado de cambios). -Or\ Upgrade\ Automatically=O actualizar autom\u00e1ticamente -UpgradeComplete=La actualizaci\u00f3n a Jenkins {0} se ha completado, esperando para reiniciar. -UpgradeCompleteRestartNotSupported=La actualizaci\u00f3n a Jenkins {0} se ha completado, esperando para reiniciar. -UpgradeProgress=La actualizaci\u00f3n a Jenkins {0} est\u00e1 en ejecuci\u00f3n o ha fallado. +NewVersionAvailable=Hay una nueva versión de Jenkins disponible ({0}). descargar (listado de cambios). +Or\ Upgrade\ Automatically=O actualizar automáticamente +UpgradeComplete=La actualización a Jenkins {0} se ha completado, esperando para reiniciar. +UpgradeCompleteRestartNotSupported=La actualización a Jenkins {0} se ha completado, esperando para reiniciar. +UpgradeProgress=La actualización a Jenkins {0} está en ejecución o ha fallado. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_fr.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_fr.properties index df31af25d9ee..623d483bcdd6 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_fr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_fr.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. NewVersionAvailable=Une nouvelle version de Jenkins ({0}) est disponible (changelog). -Or\ Upgrade\ Automatically=Ou mettre \u00E0 jour automatiquement -UpgradeProgress=Mise \u00E0 jour vers Jenkins {0} est en cours ou en \u00E9chec. -UpgradeComplete=La mise \u00E0 jour de Jenkins en {0} est termin\u00E9e, en attente de red\u00E9marrage. -UpgradeCompleteRestartNotSupported=La mise \u00E0 jour de Jenkins en {0} est termin\u00E9e, en attente de red\u00E9marrage. +Or\ Upgrade\ Automatically=Ou mettre à jour automatiquement +UpgradeProgress=Mise à jour vers Jenkins {0} est en cours ou en échec. +UpgradeComplete=La mise à jour de Jenkins en {0} est terminée, en attente de redémarrage. +UpgradeCompleteRestartNotSupported=La mise à jour de Jenkins en {0} est terminée, en attente de redémarrage. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_hu.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_hu.properties index 1f781852b2c1..0d5a5e2f996e 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_hu.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_hu.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewVersionAvailable=A Jenkins \u00FAj verzi\u00F3ja ({0}) el\u00E9rhet\u0151 let\u00F6lt\u00E9sre (v\u00E1ltoz\u00E1sok). -Or\ Upgrade\ Automatically=Vagy friss\u00EDtsen automatikusan +NewVersionAvailable=A Jenkins új verziója ({0}) elérhetÅ‘ letöltésre (változások). +Or\ Upgrade\ Automatically=Vagy frissítsen automatikusan diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_it.properties index 9334d02ba50b..236f3aca1bbd 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,15 +21,15 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewVersionAvailable=È disponibile per il download una \ +NewVersionAvailable=È disponibile per il download una \ nuova versione di Jenkins ({0}) (log delle \ modifiche). Or\ Upgrade\ Automatically=O esegui l''aggiornamento automaticamente Retry=Riprova -UpgradeComplete=L''aggiornamento a Jenkins {0} è stato completato, in \ +UpgradeComplete=L''aggiornamento a Jenkins {0} è stato completato, in \ attesa del riavvio. -UpgradeCompleteRestartNotSupported=L''aggiornamento a Jenkins {0} è stato \ +UpgradeCompleteRestartNotSupported=L''aggiornamento a Jenkins {0} è stato \ completato, in attesa del riavvio. -UpgradeFailed=L''aggiornamento a Jenkins {0} non è riuscito: \ +UpgradeFailed=L''aggiornamento a Jenkins {0} non è riuscito: \ {1}. UpgradeProgress=Aggiornamento a Jenkins {0} in corso. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ja.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ja.properties index 3f32d0544b5d..587e8cfc9597 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ja.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewVersionAvailable=Jenkins\u306E\u65B0\u3057\u3044\u30D0\u30FC\u30B8\u30E7\u30F3({0})\u3092\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9\u3067\u304D\u307E\u3059 (\u5909\u66F4\u5C65\u6B74)\u3002 -Or\ Upgrade\ Automatically=\u81EA\u52D5\u3067\u30A2\u30C3\u30D7\u30B0\u30EC\u30FC\u30C9 -UpgradeComplete=Jenkins {0} \u3078\u306E\u30A2\u30C3\u30D7\u30B0\u30EC\u30FC\u30C9\u306F\u5B8C\u4E86\u3057\u307E\u3057\u305F\u3002\u518D\u8D77\u52D5\u5F85\u3061\u3067\u3059\u3002 -UpgradeProgress=Jenkins {0}\u3078\u306E\u30A2\u30C3\u30D7\u30B0\u30EC\u30FC\u30C9\u306F\u5B9F\u884C\u4E2D\u304B\u3001\u5931\u6557\u3057\u307E\u3057\u305F\u3002 +NewVersionAvailable=Jenkinsã®æ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³({0})をダウンロードã§ãã¾ã™ (変更履歴)。 +Or\ Upgrade\ Automatically=自動ã§ã‚¢ãƒƒãƒ—グレード +UpgradeComplete=Jenkins {0} ã¸ã®ã‚¢ãƒƒãƒ—グレードã¯å®Œäº†ã—ã¾ã—ãŸã€‚å†èµ·å‹•å¾…ã¡ã§ã™ã€‚ +UpgradeProgress=Jenkins {0}ã¸ã®ã‚¢ãƒƒãƒ—グレードã¯å®Ÿè¡Œä¸­ã‹ã€å¤±æ•—ã—ã¾ã—ãŸã€‚ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ko.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ko.properties index d7d6899922a4..257ac35fe577 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ko.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ko.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewVersionAvailable=Jenkins \uC2E0\uADDC\uBC84\uC804({0})\uC744 \uC5EC\uAE30\uC11C \uBC1B\uC744 \uC218 \uC788\uC2B5\uB2C8\uB2E4.(\uBCC0\uACBD\uC0AC\uD56D). -Or\ Upgrade\ Automatically=\uB610\uB294 \uC790\uB3D9 \uC5C5\uADF8\uB808\uC774\uB4DC +NewVersionAvailable=Jenkins 신규버전({0})ì„ ì—¬ê¸°ì„œ ë°›ì„ ìˆ˜ 있습니다.(변경사항). +Or\ Upgrade\ Automatically=ë˜ëŠ” ìžë™ 업그레ì´ë“œ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_lt.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_lt.properties index 09a40375adf3..fff930a3792a 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_lt.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_lt.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -NewVersionAvailable=Galima parsisi\u0173sti nauj\u0105 ({0}) Jenkins versij\u0105. (pakeitimai). -Or\ Upgrade\ Automatically=Parsi\u0173sti automati\u0161kai +NewVersionAvailable=Galima parsisiųsti naujÄ… ({0}) Jenkins versijÄ…. (pakeitimai). +Or\ Upgrade\ Automatically=Parsiųsti automatiÅ¡kai diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_lv.properties index 77c8207456cb..abcb68978770 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_lv.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_lv.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewVersionAvailable=Jauna Jenkins ({0}) versija ir pieejama lejupl\u0101dei (izmai\u0146as). -Or\ Upgrade\ Automatically=Vai atjaunin\u0101t autom\u0101tiski -UpgradeComplete=Atjaunin\u0101s\u0101na uz Jenkins {0} ir pabeigta; gaidu p\u0101rstart\u0113\u0161anos. -UpgradeCompleteRestartNotSupported=Atjaunin\u0101s\u0101na uz Jenkins {0} ir pabeigta; gaidu p\u0101rstart\u0113\u0161anos. +NewVersionAvailable=Jauna Jenkins ({0}) versija ir pieejama lejuplÄdei (izmaiņas). +Or\ Upgrade\ Automatically=Vai atjauninÄt automÄtiski +UpgradeComplete=AtjauninÄsÄna uz Jenkins {0} ir pabeigta; gaidu pÄrstartÄ“Å¡anos. +UpgradeCompleteRestartNotSupported=AtjauninÄsÄna uz Jenkins {0} ir pabeigta; gaidu pÄrstartÄ“Å¡anos. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_nb_NO.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_nb_NO.properties index c5cac2d1bf59..bdfa68dc3d1b 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_nb_NO.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_nb_NO.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewVersionAvailable=En ny versjon av Jenkins ({0}) er n\u00E5 tilgjengelig (Endringer). +NewVersionAvailable=En ny versjon av Jenkins ({0}) er nÃ¥ tilgjengelig (Endringer). diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pl.properties index 5793e7f5da9f..9d80b6e270e3 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pl.properties @@ -19,7 +19,7 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewVersionAvailable=Nowa wersja Jenkinsa ({0}) jest dost\u0119pna do pobrania (historia zmian). +NewVersionAvailable=Nowa wersja Jenkinsa ({0}) jest dostÄ™pna do pobrania (historia zmian). Or\ Upgrade\ Automatically=Uaktualnij automatycznie -UpgradeCompleteRestartNotSupported=Aktualizacja Jenkinsa do wersji {0} zako\u0144czy\u0142a si\u0119 pomy\u015Blnie, oczekiwanie na ponowne uruchomienie. -UpgradeProgress=Aktualizacja Jenkinsa do wersji {0} trwa lub nie powiod\u0142a si\u0119. +UpgradeCompleteRestartNotSupported=Aktualizacja Jenkinsa do wersji {0} zakoÅ„czyÅ‚a siÄ™ pomyÅ›lnie, oczekiwanie na ponowne uruchomienie. +UpgradeProgress=Aktualizacja Jenkinsa do wersji {0} trwa lub nie powiodÅ‚a siÄ™. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pt_BR.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pt_BR.properties index 604c452d4b6e..77edc20055d4 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pt_BR.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pt_BR.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -UpgradeComplete=Atualiza\u00E7\u00E3o do Jenkins {0} completa, aguardando reiniciar. -UpgradeCompleteRestartNotSupported=Atualiza\u00E7\u00E3o do Jenkins {0} completa, aguardando reiniciar. -UpgradeProgress=Atualiza\u00E7\u00E3o para Jenkins {0} est\u00E1 em andamento. -NewVersionAvailable=Uma nova vers\u00E3o do Jenkins ({0}) est\u00E1 dispon\u00EDvel em baixar \ - (registro de altera\u00E7\u00F5es). -UpgradeFailed=Atualiza\u00E7\u00E3o do Jenkins {0} falhou: {1}. +UpgradeComplete=Atualização do Jenkins {0} completa, aguardando reiniciar. +UpgradeCompleteRestartNotSupported=Atualização do Jenkins {0} completa, aguardando reiniciar. +UpgradeProgress=Atualização para Jenkins {0} está em andamento. +NewVersionAvailable=Uma nova versão do Jenkins ({0}) está disponível em baixar \ + (registro de alterações). +UpgradeFailed=Atualização do Jenkins {0} falhou: {1}. Retry=Tentar novamente Or\ Upgrade\ Automatically=Ou atualizar automaticamente diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pt_PT.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pt_PT.properties index f927f4cf83dc..bd85e38b7694 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pt_PT.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pt_PT.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -NewVersionAvailable=Uma nova vers\u00E3o do Jenkins ({0}) est\u00E1 dispon\u00EDvel para download (registo de altera\u00E7\u00F5es). +NewVersionAvailable=Uma nova versão do Jenkins ({0}) está disponível para download (registo de alterações). Or\ Upgrade\ Automatically=Ou atualizar automaticamente diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ru.properties index 18d52aa12a1a..9638e0226fad 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ru.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewVersionAvailable=\u041d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f Jenkins ({0}) \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0434\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 (\u0441\u043f\u0438\u0441\u043e\u043a \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439). -Retry=\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u044c -UpgradeComplete=\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u043e Jenkins {0} \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e, \u043e\u0436\u0438\u0434\u0430\u0435\u0442 \u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438. -UpgradeFailed=\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c -Or\ Upgrade\ Automatically=\u0418\u043b\u0438 \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 -UpgradeCompleteRestartNotSupported=\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u043e Jenkins {0} \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e, \u043e\u0436\u0438\u0434\u0430\u0435\u0442 \u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438. -UpgradeProgress=\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 Jenkins {0} \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f \u0438\u043b\u0438 \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u043b\u043e\u0441\u044c \u043d\u0435\u0443\u0434\u0430\u0447\u0435\u0439. +NewVersionAvailable=ÐÐ¾Ð²Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ Jenkins ({0}) доÑтупна Ð´Ð»Ñ Ð·Ð°Ð³Ñ€ÑƒÐ·ÐºÐ¸ (ÑпиÑок изменений). +Retry=Повторить +UpgradeComplete=Обновление до Jenkins {0} завершено, ожидает перезагрузки. +UpgradeFailed=Обновление не удалоÑÑŒ +Or\ Upgrade\ Automatically=Или обновить автоматичеÑки +UpgradeCompleteRestartNotSupported=Обновление до Jenkins {0} завершено, ожидает перезагрузки. +UpgradeProgress=Обновление на Jenkins {0} выполнÑетÑÑ Ð¸Ð»Ð¸ завершилоÑÑŒ неудачей. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sk.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sk.properties index e5f4de34392a..5316348b9dd6 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sk.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewVersionAvailable=Nov\u00E1 verzia Jenkins ({0}) je dostupn\u00E1 na stiahnutie (zoznam zmien). +NewVersionAvailable=Nová verzia Jenkins ({0}) je dostupná na stiahnutie (zoznam zmien). diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sl.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sl.properties index fa461eb53a8c..90c44138c190 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sl.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -NewVersionAvailable=Nova razli\u010Dica Jenkins-a ({0}) je na voljo za prenos (seznam sprememb). +NewVersionAvailable=Nova razliÄica Jenkins-a ({0}) je na voljo za prenos (seznam sprememb). Or\ Upgrade\ Automatically=ali posodobi samodejno diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sv_SE.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sv_SE.properties index 69f14d88a5b1..4d15bf03af1a 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sv_SE.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sv_SE.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -NewVersionAvailable=En ny version av Jenkins finns tillg\u00E4nglig f\u00F6r nedladdning +NewVersionAvailable=En ny version av Jenkins finns tillgänglig för nedladdning Or\ Upgrade\ Automatically=Eller uppgradera automatiskt diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_uk.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_uk.properties index 2c3fdbb332eb..4851c3fa8778 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_uk.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_uk.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewVersionAvailable=\u041D\u043E\u0432\u0430 \u0432\u0435\u0440\u0441\u0456\u044F \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441 ({0}) \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430 \u0434\u043B\u044F \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F (\u0437\u043C\u0456\u043D\u0438). -Or\ Upgrade\ Automatically=\u0410\u0431\u043E \u043E\u043D\u043E\u0432\u0456\u0442\u044C \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E +NewVersionAvailable=Ðова верÑÑ–Ñ Ð”Ð¶ÐµÐ½ÐºÑ–Ð½Ñ ({0}) доÑтупна Ð´Ð»Ñ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ (зміни). +Or\ Upgrade\ Automatically=Ðбо оновіть автоматично diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_zh_TW.properties index f06d09d42810..e944df105013 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_zh_TW.properties @@ -19,10 +19,10 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewVersionAvailable=\u65b0\u7248\u7684 Jenkins ({0}) \u5df2\u7d93\u53ef\u4ee5\u4e0b\u8f09 (\u6539\u7248\u8a18\u9304)\u3002 -UpgradeComplete=\u5df2\u6210\u529f\u5347\u7d1a\u5230 Jenkins {0}\uff0c\u6b63\u5728\u7b49\u5019\u91cd\u65b0\u555f\u52d5\u3002 -UpgradeCompleteRestartNotSupported=\u5df2\u6210\u529f\u5347\u7d1a\u5230 Jenkins {0}\uff0c\u6b63\u5728\u7b49\u5019\u91cd\u65b0\u555f\u52d5\u3002 -UpgradeProgress=\u6b63\u5728\u57f7\u884c Jenkins {0} \u5347\u7d1a\u4f5c\u696d\u3002 -UpgradeFailed=\u5347\u7d1a\u5230 Jenkins {0} \u6642\u5931\u6557\: {1}\u3002 -Or\ Upgrade\ Automatically=\u6216\u662f\u81ea\u52d5\u5347\u7248 -Retry=\u91cd\u8a66 +NewVersionAvailable=新版的 Jenkins ({0}) 已經å¯ä»¥ä¸‹è¼‰ (改版記錄)。 +UpgradeComplete=å·²æˆåŠŸå‡ç´šåˆ° Jenkins {0},正在等候é‡æ–°å•Ÿå‹•ã€‚ +UpgradeCompleteRestartNotSupported=å·²æˆåŠŸå‡ç´šåˆ° Jenkins {0},正在等候é‡æ–°å•Ÿå‹•ã€‚ +UpgradeProgress=正在執行 Jenkins {0} å‡ç´šä½œæ¥­ã€‚ +UpgradeFailed=å‡ç´šåˆ° Jenkins {0} 時失敗\: {1}。 +Or\ Upgrade\ Automatically=或是自動å‡ç‰ˆ +Retry=é‡è©¦ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_bg.properties index 6ce533acfd08..a82f8b829efa 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_bg.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Details=\ - \u041f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u0438 + ПодробноÑти Failure=\ - \u041d\u0435\u0443\u0441\u043f\u0435\u0445 + ÐеуÑпех diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_es.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_es.properties index 4ab1ebbdae87..faa56dc60aab 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_es.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Failure=Falló +Failure=Falló Details=Detalles diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_fr.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_fr.properties index 572bc275b8c5..81b8705a45cf 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_fr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Details=D\u00E9tails -Failure=\u00C9chec +Details=Détails +Failure=Échec diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_he.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_he.properties index 54ce6786e686..9f8fc7da4d80 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_he.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_he.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Details=\u05E4\u05E8\u05D8\u05D9\u05DD -Failure=\u05DB\u05E9\u05DC\u05D5\u05DF +Details=×¤×¨×˜×™× +Failure=כשלון diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_it.properties index a3e6e6a0477c..fd3dd0abf5a6 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_ja.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_ja.properties index 68a76991b9c9..3df052c4f562 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_ja.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Failure=\u5931\u6557 -Details=\u8a73\u7d30 +Failure=失敗 +Details=詳細 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_lv.properties index bb809aa7dd88..ec8a70511e1a 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_lv.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_lv.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Details=S\u012Bk\u0101k +Details=SÄ«kÄk Failure=Neveiksme diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_pl.properties index 310fe225629c..522c01b178b2 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_pl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_pl.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Details=Szczeg\u00F3\u0142y +Details=Szczegóły Failure=Niepowodzenie diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_ru.properties index a8c816cc4fcf..014e0026b981 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_ru.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Details=\u041F\u043E\u0434\u0440\u043E\u0431\u043D\u0435\u0435 -Failure=\u041E\u0448\u0438\u0431\u043A\u0430 +Details=Подробнее +Failure=Ошибка diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_sr.properties index 08ab00907c71..165d5f12d60f 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Failure=\u0413\u0440\u0435\u0448\u043A\u0430 -Details=\u0414\u0435\u0442\u0430\u0459\u0438 +Failure=Грешка +Details=Детаљи diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_zh_TW.properties index a19e5656b9f3..92fd8c444938 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Failure=\u5931\u6557 -Details=\u8a73\u60c5 +Failure=失敗 +Details=詳情 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_bg.properties index 39ae07a9e75f..8c9af0c4988a 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_bg.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Installing=\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435 + ИнÑталиране diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_it.properties index ae6ae61a7586..059e8dc45342 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ja.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ja.properties index eb48f7be5c56..aa0244f3d521 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ja.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u4e2d +Installing=インストール中 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ko.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ko.properties index a0f347133303..32a23f53cbde 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ko.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ko.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Installing=\uC124\uCE58\uC911 +Installing=설치중 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_lv.properties index d0d8409b66e5..aa0810b8946e 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_lv.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing=Uzst\u0101da +Installing=UzstÄda diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ru.properties index 7536a6a937c6..b11fb31beee7 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing=\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0430 +Installing=УÑтановка diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_sr.properties index f9195b9f58e4..f00479489bf7 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Installing=\u0418\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430 +Installing=ИнÑталација diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_uk.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_uk.properties index 600ed768dd64..0bffa1ff4107 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_uk.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing=\u0412\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F +Installing=Ð’ÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_zh_TW.properties index a981577d166b..21723eba94eb 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing=\u6b63\u5728\u5b89\u88dd +Installing=æ­£åœ¨å®‰è£ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_bg.properties index 3288cf41642f..a71a3fb07c04 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_bg.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Pending=\ - \u041f\u0440\u0435\u0434\u0441\u0442\u043e\u0438 + ПредÑтои diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_cs.properties index 1107b578345c..a2b55efcf6d5 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_cs.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=\u010Cek\u00E1 +Pending=ÄŒeká diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_da.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_da.properties index 3b43de3ad253..6914ed848e69 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_da.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=I k\u00f8 +Pending=I kø diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_he.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_he.properties index 7f10ea96c1b5..2e956730ce94 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_he.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_he.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=\u05DE\u05DE\u05EA\u05D9\u05DF +Pending=ממתין diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_hu.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_hu.properties index aaec4b64e364..db5c4de14b35 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_hu.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=V\u00E1rakozik +Pending=Várakozik diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_it.properties index 27b83008c24b..4e5da10a9cb7 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ja.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ja.properties index c5f445554822..d7e201f36752 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ja.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=\u5F85\u6A5F\u4E2D +Pending=待機中 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ko.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ko.properties index 83721cee0b96..b82df4086a64 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ko.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=\uB300\uAE30\uC911 +Pending=대기중 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_lv.properties index b5823b2ee4d1..d92948ae3beb 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_lv.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=Gatavoj\u0101s +Pending=GatavojÄs diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_nb_NO.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_nb_NO.properties index 69a3bbedd194..ac8e98b547e4 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_nb_NO.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_nb_NO.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=Forest\u00E5ende +Pending=ForestÃ¥ende diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ru.properties index e1484fa9da0d..29da52a9f36f 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=\u041E\u0436\u0438\u0434\u0430\u0435\u0442 +Pending=Ожидает diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_sr.properties index cf0838acf528..c7f50cd80fca 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Pending=\u0423 \u0442\u043E\u043A\u0443 +Pending=У току diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_sv_SE.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_sv_SE.properties index 7e32c526c115..77bf1e9b80a3 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_sv_SE.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=V\u00E4ntande +Pending=Väntande diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_uk.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_uk.properties index 4e42a3b75479..94cbabb92557 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_uk.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=\u041E\u0447\u0456\u043A\u0443\u0432\u0430\u043D\u043D\u044F +Pending=ÐžÑ‡Ñ–ÐºÑƒÐ²Ð°Ð½Ð½Ñ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_zh_TW.properties index 5d07900d663c..f1143d098a33 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=\u64F1\u7F6E +Pending=擱置 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Skipped/status_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Skipped/status_bg.properties index 26970e7876d2..614ab8270222 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Skipped/status_bg.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Skipped/status_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Skipped=\ - \u041f\u0440\u0435\u0441\u043a\u043e\u0447\u0435\u043d\u043e + ПреÑкочено diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Skipped/status_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Skipped/status_it.properties index e0d09c07d517..01c4800703a9 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Skipped/status_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Skipped/status_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Skipped/status_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Skipped/status_zh_TW.properties index bbc08e3a824a..587fcdfad8e6 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Skipped/status_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Skipped/status_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Skipped=\u5df2\u7565\u904e +Skipped=å·²ç•¥éŽ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_bg.properties index df2d21300630..cbc72fda5a88 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_bg.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Success=\ - \u0423\u0441\u043f\u0435\u0445 + УÑпех diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_cs.properties index 19d48ff5bf4c..64da97392dae 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_cs.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Success=\u00DAsp\u011B\u0161n\u011B dokon\u010Deno +Success=ÚspěšnÄ› dokonÄeno diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_fr.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_fr.properties index 34a68a0c97c9..53be586540f0 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_fr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Success=Succ\u00E8s +Success=Succès diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_it.properties index 01fc633d57f5..7485cb4de518 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ja.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ja.properties index b85d8e215722..35a0cadbd6cf 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ja.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Success=\u6210\u529f +Success=æˆåŠŸ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ko.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ko.properties index 32771e23ce29..11fb143952d3 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ko.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ko.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Success=\uC131\uACF5 +Success=성공 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_lv.properties index 544f89a7c480..3eeac71c8cb7 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_lv.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Success=Veiksm\u012Bgi +Success=VeiksmÄ«gi diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ru.properties index d83534e47f81..4eab6ff2f123 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Success=\u0423\u0441\u043F\u0435\u0448\u043D\u043E +Success=УÑпешно diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_sr.properties index 66d22b692af9..deca09c7a844 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Success=\u0423\u0441\u043F\u0435\u0448\u043D\u043E +Success=УÑпешно diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_uk.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_uk.properties index d8b792144795..af7febc120e9 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_uk.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Success=\u0423\u0441\u043F\u0456\u0448\u043D\u043E +Success=УÑпішно diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_zh_TW.properties index a0ba9a5b697e..c9ea72116140 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Success=\u6210\u529F +Success=æˆåŠŸ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_bg.properties index 8cd15938d750..cf2934a18390 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_bg.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Enabled\ Dependency=\ - \u0412\u043a\u043b\u044e\u0447\u0435\u043d\u0430 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442 + Включена завиÑимоÑÑ‚ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_de.properties b/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_de.properties index 5010b842fbc2..41ce017f54ad 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_de.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Enabled\ Dependency=Abh\u00E4ngigkeit aktiviert +Enabled\ Dependency=Abhängigkeit aktiviert diff --git a/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_it.properties index 708eb7e3b918..5572f8500d38 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_pt_BR.properties b/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_pt_BR.properties index febc3941680f..827bdc239a10 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_pt_BR.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Enabled\ Dependency=Depend\u00EAncia\ habilitada +Enabled\ Dependency=Dependência\ habilitada diff --git a/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_sr.properties index 3af25ed5fbf5..e5338dbbc0b6 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Enabled\ Dependency=\u041E\u043C\u043E\u0433\u0443\u045B\u0435\u043D\u0430 \u0437\u0430\u0432\u0438\u0441\u043D\u0430 \u043C\u043E\u0434\u0443\u043B\u0430 +Enabled\ Dependency=Омогућена завиÑна модула diff --git a/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_zh_TW.properties index c456059cc8d7..f14a16bab659 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Enabled\ Dependency=\u5df2\u555f\u7528\u7684\u76f8\u4f9d\u6027 +Enabled\ Dependency=已啟用的相ä¾æ€§ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_bg.properties index 00533baa3daf..99457bbd1fd7 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_bg.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Already\ Installed=\ - \u0412\u0435\u0447\u0435 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u043e + Вече инÑталирано diff --git a/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_it.properties index b3f28345ec35..f8570536e553 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,4 +21,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Already\ Installed=Già installato +Already\ Installed=Già installato diff --git a/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_pl.properties index 44f44ba29296..1d2aa48ff3de 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_pl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_pl.properties @@ -19,4 +19,4 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Already\ Installed=Ju\u017C zainstalowano +Already\ Installed=Już zainstalowano diff --git a/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_pt_BR.properties b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_pt_BR.properties index a8a6deaab722..a983ec9b5cc7 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_pt_BR.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Already\ Installed=J\u00E1\ instalado +Already\ Installed=Já\ instalado diff --git a/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_ru.properties index 1ef586772a90..02c9ea7bfa92 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Already\ Installed=\u0423\u0436\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e +Already\ Installed=Уже уÑтановлено diff --git a/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_sr.properties index c9523af58af1..894d39e8a575 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Already\ Installed=\u0412\u0435\u045B \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u043E +Already\ Installed=Већ инÑталирано diff --git a/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_zh_TW.properties index 45ec2dc966be..a6a62a431ce0 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Already\ Installed=\u65e9\u5df2\u5b89\u88dd +Already\ Installed=æ—©å·²å®‰è£ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_bg.properties index 04691a952ee0..56b39ad533fa 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_bg.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Canceled=\ - \u041e\u0442\u043c\u0435\u043d\u0435\u043d\u043e + Отменено diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_fr.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_fr.properties index ebf01e3a6d94..e0a670698969 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_fr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_fr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Canceled=Annul\u00E9 +Canceled=Annulé diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_it.properties index 1b468c9e9658..6712e1c6bb0a 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_ja.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_ja.properties index 47de62f1d75a..f99b7e34b602 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_ja.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Canceled=\u4e2d\u6b62 +Canceled=中止 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_ru.properties index 3a5d5f5125d0..c77cb48e76a5 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_ru.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Canceled=\u041E\u0442\u043C\u0435\u043D\u0451\u043D +Canceled=Отменён diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_sr.properties index efa35bc645fa..cbb5429935e8 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Canceled=\u041E\u0442\u043A\u0430\u0437\u0430\u043D\u043E +Canceled=Отказано diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_zh_TW.properties index 657febe88bc1..5749a797deb0 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Canceled=\u5df2\u53d6\u6d88 +Canceled=å·²å–消 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_bg.properties index 3e609f7aad37..eb67a9b7f225 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_bg.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Failure=\ - \u041d\u0435\u0443\u0441\u043f\u0435\u0445 + ÐеуÑпех diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_es.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_es.properties index 3132851d0714..59f4a7b7c2f8 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_es.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Failure=Falló +Failure=Falló diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_fr.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_fr.properties index c2818cda8c78..aa0bc57dd262 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_fr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Failure=\u00C9chec +Failure=Échec diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_it.properties index 2637a115d38f..3f582cffdd80 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_ja.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_ja.properties index 0c34deb15d8f..db959943796e 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_ja.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Failure=\u5931\u6557 +Failure=失敗 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_ru.properties index e4b1841057d0..d1edc7abac8e 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Failure=\u041e\u0448\u0438\u0431\u043a\u0430 +Failure=Ошибка diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_sr.properties index 17c0cafed8bf..d56bff433be9 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Failure=\u0413\u0440\u0435\u0448\u043A\u0430 +Failure=Грешка diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_zh_TW.properties index 64877d378467..1229f8c514c6 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Failure=\u5931\u6557 +Failure=失敗 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_bg.properties index 3288cf41642f..a71a3fb07c04 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_bg.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Pending=\ - \u041f\u0440\u0435\u0434\u0441\u0442\u043e\u0438 + ПредÑтои diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_cs.properties index 22c6a06a2b0b..8f31e17eabdc 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_cs.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_cs.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Pending=\u010Cek\u00E1 +Pending=ÄŒeká diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_da.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_da.properties index 3b43de3ad253..6914ed848e69 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_da.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=I k\u00f8 +Pending=I kø diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_he.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_he.properties index 7f10ea96c1b5..2e956730ce94 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_he.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_he.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=\u05DE\u05DE\u05EA\u05D9\u05DF +Pending=ממתין diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_it.properties index 0245d71e4d68..a2157930312b 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_ja.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_ja.properties index 05861439a710..b2f6e4fe8f84 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_ja.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=\u4fdd\u7559 +Pending=ä¿ç•™ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_ko.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_ko.properties index 83721cee0b96..b82df4086a64 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_ko.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=\uB300\uAE30\uC911 +Pending=대기중 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_lv.properties index b5823b2ee4d1..d92948ae3beb 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_lv.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=Gatavoj\u0101s +Pending=GatavojÄs diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_nb_NO.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_nb_NO.properties index 69a3bbedd194..ac8e98b547e4 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_nb_NO.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_nb_NO.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=Forest\u00E5ende +Pending=ForestÃ¥ende diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_ru.properties index d8a0acfd449e..f88f4577919b 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=\u041E\u0436\u0438\u0434\u0430\u043D\u0438\u0435 +Pending=Ожидание diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_sr.properties index cf0838acf528..c7f50cd80fca 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Pending=\u0423 \u0442\u043E\u043A\u0443 +Pending=У току diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_sv_SE.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_sv_SE.properties index 7e32c526c115..77bf1e9b80a3 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_sv_SE.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=V\u00E4ntande +Pending=Väntande diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_uk.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_uk.properties index 69bf72768afc..807c81cf5c1e 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_uk.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Pending=\u041E\u0447\u0456\u043A\u0443\u0432\u0430\u043D\u043D\u044F +Pending=ÐžÑ‡Ñ–ÐºÑƒÐ²Ð°Ð½Ð½Ñ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_zh_TW.properties index 0c9453a9e5a3..c044310c8f23 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=\u64f1\u7f6e +Pending=擱置 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_bg.properties index 648d63853aba..05eb01f39063 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_bg.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Running=\ - \u0418\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430 \u0441\u0435 + ИзпълнÑва Ñе diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_es.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_es.properties index e8102d942812..194fb51ab1df 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_es.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Running=Ejecutándose +Running=Ejecutándose diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_it.properties index 9f405f73005b..d0985c3cd85b 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_ja.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_ja.properties index 5a8ae9203fda..498e295bfd96 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_ja.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Running=\u5b9f\u884c\u4e2d +Running=実行中 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_lv.properties index 99fb8ffd47f9..c1ac45078941 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_lv.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Running=Str\u0101d\u0101 +Running=StrÄdÄ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_ru.properties index cd5707cf873a..c1d100c18bcc 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Running=\u0412\u044B\u043F\u043E\u043B\u043D\u044F\u0435\u0442\u0441\u044F +Running=ВыполнÑетÑÑ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_sk.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_sk.properties index 903d6a9d1fa6..afd743c40c66 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_sk.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_sk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Running=Be\u017Eiace +Running=Bežiace diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_sr.properties index 7775a5ee2afa..8610822721c1 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Running=\u0412\u0440\u0448\u0438 \u0441\u0435 +Running=Врши Ñе diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_zh_TW.properties index 6aa7185d0da3..a52b9ebda3b1 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Running=\u6b63\u5728\u57f7\u884c +Running=正在執行 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_bg.properties index 3f646f192c2a..0f211af38846 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_bg.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Restarting\ Jenkins=\ - \u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 Jenkins + РеÑтартиране на Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_fi.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_fi.properties index 481948849319..2cedbf1fb887 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_fi.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_fi.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Restarting\ Jenkins=Jenkins k\u00E4ynnistet\u00E4\u00E4n uudelleen +Restarting\ Jenkins=Jenkins käynnistetään uudelleen diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_fr.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_fr.properties index bf057c38151a..82ed274a994c 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_fr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restarting\ Jenkins=Red\u00E9marrer Jenkins +Restarting\ Jenkins=Redémarrer Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_he.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_he.properties index f0fdd4b1b365..70ac87a4b24e 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_he.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_he.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restarting\ Jenkins=\u05DE\u05D0\u05EA\u05D7\u05DC \u05DE\u05D7\u05D3\u05E9 \u05D0\u05EA \u05D2''\u05E0\u05E7\u05D9\u05E0\u05E1 +Restarting\ Jenkins=מ×תחל מחדש ×ת ×’''נקינס diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_it.properties index f44dc7e13fb6..917c443e76f3 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ja.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ja.properties index 7e11e03db89c..53e205998941 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ja.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restarting\ Jenkins=Jenkins\u306e\u518d\u8d77\u52d5 +Restarting\ Jenkins=Jenkinsã®å†èµ·å‹• diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ko.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ko.properties index d8c5bb246e74..9c63c250ab3b 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ko.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restarting\ Jenkins=Jenkins \uC7AC\uC2DC\uC791 +Restarting\ Jenkins=Jenkins 재시작 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_lv.properties index 5bfd40d25d8c..089d6308352e 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_lv.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restarting\ Jenkins=P\u0101rstart\u0113t Jenkins +Restarting\ Jenkins=PÄrstartÄ“t Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_nb_NO.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_nb_NO.properties index 3cae088ee150..725a91c444be 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_nb_NO.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_nb_NO.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restarting\ Jenkins=Starter Jenkins p\u00E5 nytt +Restarting\ Jenkins=Starter Jenkins pÃ¥ nytt diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ru.properties index 89287be8ddbf..d9f4e2a3a595 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restarting\ Jenkins=\u041F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0430 Jenkins +Restarting\ Jenkins=Перезагрузка Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sk.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sk.properties index 629f2f9d3db9..a4819974fa52 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sk.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Restarting\ Jenkins=Re\u0161tartovanie Jenkins +Restarting\ Jenkins=ReÅ¡tartovanie Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sr.properties index 0797fb4ce944..c9663e336b09 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Restarting\ Jenkins=\u041F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0435 Jenkins +Restarting\ Jenkins=Поново покретање Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_tr.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_tr.properties index 0c70613b585b..23c69246c694 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_tr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_tr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Restarting\ Jenkins=Jenkins Yeniden Ba\u015Flat\u0131l\u0131yor +Restarting\ Jenkins=Jenkins Yeniden BaÅŸlatılıyor diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_uk.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_uk.properties index d4199aaf9614..6ffad8e0b551 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_uk.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Restarting\ Jenkins=\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A Jenkins +Restarting\ Jenkins=ПерезапуÑк Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_zh_TW.properties index ef0a02f78232..bb163793afc6 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restarting\ Jenkins=\u6b63\u5728\u91cd\u65b0\u555f\u52d5 Jenkins +Restarting\ Jenkins=正在é‡æ–°å•Ÿå‹• Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body.jelly b/core/src/main/resources/hudson/model/UpdateCenter/body.jelly index 1df5e3ab815e..2b99bb633497 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body.jelly +++ b/core/src/main/resources/hudson/model/UpdateCenter/body.jelly @@ -29,13 +29,13 @@ THE SOFTWARE. - +
    - +

    @@ -49,7 +49,7 @@ THE SOFTWARE.

    -

    +

    diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_bg.properties index 6f3384252803..110864df4bdb 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_bg.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Go\ back\ to\ the\ top\ page=\ - \u041a\u044a\u043c \u043e\u0441\u043d\u043e\u0432\u043d\u0430\u0442\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 + Към оÑновната Ñтраница warning=\ - \u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0439\u0442\u0435 Jenkins, \u043a\u043e\u0433\u0430\u0442\u043e \u0438\u043d\u0441\u0442\u0430\u043b\u0430\u0446\u0438\u044f\u0442\u0430 \u043f\u0440\u0438\u043a\u043b\u044e\u0447\u0438 \u0438 \u043d\u044f\u043c\u0430 \u0430\u043a\u0442\u0438\u0432\u043d\u0438 \u0437\u0430\u0434\u0430\u0447\u0438 + РеÑтартирайте Jenkins, когато инÑталациÑта приключи и нÑма активни задачи you\ can\ start\ using\ the\ installed\ plugins\ right\ away=\ - \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0438\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438 \u0441\u0435\u0433\u0430 + можете да ползвате инÑталираните приÑтавки Ñега diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_ca.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_ca.properties index 73c36b9c6130..53873f931681 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_ca.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_ca.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Go\ back\ to\ the\ top\ page=Tornar a la p\u00E0gina principal -warning=Reinicia Jenkins quan la instal\u00B7laci\u00F3 s''hagi completat i no hi hagin Jobs corrent. +Go\ back\ to\ the\ top\ page=Tornar a la pàgina principal +warning=Reinicia Jenkins quan la instal·lació s''hagi completat i no hi hagin Jobs corrent. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_cs.properties index 241bf8df75ff..20f3c98f2260 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_cs.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_cs.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Go\ back\ to\ the\ top\ page=Zp\u011Bt na hlavn\u00ED str\u00E1nku -warning=Restartovat Jenkins a\u017E skon\u010D\u00ED instalace a nepob\u011B\u017E\u00ED \u017E\u00E1dn\u00E9 \u00FAlohy -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=m\u016F\u017Eete ihned za\u010D\u00EDt pou\u017E\u00EDvat nainstalovan\u00E9 pluginy +Go\ back\ to\ the\ top\ page=ZpÄ›t na hlavní stránku +warning=Restartovat Jenkins až skonÄí instalace a nepoběží žádné úlohy +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=můžete ihned zaÄít používat nainstalované pluginy diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_da.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_da.properties index 54257c1dc118..c9cf40c13108 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_da.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_da.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors Go\ back\ to\ the\ top\ page=Tilbage til hovedsiden -warning=Genstart Jenkins n\u00E5r installationen er f\u00E6rdig og ingen jobs k\u00F8rer +warning=Genstart Jenkins nÃ¥r installationen er færdig og ingen jobs kører you\ can\ start\ using\ the\ installed\ plugins\ right\ away=Du kan bruge de installerede plugins med det samme diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_de.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_de.properties index 7c77b61a18d0..36d3b9b2a872 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_de.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_de.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Go\ back\ to\ the\ top\ page=Zur\u00FCck zur Startseite -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=Sie k\u00F6nnen die installierten Plugins sofort verwenden +Go\ back\ to\ the\ top\ page=Zurück zur Startseite +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=Sie können die installierten Plugins sofort verwenden warning=Starte Jenkins neu, nachdem die Installation beendet ist und keine Prozesse laufen. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_es.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_es.properties index 66e91bf57c25..ea616b7d3bdd 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_es.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_es.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -warning=Reiniciar Jenkins cuando termine la instalaci\u00F3n y no queden trabajos en ejecuci\u00F3n -Go\ back\ to\ the\ top\ page=Volver al inicio de la p\u00E1gina +warning=Reiniciar Jenkins cuando termine la instalación y no queden trabajos en ejecución +Go\ back\ to\ the\ top\ page=Volver al inicio de la página you\ can\ start\ using\ the\ installed\ plugins\ right\ away=puedes empezar a usar los plugins instalados inmediatamente diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_es_AR.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_es_AR.properties index a8bb3f862bfd..29d43808c178 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_es_AR.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_es_AR.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -warning=Reiniciar Jenkins cuando se complete la instalaci\u00F3n y no haya trabajos corriendo +warning=Reiniciar Jenkins cuando se complete la instalación y no haya trabajos corriendo you\ can\ start\ using\ the\ installed\ plugins\ right\ away=puedes empezar a utilizar los plugins instalados inmediatamente diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_fi.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_fi.properties index da3eda893ea3..f2d3c073abee 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_fi.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_fi.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Go\ back\ to\ the\ top\ page=Alkuun -warning=K\u00E4ynnist\u00E4 Jenkins uudelleen asennuksen j\u00E4lkeen, kun t\u00F6it\u00E4 ei ole ajossa -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=voit aloittaa liit\u00E4nn\u00E4isten k\u00E4yt\u00F6n v\u00E4litt\u00E4m\u00E4sti asennuksen j\u00E4lkeen +warning=Käynnistä Jenkins uudelleen asennuksen jälkeen, kun töitä ei ole ajossa +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=voit aloittaa liitännäisten käytön välittämästi asennuksen jälkeen diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_fr.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_fr.properties index ee63011d1fb9..74b58143924d 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_fr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_fr.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Go\ back\ to\ the\ top\ page=Revenir en haut de la page -warning=Red\u00E9marrer Jenkins quand l''installation est termin\u00E9e et qu''aucun job n''est en cours -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=vous pouvez commencer \u00E0 utiliser les plugins install\u00E9s d\u00E8s maintenant +warning=Redémarrer Jenkins quand l''installation est terminée et qu''aucun job n''est en cours +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=vous pouvez commencer à utiliser les plugins installés dès maintenant diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_he.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_he.properties index 323022b08971..1d528178fc1d 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_he.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_he.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Go\ back\ to\ the\ top\ page=\u05D7\u05D6\u05D5\u05E8 \u05DC\u05D3\u05E3 \u05D4\u05E8\u05D0\u05E9\u05D5\u05DF -warning=\u05D0\u05EA\u05D7\u05DC \u05D0\u05EA \u05D4\u05E9\u05E8\u05EA \u05DB\u05D0\u05E9\u05E8 \u05D4\u05D4\u05EA\u05E7\u05E0\u05D4 \u05DE\u05E1\u05EA\u05D9\u05D9\u05DE\u05EA \u05D5\u05D0\u05D9\u05DF \u05D1\u05E0\u05D9\u05D5\u05EA \u05D1\u05EA\u05D4\u05DC\u05D9\u05DA -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=\u05D0\u05E4\u05E9\u05E8 \u05DC\u05D4\u05EA\u05D7\u05D9\u05DC \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05D0\u05D5\u05E4\u05DF \u05DE\u05D9\u05D9\u05D3\u05D9 \u05D1\u05EA\u05D5\u05E1\u05E3 \u05E9\u05D4\u05D5\u05EA\u05E7\u05DF +Go\ back\ to\ the\ top\ page=חזור לדף הר×שון +warning=×תחל ×ת השרת ×›×שר ההתקנה מסתיימת ו×ין בניות בתהליך +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=×פשר להתחיל להשתמש ב×ופן מיידי בתוסף שהותקן diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_hu.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_hu.properties index aa9034563f3e..85f77c194edc 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_hu.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_hu.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Go\ back\ to\ the\ top\ page=Vissza a kezd\u0151lapra -warning=Ind\u00EDtsa \u00FAjra a Jenkinst, miut\u00E1n a telep\u00EDt\u00E9s sikeres volt \u00E9s nincs t\u00F6bb fut\u00F3 feladat -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=A plugin mostant\u00F3l haszn\u00E1lhat\u00F3 +Go\ back\ to\ the\ top\ page=Vissza a kezdÅ‘lapra +warning=Indítsa újra a Jenkinst, miután a telepítés sikeres volt és nincs több futó feladat +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=A plugin mostantól használható diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_it.properties index 27a45ebcf7f7..c1aabdf207da 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,7 +22,7 @@ # THE SOFTWARE. Go\ back\ to\ the\ top\ page=Torna alla pagina principale -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=È possibile \ +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=È possibile \ iniziare ad utilizzare i componenti aggiuntivi installati fin da subito -warning=Riavvia Jenkins quando l''installazione è completata e non ci sono \ +warning=Riavvia Jenkins quando l''installazione è completata e non ci sono \ processi in esecuzione diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_ja.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_ja.properties index ba35f7b40628..75ccd6f5cf13 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_ja.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Go\ back\ to\ the\ top\ page=\u30DA\u30FC\u30B8\u306E\u5148\u982D\u3078\u623B\u308B +Go\ back\ to\ the\ top\ page=ページã®å…ˆé ­ã¸æˆ»ã‚‹ you\ can\ start\ using\ the\ installed\ plugins\ right\ away=\ - \u3059\u3050\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u4f7f\u7528\u3067\u304d\u307e\u3059 -warning=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u5b8c\u4e86\u5f8c\u3001\u30b8\u30e7\u30d6\u304c\u306a\u3051\u308c\u3070Jenkins\u3092\u518d\u8d77\u52d5\u3059\u308b + ã™ãã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸãƒ—ラグインを使用ã§ãã¾ã™ +warning=インストール完了後ã€ã‚¸ãƒ§ãƒ–ãŒãªã‘ã‚Œã°Jenkinsã‚’å†èµ·å‹•ã™ã‚‹ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_ko.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_ko.properties index 54056172f846..a79b334e6b85 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_ko.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_ko.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Go\ back\ to\ the\ top\ page=\uBA54\uC778 \uD398\uC774\uC9C0\uB85C \uB3CC\uC544\uAC00\uAE30 -warning=\uC124\uCE58\uAC00 \uB05D\uB098\uACE0 \uC2E4\uD589\uC911\uC778 \uC791\uC5C5\uC774 \uC5C6\uC73C\uBA74 Jenkins \uC7AC\uC2DC\uC791. -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=\uC124\uCE58\uB41C \uD50C\uB7EC\uADF8\uC778\uC744 \uBC14\uB85C \uC0AC\uC6A9\uD558\uC2E4 \uC218 \uC788\uC2B5\uB2C8\uB2E4. +Go\ back\ to\ the\ top\ page=ë©”ì¸ íŽ˜ì´ì§€ë¡œ ëŒì•„가기 +warning=설치가 ë나고 ì‹¤í–‰ì¤‘ì¸ ìž‘ì—…ì´ ì—†ìœ¼ë©´ Jenkins 재시작. +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=ì„¤ì¹˜ëœ í”ŒëŸ¬ê·¸ì¸ì„ 바로 사용하실 수 있습니다. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_lv.properties index 24ee51d5348a..fdff7509aa6c 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_lv.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_lv.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Go\ back\ to\ the\ top\ page=Iet atpaka\u013C uz iepriek\u0161\u0113jo lapu -warning=P\u0101rstart\u0113t Jenkins kad instal\u0101cija ir pabeigta un nav neviens str\u0101d\u0101jo\u0161s darbs -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=j\u016Bs varat s\u0101kt lietot uzst\u0101d\u012Btos spraud\u0146us uzreiz +Go\ back\ to\ the\ top\ page=Iet atpakaļ uz iepriekÅ¡Ä“jo lapu +warning=PÄrstartÄ“t Jenkins kad instalÄcija ir pabeigta un nav neviens strÄdÄjoÅ¡s darbs +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=jÅ«s varat sÄkt lietot uzstÄdÄ«tos spraudņus uzreiz diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_nb_NO.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_nb_NO.properties index 868c6356a713..f0102e4b95e9 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_nb_NO.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_nb_NO.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -warning=Start Jenkins p\u00E5 nytt n\u00E5r installasjonen er ferdig og det ikke er noen kj\u00F8rende jobber +warning=Start Jenkins pÃ¥ nytt nÃ¥r installasjonen er ferdig og det ikke er noen kjørende jobber diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_nl.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_nl.properties index 2f626af09e8e..34e78f3719f6 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_nl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_nl.properties @@ -22,4 +22,4 @@ Go\ back\ to\ the\ top\ page=Ga terug naar de hoogste pagina warning=Jenkins herstarten zodra de installatie voltooid is en er geen taken draaien -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=Je kunt de ge\u00EFnstalleerde plugins meteen gebruiken +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=Je kunt de geïnstalleerde plugins meteen gebruiken diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_pl.properties index 8c519ef315ab..9df2b74b3077 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_pl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_pl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Go\ back\ to\ the\ top\ page=Wr\u00F3\u0107 do strony g\u0142\u00F3wnej -warning=Uruchom ponownie Jenkinsa, gdy instalacja si\u0119 zako\u0144czy i \u017Cadne zadanie nie b\u0119dzie wykonywane -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=Mo\u017Cesz ju\u017C zacz\u0105\u0107 korzysta\u0107 z zainstalowanych wtyczek +Go\ back\ to\ the\ top\ page=Wróć do strony głównej +warning=Uruchom ponownie Jenkinsa, gdy instalacja siÄ™ zakoÅ„czy i żadne zadanie nie bÄ™dzie wykonywane +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=Możesz już zacząć korzystać z zainstalowanych wtyczek diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_pt_BR.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_pt_BR.properties index 1eae0d196680..279cc6f60a3d 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_pt_BR.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_pt_BR.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Go\ back\ to\ the\ top\ page=Voltar para a p\u00E1gina principal -warning=Reinicie o Jenkins quando a instala\u00E7\u00E3o estiver completa e nenhuma tarefa estiver em execu\u00E7\u00E3o -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=voc\u00EA pode come\u00E7ar a usar os plugins instalados \ +Go\ back\ to\ the\ top\ page=Voltar para a página principal +warning=Reinicie o Jenkins quando a instalação estiver completa e nenhuma tarefa estiver em execução +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=você pode começar a usar os plugins instalados \ imediatamente diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_pt_PT.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_pt_PT.properties index 0f948b981d15..0b8dc262d3fe 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_pt_PT.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_pt_PT.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Go\ back\ to\ the\ top\ page=Voltar na P\u00E1gina Inicial -warning=Reiniciar o Jenkins assim que a instala\u00E7\u00E3o acabar e n\u00E3o houver execu\u00E7\u00F5es em curso -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=voc\u00EA pode come\u00E7ar a utilizar os plugins instalados imediatamente +Go\ back\ to\ the\ top\ page=Voltar na Página Inicial +warning=Reiniciar o Jenkins assim que a instalação acabar e não houver execuções em curso +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=você pode começar a utilizar os plugins instalados imediatamente diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_ru.properties index 948b96857fbc..471edf6b999c 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Go\ back\ to\ the\ top\ page=\u0412\u0435\u0440\u043D\u0443\u0442\u044C\u0441\u044F \u043D\u0430 \u0433\u043B\u0430\u0432\u043D\u0443\u044E \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0443 -warning=\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C Jenkins \u043F\u043E \u043E\u043A\u043E\u043D\u0447\u0430\u043D\u0438\u044E \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0438 \u0438 \u043E\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0438 \u0430\u043A\u0442\u0438\u0432\u043D\u044B\u0445 \u0437\u0430\u0434\u0430\u0447 -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=\u0432\u044B \u0441\u043C\u043E\u0436\u0435\u0442\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044B\u0435 \u043F\u043B\u0430\u0433\u0438\u043D\u044B \u043F\u0440\u044F\u043C\u043E \u0441\u0435\u0439\u0447\u0430\u0441 +Go\ back\ to\ the\ top\ page=ВернутьÑÑ Ð½Ð° главную Ñтраницу +warning=ПерезапуÑтить Jenkins по окончанию уÑтановки и отÑутÑтвии активных задач +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=вы Ñможете иÑпользовать уÑтановленные плагины прÑмо ÑÐµÐ¹Ñ‡Ð°Ñ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_sk.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_sk.properties index 6e1e613a00fa..eee4779bbdc3 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_sk.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_sk.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Go\ back\ to\ the\ top\ page=Nasp\u00E4\u0165 na hlavn\u00FA str\u00E1nku -warning=Re\u0161tartuj Jenkins, ke\u010F je in\u0161tal\u00E1cia hotov\u00E1 a nebe\u017Eia \u017Eiadne projekty -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=m\u00F4\u017Eete hne\u010F za\u010Da\u0165 pou\u017E\u00EDva\u0165 in\u0161talovan\u00E9 doplnky +Go\ back\ to\ the\ top\ page=Naspäť na hlavnú stránku +warning=ReÅ¡tartuj Jenkins, keÄ je inÅ¡talácia hotová a nebežia žiadne projekty +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=môžete hneÄ zaÄaÅ¥ používaÅ¥ inÅ¡talované doplnky diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_sl.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_sl.properties index 0a312042848d..7b8f99e6f2fd 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_sl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_sl.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors Go\ back\ to\ the\ top\ page=Nazaj na vrh strani -warning=Ponovno za\u017Eeni Jenkins ko bo in\u0161talacija kon\u010Dana ne bo nobenih teko\u010Dih poslov -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=vti\u010Dnik lahko za\u010Dnete uporabljati takoj +warning=Ponovno zaženi Jenkins ko bo inÅ¡talacija konÄana ne bo nobenih tekoÄih poslov +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=vtiÄnik lahko zaÄnete uporabljati takoj diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_sr.properties index d91543fb320b..ff6c8b69e220 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Go\ back\ to\ the\ top\ page=\u041F\u043E\u0432\u0440\u0430\u0442\u0430\u043A -warning=\u041F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0438\u0442\u0435 Jenkins \u043A\u0430\u0434\u0430 \u0431\u0443\u0434\u0435 \u0441\u0435 \u0437\u0430\u0432\u0440\u0448\u0438\u043B\u0430 \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430 \u0438 \u043D\u0435 \u0431\u0443\u0434\u0435 \u0431\u0438\u043B\u043E \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0430 \u0443 \u0442\u043E\u043A\u0443 -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=\u041C\u043E\u0436\u0435\u0442\u0435 \u043E\u0434\u043C\u0430\u0445 \u043F\u043E\u0447\u0435\u0442\u0438 \u0434\u0430 \u043A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u0435 \u043C\u043E\u0434\u0443\u043B\u0435 +Go\ back\ to\ the\ top\ page=Повратак +warning=Поново покрените Jenkins када буде Ñе завршила инÑталација и не буде било задатака у току +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=Можете одмах почети да кориÑтите инÑталиране модуле diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_sv_SE.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_sv_SE.properties index 588d6b393517..53d85bef9345 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_sv_SE.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_sv_SE.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Go\ back\ to\ the\ top\ page=G\u00E5 tillbaka till hemsidan -warning=Starta om Jenkins n\u00E4r installationen \u00E4r klar och inga jobb k\u00F6r -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=du kan b\u00F6rja anv\u00E4nda de installerade insticksmodulerna direkt +Go\ back\ to\ the\ top\ page=GÃ¥ tillbaka till hemsidan +warning=Starta om Jenkins när installationen är klar och inga jobb kör +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=du kan börja använda de installerade insticksmodulerna direkt diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_tr.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_tr.properties index e7340c957713..95b57d654b51 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_tr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_tr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Go\ back\ to\ the\ top\ page=\u00DCst sayfaya geri d\u00F6n -warning=Y\u00FCkleme tamamland\u0131\u011F\u0131nda ve bekleyen bir i\u015F yoksa Jenkins''i yeniden ba\u015Flat. -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=Kurulmu\u015F eklentileri kullanmaya hemen ba\u015Flayabilirsiniz +Go\ back\ to\ the\ top\ page=Ãœst sayfaya geri dön +warning=Yükleme tamamlandığında ve bekleyen bir iÅŸ yoksa Jenkins''i yeniden baÅŸlat. +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=KurulmuÅŸ eklentileri kullanmaya hemen baÅŸlayabilirsiniz diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_uk.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_uk.properties index e64784663998..c37a95cb72aa 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_uk.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Go\ back\ to\ the\ top\ page=\u041F\u043E\u0432\u0435\u0440\u043D\u0443\u0442\u0438\u0441\u044C \u0434\u043E \u043F\u043E\u0447\u0430\u0442\u043A\u0443 \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0438 +Go\ back\ to\ the\ top\ page=ПовернутиÑÑŒ до початку Ñторінки diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_zh_TW.properties index 7011f98e939a..415b107c3f6d 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_zh_TW.properties @@ -20,6 +20,6 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -warning=\u7576\u5b89\u88dd\u5b8c\u6210\u4e14\u6c92\u6709\u5de5\u4f5c\u6b63\u5728\u57f7\u884c\u6642\uff0c\u91cd\u555f Jenkins -Go\ back\ to\ the\ top\ page=\u56de\u5230\u9996\u9801 -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=\u4f60\u53ef\u4ee5\u958b\u59cb\u4f7f\u7528\u5df2\u5b89\u88dd\u597d\u7684\u5916\u639b +warning=當安è£å®Œæˆä¸”沒有工作正在執行時,é‡å•Ÿ Jenkins +Go\ back\ to\ the\ top\ page=å›žåˆ°é¦–é  +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=ä½ å¯ä»¥é–‹å§‹ä½¿ç”¨å·²å®‰è£å¥½çš„外掛 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_bg.properties index 4d7fc887a0e5..8b1e0d106514 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_bg.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Installing\ Plugins/Upgrades=\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438/\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f + ИнÑталиране на приÑтавки/Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Update\ Center=\ - \u0426\u0435\u043d\u0442\u044a\u0440 \u0437\u0430 \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 + Център за обновÑване diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_ca.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_ca.properties index 164dbed3d4c6..85104d0031d2 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_ca.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_ca.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing\ Plugins/Upgrades=Instal\u00B7lant Actualitzacions/Plugins -warning=Un cop s''ha completat la instalaci\u00F3, s''ha de reiniciar Jenkins per a que els canvis tinguin efecte. +Installing\ Plugins/Upgrades=Instal·lant Actualitzacions/Plugins +warning=Un cop s''ha completat la instalació, s''ha de reiniciar Jenkins per a que els canvis tinguin efecte. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_cs.properties index f174d04d0d40..5a31db4e3786 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_cs.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing\ Plugins/Upgrades=Instaluji z\u00E1suvn\u00E9 moduly / aktualizace +Installing\ Plugins/Upgrades=Instaluji zásuvné moduly / aktualizace diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_da.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_da.properties index 340465fd4743..4e1618589701 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_da.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_da.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Update\ Center=Opdateringscenter -warning=N\u00e5r installationen er f\u00e6rdig skal Jenkins genstartes for at \u00e6ndringerne tr\u00e6der i kraft. +warning=NÃ¥r installationen er færdig skal Jenkins genstartes for at ændringerne træder i kraft. Installing\ Plugins/Upgrades=Installerer Plugins/Opgraderinger -Restart\ When\ No\ Jobs\ Are\ Running=Genstart n\u00e5r der ikke k\u00f8rer flere jobs +Restart\ When\ No\ Jobs\ Are\ Running=Genstart nÃ¥r der ikke kører flere jobs diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_fi.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_fi.properties index ab59aec18e76..1a0c390bce2a 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_fi.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_fi.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing\ Plugins/Upgrades=Asenna tai p\u00E4ivit\u00E4 liit\u00E4nn\u00E4isi\u00E4 -Restart\ Now=K\u00E4ynnist\u00E4 uudelleen nyt -Restart\ When\ No\ Jobs\ Are\ Running=K\u00E4ynnist\u00E4 uudelleen kun t\u00F6it\u00E4 ei ole ajossa. -warning=Kun asennus on valmis, Jenkins tulee k\u00E4ynnist\u00E4\u00E4 uudelleen asennuksen viimeistelemiseksi. +Installing\ Plugins/Upgrades=Asenna tai päivitä liitännäisiä +Restart\ Now=Käynnistä uudelleen nyt +Restart\ When\ No\ Jobs\ Are\ Running=Käynnistä uudelleen kun töitä ei ole ajossa. +warning=Kun asennus on valmis, Jenkins tulee käynnistää uudelleen asennuksen viimeistelemiseksi. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_fr.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_fr.properties index 180de18b112e..d4484e9b7c4c 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_fr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_fr.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Update\ Center=Centre de mise à jour -warning=Une fois l''installation terminée, Jenkins doit être redémarré \ +Update\ Center=Centre de mise à jour +warning=Une fois l''installation terminée, Jenkins doit être redémarré \ pour prendre en compte les nouveaux plugins. -Installing\ Plugins/Upgrades=Installation/Mise \u00E0 jour des Plugins -Schedule\ Restart=Programmer un red\u00E9marrage +Installing\ Plugins/Upgrades=Installation/Mise à jour des Plugins +Schedule\ Restart=Programmer un redémarrage diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_he.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_he.properties index a4bbfc561e5d..3b14840a7f48 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_he.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_he.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing\ Plugins/Upgrades=\u05D4\u05EA\u05E7\u05E0\u05EA \u05EA\u05D5\u05E1\u05E4\u05D9\u05DD \u05D5\u05E2\u05D3\u05DB\u05D5\u05E0\u05D9\u05DD +Installing\ Plugins/Upgrades=התקנת ×ª×•×¡×¤×™× ×•×¢×“×›×•× ×™× diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_hu.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_hu.properties index 87a0c1f974f1..c42821bde295 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_hu.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing\ Plugins/Upgrades=Pluginok/Friss\u00EDt\u00E9sek telep\u00EDt\u00E9se +Installing\ Plugins/Upgrades=Pluginok/Frissítések telepítése diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_it.properties index 8a7a5e2973de..3e8108bae180 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_ja.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_ja.properties index f6240686618e..f0643d246e2e 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_ja.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Update\ Center=\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u30bb\u30f3\u30bf\u30fc -Installing\ Plugins/Upgrades=\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb/\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9 +Update\ Center=アップデートセンター +Installing\ Plugins/Upgrades=プラグインã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«/アップグレード diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_ko.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_ko.properties index e9d4537db004..260799dc15f4 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_ko.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing\ Plugins/Upgrades=\uD50C\uB7EC\uADF8\uC778 \uC124\uCE58/\uC5C5\uADF8\uB808\uC774\uB4DC \uC911 +Installing\ Plugins/Upgrades=í”ŒëŸ¬ê·¸ì¸ ì„¤ì¹˜/업그레ì´ë“œ 중 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_lv.properties index 5bb47a4109e0..140ec7d84758 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_lv.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing\ Plugins/Upgrades=Instal\u0113ju Spraud\u0146us/Atjaunon\u0101jumus +Installing\ Plugins/Upgrades=InstalÄ“ju Spraudņus/AtjaunonÄjumus diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_nb_NO.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_nb_NO.properties index 24e618c019fd..c9be45fcd834 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_nb_NO.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_nb_NO.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Installing\ Plugins/Upgrades=Installere programtillegg/oppdateringer -warning=N\u00E5r installasjonen er fullf\u00F8rt vil Jenkins trenge en restart for ar nye endringer skal bli gjeldende. +warning=NÃ¥r installasjonen er fullført vil Jenkins trenge en restart for ar nye endringer skal bli gjeldende. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_pt_BR.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_pt_BR.properties index b5cfaccc4852..fe8331a147a8 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_pt_BR.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Update\ Center=Central de atualiza\u00e7\u00e3o +Update\ Center=Central de atualização # Once the installation is completed, Jenkins needs to be restarted for changes to take effect. Installing\ Plugins/Upgrades=Instalando plugins/atualizando diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_pt_PT.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_pt_PT.properties index 1fad32df7153..f297b0da3b1a 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_pt_PT.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_pt_PT.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing\ Plugins/Upgrades=Instalar Extens\u00E3o/Actualiza\u00E7\u00F5es +Installing\ Plugins/Upgrades=Instalar Extensão/Actualizações diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_ru.properties index 7c6b4e96d5a5..2d8896c24a55 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_ru.properties @@ -1,2 +1,2 @@ -Installing\ Plugins/Upgrades=\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430/\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432 -Update\ Center=\u0426\u0435\u043d\u0442\u0440 \u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0439 +Installing\ Plugins/Upgrades=УÑтановка/обновление плагинов +Update\ Center=Центр Обновлений diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_sk.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_sk.properties index 4cce5a3d12cb..e7d301f297b8 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_sk.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_sk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Installing\ Plugins/Upgrades=In\u0161tal\u00E1cia doplnkov a aktualiz\u00E1ci\u00ED +Installing\ Plugins/Upgrades=InÅ¡talácia doplnkov a aktualizácií diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_sl.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_sl.properties index 7082257fc69c..3e9a5fca4b9c 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_sl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_sl.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Installing\ Plugins/Upgrades=In\u0161taliram vti\u010Dnike/nadgradnje +Installing\ Plugins/Upgrades=InÅ¡taliram vtiÄnike/nadgradnje diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_sr.properties index 8832564b2b9c..d3365e6b1184 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Update\ Center=\u0426\u0435\u043D\u0442\u0430\u0440 \u0437\u0430 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045A\u0435 -Installing\ Plugins/Upgrades=\u0418\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430 \u043C\u043E\u0434\u0443\u043B\u0435 \u0438 \u043D\u0430\u0434\u0433\u0440\u0430\u0434\u045A\u0435 +Update\ Center=Центар за ажурирање +Installing\ Plugins/Upgrades=ИнÑталација модуле и надградње diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_sv_SE.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_sv_SE.properties index 541ab7dd7f1d..48cb80417929 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_sv_SE.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_sv_SE.properties @@ -22,5 +22,5 @@ Installing\ Plugins/Upgrades=Installerar eller uppdaterar insticksmoduler Restart\ Now=Starta om nu -Restart\ When\ No\ Jobs\ Are\ Running=Starta om n\u00E4r inga byggen p\u00E5g\u00E5r -warning=N\u00E4r installationen \u00E4r f\u00E4rdig, s\u00E5 m\u00E5ste Jenkins startas om f\u00F6r att f\u00F6r\u00E4ndringarna skall genomf\u00F6ras. +Restart\ When\ No\ Jobs\ Are\ Running=Starta om när inga byggen pÃ¥gÃ¥r +warning=När installationen är färdig, sÃ¥ mÃ¥ste Jenkins startas om för att förändringarna skall genomföras. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_tr.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_tr.properties index af2c4aa152f6..80d15e7e8eb4 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_tr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_tr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Installing\ Plugins/Upgrades=Eklentiler/y\u00FCkseltmeler kuruluyor +Installing\ Plugins/Upgrades=Eklentiler/yükseltmeler kuruluyor diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_uk.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_uk.properties index 531512158d44..e1280f412d2e 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_uk.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Installing\ Plugins/Upgrades=\u0412\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u043C\u043E\u0434\u0443\u043B\u0456\u0432/\u043E\u043D\u043E\u0432\u043B\u0435\u043D\u044C +Installing\ Plugins/Upgrades=Ð’ÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð¼Ð¾Ð´ÑƒÐ»Ñ–Ð²/оновлень diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_zh_TW.properties index ec951c1afafd..669e79a3bbe4 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_zh_TW.properties @@ -21,5 +21,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Update\ Center=\u66f4\u65b0\u4e2d\u5fc3 -Installing\ Plugins/Upgrades=\u6b63\u5728\u5b89\u88dd/\u5347\u7d1a\u5916\u639b +Update\ Center=更新中心 +Installing\ Plugins/Upgrades=正在安è£/å‡ç´šå¤–掛 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_bg.properties index 1505afe96982..3942068e758c 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_bg.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Back\ to\ Dashboard=\ - \u041a\u044a\u043c \u0442\u0430\u0431\u043b\u043e\u0442\u043e \u0437\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 + Към таблото за управление Manage\ Jenkins=\ - \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 Jenkins + Управление на Jenkins Manage\ Plugins=\ - \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438 + Управление на приÑтавки diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ca.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ca.properties index 2d556bba8c31..6285415442ab 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ca.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ca.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Back\ to\ Dashboard=Retornar al Panell de Control -Manage\ Jenkins=Configuraci\u00F3 de Jenkins +Manage\ Jenkins=Configuració de Jenkins Manage\ Plugins=Configurar Plugins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_cs.properties index fea44bdc789f..16749eb004be 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_cs.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_cs.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Zp\u011Bt na Dashboard +Back\ to\ Dashboard=ZpÄ›t na Dashboard Manage\ Jenkins=Administrace -Manage\ Plugins=Spr\u00E1va z\u00E1suvn\u00FDch modul\u016F +Manage\ Plugins=Správa zásuvných modulů diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_da.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_da.properties index 62a272133c12..e746877d3f3a 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_da.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_da.properties @@ -22,4 +22,4 @@ Back\ to\ Dashboard=Tilbage til oversigtssiden Manage\ Jenkins=Bestyr Jenkins -Manage\ Plugins=Plugin h\u00E5ndtering +Manage\ Plugins=Plugin hÃ¥ndtering diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_de.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_de.properties index 3a032ca55442..8f211a2a110b 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_de.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_de.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Zurück zur Übersicht +Back\ to\ Dashboard=Zurück zur Ãœbersicht Manage\ Jenkins=Jenkins verwalten Manage\ Plugins=Plugins verwalten diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_el.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_el.properties index eca673e4534d..f88f01dcf757 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_el.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_el.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Manage\ Jenkins=\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 Jenkins +Manage\ Jenkins=ΔιαχείÏιση Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_fi.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_fi.properties index 59bbb8039c91..6bfd131b4182 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_fi.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_fi.properties @@ -22,4 +22,4 @@ Back\ to\ Dashboard=Takaisin kojetauluun Manage\ Jenkins=Hallitse Jenkinsia -Manage\ Plugins=Hallitse liit\u00E4nn\u00E4isi\u00E4 +Manage\ Plugins=Hallitse liitännäisiä diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_he.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_he.properties index b124d86aa3ff..8b946baae5fe 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_he.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_he.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u05D7\u05D6\u05E8\u05D4 \u05DC\u05DE\u05E1\u05DA \u05D4\u05E8\u05D0\u05E9\u05D9 -Manage\ Jenkins=\u05E0\u05D4\u05DC \u05D0\u05EA \u05D2''\u05E0\u05E7\u05D9\u05E0\u05E1 -Manage\ Plugins=\u05E0\u05D4\u05DC \u05EA\u05D5\u05E1\u05E4\u05D9\u05DD +Back\ to\ Dashboard=חזרה למסך הר×שי +Manage\ Jenkins=נהל ×ת ×’''נקינס +Manage\ Plugins=נהל ×ª×•×¡×¤×™× diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_hu.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_hu.properties index d7e44ec9c2c3..50cf06894a8c 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_hu.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_hu.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Vissza a kezel\u0151fel\u00FCletre -Manage\ Jenkins=Jenkins kezel\u00E9se -Manage\ Plugins=Pluginok kezel\u00E9se +Back\ to\ Dashboard=Vissza a kezelÅ‘felületre +Manage\ Jenkins=Jenkins kezelése +Manage\ Plugins=Pluginok kezelése diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_it.properties index a019c4944efa..f1af0af2295c 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ja.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ja.properties index 6b9d82370b74..32a1cf3c36d8 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ja.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3078\u623B\u308B -Manage\ Jenkins=Jenkins\u306e\u7ba1\u7406 -Manage\ Plugins=\u30D7\u30E9\u30B0\u30A4\u30F3\u306E\u7BA1\u7406 +Back\ to\ Dashboard=ダッシュボードã¸æˆ»ã‚‹ +Manage\ Jenkins=Jenkinsã®ç®¡ç† +Manage\ Plugins=プラグインã®ç®¡ç† diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ko.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ko.properties index 38d66ae7b4b4..691b4401a544 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ko.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ko.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\uB300\uC2DC\uBCF4\uB4DC\uB85C \uC774\uB3D9 -Manage\ Jenkins=Jenkins \uAD00\uB9AC -Manage\ Plugins=\uD50C\uB7EC\uADF8\uC778 \uAD00\uB9AC +Back\ to\ Dashboard=대시보드로 ì´ë™ +Manage\ Jenkins=Jenkins 관리 +Manage\ Plugins=í”ŒëŸ¬ê·¸ì¸ ê´€ë¦¬ diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_lv.properties index a47c3c82a1a6..c770bf33e4e2 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_lv.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_lv.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Atpaka\u013C uz Darbvirsmu -Manage\ Jenkins=P\u0101rvald\u012Bt Jenkins -Manage\ Plugins=P\u0101rvald\u012Bt Spraud\u0146us +Back\ to\ Dashboard=Atpakaļ uz Darbvirsmu +Manage\ Jenkins=PÄrvaldÄ«t Jenkins +Manage\ Plugins=PÄrvaldÄ«t Spraudņus diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pl.properties index c462b7ebb4a5..d092db726710 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Powr\u00F3t do tablicy -Manage\ Jenkins=Zarz\u0105dzaj Jenkinsem -Manage\ Plugins=Zarz\u0105dzaj wtyczkami +Back\ to\ Dashboard=Powrót do tablicy +Manage\ Jenkins=ZarzÄ…dzaj Jenkinsem +Manage\ Plugins=ZarzÄ…dzaj wtyczkami diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pt_PT.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pt_PT.properties index e52388d4cfd7..71548bd14427 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pt_PT.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pt_PT.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Voltar \u00E0 P\u00E1gina Inicial +Back\ to\ Dashboard=Voltar à Página Inicial Manage\ Jenkins=Gerir o Jenkins -Manage\ Plugins=Gerir Extens\u00F5es +Manage\ Plugins=Gerir Extensões diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ru.properties index 9a0cbc96fc3d..9149322b73a3 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u0412\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f \u043a \u0433\u043b\u0430\u0432\u043d\u043e\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 -Manage\ Jenkins=\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c Jenkins -Manage\ Plugins=\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u0430\u043c\u0438 +Back\ to\ Dashboard=ВернутьÑÑ Ðº главной Ñтранице +Manage\ Jenkins=ÐаÑтроить Jenkins +Manage\ Plugins=Управление плагинами diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sk.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sk.properties index 4f85d0e05929..497d3f96683c 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sk.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sk.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Back\ to\ Dashboard=Nasp\u00E4\u0165 na Dashboard +Back\ to\ Dashboard=Naspäť na Dashboard Manage\ Jenkins=Spravuj Jenkins Manage\ Plugins=Spravuj doplnky diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sl.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sl.properties index b0f400a74993..ab561bc95c61 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sl.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Back\ to\ Dashboard=Nazaj na nadzorno plo\u0161\u010Do +Back\ to\ Dashboard=Nazaj na nadzorno ploÅ¡Äo Manage\ Jenkins=Nastavitve Jenkins-a -Manage\ Plugins=Nastavitve vti\u010Dnikov +Manage\ Plugins=Nastavitve vtiÄnikov diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sr.properties index b2340e67976a..dedcf2df6857 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Manage\ Jenkins=\u0423\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 Jenkins-\u043E\u043C -Manage\ Plugins=\u0423\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 \u043C\u043E\u0434\u0443\u043B\u0438\u043C\u0430 -Back\ to\ Dashboard=\u041D\u0430\u0437\u0430\u0434 \u043A\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043D\u0443 \u043F\u0430\u043D\u0435\u043B\u0443 +Manage\ Jenkins=Управљање Jenkins-ом +Manage\ Plugins=Управљање модулима +Back\ to\ Dashboard=Ðазад ка контролну панелу diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_tr.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_tr.properties index 56c5438119d7..18a297a33f2e 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_tr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_tr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Kontrol Merkezi''ne D\u00F6n -Manage\ Jenkins=Jenkins''i Y\u00F6net -Manage\ Plugins=Eklentileri y\u00F6net +Back\ to\ Dashboard=Kontrol Merkezi''ne Dön +Manage\ Jenkins=Jenkins''i Yönet +Manage\ Plugins=Eklentileri yönet diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_uk.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_uk.properties index b23d57c85a56..b8bdbc5d9515 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_uk.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_uk.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Back\ to\ Dashboard=\u041F\u043E\u0432\u0435\u0440\u043D\u0443\u0442\u0438\u0441\u044C \u0434\u043E \u043F\u0430\u043D\u0435\u043B\u0456 \u0437\u0430\u0432\u0434\u0430\u043D\u044C -Manage\ Jenkins=\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 Jenkins -Manage\ Plugins=\u041A\u0435\u0440\u0443\u0432\u0430\u0442\u0438 \u0414\u043E\u0434\u0430\u0442\u043A\u0430\u043C\u0438 +Back\ to\ Dashboard=ПовернутиÑÑŒ до панелі завдань +Manage\ Jenkins=Ðалаштувати Jenkins +Manage\ Plugins=Керувати Додатками diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_zh_TW.properties index 9b5510b5e4f1..6dfb6c82b25d 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_zh_TW.properties @@ -21,6 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Manage\ Jenkins=\u7ba1\u7406 Jenkins -Manage\ Plugins=\u7BA1\u7406\u5916\u639B\u7A0B\u5F0F -Back\ to\ Dashboard=\u8fd4\u56de\u8cc7\u8a0a\u4e3b\u9801 +Manage\ Jenkins=ç®¡ç† Jenkins +Manage\ Plugins=管ç†å¤–æŽ›ç¨‹å¼ +Back\ to\ Dashboard=è¿”å›žè³‡è¨Šä¸»é  diff --git a/core/src/main/resources/hudson/model/UsageStatistics/global_da.properties b/core/src/main/resources/hudson/model/UsageStatistics/global_da.properties index 0bae49e0aab8..f21769467b53 100644 --- a/core/src/main/resources/hudson/model/UsageStatistics/global_da.properties +++ b/core/src/main/resources/hudson/model/UsageStatistics/global_da.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -statsBlurb=Hj\u00e6lp med at g\u00f8re Jenkins bedre ved at sende anonyme brugsstatistiker og nedbrudsrapporter til Jenkins projektet. +statsBlurb=Hjælp med at gøre Jenkins bedre ved at sende anonyme brugsstatistiker og nedbrudsrapporter til Jenkins projektet. diff --git a/core/src/main/resources/hudson/model/UsageStatistics/global_es.properties b/core/src/main/resources/hudson/model/UsageStatistics/global_es.properties index 2d31ac84c7a8..1ae3b8cdd54a 100644 --- a/core/src/main/resources/hudson/model/UsageStatistics/global_es.properties +++ b/core/src/main/resources/hudson/model/UsageStatistics/global_es.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. statsBlurb=\ - La información anónima enviada sobre las estadísticas de uso y los informes de fallos, contribuyen a poder mejorar Jenkins. + La información anónima enviada sobre las estadísticas de uso y los informes de fallos, contribuyen a poder mejorar Jenkins. diff --git a/core/src/main/resources/hudson/model/UsageStatistics/global_fi.properties b/core/src/main/resources/hudson/model/UsageStatistics/global_fi.properties index 8855b0444881..349e62ac21d8 100644 --- a/core/src/main/resources/hudson/model/UsageStatistics/global_fi.properties +++ b/core/src/main/resources/hudson/model/UsageStatistics/global_fi.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -statsBlurb=Auta tekem\u00E4\u00E4n Jenkinsist\u00E4 parempi l\u00E4hett\u00E4m\u00E4ll\u00E4 anonyymi\u00E4 k\u00E4ytt\u00F6 statistiikkaa ja +statsBlurb=Auta tekemään Jenkinsistä parempi lähettämällä anonyymiä käyttö statistiikkaa ja diff --git a/core/src/main/resources/hudson/model/UsageStatistics/global_fr.properties b/core/src/main/resources/hudson/model/UsageStatistics/global_fr.properties index ded0dded5431..f92ad4b58007 100644 --- a/core/src/main/resources/hudson/model/UsageStatistics/global_fr.properties +++ b/core/src/main/resources/hudson/model/UsageStatistics/global_fr.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. statsBlurb=\ - Aidez-nous à améliorer Jenkins en envoyant sous forme anonyme les statistiques d''utilisation et les rapports de crash au projet Jenkins. + Aidez-nous à améliorer Jenkins en envoyant sous forme anonyme les statistiques d''utilisation et les rapports de crash au projet Jenkins. diff --git a/core/src/main/resources/hudson/model/UsageStatistics/global_it.properties b/core/src/main/resources/hudson/model/UsageStatistics/global_it.properties index 76d0041ee308..bf78fd4c547c 100644 --- a/core/src/main/resources/hudson/model/UsageStatistics/global_it.properties +++ b/core/src/main/resources/hudson/model/UsageStatistics/global_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/UsageStatistics/global_ja.properties b/core/src/main/resources/hudson/model/UsageStatistics/global_ja.properties index 21212a097f37..c85e9aa3434e 100644 --- a/core/src/main/resources/hudson/model/UsageStatistics/global_ja.properties +++ b/core/src/main/resources/hudson/model/UsageStatistics/global_ja.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. statsBlurb=\ - \u5229\u7528\u72b6\u6cc1\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u30ec\u30dd\u30fc\u30c8\u3092Jenkins\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306b\u533f\u540d\u3067\u5831\u544a + 利用状æ³ã¨ã‚¯ãƒ©ãƒƒã‚·ãƒ¥ãƒ¬ãƒãƒ¼ãƒˆã‚’Jenkinsプロジェクトã«åŒ¿åã§å ±å‘Š diff --git a/core/src/main/resources/hudson/model/UsageStatistics/global_pt_BR.properties b/core/src/main/resources/hudson/model/UsageStatistics/global_pt_BR.properties index 23e3507025e4..61bf6108db0f 100644 --- a/core/src/main/resources/hudson/model/UsageStatistics/global_pt_BR.properties +++ b/core/src/main/resources/hudson/model/UsageStatistics/global_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -statsBlurb=Ajude o Jenkins a melhorar enviando relat\u00f3rios an\u00f5nimos de erro +statsBlurb=Ajude o Jenkins a melhorar enviando relatórios anõnimos de erro diff --git a/core/src/main/resources/hudson/model/UsageStatistics/global_ru.properties b/core/src/main/resources/hudson/model/UsageStatistics/global_ru.properties index ddbe9e9fc829..982c3571dcc2 100644 --- a/core/src/main/resources/hudson/model/UsageStatistics/global_ru.properties +++ b/core/src/main/resources/hudson/model/UsageStatistics/global_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -statsBlurb=\u0423\u0447\u0430\u0441\u0442\u0432\u043E\u0432\u0430\u0442\u044C \u0432 \u0443\u043B\u0443\u0447\u0448\u0435\u043D\u0438\u0438 Jenkins, \u043F\u043E\u0441\u044B\u043B\u0430\u044F \u0430\u043D\u043E\u043D\u0438\u043C\u043D\u044B\u0435 \u0434\u0430\u043D\u043D\u044B\u0435 \u043F\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u044E \u0438 \u043E\u0442\u0447\u0435\u0442\u044B \u043E \u0441\u0431\u043E\u044F\u0445 Jenkins. +statsBlurb=УчаÑтвовать в улучшении Jenkins, поÑÑ‹Ð»Ð°Ñ Ð°Ð½Ð¾Ð½Ð¸Ð¼Ð½Ñ‹Ðµ данные по иÑпользованию и отчеты о ÑбоÑÑ… Jenkins. diff --git a/core/src/main/resources/hudson/model/UsageStatistics/global_sr.properties b/core/src/main/resources/hudson/model/UsageStatistics/global_sr.properties index c1f91ec46e4a..224df623e14f 100644 --- a/core/src/main/resources/hudson/model/UsageStatistics/global_sr.properties +++ b/core/src/main/resources/hudson/model/UsageStatistics/global_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -statsBlurb=\u041F\u043E\u043C\u043E\u0437\u0438 \u043D\u0430\u043C \u0434\u0430 \u043F\u043E\u0431\u043E\u0459\u0448\u0430\u043C\u043E Jenkins \u0448\u0430\u0459\u0435\u045B\u0438 \u0430\u043D\u043E\u043D\u0438\u043C\u043D\u0435 \u043F\u043E\u0434\u0430\u0442\u043A\u0435 \u043E \u043A\u043E\u0440\u0438\u0448\u045B\u0435\u045A\u0443 \u0438 \u0438\u0437\u0432\u0435\u0448\u0442\u0430\u0458\u0435 \u043E \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0438\u043C\u0430 Jenkins \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0443. +statsBlurb=Помози нам да побољшамо Jenkins шаљећи анонимне податке о коришћењу и извештаје о проблемима Jenkins пројекту. diff --git a/core/src/main/resources/hudson/model/UsageStatistics/global_sv_SE.properties b/core/src/main/resources/hudson/model/UsageStatistics/global_sv_SE.properties index 99f820e08f2f..6a0ff058d53e 100644 --- a/core/src/main/resources/hudson/model/UsageStatistics/global_sv_SE.properties +++ b/core/src/main/resources/hudson/model/UsageStatistics/global_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -statsBlurb=Hj\u00E4lp g\u00F6ra Jenkins b\u00E4ttre genom att skicka anonyma anv\u00E4ndningsstatistik och kraschrapporter till Jenkins projektet. +statsBlurb=Hjälp göra Jenkins bättre genom att skicka anonyma användningsstatistik och kraschrapporter till Jenkins projektet. diff --git a/core/src/main/resources/hudson/model/UsageStatistics/global_zh_TW.properties b/core/src/main/resources/hudson/model/UsageStatistics/global_zh_TW.properties index f0d9f858e634..6d45fa9f65b6 100644 --- a/core/src/main/resources/hudson/model/UsageStatistics/global_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UsageStatistics/global_zh_TW.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. statsBlurb=\ - \u5e6b\u52a9\u6211\u5011\u8b93 Jenkins \u8d8a\u4f86\u8d8a\u597d\uff0c\u5c07\u4e0d\u5305\u542b\u500b\u8cc7\u7684\u4f7f\u7528\u72c0\u6cc1\u7d71\u8a08\u53ca\u932f\u8aa4\u5831\u544a\u56de\u50b3\u5230 Jenkins \u5c08\u6848\u3002 + 幫助我們讓 Jenkins 越來越好,將ä¸åŒ…å«å€‹è³‡çš„使用狀æ³çµ±è¨ˆåŠéŒ¯èª¤å ±å‘Šå›žå‚³åˆ° Jenkins 專案。 diff --git a/core/src/main/resources/hudson/model/User/builds_bg.properties b/core/src/main/resources/hudson/model/User/builds_bg.properties index c1eb64e7be7b..9b9f8e0337bc 100644 --- a/core/src/main/resources/hudson/model/User/builds_bg.properties +++ b/core/src/main/resources/hudson/model/User/builds_bg.properties @@ -22,4 +22,4 @@ # Builds for {0} title=\ - \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f \u0437\u0430 \u201e{0}\u201c + Ð˜Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ Ð·Ð° „{0}“ diff --git a/core/src/main/resources/hudson/model/User/builds_de.properties b/core/src/main/resources/hudson/model/User/builds_de.properties index 7857ba5ef2dc..9ab454aca5d1 100644 --- a/core/src/main/resources/hudson/model/User/builds_de.properties +++ b/core/src/main/resources/hudson/model/User/builds_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=Builds f\u00fcr {0} +title=Builds für {0} diff --git a/core/src/main/resources/hudson/model/User/builds_it.properties b/core/src/main/resources/hudson/model/User/builds_it.properties index 58e9004f15bd..bcb5b63cdb30 100644 --- a/core/src/main/resources/hudson/model/User/builds_it.properties +++ b/core/src/main/resources/hudson/model/User/builds_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/User/builds_ja.properties b/core/src/main/resources/hudson/model/User/builds_ja.properties index 7bbff2210f4e..509f31027c79 100644 --- a/core/src/main/resources/hudson/model/User/builds_ja.properties +++ b/core/src/main/resources/hudson/model/User/builds_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title={0} \u306e\u30d3\u30eb\u30c9 +title={0} ã®ãƒ“ルド diff --git a/core/src/main/resources/hudson/model/User/builds_ko.properties b/core/src/main/resources/hudson/model/User/builds_ko.properties index 2c33002c128f..ba67114576d8 100644 --- a/core/src/main/resources/hudson/model/User/builds_ko.properties +++ b/core/src/main/resources/hudson/model/User/builds_ko.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -title={0}\uC758 \uBE4C\uB4DC \uAE30\uB85D +title={0}ì˜ ë¹Œë“œ ê¸°ë¡ diff --git a/core/src/main/resources/hudson/model/User/builds_lv.properties b/core/src/main/resources/hudson/model/User/builds_lv.properties index 249d8dc1c1f0..a94c687c1ea4 100644 --- a/core/src/main/resources/hudson/model/User/builds_lv.properties +++ b/core/src/main/resources/hudson/model/User/builds_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=B\u016Bv\u0113jumi priek\u0161 {0} +title=BÅ«vÄ“jumi priekÅ¡ {0} diff --git a/core/src/main/resources/hudson/model/User/builds_pl.properties b/core/src/main/resources/hudson/model/User/builds_pl.properties index e95f03aedb77..1b2211c383b2 100644 --- a/core/src/main/resources/hudson/model/User/builds_pl.properties +++ b/core/src/main/resources/hudson/model/User/builds_pl.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -title=Zadania u\u017Cytkownika {0} +title=Zadania użytkownika {0} diff --git a/core/src/main/resources/hudson/model/User/builds_pt_BR.properties b/core/src/main/resources/hudson/model/User/builds_pt_BR.properties index 96eb7ab1d6b9..d215ebe43444 100644 --- a/core/src/main/resources/hudson/model/User/builds_pt_BR.properties +++ b/core/src/main/resources/hudson/model/User/builds_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=constru\u00E7\u00F5es de {0} +title=construções de {0} diff --git a/core/src/main/resources/hudson/model/User/builds_pt_PT.properties b/core/src/main/resources/hudson/model/User/builds_pt_PT.properties index f8242bbd7bfd..c4767b928f21 100644 --- a/core/src/main/resources/hudson/model/User/builds_pt_PT.properties +++ b/core/src/main/resources/hudson/model/User/builds_pt_PT.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -title=Compila\u00E7\u00F5es de {0} +title=Compilações de {0} diff --git a/core/src/main/resources/hudson/model/User/builds_ru.properties b/core/src/main/resources/hudson/model/User/builds_ru.properties index a354c8874d96..85c9b9f80de4 100644 --- a/core/src/main/resources/hudson/model/User/builds_ru.properties +++ b/core/src/main/resources/hudson/model/User/builds_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=\u0421\u0431\u043E\u0440\u043A\u0438 \u0434\u043B\u044F {0} +title=Сборки Ð´Ð»Ñ {0} diff --git a/core/src/main/resources/hudson/model/User/builds_sr.properties b/core/src/main/resources/hudson/model/User/builds_sr.properties index debfdbad945d..f952521b8eca 100644 --- a/core/src/main/resources/hudson/model/User/builds_sr.properties +++ b/core/src/main/resources/hudson/model/User/builds_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -title=\u0418\u0437\u0433\u0440\u0430\u0434\u045A\u0435 \u0437\u0430 {0} +title=Изградње за {0} diff --git a/core/src/main/resources/hudson/model/User/builds_sv_SE.properties b/core/src/main/resources/hudson/model/User/builds_sv_SE.properties index 35fd1123abd1..a839e73ffd20 100644 --- a/core/src/main/resources/hudson/model/User/builds_sv_SE.properties +++ b/core/src/main/resources/hudson/model/User/builds_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=Byggen f\u00F6r {0} +title=Byggen för {0} diff --git a/core/src/main/resources/hudson/model/User/builds_uk.properties b/core/src/main/resources/hudson/model/User/builds_uk.properties index 892bd8cb303c..58828a0718de 100644 --- a/core/src/main/resources/hudson/model/User/builds_uk.properties +++ b/core/src/main/resources/hudson/model/User/builds_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=\u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0438 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 {0} +title=Побудови кориÑтувача {0} diff --git a/core/src/main/resources/hudson/model/User/builds_zh_TW.properties b/core/src/main/resources/hudson/model/User/builds_zh_TW.properties index 44d659ffc534..0496d1e66aad 100644 --- a/core/src/main/resources/hudson/model/User/builds_zh_TW.properties +++ b/core/src/main/resources/hudson/model/User/builds_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title={0} \u7684\u5EFA\u7F6E +title={0} 的建置 diff --git a/core/src/main/resources/hudson/model/User/configure.properties b/core/src/main/resources/hudson/model/User/configure.properties index 0f77c3eab491..d66dc80e6b4c 100644 --- a/core/src/main/resources/hudson/model/User/configure.properties +++ b/core/src/main/resources/hudson/model/User/configure.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=User \u2018{0}\u2019 Configuration +title=User ‘{0}’ Configuration Full\ name=Full Name diff --git a/core/src/main/resources/hudson/model/User/configure_bg.properties b/core/src/main/resources/hudson/model/User/configure_bg.properties index 5770347ec5ce..bacad06f736c 100644 --- a/core/src/main/resources/hudson/model/User/configure_bg.properties +++ b/core/src/main/resources/hudson/model/User/configure_bg.properties @@ -21,11 +21,11 @@ # THE SOFTWARE. Description=\ - \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 + ОпиÑание Full\ name=\ - \u041f\u044a\u043b\u043d\u043e \u0438\u043c\u0435 -# User \u2018{0}\u2019 Configuration + Пълно име +# User ‘{0}’ Configuration title=\ - \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0437\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u201e{0}\u201c + ÐаÑтройки за Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñ â€ž{0}“ Save=\ - \u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 + Запазване diff --git a/core/src/main/resources/hudson/model/User/configure_ca.properties b/core/src/main/resources/hudson/model/User/configure_ca.properties index 2fcaf9d8c41a..aad7c2e559ef 100644 --- a/core/src/main/resources/hudson/model/User/configure_ca.properties +++ b/core/src/main/resources/hudson/model/User/configure_ca.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Description=Descripci\u00f3 +Description=Descripció Full\ name=Nom diff --git a/core/src/main/resources/hudson/model/User/configure_cs.properties b/core/src/main/resources/hudson/model/User/configure_cs.properties index 183dc1493cc3..541815f7d164 100644 --- a/core/src/main/resources/hudson/model/User/configure_cs.properties +++ b/core/src/main/resources/hudson/model/User/configure_cs.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Description=Popis -Save=Ulo\u017eit -Full\ name=Jm\u00e9no +Save=Uložit +Full\ name=Jméno diff --git a/core/src/main/resources/hudson/model/User/configure_de.properties b/core/src/main/resources/hudson/model/User/configure_de.properties index d54581b18d81..4448b8c62978 100644 --- a/core/src/main/resources/hudson/model/User/configure_de.properties +++ b/core/src/main/resources/hudson/model/User/configure_de.properties @@ -23,4 +23,4 @@ Full\ name=Ihr Name Description=Beschreibung Save=Speichern -title=Benutzer \u201E{0}\u201C konfigurieren +title=Benutzer „{0}“ konfigurieren diff --git a/core/src/main/resources/hudson/model/User/configure_es.properties b/core/src/main/resources/hudson/model/User/configure_es.properties index 41ea4e011049..76ba23330c2f 100644 --- a/core/src/main/resources/hudson/model/User/configure_es.properties +++ b/core/src/main/resources/hudson/model/User/configure_es.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=Configuraci\u00f3n del usuario: ''{0}'' +title=Configuración del usuario: ''{0}'' Full\ name=Nombre Save=Guardar -Description=Descripci\u00f3n +Description=Descripción diff --git a/core/src/main/resources/hudson/model/User/configure_fr.properties b/core/src/main/resources/hudson/model/User/configure_fr.properties index 28b0c59bfdee..8ec32b9d88a6 100644 --- a/core/src/main/resources/hudson/model/User/configure_fr.properties +++ b/core/src/main/resources/hudson/model/User/configure_fr.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Full\ name=Votre nom -Description=Pr\u00e9sentation +Description=Présentation Save=Sauvegarder title=Configuration de l''utilisateur ''{0}'' diff --git a/core/src/main/resources/hudson/model/User/configure_hu.properties b/core/src/main/resources/hudson/model/User/configure_hu.properties index ed58ccbc70bf..6e8cb34dc914 100644 --- a/core/src/main/resources/hudson/model/User/configure_hu.properties +++ b/core/src/main/resources/hudson/model/User/configure_hu.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Description=Le\u00edr\u00e1s -Full\ name=\u00d6n neve +Description=Leírás +Full\ name=Ön neve diff --git a/core/src/main/resources/hudson/model/User/configure_it.properties b/core/src/main/resources/hudson/model/User/configure_it.properties index fdd9292cf7c1..015fc76eb7c3 100644 --- a/core/src/main/resources/hudson/model/User/configure_it.properties +++ b/core/src/main/resources/hudson/model/User/configure_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/User/configure_ja.properties b/core/src/main/resources/hudson/model/User/configure_ja.properties index b74d4ecec1a4..efcc432364b9 100644 --- a/core/src/main/resources/hudson/model/User/configure_ja.properties +++ b/core/src/main/resources/hudson/model/User/configure_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Full\ name=\u3042\u306a\u305f\u306e\u540d\u524d -Description=\u8aac\u660e -Save=\u4fdd\u5b58 -title=\u30e6\u30fc\u30b6\u30fc ''{0}'' \u306e\u8a2d\u5b9a +Full\ name=ã‚ãªãŸã®åå‰ +Description=説明 +Save=ä¿å­˜ +title=ユーザー ''{0}'' ã®è¨­å®š diff --git a/core/src/main/resources/hudson/model/User/configure_ko.properties b/core/src/main/resources/hudson/model/User/configure_ko.properties index b14b4b01729b..fd0ca539d7d9 100644 --- a/core/src/main/resources/hudson/model/User/configure_ko.properties +++ b/core/src/main/resources/hudson/model/User/configure_ko.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Description=\uc18c\uac1c -Full\ name=\uc774\ub984 +Description=소개 +Full\ name=ì´ë¦„ diff --git a/core/src/main/resources/hudson/model/User/configure_lv.properties b/core/src/main/resources/hudson/model/User/configure_lv.properties index 76a3cc2eaebc..8b6a605fe690 100644 --- a/core/src/main/resources/hudson/model/User/configure_lv.properties +++ b/core/src/main/resources/hudson/model/User/configure_lv.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Description=Apraksts -Save=Saglab\u0101t -Full\ name=Tavs v\u0101rds +Save=SaglabÄt +Full\ name=Tavs vÄrds diff --git a/core/src/main/resources/hudson/model/User/configure_pl.properties b/core/src/main/resources/hudson/model/User/configure_pl.properties index ee7056f22e60..2c63348a17e3 100644 --- a/core/src/main/resources/hudson/model/User/configure_pl.properties +++ b/core/src/main/resources/hudson/model/User/configure_pl.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Description=Opis -Full\ name=Twoje imi\u0119 i nazwisko -# User \u2018{0}\u2019 Configuration -title=Konfiguracja u\u017Cytkownika \u2018{0}\u2019 +Full\ name=Twoje imiÄ™ i nazwisko +# User ‘{0}’ Configuration +title=Konfiguracja użytkownika ‘{0}’ Save=Zapisz diff --git a/core/src/main/resources/hudson/model/User/configure_pt_BR.properties b/core/src/main/resources/hudson/model/User/configure_pt_BR.properties index 65daf31d70d6..c1025982d036 100644 --- a/core/src/main/resources/hudson/model/User/configure_pt_BR.properties +++ b/core/src/main/resources/hudson/model/User/configure_pt_BR.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Full\ name=Seu nome -Description=Descri\u00e7\u00e3o +Description=Descrição Save=Salvar # User ''{0}'' Configuration -title=Configura\u00e7\u00e3o do usu\u00e1rio ''{0}'' +title=Configuração do usuário ''{0}'' diff --git a/core/src/main/resources/hudson/model/User/configure_ru.properties b/core/src/main/resources/hudson/model/User/configure_ru.properties index 4ed90b7af8bf..b05ddbbb49a8 100644 --- a/core/src/main/resources/hudson/model/User/configure_ru.properties +++ b/core/src/main/resources/hudson/model/User/configure_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Full\ name=\u041f\u043e\u043b\u043d\u043e\u0435 \u0438\u043c\u044f -Description=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 -Save=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c +Full\ name=Полное Ð¸Ð¼Ñ +Description=ОпиÑание +Save=Сохранить diff --git a/core/src/main/resources/hudson/model/User/configure_sr.properties b/core/src/main/resources/hudson/model/User/configure_sr.properties index c7fb0bbcca5c..6985fb9f994a 100644 --- a/core/src/main/resources/hudson/model/User/configure_sr.properties +++ b/core/src/main/resources/hudson/model/User/configure_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -title=\u041F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430 \u2018{0}\u2019 -Full\ name=\u0418\u043C\u0435 \u0438 \u043F\u0440\u0435\u0437\u0438\u043C\u0435 -Description=\u041E\u043F\u0438\u0441 -Save=\u0421\u0430\u0447\u0443\u0432\u0430\u0458 +title=Подешавања кориÑника ‘{0}’ +Full\ name=Име и презиме +Description=ÐžÐ¿Ð¸Ñ +Save=Сачувај diff --git a/core/src/main/resources/hudson/model/User/configure_tr.properties b/core/src/main/resources/hudson/model/User/configure_tr.properties index 16d7ca0a0227..66ce578249aa 100644 --- a/core/src/main/resources/hudson/model/User/configure_tr.properties +++ b/core/src/main/resources/hudson/model/User/configure_tr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Full\ name=\u0130sminiz -Description=A\u00e7\u0131klama +Full\ name=Ä°sminiz +Description=Açıklama Save=Kaydet -title=Kullan\u0131c\u0131 ''{0}'' Konfig\u00fcrasyonu +title=Kullanıcı ''{0}'' Konfigürasyonu diff --git a/core/src/main/resources/hudson/model/User/configure_uk.properties b/core/src/main/resources/hudson/model/User/configure_uk.properties index 6c5de975ab53..3dc2751ccdeb 100644 --- a/core/src/main/resources/hudson/model/User/configure_uk.properties +++ b/core/src/main/resources/hudson/model/User/configure_uk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Description=\u041e\u043f\u0438\u0441 -Full\ name=\u0412\u0430\u0448\u0435 \u0456\u043c''\u044f +Description=ÐžÐ¿Ð¸Ñ +Full\ name=Ваше ім''Ñ diff --git a/core/src/main/resources/hudson/model/User/configure_zh_TW.properties b/core/src/main/resources/hudson/model/User/configure_zh_TW.properties index 67f56b774d6c..55957bf76749 100644 --- a/core/src/main/resources/hudson/model/User/configure_zh_TW.properties +++ b/core/src/main/resources/hudson/model/User/configure_zh_TW.properties @@ -20,7 +20,7 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=\u4f7f\u7528\u8005 ''{0}'' \u7684\u8a2d\u5b9a -Full\ name=\u5168\u540d -Description=\u8aaa\u660e -Save=\u5132\u5b58 +title=使用者 ''{0}'' 的設定 +Full\ name=å…¨å +Description=說明 +Save=儲存 diff --git a/core/src/main/resources/hudson/model/User/delete.properties b/core/src/main/resources/hudson/model/User/delete.properties index 64e56c33a03b..bbfbbddef3d9 100644 --- a/core/src/main/resources/hudson/model/User/delete.properties +++ b/core/src/main/resources/hudson/model/User/delete.properties @@ -1 +1 @@ -delete.user=Delete Jenkins user \u2018{0}\u2019? +delete.user=Delete Jenkins user ‘{0}’? diff --git a/core/src/main/resources/hudson/model/User/delete_bg.properties b/core/src/main/resources/hudson/model/User/delete_bg.properties index f369356c7d8d..b013dc42154f 100644 --- a/core/src/main/resources/hudson/model/User/delete_bg.properties +++ b/core/src/main/resources/hudson/model/User/delete_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Are\ you\ sure\ about\ deleting\ the\ user\ from\ Jenkins?=\ - \u0421\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u0438\u0437\u0442\u0440\u0438\u0435\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u043e\u0442 Jenkins? + Сигурни ли Ñте, че иÑкате да изтриете Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñ Ð¾Ñ‚ Jenkins? Yes=\ - \u0414\u0430 + Да diff --git a/core/src/main/resources/hudson/model/User/delete_da.properties b/core/src/main/resources/hudson/model/User/delete_da.properties index 2ddfcd061bcc..20aeedde18da 100644 --- a/core/src/main/resources/hudson/model/User/delete_da.properties +++ b/core/src/main/resources/hudson/model/User/delete_da.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Yes=Ja -delete.user=Er du sikker p\u00e5 at du vil slette brugeren fra Jenkins? ({0}) +delete.user=Er du sikker pÃ¥ at du vil slette brugeren fra Jenkins? ({0}) diff --git a/core/src/main/resources/hudson/model/User/delete_de.properties b/core/src/main/resources/hudson/model/User/delete_de.properties index 2adbdfd815ad..d4c26fcb7952 100644 --- a/core/src/main/resources/hudson/model/User/delete_de.properties +++ b/core/src/main/resources/hudson/model/User/delete_de.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Are\ you\ sure\ about\ deleting\ the\ user\ from\ Jenkins?=\ - Möchten Sie den Benutzer wirklich löschen? + Möchten Sie den Benutzer wirklich löschen? Yes=Ja diff --git a/core/src/main/resources/hudson/model/User/delete_es.properties b/core/src/main/resources/hudson/model/User/delete_es.properties index d923fd0a92eb..8d148da53bcb 100644 --- a/core/src/main/resources/hudson/model/User/delete_es.properties +++ b/core/src/main/resources/hudson/model/User/delete_es.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -delete.user=¿Estás seguro de querer borrar el usuario de Jenkins? ({0}) +delete.user=¿Estás seguro de querer borrar el usuario de Jenkins? ({0}) -Yes=Sí +Yes=Sí diff --git a/core/src/main/resources/hudson/model/User/delete_fr.properties b/core/src/main/resources/hudson/model/User/delete_fr.properties index 61b79dbd1904..7e7f6b1f302a 100644 --- a/core/src/main/resources/hudson/model/User/delete_fr.properties +++ b/core/src/main/resources/hudson/model/User/delete_fr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -delete.user=\u00cates-vous s\u00fbr de vouloir supprimer cet utilisateur de Jenkins? ({0}) +delete.user=Êtes-vous sûr de vouloir supprimer cet utilisateur de Jenkins? ({0}) Yes=Oui diff --git a/core/src/main/resources/hudson/model/User/delete_it.properties b/core/src/main/resources/hudson/model/User/delete_it.properties index ede535b83ac0..9be78c0d0e6c 100644 --- a/core/src/main/resources/hudson/model/User/delete_it.properties +++ b/core/src/main/resources/hudson/model/User/delete_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,4 +22,4 @@ # THE SOFTWARE. delete.user=Eliminare l''utente Jenkins "{0}"? -Yes=Sì +Yes=Sì diff --git a/core/src/main/resources/hudson/model/User/delete_ja.properties b/core/src/main/resources/hudson/model/User/delete_ja.properties index 4ef1ffd07277..9a68545e6d73 100644 --- a/core/src/main/resources/hudson/model/User/delete_ja.properties +++ b/core/src/main/resources/hudson/model/User/delete_ja.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Are\ you\ sure\ about\ deleting\ the\ user\ from\ Jenkins?=\ - Jenkins\u304b\u3089\u30e6\u30fc\u30b6\u30fc\u3092\u524a\u9664\u3057\u3066\u3082\u3088\u308d\u3057\u3044\u3067\u3059\u304b\u3002 -Yes=\u306f\u3044 + Jenkinsã‹ã‚‰ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’削除ã—ã¦ã‚‚よã‚ã—ã„ã§ã™ã‹ã€‚ +Yes=ã¯ã„ diff --git a/core/src/main/resources/hudson/model/User/delete_pt_BR.properties b/core/src/main/resources/hudson/model/User/delete_pt_BR.properties index cc9d362112e2..7d7462470144 100644 --- a/core/src/main/resources/hudson/model/User/delete_pt_BR.properties +++ b/core/src/main/resources/hudson/model/User/delete_pt_BR.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Yes=Sim -delete.user=Tem certeza que deseja excluir esse usu\u00e1rio do Jenkins? ({0}) +delete.user=Tem certeza que deseja excluir esse usuário do Jenkins? ({0}) diff --git a/core/src/main/resources/hudson/model/User/delete_ru.properties b/core/src/main/resources/hudson/model/User/delete_ru.properties index d007de01842c..4a62b5e81628 100644 --- a/core/src/main/resources/hudson/model/User/delete_ru.properties +++ b/core/src/main/resources/hudson/model/User/delete_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Yes=\u0414\u0430 -delete.user=\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u0437 Jenkins? ({0}) +Yes=Да +delete.user=Ð’Ñ‹ уверены, что хотите удалить Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¸Ð· Jenkins? ({0}) diff --git a/core/src/main/resources/hudson/model/User/delete_sk.properties b/core/src/main/resources/hudson/model/User/delete_sk.properties index 3027a16c3f4e..e7aa2a9344ed 100644 --- a/core/src/main/resources/hudson/model/User/delete_sk.properties +++ b/core/src/main/resources/hudson/model/User/delete_sk.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -delete.user=Ste si ist\u00FD vymazan\u00EDm pou\u017E\u00EDvate\u013Ea z Jenkins? ({0}) +delete.user=Ste si istý vymazaním používateľa z Jenkins? ({0}) -Yes=\u00C1no +Yes=Ãno diff --git a/core/src/main/resources/hudson/model/User/delete_sr.properties b/core/src/main/resources/hudson/model/User/delete_sr.properties index c63169855f1d..1ff93ad49a10 100644 --- a/core/src/main/resources/hudson/model/User/delete_sr.properties +++ b/core/src/main/resources/hudson/model/User/delete_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -delete.user=\u0414\u0430 \u043B\u0438 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u0443\u043A\u043B\u043E\u043D\u0438\u0442\u0435 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430 \u0441\u0430 Jenkins? ({0}) +delete.user=Да ли желите да уклоните кориÑника Ñа Jenkins? ({0}) -Yes=\u0414\u0430 +Yes=Да diff --git a/core/src/main/resources/hudson/model/User/delete_zh_TW.properties b/core/src/main/resources/hudson/model/User/delete_zh_TW.properties index 4b0d9a13858a..8d5ee52abea9 100644 --- a/core/src/main/resources/hudson/model/User/delete_zh_TW.properties +++ b/core/src/main/resources/hudson/model/User/delete_zh_TW.properties @@ -1,2 +1,2 @@ -delete.user=\u60a8\u78ba\u5b9a\u8981\u522a\u9664 Jenkins \u4f7f\u7528\u8005\u300c{0}\u300d\u55ce\uff1f -Yes=\u662f +delete.user=您確定è¦åˆªé™¤ Jenkins 使用者「{0}ã€å—Žï¼Ÿ +Yes=是 diff --git a/core/src/main/resources/hudson/model/User/error.jelly b/core/src/main/resources/hudson/model/User/error.jelly new file mode 100644 index 000000000000..b7fbdf852b05 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/error.jelly @@ -0,0 +1,15 @@ + + + + + + + + + + +

    ${%Error}

    +

    ${message}

    + + +
    diff --git a/core/src/main/resources/hudson/model/User/index_bg.properties b/core/src/main/resources/hudson/model/User/index_bg.properties index a8cee7815f65..7d82c30d24ed 100644 --- a/core/src/main/resources/hudson/model/User/index_bg.properties +++ b/core/src/main/resources/hudson/model/User/index_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Jenkins\ User\ Id=\ - \u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u043d\u0430 Jenkins + Идентификатор на потребител на Jenkins Groups=\ - \u0413\u0440\u0443\u043f\u0438 + Групи diff --git a/core/src/main/resources/hudson/model/User/index_cs.properties b/core/src/main/resources/hudson/model/User/index_cs.properties index 350cd8ebc543..a5f445dd1d9b 100644 --- a/core/src/main/resources/hudson/model/User/index_cs.properties +++ b/core/src/main/resources/hudson/model/User/index_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ User\ Id=Jenkins Id u\u017Eivatele +Jenkins\ User\ Id=Jenkins Id uživatele diff --git a/core/src/main/resources/hudson/model/User/index_el.properties b/core/src/main/resources/hudson/model/User/index_el.properties index 2eab362d0cb8..b8d01e772cef 100644 --- a/core/src/main/resources/hudson/model/User/index_el.properties +++ b/core/src/main/resources/hudson/model/User/index_el.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Jenkins\ User\ Id=\u039A\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u03A7\u03C1\u03AE\u03C3\u03C4\u03B7 Jenkins +Jenkins\ User\ Id=Κωδικός ΧÏήστη Jenkins diff --git a/core/src/main/resources/hudson/model/User/index_fi.properties b/core/src/main/resources/hudson/model/User/index_fi.properties index a2c340304fee..4fe2d942ae23 100644 --- a/core/src/main/resources/hudson/model/User/index_fi.properties +++ b/core/src/main/resources/hudson/model/User/index_fi.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ User\ Id=Jenkins k\u00E4ytt\u00E4j\u00E4tunnus +Jenkins\ User\ Id=Jenkins käyttäjätunnus diff --git a/core/src/main/resources/hudson/model/User/index_hu.properties b/core/src/main/resources/hudson/model/User/index_hu.properties index 1cf6a37c1a74..94c8b307d473 100644 --- a/core/src/main/resources/hudson/model/User/index_hu.properties +++ b/core/src/main/resources/hudson/model/User/index_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ User\ Id=Jenkins azonos\u00EDt\u00F3 +Jenkins\ User\ Id=Jenkins azonosító diff --git a/core/src/main/resources/hudson/model/User/index_it.properties b/core/src/main/resources/hudson/model/User/index_it.properties index 20587a5d1279..9e18f7b5d749 100644 --- a/core/src/main/resources/hudson/model/User/index_it.properties +++ b/core/src/main/resources/hudson/model/User/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/User/index_ja.properties b/core/src/main/resources/hudson/model/User/index_ja.properties index 94bfe229ff4f..0d5f939253ab 100644 --- a/core/src/main/resources/hudson/model/User/index_ja.properties +++ b/core/src/main/resources/hudson/model/User/index_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ User\ Id=Jenkins \u30e6\u30fc\u30b6\u30fcID -Groups=\u30b0\u30eb\u30fc\u30d7 +Jenkins\ User\ Id=Jenkins ユーザーID +Groups=グループ diff --git a/core/src/main/resources/hudson/model/User/index_ko.properties b/core/src/main/resources/hudson/model/User/index_ko.properties index fd4b8563224e..fbc74429977b 100644 --- a/core/src/main/resources/hudson/model/User/index_ko.properties +++ b/core/src/main/resources/hudson/model/User/index_ko.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Jenkins\ User\ Id=Jenkins \uC0AC\uC6A9\uC790 Id +Jenkins\ User\ Id=Jenkins ì‚¬ìš©ìž Id diff --git a/core/src/main/resources/hudson/model/User/index_lv.properties b/core/src/main/resources/hudson/model/User/index_lv.properties index d51e6e3b1fcb..b245900586f4 100644 --- a/core/src/main/resources/hudson/model/User/index_lv.properties +++ b/core/src/main/resources/hudson/model/User/index_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ User\ Id=Jenkins lietot\u0101ja identifikators +Jenkins\ User\ Id=Jenkins lietotÄja identifikators diff --git a/core/src/main/resources/hudson/model/User/index_pl.properties b/core/src/main/resources/hudson/model/User/index_pl.properties index 8ceaf119dc98..f544ee9d6454 100644 --- a/core/src/main/resources/hudson/model/User/index_pl.properties +++ b/core/src/main/resources/hudson/model/User/index_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. Groups=Grupy -Jenkins\ User\ ID=Identyfikator u\u017Cytkownika Jenkins +Jenkins\ User\ ID=Identyfikator użytkownika Jenkins diff --git a/core/src/main/resources/hudson/model/User/index_pt_BR.properties b/core/src/main/resources/hudson/model/User/index_pt_BR.properties index f5fea2185c1c..d0217572255b 100644 --- a/core/src/main/resources/hudson/model/User/index_pt_BR.properties +++ b/core/src/main/resources/hudson/model/User/index_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Groups=Grupos -Jenkins\ User\ ID=ID\ do\ usu\u00E1rio\ do\ Jenkins +Jenkins\ User\ ID=ID\ do\ usuário\ do\ Jenkins diff --git a/core/src/main/resources/hudson/model/User/index_ru.properties b/core/src/main/resources/hudson/model/User/index_ru.properties index 76f5b39d1ef1..c65f40993dd8 100644 --- a/core/src/main/resources/hudson/model/User/index_ru.properties +++ b/core/src/main/resources/hudson/model/User/index_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Groups=\u0413\u0440\u0443\u043f\u043f\u044b -Jenkins\ User\ Id=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f +Groups=Группы +Jenkins\ User\ Id=Идентификатор Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ diff --git a/core/src/main/resources/hudson/model/User/index_sr.properties b/core/src/main/resources/hudson/model/User/index_sr.properties index 02d606418479..986ce51196f4 100644 --- a/core/src/main/resources/hudson/model/User/index_sr.properties +++ b/core/src/main/resources/hudson/model/User/index_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Groups=\u0413\u0440\u0443\u043F\u0435 -Jenkins\ User\ Id=Jenkins \u0438\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u043E\u043D\u0438 \u0431\u0440\u043E\u0458 +Groups=Групе +Jenkins\ User\ Id=Jenkins идентификациони број diff --git a/core/src/main/resources/hudson/model/User/index_sv_SE.properties b/core/src/main/resources/hudson/model/User/index_sv_SE.properties index b4a0a439a8a5..444b8f7e7392 100644 --- a/core/src/main/resources/hudson/model/User/index_sv_SE.properties +++ b/core/src/main/resources/hudson/model/User/index_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ User\ Id=Jenkins Anv\u00E4ndare Id +Jenkins\ User\ Id=Jenkins Användare Id diff --git a/core/src/main/resources/hudson/model/User/index_tr.properties b/core/src/main/resources/hudson/model/User/index_tr.properties index b9e52dfebc38..e763f02a6eb3 100644 --- a/core/src/main/resources/hudson/model/User/index_tr.properties +++ b/core/src/main/resources/hudson/model/User/index_tr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Jenkins\ User\ Id=Jenkins Kullan\u0131c\u0131 kimli\u011Fi +Jenkins\ User\ Id=Jenkins Kullanıcı kimliÄŸi diff --git a/core/src/main/resources/hudson/model/User/index_uk.properties b/core/src/main/resources/hudson/model/User/index_uk.properties index 9fe4a805d04e..2d855875444b 100644 --- a/core/src/main/resources/hudson/model/User/index_uk.properties +++ b/core/src/main/resources/hudson/model/User/index_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ User\ Id=\u041A\u043E\u0434 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 \u0432 \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441: +Jenkins\ User\ Id=Код кориÑтувача в ДженкінÑ: diff --git a/core/src/main/resources/hudson/model/User/index_zh_TW.properties b/core/src/main/resources/hudson/model/User/index_zh_TW.properties index 6b7b78e1b159..acfe3573dc4c 100644 --- a/core/src/main/resources/hudson/model/User/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/User/index_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ User\ Id=Jenkins \u4f7f\u7528\u8005 ID -Groups=\u7fa4\u7d44 +Jenkins\ User\ Id=Jenkins 使用者 ID +Groups=群組 diff --git a/core/src/main/resources/hudson/model/User/sidepanel.jelly b/core/src/main/resources/hudson/model/User/sidepanel.jelly index 4093ab5ea00a..b321765cf1ab 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel.jelly +++ b/core/src/main/resources/hudson/model/User/sidepanel.jelly @@ -32,7 +32,7 @@ THE SOFTWARE. - + diff --git a/core/src/main/resources/hudson/model/User/sidepanel_bg.properties b/core/src/main/resources/hudson/model/User/sidepanel_bg.properties index 9389f80f6935..91376ba5d1d0 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_bg.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_bg.properties @@ -21,12 +21,12 @@ # THE SOFTWARE. Builds=\ - \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f + Ð˜Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ Configure=\ - \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 + ÐаÑтройки Delete=\ - \u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 + Изтриване People=\ - \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 + Потребители Status=\ - \u0421\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435 + СъÑтоÑние diff --git a/core/src/main/resources/hudson/model/User/sidepanel_cs.properties b/core/src/main/resources/hudson/model/User/sidepanel_cs.properties index 9004423cbb71..909ea881ea83 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_cs.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_cs.properties @@ -23,6 +23,6 @@ Builds=Buildy Configure=Konfigurovat Delete=Smazat -My\ Views=M\u00E9 pohledy -People=Lid\u00E9 +My\ Views=Mé pohledy +People=Lidé Status=Stav diff --git a/core/src/main/resources/hudson/model/User/sidepanel_de.properties b/core/src/main/resources/hudson/model/User/sidepanel_de.properties index d25936351c18..d8655d23594a 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_de.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_de.properties @@ -24,4 +24,4 @@ People=Benutzer Status=Status Builds=Builds Configure=Einstellungen -Delete=Löschen +Delete=Löschen diff --git a/core/src/main/resources/hudson/model/User/sidepanel_el.properties b/core/src/main/resources/hudson/model/User/sidepanel_el.properties index 665bbbd02c71..8c386f54791c 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_el.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_el.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Configure=\u03A0\u03B1\u03C1\u03B1\u03BC\u03B5\u03C4\u03C1\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 -My\ Views=\u039F\u03B9 \u03CC\u03C8\u03B5\u03B9\u03C2 \u03BC\u03BF\u03C5 -People=\u0386\u03BD\u03B8\u03C1\u03C9\u03C0\u03BF\u03B9 -Status=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 +Configure=ΠαÏαμετÏοποίηση +My\ Views=Οι όψεις μου +People=ΆνθÏωποι +Status=Κατάσταση diff --git a/core/src/main/resources/hudson/model/User/sidepanel_fi.properties b/core/src/main/resources/hudson/model/User/sidepanel_fi.properties index 22468d2641ab..45e1fb99415b 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_fi.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_fi.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Builds=K\u00E4\u00E4nn\u00F6kset +Builds=Käännökset Configure=Muokkaa -My\ Views=Omat n\u00E4kym\u00E4t -People=K\u00E4ytt\u00E4j\u00E4t +My\ Views=Omat näkymät +People=Käyttäjät Status=Tila diff --git a/core/src/main/resources/hudson/model/User/sidepanel_hu.properties b/core/src/main/resources/hudson/model/User/sidepanel_hu.properties index 68c47239ca14..33dd47f32604 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_hu.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_hu.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Builds=\u00C9p\u00EDt\u00E9sek -Configure=Konfigur\u00E1l\u00E1s -My\ Views=Saj\u00E1t n\u00E9zet +Builds=Építések +Configure=Konfigurálás +My\ Views=Saját nézet People=Emberek -Status=St\u00E1tusz +Status=Státusz diff --git a/core/src/main/resources/hudson/model/User/sidepanel_it.properties b/core/src/main/resources/hudson/model/User/sidepanel_it.properties index e9a3ac36835d..b6d4a45a871c 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_it.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/User/sidepanel_ja.properties b/core/src/main/resources/hudson/model/User/sidepanel_ja.properties index feb1be7aef7e..c838d84e8acb 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_ja.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_ja.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -People=\u958b\u767a\u8005 -Status=\u72b6\u614b -Builds=\u30d3\u30eb\u30c9 -Configure=\u8a2d\u5b9a -Delete=\u524a\u9664 +People=開発者 +Status=状態 +Builds=ビルド +Configure=設定 +Delete=削除 diff --git a/core/src/main/resources/hudson/model/User/sidepanel_ko.properties b/core/src/main/resources/hudson/model/User/sidepanel_ko.properties index 5e20104125be..c0b62bd6736c 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_ko.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_ko.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Builds=\uBE4C\uB4DC -Configure=\uC124\uC815 -Delete=\uC0AD\uC81C -My\ Views=\uB0B4 \uAE30\uB85D -People=\uC0AC\uC6A9\uC790 -Status=\uC0C1\uD0DC +Builds=빌드 +Configure=설정 +Delete=ì‚­ì œ +My\ Views=ë‚´ ê¸°ë¡ +People=ì‚¬ìš©ìž +Status=ìƒíƒœ diff --git a/core/src/main/resources/hudson/model/User/sidepanel_lt.properties b/core/src/main/resources/hudson/model/User/sidepanel_lt.properties index 903c253b1a79..0819aa84a05d 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_lt.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_lt.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Configure=Konfig\u016Bruoti -People=\u017Dmon\u0117s -Status=B\u016Bsena +Configure=KonfigÅ«ruoti +People=ŽmonÄ—s +Status=BÅ«sena diff --git a/core/src/main/resources/hudson/model/User/sidepanel_lv.properties b/core/src/main/resources/hudson/model/User/sidepanel_lv.properties index 6643b74b61c5..1d7a57ddc0dc 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_lv.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_lv.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Builds=B\u016Bv\u0113jumi -Configure=Konfigur\u0113t -Delete=Dz\u0113st +Builds=BÅ«vÄ“jumi +Configure=KonfigurÄ“t +Delete=DzÄ“st My\ Views=Mani Skati -People=Cilv\u0113ki -Status=St\u0101voklis +People=CilvÄ“ki +Status=StÄvoklis diff --git a/core/src/main/resources/hudson/model/User/sidepanel_pl.properties b/core/src/main/resources/hudson/model/User/sidepanel_pl.properties index aaf743f998aa..5d5e43e3946c 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_pl.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_pl.properties @@ -22,6 +22,6 @@ Builds=Zadania Configure=Konfiguracja -Delete=Usu\u0144 -People=U\u017Cytkownicy +Delete=UsuÅ„ +People=Użytkownicy Status=Status diff --git a/core/src/main/resources/hudson/model/User/sidepanel_pt_BR.properties b/core/src/main/resources/hudson/model/User/sidepanel_pt_BR.properties index 11042b417b35..ad414f437ad2 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_pt_BR.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_pt_BR.properties @@ -22,6 +22,6 @@ People=Pessoas Status=Estado -Builds=constru\u00E7\u00F5es +Builds=construções Configure=Configurar Delete=Remover diff --git a/core/src/main/resources/hudson/model/User/sidepanel_pt_PT.properties b/core/src/main/resources/hudson/model/User/sidepanel_pt_PT.properties index e15d0d8e9f0f..9fd261eb0350 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_pt_PT.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_pt_PT.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Builds=Compila\u00E7\u00F5es +Builds=Compilações Configure=Configurar My\ Views=As Minhas Vistas People=Pessoas diff --git a/core/src/main/resources/hudson/model/User/sidepanel_ru.properties b/core/src/main/resources/hudson/model/User/sidepanel_ru.properties index 2107116a147b..526dedc7d5ef 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_ru.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete=\u0423\u0434\u0430\u043B\u0438\u0442\u044C -My\ Views=\u041C\u043E\u0438 \u0432\u0438\u0434\u044B -People=\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0438 -Status=\u0421\u0442\u0430\u0442\u0443\u0441 -Builds=\u0421\u0431\u043e\u0440\u043a\u0438 -Configure=\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c +Delete=Удалить +My\ Views=Мои виды +People=Пользователи +Status=Ð¡Ñ‚Ð°Ñ‚ÑƒÑ +Builds=Сборки +Configure=ÐаÑтроить diff --git a/core/src/main/resources/hudson/model/User/sidepanel_sk.properties b/core/src/main/resources/hudson/model/User/sidepanel_sk.properties index 6c669b8d322b..db5f95953782 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_sk.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_sk.properties @@ -2,7 +2,7 @@ Builds=Zostavenia Configure=Konfiguruj -Delete=Vyma\u017E -My\ Views=Moje Poh\u013Eadz -People=\u013Dudia +Delete=Vymaž +My\ Views=Moje Pohľadz +People=Ľudia Status=Stav diff --git a/core/src/main/resources/hudson/model/User/sidepanel_sr.properties b/core/src/main/resources/hudson/model/User/sidepanel_sr.properties index c7bf9e97cb81..d53625459d15 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_sr.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_sr.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -People=\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438 -Status=\u0421\u0442\u0430\u045A\u0435 -Builds=\u0418\u0437\u0433\u0440\u0430\u0434\u045Ae -Configure=\u041F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 -Delete=\u0423\u043A\u043B\u043E\u043D\u0438 -My\ Views=\u041C\u043E\u0458\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0438 +People=КориÑници +Status=Стање +Builds=Изградњe +Configure=Подешавања +Delete=Уклони +My\ Views=Моји прегледи diff --git a/core/src/main/resources/hudson/model/User/sidepanel_tr.properties b/core/src/main/resources/hudson/model/User/sidepanel_tr.properties index 865c954d8cd1..c42f4e076c62 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_tr.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_tr.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -My\ Views=Benim G\u00F6r\u00FCn\u00FCmlerim -People=\u0130nsanlar +My\ Views=Benim Görünümlerim +People=Ä°nsanlar Status=Durum -Builds=Yap\u0131land\u0131rmalar -Configure=Konfig\u00fcrasyonu De\u011fi\u015ftir +Builds=Yapılandırmalar +Configure=Konfigürasyonu DeÄŸiÅŸtir diff --git a/core/src/main/resources/hudson/model/User/sidepanel_uk.properties b/core/src/main/resources/hudson/model/User/sidepanel_uk.properties index cf3b0038aeea..c0060e671f6d 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_uk.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_uk.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Builds=\u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0438 -Configure=\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 -My\ Views=\u041C\u043E\u0457 \u0432\u0438\u0434\u0438 -People=\u041B\u044E\u0434\u0438 -Status=\u0421\u0442\u0430\u0442\u0443\u0441 +Builds=Побудови +Configure=Ðалаштувати +My\ Views=Мої види +People=Люди +Status=Ð¡Ñ‚Ð°Ñ‚ÑƒÑ diff --git a/core/src/main/resources/hudson/model/User/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/model/User/sidepanel_zh_TW.properties index 11f5b4dc116d..acbd355b8960 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_zh_TW.properties @@ -21,8 +21,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -People=\u4eba\u54e1 -Status=\u72c0\u614b -Builds=\u5efa\u7f6e -Configure=\u8a2d\u5b9a -Delete=\u522a\u9664 +People=人員 +Status=狀態 +Builds=建置 +Configure=設定 +Delete=刪除 diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index.properties index 228d60ca6627..d1ce57488d14 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Includes all known \u201cusers\u201d, including login identities which the current security realm can enumerate, as well as people mentioned in commit messages in recorded changelogs. +blurb=Includes all known “usersâ€, including login identities which the current security realm can enumerate, as well as people mentioned in commit messages in recorded changelogs. diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_bg.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_bg.properties index 37cf81ebfe97..40bd48a94a9a 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_bg.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_bg.properties @@ -21,17 +21,17 @@ # THE SOFTWARE. Name=\ - \u0418\u043c\u0435 + Име On=\ - \u041d\u0430 + Ðа People=\ - \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 + Потребители All\ People=\ - \u0412\u0441\u0438\u0447\u043a\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 + Ð’Ñички потребители User\ ID=\ - \u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b + Идентификатор на потребител blurb=\ - \u0412\u043a\u043b\u044e\u0447\u0432\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u043f\u043e\u0437\u043d\u0430\u0442\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438, \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u0442\u0435\u0437\u0438, \u043a\u043e\u0438\u0442\u043e \u0442\u0435\u043a\u0443\u0449\u0430\u0442\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\ - \u043c\u043e\u0436\u0435 \u0434\u0430 \u0438\u0437\u0431\u0440\u043e\u0438, \u043a\u0430\u043a\u0442\u043e \u0438 \u0432\u0441\u0438\u0447\u043a\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 \u0443\u043a\u0430\u0437\u0430\u043d\u0438 \u0432 \u0441\u044a\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u0442\u0430 \u043f\u0440\u0438 \u043f\u043e\u0434\u0430\u0432\u0430\u043d\u0435. + Включва вÑички познати потребители, включително тези, които текущата облаÑÑ‚\ + може да изброи, както и вÑички потребители указани в ÑъобщениÑта при подаване. Last\ Commit\ Activity=\ - \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u043f\u043e\u0434\u0430\u0432\u0430\u043d\u0438\u044f + ПоÑледни Ð¿Ð¾Ð´Ð°Ð²Ð°Ð½Ð¸Ñ diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_cs.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_cs.properties index 1b2211e3d495..16b167061cfa 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_cs.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_cs.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Active=Posledn\u00ED aktivita -Name=Jm\u00E9no +Last\ Active=Poslední aktivita +Name=Jméno On=Na -People=Lid\u00E9 -User\ ID=U\u017Eivatelsk\u00E9 ID +People=Lidé +User\ ID=Uživatelské ID diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_da.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_da.properties index f4e1e48d6f89..ed6d847f0cb9 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_da.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_da.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -On=P\u00e5 +On=PÃ¥ Last\ Active=Sidst aktiv People=Personer Name=Navn All\ People=Alle Personer User\ ID=Bruger-ID -blurb=Inkluderer alle kendte "brugere", inklusiv login-identiteter som kan findes ud fra nuv\u00E6rende sikkerhedsniveau samt personer n\u00E6vnt i commit-beskeder i registrerede changelogs. +blurb=Inkluderer alle kendte "brugere", inklusiv login-identiteter som kan findes ud fra nuværende sikkerhedsniveau samt personer nævnt i commit-beskeder i registrerede changelogs. diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_de.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_de.properties index 7451548bafbf..8af7bba54f91 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_de.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_de.properties @@ -25,5 +25,5 @@ On=Job All\ People=Alle Benutzer People=Benutzer User\ ID=Jenkins Benutzer Id -blurb=Beinhaltet alle bekannten Benutzer, einschlie\u00DFlich der Login-Benutzer des aktuellen Sicherheitsbereichs, sowie Namen, die in Commit-Kommentaren von Changelogs erw\u00E4hnt werden. -Last\ Commit\ Activity=Letzte SCM-Aktivit\u00E4t +blurb=Beinhaltet alle bekannten Benutzer, einschließlich der Login-Benutzer des aktuellen Sicherheitsbereichs, sowie Namen, die in Commit-Kommentaren von Changelogs erwähnt werden. +Last\ Commit\ Activity=Letzte SCM-Aktivität diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_el.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_el.properties index d5726bd7a422..16a5bfc622cb 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_el.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_el.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Active=\u03A4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1 \u03C7\u03C1\u03BF\u03BD\u03B9\u03BA\u03AE \u03B5\u03BD\u03B5\u03C1\u03B3\u03AE \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC -Name=\u038C\u03BD\u03BF\u03BC\u03B1 -On=\u03A4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1 \u03B5\u03BD\u03B5\u03C1\u03B3\u03AE \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u03C3\u03C4\u03BF project -People=\u0386\u03BD\u03B8\u03C1\u03C9\u03C0\u03BF\u03B9 -User\ ID=Id \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 +Last\ Active=Τελευταία χÏονική ενεÏγή αναφοÏά +Name=Όνομα +On=Τελευταία ενεÏγή αναφοÏά στο project +People=ΆνθÏωποι +User\ ID=Id χÏήστη diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_es.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_es.properties index e3169cefb1d4..61545544d46f 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_es.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_es.properties @@ -27,4 +27,4 @@ All\ People=Todos People=Actividad User\ ID=Nombre de Usario -blurb=Incluye todos los "usuarios" conocidos, incluyendo las identidades de acceso que se pueden enumerar en el dominio de seguridad actual, as\u00ED como las personas mencionadas en los mensajes de confirmaci\u00F3n en los registros de cambios registrados. +blurb=Incluye todos los "usuarios" conocidos, incluyendo las identidades de acceso que se pueden enumerar en el dominio de seguridad actual, así como las personas mencionadas en los mensajes de confirmación en los registros de cambios registrados. diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_es_AR.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_es_AR.properties index 36c7f14c1076..db524a5562ab 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_es_AR.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_es_AR.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Last\ Active=\u00FAltimo activo +Last\ Active=último activo Name=Nombre People=Personas User\ ID=ID del usuario diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_fi.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_fi.properties index 5dba6e4b1d53..c48ca62c18dd 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_fi.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_fi.properties @@ -22,6 +22,6 @@ Last\ Active=Viimeksi Aktiivisena Name=Nimi -On=Viimeksi Aktiivinen Ty\u00F6 -People=K\u00E4ytt\u00E4j\u00E4t -User\ ID=K\u00E4ytt\u00E4j\u00E4tunnus +On=Viimeksi Aktiivinen Työ +People=Käyttäjät +User\ ID=Käyttäjätunnus diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_fr.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_fr.properties index bb620a2dc18e..3948f05845d8 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_fr.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_fr.properties @@ -22,8 +22,8 @@ Name=Nom complet All\ People=Tout le monde -Last\ Commit\ Activity=Derni\u00e8re activit\u00E9 de commit +Last\ Commit\ Activity=Dernière activité de commit On=Sur People=Utilisateurs User\ ID=Identifiant -blurb=Inclus tout les utilisateurs connus, ce qui comprend les login que le domaine de s\u00E9curit\u00E9 (security realm) actuel peut \u00E9num\u00E9rer, ainsi que les personnes mentionn\u00E9(e)s dans les message de commit reli\u00E9s au changelogs. +blurb=Inclus tout les utilisateurs connus, ce qui comprend les login que le domaine de sécurité (security realm) actuel peut énumérer, ainsi que les personnes mentionné(e)s dans les message de commit reliés au changelogs. diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_hu.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_hu.properties index 1204de4b64e2..339ce0c362e1 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_hu.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_hu.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -All\ People=Minden Felhaszn\u00E1l\u00F3 -Last\ Active=Utols\u00F3 aktivit\u00E1s -Name=N\u00E9v +All\ People=Minden Felhasználó +Last\ Active=Utolsó aktivitás +Name=Név On=Ebben People=Emberek -User\ ID=Felhaszn\u00E1l\u00F3 azonos\u00EDt\u00F3 +User\ ID=Felhasználó azonosító diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_it.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_it.properties index d34c801f2ab6..75fc5138b0b3 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_it.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,10 +22,10 @@ # THE SOFTWARE. All\ People=Tutte le persone -blurb=Include tutti gli "utenti" noti, incluse le identità di accesso \ - enumerabili dall''area di autenticazione corrente, così come le persone \ +blurb=Include tutti gli "utenti" noti, incluse le identità di accesso \ + enumerabili dall''area di autenticazione corrente, così come le persone \ menzionate nei messaggi di commit nei log delle modifiche registrati. -Last\ Commit\ Activity=Ultima attività di commit +Last\ Commit\ Activity=Ultima attività di commit Name=Nome On=Il People=Persone diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_ja.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_ja.properties index 06e6427d2065..f1f1830da650 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_ja.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_ja.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -User\ ID=\u30e6\u30fc\u30b6\u30fcID -Name=\u540d\u524d -Last\ Active=\u6700\u8fd1\u306e\u6d3b\u52d5 -On=\u5834\u6240 -People=\u958b\u767a\u8005 -All\ People=\u3059\u3079\u3066 +User\ ID=ユーザーID +Name=åå‰ +Last\ Active=最近ã®æ´»å‹• +On=場所 +People=開発者 +All\ People=ã™ã¹ã¦ diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_ko.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_ko.properties index cdc20f664691..7225f7473521 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_ko.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_ko.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Active=\uB9C8\uC9C0\uB9C9 \uD65C\uB3D9\uC0AC\uD56D -Name=\uC774\uB984 -On=\uC811\uC18D \uC911 -People=\uC0AC\uC6A9\uC790 +Last\ Active=마지막 활ë™ì‚¬í•­ +Name=ì´ë¦„ +On=ì ‘ì† ì¤‘ +People=ì‚¬ìš©ìž diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_lv.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_lv.properties index eb87dd8e7aec..1536d568d459 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_lv.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_lv.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -All\ People=Visi cilv\u0113ki -Last\ Active=Ped\u0113j\u0101 aktivit\u0101te -Name=V\u0101rds +All\ People=Visi cilvÄ“ki +Last\ Active=PedÄ“jÄ aktivitÄte +Name=VÄrds On=Uz -People=Cilv\u0113ki -User\ ID=Lietot\u0101ja identifikators +People=CilvÄ“ki +User\ ID=LietotÄja identifikators diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_nb_NO.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_nb_NO.properties index 1bf1361e303d..a7af7e75b9f6 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_nb_NO.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_nb_NO.properties @@ -22,6 +22,6 @@ Last\ Active=Sist aktiv Name=Navn -On=P\u00E5 +On=PÃ¥ People=Folk User\ ID=Bruker Id diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_nl.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_nl.properties index 8d3da753d0f5..3c17f0fb77b9 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_nl.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_nl.properties @@ -26,4 +26,4 @@ Last\ Active=Laatst actief On= People=Mensen User\ ID=Id gebruiker -blurb=Dit zijn alle bekende \u201Cgebruikers\u201D, inclusief geregistreerde inloggers, plus alle mensen genoemd in wijzingings logboeken die wijzinging hebben gedaan. +blurb=Dit zijn alle bekende “gebruikersâ€, inclusief geregistreerde inloggers, plus alle mensen genoemd in wijzingings logboeken die wijzinging hebben gedaan. diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_pl.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_pl.properties index 72113ae5fb7f..48e1674d41a8 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_pl.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_pl.properties @@ -22,7 +22,7 @@ Name=Nazwa On=Na -People=U\u017Cytkownicy -User\ ID=Identyfikator u\u017Cytkownika +People=Użytkownicy +User\ ID=Identyfikator użytkownika Last\ Commit\ Activity=Ostatnia zmiana -blurb=Prezentuje wszystkich uwierzytelnionych u\u017Cytkownik\u00F3w w\u0142\u0105cznie z identyfikatorem oraz osoby wymienione w opisach zarejestrowanych zmian. +blurb=Prezentuje wszystkich uwierzytelnionych użytkowników wÅ‚Ä…cznie z identyfikatorem oraz osoby wymienione w opisach zarejestrowanych zmian. diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_pt_BR.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_pt_BR.properties index 4b08d44a7031..98a0c2a55fe9 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_pt_BR.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_pt_BR.properties @@ -24,6 +24,6 @@ Name=Nome On=Em People=Pessoas All\ People=Todas as pessoas -User\ ID=ID do usu\u00E1rio -blurb=Inclui todos os "usu\u00E1rios" conhecidos, incluindo identidades de usu\u00E1rios as quais o dom\u00EDnio de seguran\u00E7a consegue enumerar, assim como pessoas mencionadas nas mensagens de confirma\u00E7\u00E3o nos registros de mudan\u00E7as gravados. -Last\ Commit\ Activity=\u00DAltima\ atividade\ de\ confirma\u00E7\u00E3o +User\ ID=ID do usuário +blurb=Inclui todos os "usuários" conhecidos, incluindo identidades de usuários as quais o domínio de segurança consegue enumerar, assim como pessoas mencionadas nas mensagens de confirmação nos registros de mudanças gravados. +Last\ Commit\ Activity=Última\ atividade\ de\ confirmação diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_ro.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_ro.properties index 08df8df5d343..ef46912cd104 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_ro.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_ro.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Active=Activ ultima oar\u0103 +Last\ Active=Activ ultima oară Name=Nume On=Pe People=Contribuitori diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_ru.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_ru.properties index 6365cbe7ac7d..260b37f026fe 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_ru.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_ru.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u0418\u043c\u044f -All\ People=\u0412\u0441\u0435 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0438 -Last\ Commit\ Activity=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c -On=\u041F\u0440\u043E\u0435\u043A\u0442 -People=\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0438 -User\ Id=\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C -blurb=\u0422\u0430\u0431\u043B\u0438\u0446\u0430 \u0432\u043A\u043B\u044E\u0447\u0430\u0435\u0442 \u0432\u0441\u0435\u0445 \u0438\u0437\u0432\u0435\u0441\u0442\u043D\u044B\u0445 Jenkins \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0435\u0439, \u0432\u043A\u043B\u044E\u0447\u0430\u044F \u0432\u0441\u0435\u0445 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0435\u0439, \u043A\u043E\u0442\u043E\u0440\u044B\u0445 \u0442\u0435\u043A\u0443\u0449\u0430\u044F \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u0438 \u043C\u043E\u0436\u0435\u0442 \u043F\u0435\u0440\u0435\u0447\u0438\u0441\u043B\u0438\u0442\u044C, \u0442\u0430\u043A \u0436\u0435 \u0437\u0434\u0435\u0441\u044C \u043F\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044E\u0442 \u0432\u0441\u0435 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0438, \u0443\u043F\u043E\u043C\u044F\u043D\u0443\u0442\u044B\u0435 \u0432 \u0441\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u044F\u0445 \u043A\u043E\u043C\u043C\u0438\u0442\u043E\u0432 \u0432 \u0437\u0430\u043F\u0438\u0441\u0430\u043D\u043D\u044B\u0445 \u043B\u043E\u0433\u0430\u0445 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u0439. +Name=Ð˜Ð¼Ñ +All\ People=Ð’Ñе пользователи +Last\ Commit\ Activity=ПоÑледнÑÑ Ð°ÐºÑ‚Ð¸Ð²Ð½Ð¾ÑÑ‚ÑŒ +On=Проект +People=Пользователи +User\ Id=Пользователь +blurb=Таблица включает вÑех извеÑтных Jenkins пользователей, Ð²ÐºÐ»ÑŽÑ‡Ð°Ñ Ð²Ñех пользователей, которых Ñ‚ÐµÐºÑƒÑ‰Ð°Ñ ÑиÑтема аутентификации может перечиÑлить, так же здеÑÑŒ приÑутÑтвуют вÑе пользователи, упомÑнутые в ÑообщениÑÑ… коммитов в запиÑанных логах изменений. diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_sr.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_sr.properties index def84ef624f4..3e082c61fb11 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_sr.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_sr.properties @@ -1,9 +1,9 @@ # This file is under the MIT License by authors -People=\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438 -blurb=\u0422\u0430\u0431\u0435\u043B\u0430 \u0441\u0432\u0438\u0445 Jenkins \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430, \u0443\u043A\u0459\u0443\u0447\u0443\u0458\u0443\u045B\u0438 \u0441\u0432\u0435 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0435 \u043A\u043E\u0458e \u0441\u0438\u0441\u0442\u0435\u043C \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u0458\u0435 \u043C\u043E\u0436\u0435 \u043D\u0430\u0432\u0435\u0441\u0442\u0438, \u0438 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438 \u043D\u0430\u0432\u0435\u0434\u0435\u043D\u0438 \u0443 \u043A\u043E\u043C\u0438\u0442-\u043F\u043E\u0440\u0443\u043A\u0430\u043C\u0430 \u0435\u0432\u0438\u0434\u0435\u043D\u0442\u0438\u0440\u0430\u043D\u0438 \u0443 \u0434\u043D\u0435\u0432\u043D\u0438\u043A\u0430\u043C\u0430 \u043F\u0440\u043E\u043C\u0435\u043D\u0430. -User\ ID=\u0418\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u043E\u043D\u0438 \u0431\u0440\u043E\u0458 -Name=\u0418\u043C\u0435 -Last\ Commit\ Activity=\u0417\u0430\u0434\u045A\u0435 \u0430\u043A\u0442\u0438\u0432\u0430\u043D -On=\u043D\u0430 -All\ People=\u0421\u0432\u0438 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438 +People=КориÑници +blurb=Табела Ñвих Jenkins кориÑника, укључујући Ñве кориÑнике којe ÑиÑтем аутентификације може навеÑти, и кориÑници наведени у комит-порукама евидентирани у дневникама промена. +User\ ID=Идентификациони број +Name=Име +Last\ Commit\ Activity=Задње активан +On=на +All\ People=Сви кориÑници diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_sv_SE.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_sv_SE.properties index 812769679f08..dd77a89fa74f 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_sv_SE.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_sv_SE.properties @@ -23,7 +23,7 @@ All\ People=Alla Personer Last\ Active=Senast aktiv Name=Namn -On=P\u00E5 +On=PÃ¥ People=Personer -User\ ID=Anv\u00E4ndar-ID -blurb=Alla k\u00E4nda "anv\u00E4ndare", inklusive identiteter som det aktuella s\u00E4kerhetsomr\u00E5det kan numrera samt personer n\u00E4mnda i kommit-meddelanden i sparade f\u00F6r\u00E4ndringsloggar. +User\ ID=Användar-ID +blurb=Alla kända "användare", inklusive identiteter som det aktuella säkerhetsomrÃ¥det kan numrera samt personer nämnda i kommit-meddelanden i sparade förändringsloggar. diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_tr.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_tr.properties index 3f272c0f2603..309069440b85 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_tr.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_tr.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u0130sim +Name=Ä°sim Last\ Active=Son Aktif -On=A\u00e7\u0131k -People=\u0130nsanlar -User\ ID=Kullan\u0131c\u0131 ad\u0131 +On=Açık +People=Ä°nsanlar +User\ ID=Kullanıcı adı diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_uk.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_uk.properties index 02444de307d3..64018f44ee7d 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_uk.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_uk.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -Last\ Active=\u0427\u0430\u0441 \u043E\u0441\u0442\u0430\u043D\u043D\u044C\u043E\u0457 \u0430\u043A\u0442\u0438\u0432\u043D\u043E\u0441\u0442\u0456 -Name=\u0406\u043C\u2019\u044F -On=\u041F\u0440\u043E\u0435\u043A\u0442 -People=\u041B\u044E\u0434\u0438 -User\ ID=\u041B\u043E\u0433\u0456\u043D +Last\ Active=Ð§Ð°Ñ Ð¾Ñтанньої активноÑÑ‚Ñ– +Name=Ð†Ð¼â€™Ñ +On=Проект +People=Люди +User\ ID=Логін diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_zh_TW.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_zh_TW.properties index c355f15327e4..6e1cf02e4700 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_zh_TW.properties @@ -20,11 +20,11 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\u5305\u542b\u6240\u6709\u5df2\u77e5\u7684\u300c\u4f7f\u7528\u8005\u300d\uff0c\u6db5\u84cb\u76ee\u524d\u7684\u5b89\u5168\u9818\u57df\u53ef\u5217\u8209\u7684\u767b\u5165\u8eab\u4efd\uff0c\u4ee5\u53ca\u8b8a\u66f4\u8a18\u9304\u4e2d\u63d0\u4ea4\u8a0a\u606f\u88e1\u63d0\u5230\u7684\u4eba\u54e1\u3002 -People=\u4eba\u54e1 -User\ ID=\u4f7f\u7528\u8005 ID -Name=\u540d\u7a31 -Last\ Active=\u6700\u8fd1\u4e00\u6b21\u6d3b\u52d5 -On=\u65bc -All\ People=\u6240\u6709\u4eba\u54e1 -Last\ Commit\ Activity=\u6700\u5f8c\u63d0\u4ea4\u52d5\u614b +blurb=包å«æ‰€æœ‰å·²çŸ¥çš„「使用者ã€ï¼Œæ¶µè“‹ç›®å‰çš„安全領域å¯åˆ—舉的登入身份,以åŠè®Šæ›´è¨˜éŒ„中æ交訊æ¯è£¡æ到的人員。 +People=人員 +User\ ID=使用者 ID +Name=å稱 +Last\ Active=最近一次活動 +On=æ–¼ +All\ People=所有人員 +Last\ Commit\ Activity=最後æ交動態 diff --git a/core/src/main/resources/hudson/model/View/People/index_bg.properties b/core/src/main/resources/hudson/model/View/People/index_bg.properties index 92e26b0d1858..fb5a0f32be4d 100644 --- a/core/src/main/resources/hudson/model/View/People/index_bg.properties +++ b/core/src/main/resources/hudson/model/View/People/index_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. People=\ - \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 + Потребители # Moved to asynchPeople for performance reasons. Moved\ to\ asyncPeople=\ - \u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0435\u043d\u043e \u0432 \u0410\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u043d\u0438 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 \u0432\u044a\u0440\u0445\u0443\ - \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438\u0442\u0435 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u0430 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u043d\u043e\u0441\u0442. + ПремеÑтено в ÐÑинхронни операции върху\ + потребителите за по-добра производителноÑÑ‚. diff --git a/core/src/main/resources/hudson/model/View/People/index_cs.properties b/core/src/main/resources/hudson/model/View/People/index_cs.properties index ddc918c1fa72..410915daefe0 100644 --- a/core/src/main/resources/hudson/model/View/People/index_cs.properties +++ b/core/src/main/resources/hudson/model/View/People/index_cs.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -People=Lid\u00E9 +People=Lidé diff --git a/core/src/main/resources/hudson/model/View/People/index_de.properties b/core/src/main/resources/hudson/model/View/People/index_de.properties index 7ce6bfe7ebf5..08d87a27d3d0 100644 --- a/core/src/main/resources/hudson/model/View/People/index_de.properties +++ b/core/src/main/resources/hudson/model/View/People/index_de.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors People=Benutzer -Moved\ to\ asyncPeople=Aus Performancegr\u00FCnden nach asynchPeople verlegt. +Moved\ to\ asyncPeople=Aus Performancegründen nach asynchPeople verlegt. diff --git a/core/src/main/resources/hudson/model/View/People/index_he.properties b/core/src/main/resources/hudson/model/View/People/index_he.properties index 92492756fbdc..d771d8a36762 100644 --- a/core/src/main/resources/hudson/model/View/People/index_he.properties +++ b/core/src/main/resources/hudson/model/View/People/index_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -People=\u05D0\u05E0\u05E9\u05D9\u05DD +People=×× ×©×™× diff --git a/core/src/main/resources/hudson/model/View/People/index_it.properties b/core/src/main/resources/hudson/model/View/People/index_it.properties index 8ad918495286..64e82f2fb4c2 100644 --- a/core/src/main/resources/hudson/model/View/People/index_it.properties +++ b/core/src/main/resources/hudson/model/View/People/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/View/People/index_ja.properties b/core/src/main/resources/hudson/model/View/People/index_ja.properties index 46ad6088eb83..ad2ac98a0cff 100644 --- a/core/src/main/resources/hudson/model/View/People/index_ja.properties +++ b/core/src/main/resources/hudson/model/View/People/index_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -People=\u958b\u767a\u8005 +People=開発者 diff --git a/core/src/main/resources/hudson/model/View/People/index_pt_BR.properties b/core/src/main/resources/hudson/model/View/People/index_pt_BR.properties index ba7d52c4fa22..fa61837b3523 100644 --- a/core/src/main/resources/hudson/model/View/People/index_pt_BR.properties +++ b/core/src/main/resources/hudson/model/View/People/index_pt_BR.properties @@ -22,4 +22,4 @@ People=Pessoas # Moved to asynchPeople for performance reasons. -Moved\ to\ asyncPeople=Movido para carregamento ass\u00edncrono por uma quest\u00e3o de performance. +Moved\ to\ asyncPeople=Movido para carregamento assíncrono por uma questão de performance. diff --git a/core/src/main/resources/hudson/model/View/People/index_ru.properties b/core/src/main/resources/hudson/model/View/People/index_ru.properties index 8f58b879b8f5..b673262b975a 100644 --- a/core/src/main/resources/hudson/model/View/People/index_ru.properties +++ b/core/src/main/resources/hudson/model/View/People/index_ru.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -People=\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0438 +People=Пользователи diff --git a/core/src/main/resources/hudson/model/View/People/index_sr.properties b/core/src/main/resources/hudson/model/View/People/index_sr.properties index b2ba8ffa19ff..e2ebac6d4480 100644 --- a/core/src/main/resources/hudson/model/View/People/index_sr.properties +++ b/core/src/main/resources/hudson/model/View/People/index_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -People=\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438 -Moved\ to\ asyncPeople=\u041F\u0440\u0435\u043C\u0435\u0448\u045B\u0435\u043D\u043E \u043D\u0430 asyncPeople +People=КориÑници +Moved\ to\ asyncPeople=Премешћено на asyncPeople diff --git a/core/src/main/resources/hudson/model/View/People/index_tr.properties b/core/src/main/resources/hudson/model/View/People/index_tr.properties index 9366dd62645b..db234bdca408 100644 --- a/core/src/main/resources/hudson/model/View/People/index_tr.properties +++ b/core/src/main/resources/hudson/model/View/People/index_tr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -People=Ki\u015Filer +People=KiÅŸiler diff --git a/core/src/main/resources/hudson/model/View/People/index_uk.properties b/core/src/main/resources/hudson/model/View/People/index_uk.properties index 61d0eeae99b6..d9c0e5f762c6 100644 --- a/core/src/main/resources/hudson/model/View/People/index_uk.properties +++ b/core/src/main/resources/hudson/model/View/People/index_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -People=\u041B\u044E\u0434\u0438 +People=Люди diff --git a/core/src/main/resources/hudson/model/View/People/index_zh_TW.properties b/core/src/main/resources/hudson/model/View/People/index_zh_TW.properties index d6051dacdb9c..dd14872f2cf5 100644 --- a/core/src/main/resources/hudson/model/View/People/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/View/People/index_zh_TW.properties @@ -19,5 +19,5 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Moved\ to\ asyncPeople=\u56e0\u70ba\u6548\u80fd\u56e0\u7d20\uff0c\u5df2\u79fb\u52d5\u5230 asynchPeople\u3002 -People=\u4eba\u54e1 +Moved\ to\ asyncPeople=因為效能因素,已移動到 asynchPeople。 +People=人員 diff --git a/core/src/main/resources/hudson/model/View/builds_bg.properties b/core/src/main/resources/hudson/model/View/builds_bg.properties index 905bf14ee08d..f8a02bab1f2e 100644 --- a/core/src/main/resources/hudson/model/View/builds_bg.properties +++ b/core/src/main/resources/hudson/model/View/builds_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Export\ as\ plain\ XML=\ - \u0418\u0437\u043d\u0430\u0441\u044f\u043d\u0435 \u0432 XML + ИзнаÑÑне в XML buildHistory=\ - \u0418\u0441\u0442\u043e\u0440\u0438\u044f \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f\u0442\u0430 \u043d\u0430 \u201e{0}\u201c + ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° изгражданиÑта на „{0}“ diff --git a/core/src/main/resources/hudson/model/View/builds_ca.properties b/core/src/main/resources/hudson/model/View/builds_ca.properties index 09726ae46279..0a4b951c7b7d 100644 --- a/core/src/main/resources/hudson/model/View/builds_ca.properties +++ b/core/src/main/resources/hudson/model/View/builds_ca.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors Export\ as\ plain\ XML=Exportar com XML pla -buildHistory=Historial de construcci\u00F3 de {0} +buildHistory=Historial de construcció de {0} diff --git a/core/src/main/resources/hudson/model/View/builds_cs.properties b/core/src/main/resources/hudson/model/View/builds_cs.properties index 2b9f80c94502..0e5fa25b7ec1 100644 --- a/core/src/main/resources/hudson/model/View/builds_cs.properties +++ b/core/src/main/resources/hudson/model/View/builds_cs.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Export\ as\ plain\ XML=Exportovat jako prost\u00E9 XML -buildHistory=Historie sestaven\u00ED {0} +Export\ as\ plain\ XML=Exportovat jako prosté XML +buildHistory=Historie sestavení {0} diff --git a/core/src/main/resources/hudson/model/View/builds_el.properties b/core/src/main/resources/hudson/model/View/builds_el.properties index 293937cebbff..bf9e04509fae 100644 --- a/core/src/main/resources/hudson/model/View/builds_el.properties +++ b/core/src/main/resources/hudson/model/View/builds_el.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Export\ as\ plain\ XML=\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE \u03C9\u03C2 XML -buildHistory=\u0399\u03C3\u03C4\u03BF\u03C1\u03B9\u03BA\u03CC Build \u03C4\u03BF\u03C5 {0} +Export\ as\ plain\ XML=Εξαγωγή ως XML +buildHistory=ΙστοÏικό Build του {0} diff --git a/core/src/main/resources/hudson/model/View/builds_et.properties b/core/src/main/resources/hudson/model/View/builds_et.properties index c1a9a8aee8fe..fb3d8a80b7ce 100644 --- a/core/src/main/resources/hudson/model/View/builds_et.properties +++ b/core/src/main/resources/hudson/model/View/builds_et.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors Export\ as\ plain\ XML=Eksportdi XML-ina -buildHistory={0} J\u00E4rkude ajalugu +buildHistory={0} Järkude ajalugu diff --git a/core/src/main/resources/hudson/model/View/builds_fi.properties b/core/src/main/resources/hudson/model/View/builds_fi.properties index b93f91e9dde0..0c926f39a30c 100644 --- a/core/src/main/resources/hudson/model/View/builds_fi.properties +++ b/core/src/main/resources/hudson/model/View/builds_fi.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Export\ as\ plain\ XML=Vie XML-muodossa -buildHistory={0} k\u00E4\u00E4nn\u00F6shistoria +buildHistory={0} käännöshistoria diff --git a/core/src/main/resources/hudson/model/View/builds_he.properties b/core/src/main/resources/hudson/model/View/builds_he.properties index 55ec43d1706e..9b02fc6f242a 100644 --- a/core/src/main/resources/hudson/model/View/builds_he.properties +++ b/core/src/main/resources/hudson/model/View/builds_he.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Export\ as\ plain\ XML=\u05D9\u05E6\u05D0 \u05DB-XML -buildHistory=\u05D4\u05D9\u05E1\u05D8\u05D5\u05E8\u05D9\u05EA \u05D1\u05E0\u05D9\u05D4 \u05E2\u05D1\u05D5\u05E8 {0} +Export\ as\ plain\ XML=×™×¦× ×›-XML +buildHistory=היסטורית בניה עבור {0} diff --git a/core/src/main/resources/hudson/model/View/builds_hu.properties b/core/src/main/resources/hudson/model/View/builds_hu.properties index be9ebe100e4f..2486ced0d383 100644 --- a/core/src/main/resources/hudson/model/View/builds_hu.properties +++ b/core/src/main/resources/hudson/model/View/builds_hu.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Export\ as\ plain\ XML=Kiexport\u00E1l\u00E1s sima XML-ben -buildHistory={0} build t\u00F6rt\u00E9nete +Export\ as\ plain\ XML=Kiexportálás sima XML-ben +buildHistory={0} build története diff --git a/core/src/main/resources/hudson/model/View/builds_it.properties b/core/src/main/resources/hudson/model/View/builds_it.properties index b6b46ba35b45..5a5cec5ce030 100644 --- a/core/src/main/resources/hudson/model/View/builds_it.properties +++ b/core/src/main/resources/hudson/model/View/builds_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,6 +22,6 @@ # THE SOFTWARE. buildHistory=Cronologia compilazioni di {0} -disclaimer=Non è garantito che quest''elenco includa tutte le sottoattività \ - eseguite sul nodo; ad esempio, le sottoattività di una pipeline Jenkins non \ +disclaimer=Non è garantito che quest''elenco includa tutte le sottoattività \ + eseguite sul nodo; ad esempio, le sottoattività di una pipeline Jenkins non \ verranno visualizzate. diff --git a/core/src/main/resources/hudson/model/View/builds_ja.properties b/core/src/main/resources/hudson/model/View/builds_ja.properties index 197dfb16e39b..8806f10907f6 100644 --- a/core/src/main/resources/hudson/model/View/builds_ja.properties +++ b/core/src/main/resources/hudson/model/View/builds_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -buildHistory={0}\u306E\u30D3\u30EB\u30C9\u5C65\u6B74 -Export\ as\ plain\ XML=XML\u5F62\u5F0F\u3067\u30A8\u30AF\u30B9\u30DD\u30FC\u30C8 +buildHistory={0}ã®ãƒ“ルド履歴 +Export\ as\ plain\ XML=XMLå½¢å¼ã§ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆ diff --git a/core/src/main/resources/hudson/model/View/builds_ko.properties b/core/src/main/resources/hudson/model/View/builds_ko.properties index 49269a32ad45..856e9b1c7ef4 100644 --- a/core/src/main/resources/hudson/model/View/builds_ko.properties +++ b/core/src/main/resources/hudson/model/View/builds_ko.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Export\ as\ plain\ XML=XML \uBB38\uC11C\uB85C \uBCC0\uD658\uD558\uAE30 -buildHistory={0}\uC758 \uBE4C\uB4DC \uAE30\uB85D +Export\ as\ plain\ XML=XML 문서로 변환하기 +buildHistory={0}ì˜ ë¹Œë“œ ê¸°ë¡ diff --git a/core/src/main/resources/hudson/model/View/builds_lv.properties b/core/src/main/resources/hudson/model/View/builds_lv.properties index ff6757c57d53..3645131f066f 100644 --- a/core/src/main/resources/hudson/model/View/builds_lv.properties +++ b/core/src/main/resources/hudson/model/View/builds_lv.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Export\ as\ plain\ XML=Eksport\u0113t k\u0101 neformat\u0113tu XML -buildHistory={0} B\u016Bv\u0113jumu v\u0113sture +Export\ as\ plain\ XML=EksportÄ“t kÄ neformatÄ“tu XML +buildHistory={0} BÅ«vÄ“jumu vÄ“sture diff --git a/core/src/main/resources/hudson/model/View/builds_nb_NO.properties b/core/src/main/resources/hudson/model/View/builds_nb_NO.properties index e030fed17f1b..efc90f7792bb 100644 --- a/core/src/main/resources/hudson/model/View/builds_nb_NO.properties +++ b/core/src/main/resources/hudson/model/View/builds_nb_NO.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Export\ as\ plain\ XML=Eksport\u00E9r som ren XML +Export\ as\ plain\ XML=Eksportér som ren XML buildHistory=Bygghistorikk for {0} diff --git a/core/src/main/resources/hudson/model/View/builds_pl.properties b/core/src/main/resources/hudson/model/View/builds_pl.properties index 1ab9fce1207c..63ebe8cc9bad 100644 --- a/core/src/main/resources/hudson/model/View/builds_pl.properties +++ b/core/src/main/resources/hudson/model/View/builds_pl.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Export\ as\ plain\ XML=Eksportuj jako XML -buildHistory=Historia zada\u0144 dla widoku {0} +buildHistory=Historia zadaÅ„ dla widoku {0} diff --git a/core/src/main/resources/hudson/model/View/builds_pt_BR.properties b/core/src/main/resources/hudson/model/View/builds_pt_BR.properties index d7c3bd47444a..5833b09b7e77 100644 --- a/core/src/main/resources/hudson/model/View/builds_pt_BR.properties +++ b/core/src/main/resources/hudson/model/View/builds_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -buildHistory=Hist\u00F3rico de constru\u00E7\u00F5es de {0} +buildHistory=Histórico de construções de {0} diff --git a/core/src/main/resources/hudson/model/View/builds_pt_PT.properties b/core/src/main/resources/hudson/model/View/builds_pt_PT.properties index 250436dc2c77..e97d0e3225fe 100644 --- a/core/src/main/resources/hudson/model/View/builds_pt_PT.properties +++ b/core/src/main/resources/hudson/model/View/builds_pt_PT.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors Export\ as\ plain\ XML=Exportar em XML Simples -buildHistory=Hist\u00F3rico de Compila\u00E7\u00F5es de {0} +buildHistory=Histórico de Compilações de {0} diff --git a/core/src/main/resources/hudson/model/View/builds_ru.properties b/core/src/main/resources/hudson/model/View/builds_ru.properties index b4c8900066c2..d057fd569852 100644 --- a/core/src/main/resources/hudson/model/View/builds_ru.properties +++ b/core/src/main/resources/hudson/model/View/builds_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Export\ as\ plain\ XML=\u042D\u043A\u0441\u043F\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0432 XML -buildHistory=\u0418\u0441\u0442\u043e\u0440\u0438\u044f \u0441\u0431\u043e\u0440\u043e\u043a {0} +Export\ as\ plain\ XML=ЭкÑпортировать в XML +buildHistory=ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ñборок {0} diff --git a/core/src/main/resources/hudson/model/View/builds_sk.properties b/core/src/main/resources/hudson/model/View/builds_sk.properties index e056bc15698f..f5559e5baec2 100644 --- a/core/src/main/resources/hudson/model/View/builds_sk.properties +++ b/core/src/main/resources/hudson/model/View/builds_sk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Export\ as\ plain\ XML=Exportova\u0165 vo form\u00E1te XML -buildHistory=Hist\u00F3ria zostaven\u00ED +Export\ as\ plain\ XML=ExportovaÅ¥ vo formáte XML +buildHistory=História zostavení diff --git a/core/src/main/resources/hudson/model/View/builds_sr.properties b/core/src/main/resources/hudson/model/View/builds_sr.properties index e8da756a6969..ddea45addd7b 100644 --- a/core/src/main/resources/hudson/model/View/builds_sr.properties +++ b/core/src/main/resources/hudson/model/View/builds_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -buildHistory=\u0418\u0441\u0442\u043E\u0440\u0438\u0458\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 {0} -Export\ as\ plain\ XML=\u0418\u0437\u0432\u0435\u0437\u0438 \u0443 \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u043D\u043E\u043C XML \u0444\u043E\u0440\u043C\u0430\u0442\u0443 +buildHistory=ИÑторија изградње {0} +Export\ as\ plain\ XML=Извези у Ñтандардном XML формату diff --git a/core/src/main/resources/hudson/model/View/builds_sv_SE.properties b/core/src/main/resources/hudson/model/View/builds_sv_SE.properties index 2d3174d6c3a4..c4f91f2dbfc0 100644 --- a/core/src/main/resources/hudson/model/View/builds_sv_SE.properties +++ b/core/src/main/resources/hudson/model/View/builds_sv_SE.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Export\ as\ plain\ XML=Exportera till XML -buildHistory=Bygghistorik f\u00F6r {0} +buildHistory=Bygghistorik för {0} diff --git a/core/src/main/resources/hudson/model/View/builds_tr.properties b/core/src/main/resources/hudson/model/View/builds_tr.properties index 062834b187c5..259880b568d8 100644 --- a/core/src/main/resources/hudson/model/View/builds_tr.properties +++ b/core/src/main/resources/hudson/model/View/builds_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Export\ as\ plain\ XML=Sade XML olarak d\u0131\u015Far\u0131 ver -buildHistory={0} yap\u0131land\u0131rmas\u0131n\u0131n ge\u00e7mi\u015fi +Export\ as\ plain\ XML=Sade XML olarak dışarı ver +buildHistory={0} yapılandırmasının geçmiÅŸi diff --git a/core/src/main/resources/hudson/model/View/builds_uk.properties b/core/src/main/resources/hudson/model/View/builds_uk.properties index 57f997a09236..c2b338d8ca36 100644 --- a/core/src/main/resources/hudson/model/View/builds_uk.properties +++ b/core/src/main/resources/hudson/model/View/builds_uk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Export\ as\ plain\ XML=\u0415\u043A\u0441\u043F\u043E\u0440\u0442\u0443\u0432\u0430\u0442\u0438 \u044F\u043A \u043F\u0440\u043E\u0441\u0442\u0438\u0439 XML -buildHistory=\u0406\u0442\u043E\u0440\u0456\u044F \u043F\u043E\u0431\u0443\u0434\u043E\u0432 {0} +Export\ as\ plain\ XML=ЕкÑпортувати Ñк проÑтий XML +buildHistory=Ð†Ñ‚Ð¾Ñ€Ñ–Ñ Ð¿Ð¾Ð±ÑƒÐ´Ð¾Ð² {0} diff --git a/core/src/main/resources/hudson/model/View/builds_zh_TW.properties b/core/src/main/resources/hudson/model/View/builds_zh_TW.properties index 751abc5f50c6..9c0192f49dd9 100644 --- a/core/src/main/resources/hudson/model/View/builds_zh_TW.properties +++ b/core/src/main/resources/hudson/model/View/builds_zh_TW.properties @@ -19,5 +19,5 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -buildHistory={0} \u7684\u5efa\u7f6e\u6b77\u7a0b -Export\ as\ plain\ XML=\u532f\u51fa\u6210 XML +buildHistory={0} 的建置歷程 +Export\ as\ plain\ XML=åŒ¯å‡ºæˆ XML diff --git a/core/src/main/resources/hudson/model/View/configure_bg.properties b/core/src/main/resources/hudson/model/View/configure_bg.properties index 4467f1c72863..d9e2b63c0d23 100644 --- a/core/src/main/resources/hudson/model/View/configure_bg.properties +++ b/core/src/main/resources/hudson/model/View/configure_bg.properties @@ -21,16 +21,16 @@ # THE SOFTWARE. Filter\ build\ queue=\ - \u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043e\u043f\u0430\u0448\u043a\u0430\u0442\u0430 \u0441 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f + Филтриране на опашката Ñ Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ Name=\ - \u0418\u043c\u0435 + Име OK=\ - \u0414\u043e\u0431\u0440\u0435 + Добре Edit\ View=\ - \u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u043b\u0435\u0434\u0430 + Редактиране на изгледа Filter\ build\ executors=\ - \u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u0449\u0438\u0442\u0435 \u043c\u0430\u0448\u0438\u043d\u0438 + Филтриране на изграждащите машини Description=\ - \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 + ОпиÑание Apply=\ - \u041f\u0440\u0438\u043b\u0430\u0433\u0430\u043d\u0435 + Прилагане diff --git a/core/src/main/resources/hudson/model/View/configure_cs.properties b/core/src/main/resources/hudson/model/View/configure_cs.properties index c93894fd127f..6b09fcbb4bf7 100644 --- a/core/src/main/resources/hudson/model/View/configure_cs.properties +++ b/core/src/main/resources/hudson/model/View/configure_cs.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors Description=Popis -Filter\ build\ executors=Fitrovat exekutory build-\u016F -Filter\ build\ queue=Filtrovat frontu build-\u016F -Name=Jm\u00E9no +Filter\ build\ executors=Fitrovat exekutory build-ů +Filter\ build\ queue=Filtrovat frontu build-ů +Name=Jméno diff --git a/core/src/main/resources/hudson/model/View/configure_da.properties b/core/src/main/resources/hudson/model/View/configure_da.properties index 9024f9611173..af19ffeaa10c 100644 --- a/core/src/main/resources/hudson/model/View/configure_da.properties +++ b/core/src/main/resources/hudson/model/View/configure_da.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Filter\ build\ queue=Filtrer byggek\u00f8 +Filter\ build\ queue=Filtrer byggekø Filter\ build\ executors=Filtrer byggeafviklere Name=Navn Description=Beskrivelse diff --git a/core/src/main/resources/hudson/model/View/configure_de.properties b/core/src/main/resources/hudson/model/View/configure_de.properties index a3a43a66062b..aa05a1728973 100644 --- a/core/src/main/resources/hudson/model/View/configure_de.properties +++ b/core/src/main/resources/hudson/model/View/configure_de.properties @@ -26,4 +26,4 @@ Description=Beschreibung Filter\ build\ executors=Build-Prozessoren filtern Filter\ build\ queue=Build-Warteschlange filtern OK=Speichern -Apply=\u00DCbernehmen +Apply=Ãœbernehmen diff --git a/core/src/main/resources/hudson/model/View/configure_es.properties b/core/src/main/resources/hudson/model/View/configure_es.properties index 2d173cef38ce..ef154e345883 100644 --- a/core/src/main/resources/hudson/model/View/configure_es.properties +++ b/core/src/main/resources/hudson/model/View/configure_es.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Name=Nombre -Description=Descripción -Filter\ build\ queue=Filtrar cola de ejecución +Description=Descripción +Filter\ build\ queue=Filtrar cola de ejecución Filter\ build\ executors=Filtrar ejecutores Edit\ View=Editar la vista diff --git a/core/src/main/resources/hudson/model/View/configure_fi.properties b/core/src/main/resources/hudson/model/View/configure_fi.properties index 5de2ed274cc8..72de7ed75227 100644 --- a/core/src/main/resources/hudson/model/View/configure_fi.properties +++ b/core/src/main/resources/hudson/model/View/configure_fi.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Description=N\u00E4kym\u00E4n kuvaus +Description=Näkymän kuvaus Filter\ build\ executors=Suodata suorittajalista -Filter\ build\ queue=Suodata k\u00E4\u00E4nn\u00F6sjono -Name=N\u00E4kym\u00E4n nimi +Filter\ build\ queue=Suodata käännösjono +Name=Näkymän nimi diff --git a/core/src/main/resources/hudson/model/View/configure_hu.properties b/core/src/main/resources/hudson/model/View/configure_hu.properties index d349eea2e4d4..b2662a7f4ad7 100644 --- a/core/src/main/resources/hudson/model/View/configure_hu.properties +++ b/core/src/main/resources/hudson/model/View/configure_hu.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=Le\u00EDr\u00E1s -Filter\ build\ executors=\u00C9p\u00EDt\u00E9s futtat\u00F3k sz\u0171r\u00E9se -Filter\ build\ queue=\u00C9p\u00EDt\u00E9si sor sz\u0171r\u00E9se -Name=N\u00E9v +Description=Leírás +Filter\ build\ executors=Építés futtatók szűrése +Filter\ build\ queue=Építési sor szűrése +Name=Név diff --git a/core/src/main/resources/hudson/model/View/configure_it.properties b/core/src/main/resources/hudson/model/View/configure_it.properties index 74bb1bc6ab25..bd77f3f52480 100644 --- a/core/src/main/resources/hudson/model/View/configure_it.properties +++ b/core/src/main/resources/hudson/model/View/configure_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/View/configure_ja.properties b/core/src/main/resources/hudson/model/View/configure_ja.properties index 0ea332f0cc9c..07805b73738d 100644 --- a/core/src/main/resources/hudson/model/View/configure_ja.properties +++ b/core/src/main/resources/hudson/model/View/configure_ja.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Edit\ View=\u30d3\u30e5\u30fc\u306e\u5909\u66f4 -Name=\u540d\u524d -Description=\u8aac\u660e -Filter\ build\ queue=\u30d3\u30eb\u30c9\u30ad\u30e5\u30fc\u3092\u30d5\u30a3\u30eb\u30bf\u30fc -Filter\ build\ executors=\u30a8\u30b0\u30bc\u30ad\u30e5\u30fc\u30bf\u30fc\u3092\u30d5\u30a3\u30eb\u30bf\u30fc -OK=\u4fdd\u5b58 +Edit\ View=ビューã®å¤‰æ›´ +Name=åå‰ +Description=説明 +Filter\ build\ queue=ビルドキューをフィルター +Filter\ build\ executors=エグゼキューターをフィルター +OK=ä¿å­˜ diff --git a/core/src/main/resources/hudson/model/View/configure_ko.properties b/core/src/main/resources/hudson/model/View/configure_ko.properties index 8bf2f923c3c5..1878f4a9a8cd 100644 --- a/core/src/main/resources/hudson/model/View/configure_ko.properties +++ b/core/src/main/resources/hudson/model/View/configure_ko.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Description=\uC124\uBA85 -Name=\uC774\uB984 -OK=\uD655\uC778 +Description=설명 +Name=ì´ë¦„ +OK=í™•ì¸ diff --git a/core/src/main/resources/hudson/model/View/configure_lt.properties b/core/src/main/resources/hudson/model/View/configure_lt.properties index c455fc8dc546..bd5ddb7b453d 100644 --- a/core/src/main/resources/hudson/model/View/configure_lt.properties +++ b/core/src/main/resources/hudson/model/View/configure_lt.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Description=Apra\u0161ymas +Description=ApraÅ¡ymas Name=Pavadinimas OK=Gerai Filter\ build\ executors=Filtruoti vykdytojus -Filter\ build\ queue=Filtruoti vykdymo eil\u0119 +Filter\ build\ queue=Filtruoti vykdymo eilÄ™ diff --git a/core/src/main/resources/hudson/model/View/configure_lv.properties b/core/src/main/resources/hudson/model/View/configure_lv.properties index ad5014117003..61fc20609d38 100644 --- a/core/src/main/resources/hudson/model/View/configure_lv.properties +++ b/core/src/main/resources/hudson/model/View/configure_lv.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Description=Apraksts -Filter\ build\ executors=Filtr\u0113t b\u016Bv\u0113t\u0101jus -Filter\ build\ queue=Filtr\u0113t b\u016Bv\u0113jumu rindu -Name=V\u0101rds +Filter\ build\ executors=FiltrÄ“t bÅ«vÄ“tÄjus +Filter\ build\ queue=FiltrÄ“t bÅ«vÄ“jumu rindu +Name=VÄrds OK=Labi diff --git a/core/src/main/resources/hudson/model/View/configure_nb_NO.properties b/core/src/main/resources/hudson/model/View/configure_nb_NO.properties index e1d57899bc1b..020a1bc8d56f 100644 --- a/core/src/main/resources/hudson/model/View/configure_nb_NO.properties +++ b/core/src/main/resources/hudson/model/View/configure_nb_NO.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Description=Beskrivelse -Filter\ build\ executors=Filtr\u00E9r bygg-agenter -Filter\ build\ queue=Filtr\u00E9r byggk\u00F8 +Filter\ build\ executors=Filtrér bygg-agenter +Filter\ build\ queue=Filtrér byggkø Name=Navn diff --git a/core/src/main/resources/hudson/model/View/configure_pl.properties b/core/src/main/resources/hudson/model/View/configure_pl.properties index a7f3c4e5933d..1def02081f8a 100644 --- a/core/src/main/resources/hudson/model/View/configure_pl.properties +++ b/core/src/main/resources/hudson/model/View/configure_pl.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE Description=Opis -Filter\ build\ executors=Filtr wykonawc\u00F3w zada\u0144 -Filter\ build\ queue=Filtr kolejki zada\u0144 +Filter\ build\ executors=Filtr wykonawców zadaÅ„ +Filter\ build\ queue=Filtr kolejki zadaÅ„ Name=Nazwa Edit\ View=Edytuj widok OK=OK diff --git a/core/src/main/resources/hudson/model/View/configure_pt_BR.properties b/core/src/main/resources/hudson/model/View/configure_pt_BR.properties index f16cbaf4ee1d..6678d3eefc36 100644 --- a/core/src/main/resources/hudson/model/View/configure_pt_BR.properties +++ b/core/src/main/resources/hudson/model/View/configure_pt_BR.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Name=Nome -Description=Descri\u00E7\u00E3o -Filter\ build\ queue=Filtrar a lista de constru\u00E7\u00F5es +Description=Descrição +Filter\ build\ queue=Filtrar a lista de construções Filter\ build\ executors=Filtrar a lista de executores OK=OK Edit\ View=Editar View diff --git a/core/src/main/resources/hudson/model/View/configure_ru.properties b/core/src/main/resources/hudson/model/View/configure_ru.properties index f62db8051f91..7f86803104e1 100644 --- a/core/src/main/resources/hudson/model/View/configure_ru.properties +++ b/core/src/main/resources/hudson/model/View/configure_ru.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Filter\ build\ executors=\u0424\u0438\u043B\u044C\u0442\u0440\u043E\u0432\u0430\u0442\u044C \u0441\u0431\u043E\u0440\u0449\u0438\u043A\u0438 -Filter\ build\ queue=\u0424\u0438\u043B\u044C\u0442\u0440\u043E\u0432\u0430\u0442\u044C \u0441\u0431\u043E\u0440\u043A\u0438 -Name=\u0418\u043C\u044F -Description=\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 -Apply=\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u0442\u044C +Filter\ build\ executors=Фильтровать Ñборщики +Filter\ build\ queue=Фильтровать Ñборки +Name=Ð˜Ð¼Ñ +Description=ОпиÑание +Apply=Применить diff --git a/core/src/main/resources/hudson/model/View/configure_sk.properties b/core/src/main/resources/hudson/model/View/configure_sk.properties index d3cc27f5c42c..0d88714a7759 100644 --- a/core/src/main/resources/hudson/model/View/configure_sk.properties +++ b/core/src/main/resources/hudson/model/View/configure_sk.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Description=Popis -Filter\ build\ queue=Filtrova\u0165 frontu zostaven\u00ED -Name=N\u00E1zov +Filter\ build\ queue=FiltrovaÅ¥ frontu zostavení +Name=Názov diff --git a/core/src/main/resources/hudson/model/View/configure_sr.properties b/core/src/main/resources/hudson/model/View/configure_sr.properties index 2a667b1e7e6c..782e07c84884 100644 --- a/core/src/main/resources/hudson/model/View/configure_sr.properties +++ b/core/src/main/resources/hudson/model/View/configure_sr.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Edit\ View=\u0417\u0440\u0435\u0434\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 -Name=\u0418\u043C\u0435 -Description=\u041E\u043F\u0438\u0441 -Filter\ build\ queue=\u041F\u0440\u043E\u0444\u0438\u043B\u0442\u0440\u0438\u0440\u0430\u0458 \u0438\u0437\u0433\u0440\u0430\u0434\u043D\u0438 \u0440\u0435\u0434 -Filter\ build\ executors=\u041F\u0440\u043E\u0444\u0438\u043B\u0442\u0440\u0438\u0440\u0430\u0458 \u0433\u0440\u0430\u0434\u0438\u0442\u0435\u0459\u0435 -OK=\u0423\u0440\u0435\u0434\u0443 +Edit\ View=Зреди преглед +Name=Име +Description=ÐžÐ¿Ð¸Ñ +Filter\ build\ queue=Профилтрирај изградни ред +Filter\ build\ executors=Профилтрирај градитеље +OK=Уреду diff --git a/core/src/main/resources/hudson/model/View/configure_sv_SE.properties b/core/src/main/resources/hudson/model/View/configure_sv_SE.properties index 68853ff52662..34f318cf8359 100644 --- a/core/src/main/resources/hudson/model/View/configure_sv_SE.properties +++ b/core/src/main/resources/hudson/model/View/configure_sv_SE.properties @@ -22,5 +22,5 @@ Description=Beskrivning Filter\ build\ executors=Filtrera byggexekverare -Filter\ build\ queue=Filtrera byggk\u00F6 +Filter\ build\ queue=Filtrera byggkö Name=Namn diff --git a/core/src/main/resources/hudson/model/View/configure_tr.properties b/core/src/main/resources/hudson/model/View/configure_tr.properties index 2eb6710963fe..a22976a54623 100644 --- a/core/src/main/resources/hudson/model/View/configure_tr.properties +++ b/core/src/main/resources/hudson/model/View/configure_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u0130sim -Description=A\u00e7\u0131klama +Name=Ä°sim +Description=Açıklama diff --git a/core/src/main/resources/hudson/model/View/configure_uk.properties b/core/src/main/resources/hudson/model/View/configure_uk.properties index 0f49ea15a12f..b525b7dbfede 100644 --- a/core/src/main/resources/hudson/model/View/configure_uk.properties +++ b/core/src/main/resources/hudson/model/View/configure_uk.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Description=\u041E\u043F\u0438\u0441 -Filter\ build\ executors=\u0424\u0456\u043B\u044C\u0442\u0440\u0443\u0432\u0430\u0442\u0438 \u0432\u0438\u043A\u043E\u043D\u0443\u044E\u0447\u0456 \u0432\u0443\u0437\u043B\u0438 \u0437\u0431\u0456\u0440\u043E\u043A -Filter\ build\ queue=\u0424\u0456\u043B\u044C\u0442\u0440\u0443\u0432\u0430\u0442\u0438 \u0447\u0435\u0440\u0433\u0443 \u0437\u0431\u0456\u0440\u043E\u043A -Name=\u0406\u043C`\u044F +Description=ÐžÐ¿Ð¸Ñ +Filter\ build\ executors=Фільтрувати виконуючі вузли збірок +Filter\ build\ queue=Фільтрувати чергу збірок +Name=Ім`Ñ diff --git a/core/src/main/resources/hudson/model/View/configure_zh_TW.properties b/core/src/main/resources/hudson/model/View/configure_zh_TW.properties index 55b92b066395..7be02aceb327 100644 --- a/core/src/main/resources/hudson/model/View/configure_zh_TW.properties +++ b/core/src/main/resources/hudson/model/View/configure_zh_TW.properties @@ -21,10 +21,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Edit\ View=\u7de8\u8f2f\u8996\u666f -Name=\u540d\u7a31 -Description=\u8aaa\u660e -Filter\ build\ queue=\u7be9\u9078\u5efa\u7f6e\u4f47\u5217 -Filter\ build\ executors=\u7be9\u9078\u5efa\u7f6e\u57f7\u884c\u7a0b\u5f0f -OK=\u78ba\u5b9a -Apply=\u5957\u7528 +Edit\ View=編輯視景 +Name=å稱 +Description=說明 +Filter\ build\ queue=篩é¸å»ºç½®ä½‡åˆ— +Filter\ build\ executors=篩é¸å»ºç½®åŸ·è¡Œç¨‹å¼ +OK=確定 +Apply=套用 diff --git a/core/src/main/resources/hudson/model/View/delete.properties b/core/src/main/resources/hudson/model/View/delete.properties index 02f0108e2487..391657e42407 100644 --- a/core/src/main/resources/hudson/model/View/delete.properties +++ b/core/src/main/resources/hudson/model/View/delete.properties @@ -1 +1 @@ -delete.view=Delete the view \u2018{0}\u2019? +delete.view=Delete the view ‘{0}’? diff --git a/core/src/main/resources/hudson/model/View/delete_bg.properties b/core/src/main/resources/hudson/model/View/delete_bg.properties index 81f5d0e4a823..d84ed30e8f81 100644 --- a/core/src/main/resources/hudson/model/View/delete_bg.properties +++ b/core/src/main/resources/hudson/model/View/delete_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Yes=\ - \u0414\u0430 + Да Are\ you\ sure\ about\ deleting\ the\ view?=\ - \u0421\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u0438\u0437\u0442\u0440\u0438\u0435\u0442\u0435 \u0438\u0437\u0433\u043b\u0435\u0434\u0430? + Сигурни ли Ñте, че иÑкате да изтриете изгледа? diff --git a/core/src/main/resources/hudson/model/View/delete_de.properties b/core/src/main/resources/hudson/model/View/delete_de.properties index 5c7487f42a49..2f6681e7fb5a 100644 --- a/core/src/main/resources/hudson/model/View/delete_de.properties +++ b/core/src/main/resources/hudson/model/View/delete_de.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ deleting\ the\ view?=Soll die Ansicht wirklich gelöscht werden? +Are\ you\ sure\ about\ deleting\ the\ view?=Soll die Ansicht wirklich gelöscht werden? Yes=Ja diff --git a/core/src/main/resources/hudson/model/View/delete_es.properties b/core/src/main/resources/hudson/model/View/delete_es.properties index ce60d0deb9ef..c868f671fe16 100644 --- a/core/src/main/resources/hudson/model/View/delete_es.properties +++ b/core/src/main/resources/hudson/model/View/delete_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ deleting\ the\ view?=¿Estás seguro de querer borrar esta vista? -Yes=Sí +Are\ you\ sure\ about\ deleting\ the\ view?=¿Estás seguro de querer borrar esta vista? +Yes=Sí diff --git a/core/src/main/resources/hudson/model/View/delete_fr.properties b/core/src/main/resources/hudson/model/View/delete_fr.properties index 75cacbba26a4..5aa6d45f7a33 100644 --- a/core/src/main/resources/hudson/model/View/delete_fr.properties +++ b/core/src/main/resources/hudson/model/View/delete_fr.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Yes=Oui -delete.view=Supprimer la vue \u2018{0}\u2019 ? +delete.view=Supprimer la vue ‘{0}’ ? diff --git a/core/src/main/resources/hudson/model/View/delete_it.properties b/core/src/main/resources/hudson/model/View/delete_it.properties index 2880c2ec5d33..6f969071fdea 100644 --- a/core/src/main/resources/hudson/model/View/delete_it.properties +++ b/core/src/main/resources/hudson/model/View/delete_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,4 +22,4 @@ # THE SOFTWARE. delete.view=Eliminare la vista "{0}"? -Yes=Sì +Yes=Sì diff --git a/core/src/main/resources/hudson/model/View/delete_ja.properties b/core/src/main/resources/hudson/model/View/delete_ja.properties index b1e936154b00..9b628ce34162 100644 --- a/core/src/main/resources/hudson/model/View/delete_ja.properties +++ b/core/src/main/resources/hudson/model/View/delete_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ deleting\ the\ view?=\u3053\u306e\u30d3\u30e5\u30fc\u3092\u524a\u9664\u3057\u307e\u3059\u304b\uff1f -Yes=\u306f\u3044 -delete.view=\u30d3\u30e5\u30fc \u2018{0}\u2019 \u3092\u524a\u9664\u3057\u307e\u3059\u304b\uff1f +Are\ you\ sure\ about\ deleting\ the\ view?=ã“ã®ãƒ“ューを削除ã—ã¾ã™ã‹ï¼Ÿ +Yes=ã¯ã„ +delete.view=ビュー ‘{0}’ を削除ã—ã¾ã™ã‹ï¼Ÿ diff --git a/core/src/main/resources/hudson/model/View/delete_lt.properties b/core/src/main/resources/hudson/model/View/delete_lt.properties index 9ac81dd69ab6..f204695efef1 100644 --- a/core/src/main/resources/hudson/model/View/delete_lt.properties +++ b/core/src/main/resources/hudson/model/View/delete_lt.properties @@ -1,4 +1,4 @@ # /jenkins-core/src/main/resources/hudson/model/View/delete_lt.properties -Are\ you\ sure\ about\ deleting\ the\ view?=Ar tikrai norite i\u0161trinti \u0161i\u0105 skilt\u012F? +Are\ you\ sure\ about\ deleting\ the\ view?=Ar tikrai norite iÅ¡trinti Å¡iÄ… skiltį? Yes=Taip diff --git a/core/src/main/resources/hudson/model/View/delete_pl.properties b/core/src/main/resources/hudson/model/View/delete_pl.properties index 5b32231e461b..0013a02eaaca 100644 --- a/core/src/main/resources/hudson/model/View/delete_pl.properties +++ b/core/src/main/resources/hudson/model/View/delete_pl.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Are\ you\ sure\ about\ deleting\ the\ view?=Czy na pewno chcesz usun\u0105\u0107 ten widok? +Are\ you\ sure\ about\ deleting\ the\ view?=Czy na pewno chcesz usunąć ten widok? Yes=Tak diff --git a/core/src/main/resources/hudson/model/View/delete_pt_BR.properties b/core/src/main/resources/hudson/model/View/delete_pt_BR.properties index 709912a6fa17..7f3c9502e7cc 100644 --- a/core/src/main/resources/hudson/model/View/delete_pt_BR.properties +++ b/core/src/main/resources/hudson/model/View/delete_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Yes=Sim -delete.view=Apagar a vis\u00E3o '{0}'? +delete.view=Apagar a visão '{0}'? diff --git a/core/src/main/resources/hudson/model/View/delete_ru.properties b/core/src/main/resources/hudson/model/View/delete_ru.properties index 4523a7a717ae..f608ec34de88 100644 --- a/core/src/main/resources/hudson/model/View/delete_ru.properties +++ b/core/src/main/resources/hudson/model/View/delete_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ deleting\ the\ view?=\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u044D\u0442\u043E\u0442 \u0432\u0438\u0434? -Yes=\u0414\u0430 +Are\ you\ sure\ about\ deleting\ the\ view?=Ð’Ñ‹ уверены, что хотите удалить Ñтот вид? +Yes=Да diff --git a/core/src/main/resources/hudson/model/View/delete_sr.properties b/core/src/main/resources/hudson/model/View/delete_sr.properties index e6dd5680f97c..8735d3614f8f 100644 --- a/core/src/main/resources/hudson/model/View/delete_sr.properties +++ b/core/src/main/resources/hudson/model/View/delete_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Yes=\u0414\u0430 -Are\ you\ sure\ about\ deleting\ the\ view?=\u0414\u0430 \u043B\u0438 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u0443\u043A\u043B\u043E\u043D\u0438\u0442\u0435 \u043F\u0440\u0435\u0433\u043B\u0435\u0434? +Yes=Да +Are\ you\ sure\ about\ deleting\ the\ view?=Да ли желите да уклоните преглед? diff --git a/core/src/main/resources/hudson/model/View/delete_sv_SE.properties b/core/src/main/resources/hudson/model/View/delete_sv_SE.properties index 736f447cf064..ff647127d542 100644 --- a/core/src/main/resources/hudson/model/View/delete_sv_SE.properties +++ b/core/src/main/resources/hudson/model/View/delete_sv_SE.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ deleting\ the\ view?=\u00C4r du s\u00E4ker p\u00E5 att du vill ta bort vyn? +Are\ you\ sure\ about\ deleting\ the\ view?=Är du säker pÃ¥ att du vill ta bort vyn? Yes=Ja diff --git a/core/src/main/resources/hudson/model/View/delete_tr.properties b/core/src/main/resources/hudson/model/View/delete_tr.properties index 06edb5477fed..703cbdea87db 100644 --- a/core/src/main/resources/hudson/model/View/delete_tr.properties +++ b/core/src/main/resources/hudson/model/View/delete_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ deleting\ the\ view?=G\u00f6r\u00fcnt\u00fcy\u00fc silmek istedi\u011finize emin misiniz? +Are\ you\ sure\ about\ deleting\ the\ view?=Görüntüyü silmek istediÄŸinize emin misiniz? Yes=Evet diff --git a/core/src/main/resources/hudson/model/View/delete_zh_TW.properties b/core/src/main/resources/hudson/model/View/delete_zh_TW.properties index 4c506afadb04..66fd3c8ee347 100644 --- a/core/src/main/resources/hudson/model/View/delete_zh_TW.properties +++ b/core/src/main/resources/hudson/model/View/delete_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -delete.view=\u78ba\u5b9a\u8981\u522a\u9664\u8996\u666f\u300c{0}\u300d\u55ce? -Are\ you\ sure\ about\ deleting\ the\ view?=\u60a8\u78ba\u5b9a\u8981\u522a\u9664\u9019\u500b\u8996\u666f\u55ce? -Yes=\u662f +delete.view=確定è¦åˆªé™¤è¦–景「{0}ã€å—Ž? +Are\ you\ sure\ about\ deleting\ the\ view?=您確定è¦åˆªé™¤é€™å€‹è¦–景嗎? +Yes=是 diff --git a/core/src/main/resources/hudson/model/View/index_bg.properties b/core/src/main/resources/hudson/model/View/index_bg.properties index 5b949939d4c0..f442f4cb6057 100644 --- a/core/src/main/resources/hudson/model/View/index_bg.properties +++ b/core/src/main/resources/hudson/model/View/index_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Dashboard=\ - \u0422\u0430\u0431\u043b\u043e \u0437\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 + Табло за управление diff --git a/core/src/main/resources/hudson/model/View/index_de.properties b/core/src/main/resources/hudson/model/View/index_de.properties index 75cb2d265a6b..cd3e69b225fb 100644 --- a/core/src/main/resources/hudson/model/View/index_de.properties +++ b/core/src/main/resources/hudson/model/View/index_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dashboard=Übersicht +Dashboard=Ãœbersicht diff --git a/core/src/main/resources/hudson/model/View/index_it.properties b/core/src/main/resources/hudson/model/View/index_it.properties index 11c84cb7905b..167527ff82b9 100644 --- a/core/src/main/resources/hudson/model/View/index_it.properties +++ b/core/src/main/resources/hudson/model/View/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/View/index_ja.properties b/core/src/main/resources/hudson/model/View/index_ja.properties index 3bc55e82a861..d8c7e15f797d 100644 --- a/core/src/main/resources/hudson/model/View/index_ja.properties +++ b/core/src/main/resources/hudson/model/View/index_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dashboard=\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9 +Dashboard=ダッシュボード diff --git a/core/src/main/resources/hudson/model/View/index_ru.properties b/core/src/main/resources/hudson/model/View/index_ru.properties index 8234c082cea6..b28e9ca02eea 100644 --- a/core/src/main/resources/hudson/model/View/index_ru.properties +++ b/core/src/main/resources/hudson/model/View/index_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dashboard=\u0418\u043d\u0444\u043e\u041f\u0430\u043d\u0435\u043b\u044c +Dashboard=ИнфоПанель diff --git a/core/src/main/resources/hudson/model/View/index_sr.properties b/core/src/main/resources/hudson/model/View/index_sr.properties index b5b7c47fc69c..d085a7fffccb 100644 --- a/core/src/main/resources/hudson/model/View/index_sr.properties +++ b/core/src/main/resources/hudson/model/View/index_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Dashboard=\u041A\u043E\u043D\u0442\u0440\u043E\u043B\u043D\u0438 \u043F\u0430\u043D\u0435\u043B +Dashboard=Контролни панел diff --git a/core/src/main/resources/hudson/model/View/index_zh_TW.properties b/core/src/main/resources/hudson/model/View/index_zh_TW.properties index ce6812022666..912e87fb1846 100644 --- a/core/src/main/resources/hudson/model/View/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/View/index_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dashboard=\u8cc7\u8a0a\u4e3b\u9801 +Dashboard=è³‡è¨Šä¸»é  diff --git a/core/src/main/resources/hudson/model/View/main_it.properties b/core/src/main/resources/hudson/model/View/main_it.properties index cc96b7cf5933..3989fbf1ee8e 100644 --- a/core/src/main/resources/hudson/model/View/main_it.properties +++ b/core/src/main/resources/hudson/model/View/main_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,5 +21,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -broken=Si è verificato un errore durante il recupero dei processi per questa \ +broken=Si è verificato un errore durante il recupero dei processi per questa \ vista. Consultare i log di Jenkins per ulteriori informazioni. diff --git a/core/src/main/resources/hudson/model/View/main_zh_TW.properties b/core/src/main/resources/hudson/model/View/main_zh_TW.properties index 0c601fc4237c..fcf754673c48 100644 --- a/core/src/main/resources/hudson/model/View/main_zh_TW.properties +++ b/core/src/main/resources/hudson/model/View/main_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -broken=\u53d6\u5f97\u6b64\u8996\u666f\u4e2d\u7684\u4f5c\u696d\u6642\u767c\u751f\u932f\u8aa4\uff0c\u8acb\u6aa2\u67e5 Jenkins \u65e5\u8a8c\u4ee5\u7372\u5f97\u8a73\u7d30\u8cc7\u8a0a\u3002 +broken=å–得此視景中的作業時發生錯誤,請檢查 Jenkins 日誌以ç²å¾—詳細資訊。 diff --git a/core/src/main/resources/hudson/model/View/newJobButtonBar_it.properties b/core/src/main/resources/hudson/model/View/newJobButtonBar_it.properties index cb1449e2fc43..50f69e4c1303 100644 --- a/core/src/main/resources/hudson/model/View/newJobButtonBar_it.properties +++ b/core/src/main/resources/hudson/model/View/newJobButtonBar_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/View/newJobButtonBar_zh_TW.properties b/core/src/main/resources/hudson/model/View/newJobButtonBar_zh_TW.properties index 3dd60a554eb0..a0779bccc228 100644 --- a/core/src/main/resources/hudson/model/View/newJobButtonBar_zh_TW.properties +++ b/core/src/main/resources/hudson/model/View/newJobButtonBar_zh_TW.properties @@ -1 +1 @@ -OK=\u78ba\u5b9a +OK=確定 diff --git a/core/src/main/resources/hudson/model/View/newJob_bg.properties b/core/src/main/resources/hudson/model/View/newJob_bg.properties index 81b97d885b6d..e5fe0d6dc53d 100644 --- a/core/src/main/resources/hudson/model/View/newJob_bg.properties +++ b/core/src/main/resources/hudson/model/View/newJob_bg.properties @@ -21,30 +21,30 @@ # THE SOFTWARE. CopyExisting=\ - \u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430\u0449a {0} + Копиране на ÑъщеÑтвуващa {0} JobName=\ - \u0418\u043c\u0435 \u043d\u0430 {0} + Име на {0} # New {0} NewJob=\ - \u041d\u043e\u0432\u0430 {0} + Ðова {0} # This field cannot be empty, please enter a valid name ItemName.validation.required=\ - \u041f\u043e\u043b\u0435\u0442\u043e \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0435 \u043f\u0440\u0430\u0437\u043d\u043e. \u0412\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u043a\u043e\u0440\u0435\u043a\u0442\u043d\u043e \u0438\u043c\u0435 + Полето не може да е празно. Въведете коректно име # If you want to create a new item from other existing, you can use this option: CopyOption.description=\ - \u0422\u043e\u0432\u0430 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0432\u0430 \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u0442\u0435 \u043d\u043e\u0432 \u043e\u0431\u0435\u043a\u0442 \u043d\u0430 \u0431\u0430\u0437\u0430\u0442\u0430 \u043d\u0430 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430\u0449: + Това позволÑва да Ñъздадете нов обект на базата на ÑъщеÑтвуващ: # Please select an item type ItemType.validation.required=\ - \u0412\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0432\u0438\u0434 \u043d\u0430 \u043e\u0431\u0435\u043a\u0442\u0430 + Въведете вид на обекта # Enter an item name ItemName.label=\ - \u0412\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0438\u043c\u0435 \u043d\u0430 \u043e\u0431\u0435\u043a\u0442\u0430 + Въведете име на обекта # Type to autocomplete CopyOption.placeholder=\ - \u0412\u044a\u0432\u0435\u0434\u0435\u043d\u043e\u0442\u043e \u0449\u0435 \u0431\u044a\u0434\u0435 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0434\u043e\u043f\u0438\u0441\u0430\u043d\u043e + Въведеното ще бъде автоматично допиÑано # Copy from CopyOption.label=\ - \u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435 \u043e\u0442 + Копиране от # Required field ItemName.help=\ - \u0417\u0430\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u043e \u043f\u043e\u043b\u0435 + Задължително поле diff --git a/core/src/main/resources/hudson/model/View/newJob_cs.properties b/core/src/main/resources/hudson/model/View/newJob_cs.properties index 77eb59c6ed12..d02ddd7c7087 100644 --- a/core/src/main/resources/hudson/model/View/newJob_cs.properties +++ b/core/src/main/resources/hudson/model/View/newJob_cs.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -CopyExisting=Kop\u00EDrovat existuj\u00EDc\u00ED {0} -JobName=n\u00E1zev +CopyExisting=Kopírovat existující {0} +JobName=název diff --git a/core/src/main/resources/hudson/model/View/newJob_de.properties b/core/src/main/resources/hudson/model/View/newJob_de.properties index 3ba107ed992e..bb2616e3f86a 100644 --- a/core/src/main/resources/hudson/model/View/newJob_de.properties +++ b/core/src/main/resources/hudson/model/View/newJob_de.properties @@ -21,11 +21,11 @@ # THE SOFTWARE. NewJob={0} anlegen -ItemType.validation.required=Bitte w\u00E4hlen Sie einen Element-Typen +ItemType.validation.required=Bitte wählen Sie einen Element-Typen ItemName.label=Geben Sie einen Element-Namen an CopyOption.label=Kopieren von -ItemName.validation.required=Dies ist ein Pflichtfeld. Bitte geben Sie einen g\u00FCltigen Namen an. +ItemName.validation.required=Dies ist ein Pflichtfeld. Bitte geben Sie einen gültigen Namen an. # TODO Type to autocomplete CopyOption.placeholder= ItemName.help=Pflichtfeld -CopyOption.description=Wenn Sie ein neues Element basierend auf einem bestehenden erstellen m\u00F6chten, k\u00F6nnen Sie diese Option verwenden. +CopyOption.description=Wenn Sie ein neues Element basierend auf einem bestehenden erstellen möchten, können Sie diese Option verwenden. diff --git a/core/src/main/resources/hudson/model/View/newJob_el.properties b/core/src/main/resources/hudson/model/View/newJob_el.properties index 24f33c1f9025..5fa57f8f6d18 100644 --- a/core/src/main/resources/hudson/model/View/newJob_el.properties +++ b/core/src/main/resources/hudson/model/View/newJob_el.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -CopyExisting=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u03C5\u03C0\u03AC\u03C1\u03C7\u03BF\u03C5\u03C3\u03B1\u03C2 {0} -JobName={0} \u03CC\u03BD\u03BF\u03BC\u03B1 +CopyExisting=ΑντιγÏαφή υπάÏχουσας {0} +JobName={0} όνομα diff --git a/core/src/main/resources/hudson/model/View/newJob_fr.properties b/core/src/main/resources/hudson/model/View/newJob_fr.properties index aa6c85705fb5..0c202f310a1b 100644 --- a/core/src/main/resources/hudson/model/View/newJob_fr.properties +++ b/core/src/main/resources/hudson/model/View/newJob_fr.properties @@ -25,8 +25,8 @@ JobName=Nom du {0} CopyExisting=Copier un {0} existant ItemName.help=Champ obligatoire ItemName.label=Saisissez un nom -ItemName.validation.required=Ce champ ne peut pas \u00eatre vide. Veuillez saisir un nom valide et appuyer sur OK. -ItemType.validation.required=Veuillez choisir un type d\u2019\u00e9l\u00e9ment -CopyOption.placeholder=Taper pour autocompl\u00e9tion -CopyOption.description=Si vous voulez cr\u00e9er un nouvel \u00e9l\u00e9ment \u00e0 partir d\u2019un autre, vous pouvez utiliser cette option : +ItemName.validation.required=Ce champ ne peut pas être vide. Veuillez saisir un nom valide et appuyer sur OK. +ItemType.validation.required=Veuillez choisir un type d’élément +CopyOption.placeholder=Taper pour autocomplétion +CopyOption.description=Si vous voulez créer un nouvel élément à partir d’un autre, vous pouvez utiliser cette option : CopyOption.label=Copier depuis diff --git a/core/src/main/resources/hudson/model/View/newJob_hu.properties b/core/src/main/resources/hudson/model/View/newJob_hu.properties index a29554990227..768f826b795d 100644 --- a/core/src/main/resources/hudson/model/View/newJob_hu.properties +++ b/core/src/main/resources/hudson/model/View/newJob_hu.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -CopyExisting=L\u00E9tez\u0151 {0} m\u00E1sol\u00E1sa +CopyExisting=LétezÅ‘ {0} másolása JobName={0} neve diff --git a/core/src/main/resources/hudson/model/View/newJob_it.properties b/core/src/main/resources/hudson/model/View/newJob_it.properties index e8c78e4d4e30..ed6377f172d2 100644 --- a/core/src/main/resources/hudson/model/View/newJob_it.properties +++ b/core/src/main/resources/hudson/model/View/newJob_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,12 +22,12 @@ # THE SOFTWARE. CopyOption.description=Se si desidera creare un elemento da un altro \ - esistente, è possibile utilizzare quest''opzione: + esistente, è possibile utilizzare quest''opzione: CopyOption.label=Copia da CopyOption.placeholder=Digitare per completare automaticamente la voce ItemName.help=Campo obbligatorio ItemName.label=Immettere un nome elemento -ItemName.validation.required=Questo campo non può essere vuoto, immettere un \ +ItemName.validation.required=Questo campo non può essere vuoto, immettere un \ nome valido ItemType.validation.required=Selezionare un tipo elemento NewJob=Nuovo {0} diff --git a/core/src/main/resources/hudson/model/View/newJob_ja.properties b/core/src/main/resources/hudson/model/View/newJob_ja.properties index cfb68531f0c7..1ba4a0201b2e 100644 --- a/core/src/main/resources/hudson/model/View/newJob_ja.properties +++ b/core/src/main/resources/hudson/model/View/newJob_ja.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewJob=\u65b0\u898f{0}\u4f5c\u6210 -JobName={0}\u540d -ItemName.help=\u5fc5\u9808\u9805\u76ee -ItemName.label=\u30b8\u30e7\u30d6\u540d\u5165\u529b -ItemName.validation.required=\u3053\u306e\u30d5\u30a3\u30fc\u30eb\u30c9\u306f\u7a7a\u6b04\u306b\u3067\u304d\u307e\u305b\u3093\u3002\u6709\u52b9\u306a\u540d\u524d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002 -CopyOption.placeholder=\u5165\u529b\u3059\u308b\u3068\u30aa\u30fc\u30c8\u30b3\u30f3\u30d7\u30ea\u30fc\u30c8\u3057\u307e\u3059 -CopyOption.description=\u65e2\u5b58\u306e\u3082\u306e\u304b\u3089\u4f5c\u6210\u3057\u305f\u3044\u5834\u5408\u306f\u3053\u3061\u3089\u304b\u3089\u53ef\u80fd\u3067\u3059\uff1a -CopyOption.label=\u30b3\u30d4\u30fc\u5143 -CopyExisting=\u65e2\u5b58{0}\u306e\u30b3\u30d4\u30fc +NewJob=æ–°è¦{0}ä½œæˆ +JobName={0}å +ItemName.help=必須項目 +ItemName.label=ジョブå入力 +ItemName.validation.required=ã“ã®ãƒ•ã‚£ãƒ¼ãƒ«ãƒ‰ã¯ç©ºæ¬„ã«ã§ãã¾ã›ã‚“。有効ãªåå‰ã‚’入力ã—ã¦ãã ã•ã„。 +CopyOption.placeholder=入力ã™ã‚‹ã¨ã‚ªãƒ¼ãƒˆã‚³ãƒ³ãƒ—リートã—ã¾ã™ +CopyOption.description=既存ã®ã‚‚ã®ã‹ã‚‰ä½œæˆã—ãŸã„å ´åˆã¯ã“ã¡ã‚‰ã‹ã‚‰å¯èƒ½ã§ã™ï¼š +CopyOption.label=コピー元 +CopyExisting=既存{0}ã®ã‚³ãƒ”ー diff --git a/core/src/main/resources/hudson/model/View/newJob_ko.properties b/core/src/main/resources/hudson/model/View/newJob_ko.properties index 2f50d54fb816..717b92aea8df 100644 --- a/core/src/main/resources/hudson/model/View/newJob_ko.properties +++ b/core/src/main/resources/hudson/model/View/newJob_ko.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Copy\ from=\uBCF5\uC0AC \uC704\uCE58 -CopyExisting=\uAE30\uC874 {0} \uBCF5\uC0AC -JobName={0} \uC774\uB984 +Copy\ from=복사 위치 +CopyExisting=기존 {0} 복사 +JobName={0} ì´ë¦„ diff --git a/core/src/main/resources/hudson/model/View/newJob_lt.properties b/core/src/main/resources/hudson/model/View/newJob_lt.properties index d3704ddd47ab..6fe2ec66a0dd 100644 --- a/core/src/main/resources/hudson/model/View/newJob_lt.properties +++ b/core/src/main/resources/hudson/model/View/newJob_lt.properties @@ -1,11 +1,11 @@ NewJob=New {0} JobName={0} pavadinimas ItemName.help=Privalomas laukas -ItemName.label=\u012eveskite elemento pavadinim\u0105 -ItemName.validation.required=\u0160is laukas negali b\u016bti tu\u0161\u010dias. Pra\u0161ome \u012fvesti tinkam\u0105 pavadinim\u0105 ir spauskite mygtuk\u0105 \u201eGerai\u201c. -ItemType.validation.required=Pra\u0161ome parinkti elemento tip\u0105 -CopyOption.placeholder=Ra\u0161ykite automatiniam u\u017ebaigimui -CopyOption.description=galite naudoti \u0161i\u0105 parinkt\u012f, jei norite sukurti nauj\u0105 element\u0105 pagal kit\u0105, jau egzistuojant\u012f: -CopyOption.label=Kopijuoti i\u0161 -CopyExisting=Kopijuoti esam\u0105 {0} +ItemName.label=Ä®veskite elemento pavadinimÄ… +ItemName.validation.required=Å is laukas negali bÅ«ti tuÅ¡Äias. PraÅ¡ome įvesti tinkamÄ… pavadinimÄ… ir spauskite mygtukÄ… „Gerai“. +ItemType.validation.required=PraÅ¡ome parinkti elemento tipÄ… +CopyOption.placeholder=RaÅ¡ykite automatiniam užbaigimui +CopyOption.description=galite naudoti Å¡iÄ… parinktį, jei norite sukurti naujÄ… elementÄ… pagal kitÄ…, jau egzistuojantį: +CopyOption.label=Kopijuoti iÅ¡ +CopyExisting=Kopijuoti esamÄ… {0} diff --git a/core/src/main/resources/hudson/model/View/newJob_lv.properties b/core/src/main/resources/hudson/model/View/newJob_lv.properties index fff114e37851..f4517ccf2744 100644 --- a/core/src/main/resources/hudson/model/View/newJob_lv.properties +++ b/core/src/main/resources/hudson/model/View/newJob_lv.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -CopyExisting=Kop\u0113t eksist\u0113jo\u0161u {0} -JobName={0} v\u0101rds +CopyExisting=KopÄ“t eksistÄ“joÅ¡u {0} +JobName={0} vÄrds diff --git a/core/src/main/resources/hudson/model/View/newJob_nl.properties b/core/src/main/resources/hudson/model/View/newJob_nl.properties index 83db35c44aff..dfe26b81b094 100644 --- a/core/src/main/resources/hudson/model/View/newJob_nl.properties +++ b/core/src/main/resources/hudson/model/View/newJob_nl.properties @@ -22,4 +22,4 @@ JobName={0}-naam CopyExisting=Kopieer bestaande {0} -Copy\ from=Kopi\u00EBer van +Copy\ from=Kopiëer van diff --git a/core/src/main/resources/hudson/model/View/newJob_pl.properties b/core/src/main/resources/hudson/model/View/newJob_pl.properties index d6e9d810b663..e008b816b92f 100644 --- a/core/src/main/resources/hudson/model/View/newJob_pl.properties +++ b/core/src/main/resources/hudson/model/View/newJob_pl.properties @@ -22,9 +22,9 @@ NewJob=Nowy {0} ItemName.help=Pole wymagane -ItemName.label=Podaj nazw\u0119 projektu -ItemName.validation.required=To pole nie mo\u017Ce by\u0107 puste, podaj nazw\u0119 projektu +ItemName.label=Podaj nazwÄ™ projektu +ItemName.validation.required=To pole nie może być puste, podaj nazwÄ™ projektu ItemType.validation.required=Wybierz rodzaj projektu -CopyOption.placeholder=Podaj nazw\u0119 -CopyOption.description=Je\u015Bli chcesz stworzy\u0107 nowy projekt na podstawie istniej\u0105cego, mo\u017Cesz u\u017Cy\u0107 tej opcji: +CopyOption.placeholder=Podaj nazwÄ™ +CopyOption.description=JeÅ›li chcesz stworzyć nowy projekt na podstawie istniejÄ…cego, możesz użyć tej opcji: CopyOption.label=Kopiuj z diff --git a/core/src/main/resources/hudson/model/View/newJob_pt_BR.properties b/core/src/main/resources/hudson/model/View/newJob_pt_BR.properties index efb1128734c1..7ab11105d73e 100644 --- a/core/src/main/resources/hudson/model/View/newJob_pt_BR.properties +++ b/core/src/main/resources/hudson/model/View/newJob_pt_BR.properties @@ -24,7 +24,7 @@ NewJob=Novo {0} ItemName.label=Entre com um nome de item CopyOption.label=Copiar de ItemType.validation.required=Por favor selecione um tipo de item -ItemName.validation.required=Este campo n\u00E3o pode ser vazio, por favor entre com um nome v\u00E1lido +ItemName.validation.required=Este campo não pode ser vazio, por favor entre com um nome válido CopyOption.placeholder=Digite para autocompletar -CopyOption.description=Se voc\u00EA quiser criar um novo item \u00E0 partir de um existente voc\u00EA pode usar esta op\u00E7\u00E3o: +CopyOption.description=Se você quiser criar um novo item à partir de um existente você pode usar esta opção: ItemName.help=Campo requerido diff --git a/core/src/main/resources/hudson/model/View/newJob_ru.properties b/core/src/main/resources/hudson/model/View/newJob_ru.properties index 601d6f33654a..9ed215879e25 100644 --- a/core/src/main/resources/hudson/model/View/newJob_ru.properties +++ b/core/src/main/resources/hudson/model/View/newJob_ru.properties @@ -1,13 +1,13 @@ -CopyExisting=\u041a\u043e\u043f\u0438\u044f \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0433\u043e {0}''\u0430 +CopyExisting=ÐšÐ¾Ð¿Ð¸Ñ ÑущеÑтвующего {0}''а -CopyOption.description=\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u044d\u0442\u0443 \u043e\u043f\u0446\u0438\u044e, \u0435\u0441\u043b\u0438 \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u0441\u043e\u0437\u0434\u0430\u0442\u044c Item \u0438\u0437 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0433\u043e -CopyOption.label=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u0437 -CopyOption.placeholder=\u0418\u043c\u044f +CopyOption.description=Выберите Ñту опцию, еÑли вы хотите Ñоздать Item из ÑущеÑтвующего +CopyOption.label=Копировать из +CopyOption.placeholder=Ð˜Ð¼Ñ -ItemName.help=\u041e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u043f\u043e\u043b\u0435 -ItemName.label=\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0438\u043c\u044f Item''\u0430 -ItemName.validation.required=\u041f\u043e\u043b\u0435 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0443\u0441\u0442\u044b\u043c, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0438\u043c\u044f +ItemName.help=ОбÑзательное поле +ItemName.label=Введите Ð¸Ð¼Ñ Item''а +ItemName.validation.required=Поле не может быть пуÑтым, введите Ð¸Ð¼Ñ -ItemType.validation.required=\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u0442\u0438\u043f \u044d\u043b\u0435\u043c\u0435\u043d\u0442''\u0430 -JobName=\u0418\u043c\u044f {0}''\u0430 -NewJob=\u041d\u043e\u0432\u044b\u0439 {0} +ItemType.validation.required=Укажите тип Ñлемент''а +JobName=Ð˜Ð¼Ñ {0}''а +NewJob=Ðовый {0} diff --git a/core/src/main/resources/hudson/model/View/newJob_sk.properties b/core/src/main/resources/hudson/model/View/newJob_sk.properties index df90ccbf4b5a..695c58c80ce2 100644 --- a/core/src/main/resources/hudson/model/View/newJob_sk.properties +++ b/core/src/main/resources/hudson/model/View/newJob_sk.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -CopyExisting=Skop\u00EDrova\u0165 existuj\u00FAci projekt -JobName=N\u00E1zov projektu +CopyExisting=SkopírovaÅ¥ existujúci projekt +JobName=Názov projektu diff --git a/core/src/main/resources/hudson/model/View/newJob_sr.properties b/core/src/main/resources/hudson/model/View/newJob_sr.properties index 74c6c5afc876..b4a39483cbcb 100644 --- a/core/src/main/resources/hudson/model/View/newJob_sr.properties +++ b/core/src/main/resources/hudson/model/View/newJob_sr.properties @@ -1,13 +1,13 @@ # This file is under the MIT License by authors -NewJob=\u041D\u043E\u0432\u0430 {0} -ItemName.label=\u0423\u043D\u0435\u0441\u0438\u0442\u0435 \u0438\u043C\u0435 \u043E\u0431\u0458\u0435\u043A\u0442\u0430 -ItemName.help=\u041E\u0431\u0430\u0432\u0435\u0437\u043D\u043E \u043F\u043E\u0459\u0435 -ItemName.validation.required=\u041F\u043E\u0459\u0435 \u043D\u0435 \u043C\u043E\u0436\u0435 \u0431\u0438\u0442\u0438 \u043F\u0440\u0430\u0437\u043D\u043E. \u0423\u043D\u0435\u0441\u0438\u0442\u0435 \u0432\u0430\u0436\u0435\u045B\u0435 \u0438\u043C\u0435. -ItemType.validation.required=\u0423\u043D\u0435\u0441\u0438\u0442\u0435 \u0442\u0438\u043F \u043E\u0431\u0458\u0435\u043A\u0442\u0430 -CopyOption.description=\u043E\u0432\u043E \u0432\u0430\u043C \u043E\u043C\u043E\u0433\u0443\u045B\u0430\u0432\u0430 \u0434\u0430 \u043A\u0440\u0435\u0438\u0440\u0430\u0442\u0435 \u043D\u043E\u0432\u0438 \u043E\u0431\u0458\u0435\u043A\u0430\u0442 \u043D\u0430 \u043E\u0441\u043D\u043E\u0432\u0443 \u043F\u043E\u0441\u0442\u043E\u0458\u0435\u045B\u0435\u0433.: -CopyOption.label=\u041A\u043E\u043F\u0438\u0440\u0430\u0458 \u043E\u0434 -CopyOption.placeholder=\u0423\u043D\u0435\u0448\u0435\u043D\u043E \u0438\u043C\u0435 \u045B\u0435 \u0441\u0435 \u0430\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0438 \u0434\u043E\u043F\u0438\u0441\u0430\u043D\u043E -JobName=\u041D\u0430\u0437\u0438\u0432 {0} -CopyExisting=\u041A\u043E\u043F\u0438\u0440\u0430\u0458 \u043F\u043E\u0441\u0442\u043E\u0458\u0435\u045B\u0435\u0433 {0} +NewJob=Ðова {0} +ItemName.label=УнеÑите име објекта +ItemName.help=Обавезно поље +ItemName.validation.required=Поље не може бити празно. УнеÑите важеће име. +ItemType.validation.required=УнеÑите тип објекта +CopyOption.description=ово вам омогућава да креирате нови објекат на оÑнову поÑтојећег.: +CopyOption.label=Копирај од +CopyOption.placeholder=Унешено име ће Ñе аутоматÑки допиÑано +JobName=Ðазив {0} +CopyExisting=Копирај поÑтојећег {0} Copy\ from= diff --git a/core/src/main/resources/hudson/model/View/newJob_sv_SE.properties b/core/src/main/resources/hudson/model/View/newJob_sv_SE.properties index f5b653c3bb7d..3b1849f01e2f 100644 --- a/core/src/main/resources/hudson/model/View/newJob_sv_SE.properties +++ b/core/src/main/resources/hudson/model/View/newJob_sv_SE.properties @@ -22,4 +22,4 @@ NewJob=Skapa nytt {0} CopyExisting=Kopiera existerande {0} -JobName=Namn p\u00E5 {0} +JobName=Namn pÃ¥ {0} diff --git a/core/src/main/resources/hudson/model/View/newJob_tr.properties b/core/src/main/resources/hudson/model/View/newJob_tr.properties index 9d998a09d26a..340c20aed4c3 100644 --- a/core/src/main/resources/hudson/model/View/newJob_tr.properties +++ b/core/src/main/resources/hudson/model/View/newJob_tr.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -#JobName=\u0130\u015f ad\u0131 -#CopyExisting=Varolan bir i\u015fi kopyala -#Copy\ from=Kopyalanacak i\u015f +#JobName=Ä°ÅŸ adı +#CopyExisting=Varolan bir iÅŸi kopyala +#Copy\ from=Kopyalanacak iÅŸ CopyExisting=Varolandan kopyala {0} JobName=isim diff --git a/core/src/main/resources/hudson/model/View/newJob_uk.properties b/core/src/main/resources/hudson/model/View/newJob_uk.properties index 9737f07fa0f1..a6312a13e104 100644 --- a/core/src/main/resources/hudson/model/View/newJob_uk.properties +++ b/core/src/main/resources/hudson/model/View/newJob_uk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -CopyExisting=\u0421\u043A\u043E\u043F\u0456\u044E\u0432\u0430\u0442\u0438 \u0456\u0441\u043D\u0443\u044E\u0447\u0438\u0439 {0} -JobName={0} \u043D\u0430\u0437\u0432\u0430 +CopyExisting=Скопіювати Ñ–Ñнуючий {0} +JobName={0} назва diff --git a/core/src/main/resources/hudson/model/View/newJob_zh_TW.properties b/core/src/main/resources/hudson/model/View/newJob_zh_TW.properties index 2b5f607ee58d..64e1ee045e27 100644 --- a/core/src/main/resources/hudson/model/View/newJob_zh_TW.properties +++ b/core/src/main/resources/hudson/model/View/newJob_zh_TW.properties @@ -21,13 +21,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewJob=\u65b0\u589e{0} -JobName={0}\u540d\u7a31 -ItemName.help=\u5fc5\u586b\u6b04\u4f4d -ItemName.label=\u8f38\u5165\u9805\u76ee\u540d\u7a31 -ItemName.validation.required=\u6b64\u6b04\u4f4d\u4e0d\u5f97\u7559\u767d\uff0c\u8acb\u8f38\u5165\u6709\u6548\u7684\u540d\u7a31 -ItemType.validation.required=\u8acb\u9078\u64c7\u9805\u76ee\u985e\u578b -CopyOption.placeholder=\u8f38\u5165\u4ee5\u81ea\u52d5\u5b8c\u6210 -CopyOption.description=\u5982\u679c\u60a8\u8981\u5f9e\u5176\u4ed6\u65e2\u6709\u7684\u9805\u76ee\u5efa\u7acb\uff0c\u60a8\u53ef\u4ee5\u4f7f\u7528\u6b64\u9078\u9805\: -CopyOption.label=\u8907\u88fd\u81ea -CopyExisting=\u8907\u88fd\u65e2\u6709\u7684{0} +NewJob=新增{0} +JobName={0}å稱 +ItemName.help=å¿…å¡«æ¬„ä½ +ItemName.label=輸入項目å稱 +ItemName.validation.required=此欄ä½ä¸å¾—留白,請輸入有效的å稱 +ItemType.validation.required=è«‹é¸æ“‡é …目類型 +CopyOption.placeholder=è¼¸å…¥ä»¥è‡ªå‹•å®Œæˆ +CopyOption.description=如果您è¦å¾žå…¶ä»–既有的項目建立,您å¯ä»¥ä½¿ç”¨æ­¤é¸é …\: +CopyOption.label=複製自 +CopyExisting=複製既有的{0} diff --git a/core/src/main/resources/hudson/model/View/noJob_bg.properties b/core/src/main/resources/hudson/model/View/noJob_bg.properties index 4b517fa90761..2ccc06f732b9 100644 --- a/core/src/main/resources/hudson/model/View/noJob_bg.properties +++ b/core/src/main/resources/hudson/model/View/noJob_bg.properties @@ -22,8 +22,8 @@ # You can either add some existing jobs to this view or create a new job in this view. description_2=\ - \u0418\u043b\u0438 \u0434\u043e\u0431\u0430\u0432\u0435\u0442\u0435 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430\u0449\u0438 \u0437\u0430\u0434\u0430\u043d\u0438\u044f, \u0438\u043b\u0438\ - \u0441\u044a\u0437\u0434\u0430\u0439\u0442\u0435 \u043d\u043e\u0432\u0438 \u0432 \u043d\u0435\u0433\u043e. + Или добавете ÑъщеÑтвуващи заданиÑ, или\ + Ñъздайте нови в него. # This view has no jobs associated with it. description_1=\ - \u0412 \u0442\u043e\u0437\u0438 \u0438\u0437\u0433\u043b\u0435\u0434 \u043d\u044f\u043c\u0430 \u0437\u0430\u0434\u0430\u043d\u0438\u044f. + Ð’ този изглед нÑма заданиÑ. diff --git a/core/src/main/resources/hudson/model/View/noJob_cs.properties b/core/src/main/resources/hudson/model/View/noJob_cs.properties index 25d960876bcb..b9f92d22e433 100644 --- a/core/src/main/resources/hudson/model/View/noJob_cs.properties +++ b/core/src/main/resources/hudson/model/View/noJob_cs.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description_1=Pohled nem\u00E1 \u017E\u00E1dn\u00E9 p\u0159i\u0159azen\u00E9 \u00FAkoly. -description_2=M\u016F\u017Eete bu\u010F p\u0159idat existuj\u00EDc\u00ED \u00FAkoly nebo vytvo\u0159it nov\u00FD \u00FAkol v tomto pohledu. +description_1=Pohled nemá žádné pÅ™iÅ™azené úkoly. +description_2=Můžete buÄ pÅ™idat existující úkoly nebo vytvoÅ™it nový úkol v tomto pohledu. diff --git a/core/src/main/resources/hudson/model/View/noJob_da.properties b/core/src/main/resources/hudson/model/View/noJob_da.properties index c1732d9fef73..d3251296cbe1 100644 --- a/core/src/main/resources/hudson/model/View/noJob_da.properties +++ b/core/src/main/resources/hudson/model/View/noJob_da.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. description_1=Denne visning har ingen tilknyttede jobs. -description_2=Tilf\u00f8j nogen. +description_2=Tilføj nogen. diff --git a/core/src/main/resources/hudson/model/View/noJob_de.properties b/core/src/main/resources/hudson/model/View/noJob_de.properties index c13be1e48803..0115fb9c25f8 100644 --- a/core/src/main/resources/hudson/model/View/noJob_de.properties +++ b/core/src/main/resources/hudson/model/View/noJob_de.properties @@ -1,2 +1,2 @@ description_1=Dieser Ansicht wurden keine Jobs zugeordnet. -description_2=Sie können Jobs hinzufügen. +description_2=Sie können Jobs hinzufügen. diff --git a/core/src/main/resources/hudson/model/View/noJob_es.properties b/core/src/main/resources/hudson/model/View/noJob_es.properties index 9fbbf9adf71c..4abb8be9126b 100644 --- a/core/src/main/resources/hudson/model/View/noJob_es.properties +++ b/core/src/main/resources/hudson/model/View/noJob_es.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description_1=Esta vista no tiene ningún proyecto asociado. -description_2=Añadir. +description_1=Esta vista no tiene ningún proyecto asociado. +description_2=Añadir. diff --git a/core/src/main/resources/hudson/model/View/noJob_fi.properties b/core/src/main/resources/hudson/model/View/noJob_fi.properties index bc3bcbab4aa3..44cdd5cc02a5 100644 --- a/core/src/main/resources/hudson/model/View/noJob_fi.properties +++ b/core/src/main/resources/hudson/model/View/noJob_fi.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -description_1=T\u00E4ss\u00E4 n\u00E4kym\u00E4ss\u00E4 ei ole m\u00E4\u00E4riteltyj\u00E4 t\u00F6it\u00E4. -description_2=Voit joko lis\u00E4t\u00E4 olemassa olevia t\u00F6it\u00E4 t\u00E4h\u00E4n n\u00E4kym\u00E4\u00E4n tai luoda uuden ty\u00F6n. +description_1=Tässä näkymässä ei ole määriteltyjä töitä. +description_2=Voit joko lisätä olemassa olevia töitä tähän näkymään tai luoda uuden työn. diff --git a/core/src/main/resources/hudson/model/View/noJob_fr.properties b/core/src/main/resources/hudson/model/View/noJob_fr.properties index 6752c92cfb76..6942a0e12e39 100644 --- a/core/src/main/resources/hudson/model/View/noJob_fr.properties +++ b/core/src/main/resources/hudson/model/View/noJob_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description_1=Cette vue n''a aucun job associé. +description_1=Cette vue n''a aucun job associé. description_2=Veuillez en ajouter. diff --git a/core/src/main/resources/hudson/model/View/noJob_it.properties b/core/src/main/resources/hudson/model/View/noJob_it.properties index dedc33daecdc..c24fcd3331f8 100644 --- a/core/src/main/resources/hudson/model/View/noJob_it.properties +++ b/core/src/main/resources/hudson/model/View/noJob_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,6 +22,6 @@ # THE SOFTWARE. description_1=Questa vista non ha processi associati. -description_2=È possibile aggiungere dei processi \ +description_2=È possibile aggiungere dei processi \ esistenti a questa vista o creare un nuovo \ processo in questa vista. diff --git a/core/src/main/resources/hudson/model/View/noJob_ja.properties b/core/src/main/resources/hudson/model/View/noJob_ja.properties index 13a5011c3eb6..05dc680027bc 100644 --- a/core/src/main/resources/hudson/model/View/noJob_ja.properties +++ b/core/src/main/resources/hudson/model/View/noJob_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description_1=\u3053\u306E\u30D3\u30E5\u30FC\u306B\u306F\u30B8\u30E7\u30D6\u306F\u3042\u308A\u307E\u305B\u3093\u3002 -description_2=\u4F55\u304B\u767B\u9332\u3057\u3066\u304F\u3060\u3055\u3044\u3002 +description_1=ã“ã®ãƒ“ューã«ã¯ã‚¸ãƒ§ãƒ–ã¯ã‚ã‚Šã¾ã›ã‚“。 +description_2=何ã‹ç™»éŒ²ã—ã¦ãã ã•ã„。 diff --git a/core/src/main/resources/hudson/model/View/noJob_lt.properties b/core/src/main/resources/hudson/model/View/noJob_lt.properties index e718d4d31c90..4404af959418 100644 --- a/core/src/main/resources/hudson/model/View/noJob_lt.properties +++ b/core/src/main/resources/hudson/model/View/noJob_lt.properties @@ -1,2 +1,2 @@ -description_1=\u0160is darbas neturi susiet\u0173 darb\u0173. -description_2=Galite arba prid\u0117ti esamus darbus \u012f \u0161\u012f rodin\u012f, arba sukurti nauj\u0105 darb\u0105. +description_1=Å is darbas neturi susietų darbų. +description_2=Galite arba pridÄ—ti esamus darbus į šį rodinį, arba sukurti naujÄ… darbÄ…. diff --git a/core/src/main/resources/hudson/model/View/noJob_lv.properties b/core/src/main/resources/hudson/model/View/noJob_lv.properties index 20c54db27c45..d6b213e19490 100644 --- a/core/src/main/resources/hudson/model/View/noJob_lv.properties +++ b/core/src/main/resources/hudson/model/View/noJob_lv.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -description_1=\u0160im skatam nav neviena saisto\u0161\u0101 projekta. -description_2=J\u016Bs varat vai nu pievienot eso\u0161os projektus \u0161im skatam, vai ar\u012B izveidot jaunu projektu \u0161im skatam. +description_1=Å im skatam nav neviena saistoÅ¡Ä projekta. +description_2=JÅ«s varat vai nu pievienot esoÅ¡os projektus Å¡im skatam, vai arÄ« izveidot jaunu projektu Å¡im skatam. diff --git a/core/src/main/resources/hudson/model/View/noJob_pl.properties b/core/src/main/resources/hudson/model/View/noJob_pl.properties index 671c916980a5..6fbe3f930344 100644 --- a/core/src/main/resources/hudson/model/View/noJob_pl.properties +++ b/core/src/main/resources/hudson/model/View/noJob_pl.properties @@ -19,5 +19,5 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description_1=Ten widok nie ma przypisanych projekt\u00F3w. -description_2=Mo\u017Cesz doda\u0107 istniej\u0105ce projekty do tego widoku lub stworzy\u0107 dla niego nowe. +description_1=Ten widok nie ma przypisanych projektów. +description_2=Możesz dodać istniejÄ…ce projekty do tego widoku lub stworzyć dla niego nowe. diff --git a/core/src/main/resources/hudson/model/View/noJob_pt_BR.properties b/core/src/main/resources/hudson/model/View/noJob_pt_BR.properties index 66dbb4353504..f36895ffb8d9 100644 --- a/core/src/main/resources/hudson/model/View/noJob_pt_BR.properties +++ b/core/src/main/resources/hudson/model/View/noJob_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description_1=Essa vis\u00E3o n\u00E3o possui nenhuma tarefa associada +description_1=Essa visão não possui nenhuma tarefa associada description_2=Por favor adicione alguma. diff --git a/core/src/main/resources/hudson/model/View/noJob_ru.properties b/core/src/main/resources/hudson/model/View/noJob_ru.properties index 1e5789ab9f0f..7257fdbb7763 100644 --- a/core/src/main/resources/hudson/model/View/noJob_ru.properties +++ b/core/src/main/resources/hudson/model/View/noJob_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description_1=\u0421 \u044D\u0442\u0438\u043C \u0432\u0438\u0434\u043E\u043C \u043D\u0435 \u0441\u0432\u044F\u0437\u0430\u043D\u043E \u043D\u0438 \u043E\u0434\u043D\u043E\u0439 \u0437\u0430\u0434\u0430\u0447\u0438, \u043B\u0438\u0431\u043E \u0443 \u0432\u0430\u0441 \u043D\u0435\u0434\u043E\u0441\u0442\u0430\u0442\u043E\u0447\u043D\u043E \u043F\u0440\u0430\u0432 \u0434\u043B\u044F \u0438\u0445 \u043F\u0440\u043E\u0441\u043C\u043E\u0442\u0440\u0430. -description_2=\u0412\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0434\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u0435 \u0437\u0430\u0434\u0430\u0447\u0438 \u043A \u044D\u0442\u043E\u043C\u0443 \u0432\u0438\u0434\u0443 \u0438\u043B\u0438 \u0441\u043E\u0437\u0434\u0430\u0442\u044C \u043D\u043E\u0432\u0443\u044E \u0437\u0430\u0434\u0430\u0447\u0443 \u0434\u043B\u044F \u044D\u0442\u043E\u0433\u043E \u0432\u0438\u0434\u0430. +description_1=С Ñтим видом не ÑвÑзано ни одной задачи, либо у Ð²Ð°Ñ Ð½ÐµÐ´Ð¾Ñтаточно прав Ð´Ð»Ñ Ð¸Ñ… проÑмотра. +description_2=Ð’Ñ‹ можете добавить ÑущеÑтвующие задачи к Ñтому виду или Ñоздать новую задачу Ð´Ð»Ñ Ñтого вида. diff --git a/core/src/main/resources/hudson/model/View/noJob_sr.properties b/core/src/main/resources/hudson/model/View/noJob_sr.properties index 48fa3dc5f4fd..3b3b6b9e4d65 100644 --- a/core/src/main/resources/hudson/model/View/noJob_sr.properties +++ b/core/src/main/resources/hudson/model/View/noJob_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -description_1=\u041D\u0435 \u043F\u043E\u0441\u0442\u043E\u0458\u0438 \u043D\u0438 \u0458\u0435\u0434\u0430\u043D \u0437\u0430\u0434\u0430\u0442\u0430\u043A \u0437\u0430 \u043E\u0432\u0430\u0458 \u043F\u0440\u0435\u0433\u043B\u0435\u0434. -description_2=\u041C\u043E\u0436\u0435\u0442\u0435 \u0434\u043E\u0434\u0430\u0442\u0438 \u043F\u043E\u0441\u0442\u043E\u0458\u0435\u045B\u0430 \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0430 \u043D\u0430 \u043E\u0432\u043E\u043C \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0443 \u0438\u043B\u0438 \u043A\u0440\u0435\u0438\u0440\u0430\u0458\u0442\u0435 \u043D\u043E\u0432\u0438 \u0437\u0430\u0434\u0430\u0442\u0430\u043A \u0437\u0430 \u043E\u0432\u0435 \u0432\u0440\u0441\u0442\u0435. +description_1=Ðе поÑтоји ни један задатак за овај преглед. +description_2=Можете додати поÑтојећа задатака на овом прегледу или креирајте нови задатак за ове врÑте. diff --git a/core/src/main/resources/hudson/model/View/noJob_sv_SE.properties b/core/src/main/resources/hudson/model/View/noJob_sv_SE.properties index ebbd5eb70463..00096239b911 100644 --- a/core/src/main/resources/hudson/model/View/noJob_sv_SE.properties +++ b/core/src/main/resources/hudson/model/View/noJob_sv_SE.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors description_1=Denna vy har inga jobb kopplade till sig. -description_2=Du kan antingen l\u00E4gga till existerande jobb till denna vy, eller skapa ett nytt jobb in denna vy. +description_2=Du kan antingen lägga till existerande jobb till denna vy, eller skapa ett nytt jobb in denna vy. diff --git a/core/src/main/resources/hudson/model/View/noJob_zh_TW.properties b/core/src/main/resources/hudson/model/View/noJob_zh_TW.properties index 82533c6b58ae..9daa656e16ea 100644 --- a/core/src/main/resources/hudson/model/View/noJob_zh_TW.properties +++ b/core/src/main/resources/hudson/model/View/noJob_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description_1=\u9019\u500b\u8996\u666f\u88e1\u6c92\u6709\u4efb\u4f55\u4f5c\u696d\u3002 -description_2=\u60a8\u53ef\u4ee5\u5728\u8996\u666f\u4e2d\u52a0\u5165\u4e00\u4e9b\u73fe\u6709\u4f5c\u696d\uff0c\u6216\u662f\u5efa\u7acb\u65b0\u4f5c\u696d\u3002 +description_1=這個視景裡沒有任何作業。 +description_2=您å¯ä»¥åœ¨è¦–景中加入一些ç¾æœ‰ä½œæ¥­ï¼Œæˆ–是建立新作業。 diff --git a/core/src/main/resources/hudson/model/View/sidepanel_bg.properties b/core/src/main/resources/hudson/model/View/sidepanel_bg.properties index 1a1d8fbceada..6cd9b62ca901 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_bg.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_bg.properties @@ -21,16 +21,16 @@ # THE SOFTWARE. Build\ History=\ - \u0418\u0441\u0442\u043e\u0440\u0438\u044f \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f\u0442\u0430 + ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° изгражданиÑта Check\ File\ Fingerprint=\ - \u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043d\u0430 \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u044a\u043a\u0430 \u043d\u0430 \u0444\u0430\u0439\u043b\u0430 + Проверка на отпечатъка на файла Delete\ View=\ - \u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u043b\u0435\u0434\u0430 + Изтриване на изгледа Edit\ View=\ - \u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u043b\u0435\u0434\u0430 + Редактиране на изгледа NewJob=\ - \u041d\u043e\u0432\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u201e{0}\u201c + Ðово изграждане „{0}“ People=\ - \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 + Потребители Project\ Relationship=\ - \u0412\u0440\u044a\u0437\u043a\u0430 \u0441 \u043f\u0440\u043e\u0435\u043a\u0442\u0438 + Връзка Ñ Ð¿Ñ€Ð¾ÐµÐºÑ‚Ð¸ diff --git a/core/src/main/resources/hudson/model/View/sidepanel_ca.properties b/core/src/main/resources/hudson/model/View/sidepanel_ca.properties index a3cf740e3077..07694131cf1f 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_ca.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_ca.properties @@ -26,4 +26,4 @@ Delete\ View=Esborra vista Edit\ View=Editar Vista NewJob={0} nova People=Gent -Project\ Relationship=Relaci\u00F3 entre projectes +Project\ Relationship=Relació entre projectes diff --git a/core/src/main/resources/hudson/model/View/sidepanel_cs.properties b/core/src/main/resources/hudson/model/View/sidepanel_cs.properties index 178ac650eb82..914070e9b1f3 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_cs.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_cs.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=Historie sestaven\u00ED -Check\ File\ Fingerprint=Ov\u011B\u0159it otisk souboru -NewJob=Nov\u00E9 -People=Lid\u00E9 +Build\ History=Historie sestavení +Check\ File\ Fingerprint=Ověřit otisk souboru +NewJob=Nové +People=Lidé Delete\ View=Smazat pohled Edit\ View=Edituj View Project\ Relationship=Vazby mezi projekty diff --git a/core/src/main/resources/hudson/model/View/sidepanel_de.properties b/core/src/main/resources/hudson/model/View/sidepanel_de.properties index dffa84ece395..104d35921217 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_de.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_de.properties @@ -24,6 +24,6 @@ NewJob={0} anlegen People=Benutzer Build\ History=Build-Verlauf Edit\ View=Ansicht bearbeiten -Delete\ View=Ansicht l\u00f6schen +Delete\ View=Ansicht löschen Project\ Relationship=Projektbeziehungen -Check\ File\ Fingerprint=Fingerabdruck \u00fcberpr\u00fcfen +Check\ File\ Fingerprint=Fingerabdruck überprüfen diff --git a/core/src/main/resources/hudson/model/View/sidepanel_el.properties b/core/src/main/resources/hudson/model/View/sidepanel_el.properties index c05815465136..113e1daa64e8 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_el.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_el.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=\u0399\u03C3\u03C4\u03BF\u03C1\u03B9\u03BA\u03CC \u03B4\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03B9\u03CE\u03BD -Check\ File\ Fingerprint=\u0388\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 \u0391\u03C0\u03BF\u03C4\u03C5\u03C0\u03C9\u03BC\u03AC\u03C4\u03C9\u03BD \u0391\u03C1\u03C7\u03B5\u03AF\u03C9\u03BD -Delete\ View=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u038C\u03C8\u03B7\u03C2 -Edit\ View=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u038C\u03C8\u03B7\u03C2 -NewJob=\u039D\u03AD\u03BF/\u03B1 {0} -People=\u03A7\u03C1\u03AE\u03C3\u03C4\u03B5\u03C2 -Project\ Relationship=\u03A3\u03C5\u03C3\u03C7\u03B5\u03C4\u03AF\u03C3\u03B5\u03B9\u03C2 \u03C4\u03BF\u03C5 Project +Build\ History=ΙστοÏικό διεÏγασιών +Check\ File\ Fingerprint=Έλεγχος Αποτυπωμάτων ΑÏχείων +Delete\ View=ΔιαγÏαφή Όψης +Edit\ View=ΕπεξεÏγασία Όψης +NewJob=Îέο/α {0} +People=ΧÏήστες +Project\ Relationship=Συσχετίσεις του Project diff --git a/core/src/main/resources/hudson/model/View/sidepanel_es_AR.properties b/core/src/main/resources/hudson/model/View/sidepanel_es_AR.properties index 663e8324e709..caf22cf21e04 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_es_AR.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_es_AR.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Build\ History=Historial de Construcci\u00F3n +Build\ History=Historial de Construcción Check\ File\ Fingerprint=Verificar Huella de Archivo Delete\ View=Borrar vista Edit\ View=Editar Vista diff --git a/core/src/main/resources/hudson/model/View/sidepanel_et.properties b/core/src/main/resources/hudson/model/View/sidepanel_et.properties index a6cf257ee6aa..5eb813727a57 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_et.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_et.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Build\ History=Ehitamiste ajalugu -Check\ File\ Fingerprint=Kontrolli faili jalaj\u00E4lge +Check\ File\ Fingerprint=Kontrolli faili jalajälge Delete\ View=Kustuta vaade Edit\ View=Muuda vaadet NewJob=Uus {0} diff --git a/core/src/main/resources/hudson/model/View/sidepanel_fi.properties b/core/src/main/resources/hudson/model/View/sidepanel_fi.properties index 5da81bd18022..c8c25c135894 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_fi.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_fi.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=K\u00E4\u00E4nn\u00F6shistoria -Check\ File\ Fingerprint=Tarkasta tiedoston sormenj\u00E4lki -Delete\ View=Poista n\u00E4kym\u00E4 -Edit\ View=Muokkaa n\u00E4kym\u00E4\u00E4 +Build\ History=Käännöshistoria +Check\ File\ Fingerprint=Tarkasta tiedoston sormenjälki +Delete\ View=Poista näkymä +Edit\ View=Muokkaa näkymää NewJob=Uusi {0} -People=K\u00E4ytt\u00E4j\u00E4t +People=Käyttäjät Project\ Relationship=Projektien riippuvuudet diff --git a/core/src/main/resources/hudson/model/View/sidepanel_fr.properties b/core/src/main/resources/hudson/model/View/sidepanel_fr.properties index ac09421cf153..15dd4627a8cc 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_fr.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_fr.properties @@ -23,7 +23,7 @@ NewJob=Nouveau {0} People=Utilisateurs Build\ History=Historique des constructions -Edit\ View=\u00C9diter cette vue +Edit\ View=Éditer cette vue Delete\ View=Supprimer cette vue Project\ Relationship=Relations entre les builds -Check\ File\ Fingerprint=V\u00E9rifier les empreintes num\u00E9riques +Check\ File\ Fingerprint=Vérifier les empreintes numériques diff --git a/core/src/main/resources/hudson/model/View/sidepanel_he.properties b/core/src/main/resources/hudson/model/View/sidepanel_he.properties index 49e458a247b2..1f756a92be4b 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_he.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_he.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=\u05D4\u05D9\u05E1\u05D8\u05D5\u05E8\u05D9\u05D9\u05EA \u05D1\u05E0\u05D9\u05D4 -Check\ File\ Fingerprint=\u05D1\u05D3\u05D5\u05E7 \u05D8\u05D1\u05D9\u05E2\u05EA \u05D0\u05E6\u05D1\u05E2 \u05E9\u05DC \u05E7\u05D5\u05D1\u05E5 -Delete\ View=\u05DE\u05D7\u05E7 \u05DE\u05E1\u05DA -Edit\ View=\u05E2\u05E8\u05D5\u05DA \u05DE\u05E1\u05DA -NewJob=\u05D7\u05D3\u05E9 -People=\u05D0\u05E0\u05E9\u05D9\u05DD -Project\ Relationship=\u05E7\u05E9\u05E8\u05D9 \u05E4\u05E8\u05D5\u05D9\u05D9\u05E7\u05D8\u05D9\u05DD +Build\ History=היסטוריית בניה +Check\ File\ Fingerprint=בדוק טביעת ×צבע של קובץ +Delete\ View=מחק מסך +Edit\ View=ערוך מסך +NewJob=חדש +People=×× ×©×™× +Project\ Relationship=קשרי ×¤×¨×•×™×™×§×˜×™× diff --git a/core/src/main/resources/hudson/model/View/sidepanel_hu.properties b/core/src/main/resources/hudson/model/View/sidepanel_hu.properties index a4882fd202ba..603eec38839e 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_hu.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_hu.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=Build t\u00F6rt\u00E9net -Check\ File\ Fingerprint=F\u00E1jl Verzi\u00F3 Ellen\u0151rz\u00E9se -Delete\ View=N\u00E9zet t\u00F6rl\u00E9se -Edit\ View=N\u00E9zet szerkeszt\u00E9se -NewJob=\u00DAj {0} +Build\ History=Build történet +Check\ File\ Fingerprint=Fájl Verzió EllenÅ‘rzése +Delete\ View=Nézet törlése +Edit\ View=Nézet szerkesztése +NewJob=Új {0} People=Emberek Project\ Relationship=Projekt kapcsolat diff --git a/core/src/main/resources/hudson/model/View/sidepanel_it.properties b/core/src/main/resources/hudson/model/View/sidepanel_it.properties index d56103d3cfc4..a3d11cec4843 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_it.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/View/sidepanel_ja.properties b/core/src/main/resources/hudson/model/View/sidepanel_ja.properties index e70f8ba386fe..128c20e2c094 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_ja.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_ja.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewJob=\u65b0\u898f{0}\u4f5c\u6210 -People=\u958b\u767a\u8005 -Build\ History=\u30d3\u30eb\u30c9\u5c65\u6b74 -Edit\ View=\u30d3\u30e5\u30fc\u306e\u5909\u66f4 -Delete\ View=\u30d3\u30e5\u30fc\u306e\u524a\u9664 -Project\ Relationship=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u76f8\u95a2\u95a2\u4fc2 -Check\ File\ Fingerprint=\u30d5\u30a1\u30a4\u30eb\u6307\u7d0b\u30c1\u30a7\u30c3\u30af +NewJob=æ–°è¦{0}ä½œæˆ +People=開発者 +Build\ History=ビルド履歴 +Edit\ View=ビューã®å¤‰æ›´ +Delete\ View=ビューã®å‰Šé™¤ +Project\ Relationship=プロジェクト相関関係 +Check\ File\ Fingerprint=ファイル指紋ãƒã‚§ãƒƒã‚¯ diff --git a/core/src/main/resources/hudson/model/View/sidepanel_ko.properties b/core/src/main/resources/hudson/model/View/sidepanel_ko.properties index db5f30b460e9..046c6d8d8bfc 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_ko.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_ko.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Edit\ View=\uBCF4\uAE30 \uC218\uC815 -NewJob=\uC0C8\uB85C\uC6B4 {0} -Check\ File\ Fingerprint=\uD30C\uC77C \uD551\uAC70\uD504\uB9B0\uD2B8 \uD655\uC778 -Delete\ View=\uBDF0 \uC0AD\uC81C -People=\uC0AC\uB78C -Build\ History=\uBE4C\uB4DC \uAE30\uB85D -Project\ Relationship=\uD504\uB85C\uC81D\uD2B8 \uC5F0\uAD00 \uAD00\uACC4 +Edit\ View=보기 수정 +NewJob=새로운 {0} +Check\ File\ Fingerprint=íŒŒì¼ í•‘ê±°í”„ë¦°íŠ¸ í™•ì¸ +Delete\ View=ë·° ì‚­ì œ +People=사람 +Build\ History=빌드 ê¸°ë¡ +Project\ Relationship=프로ì íŠ¸ ì—°ê´€ 관계 diff --git a/core/src/main/resources/hudson/model/View/sidepanel_lt.properties b/core/src/main/resources/hudson/model/View/sidepanel_lt.properties index e4ed86f9dcd9..c3ae843147e5 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_lt.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_lt.properties @@ -1,9 +1,9 @@ # /jenkins-core/src/main/resources/hudson/model/View/sidepanel_lt.properties -Build\ History=U\u017Eduo\u010Di\u0173 istorija -Check\ File\ Fingerprint=Tikrinti failo antspaud\u0105 -Delete\ View=I\u0161trinti skilt\u012F -Edit\ View=Redaguoti skilt\u012F +Build\ History=UžduoÄių istorija +Check\ File\ Fingerprint=Tikrinti failo antspaudÄ… +Delete\ View=IÅ¡trinti skiltį +Edit\ View=Redaguoti skiltį NewJob=Naujas {0} -People=\u017Dmon\u0117s -Project\ Relationship=Projekto S\u0105ry\u0161iai +People=ŽmonÄ—s +Project\ Relationship=Projekto SÄ…ryÅ¡iai diff --git a/core/src/main/resources/hudson/model/View/sidepanel_lv.properties b/core/src/main/resources/hudson/model/View/sidepanel_lv.properties index 37e2abe25e84..969febb84db5 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_lv.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_lv.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=B\u016Bv\u0113jumu v\u0113sture -Check\ File\ Fingerprint=P\u0101rbaud\u012Bt faila "pirkstu nospiedumu" -Delete\ View=Dz\u0113st skatu +Build\ History=BÅ«vÄ“jumu vÄ“sture +Check\ File\ Fingerprint=PÄrbaudÄ«t faila "pirkstu nospiedumu" +Delete\ View=DzÄ“st skatu Edit\ View=Labot skatu NewJob=Jauns {0} -People=Cilv\u0113ki -Project\ Relationship=Projektu atkar\u012Bbas +People=CilvÄ“ki +Project\ Relationship=Projektu atkarÄ«bas diff --git a/core/src/main/resources/hudson/model/View/sidepanel_nb_NO.properties b/core/src/main/resources/hudson/model/View/sidepanel_nb_NO.properties index 8ed6afe877e3..baf21ab7bcc2 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_nb_NO.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_nb_NO.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Build\ History=Bygghistorikk -Check\ File\ Fingerprint=Unders\u00F8k fingeravtrykk for filer +Check\ File\ Fingerprint=Undersøk fingeravtrykk for filer Delete\ View=Slett visning Edit\ View=Rediger visning NewJob=Nye {0} diff --git a/core/src/main/resources/hudson/model/View/sidepanel_pl.properties b/core/src/main/resources/hudson/model/View/sidepanel_pl.properties index d600f794c6b1..f1148493b308 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_pl.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_pl.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=Historia zada\u0144 -Check\ File\ Fingerprint=Sprawd\u017A odcisk palca pliku -Delete\ View=Usu\u0144 widok +Build\ History=Historia zadaÅ„ +Check\ File\ Fingerprint=Sprawdź odcisk palca pliku +Delete\ View=UsuÅ„ widok Edit\ View=Edytuj widok NewJob=Nowy {0} -People=U\u017Cytkownicy -Project\ Relationship=Projekty powi\u0105zane +People=Użytkownicy +Project\ Relationship=Projekty powiÄ…zane diff --git a/core/src/main/resources/hudson/model/View/sidepanel_pt_BR.properties b/core/src/main/resources/hudson/model/View/sidepanel_pt_BR.properties index 6fe329bcd029..401b623da57e 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_pt_BR.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_pt_BR.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. NewJob=Novo {0} -People=Usu\u00E1rios -Build\ History=Hist\u00F3rico de compila\u00E7\u00F5es -Edit\ View=Editar visualiza\u00E7\u00E3o -Delete\ View=Remover visualiza\u00E7\u00E3o +People=Usuários +Build\ History=Histórico de compilações +Edit\ View=Editar visualização +Delete\ View=Remover visualização Project\ Relationship=Relacionamento entre projetos Check\ File\ Fingerprint=Verificar arquivo digital diff --git a/core/src/main/resources/hudson/model/View/sidepanel_pt_PT.properties b/core/src/main/resources/hudson/model/View/sidepanel_pt_PT.properties index c2cfb63f9466..ae3e37fe5b04 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_pt_PT.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_pt_PT.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=Historial de Compila\u00E7\u00F5es -Check\ File\ Fingerprint=Verificar a Impress\u00E3o Digital de Ficheiro +Build\ History=Historial de Compilações +Check\ File\ Fingerprint=Verificar a Impressão Digital de Ficheiro Delete\ View=Apagar Vista Edit\ View=Editar Vista NewJob=Novo {0} People=Utilizadores -Project\ Relationship=Rela\u00E7\u00E3o dos Projectos +Project\ Relationship=Relação dos Projectos diff --git a/core/src/main/resources/hudson/model/View/sidepanel_ru.properties b/core/src/main/resources/hudson/model/View/sidepanel_ru.properties index ee8d8614e64c..95d3a2f3a509 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_ru.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewJob=\u0421\u043E\u0437\u0434\u0430\u0442\u044C {0} -People=\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0438 -Build\ History=\u0418\u0441\u0442\u043E\u0440\u0438\u044F \u0441\u0431\u043E\u0440\u043E\u043A -Edit\ View=\u041D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C \u0432\u0438\u0434 -Delete\ View=\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0432\u0438\u0434 -Project\ Relationship=\u0421\u0432\u044F\u0437\u0438 \u043F\u0440\u043E\u0435\u043A\u0442\u043E\u0432 +NewJob=Создать {0} +People=Пользователи +Build\ History=ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ñборок +Edit\ View=ÐаÑтроить вид +Delete\ View=Удалить вид +Project\ Relationship=СвÑзи проектов -Check\ File\ Fingerprint=\u041F\u0440\u043E\u0432\u0435\u0440\u0438\u0442\u044C \u0445\u044D\u0448 \u0444\u0430\u0439\u043B\u0430 -Manage\ Jenkins=\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 Jenkins +Check\ File\ Fingerprint=Проверить Ñ…Ñш файла +Manage\ Jenkins=ÐаÑтройка Jenkins diff --git a/core/src/main/resources/hudson/model/View/sidepanel_sk.properties b/core/src/main/resources/hudson/model/View/sidepanel_sk.properties index 382470e97a90..a2857cb21f41 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_sk.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_sk.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=Hist\u00F3ria behov -Check\ File\ Fingerprint=Skontroluj odtla\u010Dok s\u00FAboru -Delete\ View=Zmaza\u0165 poh\u013Ead -Edit\ View=Upravi\u0165 poh\u013Ead -NewJob=Nov\u00FD -People=\u013Dudia -Project\ Relationship=Vz\u0165ahy projektov +Build\ History=História behov +Check\ File\ Fingerprint=Skontroluj odtlaÄok súboru +Delete\ View=ZmazaÅ¥ pohľad +Edit\ View=UpraviÅ¥ pohľad +NewJob=Nový +People=Ľudia +Project\ Relationship=VzÅ¥ahy projektov diff --git a/core/src/main/resources/hudson/model/View/sidepanel_sl.properties b/core/src/main/resources/hudson/model/View/sidepanel_sl.properties index c3342f4d67bb..6d5261b4b3ff 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_sl.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_sl.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Build\ History=Zgodovina prevajanja -Delete\ View=Izbri\u0161i pogled +Delete\ View=IzbriÅ¡i pogled Edit\ View=Uredi pogled NewJob=Nov People=Uporabniki diff --git a/core/src/main/resources/hudson/model/View/sidepanel_sr.properties b/core/src/main/resources/hudson/model/View/sidepanel_sr.properties index 9e96c154ad09..f0709d47a458 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_sr.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_sr.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=\u0418\u0441\u0442\u043E\u0440\u0438\u0458\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 -Check\ File\ Fingerprint=\u041F\u0440\u043E\u0432\u0435\u0440\u0438 \u043E\u0442\u0438\u0441\u0430\u043A \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435 -Edit\ View=\u0423\u0440\u0435\u0434\u0438 \u043F\u043E\u0433\u043B\u0435\u0434 -NewJob=\u041D\u043E\u0432\u0438 {0} -People=\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438 -Project\ Relationship=\u0412\u0435\u0437\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 -Delete\ View=\u0423\u043A\u043B\u043E\u043D\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 -Manage\ Jenkins=\u0423\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 Jenkins-\u043E\u043C +Build\ History=ИÑторија изградња +Check\ File\ Fingerprint=Провери отиÑак датотеке +Edit\ View=Уреди поглед +NewJob=Ðови {0} +People=КориÑници +Project\ Relationship=Везе пројекта +Delete\ View=Уклони преглед +Manage\ Jenkins=Управљање Jenkins-ом diff --git a/core/src/main/resources/hudson/model/View/sidepanel_sv_SE.properties b/core/src/main/resources/hudson/model/View/sidepanel_sv_SE.properties index b60a6877c44d..e332900d0454 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_sv_SE.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_sv_SE.properties @@ -25,5 +25,5 @@ Check\ File\ Fingerprint=Kontrollera filkontrollsumma Delete\ View=Ta bort vy Edit\ View=Redigera vy NewJob=Skapa nytt {0} -People=Anv\u00E4ndare +People=Användare Project\ Relationship=Jobberoenden diff --git a/core/src/main/resources/hudson/model/View/sidepanel_tr.properties b/core/src/main/resources/hudson/model/View/sidepanel_tr.properties index 55723cd8b6e7..6de5c1093e79 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_tr.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_tr.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. NewJob=Yeni {0} -People=Ki\u015Filer -Build\ History=Yap\u0131land\u0131rma Ge\u00e7mi\u015fi -Edit\ View=G\u00f6r\u00fcnt\u00fcy\u00fc D\u00fczenle -Delete\ View=G\u00f6r\u00fcnt\u00fcy\u00fc Sil -Project\ Relationship=Proje \u0130li\u015Fkileri +People=KiÅŸiler +Build\ History=Yapılandırma GeçmiÅŸi +Edit\ View=Görüntüyü Düzenle +Delete\ View=Görüntüyü Sil +Project\ Relationship=Proje Ä°liÅŸkileri Check\ File\ Fingerprint=Dosya Parmakizini Kontrol Et diff --git a/core/src/main/resources/hudson/model/View/sidepanel_uk.properties b/core/src/main/resources/hudson/model/View/sidepanel_uk.properties index d6f4d50f6958..801294c44708 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_uk.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_uk.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=\u0406\u0441\u0442\u043E\u0440\u0456\u044F \u043F\u043E\u0431\u0443\u0434\u043E\u0432 -Check\ File\ Fingerprint=\u041F\u0435\u0440\u0435\u0432\u0456\u0440\u0438\u0442\u0438 \u0412\u0456\u0434\u0431\u0438\u0442\u043E\u043A \u0424\u0430\u0439\u043B\u0443 -Delete\ View=\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438 \u0432\u0438\u0434 -Edit\ View=\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0432\u0438\u0434 -NewJob=\u041D\u043E\u0432\u0438\u0439 {0} -People=\u041B\u044E\u0434\u0438 -Project\ Relationship=\u0417\u0432\u2019\u044F\u0437\u043A\u0438 \u043F\u0440\u043E\u0435\u043A\u0442\u0443 +Build\ History=ІÑÑ‚Ð¾Ñ€Ñ–Ñ Ð¿Ð¾Ð±ÑƒÐ´Ð¾Ð² +Check\ File\ Fingerprint=Перевірити Відбиток Файлу +Delete\ View=Видалити вид +Edit\ View=Редагувати вид +NewJob=Ðовий {0} +People=Люди +Project\ Relationship=Зв’Ñзки проекту diff --git a/core/src/main/resources/hudson/model/View/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/model/View/sidepanel_zh_TW.properties index 0e582d798b63..6f54f763bdfe 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_zh_TW.properties @@ -21,10 +21,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewJob=\u65b0\u589e{0} -People=\u4eba\u54e1 -Build\ History=\u5efa\u7f6e\u6b77\u7a0b -Edit\ View=\u7de8\u8f2f\u8996\u666f -Delete\ View=\u522a\u9664\u8996\u666f -Project\ Relationship=\u5c08\u6848\u95dc\u806f -Check\ File\ Fingerprint=\u6aa2\u67e5\u6a94\u6848\u6307\u7d0b +NewJob=新增{0} +People=人員 +Build\ History=建置歷程 +Edit\ View=編輯視景 +Delete\ View=刪除視景 +Project\ Relationship=å°ˆæ¡ˆé—œè¯ +Check\ File\ Fingerprint=檢查檔案指紋 diff --git a/core/src/main/resources/hudson/model/labels/LabelAtom/configure_bg.properties b/core/src/main/resources/hudson/model/labels/LabelAtom/configure_bg.properties index 43651eccbffe..e6b4ace2d8ec 100644 --- a/core/src/main/resources/hudson/model/labels/LabelAtom/configure_bg.properties +++ b/core/src/main/resources/hudson/model/labels/LabelAtom/configure_bg.properties @@ -22,10 +22,10 @@ # {0} Config title=\ - \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u201e{0}\u201c + ÐаÑтройки на „{0}“ Name=\ - \u0418\u043c\u0435 + Име Description=\ - \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 + ОпиÑание Save=\ - \u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 + Запазване diff --git a/core/src/main/resources/hudson/model/labels/LabelAtom/configure_es.properties b/core/src/main/resources/hudson/model/labels/LabelAtom/configure_es.properties index 6dfc066844e8..bccffcca81fe 100644 --- a/core/src/main/resources/hudson/model/labels/LabelAtom/configure_es.properties +++ b/core/src/main/resources/hudson/model/labels/LabelAtom/configure_es.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=Configuración de {0} +title=Configuración de {0} Save=Guardar Name=Nombre diff --git a/core/src/main/resources/hudson/model/labels/LabelAtom/configure_it.properties b/core/src/main/resources/hudson/model/labels/LabelAtom/configure_it.properties index 608335800b73..cc766623ae9c 100644 --- a/core/src/main/resources/hudson/model/labels/LabelAtom/configure_it.properties +++ b/core/src/main/resources/hudson/model/labels/LabelAtom/configure_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/labels/LabelAtom/configure_ja.properties b/core/src/main/resources/hudson/model/labels/LabelAtom/configure_ja.properties index 9652424a99dd..e2ef96498bac 100644 --- a/core/src/main/resources/hudson/model/labels/LabelAtom/configure_ja.properties +++ b/core/src/main/resources/hudson/model/labels/LabelAtom/configure_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540d\u524d -Save=\u4fdd\u5b58 -title={0} \u306e\u8a2d\u5b9a -Description=\u8aac\u660e +Name=åå‰ +Save=ä¿å­˜ +title={0} ã®è¨­å®š +Description=説明 diff --git a/core/src/main/resources/hudson/model/labels/LabelAtom/configure_pt_BR.properties b/core/src/main/resources/hudson/model/labels/LabelAtom/configure_pt_BR.properties index bd7881588080..131c2cbfec22 100644 --- a/core/src/main/resources/hudson/model/labels/LabelAtom/configure_pt_BR.properties +++ b/core/src/main/resources/hudson/model/labels/LabelAtom/configure_pt_BR.properties @@ -24,4 +24,4 @@ Save=Salvar Name=Nome # {0} Config title=Configurar {0} -Description=Descri\u00e7\u00e3o +Description=Descrição diff --git a/core/src/main/resources/hudson/model/labels/LabelAtom/configure_sr.properties b/core/src/main/resources/hudson/model/labels/LabelAtom/configure_sr.properties index 80aa26570b8c..2aadf3da79bf 100644 --- a/core/src/main/resources/hudson/model/labels/LabelAtom/configure_sr.properties +++ b/core/src/main/resources/hudson/model/labels/LabelAtom/configure_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -title={0} \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 -Name=\u0418\u043C\u0435 -Description=\u041E\u043F\u0438\u0441 -Save=\u0421\u0430\u0447\u0443\u0432\u0430\u0458 +title={0} подешавања +Name=Име +Description=ÐžÐ¿Ð¸Ñ +Save=Сачувај diff --git a/core/src/main/resources/hudson/model/labels/LabelAtom/configure_zh_TW.properties b/core/src/main/resources/hudson/model/labels/LabelAtom/configure_zh_TW.properties index 174fa7aa06b0..8afc017981e1 100644 --- a/core/src/main/resources/hudson/model/labels/LabelAtom/configure_zh_TW.properties +++ b/core/src/main/resources/hudson/model/labels/LabelAtom/configure_zh_TW.properties @@ -19,7 +19,7 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title={0} \u8a2d\u5b9a -Name=\u540d\u7a31 -Save=\u5132\u5b58 -Description=\u8aaa\u660e +title={0} 設定 +Name=å稱 +Save=儲存 +Description=說明 diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary.properties index b28788323905..fc4545e90d79 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. # note for translators: this message is referenced from st:structuredMessageFormat -description=Waiting for next available executor on \u2018{0}\u2019 +description=Waiting for next available executor on ‘{0}’ diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_de.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_de.properties index 3a1991cadf00..567ecdae31cc 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_de.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_de.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. # DO NOT REMOVE EVEN IF SHOWN AS UNUSED -description=Alle Knoten des Labels \u201E{0}\u201C sind besch\u00E4ftigt +description=Alle Knoten des Labels „{0}“ sind beschäftigt diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_it.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_it.properties index 2cc3ef381d8a..bf2626253ff3 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_it.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_sr.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_sr.properties index 40314e6f5611..59796cc19c07 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_sr.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors # DO NOT REMOVE EVEN IF SHOWN AS UNUSED -description=\u0427\u0435\u043A\u0430\u045A\u0435 \u043D\u0430 \u0441\u043B\u0435\u0434\u0435\u045B\u0435\u0433 \u0441\u043B\u043E\u0431\u043E\u0434\u043D\u043E\u0433 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 \u043D\u0430 {0} +description=Чекање на Ñледећег Ñлободног извршитеља на {0} diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_zh_TW.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_zh_TW.properties index e8f7e0d9a6f6..bd6649640a01 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_zh_TW.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_zh_TW.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. # note for translators: this message is referenced from st:structuredMessageFormat -description=\u6b63\u5728\u7b49\u5f85\u300c{0}\u300d\u4e2d\u7684\u57f7\u884c\u7a0b\u5f0f +description=正在等待「{0}ã€ä¸­çš„åŸ·è¡Œç¨‹å¼ diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary.properties index cc008731663a..0e67d5893f30 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. # note for translators: this message is referenced from st:structuredMessageFormat -description=All nodes of label \u2018{0}\u2019 are offline -description_no_nodes=There are no nodes with the label \u2018{0}\u2019 +description=All nodes of label ‘{0}’ are offline +description_no_nodes=There are no nodes with the label ‘{0}’ diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_de.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_de.properties index 06f3bd4ad7a8..1fa0a13b39ee 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_de.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_de.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. # DO NOT REMOVE EVEN IF SHOWN AS UNUSED -description=Alle Knoten des Labels \u201E{0}\u201C sind offline -description_no_nodes=Es gibt keine Knoten mit dem Label \u201E{0}\u201C +description=Alle Knoten des Labels „{0}“ sind offline +description_no_nodes=Es gibt keine Knoten mit dem Label „{0}“ diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_es.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_es.properties index ce714cffa4b7..26ecf45d3333 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_es.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_es.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. # DO NOT REMOVE EVEN IF SHOWN AS UNUSED -description=Todos los nodos etiquetados como ''{0}'' estan fuera de l\u00EDnea +description=Todos los nodos etiquetados como ''{0}'' estan fuera de línea diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_it.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_it.properties index 04ae41e77a65..0e8db2b60c79 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_it.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_sr.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_sr.properties index 58838d1a3146..8b0c017b3c7e 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_sr.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors # DO NOT REMOVE EVEN IF SHOWN AS UNUSED -description=\u0421\u0432\u0435 \u043C\u0430\u0448\u0438\u043D\u0435 \u043F\u043E\u0434 \u043B\u0430\u0431\u0435\u043B\u043E\u043C \u2018{0}\u2019 \u0441\u0443 \u0432\u0430\u043D \u043C\u0440\u0435\u0436\u0435 -description_no_nodes=\u041D\u0435\u043C\u0430 \u043C\u0430\u0448\u0438\u043D\u0430 \u043F\u043E\u0434 \u043B\u0430\u0431\u0435\u043B\u043E\u043C \u2018{0}\u2019 +description=Све машине под лабелом ‘{0}’ Ñу ван мреже +description_no_nodes=Ðема машина под лабелом ‘{0}’ diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_zh_TW.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_zh_TW.properties index 95338ea0b4c7..19454a80afa9 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_zh_TW.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_zh_TW.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. # note for translators: this message is referenced from st:structuredMessageFormat -description=\u6240\u6709\u6a19\u7c64\u70ba\u300c{0}\u300d\u7684\u7bc0\u9ede\u90fd\u96e2\u7dda\u4e86 -description_no_nodes=\u6c92\u6709\u6a19\u7c64\u70ba\u300c{0}\u300d\u7684\u7bc0\u9ede +description=所有標籤為「{0}ã€çš„節點都離線了 +description_no_nodes=沒有標籤為「{0}ã€çš„節點 diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary.properties index 35996788e5f6..656becd5211f 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. # note for translators: this message is referenced from st:structuredMessageFormat -description=Waiting for next available executor on \u2018{0}\u2019 +description=Waiting for next available executor on ‘{0}’ diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_de.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_de.properties index 4a971157e4e4..5a1a65ec6eca 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_de.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_de.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. # DO NOT REMOVE EVEN IF SHOWN AS UNUSED -description=Warte auf den n\u00E4chsten freien Build-Prozessor auf {0} +description=Warte auf den nächsten freien Build-Prozessor auf {0} diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_it.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_it.properties index 2cc3ef381d8a..bf2626253ff3 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_it.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_sr.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_sr.properties index 362a50f46672..74eeac42fa76 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_sr.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors # DO NOT REMOVE EVEN IF SHOWN AS UNUSED -description=\u0427\u0435\u043A\u0430 \u0441\u0435 \u043D\u0430 \u0441\u043B\u0435\u0434\u0435\u045B\u0435\u0433 \u0441\u043B\u043E\u0431\u043E\u0434\u043D\u043E\u0433 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 \u043D\u0430 {0} +description=Чека Ñе на Ñледећег Ñлободног извршитеља на {0} diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_zh_TW.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_zh_TW.properties index 2fe0a6766fbb..ae1f49d0d46e 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_zh_TW.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_zh_TW.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. # note for translators: this message is referenced from st:structuredMessageFormat -description=\u6b63\u5728\u7b49\u5f85\u300c{0}\u300d\u4e2d\u7684\u57f7\u884c\u7a0b\u5f0f +description=正在等待「{0}ã€ä¸­çš„åŸ·è¡Œç¨‹å¼ diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_es.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_es.properties index ad2922059118..8c1fa330dbde 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_es.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_es.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. # DO NOT REMOVE EVEN IF SHOWN AS UNUSED -description={0} est\u00E1 fuera de l\u00EDnea +description={0} está fuera de línea diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_it.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_it.properties index 61f595381151..a75fb5a5051d 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_it.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,4 +21,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description={0} non è in linea +description={0} non è in linea diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_sr.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_sr.properties index 6a686260d7b8..3a4548f08fe5 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_sr.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors # DO NOT REMOVE EVEN IF SHOWN AS UNUSED -description={0} \u0458\u0435 \u0432\u0430\u043D \u043D\u0440\u0435\u0436\u0435 +description={0} је ван нреже diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_zh_TW.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_zh_TW.properties index 9207eaf2a7bc..a91e08b43c20 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_zh_TW.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_zh_TW.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. # note for translators: this message is referenced from st:structuredMessageFormat -description={0} \u5df2\u96e2\u7dda +description={0} 已離線 diff --git a/core/src/main/resources/hudson/model/queue/Messages_bg.properties b/core/src/main/resources/hudson/model/queue/Messages_bg.properties index bb533bf1cfb0..b79cb3c89e32 100644 --- a/core/src/main/resources/hudson/model/queue/Messages_bg.properties +++ b/core/src/main/resources/hudson/model/queue/Messages_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. QueueSorter.installDefaultQueueSorter=\ - \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043c\u043e\u0434\u0443\u043b\u0430 \u0437\u0430 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0430 \u043f\u043e\u0434\u0440\u0435\u0434\u0431\u0430 \u043d\u0430 \u043e\u043f\u0430\u0448\u043a\u0438 + ИнÑталиране на модула за Ñтандартна подредба на опашки diff --git a/core/src/main/resources/hudson/model/queue/Messages_da.properties b/core/src/main/resources/hudson/model/queue/Messages_da.properties index 9144680aa847..09f946bda57b 100644 --- a/core/src/main/resources/hudson/model/queue/Messages_da.properties +++ b/core/src/main/resources/hudson/model/queue/Messages_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -QueueSorter.installDefaultQueueSorter=Installerer standard k\u00f8sorteringsr\u00e6kkef\u00f8lge +QueueSorter.installDefaultQueueSorter=Installerer standard køsorteringsrækkefølge diff --git a/core/src/main/resources/hudson/model/queue/Messages_it.properties b/core/src/main/resources/hudson/model/queue/Messages_it.properties index cdd4be4c16ba..9112d8d4e644 100644 --- a/core/src/main/resources/hudson/model/queue/Messages_it.properties +++ b/core/src/main/resources/hudson/model/queue/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/model/queue/Messages_ja.properties b/core/src/main/resources/hudson/model/queue/Messages_ja.properties index 67e65edd5cf2..f72d2184e5f3 100644 --- a/core/src/main/resources/hudson/model/queue/Messages_ja.properties +++ b/core/src/main/resources/hudson/model/queue/Messages_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -QueueSorter.installDefaultQueueSorter=\u30C7\u30D5\u30A9\u30EB\u30C8\u306EQueue\u30BD\u30FC\u30BF\u30FC\u3092\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB +QueueSorter.installDefaultQueueSorter=デフォルトã®Queueソーターをインストール diff --git a/core/src/main/resources/hudson/model/queue/Messages_pt_BR.properties b/core/src/main/resources/hudson/model/queue/Messages_pt_BR.properties index c5462349feca..0bf41d4ced94 100644 --- a/core/src/main/resources/hudson/model/queue/Messages_pt_BR.properties +++ b/core/src/main/resources/hudson/model/queue/Messages_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. # Installing default queue sorter -QueueSorter.installDefaultQueueSorter=Instalando o ordenador de fila padr\u00e3o +QueueSorter.installDefaultQueueSorter=Instalando o ordenador de fila padrão diff --git a/core/src/main/resources/hudson/model/queue/Messages_sr.properties b/core/src/main/resources/hudson/model/queue/Messages_sr.properties index 5b1f88d64b83..e32fdae0786a 100644 --- a/core/src/main/resources/hudson/model/queue/Messages_sr.properties +++ b/core/src/main/resources/hudson/model/queue/Messages_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -QueueSorter.installDefaultQueueSorter=\u0418\u043D\u0441\u0442\u0430\u043B\u0430\u043B\u0438\u0440\u0430\u045A\u0435 \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u043D\u0443 \u043C\u043E\u0434\u0443\u043B\u0443 \u0437\u0430 \u0441\u043E\u0440\u0442\u0438\u0440\u0430\u045A\u0435 \u0440\u0435\u0434\u0430 +QueueSorter.installDefaultQueueSorter=ИнÑталалирање Ñтандардну модулу за Ñортирање реда diff --git a/core/src/main/resources/hudson/model/queue/Messages_zh_TW.properties b/core/src/main/resources/hudson/model/queue/Messages_zh_TW.properties index 5ce057a3db59..1f126249d32e 100644 --- a/core/src/main/resources/hudson/model/queue/Messages_zh_TW.properties +++ b/core/src/main/resources/hudson/model/queue/Messages_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -QueueSorter.installDefaultQueueSorter=\u6b63\u5728\u5b89\u88dd\u9810\u8a2d\u4f47\u5217\u6392\u5e8f\u7a0b\u5f0f +QueueSorter.installDefaultQueueSorter=正在安è£é è¨­ä½‡åˆ—排åºç¨‹å¼ diff --git a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_bg.properties b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_bg.properties index 083431c4e668..3aca3eae57e9 100644 --- a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_bg.properties +++ b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Free\ Space\ Threshold=\ - \u041f\u0440\u0430\u0433 \u0437\u0430 \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e + Праг за Ñвободно проÑтранÑтво diff --git a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_da.properties b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_da.properties index 4ea7bd50459a..06842fafa8f8 100644 --- a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_da.properties +++ b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Free\ Space\ Threshold=Ledig Plads T\u00e6rskel +Free\ Space\ Threshold=Ledig Plads Tærskel diff --git a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_hu.properties b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_hu.properties index ba12f5d2bd0f..ea82d435101d 100644 --- a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_hu.properties +++ b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Free\ Space\ Threshold=Szabad T\u00E1rhely Hat\u00E1r\u00E9rt\u00E9k +Free\ Space\ Threshold=Szabad Tárhely Határérték diff --git a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_it.properties b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_it.properties index 95290fa3a156..e51ae2d7f229 100644 --- a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_it.properties +++ b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_ja.properties b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_ja.properties index 5936e31e693b..7a8c8921fee8 100644 --- a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_ja.properties +++ b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Free\ Space\ Threshold=\u7A7A\u304D\u5BB9\u91CF\u306E\u95BE\u5024 +Free\ Space\ Threshold=空ã容é‡ã®é–¾å€¤ diff --git a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_lv.properties b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_lv.properties index 842cb6559e1d..b21ff2ff4d8a 100644 --- a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_lv.properties +++ b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_lv.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Free\ Space\ Threshold=Br\u012Bv\u0101s Vietas Uztur\u0113\u0161ana +Free\ Space\ Threshold=BrÄ«vÄs Vietas UzturÄ“Å¡ana diff --git a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_pl.properties b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_pl.properties index 422343bc7edd..e1acec4e3d7f 100644 --- a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_pl.properties +++ b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_pl.properties @@ -19,4 +19,4 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Free\ Space\ Threshold=Dolny pr\u00F3g wolnego miejsca +Free\ Space\ Threshold=Dolny próg wolnego miejsca diff --git a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_pt_BR.properties b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_pt_BR.properties index 48f1c7b57b06..470f951bd843 100644 --- a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_pt_BR.properties +++ b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Free\ Space\ Threshold=Limite de espa\u00E7o livre +Free\ Space\ Threshold=Limite de espaço livre diff --git a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_ru.properties b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_ru.properties index 107dcbc83838..0abd2c74a3e4 100644 --- a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_ru.properties +++ b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Free\ Space\ Threshold=\u041F\u043E\u0440\u043E\u0433\u043E\u0432\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 +Free\ Space\ Threshold=Пороговое значение diff --git a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_sk.properties b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_sk.properties index 4e683f1bddf2..4ece50c9b475 100644 --- a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_sk.properties +++ b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_sk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Free\ Space\ Threshold=Prahov\u00E1 hodnota vo\u013En\u00E9ho miesta +Free\ Space\ Threshold=Prahová hodnota voľného miesta diff --git a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_sr.properties b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_sr.properties index 940d8318b297..79ed1e5e38a2 100644 --- a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_sr.properties +++ b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Free\ Space\ Threshold=\u0413\u0440\u0430\u043D\u0438\u0447\u043D\u0430 \u0432\u0440\u0435\u0434\u043D\u043E\u0441\u0442 \u043F\u0440\u0430\u0437\u043D\u043E\u0433 \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0430 +Free\ Space\ Threshold=Гранична вредноÑÑ‚ празног проÑтора diff --git a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_sv_SE.properties b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_sv_SE.properties index 8219c2a3cbac..78134ecc5752 100644 --- a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_sv_SE.properties +++ b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_sv_SE.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Free\ Space\ Threshold=Tr\u00F6skel f\u00F6r ledigt utrymme +Free\ Space\ Threshold=Tröskel för ledigt utrymme diff --git a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_zh_TW.properties b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_zh_TW.properties index 5087b3a8c1b1..a1d95fdf34da 100644 --- a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_zh_TW.properties +++ b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Free\ Space\ Threshold=\u5269\u9918\u7A7A\u9593\u81E8\u754C\u503C +Free\ Space\ Threshold=剩餘空間臨界值 diff --git a/core/src/main/resources/hudson/node_monitors/Messages_bg.properties b/core/src/main/resources/hudson/node_monitors/Messages_bg.properties index 78615260d968..f7910a8de2ad 100644 --- a/core/src/main/resources/hudson/node_monitors/Messages_bg.properties +++ b/core/src/main/resources/hudson/node_monitors/Messages_bg.properties @@ -21,29 +21,29 @@ # THE SOFTWARE. ArchitectureMonitor.DisplayName=\ - \u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430 + Ðрхитектура ClockMonitor.DisplayName=\ - \u0420\u0430\u0437\u043b\u0438\u043a\u0430 \u0432 \u0447\u0430\u0441\u043e\u0432\u043d\u0438\u0446\u0438\u0442\u0435 + Разлика в чаÑовниците DiskSpaceMonitor.MarkedOffline=\ - \u0412\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0438\u0437\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u201e{0}\u201c \u2014 \u043d\u044f\u043c\u0430 \u0434\u043e\u0441\u0442\u0430\u0442\u044a\u0447\u043d\u043e \u0434\u0438\u0441\u043a\u043e\u0432\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e + Временно изключване на „{0}“ — нÑма доÑтатъчно диÑково проÑтранÑтво DiskSpaceMonitor.MarkedOnline=\ - \u0412\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u201e{0}\u201c \u2014 \u0438\u043c\u0430 \u0434\u043e\u0441\u0442\u0430\u0442\u044a\u0447\u043d\u043e \u0434\u0438\u0441\u043a\u043e\u0432\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e + Включване на „{0}“ — има доÑтатъчно диÑково проÑтранÑтво DiskSpaceMonitor.DisplayName=\ - \u0421\u0432\u043e\u0431\u043e\u0434\u043d\u043e \u0434\u0438\u0441\u043a\u043e\u0432\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e + Свободно диÑково проÑтранÑтво ResponseTimeMonitor.DisplayName=\ - \u0412\u0440\u0435\u043c\u0435 \u0437\u0430 \u043e\u0442\u0433\u043e\u0432\u043e\u0440 + Време за отговор ResponseTimeMonitor.MarkedOffline=\ - \u0412\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0438\u0437\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u201e{0}\u201c \u2014 \u043b\u0438\u043f\u0441\u0432\u0430 \u043e\u0442\u0433\u043e\u0432\u043e\u0440 + Временно изключване на „{0}“ — липÑва отговор ResponseTimeMonitor.TimeOut=\ - \u0418\u0437\u0442\u0435\u0447\u0435 \u0432\u0440\u0435\u043c\u0435\u0442\u043e \u043f\u0440\u0438 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u044f \u043e\u043f\u0438\u0442 \u0437\u0430 \u201e{0}\u201c + Изтече времето при поÑÐ»ÐµÐ´Ð½Ð¸Ñ Ð¾Ð¿Ð¸Ñ‚ за „{0}“ SwapSpaceMonitor.DisplayName=\ - \u0421\u0432\u043e\u0431\u043e\u0434\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u0437\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0438\u0440\u0430\u043d\u0435 + Свободно проÑтранÑтво за Ñтранициране TemporarySpaceMonitor.DisplayName=\ - \u0421\u0432\u043e\u0431\u043e\u0434\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u0437\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u0438 \u0434\u0430\u043d\u043d\u0438 + Свободно проÑтранÑтво за временни данни AbstractNodeMonitorDescriptor.NoDataYet=\ - \u041d\u044f\u043c\u0430 \u0434\u0430\u043d\u043d\u0438 + ÐÑма данни DiskSpaceMonitorDescriptor.DiskSpace.FreeSpaceTooLow=\ - \u0414\u0438\u0441\u043a\u043e\u0432\u043e\u0442\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u043f\u0440\u0438\u0432\u044a\u0440\u0448\u0432\u0430. \u041d\u0430 {1} \u043e\u0441\u0442\u0430\u0432\u0430\u0442 \u0441\u0430\u043c\u043e {0}\u200aGB. + ДиÑковото проÑтранÑтво привършва. Ðа {1} оÑтават Ñамо {0} GB. MonitorMarkedNodeOffline.DisplayName=\ - \u041a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u044a\u0442 \u0435 \u043e\u0442\u0431\u0435\u043b\u044f\u0437\u0430\u043d \u043a\u0430\u0442\u043e \u0438\u0437\u0432\u044a\u043d \u043b\u0438\u043d\u0438\u044f \u0432 \u0440\u0435\u0437\u0443\u043b\u0442\u0430\u0442 \u043d\u0430 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430\u0442\u0430 \u043d\u0430\ - \u0441\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435\u0442\u043e \u043c\u0443. + Компютърът е отбелÑзан като извън Ð»Ð¸Ð½Ð¸Ñ Ð² резултат на проверката на\ + ÑÑŠÑтоÑнието му. diff --git a/core/src/main/resources/hudson/node_monitors/Messages_cs.properties b/core/src/main/resources/hudson/node_monitors/Messages_cs.properties index 0db0a21c2613..2010f4261c31 100644 --- a/core/src/main/resources/hudson/node_monitors/Messages_cs.properties +++ b/core/src/main/resources/hudson/node_monitors/Messages_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -DiskSpaceMonitorDescriptor.DiskSpace.FreeSpaceTooLow=M\u00E1lo m\u00EDsta na disku. Zb\u00FDv\u00E1 pouze {0}GB. +DiskSpaceMonitorDescriptor.DiskSpace.FreeSpaceTooLow=Málo místa na disku. Zbývá pouze {0}GB. diff --git a/core/src/main/resources/hudson/node_monitors/Messages_da.properties b/core/src/main/resources/hudson/node_monitors/Messages_da.properties index f6a226902453..6a9940dfab1a 100644 --- a/core/src/main/resources/hudson/node_monitors/Messages_da.properties +++ b/core/src/main/resources/hudson/node_monitors/Messages_da.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. ClockMonitor.DisplayName=Clock Forskel -ResponseTimeMonitor.TimeOut=Time out p\u00e5 sidste {0} fors\u00f8g -DiskSpaceMonitor.MarkedOffline=Tager {0} offline midlertidigt grundet mangel p\u00e5 diskplads +ResponseTimeMonitor.TimeOut=Time out pÃ¥ sidste {0} forsøg +DiskSpaceMonitor.MarkedOffline=Tager {0} offline midlertidigt grundet mangel pÃ¥ diskplads DiskSpaceMonitor.DisplayName=Ledig Disk Plads TemporarySpaceMonitor.DisplayName=Ledig Temp Plads SwapSpaceMonitor.DisplayName=Ledig Swap Plads diff --git a/core/src/main/resources/hudson/node_monitors/Messages_de.properties b/core/src/main/resources/hudson/node_monitors/Messages_de.properties index 7aa7c76a2aff..cefa1860de38 100644 --- a/core/src/main/resources/hudson/node_monitors/Messages_de.properties +++ b/core/src/main/resources/hudson/node_monitors/Messages_de.properties @@ -23,13 +23,13 @@ ArchitectureMonitor.DisplayName=Architektur ClockMonitor.DisplayName=Zeitdifferenz DiskSpaceMonitor.DisplayName=Freier Plattenplatz -DiskSpaceMonitor.MarkedOffline=Nehme {0} tempor\u00E4r offline, da der Festplattenplatz knapp geworden ist. +DiskSpaceMonitor.MarkedOffline=Nehme {0} temporär offline, da der Festplattenplatz knapp geworden ist. ResponseTimeMonitor.DisplayName=Antwortzeit ResponseTimeMonitor.TimeOut= {0} mal keine Antwort SwapSpaceMonitor.DisplayName=Freier Swap Space TemporarySpaceMonitor.DisplayName=Freier TEMP-Platz DiskSpaceMonitorDescriptor.DiskSpace.FreeSpaceTooLow=Zu wenig Festplattenplatz: Nur noch {0}GB frei. -DiskSpaceMonitor.MarkedOnline=Nehme {0} wieder online, da wieder genug Festplattenplatz verf\u00FCgbar ist. -MonitorMarkedNodeOffline.DisplayName=Knoten durch Health-Check-Pr\u00FCfung offline +DiskSpaceMonitor.MarkedOnline=Nehme {0} wieder online, da wieder genug Festplattenplatz verfügbar ist. +MonitorMarkedNodeOffline.DisplayName=Knoten durch Health-Check-Prüfung offline ResponseTimeMonitor.MarkedOffline=Nehme {0} offline, da er nicht antwortet. AbstractNodeMonitorDescriptor.NoDataYet=Noch keine Daten diff --git a/core/src/main/resources/hudson/node_monitors/Messages_es.properties b/core/src/main/resources/hudson/node_monitors/Messages_es.properties index ac098af577b3..6ee2f1b6ddd2 100644 --- a/core/src/main/resources/hudson/node_monitors/Messages_es.properties +++ b/core/src/main/resources/hudson/node_monitors/Messages_es.properties @@ -22,11 +22,11 @@ ArchitectureMonitor.DisplayName=Arquitectura ClockMonitor.DisplayName=Diferencia entre los relojes -DiskSpaceMonitor.MarkedOffline=Poniendo temporalmente {0} fuera de línea debido a falta de espacio en disco duro +DiskSpaceMonitor.MarkedOffline=Poniendo temporalmente {0} fuera de línea debido a falta de espacio en disco duro DiskSpaceMonitor.DisplayName=Espacio de disco libre ResponseTimeMonitor.DisplayName=Tiempo de respuesta -ResponseTimeMonitor.MarkedOffline=Poniendo temporalmente {0} fuera de línea porque no responde -ResponseTimeMonitor.TimeOut=Se sobrepasó el tiempo de espera en el último intento de {0} +ResponseTimeMonitor.MarkedOffline=Poniendo temporalmente {0} fuera de línea porque no responde +ResponseTimeMonitor.TimeOut=Se sobrepasó el tiempo de espera en el último intento de {0} SwapSpaceMonitor.DisplayName=Espacio de intercambio libre TemporarySpaceMonitor.DisplayName=Espacio temporal libre -DiskSpaceMonitorDescriptor.DiskSpace.FreeSpaceTooLow=El espacio en disco es muy bajo, sólo quedan {0}GB. +DiskSpaceMonitorDescriptor.DiskSpace.FreeSpaceTooLow=El espacio en disco es muy bajo, sólo quedan {0}GB. diff --git a/core/src/main/resources/hudson/node_monitors/Messages_fr.properties b/core/src/main/resources/hudson/node_monitors/Messages_fr.properties index 845fd6deb224..d8c2f6b45846 100644 --- a/core/src/main/resources/hudson/node_monitors/Messages_fr.properties +++ b/core/src/main/resources/hudson/node_monitors/Messages_fr.properties @@ -21,11 +21,11 @@ # THE SOFTWARE. ArchitectureMonitor.DisplayName=Architecture -ClockMonitor.DisplayName=Diff\u00e9rence entre les horloges +ClockMonitor.DisplayName=Différence entre les horloges DiskSpaceMonitor.DisplayName=Espace disque disponible -DiskSpaceMonitor.MarkedOffline=D\u00e9connexion temporaire de {0} par cause de manque d''espace disque -ResponseTimeMonitor.DisplayName=Temps de r\u00e9ponse -ResponseTimeMonitor.MarkedOffline={0} est marqu\u00e9 comme d\u00e9connect\u00e9 temporairement, parce qu''il ne r\u00e9pond pas +DiskSpaceMonitor.MarkedOffline=Déconnexion temporaire de {0} par cause de manque d''espace disque +ResponseTimeMonitor.DisplayName=Temps de réponse +ResponseTimeMonitor.MarkedOffline={0} est marqué comme déconnecté temporairement, parce qu''il ne répond pas ResponseTimeMonitor.TimeOut=Time out du dernier essai {0} SwapSpaceMonitor.DisplayName=Espace de swap disponible DiskSpaceMonitorDescriptor.DiskSpace.FreeSpaceTooLow=Espace disque insuffisant. Seulement {0} GB restant sur {1} diff --git a/core/src/main/resources/hudson/node_monitors/Messages_it.properties b/core/src/main/resources/hudson/node_monitors/Messages_it.properties index abb1d2386473..9a247da8b27d 100644 --- a/core/src/main/resources/hudson/node_monitors/Messages_it.properties +++ b/core/src/main/resources/hudson/node_monitors/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -26,16 +26,16 @@ ArchitectureMonitor.DisplayName=Architettura ClockMonitor.DisplayName=Differenza di orario DiskSpaceMonitorDescriptor.DiskSpace.FreeSpace={0} GB rimanenti su {1}. DiskSpaceMonitorDescriptor.DiskSpace.FreeSpaceTooLow=Lo spazio su disco \ - disponibile è troppo basso. Su {1} rimangono solo {0} GB. + disponibile è troppo basso. Su {1} rimangono solo {0} GB. DiskSpaceMonitor.DisplayName=Spazio su disco libero DiskSpaceMonitor.MarkedOffline=Metto temporaneamente {0} non in linea per \ mancanza di spazio su disco -DiskSpaceMonitor.MarkedOnline=Rimetto {0} in linea perché c''è nuovamente \ +DiskSpaceMonitor.MarkedOnline=Rimetto {0} in linea perché c''è nuovamente \ spazio su disco sufficiente MonitorMarkedNodeOffline.DisplayName=Nodo contrassegnato come non in linea a \ - causa del fallimento del controllo integrità + causa del fallimento del controllo integrità ResponseTimeMonitor.DisplayName=Tempo di risposta -ResponseTimeMonitor.MarkedOffline=Metto {0} non in linea perché non risponde +ResponseTimeMonitor.MarkedOffline=Metto {0} non in linea perché non risponde ResponseTimeMonitor.TimeOut=Tempo scaduto durante gli ultimi {0} tentativi SwapSpaceMonitor.DisplayName=Spazio di swap libero TemporarySpaceMonitor.DisplayName=Spazio libero directory temporanea diff --git a/core/src/main/resources/hudson/node_monitors/Messages_ja.properties b/core/src/main/resources/hudson/node_monitors/Messages_ja.properties index 9f545b5d8205..51d0e5287f59 100644 --- a/core/src/main/resources/hudson/node_monitors/Messages_ja.properties +++ b/core/src/main/resources/hudson/node_monitors/Messages_ja.properties @@ -20,15 +20,15 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ArchitectureMonitor.DisplayName=\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3 -ClockMonitor.DisplayName=\u30af\u30ed\u30c3\u30af\u8aa4\u5dee -DiskSpaceMonitor.MarkedOffline=\u7a7a\u304d\u30c7\u30a3\u30b9\u30af\u5bb9\u91cf\u304c\u306a\u3044\u305f\u3081\u3001\u4e00\u6642\u7684\u306b {0} \u3092\u30aa\u30d5\u30e9\u30a4\u30f3\u306b\u3057\u307e\u3059\u3002 -DiskSpaceMonitor.MarkedOnline=\u30c7\u30a3\u30b9\u30af\u5bb9\u91cf\u304c\u56de\u5fa9\u3057\u305f\u305f\u3081\u3001{0} \u3092\u30aa\u30f3\u30e9\u30a4\u30f3\u306b\u623b\u3057\u307e\u3059\u3002 -DiskSpaceMonitor.DisplayName=\u7a7a\u304d\u30c7\u30a3\u30b9\u30af\u5bb9\u91cf -ResponseTimeMonitor.DisplayName=\u5fdc\u7b54\u6642\u9593 -ResponseTimeMonitor.MarkedOffline=\u5fdc\u7b54\u3057\u306a\u3044\u305f\u3081\u3001\u4e00\u6642\u7684\u306b {0} \u3092\u30aa\u30d5\u30e9\u30a4\u30f3\u306b\u3057\u307e\u3059\u3002 -ResponseTimeMonitor.TimeOut=\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8(\u76f4\u8fd1 {0}\u56de) -SwapSpaceMonitor.DisplayName=\u7a7a\u304d\u30b9\u30ef\u30c3\u30d7\u5bb9\u91cf -TemporarySpaceMonitor.DisplayName=\u7a7a\u304d\u30c6\u30f3\u30dd\u30e9\u30ea\u5bb9\u91cf -AbstractNodeMonitorDescriptor.NoDataYet=\u30c7\u30fc\u30bf\u672a\u53d6\u5f97 -DiskSpaceMonitorDescriptor.DiskSpace.FreeSpaceTooLow=\u30C7\u30A3\u30B9\u30AF\u5BB9\u91CF\u304C\u5C11\u306A\u3059\u304E\u307E\u3059\u3002\u6B8B\u308A{0}GB\u3067\u3059\u3002 +ArchitectureMonitor.DisplayName=アーキテクãƒãƒ£ +ClockMonitor.DisplayName=クロック誤差 +DiskSpaceMonitor.MarkedOffline=空ãディスク容é‡ãŒãªã„ãŸã‚ã€ä¸€æ™‚çš„ã« {0} をオフラインã«ã—ã¾ã™ã€‚ +DiskSpaceMonitor.MarkedOnline=ディスク容é‡ãŒå›žå¾©ã—ãŸãŸã‚ã€{0} をオンラインã«æˆ»ã—ã¾ã™ã€‚ +DiskSpaceMonitor.DisplayName=空ããƒ‡ã‚£ã‚¹ã‚¯å®¹é‡ +ResponseTimeMonitor.DisplayName=応答時間 +ResponseTimeMonitor.MarkedOffline=応答ã—ãªã„ãŸã‚ã€ä¸€æ™‚çš„ã« {0} をオフラインã«ã—ã¾ã™ã€‚ +ResponseTimeMonitor.TimeOut=タイムアウト(ç›´è¿‘ {0}回) +SwapSpaceMonitor.DisplayName=空ãã‚¹ãƒ¯ãƒƒãƒ—å®¹é‡ +TemporarySpaceMonitor.DisplayName=空ãテンãƒãƒ©ãƒªå®¹é‡ +AbstractNodeMonitorDescriptor.NoDataYet=データ未å–å¾— +DiskSpaceMonitorDescriptor.DiskSpace.FreeSpaceTooLow=ディスク容é‡ãŒå°‘ãªã™ãŽã¾ã™ã€‚残り{0}GBã§ã™ã€‚ diff --git a/core/src/main/resources/hudson/node_monitors/Messages_pl.properties b/core/src/main/resources/hudson/node_monitors/Messages_pl.properties index 68cec8241d7a..50229695eda1 100644 --- a/core/src/main/resources/hudson/node_monitors/Messages_pl.properties +++ b/core/src/main/resources/hudson/node_monitors/Messages_pl.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. ArchitectureMonitor.DisplayName=Architektura -ClockMonitor.DisplayName=R\u00F3\u017Cnica czasu +ClockMonitor.DisplayName=Różnica czasu DiskSpaceMonitor.DisplayName=Wolne miejsce ResponseTimeMonitor.DisplayName=Czas odpowiedzi -SwapSpaceMonitor.DisplayName=Wolna pami\u0119\u0107 wymiany -TemporarySpaceMonitor.DisplayName=Wolna pami\u0119\u0107 tymczasowa +SwapSpaceMonitor.DisplayName=Wolna pamięć wymiany +TemporarySpaceMonitor.DisplayName=Wolna pamięć tymczasowa diff --git a/core/src/main/resources/hudson/node_monitors/Messages_pt_BR.properties b/core/src/main/resources/hudson/node_monitors/Messages_pt_BR.properties index 45ba60c78c5d..1d0ce852ed13 100644 --- a/core/src/main/resources/hudson/node_monitors/Messages_pt_BR.properties +++ b/core/src/main/resources/hudson/node_monitors/Messages_pt_BR.properties @@ -21,16 +21,16 @@ # THE SOFTWARE. ArchitectureMonitor.DisplayName=Arquitetura -ClockMonitor.DisplayName=Diferen\u00E7a de tempo -DiskSpaceMonitor.DisplayName=Espa\u00E7o livre em disco -ResponseTimeMonitor.TimeOut=Time out desde a \u00FAltima {0} tentativa -TemporarySpaceMonitor.DisplayName=Espa\u00E7o tempor\u00E1rio dispon\u00EDvel +ClockMonitor.DisplayName=Diferença de tempo +DiskSpaceMonitor.DisplayName=Espaço livre em disco +ResponseTimeMonitor.TimeOut=Time out desde a última {0} tentativa +TemporarySpaceMonitor.DisplayName=Espaço temporário disponível ResponseTimeMonitor.DisplayName=Tempo de resposta -DiskSpaceMonitor.MarkedOffline=Temporariamente indispon\u00EDvel por falta de espa\u00E7o em disco -SwapSpaceMonitor.DisplayName=Espa\u00E7o de troca livre -ResponseTimeMonitor.MarkedOffline= Indispon\u00EDvel temporariamente por que n\u00E3o est\u00E1 respondendo +DiskSpaceMonitor.MarkedOffline=Temporariamente indisponível por falta de espaço em disco +SwapSpaceMonitor.DisplayName=Espaço de troca livre +ResponseTimeMonitor.MarkedOffline= Indisponível temporariamente por que não está respondendo AbstractNodeMonitorDescriptor.NoDataYet=Nada ainda -DiskSpaceMonitor.MarkedOnline=Retornando {0} como ativo pois h\u00E1 espa\u00E7o em disco suficiente novamente -DiskSpaceMonitorDescriptor.DiskSpace.FreeSpaceTooLow=Pouco espa\u00E7o em disco. Somente {0}GB dispon\u00EDvel em {1}. -MonitorMarkedNodeOffline.DisplayName=N\u00F3 marcado como fora de servi\u00E7o devido a verifica\u00E7\u00E3o de sa\u00FAde +DiskSpaceMonitor.MarkedOnline=Retornando {0} como ativo pois há espaço em disco suficiente novamente +DiskSpaceMonitorDescriptor.DiskSpace.FreeSpaceTooLow=Pouco espaço em disco. Somente {0}GB disponível em {1}. +MonitorMarkedNodeOffline.DisplayName=Nó marcado como fora de serviço devido a verificação de saúde DiskSpaceMonitorDescriptor.DiskSpace.FreeSpace={0}GB restantes em {1}. diff --git a/core/src/main/resources/hudson/node_monitors/Messages_ru.properties b/core/src/main/resources/hudson/node_monitors/Messages_ru.properties index fdd829736a14..d21b28389926 100644 --- a/core/src/main/resources/hudson/node_monitors/Messages_ru.properties +++ b/core/src/main/resources/hudson/node_monitors/Messages_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ArchitectureMonitor.DisplayName=\u0410\u0440\u0445\u0438\u0442\u0435\u043A\u0442\u0443\u0440\u0430 -ClockMonitor.DisplayName=\u0420\u0430\u0437\u043D\u0438\u0446\u0430 \u0432 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0435 \u0441\u0438\u0441\u0442\u0435\u043C\u043D\u043E\u0433\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438 -DiskSpaceMonitor.DisplayName=\u0421\u0432\u043E\u0431\u043E\u0434\u043D\u043E\u0435 \u0434\u0438\u0441\u043A\u043E\u0432\u043E\u0435 \u043F\u0440\u043E\u0441\u0442\u0440\u0430\u043D\u0441\u0442\u0432\u043E +ArchitectureMonitor.DisplayName=Ðрхитектура +ClockMonitor.DisplayName=Разница в наÑтройке ÑиÑтемного времени +DiskSpaceMonitor.DisplayName=Свободное диÑковое проÑтранÑтво diff --git a/core/src/main/resources/hudson/node_monitors/Messages_sr.properties b/core/src/main/resources/hudson/node_monitors/Messages_sr.properties index f55592c2348d..f65bf82f1491 100644 --- a/core/src/main/resources/hudson/node_monitors/Messages_sr.properties +++ b/core/src/main/resources/hudson/node_monitors/Messages_sr.properties @@ -1,14 +1,14 @@ # This file is under the MIT License by authors -ArchitectureMonitor.DisplayName=\u0410\u0440\u0445\u0438\u0442\u0435\u043A\u0442\u0443\u0440\u0430 -ClockMonitor.DisplayName=\u0420\u0430\u0437\u043B\u0438\u043A\u0430 \u0443 \u0441\u0430\u0442\u0443 -DiskSpaceMonitor.MarkedOffline=\u041F\u0440\u0438\u0432\u0440\u0435\u043C\u0435\u043D\u043E \u043E\u043D\u0435\u043C\u043E\u0433\u0443\u045B\u0443\u0458\u0435 "{0}" \u2014 \u043D\u0435\u043C\u0430 \u0434\u043E\u0432\u043E\u0459\u043D\u043E \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0430 \u043D\u0430 \u0434\u0438\u0441\u043A\u0443 -DiskSpaceMonitor.MarkedOnline=\u0423\u043A\u0459\u0443\u0447\u0443\u0458\u0435 "{0}" \u2014 \u043E\u043F\u0435\u0442 \u043F\u043E\u0441\u0442\u043E\u0458\u0438 \u0434\u043E\u0432\u043E\u0459\u043D\u043E \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0430 \u043D\u0430 \u0434\u0438\u0441\u043A\u0443 -DiskSpaceMonitor.DisplayName=\u0421\u043B\u043E\u0431\u043E\u0434\u043D\u043E\u0433 \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0430 \u043D\u0430 \u0434\u0438\u0441\u043A\u0443 -ResponseTimeMonitor.DisplayName=\u0412\u0440\u0435\u043C\u0435 \u0437\u0430 \u043E\u0434\u0433\u043E\u0432\u043E\u0440 -ResponseTimeMonitor.MarkedOffline=\u041F\u0440\u0438\u0432\u0440\u0435\u043C\u0435\u043D\u043E \u043E\u043D\u0435\u043C\u043E\u0433\u0443\u045B\u0443\u0458\u0435 "{0}" \u2014 \u043D\u0435\u043C\u0430 \u043E\u0434\u0433\u043E\u0432\u043E\u0440\u0430 -ResponseTimeMonitor.TimeOut=\u0418\u0437\u0441\u0442\u043A\u043B\u043E \u0432\u0440\u0435\u043C\u0435 \u0437\u0430 \u043F\u043E\u0441\u043B\u0435\u0434\u045A\u0438 \u043F\u043E\u043A\u0443\u0448\u0430\u0458 "{0}" -SwapSpaceMonitor.DisplayName=\u0421\u043B\u043E\u0431\u043E\u0434\u043D\u043E\u0433 \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0430 \u0437\u0430 \u0437\u0430\u043C\u0435\u043D\u043E\u043C \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0443 -TemporarySpaceMonitor.DisplayName=\u0421\u043B\u043E\u0431\u043E\u0434\u043D\u043E\u0433 \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0430 \u0437\u0430 \u043F\u0440\u0438\u0432\u0440\u0435\u043C\u0435\u043D\u043E\u043C \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0443 -AbstractNodeMonitorDescriptor.NoDataYet=\u041D\u0435\u043C\u0430 \u043F\u043E\u0434\u0430\u0442\u0430\u043A\u0430 -DiskSpaceMonitorDescriptor.DiskSpace.FreeSpaceTooLow=\u041D\u0435\u043C\u0430 \u0434\u043E\u0432\u043E\u0459\u043D\u043E \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0430 \u043D\u0430 \u0434\u0438\u0441\u043A\u0443. {1} \u043E\u0441\u0442\u0430\u0458\u0435 \u0441\u0430\u043C\u043E {0}GB. +ArchitectureMonitor.DisplayName=Ðрхитектура +ClockMonitor.DisplayName=Разлика у Ñату +DiskSpaceMonitor.MarkedOffline=Привремено онемогућује "{0}" — нема довољно проÑтора на диÑку +DiskSpaceMonitor.MarkedOnline=Укључује "{0}" — опет поÑтоји довољно проÑтора на диÑку +DiskSpaceMonitor.DisplayName=Слободног проÑтора на диÑку +ResponseTimeMonitor.DisplayName=Време за одговор +ResponseTimeMonitor.MarkedOffline=Привремено онемогућује "{0}" — нема одговора +ResponseTimeMonitor.TimeOut=ИзÑткло време за поÑледњи покушај "{0}" +SwapSpaceMonitor.DisplayName=Слободног проÑтора за заменом проÑтору +TemporarySpaceMonitor.DisplayName=Слободног проÑтора за привременом проÑтору +AbstractNodeMonitorDescriptor.NoDataYet=Ðема података +DiskSpaceMonitorDescriptor.DiskSpace.FreeSpaceTooLow=Ðема довољно проÑтора на диÑку. {1} оÑтаје Ñамо {0}GB. diff --git a/core/src/main/resources/hudson/node_monitors/Messages_sv_SE.properties b/core/src/main/resources/hudson/node_monitors/Messages_sv_SE.properties index 1b0ae43692ea..2a381f215c66 100644 --- a/core/src/main/resources/hudson/node_monitors/Messages_sv_SE.properties +++ b/core/src/main/resources/hudson/node_monitors/Messages_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -DiskSpaceMonitorDescriptor.DiskSpace.FreeSpaceTooLow=Diskutrymme l\u00E5gt. Enbart {0}GB kvar. +DiskSpaceMonitorDescriptor.DiskSpace.FreeSpaceTooLow=Diskutrymme lÃ¥gt. Enbart {0}GB kvar. diff --git a/core/src/main/resources/hudson/node_monitors/Messages_tr.properties b/core/src/main/resources/hudson/node_monitors/Messages_tr.properties index e433d9be9283..a58be1787e59 100644 --- a/core/src/main/resources/hudson/node_monitors/Messages_tr.properties +++ b/core/src/main/resources/hudson/node_monitors/Messages_tr.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. ArchitectureMonitor.DisplayName=Mimari -ClockMonitor.DisplayName=Saat Fark\u0131 -DiskSpaceMonitor.DisplayName=Diskteki Bo\u015F Alan +ClockMonitor.DisplayName=Saat Farkı +DiskSpaceMonitor.DisplayName=Diskteki BoÅŸ Alan diff --git a/core/src/main/resources/hudson/node_monitors/Messages_zh_TW.properties b/core/src/main/resources/hudson/node_monitors/Messages_zh_TW.properties index 63ebb23af2d9..9b4a3dea59e8 100644 --- a/core/src/main/resources/hudson/node_monitors/Messages_zh_TW.properties +++ b/core/src/main/resources/hudson/node_monitors/Messages_zh_TW.properties @@ -20,14 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ArchitectureMonitor.DisplayName=\u67b6\u69cb -ClockMonitor.DisplayName=\u6642\u9593\u5dee -DiskSpaceMonitor.MarkedOffline={0} \u56e0\u70ba\u78c1\u789f\u7a7a\u9593\u4e0d\u8db3\u66ab\u6642\u96e2\u7dda -DiskSpaceMonitor.MarkedOnline=\u7a7a\u9593\u8db3\u5920\uff0c\u6062\u5fa9 {0} \u6210\u4e0a\u7dda\u72c0\u614b -DiskSpaceMonitor.DisplayName=\u53ef\u7528\u78c1\u789f\u7a7a\u9593 -ResponseTimeMonitor.DisplayName=\u56de\u61c9\u6642\u9593 -ResponseTimeMonitor.MarkedOffline={0} \u6c92\u6709\u56de\u61c9\uff0c\u5c07\u5176\u96e2\u7dda -ResponseTimeMonitor.TimeOut=\u6700\u8fd1 {0} \u6b21\u9023\u7dda\u90fd\u903e\u6642 -SwapSpaceMonitor.DisplayName=\u53ef\u7528 Swap \u7a7a\u9593 -TemporarySpaceMonitor.DisplayName=\u53ef\u7528\u66ab\u5b58\u7a7a\u9593 -DiskSpaceMonitorDescriptor.DiskSpace.FreeSpaceTooLow=\u78c1\u789f\u7a7a\u9593\u592a\u5c11\u3002{1} \u4e0a\u53ea\u5269 {0}GB\u3002 +ArchitectureMonitor.DisplayName=架構 +ClockMonitor.DisplayName=時間差 +DiskSpaceMonitor.MarkedOffline={0} 因為ç£ç¢Ÿç©ºé–“ä¸è¶³æš«æ™‚離線 +DiskSpaceMonitor.MarkedOnline=空間足夠,æ¢å¾© {0} æˆä¸Šç·šç‹€æ…‹ +DiskSpaceMonitor.DisplayName=å¯ç”¨ç£ç¢Ÿç©ºé–“ +ResponseTimeMonitor.DisplayName=回應時間 +ResponseTimeMonitor.MarkedOffline={0} 沒有回應,將其離線 +ResponseTimeMonitor.TimeOut=最近 {0} 次連線都逾時 +SwapSpaceMonitor.DisplayName=å¯ç”¨ Swap 空間 +TemporarySpaceMonitor.DisplayName=å¯ç”¨æš«å­˜ç©ºé–“ +DiskSpaceMonitorDescriptor.DiskSpace.FreeSpaceTooLow=ç£ç¢Ÿç©ºé–“太少。{1} 上åªå‰© {0}GB。 diff --git a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/description_pt_BR.properties b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/description_pt_BR.properties index c5828e70220f..901fac67c876 100644 --- a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/description_pt_BR.properties +++ b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/description_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Sempre que um monitor de recursos marca um n\u00F3 como fora de servi\u00E7o, este aviso \u00E9 mostrado para informar os administradores sobre. +blurb=Sempre que um monitor de recursos marca um nó como fora de serviço, este aviso é mostrado para informar os administradores sobre. diff --git a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message.properties b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message.properties index 8df89a9341c7..9067d4bf9768 100644 --- a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message.properties +++ b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message.properties @@ -1,3 +1,3 @@ blurb=Jenkins took some agents offline because their key health metrics went below a threshold. \ - If you don\u2019t want Jenkins to do this, \ + If you don’t want Jenkins to do this, \ change the setting. diff --git a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_bg.properties b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_bg.properties index a0925ea0c4c6..d4d879aea6e4 100644 --- a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_bg.properties +++ b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_bg.properties @@ -21,12 +21,12 @@ # THE SOFTWARE. Dismiss=\ - \u041e\u0442\u043a\u0430\u0437\u0432\u0430\u043d\u0435 + Отказване # Jenkins took some agents offline because their key health metrics went below a threshold. \ -# If you don\u2019t want Jenkins to do this, \ +# If you don’t want Jenkins to do this, \ # change the setting. blurb=\ - Jenkins \u0438\u0437\u0432\u0435\u0434\u0435 \u0447\u0430\u0441\u0442 \u043e\u0442 \u043c\u0430\u0448\u0438\u043d\u0438\u0442\u0435 \u0438\u0437\u0432\u044a\u043d \u043b\u0438\u043d\u0438\u044f, \u0437\u0430\u0449\u043e\u0442\u043e\ - \u043a\u043b\u044e\u0447\u043e\u0432\u0438\u0442\u0435 \u043c\u0435\u0442\u0440\u0438\u043a\u0438 \u0437\u0430 \u0442\u044f\u0445\u043d\u043e\u0442\u043e \u0437\u0434\u0440\u0430\u0432\u0435 \u0441\u0430 \u043f\u043e\u0434\ - \u043c\u0438\u043d\u0438\u043c\u0430\u043b\u043d\u0438\u044f \u043f\u0440\u0430\u0433. \u0410\u043a\u043e \u043d\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 Jenkins \u0434\u0430 \u043f\u0440\u0430\u0432\u0438 \u0442\u043e\u0432\u0430,\ - \u043f\u0440\u043e\u043c\u0435\u043d\u0435\u0442\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435. + Jenkins изведе чаÑÑ‚ от машините извън линиÑ, защото\ + ключовите метрики за Ñ‚Ñхното здраве Ñа под\ + Ð¼Ð¸Ð½Ð¸Ð¼Ð°Ð»Ð½Ð¸Ñ Ð¿Ñ€Ð°Ð³. Ðко не иÑкате Jenkins да прави това,\ + променете наÑтройките. diff --git a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_cs.properties b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_cs.properties index 633d58b85a88..5755d2e7973a 100644 --- a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_cs.properties +++ b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_cs.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Dismiss=Zru\u0161it +Dismiss=ZruÅ¡it diff --git a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_de.properties b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_de.properties index 98cf5a26a526..59930d075351 100644 --- a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_de.properties +++ b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_de.properties @@ -1,4 +1,4 @@ -Dismiss=Schlie\u00DFen +Dismiss=Schließen blurb=Jenkins hat einen oder mehrere Agenten offline genommen, da ihre System-Status-Metriken unter \ - definierte Grenzwerte gefallen sind. Wenn Sie dieses Verhalten \u00E4ndern m\u00F6chten, k\u00F6nnen \ + definierte Grenzwerte gefallen sind. Wenn Sie dieses Verhalten ändern möchten, können \ Sie es hier umkonfigurieren. diff --git a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_es.properties b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_es.properties index 79e2f8cb96b1..32b8c4d5ecba 100644 --- a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_es.properties +++ b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_es.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Jenkins puso algún agente fuera de línea porque su estado de disponibilidad \ - ha bajado por debajo e un umbral. Si quieres que Jenkins no haga ésto, cambia la configuración.. +blurb=Jenkins puso algún agente fuera de línea porque su estado de disponibilidad \ + ha bajado por debajo e un umbral. Si quieres que Jenkins no haga ésto, cambia la configuración.. Dismiss=Descartar diff --git a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_it.properties b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_it.properties index 19de0ceefbcb..ef468f401d67 100644 --- a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_it.properties +++ b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,8 +21,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Jenkins ha posto alcuni agenti non in linea perché \ - le metriche chiave relative alla loro integrità \ +blurb=Jenkins ha posto alcuni agenti non in linea perché \ + le metriche chiave relative alla loro integrità \ sono diminuite al di sotto di una soglia. Se non si desidera che Jenkins \ proceda in tal senso, modificare \ l''impostazione. diff --git a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_ja.properties b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_ja.properties index 703a560539c0..eb0f726f5e90 100644 --- a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_ja.properties +++ b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=\u7121\u8996 +Dismiss=無視 diff --git a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_pt_BR.properties b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_pt_BR.properties index 9bc16aa60885..1da926c4a42a 100644 --- a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_pt_BR.properties +++ b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_pt_BR.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Dismiss=Dispensar -blurb=O Jenkins colocou alguns agentes fora de servi\u00E7o porque as m\u00E9tricas chaves de sa\u00FAde deles ficaram abaixo do limite. \ - Se voc\u00EA n\u00E3o quiser que o Jenkins fa\u00E7a isso \ - mude a configura\u00E7\u00E3o +blurb=O Jenkins colocou alguns agentes fora de serviço porque as métricas chaves de saúde deles ficaram abaixo do limite. \ + Se você não quiser que o Jenkins faça isso \ + mude a configuração diff --git a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_sr.properties b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_sr.properties index d3c410a95f0c..0e01db393303 100644 --- a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_sr.properties +++ b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -blurb=Jenkins \u043F\u0440\u0435\u043A\u0438\u043D\u0443\u043E \u0432\u0435\u0437\u0443 \u0441\u0430 \u043D\u0435\u043A\u0438\u043C \u0430\u0433\u0435\u043D\u0442\u0438\u043C\u0430 \u0437\u0430\u0448\u0442\u043E \u045A\u0435\u043D\u0435 \u0437\u0434\u0440\u0430\u0432\u0441\u0442\u0432\u0435\u043D\u0435 \u043C\u0435\u0442\u0440\u0438\u043A\u0435 \u0441\u0443 \u043F\u0430\u043B\u0435 \u0438\u0441\u043F\u043E\u0434 \u043F\u0440\u0430\u0433\u0430. \ - \u0410\u043A\u043E \u043D\u0435\u0431\u0438 \u0436\u0435\u043B\u0435\u043B\u0438 Jenkins \u0442\u0430\u043A\u043E \u0434\u0430 \u0434\u0435\u043B\u0443\u0458\u0435, \ - \u043F\u043E\u0434\u0435\u0441\u0438. -Dismiss=\u041E\u0442\u043A\u0430\u0436\u0438 +blurb=Jenkins прекинуо везу Ñа неким агентима зашто њене здравÑтвене метрике Ñу пале иÑпод прага. \ + Ðко неби желели Jenkins тако да делује, \ + подеÑи. +Dismiss=Откажи diff --git a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_zh_TW.properties b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_zh_TW.properties index 3a970b7399e4..8522c69bd0af 100644 --- a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_zh_TW.properties +++ b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=\u89E3\u9664 +Dismiss=解除 diff --git a/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_bg.properties b/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_bg.properties index b285c96c295f..431e62b2e49f 100644 --- a/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_bg.properties +++ b/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Ping\ response\ time\ is\ too\ long\ or\ timed\ out.=\ - \u0412\u0440\u0435\u043c\u0435\u0442\u043e \u0437\u0430 \u043e\u0442\u0433\u043e\u0432\u043e\u0440 \u043d\u0430 \u043f\u0440\u0430\u0437\u043d\u0430 \u0437\u0430\u044f\u0432\u043a\u0430 \u0435 \u043f\u0440\u0435\u043a\u0430\u043b\u0435\u043d\u043e \u0434\u044a\u043b\u0433\u043e \u0438\u043b\u0438 \u0442\u0430\u043a\u044a\u0432 \u043d\u0435 \u0435 \u043f\u043e\u043b\u0443\u0447\u0435\u043d. + Времето за отговор на празна заÑвка е прекалено дълго или такъв не е получен. diff --git a/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_de.properties b/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_de.properties index 816f25b9a852..2caa7a9e6286 100644 --- a/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_de.properties +++ b/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. Ping\ response\ time\ is\ too\ long\ or\ timed\ out.=\ - Ping-Anwortzeit zu groß bzw. Time-out aufgetreten. + Ping-Anwortzeit zu groß bzw. Time-out aufgetreten. diff --git a/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_es.properties b/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_es.properties index 7a586d2088b3..76351f39841b 100644 --- a/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_es.properties +++ b/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Ping\ response\ time\ is\ too\ long\ or\ timed\ out.=La respuesta al ''ping'' tarda mucho o falló. +Ping\ response\ time\ is\ too\ long\ or\ timed\ out.=La respuesta al ''ping'' tarda mucho o falló. diff --git a/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_it.properties b/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_it.properties index 078c9fe257c3..e5461e535a0b 100644 --- a/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_it.properties +++ b/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,4 +22,4 @@ # THE SOFTWARE. Ping\ response\ time\ is\ too\ long\ or\ timed\ out.=Il tempo di risposta al \ - ping è troppo elevato oppure il tempo è scaduto. + ping è troppo elevato oppure il tempo è scaduto. diff --git a/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_ja.properties b/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_ja.properties index 2e230b3fdad6..45d9fa4c5bf2 100644 --- a/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_ja.properties +++ b/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. Ping\ response\ time\ is\ too\ long\ or\ timed\ out.=\ - Ping\u306E\u5FDC\u7B54\u6642\u9593\u304C\u9577\u3059\u304E\u308B\u304B\u3001\u30BF\u30A4\u30E0\u30A2\u30A6\u30C8\u3067\u3059\u3002 + Pingã®å¿œç­”時間ãŒé•·ã™ãŽã‚‹ã‹ã€ã‚¿ã‚¤ãƒ ã‚¢ã‚¦ãƒˆã§ã™ã€‚ diff --git a/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_pt_BR.properties b/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_pt_BR.properties index 68747957388d..a5bd7759d39d 100644 --- a/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_pt_BR.properties +++ b/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Ping\ response\ time\ is\ too\ long\ or\ timed\ out.=Tempo de resposta ao Ping est\u00e1 muito alto. +Ping\ response\ time\ is\ too\ long\ or\ timed\ out.=Tempo de resposta ao Ping está muito alto. diff --git a/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_sr.properties b/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_sr.properties index 56ff2e35b04f..d758566a6173 100644 --- a/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_sr.properties +++ b/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Ping\ response\ time\ is\ too\ long\ or\ timed\ out.=\u0414\u043E\u0437\u0432\u043E\u0459\u0435\u043D\u043E \u0432\u0440\u0435\u043C\u0435 \u043E\u0434\u0430\u0437\u0438\u0432\u0430\u045A\u0430 \u043D\u0430 Ping \u043A\u043E\u043C\u0430\u043D\u0434\u0438 \u0458\u0435 \u0438\u0437\u0441\u0442\u0435\u043A\u043B\u043E. +Ping\ response\ time\ is\ too\ long\ or\ timed\ out.=Дозвољено време одазивања на Ping команди је изÑтекло. diff --git a/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_zh_TW.properties b/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_zh_TW.properties index 91b61e234b35..c8038d7f183f 100644 --- a/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_zh_TW.properties +++ b/core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/Data/cause_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Ping\ response\ time\ is\ too\ long\ or\ timed\ out.=Ping \u56de\u61c9\u6642\u9593\u592a\u9577\u6216\u903e\u6642\u3002 +Ping\ response\ time\ is\ too\ long\ or\ timed\ out.=Ping 回應時間太長或逾時。 diff --git a/core/src/main/resources/hudson/scheduler/Messages.properties b/core/src/main/resources/hudson/scheduler/Messages.properties index 82b2288a6477..5271918997aa 100644 --- a/core/src/main/resources/hudson/scheduler/Messages.properties +++ b/core/src/main/resources/hudson/scheduler/Messages.properties @@ -25,5 +25,5 @@ BaseParser.MustBePositive=step must be positive, but found {0} BaseParser.OutOfRange={0} is an invalid value. Must be within {1} and {2} CronTab.do_you_really_mean_every_minute_when_you=Do you really mean "every minute" when you say "{0}"? Perhaps you meant "{1}" to poll once per hour CronTab.short_cycles_in_the_day_of_month_field_w=Short cycles in the day-of-month field will behave oddly near the end of a month -CronTab.spread_load_evenly_by_using_rather_than_=Spread load evenly by using \u2018{0}\u2019 rather than \u2018{1}\u2019 +CronTab.spread_load_evenly_by_using_rather_than_=Spread load evenly by using ‘{0}’ rather than ‘{1}’ CronTabList.InvalidInput=Invalid input: "{0}": {1} diff --git a/core/src/main/resources/hudson/scheduler/Messages_bg.properties b/core/src/main/resources/hudson/scheduler/Messages_bg.properties index ab2923284733..6d0e5877a3da 100644 --- a/core/src/main/resources/hudson/scheduler/Messages_bg.properties +++ b/core/src/main/resources/hudson/scheduler/Messages_bg.properties @@ -21,17 +21,17 @@ # THE SOFTWARE. BaseParser.StartEndReversed=\ - \u0420\u0430\u0437\u043c\u0435\u043d\u0435\u043d\u0438 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442\u0438, \u0432\u0435\u0440\u043e\u044f\u0442\u043d\u043e \u0438\u043c\u0430\u0442\u0435 \u043f\u0440\u0435\u0434\u0432\u0438\u0434 \u201e{0}-{1}\u201c? + Разменени ÑтойноÑти, вероÑтно имате предвид „{0}-{1}“? BaseParser.MustBePositive=\ - \u0421\u0442\u044a\u043f\u043a\u0430\u0442\u0430 \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0435 \u043f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u043d\u043e \u0447\u0438\u0441\u043b\u043e, \u0430 \u043d\u0435 \u201e{0}\u201c + Стъпката Ñ‚Ñ€Ñбва да е положително чиÑло, а не „{0}“ BaseParser.OutOfRange=\ - \u201e{0}\u201c \u0435 \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442. \u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0435 \u043c\u0435\u0436\u0434\u0443 \u201e{1}\u201c \u0438 \u201e{2}\u201c \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e + „{0}“ е неправилна ÑтойноÑÑ‚. ТрÑбва да е между „{1}“ и „{2}“ включително CronTab.do_you_really_mean_every_minute_when_you=\ - \u0421\u0442\u043e\u0439\u043d\u043e\u0441\u0442\u0442\u0430 \u201e{0}\u201c \u043e\u0437\u043d\u0430\u0447\u0430\u0432\u0430 \u201e\u0432\u0441\u044f\u043a\u0430 \u043c\u0438\u043d\u0443\u0442\u0430\u201c. \u0421\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u0442\u043e\u0432\u0430?\ - \u0412\u0435\u0440\u043e\u044f\u0442\u043d\u043e \u0438\u043c\u0430\u0442\u0435 \u043f\u0440\u0435\u0434\u0432\u0438\u0434 \u201e{0}\u201c \u2014 \u0432\u0435\u0434\u043d\u044a\u0436 \u043d\u0430 \u0432\u0441\u0435\u043a\u0438 \u0447\u0430\u0441. + СтойноÑтта „{0}“ означава „вÑÑка минута“. Сигурни ли Ñте, че иÑкате това?\ + ВероÑтно имате предвид „{0}“ — веднъж на вÑеки чаÑ. CronTab.short_cycles_in_the_day_of_month_field_w=\ - \u041a\u044a\u0441\u0438 \u0446\u0438\u043a\u043b\u0438 \u0432 \u043f\u043e\u043b\u0435\u0442\u043e \u201e\u0434\u0435\u043d \u043e\u0442 \u043c\u0435\u0441\u0435\u0446\u0430\u201c \u0432\u043e\u0434\u044f\u0442 \u0434\u043e \u0441\u0442\u0440\u0430\u043d\u043d\u043e \u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0432 \u043a\u0440\u0430\u044f \u043d\u0430 \u043c\u0435\u0441\u0435\u0446\u0430 + КъÑи цикли в полето „ден от меÑеца“ водÑÑ‚ до Ñтранно поведение в ÐºÑ€Ð°Ñ Ð½Ð° меÑеца CronTab.spread_load_evenly_by_using_rather_than_=\ - \u0420\u0430\u0437\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u043d\u0435 \u043d\u0430 \u043d\u0430\u0442\u043e\u0432\u0430\u0440\u0432\u0430\u043d\u0435\u0442\u043e \u0447\u0440\u0435\u0437 \u201e{0}\u201c, \u0430 \u043d\u0435 \u201e{1}\u201c + РазпределÑне на натоварването чрез „{0}“, а не „{1}“ CronTabList.InvalidInput=\ - \u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u043d\u0438 \u0432\u0445\u043e\u0434\u043d\u0438 \u0434\u0430\u043d\u043d\u0438: \u201e{0}\u201c: {1} + Ðеправилни входни данни: „{0}“: {1} diff --git a/core/src/main/resources/hudson/scheduler/Messages_da.properties b/core/src/main/resources/hudson/scheduler/Messages_da.properties index 85a5b851ce92..5706d046bd7f 100644 --- a/core/src/main/resources/hudson/scheduler/Messages_da.properties +++ b/core/src/main/resources/hudson/scheduler/Messages_da.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -BaseParser.OutOfRange={0} er en ugyldig v\u00e6rdi. V\u00e6rdien skal v\u00e6re imellem {1} og {2} +BaseParser.OutOfRange={0} er en ugyldig værdi. Værdien skal være imellem {1} og {2} CronTabList.InvalidInput=Ugyldigt input: "{0}": {1} BaseParser.StartEndReversed=Mener du {0}-{1}? -BaseParser.MustBePositive=trin skal v\u00e6re positivt, men fandt {0} +BaseParser.MustBePositive=trin skal være positivt, men fandt {0} diff --git a/core/src/main/resources/hudson/scheduler/Messages_de.properties b/core/src/main/resources/hudson/scheduler/Messages_de.properties index 28fb21142024..6571a9f33124 100644 --- a/core/src/main/resources/hudson/scheduler/Messages_de.properties +++ b/core/src/main/resources/hudson/scheduler/Messages_de.properties @@ -22,8 +22,8 @@ BaseParser.StartEndReversed=Meinten Sie {0}-{1}? BaseParser.MustBePositive=Schrittweite muss positiv sein, ist aber {0} -BaseParser.OutOfRange={0} ist ein ungültiger Wert. Muss zwischen {1} und {2} liegen. -CronTab.do_you_really_mean_every_minute_when_you=Meinen Sie mit \u201E{0}\u201C wirklich \u201Ejede Minute\u201C? Vielleicht meinen Sie eher \u201E{1}\u201C -CronTab.short_cycles_in_the_day_of_month_field_w=Kleine Schrittweiten im Tag-Feld führen am Monatsende zu Unregelmäßigkeiten. -CronTab.spread_load_evenly_by_using_rather_than_=Verwenden Sie zur gleichmäßigen Lastverteilung \u201E{0}\u201C statt \u201E{1}\u201C -CronTabList.InvalidInput=Ungültige Eingabe: \u201E{0}\u201C: {1} +BaseParser.OutOfRange={0} ist ein ungültiger Wert. Muss zwischen {1} und {2} liegen. +CronTab.do_you_really_mean_every_minute_when_you=Meinen Sie mit „{0}“ wirklich „jede Minute“? Vielleicht meinen Sie eher „{1}“ +CronTab.short_cycles_in_the_day_of_month_field_w=Kleine Schrittweiten im Tag-Feld führen am Monatsende zu Unregelmäßigkeiten. +CronTab.spread_load_evenly_by_using_rather_than_=Verwenden Sie zur gleichmäßigen Lastverteilung „{0}“ statt „{1}“ +CronTabList.InvalidInput=Ungültige Eingabe: „{0}“: {1} diff --git a/core/src/main/resources/hudson/scheduler/Messages_es.properties b/core/src/main/resources/hudson/scheduler/Messages_es.properties index 06e568c0ed31..a2ea0401ae0f 100644 --- a/core/src/main/resources/hudson/scheduler/Messages_es.properties +++ b/core/src/main/resources/hudson/scheduler/Messages_es.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -BaseParser.StartEndReversed=¿Quieres decir {0}-{1}? -BaseParser.MustBePositive= {0} no es un valor válido, debe ser positivo -BaseParser.OutOfRange={0} es inválido, debe estar incluido entre {1} y {2} -CronTabList.InvalidInput=Entrada inválida: "{0}": {1} +BaseParser.StartEndReversed=¿Quieres decir {0}-{1}? +BaseParser.MustBePositive= {0} no es un valor válido, debe ser positivo +BaseParser.OutOfRange={0} es inválido, debe estar incluido entre {1} y {2} +CronTabList.InvalidInput=Entrada inválida: "{0}": {1} diff --git a/core/src/main/resources/hudson/scheduler/Messages_fr.properties b/core/src/main/resources/hudson/scheduler/Messages_fr.properties index 3fa3e452dfd2..edea8ce01b32 100644 --- a/core/src/main/resources/hudson/scheduler/Messages_fr.properties +++ b/core/src/main/resources/hudson/scheduler/Messages_fr.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. BaseParser.StartEndReversed=Voulez-vous dire {0}-{1}? -BaseParser.MustBePositive=L''intervalle doit \u00eatre une valeur positive. {0} est incorrect -BaseParser.OutOfRange={0} est une valeur invalide. Elle doit \u00eatre comprise entre {1} et {2} -CronTab.do_you_really_mean_every_minute_when_you=Voulez-vous vraiment dire "chaque minute" avec l''expression "{0}"? Peut-\u00eatre vouliez-vous dire "{1}"? -CronTab.spread_load_evenly_by_using_rather_than_=Etaler la charge de fa\u00e7on r\u00e9guli\u00e8re en utilisant \u2018{0}\u2019 plut\u00f4t que \u2018{1}\u2019 -CronTabList.InvalidInput=Entr\u00e9e invalide: "{0}": {1} +BaseParser.MustBePositive=L''intervalle doit être une valeur positive. {0} est incorrect +BaseParser.OutOfRange={0} est une valeur invalide. Elle doit être comprise entre {1} et {2} +CronTab.do_you_really_mean_every_minute_when_you=Voulez-vous vraiment dire "chaque minute" avec l''expression "{0}"? Peut-être vouliez-vous dire "{1}"? +CronTab.spread_load_evenly_by_using_rather_than_=Etaler la charge de façon régulière en utilisant ‘{0}’ plutôt que ‘{1}’ +CronTabList.InvalidInput=Entrée invalide: "{0}": {1} diff --git a/core/src/main/resources/hudson/scheduler/Messages_it.properties b/core/src/main/resources/hudson/scheduler/Messages_it.properties index 485473221493..9ad6f0a97a98 100644 --- a/core/src/main/resources/hudson/scheduler/Messages_it.properties +++ b/core/src/main/resources/hudson/scheduler/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,7 +21,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -BaseParser.OutOfRange={0} non è un valore valido. Il valore deve essere \ +BaseParser.OutOfRange={0} non è un valore valido. Il valore deve essere \ compreso tra {1} e {2} BaseParser.MustBePositive=l''incremento deve essere un numero positivo, valore \ trovato: {0} @@ -32,5 +32,5 @@ CronTab.do_you_really_mean_every_minute_when_you=Si intende veramente "ogni \ CronTab.short_cycles_in_the_day_of_month_field_w=Dei cicli brevi nel campo \ Giorno del mese causeranno comportamenti strani verso la fine del mese CronTab.spread_load_evenly_by_using_rather_than_=Ripartisci uniformemente il \ - carico utilizzando "{0}" anziché "{1}" + carico utilizzando "{0}" anziché "{1}" CronTabList.InvalidInput=Input non valido: "{0}": {1} diff --git a/core/src/main/resources/hudson/scheduler/Messages_ja.properties b/core/src/main/resources/hudson/scheduler/Messages_ja.properties index 970052f919b6..db5189e58426 100644 --- a/core/src/main/resources/hudson/scheduler/Messages_ja.properties +++ b/core/src/main/resources/hudson/scheduler/Messages_ja.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -BaseParser.StartEndReversed={0}-{1}\u3067\u306f\u306a\u3044\u3067\u3059\u304b? -BaseParser.MustBePositive=\u9593\u9694\u306f\u6b63\u3067\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093\u304c\u3001{0}\u306b\u306a\u3063\u3066\u3044\u307e\u3059 -BaseParser.OutOfRange={0}\u306f\u4e0d\u6b63\u306a\u5024\u3067\u3059\u3002{1}\u304b\u3089{2}\u307e\u3067\u306e\u5024\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044 -CronTab.do_you_really_mean_every_minute_when_you="{0}"\u3068\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c\u3001\u672c\u5f53\u306b"\u6bce\u5206"\u3067\u3088\u308d\u3057\u3044\u3067\u3059\u304b? \u3082\u3057\u304b\u3057\u3066\u3001"{1}"\u3067\u306f\u306a\u3044\u3067\u3059\u304b? +BaseParser.StartEndReversed={0}-{1}ã§ã¯ãªã„ã§ã™ã‹? +BaseParser.MustBePositive=é–“éš”ã¯æ­£ã§ãªãã¦ã¯ãªã‚Šã¾ã›ã‚“ãŒã€{0}ã«ãªã£ã¦ã„ã¾ã™ +BaseParser.OutOfRange={0}ã¯ä¸æ­£ãªå€¤ã§ã™ã€‚{1}ã‹ã‚‰{2}ã¾ã§ã®å€¤ã‚’指定ã—ã¦ãã ã•ã„ +CronTab.do_you_really_mean_every_minute_when_you="{0}"ã¨è¨­å®šã—ã¦ã„ã¾ã™ãŒã€æœ¬å½“ã«"毎分"ã§ã‚ˆã‚ã—ã„ã§ã™ã‹? ã‚‚ã—ã‹ã—ã¦ã€"{1}"ã§ã¯ãªã„ã§ã™ã‹? CronTab.short_cycles_in_the_day_of_month_field_w=\ Short cycles in the day-of-month field will behave oddly near the end of a month -CronTab.spread_load_evenly_by_using_rather_than_="{1}"\u3088\u308a\u3082\u3001"{0}"\u3092\u4f7f\u7528\u3057\u3066\u9593\u9694\u3092\u8a2d\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002 -CronTabList.InvalidInput=\u4e0d\u6b63\u306a\u5165\u529b: "{0}": {1} +CronTab.spread_load_evenly_by_using_rather_than_="{1}"よりもã€"{0}"を使用ã—ã¦é–“隔を設定ã—ã¦ãã ã•ã„。 +CronTabList.InvalidInput=ä¸æ­£ãªå…¥åŠ›: "{0}": {1} diff --git a/core/src/main/resources/hudson/scheduler/Messages_pt_BR.properties b/core/src/main/resources/hudson/scheduler/Messages_pt_BR.properties index 501c4a73364b..a57c34dca7ee 100644 --- a/core/src/main/resources/hudson/scheduler/Messages_pt_BR.properties +++ b/core/src/main/resources/hudson/scheduler/Messages_pt_BR.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -BaseParser.StartEndReversed=Voc\u00ea quer dizer {0}-{1}? +BaseParser.StartEndReversed=Você quer dizer {0}-{1}? BaseParser.MustBePositive=passo deve ser positivo, mas foi encontrado {0} -BaseParser.OutOfRange={0} \u00c9 um valor inv\u00e1lido. Deve estar entre {1} e {2} -CronTabList.InvalidInput=Entrada inv\u00e1lida: "{0}": {1} +BaseParser.OutOfRange={0} É um valor inválido. Deve estar entre {1} e {2} +CronTabList.InvalidInput=Entrada inválida: "{0}": {1} # Do you really mean "every minute" when you say "{0}"? Perhaps you meant "{1}" to poll once per hour -CronTab.do_you_really_mean_every_minute_when_you=Voc\u00ea realmente quis dizer "a todo minuto" quando diz "{0}"? Talvez voc\u00ea quisesse dizer "{1}" para verificar uma vez por hora +CronTab.do_you_really_mean_every_minute_when_you=Você realmente quis dizer "a todo minuto" quando diz "{0}"? Talvez você quisesse dizer "{1}" para verificar uma vez por hora # Short cycles in the day-of-month field will behave oddly near the end of a month -CronTab.short_cycles_in_the_day_of_month_field_w=Ciclos curtos no campo dia do m\u00eas v\u00e3o ser comportar estranhamente pr\u00f3ximo ao fim do m\u00eas -# Spread load evenly by using \u2018{0}\u2019 rather than \u2018{1}\u2019 -CronTab.spread_load_evenly_by_using_rather_than_=Distribua a carga uniformemente usando \u2018{0}\u2019 ao inv\u00e9s de \u2018{1}\u2019 +CronTab.short_cycles_in_the_day_of_month_field_w=Ciclos curtos no campo dia do mês vão ser comportar estranhamente próximo ao fim do mês +# Spread load evenly by using ‘{0}’ rather than ‘{1}’ +CronTab.spread_load_evenly_by_using_rather_than_=Distribua a carga uniformemente usando ‘{0}’ ao invés de ‘{1}’ diff --git a/core/src/main/resources/hudson/scheduler/Messages_ru.properties b/core/src/main/resources/hudson/scheduler/Messages_ru.properties index 34e385597dd8..f1f16f5fa3f0 100644 --- a/core/src/main/resources/hudson/scheduler/Messages_ru.properties +++ b/core/src/main/resources/hudson/scheduler/Messages_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -BaseParser.StartEndReversed=\u0412\u044b \u0438\u043c\u0435\u043b\u0438 \u0432 \u0432\u0438\u0434\u0443 {0}-{1}? -BaseParser.MustBePositive=\u0448\u0430\u0433 \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u043f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c, \u043d\u043e \u044f \u0432\u0438\u0436\u0443 {0} -BaseParser.OutOfRange={0} \u043d\u0435\u0432\u0435\u0440\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435. \u0414\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 {1} \u0438 {2} -CronTabList.InvalidInput=\u041d\u0435\u0432\u0435\u0440\u043d\u043e \u0432\u0432\u0435\u0434\u0435\u043d\u043e \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435: "{0}": {1} +BaseParser.StartEndReversed=Ð’Ñ‹ имели в виду {0}-{1}? +BaseParser.MustBePositive=шаг должен быть положительным, но Ñ Ð²Ð¸Ð¶Ñƒ {0} +BaseParser.OutOfRange={0} неверное значение. Должно быть в пределах {1} и {2} +CronTabList.InvalidInput=Ðеверно введено значение: "{0}": {1} diff --git a/core/src/main/resources/hudson/scheduler/Messages_sr.properties b/core/src/main/resources/hudson/scheduler/Messages_sr.properties index 12bda89edf0e..8d36d03d0a3a 100644 --- a/core/src/main/resources/hudson/scheduler/Messages_sr.properties +++ b/core/src/main/resources/hudson/scheduler/Messages_sr.properties @@ -1,9 +1,9 @@ # This file is under the MIT License by authors -BaseParser.StartEndReversed=\u0414\u0430 \u043B\u0438\u0441\u0442\u0435 \u0438\u043C\u0430\u043B\u0438 \u0443 \u0432\u0438\u0434\u0443 {0}-{1}? -BaseParser.MustBePositive=\u041A\u043E\u0440\u0430\u043A \u043C\u043E\u0440\u0430 \u0431\u0438\u0442\u0438 \u043F\u043E\u0437\u0438\u0442\u0438\u0432\u0430\u043D \u0431\u0440\u043E\u0458, \u0430 \u043D\u0435 {0} -CronTab.do_you_really_mean_every_minute_when_you=\u0414\u0430\u043B\u0438 \u0437\u0430\u0438\u0441\u0442\u0430 \u043C\u0438\u0441\u043B\u0438\u0442\u0435 "\u0441\u0432\u0430\u043A\u0438 \u043C\u0438\u043D\u0443\u0442"? \u041C\u043E\u0436\u0434\u0430 \u0441\u0442\u0435 \u043D\u0430\u043C\u0435\u0440\u0430\u0432\u0430\u043B\u0438 "{1}" - \u0458\u0435\u0434\u043D\u043E\u043C \u0441\u0432\u0430\u043A\u0438 \u0441\u0430\u0442. -BaseParser.OutOfRange={0} \u0458\u0435 \u043F\u043E\u0433\u0440\u0435\u0448\u043D\u0430 \u0432\u0440\u0435\u0434\u043D\u043E\u0441\u0442. \u0422\u0440\u0435\u0431\u0430\u043B\u043E \u0431\u0438 \u0431\u0438\u0442\u0438 \u0438\u0437\u043C\u0435\u0452\u0443 {1} \u0438 {2} -CronTab.short_cycles_in_the_day_of_month_field_w=\u041A\u0440\u0430\u0442\u043A\u0438 \u0446\u0438\u043A\u043B\u0443\u0441\u0438 \u043F\u043E\u0441\u0442\u0430\u0432\u0459\u0435\u043D\u0438 \u0443 \u043F\u043E\u0459\u0443 "\u0434\u0430\u043D \u0443 \u043C\u0435\u0441\u0435\u0446\u0443" \u045B\u0435 \u0441\u0435 \u0447\u0443\u0434\u043D\u043E \u043F\u043E\u043D\u0430\u0448\u0430\u0442\u0438 \u043D\u0430 \u043A\u0440\u0430\u0458\u0443 \u043C\u0435\u0441\u0435\u0446\u0430 -CronTab.spread_load_evenly_by_using_rather_than_=\u0420\u0430\u0441\u043F\u043E\u0434\u0435\u043B\u0438 \u0442\u0435\u0440\u0435\u0442 \u043F\u043E\u0434\u0458\u0435\u0434\u043D\u0430\u043A\u043E \u043F\u043E\u043C\u043E\u045B\u0443 "{0}" \u0430 \u043D\u0435 "{1}" -CronTabList.InvalidInput=\u041D\u0435\u0438\u0441\u043F\u0440\u0430\u0432\u0430\u043D \u0443\u043D\u043E\u0441: "{0}": {1} +BaseParser.StartEndReversed=Да лиÑте имали у виду {0}-{1}? +BaseParser.MustBePositive=Корак мора бити позитиван број, а не {0} +CronTab.do_you_really_mean_every_minute_when_you=Дали заиÑта миÑлите "Ñваки минут"? Можда Ñте намеравали "{1}" - једном Ñваки Ñат. +BaseParser.OutOfRange={0} је погрешна вредноÑÑ‚. Требало би бити између {1} и {2} +CronTab.short_cycles_in_the_day_of_month_field_w=Кратки циклуÑи поÑтављени у пољу "дан у меÑецу" ће Ñе чудно понашати на крају меÑеца +CronTab.spread_load_evenly_by_using_rather_than_=РаÑподели терет подједнако помоћу "{0}" а не "{1}" +CronTabList.InvalidInput=ÐеиÑправан уноÑ: "{0}": {1} diff --git a/core/src/main/resources/hudson/scheduler/Messages_tr.properties b/core/src/main/resources/hudson/scheduler/Messages_tr.properties index 70f795debf30..dd2dd9818b52 100644 --- a/core/src/main/resources/hudson/scheduler/Messages_tr.properties +++ b/core/src/main/resources/hudson/scheduler/Messages_tr.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. BaseParser.StartEndReversed=Bunu mu demek istediniz : {0}-{1}? -BaseParser.MustBePositive=ad\u0131m\u0131n pozitif olmas\u0131 laz\u0131m, ama {0} bulundu -BaseParser.OutOfRange={0} ge\u00e7ersiz bir de\u011fer. {1} ile {2} aras\u0131\u0131nda olmal\u0131. -CronTabList.InvalidInput=Ge\u00e7ersiz de\u011fer: "{0}": {1} +BaseParser.MustBePositive=adımın pozitif olması lazım, ama {0} bulundu +BaseParser.OutOfRange={0} geçersiz bir deÄŸer. {1} ile {2} arasıında olmalı. +CronTabList.InvalidInput=Geçersiz deÄŸer: "{0}": {1} diff --git a/core/src/main/resources/hudson/scheduler/Messages_zh_TW.properties b/core/src/main/resources/hudson/scheduler/Messages_zh_TW.properties index 2ce701b01321..956126c8ddec 100644 --- a/core/src/main/resources/hudson/scheduler/Messages_zh_TW.properties +++ b/core/src/main/resources/hudson/scheduler/Messages_zh_TW.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -BaseParser.StartEndReversed=\u60a8\u662f\u6307 {0}-{1}? -BaseParser.MustBePositive=\u9593\u9694\u503c\u5fc5\u9808\u662f\u6574\u6578\uff0c\u4e0d\u904e\u60a8\u8f38\u5165 {0} -BaseParser.OutOfRange={0} \u7121\u6548\u3002\u5fc5\u9808\u4ecb\u65bc {1} \u8ddf {2} \u4e4b\u9593 +BaseParser.StartEndReversed=您是指 {0}-{1}? +BaseParser.MustBePositive=間隔值必須是整數,ä¸éŽæ‚¨è¼¸å…¥ {0} +BaseParser.OutOfRange={0} 無效。必須介於 {1} è·Ÿ {2} 之間 CronTab.do_you_really_mean_every_minute_when_you=\ - \u60a8\u78ba\u5b9a\u8981\u4f7f\u7528 "{0}" \u8a2d\u5b9a\u6210\u300c\u6bcf\u4e00\u5206\u9418\u300d? \u9084\u662f\u60a8\u5fc3\u88e1\u7684\u5176\u5be6\u662f "{1}" -CronTabList.InvalidInput=\u8f38\u5165\u7121\u6548: "{0}": {1} + 您確定è¦ä½¿ç”¨ "{0}" 設定æˆã€Œæ¯ä¸€åˆ†é˜ã€? 還是您心裡的其實是 "{1}" +CronTabList.InvalidInput=輸入無效: "{0}": {1} diff --git a/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_bg.properties b/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_bg.properties index e3deadebc30d..6aef75b14a51 100644 --- a/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_bg.properties +++ b/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Tagging\ is\ in\ progress\:=\ - \u0415\u0442\u0438\u043a\u0435\u0442\u0438\u0442\u0435 \u0441\u0435 \u043f\u043e\u0441\u0442\u0430\u0432\u044f\u0442 \u0432 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 + Етикетите Ñе поÑтавÑÑ‚ в момента diff --git a/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_it.properties b/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_it.properties index 87a9b0433a77..2e20a61e4e42 100644 --- a/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_it.properties +++ b/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_ja.properties b/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_ja.properties index f9e9ae3c4dd0..5d2eb514eac9 100644 --- a/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_ja.properties +++ b/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Tagging\ is\ in\ progress\:=\u30bf\u30b0\u8a2d\u5b9a\u4e2d +Tagging\ is\ in\ progress\:=タグ設定中 diff --git a/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_pt_BR.properties b/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_pt_BR.properties index e7b34a7191a4..afad1d183303 100644 --- a/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_pt_BR.properties +++ b/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Tagging\ is\ in\ progress\:=Marca\u00e7\u00e3o est\u00e1 em progresso: +Tagging\ is\ in\ progress\:=Marcação está em progresso: diff --git a/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_ru.properties b/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_ru.properties index e1df1d0264fe..002fbf9ca5e3 100644 --- a/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_ru.properties +++ b/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Tagging\ is\ in\ progress\:=\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043c\u0435\u0442\u043e\u043a \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435: +Tagging\ is\ in\ progress\:=УÑтановка меток в процеÑÑе: diff --git a/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_sr.properties b/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_sr.properties index 976cb8df3347..f637b6b2b6aa 100644 --- a/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_sr.properties +++ b/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Tagging\ is\ in\ progress\:=\u041E\u0437\u043D\u0430\u0447\u0430\u0432\u0430\u045A\u0435 \u0458\u0435 \u0443 \u0442\u043E\u043A\u0443 +Tagging\ is\ in\ progress\:=Означавање је у току diff --git a/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_tr.properties b/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_tr.properties index dc0b26f8c5cf..aefefad55cb6 100644 --- a/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_tr.properties +++ b/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Tagging\ is\ in\ progress\:=Tag''leme i\u015flemi devam ediyor +Tagging\ is\ in\ progress\:=Tag''leme iÅŸlemi devam ediyor diff --git a/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_zh_TW.properties b/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_zh_TW.properties index 7d457c78f32d..0e6a8323f9bd 100644 --- a/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_zh_TW.properties +++ b/core/src/main/resources/hudson/scm/AbstractScmTagAction/inProgress_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Tagging\ is\ in\ progress\:=\u65b0\u589e Tag \u4e2d: +Tagging\ is\ in\ progress\:=新增 Tag 中: diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_bg.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_bg.properties index 42d6c5ae603f..fab9013ac52e 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_bg.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. No\ changes.=\ - \u0411\u0435\u0437 \u043f\u0440\u043e\u043c\u0435\u043d\u0438 + Без промени diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_cs.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_cs.properties index 45fd9b307b4c..cfdc6b8fa1e2 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_cs.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_cs.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -No\ changes.=\u017D\u00E1dn\u00E9 zm\u011Bny. +No\ changes.=Žádné zmÄ›ny. diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_da.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_da.properties index 8059c411f9ba..ad457fb1c9d9 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_da.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ changes.=Ingen \u00e6ndringer. +No\ changes.=Ingen ændringer. diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_de.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_de.properties index 607c53d389fa..65ccb7193f19 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_de.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ changes.=Keine Änderungen. +No\ changes.=Keine Änderungen. diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_he.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_he.properties index 22d795f1d095..edea4acf7f61 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_he.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -No\ changes.=\u05D0\u05D9\u05DF \u05E9\u05D9\u05E0\u05D5\u05D9\u05D9\u05DD +No\ changes.=×ין ×©×™× ×•×™×™× diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_hu.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_hu.properties index ba87a6ca6251..5681ae7bf45d 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_hu.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ changes.=Nincs v\u00E1ltoz\u00E1s +No\ changes.=Nincs változás diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_it.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_it.properties index 7a8bf2c778bc..213023e61a97 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_it.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ja.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ja.properties index 66af0028a3ac..81ce51ab5af4 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ja.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ changes.=\u5909\u66f4\u70b9\u306f\u3042\u308a\u307e\u305b\u3093\u3002 +No\ changes.=変更点ã¯ã‚ã‚Šã¾ã›ã‚“。 diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ko.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ko.properties index c7d75be8d8f8..b71aeb982c95 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ko.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ changes.=\uBCC0\uACBD\uC0AC\uD56D \uC5C6\uC74C. +No\ changes.=변경사항 ì—†ìŒ. diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_lt.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_lt.properties index 567b02c88006..3a97712e4c53 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_lt.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_lt.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -No\ changes.=N\u0117ra pakeitim\u0173. +No\ changes.=NÄ—ra pakeitimų. diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_lv.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_lv.properties index 073017d1286f..911ed7a0ff3c 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_lv.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ changes.=Izmai\u0146u nav. +No\ changes.=Izmaiņu nav. diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_pt_BR.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_pt_BR.properties index d817edce73e6..e354d64778ac 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_pt_BR.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ changes.= Sem mudan\u00e7as. +No\ changes.= Sem mudanças. diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_pt_PT.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_pt_PT.properties index d6277c7cde0f..d79f53a187a4 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_pt_PT.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_pt_PT.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -No\ changes.=Sem altera\u00E7\u00F5es. +No\ changes.=Sem alterações. diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ro.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ro.properties index 492a82314876..c37646e01d8f 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ro.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ro.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -No\ changes.=F\u0103r\u0103 schimb\u0103ri. +No\ changes.=Fără schimbări. diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ru.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ru.properties index b518bd231487..1131a65ab9bc 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ru.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ changes.=\u041d\u0435\u0442 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439. +No\ changes.=Ðет изменений. diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sr.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sr.properties index 38f676ba23dd..6416b7c345e7 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sr.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -No\ changes.=\u041D\u0435\u043C\u0430 \u043F\u0440\u043E\u043C\u0435\u043D\u0430. +No\ changes.=Ðема промена. diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sv_SE.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sv_SE.properties index e60396090274..8e76f7d9875f 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sv_SE.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sv_SE.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -No\ changes.=Inga \u00E4ndringar. +No\ changes.=Inga ändringar. diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_tr.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_tr.properties index 13ff5647f76a..8b498dcf5cc6 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_tr.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ changes.=Herhangi bir de\u011fi\u015fiklik yok. +No\ changes.=Herhangi bir deÄŸiÅŸiklik yok. diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_uk.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_uk.properties index 10987e762fbf..b03d4019e0c1 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_uk.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ changes.=\u0417\u043C\u0456\u043D \u043D\u0435\u043C\u0430\u0454. +No\ changes.=Змін немає. diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_zh_TW.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_zh_TW.properties index 636afd06e2ed..f1ff4a657cd3 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_zh_TW.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ changes.=\u6c92\u6709\u8b8a\u66f4\u3002 +No\ changes.=沒有變更。 diff --git a/core/src/main/resources/hudson/scm/Messages_bg.properties b/core/src/main/resources/hudson/scm/Messages_bg.properties index e4e584506005..4c58807e4bb2 100644 --- a/core/src/main/resources/hudson/scm/Messages_bg.properties +++ b/core/src/main/resources/hudson/scm/Messages_bg.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. NullSCM.DisplayName=\ - \u041d\u044f\u043c\u0430 + ÐÑма SCM.Permissions.Title=\ - \u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u0437\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435 + СиÑтема за управление на верÑиите SCM.TagPermission.Description=\ - \u0422\u043e\u0432\u0430 \u0434\u0430\u0432\u0430 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \u0434\u0430 \u0441\u0435 \u0441\u044a\u0437\u0434\u0430\u0432\u0430 \u043d\u043e\u0432 \u0435\u0442\u0438\u043a\u0435\u0442 \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430 \u0437\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b \u043d\u0430\ - \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435 \u043f\u0440\u0438 \u0432\u0441\u044f\u043a\u043e \u043d\u043e\u0432\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435. + Това дава възможноÑÑ‚ да Ñе Ñъздава нов етикет в ÑиÑтемата за контрол на\ + верÑиите при вÑÑко ново изграждане. diff --git a/core/src/main/resources/hudson/scm/Messages_fr.properties b/core/src/main/resources/hudson/scm/Messages_fr.properties index 8f3f855a75ef..8bc2fca19651 100644 --- a/core/src/main/resources/hudson/scm/Messages_fr.properties +++ b/core/src/main/resources/hudson/scm/Messages_fr.properties @@ -23,5 +23,5 @@ NullSCM.DisplayName=Aucune SCM.Permissions.Title=Gestion de version SCM.TagPermission.Description=\ - Cette option permet aux utilisateurs de cr\u00C3\u00A9er un nouveau tag dans l''outil de gestion de code source \ - pour un build donn\u00C3\u00A9. + Cette option permet aux utilisateurs de créer un nouveau tag dans l''outil de gestion de code source \ + pour un build donné. diff --git a/core/src/main/resources/hudson/scm/Messages_it.properties b/core/src/main/resources/hudson/scm/Messages_it.properties index f6b0ed205a23..d4823b434cd4 100644 --- a/core/src/main/resources/hudson/scm/Messages_it.properties +++ b/core/src/main/resources/hudson/scm/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/scm/Messages_ja.properties b/core/src/main/resources/hudson/scm/Messages_ja.properties index b1498b324fe0..a94c018f2c00 100644 --- a/core/src/main/resources/hudson/scm/Messages_ja.properties +++ b/core/src/main/resources/hudson/scm/Messages_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NullSCM.DisplayName=\u306A\u3057 +NullSCM.DisplayName=ãªã— SCM.Permissions.Title=SCM SCM.TagPermission.Description=\ - \u3053\u306E\u30D1\u30FC\u30DF\u30C3\u30B7\u30E7\u30F3\u306F\u3001\u30D3\u30EB\u30C9\u304C\u4F7F\u7528\u3059\u308B\u30BD\u30FC\u30B9\u30B3\u30FC\u30C9\u30EA\u30DD\u30B8\u30C8\u30EA\u3078\u306E\u65B0\u898F\u30BF\u30B0\u306E\u4F5C\u6210\u3092\u8A31\u53EF\u3057\u307E\u3059\u3002 + ã“ã®ãƒ‘ーミッションã¯ã€ãƒ“ルドãŒä½¿ç”¨ã™ã‚‹ã‚½ãƒ¼ã‚¹ã‚³ãƒ¼ãƒ‰ãƒªãƒã‚¸ãƒˆãƒªã¸ã®æ–°è¦ã‚¿ã‚°ã®ä½œæˆã‚’許å¯ã—ã¾ã™ã€‚ diff --git a/core/src/main/resources/hudson/scm/Messages_pl.properties b/core/src/main/resources/hudson/scm/Messages_pl.properties index a602a90f2e16..0ed7cf39160e 100644 --- a/core/src/main/resources/hudson/scm/Messages_pl.properties +++ b/core/src/main/resources/hudson/scm/Messages_pl.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. NullSCM.DisplayName=Brak SCM.Permissions.Title=Repozytorium kodu -SCM.TagPermission.Description=To uprawnienie pozwala u\u017Cytkownikom tworzy\u0107 w repozytorium kodu etykiety dla danego budowania. +SCM.TagPermission.Description=To uprawnienie pozwala użytkownikom tworzyć w repozytorium kodu etykiety dla danego budowania. diff --git a/core/src/main/resources/hudson/scm/Messages_pt_BR.properties b/core/src/main/resources/hudson/scm/Messages_pt_BR.properties index fbf89a9023df..87736f0741e7 100644 --- a/core/src/main/resources/hudson/scm/Messages_pt_BR.properties +++ b/core/src/main/resources/hudson/scm/Messages_pt_BR.properties @@ -23,5 +23,5 @@ NullSCM.DisplayName=Nenhum SCM.Permissions.Title=SCM SCM.TagPermission.Description=\ - Permite aos usu\u00E1rios criarem etiquetas no reposit\u00F3rio do c\u00F3digo-fonte para uma dada constru\u00E7\u00E3o. + Permite aos usuários criarem etiquetas no repositório do código-fonte para uma dada construção. diff --git a/core/src/main/resources/hudson/scm/Messages_ru.properties b/core/src/main/resources/hudson/scm/Messages_ru.properties index a1ba94059b9e..4c1ee49523bf 100644 --- a/core/src/main/resources/hudson/scm/Messages_ru.properties +++ b/core/src/main/resources/hudson/scm/Messages_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NullSCM.DisplayName=\u041D\u0435\u0442 -SCM.Permissions.Title=\u0421\u0438\u0441\u0442\u0435\u043C\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044F \u0432\u0435\u0440\u0441\u0438\u0439 +NullSCM.DisplayName=Ðет +SCM.Permissions.Title=СиÑтема ÐºÐ¾Ð½Ñ‚Ñ€Ð¾Ð»Ñ Ð²ÐµÑ€Ñий diff --git a/core/src/main/resources/hudson/scm/Messages_sr.properties b/core/src/main/resources/hudson/scm/Messages_sr.properties index d979f215c918..e6b7b261aaf7 100644 --- a/core/src/main/resources/hudson/scm/Messages_sr.properties +++ b/core/src/main/resources/hudson/scm/Messages_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -NullSCM.DisplayName=\u041D\u0435\u043C\u0430 -SCM.Permissions.Title=\u0421\u0438\u0441\u0442\u0435\u043C \u0437\u0430 \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 \u0438\u0437\u0432\u043E\u0440\u043D\u043E\u043C \u043A\u043E\u0434\u0443 -SCM.TagPermission.Description=\u0414\u0430\u0458\u0435 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438\u043C\u0430 \u043F\u0440\u0432\u043E \u0434\u0430 \u043A\u0440\u0435\u0438\u0440\u0430\u0458\u0443 \u043D\u043E\u0432\u0443 \u043E\u0437\u043D\u0430\u043A\u0443 \u0443 \u0441\u043F\u0440\u0435\u043C\u0438\u0448\u0442\u0443 \u0434\u0430\u0442\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435. +NullSCM.DisplayName=Ðема +SCM.Permissions.Title=СиÑтем за управљање изворном коду +SCM.TagPermission.Description=Даје кориÑницима прво да креирају нову ознаку у Ñпремишту дате изградње. diff --git a/core/src/main/resources/hudson/scm/Messages_tr.properties b/core/src/main/resources/hudson/scm/Messages_tr.properties index 0b389380ace6..52a7b81f3c8f 100644 --- a/core/src/main/resources/hudson/scm/Messages_tr.properties +++ b/core/src/main/resources/hudson/scm/Messages_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NullSCM.DisplayName=Hi\u0231birisi +NullSCM.DisplayName=Hiȱbirisi SCM.Permissions.Title=SCM diff --git a/core/src/main/resources/hudson/scm/Messages_zh_TW.properties b/core/src/main/resources/hudson/scm/Messages_zh_TW.properties index bbda1a14a557..7fb2445e44f4 100644 --- a/core/src/main/resources/hudson/scm/Messages_zh_TW.properties +++ b/core/src/main/resources/hudson/scm/Messages_zh_TW.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NullSCM.DisplayName=\u7121 +NullSCM.DisplayName=ç„¡ SCM.Permissions.Title=SCM SCM.TagPermission.Description=\ - \u9019\u500b\u6b0a\u9650\u5141\u8a31\u4f7f\u7528\u8005\u5728\u539f\u59cb\u78bc\u5132\u5b58\u5eab\u88e1\u5c0d\u6307\u5b9a\u7684\u5efa\u7f6e\u5efa\u7acb\u65b0 Tag\u3002 + 這個權é™å…許使用者在原始碼儲存庫裡å°æŒ‡å®šçš„建置建立新 Tag。 diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_bg.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_bg.properties index 8737f25dd5be..49d0d68fa0c4 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_bg.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. No\ changes\ in\ any\ of\ the\ builds.=\ - \u041d\u044f\u043c\u0430 \u043f\u0440\u043e\u043c\u0435\u043d\u0438 \u0432 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f\u0442\u0430. + ÐÑма промени в изгражданиÑта. detail=\ - \u0434\u0435\u0442\u0430\u0439\u043b\u0438 + детайли No\ builds.=\ - \u041d\u044f\u043c\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f + ÐÑма Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_da.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_da.properties index 1df734da1d10..17bef16fbae6 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_da.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_da.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ changes\ in\ any\ of\ the\ builds.=Ingen \u00e6ndringer i nogen byg. +No\ changes\ in\ any\ of\ the\ builds.=Ingen ændringer i nogen byg. detail=detaljer No\ builds.=Ingen byg. diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_de.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_de.properties index 32b293899263..0bd067ada379 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_de.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_de.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. No\ builds.=Keine Builds. -No\ changes\ in\ any\ of\ the\ builds.=Keine Änderungen in den Builds. +No\ changes\ in\ any\ of\ the\ builds.=Keine Änderungen in den Builds. detail=Details diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_el.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_el.properties index ddc8a9aca649..7143b809665d 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_el.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_el.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -detail=\u039B\u03B5\u03C0\u03C4\u03BF\u03BC\u03AD\u03C1\u03B9\u03B5\u03C2 +detail=ΛεπτομέÏιες diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_es.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_es.properties index 7592b31e52ed..bf2e1e68c5c8 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_es.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_es.properties @@ -22,4 +22,4 @@ No\ builds.=Sin ejecuciones. detail=detalles -No\ changes\ in\ any\ of\ the\ builds.=No hay nuevos cambios en ninguna ejecución. +No\ changes\ in\ any\ of\ the\ builds.=No hay nuevos cambios en ninguna ejecución. diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_et.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_et.properties index 23a67c31cb7d..65d298d610a6 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_et.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_et.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -No\ changes\ in\ any\ of\ the\ builds.=\u00DCheski bildis pole \u00FChtki muudatust. +No\ changes\ in\ any\ of\ the\ builds.=Ãœheski bildis pole ühtki muudatust. diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_fi.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_fi.properties index 908711d3d7b0..b6fb4fb9526a 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_fi.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_fi.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ changes\ in\ any\ of\ the\ builds.=Ei muutoksia miss\u00E4\u00E4n k\u00E4\u00E4nn\u00F6ksist\u00E4. +No\ changes\ in\ any\ of\ the\ builds.=Ei muutoksia missään käännöksistä. detail=yksityiskohdat diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_fr.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_fr.properties index c92281930409..9860a29d2365 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_fr.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_fr.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. No\ changes\ in\ any\ of\ the\ builds.=Aucun changement dans les builds. -detail=détail +detail=détail No\ builds.=Aucun build. diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_hu.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_hu.properties index 57096647158e..9e3c86cea1df 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_hu.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_hu.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -No\ builds.=Nem folyik \u00E9p\u00EDt\u00E9s -detail=r\u00E9szletek +No\ builds.=Nem folyik építés +detail=részletek diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_it.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_it.properties index 6a4dc2141390..0f896a675428 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_it.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_ja.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_ja.properties index e9c8a5568f1d..79922293f3b9 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_ja.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ builds.=\u30d3\u30eb\u30c9\u3057\u3066\u3044\u307e\u305b\u3093\u3002 -No\ changes\ in\ any\ of\ the\ builds.=\u4eca\u307e\u3067\u306e\u30d3\u30eb\u30c9\u3067\u5909\u66f4\u70b9\u306f\u3042\u308a\u307e\u305b\u3093\u3002 -detail=\u8a73\u7d30 +No\ builds.=ビルドã—ã¦ã„ã¾ã›ã‚“。 +No\ changes\ in\ any\ of\ the\ builds.=今ã¾ã§ã®ãƒ“ルドã§å¤‰æ›´ç‚¹ã¯ã‚ã‚Šã¾ã›ã‚“。 +detail=詳細 diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_ko.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_ko.properties index 277288f21be6..5d0a88f029fe 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_ko.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_ko.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ changes\ in\ any\ of\ the\ builds.=\uBAA8\uB4E0 \uBE4C\uB4DC\uC5D0 \uBCC0\uACBD \uC0AC\uD56D\uC774 \uC5C6\uC2B5\uB2C8\uB2E4 -detail=\uC138\uBD80\uC0AC\uD56D +No\ changes\ in\ any\ of\ the\ builds.=모든 ë¹Œë“œì— ë³€ê²½ ì‚¬í•­ì´ ì—†ìŠµë‹ˆë‹¤ +detail=세부사항 diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_lt.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_lt.properties index 6f72e8a5caa1..76203bb4bac0 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_lt.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_lt.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -No\ changes\ in\ any\ of\ the\ builds.=Joki\u0173 pakeitimu neivienoje konstrukcijoje. +No\ changes\ in\ any\ of\ the\ builds.=Jokių pakeitimu neivienoje konstrukcijoje. diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_lv.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_lv.properties index 273852ae5b29..da2248f0c185 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_lv.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_lv.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ builds.=Nav neviena b\u016Bv\u0113juma. -No\ changes\ in\ any\ of\ the\ builds.=Nevien\u0101 no b\u016Bv\u0113jumiem izmai\u0146u nav. -detail=detaliz\u0113ti +No\ builds.=Nav neviena bÅ«vÄ“juma. +No\ changes\ in\ any\ of\ the\ builds.=NevienÄ no bÅ«vÄ“jumiem izmaiņu nav. +detail=detalizÄ“ti diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_pl.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_pl.properties index f7602b033e91..823b437119ec 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_pl.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_pl.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. No\ changes\ in\ any\ of\ the\ builds.=Brak zmian w trakcie procesu uruchamiania zadania. -detail=szczeg\u00F3\u0142y +detail=szczegóły diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_pt_BR.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_pt_BR.properties index d1fcb4fbc589..f80a7798f30f 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_pt_BR.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_pt_BR.properties @@ -21,6 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ builds.=Sem constru\u00E7\u00F5es. -No\ changes\ in\ any\ of\ the\ builds.=Sem mudan\u00E7as em qualquer um das constru\u00E7\u00F5es. +No\ builds.=Sem construções. +No\ changes\ in\ any\ of\ the\ builds.=Sem mudanças em qualquer um das construções. detail=detalhes diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_ru.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_ru.properties index 614507ad4ab5..e74721ba422a 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_ru.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ builds.=\u041d\u0435\u0442 \u0441\u0431\u043e\u0440\u043e\u043a. -No\ changes\ in\ any\ of\ the\ builds.=\u041d\u0435\u0442 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u043d\u0438 \u0432 \u043e\u0434\u043d\u043e\u0439 \u0441\u0431\u043e\u0440\u043a\u0435. -detail=\u043F\u043E\u0434\u0440\u043E\u0431\u043D\u0435\u0435 +No\ builds.=Ðет Ñборок. +No\ changes\ in\ any\ of\ the\ builds.=Ðет изменений ни в одной Ñборке. +detail=подробнее diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_sk.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_sk.properties index e2206d3ccc78..cf6c90181901 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_sk.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_sk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -No\ changes\ in\ any\ of\ the\ builds.=\u017Diadne zmeny zostaven\u00ED. +No\ changes\ in\ any\ of\ the\ builds.=Žiadne zmeny zostavení. diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_sr.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_sr.properties index 26d67578580e..9a839c4d841b 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_sr.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -detail=\u0434\u0435\u0442\u0430\u0459\u0438 -No\ changes\ in\ any\ of\ the\ builds.=\u041D\u0435\u043C\u0430 \u043F\u0440\u043E\u043C\u0435\u043D\u0430 \u0443 \u0431\u0438\u043B\u043E \u043A\u043E\u0458\u0438\u043C \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430. -No\ builds.=\u041D\u0435\u043C\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430. +detail=детаљи +No\ changes\ in\ any\ of\ the\ builds.=Ðема промена у било којим изградња. +No\ builds.=Ðема изградња. diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_sv_SE.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_sv_SE.properties index 6239be55940f..147715762c2c 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_sv_SE.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_sv_SE.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. No\ builds.=Inga byggen. -No\ changes\ in\ any\ of\ the\ builds.=Inga f\u00F6r\u00E4ndringar i n\u00E5got bygge. +No\ changes\ in\ any\ of\ the\ builds.=Inga förändringar i nÃ¥got bygge. detail=detalj diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_tr.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_tr.properties index bb1ca7b87483..495f90c85fdf 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_tr.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ builds.=Herhangi bir yap\u0131land\u0131rm\a yok. -No\ changes\ in\ any\ of\ the\ builds.=Yap\u0131land\u0131rmalarda hi\u00e7birinde de\u011fi\u015fiklik yok. +No\ builds.=Herhangi bir yapılandırm\a yok. +No\ changes\ in\ any\ of\ the\ builds.=Yapılandırmalarda hiçbirinde deÄŸiÅŸiklik yok. diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_uk.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_uk.properties index 03ad8ef66e3f..a5b153d99df2 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_uk.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -No\ changes\ in\ any\ of\ the\ builds.=\u0411\u0456\u043B\u0434\u0438 \u0431\u0435\u0437 \u0437\u043C\u0456\u043D. +No\ changes\ in\ any\ of\ the\ builds.=Білди без змін. diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_zh_TW.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_zh_TW.properties index 29486fb0ba31..97895acfa048 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_zh_TW.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_zh_TW.properties @@ -21,6 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ builds.=\u6c92\u6709\u5efa\u7f6e\u3002 -detail=\u8a73\u7d30\u8cc7\u6599 -No\ changes\ in\ any\ of\ the\ builds.=\u9019\u6b21\u5efa\u7f6e\u88e1\u6c92\u6709\u4efb\u4f55\u8b8a\u66f4\u3002 +No\ builds.=沒有建置。 +detail=詳細資料 +No\ changes\ in\ any\ of\ the\ builds.=這次建置裡沒有任何變更。 diff --git a/core/src/main/resources/hudson/search/Messages_bg.properties b/core/src/main/resources/hudson/search/Messages_bg.properties index 8022df964b45..756de2af1e8d 100644 --- a/core/src/main/resources/hudson/search/Messages_bg.properties +++ b/core/src/main/resources/hudson/search/Messages_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. UserSearchProperty.DisplayName=\ - \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0442\u044a\u0440\u0441\u0435\u043d\u0435\u0442\u043e + ÐаÑтройки на Ñ‚ÑŠÑ€Ñенето diff --git a/core/src/main/resources/hudson/search/Messages_it.properties b/core/src/main/resources/hudson/search/Messages_it.properties index 080d2bc9e4a1..b16d6c03a73c 100644 --- a/core/src/main/resources/hudson/search/Messages_it.properties +++ b/core/src/main/resources/hudson/search/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/search/Messages_ja.properties b/core/src/main/resources/hudson/search/Messages_ja.properties index 70bf12a4e0ea..b7405c1aa9b2 100644 --- a/core/src/main/resources/hudson/search/Messages_ja.properties +++ b/core/src/main/resources/hudson/search/Messages_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -UserSearchProperty.DisplayName=\u691c\u7d22 +UserSearchProperty.DisplayName=検索 diff --git a/core/src/main/resources/hudson/search/Messages_pt_BR.properties b/core/src/main/resources/hudson/search/Messages_pt_BR.properties index e00c367566fd..2bc0f8543916 100644 --- a/core/src/main/resources/hudson/search/Messages_pt_BR.properties +++ b/core/src/main/resources/hudson/search/Messages_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. # Setting for search -UserSearchProperty.DisplayName=Configura\u00e7\u00e3o para pesquisa +UserSearchProperty.DisplayName=Configuração para pesquisa diff --git a/core/src/main/resources/hudson/search/Messages_sr.properties b/core/src/main/resources/hudson/search/Messages_sr.properties index 7abcdada48f2..fac6c2a5587b 100644 --- a/core/src/main/resources/hudson/search/Messages_sr.properties +++ b/core/src/main/resources/hudson/search/Messages_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -UserSearchProperty.DisplayName=\u041E\u043F\u0446\u0438\u0458\u0435 \u043F\u0440\u0435\u0442\u0440\u0430\u0433\u0435 +UserSearchProperty.DisplayName=Опције претраге diff --git a/core/src/main/resources/hudson/search/Messages_zh_TW.properties b/core/src/main/resources/hudson/search/Messages_zh_TW.properties index a7f6443e3dd0..e074cca49c4e 100644 --- a/core/src/main/resources/hudson/search/Messages_zh_TW.properties +++ b/core/src/main/resources/hudson/search/Messages_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -UserSearchProperty.DisplayName=\u641c\u5c0b\u8a2d\u5b9a +UserSearchProperty.DisplayName=æœå°‹è¨­å®š diff --git a/core/src/main/resources/hudson/search/Search/search-failed_bg.properties b/core/src/main/resources/hudson/search/Search/search-failed_bg.properties index f5f1a7c2c909..65da23b0f7f0 100644 --- a/core/src/main/resources/hudson/search/Search/search-failed_bg.properties +++ b/core/src/main/resources/hudson/search/Search/search-failed_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Search\ for=\ - \u0422\u044a\u0440\u0441\u0435\u043d\u0435 \u043d\u0430 + ТърÑене на Nothing\ seems\ to\ match.=\ - \u041d\u0438\u0449\u043e \u043d\u0435 \u0441\u044a\u0432\u043f\u0430\u0434\u0430. + Ðищо не Ñъвпада. diff --git a/core/src/main/resources/hudson/search/Search/search-failed_fr.properties b/core/src/main/resources/hudson/search/Search/search-failed_fr.properties index 3e6347dca279..18b62ee4c960 100644 --- a/core/src/main/resources/hudson/search/Search/search-failed_fr.properties +++ b/core/src/main/resources/hudson/search/Search/search-failed_fr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Nothing\ seems\ to\ match.=Aucun r\u00E9sultat trouv\u00E9 -Search\ for=R\u00E9sultats de la recherche pour +Nothing\ seems\ to\ match.=Aucun résultat trouvé +Search\ for=Résultats de la recherche pour diff --git a/core/src/main/resources/hudson/search/Search/search-failed_he.properties b/core/src/main/resources/hudson/search/Search/search-failed_he.properties index 82ff0fce684b..7cffbf5b4379 100644 --- a/core/src/main/resources/hudson/search/Search/search-failed_he.properties +++ b/core/src/main/resources/hudson/search/Search/search-failed_he.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Nothing\ seems\ to\ match.=\u05D0\u05D9\u05DF \u05EA\u05D5\u05E6\u05D0\u05D5\u05EA -Search\ for=\u05D7\u05E4\u05E9 +Nothing\ seems\ to\ match.=×ין תוצ×ות +Search\ for=חפש diff --git a/core/src/main/resources/hudson/search/Search/search-failed_it.properties b/core/src/main/resources/hudson/search/Search/search-failed_it.properties index 5a44e05bc778..da820530bd60 100644 --- a/core/src/main/resources/hudson/search/Search/search-failed_it.properties +++ b/core/src/main/resources/hudson/search/Search/search-failed_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/search/Search/search-failed_ja.properties b/core/src/main/resources/hudson/search/Search/search-failed_ja.properties index 7a0d61f439ba..062871a997e4 100644 --- a/core/src/main/resources/hudson/search/Search/search-failed_ja.properties +++ b/core/src/main/resources/hudson/search/Search/search-failed_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Nothing\ seems\ to\ match.=\u5408\u81f4\u3059\u308b\u3082\u306e\u306f\u3042\u308a\u307e\u305b\u3093\u3002 -Search\ for=\u691c\u7d22 +Nothing\ seems\ to\ match.=åˆè‡´ã™ã‚‹ã‚‚ã®ã¯ã‚ã‚Šã¾ã›ã‚“。 +Search\ for=検索 diff --git a/core/src/main/resources/hudson/search/Search/search-failed_lv.properties b/core/src/main/resources/hudson/search/Search/search-failed_lv.properties index 182226664289..8867c420b460 100644 --- a/core/src/main/resources/hudson/search/Search/search-failed_lv.properties +++ b/core/src/main/resources/hudson/search/Search/search-failed_lv.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Nothing\ seems\ to\ match.=Liekas, ka nekas neatbilst mekl\u0113jamajam. -Search\ for=Mekl\u0113t +Nothing\ seems\ to\ match.=Liekas, ka nekas neatbilst meklÄ“jamajam. +Search\ for=MeklÄ“t diff --git a/core/src/main/resources/hudson/search/Search/search-failed_pl.properties b/core/src/main/resources/hudson/search/Search/search-failed_pl.properties index 8a49102d75a0..b829963bbd7f 100644 --- a/core/src/main/resources/hudson/search/Search/search-failed_pl.properties +++ b/core/src/main/resources/hudson/search/Search/search-failed_pl.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Nothing\ seems\ to\ match.=Brak wynik\u00F3w +Nothing\ seems\ to\ match.=Brak wyników diff --git a/core/src/main/resources/hudson/search/Search/search-failed_ru.properties b/core/src/main/resources/hudson/search/Search/search-failed_ru.properties index fb8fdfab73e5..c79363d09bfe 100644 --- a/core/src/main/resources/hudson/search/Search/search-failed_ru.properties +++ b/core/src/main/resources/hudson/search/Search/search-failed_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Nothing\ seems\ to\ match.=\u041D\u0438\u0447\u0435\u0433\u043E \u043F\u043E\u0445\u043E\u0436\u0435\u0433\u043E \u043D\u0435 \u043D\u0430\u0439\u0434\u0435\u043D\u043E -Search\ for=\u041F\u043E\u0438\u0441\u043A +Nothing\ seems\ to\ match.=Ðичего похожего не найдено +Search\ for=ПоиÑк diff --git a/core/src/main/resources/hudson/search/Search/search-failed_sr.properties b/core/src/main/resources/hudson/search/Search/search-failed_sr.properties index 58e74d554313..caf5dbd040ff 100644 --- a/core/src/main/resources/hudson/search/Search/search-failed_sr.properties +++ b/core/src/main/resources/hudson/search/Search/search-failed_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Search\ for=\u041F\u043E\u0442\u0440\u0430\u0436\u0438 -Nothing\ seems\ to\ match.=\u041D\u0435\u043C\u0430 \u0440\u0435\u0437\u0443\u043B\u0442\u0430\u0442\u0430 +Search\ for=Потражи +Nothing\ seems\ to\ match.=Ðема резултата diff --git a/core/src/main/resources/hudson/search/Search/search-failed_sv_SE.properties b/core/src/main/resources/hudson/search/Search/search-failed_sv_SE.properties index 8c19b3ecc1f6..28b6755e45c5 100644 --- a/core/src/main/resources/hudson/search/Search/search-failed_sv_SE.properties +++ b/core/src/main/resources/hudson/search/Search/search-failed_sv_SE.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Nothing\ seems\ to\ match.=Inga tr\u00E4ffar -Search\ for=S\u00F6kte efter +Nothing\ seems\ to\ match.=Inga träffar +Search\ for=Sökte efter diff --git a/core/src/main/resources/hudson/search/Search/search-failed_zh_TW.properties b/core/src/main/resources/hudson/search/Search/search-failed_zh_TW.properties index 22d47f40890e..6abd0ff63c29 100644 --- a/core/src/main/resources/hudson/search/Search/search-failed_zh_TW.properties +++ b/core/src/main/resources/hudson/search/Search/search-failed_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Search\ for=\u641C\u5C0B -Nothing\ seems\ to\ match.=\u627E\u4E0D\u5230\u7B26\u5408\u4FEE\u4EF6\u7684\u5167\u5BB9\u3002 +Search\ for=æœå°‹ +Nothing\ seems\ to\ match.=找ä¸åˆ°ç¬¦åˆä¿®ä»¶çš„內容。 diff --git a/core/src/main/resources/hudson/search/UserSearchProperty/config_bg.properties b/core/src/main/resources/hudson/search/UserSearchProperty/config_bg.properties index 8087fbf228b6..5af0be43dcd8 100644 --- a/core/src/main/resources/hudson/search/UserSearchProperty/config_bg.properties +++ b/core/src/main/resources/hudson/search/UserSearchProperty/config_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Case-sensitivity=\ - \u0420\u0430\u0437\u043b\u0438\u043a\u0430 \u0433\u043b\u0430\u0432\u043d\u0438/\u043c\u0430\u043b\u043a\u0438 + Разлика главни/малки Insensitive\ search\ tool=\ - \u0422\u044a\u0440\u0441\u0435\u043d\u0435 \u0431\u0435\u0437 \u0441\u044a\u043e\u0431\u0440\u0430\u0437\u044f\u0432\u0430\u043d\u0435 \u0433\u043b\u0430\u0432\u043d\u0438/\u043c\u0430\u043b\u043a\u0438 + ТърÑене без ÑъобразÑване главни/малки diff --git a/core/src/main/resources/hudson/search/UserSearchProperty/config_da.properties b/core/src/main/resources/hudson/search/UserSearchProperty/config_da.properties index 12b2434885fb..b200184e8c7f 100644 --- a/core/src/main/resources/hudson/search/UserSearchProperty/config_da.properties +++ b/core/src/main/resources/hudson/search/UserSearchProperty/config_da.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Case-sensitivity=Store/sm\u00E5 bogstaver -Insensitive\ search\ tool=Ignorer forskelle som f\u00F8lge af store/sm\u00E5 bogstaver +Case-sensitivity=Store/smÃ¥ bogstaver +Insensitive\ search\ tool=Ignorer forskelle som følge af store/smÃ¥ bogstaver diff --git a/core/src/main/resources/hudson/search/UserSearchProperty/config_de.properties b/core/src/main/resources/hudson/search/UserSearchProperty/config_de.properties index 13dc0fac0920..b8adf23d4ed1 100644 --- a/core/src/main/resources/hudson/search/UserSearchProperty/config_de.properties +++ b/core/src/main/resources/hudson/search/UserSearchProperty/config_de.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Case-sensitivity=Gro\u00DF-/Kleinschreibung -Insensitive\ search\ tool=Gro\u00DF-/Kleinschreibung beim Suchen nicht beachten +Case-sensitivity=Groß-/Kleinschreibung +Insensitive\ search\ tool=Groß-/Kleinschreibung beim Suchen nicht beachten diff --git a/core/src/main/resources/hudson/search/UserSearchProperty/config_fr.properties b/core/src/main/resources/hudson/search/UserSearchProperty/config_fr.properties index fc9808570aa8..8ebabb63e7dc 100644 --- a/core/src/main/resources/hudson/search/UserSearchProperty/config_fr.properties +++ b/core/src/main/resources/hudson/search/UserSearchProperty/config_fr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Case-sensitivity=Sensibilit\u00E9 \u00E0 la casse +Case-sensitivity=Sensibilité à la casse Insensitive\ search\ tool=Outil de recherche insensible diff --git a/core/src/main/resources/hudson/search/UserSearchProperty/config_it.properties b/core/src/main/resources/hudson/search/UserSearchProperty/config_it.properties index 560cda6164a9..1ca2ac792d1c 100644 --- a/core/src/main/resources/hudson/search/UserSearchProperty/config_it.properties +++ b/core/src/main/resources/hudson/search/UserSearchProperty/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/search/UserSearchProperty/config_ja.properties b/core/src/main/resources/hudson/search/UserSearchProperty/config_ja.properties index 11adeb762c45..49d9f5730dac 100644 --- a/core/src/main/resources/hudson/search/UserSearchProperty/config_ja.properties +++ b/core/src/main/resources/hudson/search/UserSearchProperty/config_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Case-sensitivity=\u5927/\u5c0f\u6587\u5b57\u306e\u533a\u5225 -Insensitive\ search\ tool=\u5927\u6587\u5b57\u3001\u5c0f\u6587\u5b57\u3092\u533a\u5225\u3057\u306a\u3044\u3067\u691c\u7d22 +Case-sensitivity=大/å°æ–‡å­—ã®åŒºåˆ¥ +Insensitive\ search\ tool=大文字ã€å°æ–‡å­—を区別ã—ãªã„ã§æ¤œç´¢ diff --git a/core/src/main/resources/hudson/search/UserSearchProperty/config_pl.properties b/core/src/main/resources/hudson/search/UserSearchProperty/config_pl.properties index 735587317926..11e67e18380e 100644 --- a/core/src/main/resources/hudson/search/UserSearchProperty/config_pl.properties +++ b/core/src/main/resources/hudson/search/UserSearchProperty/config_pl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Case-sensitivity=Wielko\u015B\u0107 liter -Insensitive\ search\ tool=Pomi\u0144 wielko\u015B\u0107 litler +Case-sensitivity=Wielkość liter +Insensitive\ search\ tool=PomiÅ„ wielkość litler diff --git a/core/src/main/resources/hudson/search/UserSearchProperty/config_pt_BR.properties b/core/src/main/resources/hudson/search/UserSearchProperty/config_pt_BR.properties index 72fd781d7dba..864429d9a7dd 100644 --- a/core/src/main/resources/hudson/search/UserSearchProperty/config_pt_BR.properties +++ b/core/src/main/resources/hudson/search/UserSearchProperty/config_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Insensitive\ search\ tool=Ferramenta de busca insens\u00edvel a mai\u00fasculas e min\u00fasculas -Case-sensitivity=Diferenciar mai\u00fasculas e min\u00fasculas +Insensitive\ search\ tool=Ferramenta de busca insensível a maiúsculas e minúsculas +Case-sensitivity=Diferenciar maiúsculas e minúsculas diff --git a/core/src/main/resources/hudson/search/UserSearchProperty/config_ru.properties b/core/src/main/resources/hudson/search/UserSearchProperty/config_ru.properties index dca7b45cc1a7..6a8fb542423e 100644 --- a/core/src/main/resources/hudson/search/UserSearchProperty/config_ru.properties +++ b/core/src/main/resources/hudson/search/UserSearchProperty/config_ru.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Case-sensitivity=\u0427\u0443\u0432\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u043a \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0443 -Insensitive\ search\ tool=\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0440\u0435\u0433\u0438\u0441\u0442\u0440 \u043f\u0440\u0438 \u043f\u043e\u0438\u0441\u043a\u0435 +Case-sensitivity=ЧувÑтвительноÑÑ‚ÑŒ к региÑтру +Insensitive\ search\ tool=Игнорировать региÑÑ‚Ñ€ при поиÑке diff --git a/core/src/main/resources/hudson/search/UserSearchProperty/config_sr.properties b/core/src/main/resources/hudson/search/UserSearchProperty/config_sr.properties index 144ad7dde6a4..6b1b1d64d7b6 100644 --- a/core/src/main/resources/hudson/search/UserSearchProperty/config_sr.properties +++ b/core/src/main/resources/hudson/search/UserSearchProperty/config_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Case-sensitivity=\u041E\u0441\u0435\u0442\u0459\u0438\u0432\u043E \u043D\u0430 \u0432\u0435\u043B\u0438\u043A\u0430 \u0438 \u043C\u0430\u043B\u0430 \u0441\u043B\u043E\u0432\u0430 -Insensitive\ search\ tool=\u0410\u043B\u0430\u0442 \u0437\u0430 \u043F\u0440\u0435\u0442\u0440\u0430\u0433\u0443 \u043D\u0435\u043E\u0441\u0435\u0442\u0459\u0438\u0432 \u043D\u0430 \u0432\u0435\u043B\u0438\u043A\u0430 \u0438 \u043C\u0430\u043B\u0430 \u0441\u043B\u043E\u0432\u0430 +Case-sensitivity=ОÑетљиво на велика и мала Ñлова +Insensitive\ search\ tool=Ðлат за претрагу неоÑетљив на велика и мала Ñлова diff --git a/core/src/main/resources/hudson/search/UserSearchProperty/config_sv_SE.properties b/core/src/main/resources/hudson/search/UserSearchProperty/config_sv_SE.properties index 9b55dc588a3b..e974014fca23 100644 --- a/core/src/main/resources/hudson/search/UserSearchProperty/config_sv_SE.properties +++ b/core/src/main/resources/hudson/search/UserSearchProperty/config_sv_SE.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Case-sensitivity=Skiftl\u00E4gesk\u00E4nslighet -Insensitive\ search\ tool=Skiftl\u00E4gesok\u00E4nsligt s\u00F6kverktyg +Case-sensitivity=Skiftlägeskänslighet +Insensitive\ search\ tool=Skiftlägesokänsligt sökverktyg diff --git a/core/src/main/resources/hudson/search/UserSearchProperty/config_zh_TW.properties b/core/src/main/resources/hudson/search/UserSearchProperty/config_zh_TW.properties index 4df524985614..6e457d115f7d 100644 --- a/core/src/main/resources/hudson/search/UserSearchProperty/config_zh_TW.properties +++ b/core/src/main/resources/hudson/search/UserSearchProperty/config_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Case-sensitivity=\u5927\u5C0F\u5BEB\u5340\u5206 -Insensitive\ search\ tool=\u4E0D\u5206\u5927\u5C0F\u5BEB\u7684\u641C\u5C0B\u5DE5\u5177 +Case-sensitivity=大å°å¯«å€åˆ† +Insensitive\ search\ tool=ä¸åˆ†å¤§å°å¯«çš„æœå°‹å·¥å…· diff --git a/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_bg.properties b/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_bg.properties index 50ff8022a6f5..a2aa09ed0235 100644 --- a/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_bg.properties +++ b/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_bg.properties @@ -22,18 +22,18 @@ # Login Error: unassociated {0} loginError=\ - \u0413\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u0432\u043b\u0438\u0437\u0430\u043d\u0435: \u201e{0}\u201c \u043d\u0435 \u0435 \u0441\u0432\u044a\u0440\u0437\u0430\u043d \u0441 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u043d\u0430 Jenkins + Грешка при влизане: „{0}“ не е Ñвързан Ñ Ñ€ÐµÐ³Ð¸ÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð½Ð° Jenkins # {0} "{1}" is not associated with any of the Jenkins user account. \ # Note that if you already have a user account and is trying to associate a {0} with your account, \ # this is a wrong place. To do so,
    1. Login
    2. Click on your name
    3. Click on the "Configure" link, and \ # then
    4. associate a new {0} from that page
    blurb=\ - {0} \u201e{1}\u201c \u043d\u0435 \u0435 \u0441\u0432\u044a\u0440\u0437\u0430\u043d \u0441 \u043d\u0438\u043a\u043e\u044f \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u043d\u0430 Jenkins. \u0410\u043a\u043e \u0432\u0435\u0447\u0435 \u0438\u043c\u0430\u0442\u0435\ - \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u0438 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u0441\u0432\u044a\u0440\u0436\u0435\u0442\u0435 {0} \u0441 \u043d\u0435\u044f, \u0442\u043e\u0432\u0430 \u043d\u0435 \u0435 \u043f\u0440\u0430\u0432\u0438\u043b\u043d\u043e\u0442\u043e\ - \u043c\u044f\u0441\u0442\u043e. \u0417\u0430 \u0434\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u0438\u0442\u0435 \u0442\u043e\u0432\u0430:\ + {0} „{1}“ не е Ñвързан Ñ Ð½Ð¸ÐºÐ¾Ñ Ñ€ÐµÐ³Ð¸ÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð½Ð° Jenkins. Ðко вече имате\ + потребителÑка региÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð¸ иÑкате да Ñвържете {0} Ñ Ð½ÐµÑ, това не е правилното\ + мÑÑто. За да направите това:\
      \ -
    1. \u0432\u043b\u0435\u0437\u0442\u0435 \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430;
    2. \ -
    3. \u043d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 \u0438\u043c\u0435\u0442\u043e \u0441\u0438;
    4. \ -
    5. \u043d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 \u0432\u0440\u044a\u0437\u043a\u0430\u0442\u0430 \u0437\u0430 \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438;
    6. \ -
    7. \u0441\u0432\u044a\u0440\u0436\u0435\u0442\u0435 \u043d\u043e\u0432 {0}.
    8. \ +
    9. влезте в ÑиÑтемата;
    10. \ +
    11. натиÑнете името Ñи;
    12. \ +
    13. натиÑнете връзката за ÐаÑтройки;
    14. \ +
    15. Ñвържете нов {0}.
    16. \
    diff --git a/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_de.properties b/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_de.properties index 4079b7c7ea4d..64d3b22b2766 100644 --- a/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_de.properties +++ b/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_de.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb={0} \u201E{1}\u201C ist nicht mit einem Benutzerkonto in Jenkins verbunden. Wenn Sie bereits ein Benutzerkonto haben und versuchen {0} mit Ihrem Account zu verbinden: \ - Dies m\u00FCssen Sie in der Konfiguration Ihres Benutzerprofils vornehmen. +blurb={0} „{1}“ ist nicht mit einem Benutzerkonto in Jenkins verbunden. Wenn Sie bereits ein Benutzerkonto haben und versuchen {0} mit Ihrem Account zu verbinden: \ + Dies müssen Sie in der Konfiguration Ihres Benutzerprofils vornehmen. loginError=Login-Fehler: {0} ist nicht zugeordnet. diff --git a/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_es.properties b/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_es.properties index 925c2556f65c..692a08fef3e9 100644 --- a/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_es.properties +++ b/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_es.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -loginError=Error de autenticación: {0} no está asociado. -blurb={0} "{1}" no está asociado con ninguna cuenta en Jenkins. \ - Si tienes una cuenta de usuario y quieres asociar {0} con tu cuenta, éste no es el sitio de hacerlo. \ - Debes hacer
    1. Login
    2. , pulsar en tu nombre
    3. Pinchar sobre "Configurar" y por último \ -
    4. asociar un nuevo {0} desde esta página
    +loginError=Error de autenticación: {0} no está asociado. +blurb={0} "{1}" no está asociado con ninguna cuenta en Jenkins. \ + Si tienes una cuenta de usuario y quieres asociar {0} con tu cuenta, éste no es el sitio de hacerlo. \ + Debes hacer
    1. Login
    2. , pulsar en tu nombre
    3. Pinchar sobre "Configurar" y por último \ +
    4. asociar un nuevo {0} desde esta página
    diff --git a/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_it.properties b/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_it.properties index f6772a7bbda8..28ff53e2770c 100644 --- a/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_it.properties +++ b/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,9 +21,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb={0} "{1}" non è associato ad alcun account utente Jenkins. Si noti \ - che se si dispone già di un account utente e si sta tentando di associare \ - un {0} con il proprio account, questa è la pagina sbagliata. Per eseguire \ +blurb={0} "{1}" non è associato ad alcun account utente Jenkins. Si noti \ + che se si dispone già di un account utente e si sta tentando di associare \ + un {0} con il proprio account, questa è la pagina sbagliata. Per eseguire \ tale operazione,
    1. Eseguire l''accesso
    2. Cliccare sul proprio nome \
    3. Cliccare sul collegamento "Configura" e quindi
    4. Associare un nuovo \ {0} da tale pagina
    diff --git a/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_ja.properties b/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_ja.properties index 1df43463ceed..6eee60d976f3 100644 --- a/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_ja.properties +++ b/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_ja.properties @@ -1,6 +1,6 @@ -loginError=\u30ed\u30b0\u30a4\u30f3\u30a8\u30e9\u30fc: {0}\u306f\u7d50\u3073\u3064\u3044\u3066\u3044\u307e\u305b\u3093\u3002 +loginError=ログインエラー: {0}ã¯çµã³ã¤ã„ã¦ã„ã¾ã›ã‚“。 -blurb={0} "{1}"\u306f\u3001Jenkins\u306e\u3069\u306e\u30e6\u30fc\u30b6\u30fc\u3068\u3082\u7d50\u3073\u3064\u3044\u3066\u3044\u307e\u305b\u3093\u3002\ - \u6ce8\u610f: \u3059\u3067\u306b\u30e6\u30fc\u30b6\u30fc\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u6301\u3063\u3066\u3044\u3066\u3001{0}\u3068\u3042\u306a\u305f\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u7d50\u3073\u3065\u3051\u3088\u3046\u3068\u3057\u3066\u3044\u308b\u306a\u3089\u3001\ - \u3053\u3053\u3067\u306f\u3067\u304d\u307e\u305b\u3093\u3002\u7d50\u3073\u3064\u3051\u308b\u5834\u5408\u306f\u3001
    1. \u30ed\u30b0\u30a4\u30f3
    2. \u3042\u306a\u305f\u306e\u540d\u524d\u3092\u30af\u30ea\u30c3\u30af
    3. "\u8a2d\u5b9a"\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u3001\ -
    4. \u305d\u306e\u30da\u30fc\u30b8\u3067\u3001\u65b0\u3057\u3044{0}\u3068\u7d50\u3073\u3065\u3051\u307e\u3059\u3002
    +blurb={0} "{1}"ã¯ã€Jenkinsã®ã©ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã¨ã‚‚çµã³ã¤ã„ã¦ã„ã¾ã›ã‚“。\ + 注æ„: ã™ã§ã«ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã‚’æŒã£ã¦ã„ã¦ã€{0}ã¨ã‚ãªãŸã®ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã‚’çµã³ã¥ã‘よã†ã¨ã—ã¦ã„ã‚‹ãªã‚‰ã€\ + ã“ã“ã§ã¯ã§ãã¾ã›ã‚“。çµã³ã¤ã‘ã‚‹å ´åˆã¯ã€
    1. ログイン
    2. ã‚ãªãŸã®åå‰ã‚’クリック
    3. "設定"をクリックã™ã‚‹ã¨ã€\ +
    4. ãã®ãƒšãƒ¼ã‚¸ã§ã€æ–°ã—ã„{0}ã¨çµã³ã¥ã‘ã¾ã™ã€‚
    diff --git a/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_pt_BR.properties b/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_pt_BR.properties index eb553b864ef5..dec92d97847b 100644 --- a/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_pt_BR.properties +++ b/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_pt_BR.properties @@ -21,12 +21,12 @@ # THE SOFTWARE. # Login Error: unassociated {0} -loginError=Erro no Login: {0} n\u00e3o associado +loginError=Erro no Login: {0} não associado # {0} "{1}" is not associated with any of the Jenkins user account. \ # Note that if you already have a user account and is trying to associate a {0} with your account, \ # this is a wrong place. To do so,
    1. Login
    2. Click on your name
    3. Click on the "Configure" link, and \ # then
    4. associate a new {0} from that page
    -blurb={0} "{1}" n\u00e3o est\u00e1 associado com nenhuma conta de usu\u00e1rio do Jenkins. \ - Note que se voc\u00ea j\u00e1 possui uma conta de usu\u00e1rio e est\u00e1 tentando associar um {0} com sua conta, \ - este \u00e9 o lugar errado. Para fazer isso,
    1. Login
    2. Clique em seu nome
    3. Clique no link "Configurar", e \ - ent\u00e3o
    4. associe um novo {0} para esta p\u00e1gina
    +blurb={0} "{1}" não está associado com nenhuma conta de usuário do Jenkins. \ + Note que se você já possui uma conta de usuário e está tentando associar um {0} com sua conta, \ + este é o lugar errado. Para fazer isso,
    1. Login
    2. Clique em seu nome
    3. Clique no link "Configurar", e \ + então
    4. associe um novo {0} para esta página
    diff --git a/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_sr.properties b/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_sr.properties index 53c32244ac8f..014b6fb02ffc 100644 --- a/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_sr.properties +++ b/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_sr.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -loginError=\u0413\u0440\u0435\u0448\u043A\u0430 \u043F\u0440\u0438\u0458\u0430\u0432\u0435: {0} \u043D\u0435\u043C\u0430 \u0430\u0441\u043E\u0446\u0438\u0458\u0430\u0446\u0438\u0458\u0435 -blurb={0} "{1}" \u043D\u0438\u0458\u0435 \u043F\u043E\u0432\u0435\u0437\u0430\u043D\u043E \u0441\u0430 \u0431\u0438\u043B\u043E \u043A\u043E\u0458\u0438\u043C Jenkins \u043D\u0430\u043B\u043E\u0433\u043E\u043C. \ - \u0410\u043A\u043E \u0432\u0435\u045B \u0438\u043C\u0430\u0433\u0435 \u043D\u0430\u043B\u043E\u0433 \u0438 \u043F\u043E\u043A\u0443\u0448\u0430\u0432\u0430\u0442\u0435 \u0434\u0430 \u043F\u043E\u0432\u0435\u0436\u0435\u0442\u0435 {0} \u0441 \u045A\u0438\u043C, \ - \u043E\u0432\u043E \u043D\u0438\u0458\u0435 \u043F\u0440\u0430\u0432\u043E \u043C\u0435\u0441\u0442\u043E \u0437\u0430 \u0442\u043E. \u0420\u0430\u0434\u0438\u0458\u0435
    1. Login
    2. \u041A\u043B\u0438\u043A\u043D\u0438\u0442\u0435 \u043D\u0430 \u0432\u0430\u0448\u0435 \u0438\u043C\u0435
    3. \u041A\u043B\u0438\u043A\u043D\u0438\u0442\u0435 \u043D\u0430 "\u0423\u0440\u0435\u0434\u0438" \u043B\u0438\u043D\u043A, \u0438 \ -
    4. \u043F\u043E\u0432\u0435\u0436\u0438\u0442\u0435 \u043D\u043E\u0432\u0438 {0} \u0441\u0430 \u0442\u0435 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0435
    +loginError=Грешка пријаве: {0} нема аÑоцијације +blurb={0} "{1}" није повезано Ñа било којим Jenkins налогом. \ + Ðко већ имаге налог и покушавате да повежете {0} Ñ ÑšÐ¸Ð¼, \ + ово није право меÑто за то. Радије
    1. Login
    2. Кликните на ваше име
    3. Кликните на "Уреди" линк, и \ +
    4. повежите нови {0} Ñа те Ñтранице
    diff --git a/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_zh_TW.properties b/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_zh_TW.properties index 8678ef905d79..97ef6b016009 100644 --- a/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_zh_TW.properties +++ b/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_zh_TW.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -loginError=\u767b\u5165\u932f\u8aa4: {0} \u6c92\u6709\u95dc\u806f +loginError=登入錯誤: {0} æ²’æœ‰é—œè¯ -blurb={0} "{1}" \u6c92\u6709\u95dc\u806f\u5230\u4efb\u4f55\u7684 Jenkins \u4f7f\u7528\u8005\u5e33\u865f\u3002\ - \u6ce8\u610f\uff0c\u5982\u679c\u60a8\u5df2\u7d93\u6709\u4f7f\u7528\u8005\u5e33\u865f\uff0c\u800c\u4e14\u60f3\u8981\u5c07 {0} \u8207\u60a8\u7684\u5e33\u865f\u95dc\u806f\u8d77\u4f86\uff0c\u90a3\u60a8\u8d70\u932f\u5730\u65b9\u5566\u3002\ - \u8acb
    1. \u767b\u5165
    2. \u5728\u60a8\u7684\u540d\u5b57\u4e0a\u6309\u4e00\u4e0b
    3. \u9ede "\u8a2d\u5b9a" \u9023\u7d50\uff0c\u518d\ -
    4. \u5f9e\u90a3\u4e00\u9801\u95dc\u806f\u65b0\u7684 {0}
    +blurb={0} "{1}" 沒有關è¯åˆ°ä»»ä½•çš„ Jenkins 使用者帳號。\ + 注æ„,如果您已經有使用者帳號,而且想è¦å°‡ {0} 與您的帳號關è¯èµ·ä¾†ï¼Œé‚£æ‚¨èµ°éŒ¯åœ°æ–¹å•¦ã€‚\ + è«‹
    1. 登入
    2. 在您的å字上按一下
    3. 點 "設定" 連çµï¼Œå†\ +
    4. 從那一é é—œè¯æ–°çš„ {0}
    diff --git a/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_bg.properties b/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_bg.properties index caf3e2bc9146..0d5638b5a004 100644 --- a/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_bg.properties +++ b/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Allow\ anonymous\ read\ access=\ - \u041f\u043e\u0437\u0432\u043e\u043b\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0430\u043d\u043e\u043d\u0438\u043c\u0435\u043d \u0434\u043e\u0441\u0442\u044a\u043f \u0437\u0430 \u0447\u0435\u0442\u0435\u043d\u0435 + ПозволÑване на анонимен доÑтъп за четене diff --git a/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_de.properties b/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_de.properties index 875167ee3769..5b967b1f0418 100644 --- a/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_de.properties +++ b/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Allow\ anonymous\ read\ access=Anonymen Nutzern Lesezugriff gew\u00E4hren +Allow\ anonymous\ read\ access=Anonymen Nutzern Lesezugriff gewähren diff --git a/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_it.properties b/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_it.properties index 4dc79108dc05..fb4e4d99b01a 100644 --- a/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_it.properties +++ b/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_pt_BR.properties b/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_pt_BR.properties index f601e56b9de1..69e42dbefa82 100644 --- a/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_pt_BR.properties +++ b/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Allow\ anonymous\ read\ access=Permite\ acesso\ de\ leitura\ de\ forma\ an\u00F4nima +Allow\ anonymous\ read\ access=Permite\ acesso\ de\ leitura\ de\ forma\ anônima diff --git a/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_sr.properties b/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_sr.properties index 4037369d9798..5fbe213c6108 100644 --- a/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_sr.properties +++ b/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Allow\ anonymous\ read\ access=\u0414\u043E\u0437\u0432\u043E\u043B\u0438 \u043F\u0440\u0438\u0441\u0442\u0443\u043F \u0430\u043D\u043E\u043D\u0438\u043C\u043D\u0438\u043C \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438\u043C\u0430 +Allow\ anonymous\ read\ access=Дозволи приÑтуп анонимним кориÑницима diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_da.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_da.properties index 177caa2b4150..86864eadd916 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_da.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_da.properties @@ -23,6 +23,6 @@ Default\ view=Standardvisning Home\ directory=Hjemmedirektorie System\ Message=Systembesked -LOADING=INDL\u00c6SER +LOADING=INDLÆSER Global\ properties=Globale egenskaber -statsBlurb=Hj\u00e6lp med at g\u00f8re Jenkins bedre ved at sende anonyme brugsstatistiker og nedbrudsrapporter til Jenkins projektet. +statsBlurb=Hjælp med at gøre Jenkins bedre ved at sende anonyme brugsstatistiker og nedbrudsrapporter til Jenkins projektet. diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_de.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_de.properties index fb043b66c947..40d77d6aa93f 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_de.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_de.properties @@ -28,5 +28,5 @@ statsBlurb=\ Helfen Sie Jenkins zu verbessern, indem Sie anonyme Nutzungsstatistiken und Absturzprotokolle \ an das Jenkins-Projekt senden. Global\ properties=Globale Eigenschaften -Views\ Tab\ Bar=Tab Bar für Ansichten -My\ Views\ Tab\ Bar=Tab Bar für \u201EMeine Ansichten\u201C +Views\ Tab\ Bar=Tab Bar für Ansichten +My\ Views\ Tab\ Bar=Tab Bar für „Meine Ansichten“ diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_es.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_es.properties index 130209e86967..758874ef9ddb 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_es.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_es.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. statsBlurb=\ - La información anónima enviada sobre las estadísticas de uso y los informes de fallos, contribuyen a poder mejorar Jenkins. + La información anónima enviada sobre las estadísticas de uso y los informes de fallos, contribuyen a poder mejorar Jenkins. Default\ view=Vista por defecto Global\ properties=Propiedades globales Home\ directory=Directorio raiz diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_fi.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_fi.properties index 4a2a6a85a3d4..e56b17f6181f 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_fi.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_fi.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Home\ directory=Kotihakemisto -System\ Message=J\u00E4rjestelm\u00E4viesti -statsBlurb=Auta tekem\u00E4\u00E4n Jenkinsist\u00E4 parempi l\u00E4hett\u00E4m\u00E4ll\u00E4 anonyymi\u00E4 k\u00E4ytt\u00F6 statistiikkaa ja kaatumis raportteja Jenkins projektille. +System\ Message=Järjestelmäviesti +statsBlurb=Auta tekemään Jenkinsistä parempi lähettämällä anonyymiä käyttö statistiikkaa ja kaatumis raportteja Jenkins projektille. diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_fr.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_fr.properties index 0a6cf1b36926..6de53ffcf2b5 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_fr.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_fr.properties @@ -20,15 +20,15 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Home\ directory=Répertoire Home -System\ Message=Message du système -Default\ view=Vue par d\u00E9faut +Home\ directory=Répertoire Home +System\ Message=Message du système +Default\ view=Vue par défaut name=Nom JDKs=JDK JDK\ installations=Installations des JDK -List\ of\ JDK\ installations\ on\ this\ system=Liste des installations de JDK sur ce système. +List\ of\ JDK\ installations\ on\ this\ system=Liste des installations de JDK sur ce système. no.such.JDK=Ce JDK n''existe pas statsBlurb=\ - Aidez-nous à améliorer Jenkins en envoyant sous forme anonyme les statistiques d''utilisation et les rapports de crash au projet Jenkins. -Global\ properties=Propriétés globales + Aidez-nous à améliorer Jenkins en envoyant sous forme anonyme les statistiques d''utilisation et les rapports de crash au projet Jenkins. +Global\ properties=Propriétés globales LOADING=CHARGEMENT diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_hu.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_hu.properties index d043823bd1a4..d4268556f155 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_hu.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -System\ Message=Rendszer\u00FCzenet +System\ Message=Rendszerüzenet diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_ja.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_ja.properties index b6412acce276..47085352b813 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_ja.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_ja.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Configure\ System=\u30b7\u30b9\u30c6\u30e0\u306e\u8a2d\u5b9a -Home\ directory=\u30db\u30fc\u30e0\u30c7\u30a3\u30ec\u30af\u30c8\u30ea -System\ Message=\u30b7\u30b9\u30c6\u30e0\u30e1\u30c3\u30bb\u30fc\u30b8 +Configure\ System=システムã®è¨­å®š +Home\ directory=ホームディレクトリ +System\ Message=システムメッセージ statsBlurb=\ - \u5229\u7528\u72b6\u6cc1\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u30ec\u30dd\u30fc\u30c8\u3092Jenkins\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306b\u533f\u540d\u3067\u5831\u544a -Global\ properties=\u30b0\u30ed\u30fc\u30d0\u30eb \u30d7\u30ed\u30d1\u30c6\u30a3 -Default\ view=\u30c7\u30d5\u30a9\u30eb\u30c8\u30d3\u30e5\u30fc -LOADING=\u30ed\u30fc\u30c9\u4e2d... + 利用状æ³ã¨ã‚¯ãƒ©ãƒƒã‚·ãƒ¥ãƒ¬ãƒãƒ¼ãƒˆã‚’Jenkinsプロジェクトã«åŒ¿åã§å ±å‘Š +Global\ properties=グローãƒãƒ« プロパティ +Default\ view=デフォルトビュー +LOADING=ロード中... diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_nl.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_nl.properties index 237afcde2f72..fe87e8b6997b 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_nl.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_nl.properties @@ -38,5 +38,5 @@ statsBlurb=Help Jenkins verbeteren door het opsturen van anonieme gebruiksstatis usage=Gebruik JDKs=JDKs JDK\ installations=Installatie JDKs -List\ of\ JDK\ installations\ on\ this\ system=Lijst van ge\u00EFnstalleerde JDKs op dit systeem +List\ of\ JDK\ installations\ on\ this\ system=Lijst van geïnstalleerde JDKs op dit systeem no.such.JDK=JDK bestaat niet op dit system diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_pt_BR.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_pt_BR.properties index c13671b8ce0b..9df097d74988 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_pt_BR.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_pt_BR.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Home\ directory=Diret\u00f3rio Home +Home\ directory=Diretório Home System\ Message=Mensagem do sistema -Default\ view= View padr\u00e3o +Default\ view= View padrão LOADING=Carregando Global\ properties=Propriedades globais # \ # Help make Jenkins better by sending anonymous usage statistics and crash reports to the Jenkins project. -statsBlurb=Ajude o Jenkins a melhorar enviando relat\u00f3rios an\u00f5nimos de erro +statsBlurb=Ajude o Jenkins a melhorar enviando relatórios anõnimos de erro diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_ru.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_ru.properties index d48a1e44ef53..30844a27b925 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_ru.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_ru.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Global\ properties=\u0413\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u044B\u0435 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 -Home\ directory=\u0414\u043e\u043c\u0430\u0448\u043d\u044f\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f -System\ Message=\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u044b -Default\ view=\u0412\u0438\u0434 \u043F\u043E-\u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E -description=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 +Global\ properties=Глобальные наÑтройки +Home\ directory=ДомашнÑÑ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ +System\ Message=Сообщение ÑиÑтемы +Default\ view=Вид по-умолчанию +description=ОпиÑание JDKs=JDK -JDK\ installations=\u0418\u043d\u0441\u0442\u0430\u043b\u043b\u044f\u0446\u0438\u0438 JDK -List\ of\ JDK\ installations\ on\ this\ system=\u0421\u043f\u0438\u0441\u043e\u043a JDK \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0435 -no.such.JDK=\u0422\u0430\u043a\u043e\u0433\u043e JDK \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 -statsBlurb=\u0423\u0447\u0430\u0441\u0442\u0432\u043E\u0432\u0430\u0442\u044C \u0432 \u0443\u043B\u0443\u0447\u0448\u0435\u043D\u0438\u0438 Jenkins, \u043F\u043E\u0441\u044B\u043B\u0430\u044F \u0430\u043D\u043E\u043D\u0438\u043C\u043D\u044B\u0435 \u0434\u0430\u043D\u043D\u044B\u0435 \u043F\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u044E \u0438 \u043E\u0442\u0447\u0435\u0442\u044B \u043E \u0441\u0431\u043E\u044F\u0445 Jenkins. +JDK\ installations=ИнÑталлÑции JDK +List\ of\ JDK\ installations\ on\ this\ system=СпиÑок JDK инÑталированных в ÑиÑтеме +no.such.JDK=Такого JDK не ÑущеÑтвует +statsBlurb=УчаÑтвовать в улучшении Jenkins, поÑÑ‹Ð»Ð°Ñ Ð°Ð½Ð¾Ð½Ð¸Ð¼Ð½Ñ‹Ðµ данные по иÑпользованию и отчеты о ÑбоÑÑ… Jenkins. diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_sr.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_sr.properties index f0aaca4cc7bc..62802cb6f27a 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_sr.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_sr.properties @@ -1,23 +1,23 @@ # This file is under the MIT License by authors -Default\ view=\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u043D\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 -Home\ directory=\u0413\u043B\u0430\u0432\u043D\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C -System\ Message=\u0414\u043E\u0431\u0440\u043E\u0434\u043E\u0448\u043B\u0438 -LOADING=\u0423\u0427\u0418\u0422\u0410\u0412\u0410\u040A\u0415 -statsBlurb=\u041F\u043E\u0448\u0430\u0459\u0438 \u0430\u043D\u043E\u043D\u0438\u043C\u043D\u0435 \u043F\u043E\u0434\u0430\u0442\u043A\u0435 \u043E \u043A\u043E\u0440\u0438\u0448\u045B\u0435\u045A\u0443 \u0438 \u0438\u0437\u0432\u0435\u0448\u0442\u0430\u0458\u0438 \u043E \u0433\u0440\u0435\u0448\u043A\u0430\u043C\u0430 Jenkins-\u0430. -Global\ properties=\u0413\u043B\u043E\u0431\u0430\u043B\u043D\u0435 \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0435 -Views\ Tab\ Bar=\u041F\u0440\u0435\u0433\u043B\u0435\u0434\u0438 -My\ Views\ Tab\ Bar=\u041C\u043E\u0458\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0438 -name=\u0438\u043C\u0435 -JDKs=JDK-\u043E\u0432\u0438 -JDK\ installations=JDK \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0435 -List\ of\ JDK\ installations\ on\ this\ system=\u0421\u043F\u0438\u0441\u0430\u043A JDK \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0435 \u043D\u0430 \u043E\u0432\u043E\u043C \u0441\u0438\u0441\u0442\u0435\u043C\u0443 -no.such.JDK=\u041D\u0435 \u043F\u043E\u0441\u0442\u043E\u0458\u0438 \u0442\u0430\u043A\u0430\u0432 JDK -Configure\ System=\u041F\u043E\u0441\u0442\u0430\u0432\u0438 \u0441\u0438\u0441\u0442\u0435\u043C -Master/Slave\ Support=\u041F\u043E\u0434\u0440\u0448\u043A\u0435 \u0433\u043B\u0430\u0432\u043D\u0438\u043C \u0438 \u043F\u043E\u043C\u043E\u045B\u043D\u0438\u043C \u043C\u0430\u0448\u0438\u043D\u0430\u043C\u0430 -Slaves=\u041F\u043E\u043C\u043E\u045B\u043D\u0438 -slaves.description=\u0421\u043F\u0438\u0441\u0430\u043A \u043F\u043E\u043C\u043E\u045B\u043D\u0438\u0445 \u043C\u0430\u0448\u0438\u043D\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u043E\u0432\u0430\u043D\u0438 \u043D\u0430 \u0433\u043B\u0430\u0432\u043D\u043E\u0458 Jenkins \u043C\u0430\u0448\u0438\u043D\u0438. \u0417\u0430\u0434\u0430\u0446\u0438 \u043C\u043E\u0433\u0443 \u0431\u0438\u0442\u0438 \u043F\u043E\u0434\u0435\u0448\u0435\u043D\u0438 \u0434\u0430 \u0431\u0443\u0434\u0443 \u0438\u0437\u0432\u0440\u0448\u0435\u043D\u0438 \u043D\u0430 \u043F\u043E\u043C\u043E\u045B\u043D\u0438\u043C \u043C\u0430\u0448\u0438\u043D\u0430\u043C\u0430. -launch\ command=\u041A\u043E\u043C\u0430\u043D\u0434\u0430 \u0437\u0430 \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0435 -description=\u041E\u043F\u0438\u0441 -usage=\u0423\u043F\u043E\u0442\u0440\u0435\u0431\u0430 -remote\ FS\ root=\u041A\u043E\u0440\u0435\u043D \u0443\u0434\u0430\u0459\u0435\u043D\u043E\u0433 \u0441\u0438\u0441\u0442\u0435\u043C \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430 +Default\ view=Стандардни преглед +Home\ directory=Главни директоријум +System\ Message=Добродошли +LOADING=УЧИТÐÐ’ÐЊЕ +statsBlurb=Пошаљи анонимне податке о коришћењу и извештаји о грешкама Jenkins-а. +Global\ properties=Глобалне поÑтавке +Views\ Tab\ Bar=Прегледи +My\ Views\ Tab\ Bar=Моји прегледи +name=име +JDKs=JDK-ови +JDK\ installations=JDK инÑталације +List\ of\ JDK\ installations\ on\ this\ system=СпиÑак JDK инÑталације на овом ÑиÑтему +no.such.JDK=Ðе поÑтоји такав JDK +Configure\ System=ПоÑтави ÑиÑтем +Master/Slave\ Support=Подршке главним и помоћним машинама +Slaves=Помоћни +slaves.description=СпиÑак помоћних машина региÑтровани на главној Jenkins машини. Задаци могу бити подешени да буду извршени на помоћним машинама. +launch\ command=Команда за покретање +description=ÐžÐ¿Ð¸Ñ +usage=Употреба +remote\ FS\ root=Корен удаљеног ÑиÑтем датотека diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_sv_SE.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_sv_SE.properties index ce497af9699e..b4caea962d7d 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_sv_SE.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_sv_SE.properties @@ -22,4 +22,4 @@ Default\ view=Standardvy Global\ properties=Globala egenskaper -statsBlurb=Hj\u00E4lp g\u00F6ra Jenkins b\u00E4ttre genom att skicka anonyma anv\u00E4ndningsstatistik och kraschrapporter till Jenkins projektet. +statsBlurb=Hjälp göra Jenkins bättre genom att skicka anonyma användningsstatistik och kraschrapporter till Jenkins projektet. diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_tr.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_tr.properties index a8a0f390c161..a0344e88c2e9 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_tr.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_tr.properties @@ -21,18 +21,18 @@ # THE SOFTWARE. slaves.description=\ - Bu master Jenkins'e kaydolmu\u015f slave nodlar\u0131n listesidir. B\u00fcy\u00fck i\u015flerin idare edilebilmesi i\u00e7in i\u015fler\ - slave nodlarda \u00e7al\u0131\u015ft\u0131r\u0131lmak \u00fczere ayarlanabilir. + Bu master Jenkins'e kaydolmuÅŸ slave nodların listesidir. Büyük iÅŸlerin idare edilebilmesi için iÅŸler\ + slave nodlarda çalıştırılmak üzere ayarlanabilir. no.such.JDK=Herhangi bir JDK yok Home\ directory=Ana dizin -System\ Message=Sistem Mesaj\u0131 -Master/Slave\ Support=Master/Slave Deste\u011fi +System\ Message=Sistem Mesajı +Master/Slave\ Support=Master/Slave DesteÄŸi Slaves=Slave''ler name=isim -launch\ command=komut \u00e7al\u0131\u015ft\u0131r -description=a\u00e7\u0131klama -remote\ FS\ root=Uzak FS k\u00f6k dizini -usage=kullan\u0131m +launch\ command=komut çalıştır +description=açıklama +remote\ FS\ root=Uzak FS kök dizini +usage=kullanım JDKs=JDK'lar -JDK\ installations=JDK kurulumlar\u0131 -List\ of\ JDK\ installations\ on\ this\ system=Sistemdeki JDK kurulumlar\u0131n\u0131n listesi +JDK\ installations=JDK kurulumları +List\ of\ JDK\ installations\ on\ this\ system=Sistemdeki JDK kurulumlarının listesi diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_zh_TW.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_zh_TW.properties index 18d28ac0ec0b..9525c8642931 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_zh_TW.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -System\ Message=\u7CFB\u7D71\u8A0A\u606F +System\ Message=ç³»çµ±è¨Šæ¯ diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_da.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_da.properties index 65366deb21df..1657cdd8516c 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_da.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_da.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -LOADING=INDL\u00C6SER -Enable\ security=Sl\u00E5 sikkerhed til +LOADING=INDLÆSER +Enable\ security=SlÃ¥ sikkerhed til Markup\ Formatter= Access\ Control=Adgangskontrol Security\ Realm=Sikkerheds Realm diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_de.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_de.properties index f25f3d848f62..92c4917fa0ec 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_de.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_de.properties @@ -22,11 +22,11 @@ LOADING=LADE DATEN Enable\ security=Jenkins absichern -Disable\ remember\ me=Deaktiviere \u201EAnmeldedaten speichern\u201C +Disable\ remember\ me=Deaktiviere „Anmeldedaten speichern“ Markup\ Formatter=Markup-Formatierer Access\ Control=Zugriffskontrolle Security\ Realm=Benutzerverzeichnis (Realm) Authorization=Rechtevergabe Save=Speichern -Back\ to\ Dashboard=Zurück zur Übersicht +Back\ to\ Dashboard=Zurück zur Ãœbersicht Manage\ Jenkins=Jenkins verwalten diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_es.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_es.properties index d9e0af542343..a0b8f6c2ddac 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_es.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_es.properties @@ -26,7 +26,7 @@ TCP\ port\ for\ JNLP\ agents=Puerto TCP de JNLP para los agentes en los nodos se Markup\ Formatter= Access\ Control=Control de acceso Security\ Realm=Seguridad -Authorization=Autorizaci\u00F3n +Authorization=Autorización Save=Guardar Back\ to\ Dashboard=Volver al Panel de control Manage\ Jenkins=Administrar Jenkins diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fi.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fi.properties index 46f52fc01012..84aa4da3ae25 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fi.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fi.properties @@ -22,7 +22,7 @@ Enable\ security=Aktivoi kirjautuminen Markup\ Formatter= -Access\ Control=P\u00E4\u00E4synhallinta +Access\ Control=Pääsynhallinta Security\ Realm= Authorization= Save=Tallenna diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fr.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fr.properties index 1846bc7dec88..c5f8299c4bf6 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fr.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fr.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. LOADING=CHARGEMENT -Enable\ security=Activer la s\u00E9curit\u00E9 +Enable\ security=Activer la sécurité Markup\ Formatter= -Access\ Control=Contr\u00F4le de l''acc\u00E8s -Security\ Realm=Royaume pour la s\u00E9curit\u00E9 (Realm) +Access\ Control=Contrôle de l''accès +Security\ Realm=Royaume pour la sécurité (Realm) Authorization=Autorisations Save=Enregistrer Back\ to\ Dashboard=Retour au tableau de bord diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_hu.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_hu.properties index 739b6549f6a1..ddcdda6973fc 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_hu.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_hu.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -LOADING=BET\u00D6LT\u00C9S +LOADING=BETÖLTÉS Enable\ security= Markup\ Formatter= Access\ Control= Security\ Realm= Authorization= -Save=Ment\u00E9s +Save=Mentés Back\ to\ Dashboard=Vissza -Manage\ Jenkins=Jenkins Kezel\u00E9se +Manage\ Jenkins=Jenkins Kezelése diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_it.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_it.properties index 31b817f71532..9b343aab6b5e 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_it.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -32,11 +32,11 @@ Markup\ Formatter=Componente formattazione markup Save=Salva Security\ Realm=Area di sicurezza slaveAgentPortEnforced=valore imposto all''avvio a {0,number,#} per mezzo di \ - una proprietà di sistema. + una proprietà di sistema. slaveAgentPortEnforcedDisabled=disabilitato all''avvio per mezzo di una \ - proprietà di sistema. + proprietà di sistema. slaveAgentPortEnforcedRandom=valore imposto all''avvio a una porta casuale \ - per mezzo di una proprietà di sistema. + per mezzo di una proprietà di sistema. Strategy=Strategia TCP\ port\ for\ inbound\ agents=Porta TCP per agenti in ingresso Back\ to\ Dashboard=Torna al cruscotto diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ja.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ja.properties index 6503850def7e..294a552ff734 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ja.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ja.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -LOADING=\u30ed\u30fc\u30c9\u4e2d... -Enable\ security=\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u6709\u52b9\u5316 -Markup\ Formatter=\u30de\u30fc\u30af\u30a2\u30c3\u30d7\u8a18\u6cd5 -Access\ Control=\u30a2\u30af\u30bb\u30b9\u5236\u5fa1 -Security\ Realm=\u30e6\u30fc\u30b6\u30fc\u60c5\u5831 -Authorization=\u6a29\u9650\u7ba1\u7406 -Save=\u4fdd\u5b58 -Disable\ remember\ me="\u6b21\u56de\u304b\u3089\u5165\u529b\u3092\u7701\u7565"\u3092\u7121\u52b9\u5316 -Back\ to\ Dashboard=\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u3078\u623b\u308b -Manage\ Jenkins=Jenkins\u306e\u7ba1\u7406 +LOADING=ロード中... +Enable\ security=セキュリティを有効化 +Markup\ Formatter=マークアップ記法 +Access\ Control=アクセス制御 +Security\ Realm=ユーザー情報 +Authorization=権é™ç®¡ç† +Save=ä¿å­˜ +Disable\ remember\ me="次回ã‹ã‚‰å…¥åŠ›ã‚’çœç•¥"を無効化 +Back\ to\ Dashboard=ダッシュボードã¸æˆ»ã‚‹ +Manage\ Jenkins=Jenkinsã®ç®¡ç† diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_pt_BR.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_pt_BR.properties index 2cf7b35c7439..8cd8e4a966e3 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_pt_BR.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_pt_BR.properties @@ -21,11 +21,11 @@ # THE SOFTWARE. LOADING=Carregando -Enable\ security=Habilitar segurança +Enable\ security=Habilitar segurança Markup\ Formatter=Formatador de markup Access\ Control=Controle de acesso -Security\ Realm=Dom\u00ednio (realm) de seguran\u00e7a -Authorization=Autoriza\u00e7\u00e3o +Security\ Realm=Domínio (realm) de segurança +Authorization=Autorização Save=Salvar Back\ to\ Dashboard=Voltar ao painel principal Manage\ Jenkins=Gerenciar Jenkins diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ru.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ru.properties index a4a04476bc73..b7165c709070 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ru.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ru.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -LOADING=\u0417\u0410\u0413\u0420\u0423\u0417\u041A\u0410 -Enable\ security=\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0437\u0430\u0449\u0438\u0442\u0443 +LOADING=ЗÐГРУЗКР+Enable\ security=Включить защиту Markup\ Formatter= -Access\ Control=\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u0430 -Security\ Realm=\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0437\u0430\u0449\u0438\u0442\u044b (realm) -Authorization=\u0410\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u044f -Save=\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C -Back\ to\ Dashboard=\u0414\u043E\u043C\u043E\u0439 -Manage\ Jenkins=\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c Jenkins +Access\ Control=Контроль доÑтупа +Security\ Realm=ОблаÑÑ‚ÑŒ защиты (realm) +Authorization=ÐÐ²Ñ‚Ð¾Ñ€Ð¸Ð·Ð°Ñ†Ð¸Ñ +Save=Сохранить +Back\ to\ Dashboard=Домой +Manage\ Jenkins=ÐаÑтроить Jenkins diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_sr.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_sr.properties index 80321f16237b..bc9bfb98f206 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_sr.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_sr.properties @@ -1,13 +1,13 @@ # This file is under the MIT License by authors -LOADING=\u0423\u0427\u0418\u0422\u0410\u0412\u0410\u040A\u0415 -Enable\ security=\u0423\u043A\u0459\u0443\u0447\u0438 \u0441\u0438\u0441\u0442\u0435\u043C \u0431\u0435\u0437\u0431\u0435\u0434\u043D\u043E\u0441\u0442\u0438 -Markup\ Formatter=\u0424\u043E\u0440\u043C\u0430\u0442\u0435\u0440 \u0437\u0430 Markup -Access\ Control=\u041A\u043E\u043D\u0442\u0440\u043E\u043B\u0430 \u043F\u0440\u0438\u0441\u0442\u0443\u043F\u0435 -Security\ Realm=\u041E\u0431\u043B\u0430\u0441\u0442 \u0431\u0435\u0437\u0431\u0435\u0434\u043D\u043E\u0441\u0442\u0438 (Realm) -Authorization=\u041E\u0432\u043B\u0430\u0448\u045B\u0435\u045A\u0435 -Save=\u0421\u0430\u0447\u0443\u0432\u0430\u0458 -Disable\ remember\ me=\u0418\u0441\u043A\u0459\u0443\u0447\u0438 \u043E\u0434\u043B\u0438\u043A\u0443 "\u0437\u0430\u043F\u0430\u043C\u0442\u0438 \u043C\u0435" -TCP\ port\ for\ JNLP\ agents=\u041F\u043E\u0440\u0442 TCP \u0437\u0430 JNLP \u0430\u0433\u0435\u043D\u0442\u0435 -Back\ to\ Dashboard=\u041D\u0430\u0437\u0430\u0434 \u043A\u0430 \u043A\u043E\u043D\u0442\u043E\u0440\u043B\u043D\u043E\u0458 \u043F\u0430\u043D\u0435\u043B\u0438 -Manage\ Jenkins=\u0423\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 Jenkins-\u043E\u043C +LOADING=УЧИТÐÐ’ÐЊЕ +Enable\ security=Укључи ÑиÑтем безбедноÑти +Markup\ Formatter=Форматер за Markup +Access\ Control=Контрола приÑтупе +Security\ Realm=ОблаÑÑ‚ безбедноÑти (Realm) +Authorization=Овлашћење +Save=Сачувај +Disable\ remember\ me=ИÑкључи одлику "запамти ме" +TCP\ port\ for\ JNLP\ agents=Порт TCP за JNLP агенте +Back\ to\ Dashboard=Ðазад ка конторлној панели +Manage\ Jenkins=Управљање Jenkins-ом diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_tr.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_tr.properties index 8c08ba2a62ee..ee8777c01598 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_tr.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_tr.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Enable\ security=G\u00fcvenli\u011fi devreye al +Enable\ security=GüvenliÄŸi devreye al Markup\ Formatter= -Access\ Control=Eri\u015fim Kontrol\u00fc -Security\ Realm=G\u00fcvenlik Alan\u0131 +Access\ Control=EriÅŸim Kontrolü +Security\ Realm=Güvenlik Alanı Authorization=Yetkilendirme Save=Kaydet -Back\ to\ Dashboard=Kontrol Merkezi''ne D\u00f6n -Manage\ Jenkins=Jenkins''i Y\u00f6net +Back\ to\ Dashboard=Kontrol Merkezi''ne Dön +Manage\ Jenkins=Jenkins''i Yönet diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_zh_TW.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_zh_TW.properties index 440ca60d39b9..2937019cff95 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_zh_TW.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_zh_TW.properties @@ -21,12 +21,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -LOADING=\u8f09\u5165\u4e2d -Enable\ security=\u555f\u7528\u5b89\u5168\u6027 -Markup\ Formatter=\u6a19\u8a18\u683c\u5f0f\u5668 -Access\ Control=\u5b58\u53d6\u63a7\u5236 -Security\ Realm=\u5b89\u5168\u6027\u9818\u57df -Authorization=\u6388\u6b0a -Save=\u5132\u5b58 -Back\ to\ Dashboard=\u8fd4\u56de\u8cc7\u8a0a\u4e3b\u9801 -Manage\ Jenkins=\u7ba1\u7406 Jenkins +LOADING=載入中 +Enable\ security=啟用安全性 +Markup\ Formatter=標記格å¼å™¨ +Access\ Control=å­˜å–控制 +Security\ Realm=安全性領域 +Authorization=授權 +Save=儲存 +Back\ to\ Dashboard=è¿”å›žè³‡è¨Šä¸»é  +Manage\ Jenkins=ç®¡ç† Jenkins diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_bg.properties index 2f216c9c4b3d..b437d40ededd 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_bg.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Password=\ - \u041f\u0430\u0440\u043e\u043b\u0430 + Парола Confirm\ Password=\ - \u041f\u043e\u0442\u0432\u044a\u0440\u0436\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0430\u0440\u043e\u043b\u0430\u0442\u0430 + Потвърждаване на паролата diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_cs.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_cs.properties index 8e70ec41af72..ba8237d77798 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_cs.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_cs.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Confirm\ Password=Potvrzen\u00ED hesla +Confirm\ Password=Potvrzení hesla Password=Heslo diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_es.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_es.properties index aeec3882c798..f252a9a462d1 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_es.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Password=Contraseña -Confirm\ Password=Confirma la contraseña +Password=Contraseña +Confirm\ Password=Confirma la contraseña diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_it.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_it.properties index 4542307207b5..8578ed22f99a 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_it.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_ja.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_ja.properties index fec9af8c07b1..5d90ab6404f4 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_ja.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Password=\u30d1\u30b9\u30ef\u30fc\u30c9 -Confirm\ Password=\u30d1\u30b9\u30ef\u30fc\u30c9(\u78ba\u8a8d) +Password=パスワード +Confirm\ Password=パスワード(確èª) diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_pl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_pl.properties index 5470171053b3..ec23b11dc343 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_pl.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_pl.properties @@ -19,5 +19,5 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Password=Has\u0142o -Confirm\ Password=Powt\u00F3rz has\u0142o +Password=HasÅ‚o +Confirm\ Password=Powtórz hasÅ‚o diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_ru.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_ru.properties index 33ad71b5adfa..8e0ce266459b 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_ru.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Password=\u041f\u0430\u0440\u043e\u043b\u044c -Confirm\ Password=\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u043e\u043b\u044f +Password=Пароль +Confirm\ Password=Подтверждение Ð¿Ð°Ñ€Ð¾Ð»Ñ diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_sr.properties index 681f4b037d9f..983f8ba32971 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_sr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Password=\u041B\u043E\u0437\u0438\u043D\u043A\u0430 -Confirm\ Password=\u041F\u043E\u0442\u0432\u0440\u0434\u0438\u0442\u0435 \u043B\u043E\u0437\u0438\u043D\u043A\u0443 +Password=Лозинка +Confirm\ Password=Потврдите лозинку diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_sv_SE.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_sv_SE.properties index 6aa2898d694f..eee3f60aa0f4 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_sv_SE.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_sv_SE.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Confirm\ Password=Bekr\u00E4fta l\u00F6senord -Password=L\u00F6senord +Confirm\ Password=Bekräfta lösenord +Password=Lösenord diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_tr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_tr.properties index ac5d79691e8d..365c03754ef5 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_tr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Password=\u015eifre -Confirm\ Password=\u015eifreyi Do\u011frula +Password=Åžifre +Confirm\ Password=Åžifreyi DoÄŸrula diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_zh_TW.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_zh_TW.properties index 32348420f115..0566599baaeb 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_zh_TW.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Confirm\ Password=\u78BA\u8A8D\u5BC6\u78BC -Password=\u5BC6\u78BC +Confirm\ Password=確èªå¯†ç¢¼ +Password=密碼 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_bg.properties index c4cd36253cfb..3e8c2cb01a95 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_bg.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_bg.properties @@ -21,16 +21,16 @@ # THE SOFTWARE. E-mail\ address=\ - \u0410\u0434\u0440\u0435\u0441 \u043d\u0430 \u0435-\u043f\u043e\u0449\u0430 + ÐÐ´Ñ€ÐµÑ Ð½Ð° е-поща Password=\ - \u041f\u0430\u0440\u043e\u043b\u0430 + Парола Username=\ - \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b + Потребител Confirm\ password=\ - \u041f\u043e\u0442\u0432\u044a\u0440\u0436\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0430\u0440\u043e\u043b\u0430\u0442\u0430 + Потвърждаване на паролата Enter\ text\ as\ shown=\ - \u0412\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u0438\u044f \u0442\u0435\u043a\u0441\u0442 + Въведете Ð¿Ð¾ÐºÐ°Ð·Ð°Ð½Ð¸Ñ Ñ‚ÐµÐºÑÑ‚ Sign\ up=\ - \u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043d\u0435 + РегиÑтриране Full\ name=\ - \u041f\u044a\u043b\u043d\u043e \u0438\u043c\u0435 + Пълно име diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_es.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_es.properties index 351f0469aaba..c1f350429a54 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_es.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_es.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. Username=Usuario -Password=Contraseña -Confirm\ password=Confirma la contraseña +Password=Contraseña +Confirm\ password=Confirma la contraseña Full\ name=Nombre completo -E-mail\ address=Dirección de email +E-mail\ address=Dirección de email Enter\ text\ as\ shown=Introdude el texto mostrado Sign\ up=Crear una cuenta diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_fi.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_fi.properties index cc82bf58f0fb..fbb8b27bf4da 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_fi.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_fi.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors Confirm\ password=Varmista salasana -E-mail\ address=S\u00E4hk\u00F6postiosoite +E-mail\ address=Sähköpostiosoite Full\ name=Koko nimi Password=Salasana -Username=K\u00E4ytt\u00E4j\u00E4tunnus +Username=Käyttäjätunnus diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_it.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_it.properties index efa39e771599..2d60721b4b99 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_it.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -24,7 +24,7 @@ captcha=CAPTCHA Confirm\ password=Conferma password E-mail\ address=Indirizzo di posta elettronica -Enter\ text\ as\ shown=Immettere il testo così come viene visualizzato +Enter\ text\ as\ shown=Immettere il testo così come viene visualizzato Full\ name=Nome completo Password=Password Username=Nome utente diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_ja.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_ja.properties index 64b5158a3d03..b9c738f7ea9a 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_ja.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_ja.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Sign\ up=\u30b5\u30a4\u30f3\u30a2\u30c3\u30d7 -Username=\u30e6\u30fc\u30b6\u30fc\u540d -Password=\u30d1\u30b9\u30ef\u30fc\u30c9 -Confirm\ password=\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u78ba\u8a8d -Full\ name=\u30d5\u30eb\u30cd\u30fc\u30e0 -E-mail\ address=\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9 -Enter\ text\ as\ shown=\u30c6\u30ad\u30b9\u30c8 +Sign\ up=サインアップ +Username=ユーザーå +Password=パスワード +Confirm\ password=パスワードã®ç¢ºèª +Full\ name=フルãƒãƒ¼ãƒ  +E-mail\ address=メールアドレス +Enter\ text\ as\ shown=テキスト diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_ko.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_ko.properties index 8d6b5f09adba..8c15145e35eb 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_ko.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_ko.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Confirm\ password=\uC554\uD638 \uD655\uC778 -E-mail\ address=\uC774\uBA54\uC77C \uC8FC\uC18C -Enter\ text\ as\ shown=\uC544\uB798 \uBCF4\uC774\uB294 \uBB38\uC790 \uC785\uB825 -Full\ name=\uC774\uB984 -Password=\uC554\uD638 -Username=\uACC4\uC815\uBA85 +Confirm\ password=암호 í™•ì¸ +E-mail\ address=ì´ë©”ì¼ ì£¼ì†Œ +Enter\ text\ as\ shown=아래 ë³´ì´ëŠ” ë¬¸ìž ìž…ë ¥ +Full\ name=ì´ë¦„ +Password=암호 +Username=계정명 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_pl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_pl.properties index cefd8b87958f..76cde2e0a80b 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_pl.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_pl.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Confirm\ password=Powt\u00F3rz has\u0142o +Confirm\ password=Powtórz hasÅ‚o E-mail\ address=Adres e-mail -Full\ name=Pe\u0142na nazwa -Password=Has\u0142o +Full\ name=PeÅ‚na nazwa +Password=HasÅ‚o Username=Login diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_pt_BR.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_pt_BR.properties index 63c24a6aa234..ce0a9828e4cd 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_pt_BR.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_pt_BR.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. Password=Senha -Username=Nome de usu\u00E1rio +Username=Nome de usuário Enter\ text\ as\ shown=Digite o texto como mostrado Full\ name=Nome completo Confirm\ password=Confirmar a senha -E-mail\ address=Endere\u00E7o de e-mail +E-mail\ address=Endereço de e-mail captcha=captcha diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_ru.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_ru.properties index ada849401587..ef5cae70bdbf 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_ru.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_ru.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Confirm\ password=\u041F\u043E\u0432\u0442\u043E\u0440\u0438\u0442\u0435 \u043F\u0430\u0440\u043E\u043B\u044C -E-mail\ address=\u0410\u0434\u0440\u0435\u0441 \u044D\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u043D\u043E\u0439 \u043F\u043E\u0447\u0442\u044B -Full\ name=\u0424.\u0418.\u041E. -Password=\u041F\u0430\u0440\u043E\u043B\u044C -Username=\u0418\u043C\u044F \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F +Confirm\ password=Повторите пароль +E-mail\ address=ÐÐ´Ñ€ÐµÑ Ñлектронной почты +Full\ name=Ф.И.О. +Password=Пароль +Username=Ð˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_sr.properties index 661b93a0e313..d99088eacf25 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_sr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_sr.properties @@ -1,9 +1,9 @@ # This file is under the MIT License by authors -Username=\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u043E \u0438\u043C\u0435 -Password=\u041B\u043E\u0437\u0438\u043D\u043A\u0430 -Confirm\ password=\u041F\u043E\u0442\u0432\u0440\u0434\u0438\u0442\u0435 \u043B\u043E\u0437\u0438\u043D\u043A\u0443 -Full\ name=\u0418\u043C\u0435 \u0438 \u043F\u0440\u0435\u0437\u0438\u043C\u0435 -Enter\ text\ as\ shown=\u0423\u043D\u0435\u0441\u0438\u0442\u0435 \u0442\u0435\u043A\u0441\u0442 \u043A\u0430\u043A\u043E \u0458\u0435 \u043F\u0440\u0438\u043A\u0430\u0437\u0430\u043D -E-mail\ address=\u0410\u0434\u0440\u0435\u0441\u0430 \u0435-\u043F\u043E\u0448\u0442\u0435 -Sign\ up=\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0458\u0430 +Username=КориÑничко име +Password=Лозинка +Confirm\ password=Потврдите лозинку +Full\ name=Име и презиме +Enter\ text\ as\ shown=УнеÑите текÑÑ‚ како је приказан +E-mail\ address=ÐдреÑа е-поште +Sign\ up=РегиÑтрација diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_tr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_tr.properties index 413f049e57d0..bc53f6a11cea 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_tr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_tr.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Username=Kullan\u0131c\u0131 Ad\u0131 -Password=\u015eifre -Confirm\ password=\u015eifreyi Do\u011frula -Full\ name=Tam \u0130sim +Username=Kullanıcı Adı +Password=Åžifre +Confirm\ password=Åžifreyi DoÄŸrula +Full\ name=Tam Ä°sim E-mail\ address=E-posta adresi -Enter\ text\ as\ shown=Metni g\u00f6sterildi\u011fi gibi girin +Enter\ text\ as\ shown=Metni gösterildiÄŸi gibi girin diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_zh_TW.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_zh_TW.properties index 5f6b32d159d7..5f13b03b88e2 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_zh_TW.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_zh_TW.properties @@ -21,10 +21,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Sign\ up=\u8a3b\u518a -Username=\u4f7f\u7528\u8005\u540d\u7a31 -Password=\u5bc6\u78bc -Confirm\ password=\u78ba\u8a8d\u5bc6\u78bc -Full\ name=\u5168\u540d -E-mail\ address=\u96fb\u5b50\u90f5\u4ef6\u4fe1\u7bb1 -Enter\ text\ as\ shown=\u8f38\u5165\u4e0b\u5217\u6587\u5b57 +Sign\ up=註冊 +Username=使用者å稱 +Password=密碼 +Confirm\ password=確èªå¯†ç¢¼ +Full\ name=å…¨å +E-mail\ address=é›»å­éƒµä»¶ä¿¡ç®± +Enter\ text\ as\ shown=輸入下列文字 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_bg.properties index 46d7918e2d07..8cc34304d1a1 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_bg.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Create\ User=\ - \u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b + Създаване на потребител diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_fr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_fr.properties index a1cc40492655..46a796144c44 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_fr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Create\ User=Créer un utilisateur +Create\ User=Créer un utilisateur diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_it.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_it.properties index a7d833f08abe..3ef8ac2cc7a8 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_it.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_ja.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_ja.properties index c94702844cc1..2053d1b6b7c6 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_ja.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Create\ User=\u30e6\u30fc\u30b6\u30fc\u4f5c\u6210 +Create\ User=ãƒ¦ãƒ¼ã‚¶ãƒ¼ä½œæˆ diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_pt_BR.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_pt_BR.properties index 8bc994cf3edd..39c48cf63c98 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_pt_BR.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Create\ User=Criar um usu\u00e1rio +Create\ User=Criar um usuário diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_ru.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_ru.properties index b51a0c44aa95..392c06bedf2c 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_ru.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Create\ User=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f +Create\ User=Создать Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_sr.properties index a1eb18f90189..9f0d88a07cef 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_sr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Create\ User=\u041A\u0440\u0435\u0438\u0440\u0430\u0458 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430 +Create\ User=Креирај кориÑника diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_tr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_tr.properties index 6e4044b79f85..7bbe152d86a5 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_tr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Create\ User=Kullan\u0131c\u0131 olu\u015ftur +Create\ User=Kullanıcı oluÅŸtur diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_zh_TW.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_zh_TW.properties index a994facb0c73..5916886f537d 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_zh_TW.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Create\ User=\u5efa\u7acb\u4f7f\u7528\u8005 +Create\ User=建立使用者 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_bg.properties index e4fb7946c9eb..eaf0960c5c5e 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_bg.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Allow\ users\ to\ sign\ up=\ - \u041f\u043e\u0437\u0432\u043e\u043b\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438\u0442\u0435 \u0434\u0430 \u0441\u0435 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u0442 + ПозволÑване на потребителите да Ñе региÑтрират Captcha\ Support=\ - \u041f\u043e\u0434\u0434\u0440\u044a\u0436\u043a\u0430 \u043d\u0430 \u201eCaptcha\u201c + Поддръжка на „Captcha“ Enable\ captcha\ on\ sign\ up=\ - \u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u201eCaptcha\u201c \u043f\u0440\u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043d\u0435 + Използване на „Captcha“ при региÑтриране diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_cs.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_cs.properties index 24fa79216cb0..34dc0fd49eeb 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_cs.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_cs.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Allow\ users\ to\ sign\ up=Umo\u017Enit u\u017Eivatel\u016Fm p\u0159ihl\u00E1\u0161en\u00ED +Allow\ users\ to\ sign\ up=Umožnit uživatelům pÅ™ihlášení diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_de.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_de.properties index 4d556887693b..e09c36610469 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_de.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_de.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Allow\ users\ to\ sign\ up=Benutzer d\u00FCrfen sich selbst registrieren +Allow\ users\ to\ sign\ up=Benutzer dürfen sich selbst registrieren Captcha\ Support=Captcha -Enable\ captcha\ on\ sign\ up=Captcha f\u00FCr Registrierung aktivieren +Enable\ captcha\ on\ sign\ up=Captcha für Registrierung aktivieren diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_fi.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_fi.properties index f5f4ef91b604..e299a6aed567 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_fi.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_fi.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Allow\ users\ to\ sign\ up=Salli k\u00E4ytt\u00E4jien rekister\u00F6ityminen +Allow\ users\ to\ sign\ up=Salli käyttäjien rekisteröityminen diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_fr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_fr.properties index 405e92cce77c..b2aa721f5fd4 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_fr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Allow\ users\ to\ sign\ up=Autoriser les utilisateurs \u00E0 s''inscrire +Allow\ users\ to\ sign\ up=Autoriser les utilisateurs à s''inscrire diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_hu.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_hu.properties index e0fd69f04fbe..8223907b49ce 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_hu.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_hu.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Allow\ users\ to\ sign\ up=Felhaszn\u00E1l\u00F3k regisztr\u00E1ci\u00F3j\u00E1nak enged\u00E9lyez\u00E9se +Allow\ users\ to\ sign\ up=Felhasználók regisztrációjának engedélyezése diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_it.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_it.properties index 7738605d78cf..84ff07b1a78b 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_it.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_ja.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_ja.properties index 0e2419458cef..d66eb46a2862 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_ja.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Allow\ users\ to\ sign\ up=\u30e6\u30fc\u30b6\u30fc\u306b\u30b5\u30a4\u30f3\u30a2\u30c3\u30d7\u3092\u8a31\u53ef -Enable\ captcha\ on\ sign\ up=\u30b5\u30a4\u30f3\u30a2\u30c3\u30d7\u306b\u30ad\u30e3\u30d7\u30c1\u30e3\u3092\u4f7f\u7528\u3059\u308b -Captcha\ Support=\u30ad\u30e3\u30d7\u30c1\u30e3\u306e\u30b5\u30dd\u30fc\u30c8 +Allow\ users\ to\ sign\ up=ユーザーã«ã‚µã‚¤ãƒ³ã‚¢ãƒƒãƒ—ã‚’è¨±å¯ +Enable\ captcha\ on\ sign\ up=サインアップã«ã‚­ãƒ£ãƒ—ãƒãƒ£ã‚’使用ã™ã‚‹ +Captcha\ Support=キャプãƒãƒ£ã®ã‚µãƒãƒ¼ãƒˆ diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_ko.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_ko.properties index 030725fbd71d..a5ead872ac96 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_ko.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_ko.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Allow\ users\ to\ sign\ up=\uC0AC\uC6A9\uC790\uC758 \uAC00\uC785 \uD5C8\uC6A9 +Allow\ users\ to\ sign\ up=사용ìžì˜ 가입 허용 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_lt.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_lt.properties index e8db4a8bf33d..f21b3e9e2692 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_lt.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_lt.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Allow\ users\ to\ sign\ up=Leisti vartotojam u\u017Esiregistruoti +Allow\ users\ to\ sign\ up=Leisti vartotojam užsiregistruoti diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_pl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_pl.properties index 1b1b2f423f64..4dd76192832a 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_pl.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_pl.properties @@ -19,6 +19,6 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Allow\ users\ to\ sign\ up=Pozw\u00F3l u\u017Cytkownikom na rejestrowanie si\u0119 -Enable\ captcha\ on\ sign\ up=W\u0142\u0105cz captcha podczas rejestracji +Allow\ users\ to\ sign\ up=Pozwól użytkownikom na rejestrowanie siÄ™ +Enable\ captcha\ on\ sign\ up=WÅ‚Ä…cz captcha podczas rejestracji Captcha\ Support=Wsparcie dla captcha diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_pt_BR.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_pt_BR.properties index a7d5d27351a1..320f8dee4f35 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_pt_BR.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Allow\ users\ to\ sign\ up=Permitir que os usu\u00e1rios se inscrevam +Allow\ users\ to\ sign\ up=Permitir que os usuários se inscrevam Enable\ captcha\ on\ sign\ up=Habilitar captcha no registro Captcha\ Support=Suporte ao Captcha diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_ru.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_ru.properties index f1cd2d4157bf..83fae22e7c3d 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_ru.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Allow\ users\ to\ sign\ up=\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044C \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044E \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0435\u0439 +Allow\ users\ to\ sign\ up=Разрешить региÑтрацию пользователей diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sk.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sk.properties index b34dbe04c3da..0c40e2a4b227 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sk.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Allow\ users\ to\ sign\ up=Povo\u013E pou\u017E\u00EDvate\u013Eom zaregistrova\u0165 sa +Allow\ users\ to\ sign\ up=Povoľ používateľom zaregistrovaÅ¥ sa diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sr.properties index 7da135998fce..c725f5e7f5db 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Enable\ captcha\ on\ sign\ up=\u0422\u0440\u0430\u0436\u0438 Captcha \u043F\u0440\u0438\u043B\u0438\u043A\u043E\u043C \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0458\u0435 -Captcha\ Support=\u041F\u043E\u0434\u0440\u0448\u043A\u0430 \u0437\u0430 Captcha -Allow\ users\ to\ sign\ up=\u0414\u043E\u0437\u0432\u043E\u043B\u0438 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438\u043C\u0430 \u0434\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0443\u0458\u0443 +Enable\ captcha\ on\ sign\ up=Тражи Captcha приликом региÑтрације +Captcha\ Support=Подршка за Captcha +Allow\ users\ to\ sign\ up=Дозволи кориÑницима да региÑтрују diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sv_SE.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sv_SE.properties index 35ee53703a72..0c277fa60127 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sv_SE.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Allow\ users\ to\ sign\ up=Till\u00E5t anv\u00E4ndare att anm\u00E4la sig +Allow\ users\ to\ sign\ up=TillÃ¥t användare att anmäla sig diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_tr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_tr.properties index cc55b89a7fd2..cdf6a4d5cf51 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_tr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Allow\ users\ to\ sign\ up=Kullan\u0131c\u0131lar\u0131n kaydolmas\u0131na izin ver +Allow\ users\ to\ sign\ up=Kullanıcıların kaydolmasına izin ver diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_uk.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_uk.properties index b8d287863123..32d9768ff76c 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_uk.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Allow\ users\ to\ sign\ up=\u0414\u043E\u0437\u0432\u043E\u043B\u0438\u0442\u0438 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430\u043C \u0440\u0435\u0454\u0441\u0442\u0440\u0443\u0432\u0430\u0442\u0438\u0441\u044F +Allow\ users\ to\ sign\ up=Дозволити кориÑтувачам реєÑтруватиÑÑ diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_zh_TW.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_zh_TW.properties index d509a93741dd..e21916a2245f 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_zh_TW.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_zh_TW.properties @@ -21,6 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Allow\ users\ to\ sign\ up=\u5141\u8a31\u4f7f\u7528\u8005\u8a3b\u518a -Enable\ captcha\ on\ sign\ up=\u8a3b\u518a\u6642\u4f7f\u7528 CAPTCHA -Captcha\ Support=CAPTCHA \u652f\u63f4 +Allow\ users\ to\ sign\ up=å…許使用者註冊 +Enable\ captcha\ on\ sign\ up=註冊時使用 CAPTCHA +Captcha\ Support=CAPTCHA æ”¯æ´ diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_bg.properties index 6fe330a0341e..1698a484da6b 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_bg.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Create\ First\ Admin\ User=\ - \u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u044a\u0440\u0432\u0438\u044f \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b-\u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440 + Създаване на Ð¿ÑŠÑ€Ð²Ð¸Ñ Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»-админиÑтратор diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_da.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_da.properties index 04ac43119ff0..496ca7aac0b3 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_da.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Create\ First\ Admin\ User=Opret Den F\u00f8rste Admin Bruger +Create\ First\ Admin\ User=Opret Den Første Admin Bruger diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_it.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_it.properties index cbdf4040a1c6..4f1be8588292 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_it.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_ja.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_ja.properties index 935d69865e4e..8b9d670c9da2 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_ja.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Create\ First\ Admin\ User=\u7ba1\u7406\u8005\u306e\u4f5c\u6210 +Create\ First\ Admin\ User=管ç†è€…ã®ä½œæˆ diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_pt_BR.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_pt_BR.properties index 068f8c295b0e..4fa9bac72cd9 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_pt_BR.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Create\ First\ Admin\ User=Criar o primeiro usu\u00e1rio administrador +Create\ First\ Admin\ User=Criar o primeiro usuário administrador diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_sr.properties index ac2c4ccf6ad3..706c335986a8 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_sr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Create\ First\ Admin\ User=\u041A\u0440\u0435\u0438\u0440\u0430\u0458 \u043F\u0440\u0432\u043E\u0433 \u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0442\u043E\u0440\u0430 +Create\ First\ Admin\ User=Креирај првог админиÑтратора diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_zh_TW.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_zh_TW.properties index 8b2aac6cff7a..0b4ac68d44a4 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_zh_TW.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Create\ First\ Admin\ User=\u5efa\u7acb\u7b2c\u4e00\u4f4d\u7ba1\u7406\u54e1\u4f7f\u7528\u8005 +Create\ First\ Admin\ User=建立第一ä½ç®¡ç†å“¡ä½¿ç”¨è€… diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_bg.properties index 8542ec0a26ca..776e5328a140 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_bg.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_bg.properties @@ -21,13 +21,13 @@ # THE SOFTWARE. Name=\ - \u0418\u043c\u0435 + Име Users=\ - \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 + Потребители blurb=\ - \u0422\u0435\u0437\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0432\u043f\u0438\u0448\u0430\u0442 \u0432 Jenkins. \u0422\u043e\u0432\u0430 \u0435 \u0441\u044a\u043a\u0440\u0430\u0442\u0435\u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430\ - \u0442\u043e\u0437\u0438 \u0441\u043f\u0438\u0441\u044a\u043a, \u043a\u043e\u0439\u0442\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430 \u0441\u044a\u0449\u043e \u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e\ - \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d\u0438\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438, \u043a\u043e\u0438\u0442\u043e \u043d\u044f\u043a\u043e\u0433\u0430 \u0441\u0430 \u043f\u043e\u0434\u0430\u0432\u0430\u043b\u0438 \u043f\u0440\u043e\u043c\u0435\u043d\u0438 \u043f\u043e \u043d\u044f\u043a\u043e\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0438 \u0438\ - \u043d\u044f\u043c\u0430\u0442 \u0434\u0438\u0440\u0435\u043a\u0442\u0435\u043d \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e Jenkins. + Тези потребители могат да Ñе впишат в Jenkins. Това е Ñъкратена верÑÐ¸Ñ Ð½Ð°\ + този ÑпиÑък, който Ñъдържа Ñъщо и автоматично\ + Ñъздадените потребители, които нÑкога Ñа подавали промени по нÑкои проекти и\ + нÑмат директен доÑтъп до Jenkins. User\ Id=\ - \u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 + Идентификатор diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_da.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_da.properties index 49d6d9fe193c..ad6da23cafeb 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_da.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_da.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Disse brugere kan logge p\u00e5 Jenkins. Dette er en delm\u00e6ngde af denne liste +blurb=Disse brugere kan logge pÃ¥ Jenkins. Dette er en delmængde af denne liste Name=Navn diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_de.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_de.properties index cdbc9a1a8226..1597a62360f2 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_de.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_de.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. blurb=\ - Diese Benutzer k\u00F6nnen sich bei Jenkins anmelden. Dies ist eine Untermenge jener Liste, die zus\u00E4tzlich automatisch angelegte Benutzer enthalten kann. Diese Benutzer haben zwar Commits zu Projekten beigetragen, d\u00FCrfen sich aber nicht direkt bei Jenkins anmelden. + Diese Benutzer können sich bei Jenkins anmelden. Dies ist eine Untermenge jener Liste, die zusätzlich automatisch angelegte Benutzer enthalten kann. Diese Benutzer haben zwar Commits zu Projekten beigetragen, dürfen sich aber nicht direkt bei Jenkins anmelden. Name=Name User\ Id=Benutzer-ID Users=Benutzer diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_es.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_es.properties index 8c5b73e2c0ed..929a0d944407 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_es.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_es.properties @@ -22,8 +22,8 @@ blurb=\ Estos usuarios pueden entrar en Jenkins. Este es un subconjunto de esta lista, \ - que tambien incluyen usuarios creados autom\u00e1ticamente porque hayan hecho ''commits'' a proyectos. \ - Los usuarios creados autom\u00e1ticamente no tienen acceso directo a Jenkins. + que tambien incluyen usuarios creados automáticamente porque hayan hecho ''commits'' a proyectos. \ + Los usuarios creados automáticamente no tienen acceso directo a Jenkins. Name=Nombre Users=Usuarios User\ Id=ID usuario diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_fr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_fr.properties index a9b251eb4d28..6f8d0f1c20ab 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_fr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_fr.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Users=Utilisateurs -blurb=Ces utilisateurs peuvent se logguer sur Jenkins. C''est le groupe contenant cette liste, qui contient \u00E9galement les utilisateurs cr\u00E9\u00E9s automatiquement qui ont simplement fait des commits sur certains projets et n''ont pas d''acc\u00E8s direct \u00E0 Jenkins. +blurb=Ces utilisateurs peuvent se logguer sur Jenkins. C''est le groupe contenant cette liste, qui contient également les utilisateurs créés automatiquement qui ont simplement fait des commits sur certains projets et n''ont pas d''accès direct à Jenkins. Name=Nom diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_hu.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_hu.properties index fb854d2f2133..b468dab54900 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_hu.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_hu.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Name=N\u00E9v -User\ Id=Felhaszn\u00E1l\u00F3 azonos\u00EDt\u00F3 -Users=Felhaszn\u00E1l\u00F3k +Name=Név +User\ Id=Felhasználó azonosító +Users=Felhasználók diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_it.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_it.properties index 0428dbb087ab..5ac7a494e5d2 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_it.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,7 +21,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Questi utenti possono accedere a Jenkins. Questo è un sottoinsieme \ +blurb=Questi utenti possono accedere a Jenkins. Questo è un sottoinsieme \ di quest''elenco, che contiene anche gli \ utenti creati automaticamente che hanno solamente eseguito dei commit in \ alcuni progetti e non hanno accesso diretto a Jenkins. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_ja.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_ja.properties index 4c7e71d1ebf6..e1a59d0325f0 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_ja.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_ja.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -User\ Id=\u30e6\u30fc\u30b6\u30fcID +User\ Id=ユーザーID blurb=\ - \u3053\u308c\u3089\u306e\u30e6\u30fc\u30b6\u30fc\u306fJenkins\u306b\u30ed\u30b0\u30a4\u30f3\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u3053\u308c\u306f\u3001Jenkins\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3066\u3044\u306a\u3044\u3051\u308c\u3069\u3082 \ - \u3044\u304f\u3064\u304b\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306b\u30b3\u30df\u30c3\u30c8\u3059\u308b\u3068\u81ea\u52d5\u7684\u306b\u4f5c\u6210\u3055\u308c\u308b\u30e6\u30fc\u30b6\u30fc\u3092\u542b\u3080\u3053\u306e\u30ea\u30b9\u30c8\u306e\u4e00\u90e8\u3067\u3059\u3002 -Name=\u540d\u524d -Users=\u30e6\u30fc\u30b6\u30fc + ã“れらã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã¯Jenkinsã«ãƒ­ã‚°ã‚¤ãƒ³ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ã“ã‚Œã¯ã€Jenkinsã«ã‚¢ã‚¯ã‚»ã‚¹ã—ã¦ã„ãªã„ã‘ã‚Œã©ã‚‚ \ + ã„ãã¤ã‹ã®ãƒ—ロジェクトã«ã‚³ãƒŸãƒƒãƒˆã™ã‚‹ã¨è‡ªå‹•çš„ã«ä½œæˆã•ã‚Œã‚‹ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’å«ã‚€ã“ã®ãƒªã‚¹ãƒˆã®ä¸€éƒ¨ã§ã™ã€‚ +Name=åå‰ +Users=ユーザー diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_ko.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_ko.properties index a115fcda028a..e8ce68caf550 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_ko.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_ko.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\uc774\ub984 -User\ Id=\uC0AC\uC6A9\uC790 ID -Users=\uC0AC\uC6A9\uC790 -blurb=\uC774 \uC0AC\uC6A9\uC790\uB4E4\uC740 Jenkins \uC5D0 \uB85C\uADF8\uC778 \uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4. \uC774 \uC0AC\uC6A9\uC790\uB4E4\uC740 \uAC1C\uBC1C\uC790 \uBAA9\uB85D\uC758 \uC77C\uBD80\uC785\uB2C8\uB2E4. \uAC1C\uBC1C\uC790 \uBAA9\uB85D\uC740 \uB2E8\uC9C0 \uCEE4\uBC0B\uB9CC \uD558\uACE0 \uC9C1\uC811 Jenkins \uC5D0 \uC811\uC18D\uD558\uC9C0 \uC54A\uC740 \uC790\uB3D9 \uC0DD\uC131\uB41C \uC0AC\uB78C\uB4E4\uC744 \uD3EC\uD568\uD569\uB2C8\uB2E4. +Name=ì´ë¦„ +User\ Id=ì‚¬ìš©ìž ID +Users=ì‚¬ìš©ìž +blurb=ì´ ì‚¬ìš©ìžë“¤ì€ Jenkins ì— ë¡œê·¸ì¸ í•  수 있습니다. ì´ ì‚¬ìš©ìžë“¤ì€ ê°œë°œìž ëª©ë¡ì˜ ì¼ë¶€ìž…니다. ê°œë°œìž ëª©ë¡ì€ 단지 커밋만 하고 ì§ì ‘ Jenkins ì— ì ‘ì†í•˜ì§€ ì•Šì€ ìžë™ ìƒì„±ëœ ì‚¬ëžŒë“¤ì„ í¬í•¨í•©ë‹ˆë‹¤. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_nb_NO.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_nb_NO.properties index 7edbf30cf411..7f5398610a53 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_nb_NO.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_nb_NO.properties @@ -23,4 +23,4 @@ Name=Navn User\ Id=Bruker-id Users=Brukere -blurb=Disse brukerne kan logge inn p\u00e5 Jenkins. De er et subsett av dene listen, som ogs\u00e5 inneholder autogenererte brukere som egentlig bare har sjekket inn p\u00e5 noen prosjekter og ikke har direkte jenkins-tilgang. +blurb=Disse brukerne kan logge inn pÃ¥ Jenkins. De er et subsett av dene listen, som ogsÃ¥ inneholder autogenererte brukere som egentlig bare har sjekket inn pÃ¥ noen prosjekter og ikke har direkte jenkins-tilgang. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pl.properties index 1d1ea7807232..b0eb4a0d4bea 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pl.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pl.properties @@ -19,7 +19,7 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Users=U\u017Cytkownicy +Users=Użytkownicy # These users can log into Jenkins. This is a sub set of this list, \ Name=Nazwa User\ Id=Identyfikator diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pt_BR.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pt_BR.properties index cb44009c1157..6bce6972ad45 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pt_BR.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pt_BR.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Name=Nome -Users=Usu\u00E1rios -blurb=Esses usu\u00E1rios podem entrar no Jenkins. Este \u00E9 um sub-conjunto desta lista, que tamb\u00E9m cont\u00E9m os usu\u00E1rios criados de forma autom\u00E1tica ao executarem alguma confirma\u00E7\u00E3o nos projetos que o Jenkins tem acesso. -User\ ID=Identifica\u00E7\u00E3o do usu\u00E1rio +Users=Usuários +blurb=Esses usuários podem entrar no Jenkins. Este é um sub-conjunto desta lista, que também contém os usuários criados de forma automática ao executarem alguma confirmação nos projetos que o Jenkins tem acesso. +User\ ID=Identificação do usuário diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pt_PT.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pt_PT.properties index e30a397502bc..ea787bb6903e 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pt_PT.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pt_PT.properties @@ -3,4 +3,4 @@ Name=Nome User\ Id=Id Utilizador Users=Utilizadores -blurb=Estes utilizadores conseguem autenticar-se no Jenkins. Este \u00E9 um sub conjunto desta lista, que tamb\u00E9m cont\u00E9m utilizadores auto-criados que s\u00F3 realizaram alguns commits nalgum projecto e n\u00E3o t\u00EAm acesso directo no Jenkins. +blurb=Estes utilizadores conseguem autenticar-se no Jenkins. Este é um sub conjunto desta lista, que também contém utilizadores auto-criados que só realizaram alguns commits nalgum projecto e não têm acesso directo no Jenkins. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_ru.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_ru.properties index 91fe21bf087a..cb4cb571d3c1 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_ru.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u0418\u043c\u044f -User\ Id=ID \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f -Users=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 -blurb=\u041f\u0435\u0440\u0435\u0447\u0438\u0441\u043b\u0435\u043d\u043d\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 \u043c\u043e\u0433\u0443\u0442 \u0432\u0445\u043e\u0434\u0438\u0442\u044c \u0432 Jenkins. \u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u043e\u0434\u043c\u043d\u043e\u0436\u0435\u0441\u0442\u0432\u043e\u043c \u043f\u043e\u043b\u043d\u043e\u0433\u043e \u0441\u043f\u0438\u0441\u043a\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0432 \u0434\u043e\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0432\u043d\u043e\u0441\u0438\u043b\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 \u043f\u0440\u043e\u0435\u043a\u0442\u044b (\u0434\u0435\u043b\u0430\u043b\u0438 commit \u0432 SCM), \u0438 \u043c\u043e\u0433\u0443\u0442 \u043d\u0435 \u0438\u043c\u0435\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u0434\u0430\u043d\u043d\u043e\u043c\u0443 \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440\u0443 Jenkins. +Name=Ð˜Ð¼Ñ +User\ Id=ID Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ +Users=Пользователи +blurb=ПеречиÑленные пользователи могут входить в Jenkins. Указанный ÑпиÑок ÑвлÑетÑÑ Ð¿Ð¾Ð´Ð¼Ð½Ð¾Ð¶ÐµÑтвом полного ÑпиÑка пользователей, который в дополнение Ñодержит автоматичеÑки Ñозданных пользователей, которые вноÑили Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð² проекты (делали commit в SCM), и могут не иметь доÑтупа к данному ÑкземплÑру Jenkins. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_sk.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_sk.properties index 3556af60ea7d..8cf51fa4f242 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_sk.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_sk.properties @@ -2,4 +2,4 @@ Name=Meno User\ Id=Prihlasovacie meno -Users=Pou\u017E\u00EDvatelia +Users=Používatelia diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_sr.properties index ee02493ef6d4..a5e2014b3539 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_sr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_sr.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Users=\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438 +Users=КориÑници blurb=\ -\u041E\u0432\u0438 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0432\u0438 \u043C\u043E\u0433\u0443 \u0441\u0435 \u043F\u0440\u0438\u0458\u0430\u0432\u0438\u0442\u0438 \u043D\u0430 Jenkins, \u0448\u0442\u043E \u0458\u0435 \u043F\u043E\u0434\u0441\u043A\u0443\u043F \u043E\u0432\u043E\u0433 \u0441\u043F\u0438\u0441\u043A\u0430, \ -\u043A\u043E\u0458\u0438 \u0441\u0430\u0434\u0440\u0436\u0438 \u0438 \u0430\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0438-\u043A\u0440\u0435\u0438\u0440\u0430\u043D\u0435 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0435 \u0431\u0435\u0437 \u043A\u0438\u0440\u0435\u043A\u043D\u043E\u0433 \u043F\u0440\u0438\u0441\u0442\u0443\u043F\u0430 \u043D\u0430 Jenkins. -User\ Id=\u0418\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u043E\u043D\u0438 \u0431\u0440\u043E\u0458 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430 -Name=\u0418\u043C\u0435 +Ови кориÑниви могу Ñе пријавити на Jenkins, што је подÑкуп овог ÑпиÑка, \ +који Ñадржи и аутоматÑки-креиране кориÑнике без кирекног приÑтупа на Jenkins. +User\ Id=Идентификациони број кориÑника +Name=Име diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_tr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_tr.properties index 3df86507caa3..53bbca64237f 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_tr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_tr.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. blurb=\ -Bu kullan\u0131c\u0131vlar Jenkins''de oturum a\u00e7abilir. Bu liste, buradakinin bir \u00fcst k\u00fcmesidir, \ -ayn\u0131 zamanda baz\u0131 projelerde commit i\u015flemi yapan, fakat direk Jenkins eri\u015fimi olmayan ve otomatik olarak olu\u015Fturulan \ -kullan\u0131c\u0131lar\u0131 da i\u00e7erir -Name=\u0130sim +Bu kullanıcıvlar Jenkins''de oturum açabilir. Bu liste, buradakinin bir üst kümesidir, \ +aynı zamanda bazı projelerde commit iÅŸlemi yapan, fakat direk Jenkins eriÅŸimi olmayan ve otomatik olarak oluÅŸturulan \ +kullanıcıları da içerir +Name=Ä°sim diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_uk.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_uk.properties index 7374b2c6ed17..62c8cbfa7c2a 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_uk.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_uk.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u0406\u043C''\u044F -Users=\u041A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456 +Name=Ім''Ñ +Users=КориÑтувачі diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_zh_TW.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_zh_TW.properties index 78a0de4341b5..ce0ab5809004 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_zh_TW.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_zh_TW.properties @@ -21,9 +21,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Users=\u4f7f\u7528\u8005 +Users=使用者 blurb=\ - \u9019\u4e9b\u4f7f\u7528\u8005\u53ef\u4ee5\u767b\u5165 Jenkins\u3002\u9019\u662f\u9019\u4efd\u6e05\u55ae\u7684\u5b50\u96c6\u5408\uff0c\ - \u8a72\u6e05\u55ae\u5305\u542b\u81ea\u52d5\u5efa\u7acb\uff0c\u53ea\u5728\u67d0\u4e9b\u5c08\u6848\u4e0a Commit \u6771\u897f\u7684\u4f7f\u7528\u8005\uff0c\u9019\u985e\u4f7f\u7528\u8005\u4e0d\u80fd\u76f4\u63a5\u4f7f\u7528 Jenkins\u3002 -User\ Id=\u4f7f\u7528\u8005\u8b58\u5225\u78bc -Name=\u540d\u7a31 + 這些使用者å¯ä»¥ç™»å…¥ Jenkins。這是這份清單的å­é›†åˆï¼Œ\ + 該清單包å«è‡ªå‹•å»ºç«‹ï¼Œåªåœ¨æŸäº›å°ˆæ¡ˆä¸Š Commit æ±è¥¿çš„使用者,這類使用者ä¸èƒ½ç›´æŽ¥ä½¿ç”¨ Jenkins。 +User\ Id=使用者識別碼 +Name=å稱 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_bg.properties index 78ad3489c1df..6c5169616c00 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_bg.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. sign\ up=\ - \u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043d\u0435 + РегиÑтриране diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_el.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_el.properties index dd26f78f4b24..54847bf68680 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_el.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_el.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -sign\ up=\u03B5\u03B3\u03B3\u03C1\u03B1\u03C6\u03AE +sign\ up=εγγÏαφή diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_fi.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_fi.properties index 0fdb85fc6b11..c50cd905039e 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_fi.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_fi.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -sign\ up=rekister\u00F6idy +sign\ up=rekisteröidy diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_fr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_fr.properties index 56e0c5ab5643..13d1c01db5f1 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_fr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -sign\ up=Créer un compte +sign\ up=Créer un compte diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_he.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_he.properties index 018975ba087b..c033a40e2355 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_he.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -sign\ up=\u05D4\u05E6\u05D8\u05E8\u05E3 +sign\ up=הצטרף diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_hu.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_hu.properties index 449379994337..0d886b958429 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_hu.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -sign\ up=regisztr\u00E1ci\u00F3 +sign\ up=regisztráció diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_it.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_it.properties index 1ebf3855ebd9..28b0c1d524b4 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_it.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ja.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ja.properties index 938de1f913af..2221aa35eff2 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ja.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -sign\ up=\u30b5\u30a4\u30f3\u30a2\u30c3\u30d7 +sign\ up=サインアップ diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ko.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ko.properties index a36d990f3a11..3b31915b15ad 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ko.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -sign\ up=\uAC00\uC785 +sign\ up=가입 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_lv.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_lv.properties index f62c827a7805..5d8f5cf3a86b 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_lv.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_lv.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -sign\ up=Piere\u0123istr\u0113t ies +sign\ up=PiereÄ£istrÄ“t ies diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_pl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_pl.properties index 72d26aa862ba..bc2fc114336e 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_pl.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -sign\ up=Za\u0142\u00F3\u017C konto +sign\ up=Załóż konto diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ro.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ro.properties index 4a99dc196f3c..90d0b9752a5e 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ro.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ro.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -sign\ up=\u00CEnregistrare +sign\ up=ÃŽnregistrare diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ru.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ru.properties index cdea1d47cf4c..a0ccae1fb705 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ru.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -sign\ up=\u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f +sign\ up=зарегиÑтрироватьÑÑ diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sk.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sk.properties index d8ca9236eaff..e45a960d71fe 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sk.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -sign\ up=Registr\u00E1cia +sign\ up=Registrácia diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sr.properties index a98e2bb9c38d..7e2c0b5fe140 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -sign\ up=\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0458\u0430 +sign\ up=региÑтрација diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_tr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_tr.properties index 75300469bcad..4330356591b5 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_tr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -sign\ up=kay\u0131t ol +sign\ up=kayıt ol diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_uk.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_uk.properties index 6c2cb850cd2b..d83b50f4ce94 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_uk.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -sign\ up=\u041F\u0440\u0438\u0454\u0434\u043D\u0430\u0442\u0438\u0441\u044C +sign\ up=ПриєднатиÑÑŒ diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_zh_TW.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_zh_TW.properties index 6dbe8bd2f4da..14fc01edad30 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_zh_TW.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -sign\ up=\u8A3B\u518A +sign\ up=註冊 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_bg.properties index 0c64b93b0eb4..42fbc9ce0e28 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_bg.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Back\ to\ Dashboard=\ - \u041a\u044a\u043c \u043e\u0441\u043d\u043e\u0432\u043d\u0438\u044f \u0435\u043a\u0440\u0430\u043d + Към оÑÐ½Ð¾Ð²Ð½Ð¸Ñ ÐµÐºÑ€Ð°Ð½ Create\ User=\ - \u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b + Създаване на потребител Manage\ Jenkins=\ - \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 Jenkins + Управление на Jenkins diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_de.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_de.properties index 3b8dcff50c18..ecb39fc36a38 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_de.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_de.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Zur\u00fcck zur \u00dcbersicht +Back\ to\ Dashboard=Zurück zur Ãœbersicht Manage\ Jenkins=Jenkins verwalten Create\ User=Neuen Benutzer anlegen diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_fr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_fr.properties index b38161bf6288..6566f905cb38 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_fr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_fr.properties @@ -22,4 +22,4 @@ Back\ to\ Dashboard=Retour au tableau de bord Manage\ Jenkins=Administrer Jenkins -Create\ User=Cr\u00e9er un utilisateur +Create\ User=Créer un utilisateur diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_hu.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_hu.properties index e1631dbeb0c6..a31c0466b53e 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_hu.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_hu.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Back\ to\ Dashboard=Vissza az Ir\u00E1ny\u00EDt\u00F3pultra -Create\ User=Felhaszn\u00E1l\u00F3 L\u00E9trehoz\u00E1s -Manage\ Jenkins=Jenkins Kezel\u00E9se +Back\ to\ Dashboard=Vissza az Irányítópultra +Create\ User=Felhasználó Létrehozás +Manage\ Jenkins=Jenkins Kezelése diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_it.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_it.properties index 19e42f47ff9a..89e5d3475ca9 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_it.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_ja.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_ja.properties index bf7d7f43c4d3..b75769cbbd88 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_ja.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u3078\u623b\u308b -Manage\ Jenkins=Jenkins\u306e\u7ba1\u7406 -Create\ User=\u30e6\u30fc\u30b6\u30fc\u4f5c\u6210 +Back\ to\ Dashboard=ダッシュボードã¸æˆ»ã‚‹ +Manage\ Jenkins=Jenkinsã®ç®¡ç† +Create\ User=ãƒ¦ãƒ¼ã‚¶ãƒ¼ä½œæˆ diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_ko.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_ko.properties index 298b1c80c317..05e4dd119475 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_ko.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_ko.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\ub300\uc2dc\ubcf4\ub4dc\ub85c \ub3cc\uc544\uac00\uae30 -Manage\ Jenkins=Jenkins \uad00\ub9ac -Create\ User=\uc0ac\uc6a9\uc790 \uc0dd\uc131 +Back\ to\ Dashboard=대시보드로 ëŒì•„가기 +Manage\ Jenkins=Jenkins 관리 +Create\ User=ì‚¬ìš©ìž ìƒì„± diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_nl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_nl.properties index c1ca6776f657..0cf557cf9e40 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_nl.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_nl.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Create\ User=Cree\u00EBr gebruiker +Create\ User=Creeër gebruiker Manage\ Jenkins=Beheer Jenkins diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_pl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_pl.properties index 3dbafb505c11..7a3df9d86e5b 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_pl.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_pl.properties @@ -19,6 +19,6 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Powr\u00F3t do tablicy -Manage\ Jenkins=Zarz\u0105dzaj Jenkinsem -Create\ User=Stw\u00F3rz u\u017Cytkownika +Back\ to\ Dashboard=Powrót do tablicy +Manage\ Jenkins=ZarzÄ…dzaj Jenkinsem +Create\ User=Stwórz użytkownika diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_pt_BR.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_pt_BR.properties index d7c175a0bb67..b706bc9824c5 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_pt_BR.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_pt_BR.properties @@ -22,5 +22,5 @@ Back\ to\ Dashboard=Voltar ao painel principal Manage\ Jenkins=Gerenciar o Jenkins -Create\ User=Criar usu\u00E1rio -Users=Usu\u00E1rios +Create\ User=Criar usuário +Users=Usuários diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_ru.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_ru.properties index ce692896a4e9..34ef6bfcae53 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u0414\u043e\u043c\u043e\u0439 -Manage\ Jenkins=\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c Jenkins -Create\ User=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f +Back\ to\ Dashboard=Домой +Manage\ Jenkins=ÐаÑтроить Jenkins +Create\ User=Создать Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_sk.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_sk.properties index c830a2947b15..1ddbf0b37ac7 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_sk.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_sk.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Back\ to\ Dashboard=Nasp\u00E4t na Dashboard -Create\ User=Vytvor pou\u017E\u00EDvate\u013Ea +Back\ to\ Dashboard=Naspät na Dashboard +Create\ User=Vytvor používateľa Manage\ Jenkins=Spravuj Jenkins diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_sr.properties index 13d517fbbc52..74b861e4f60c 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_sr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Manage\ Jenkins=\u0423\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 Jenkins-\u043E\u043C -Create\ User=\u041A\u0440\u0435\u0438\u0440\u0430\u0458 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430 -Back\ to\ Dashboard=\u041D\u0430\u0437\u0430\u0434 \u043A\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043D\u0443 \u043F\u0430\u043D\u0435\u043B\u0443 +Manage\ Jenkins=Управљање Jenkins-ом +Create\ User=Креирај кориÑника +Back\ to\ Dashboard=Ðазад ка контролну панелу diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_sv_SE.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_sv_SE.properties index e93deb4f961a..4a82b74e55ee 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_sv_SE.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_sv_SE.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Create\ User=Skapa anv\u00e4ndare +Create\ User=Skapa användare Manage\ Jenkins=Hantera Jenkins diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_tr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_tr.properties index f7f1feac06ab..b5e0497bea12 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_tr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_tr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Kontrol Merkezi''ne D\u00f6n -Manage\ Jenkins=\u7cfb\u7edf\u7ba1\u7406 -Create\ User=Kullan\u0131c\u0131 olu\u015ftur +Back\ to\ Dashboard=Kontrol Merkezi''ne Dön +Manage\ Jenkins=ç³»ç»Ÿç®¡ç† +Create\ User=Kullanıcı oluÅŸtur diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_uk.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_uk.properties index 8ef83e4ae780..937e7739d24a 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_uk.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_uk.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u041F\u043E\u0432\u0435\u0440\u043D\u0443\u0442\u0438\u0441\u044F \u0434\u043E \u041F\u0430\u043D\u0435\u043B\u0456 \u041A\u0435\u0440\u0443\u0432\u0430\u043D\u043D\u044F -Create\ User=\u0421\u0442\u0432\u043E\u0440\u0438\u0442\u0438 \u041A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 -Manage\ Jenkins=\u041A\u0435\u0440\u0443\u0432\u0430\u0442\u0438 +Back\ to\ Dashboard=ПовернутиÑÑ Ð´Ð¾ Панелі ÐšÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ +Create\ User=Створити КориÑтувача +Manage\ Jenkins=Керувати diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_zh_TW.properties index f1a152920de4..023b6ffefdc8 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_zh_TW.properties @@ -21,7 +21,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Create\ User=\u5efa\u7acb\u4f7f\u7528\u8005 -Back\ to\ Dashboard=\u8fd4\u56de\u8cc7\u8a0a\u4e3b\u9801 -Manage\ Jenkins=\u7ba1\u7406 Jenkins -Users=\u4f7f\u7528\u8005 +Create\ User=建立使用者 +Back\ to\ Dashboard=è¿”å›žè³‡è¨Šä¸»é  +Manage\ Jenkins=ç®¡ç† Jenkins +Users=使用者 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_bg.properties index 00b146e5d08b..4c8bd3015ccc 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_bg.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Sign\ up=\ - \u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043d\u0435 + РегиÑтриране diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_it.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_it.properties index 229f3ac4dbe1..3caad06b7f49 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_it.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_ja.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_ja.properties index 4c7d697adfd0..3f9db65650cc 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_ja.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Sign\ up=\u30b5\u30a4\u30f3\u30a2\u30c3\u30d7 +Sign\ up=サインアップ diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_sr.properties index f1315accaf12..e8a304545964 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_sr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Sign\ up=\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0458\u0430 +Sign\ up=РегиÑтрација diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_tr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_tr.properties index ac4754862927..ac9a2006200a 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_tr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Sign\ up=Kay\u0131t ol +Sign\ up=Kayıt ol diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_zh_TW.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_zh_TW.properties index 4050e0e167f1..8e058f90f2b8 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_zh_TW.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Sign\ up=\u8a3b\u518a +Sign\ up=註冊 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_bg.properties index 00b146e5d08b..4c8bd3015ccc 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_bg.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Sign\ up=\ - \u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043d\u0435 + РегиÑтриране diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_it.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_it.properties index 8c20bc59b564..627f59f10c13 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_it.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,16 +22,16 @@ # THE SOFTWARE. A\ strong\ password\ is\ a\ long\ password\ that''s\ unique\ for\ every\ site.\ Try\ using\ a\ phrase\ with\ 5-6\ words\ for\ the\ best\ security.=\ - Una password robusta è una password lunga e diversa per ogni sito. Si provi \ + Una password robusta è una password lunga e diversa per ogni sito. Si provi \ ad utilizzare una frase con cinque o sei parole per ottenere un livello \ massimo di sicurezza. Create\ account=Crea account Create\ an\ account!=Crea un account! Create\ an\ account!\ [Jenkins]=Crea un account! [Jenkins] Email=Indirizzo di posta elettronica -Enter\ text\ as\ shown=Immettere il testo così come viene visualizzato +Enter\ text\ as\ shown=Immettere il testo così come viene visualizzato Full\ name=Nome completo -If\ you\ already\ have\ a\ Jenkins\ account,=Se si dispone già di un account \ +If\ you\ already\ have\ a\ Jenkins\ account,=Se si dispone già di un account \ Jenkins, Moderate=Moderata Password=Password diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_ja.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_ja.properties index 4c7d697adfd0..3f9db65650cc 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_ja.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Sign\ up=\u30b5\u30a4\u30f3\u30a2\u30c3\u30d7 +Sign\ up=サインアップ diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_pt_BR.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_pt_BR.properties index 6ae43a167244..6daf2de489ca 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_pt_BR.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_pt_BR.properties @@ -25,16 +25,16 @@ Enter\ text\ as\ shown=Entre\ com\ texto\ conforme\ mostrado Create\ account=Criar\ conta Weak=Fraca Create\ an\ account!\ [Jenkins]=Criar\ uma\ conta!\ [Jenkins] -Strength=For\u00E7a +Strength=Força Strong=Forte -please\ sign\ in.=Por\ favor\ d\u00EA\ entrada. +please\ sign\ in.=Por\ favor\ dê\ entrada. Show=Mostrar Moderate=Moderada Create\ an\ account!=Criar\ uma\ conta! -Username=Nome do usu\u00E1rio +Username=Nome do usuário Full\ name=Nome\ completo -A\ strong\ password\ is\ a\ long\ password\ that''s\ unique\ for\ every\ site.\ Try\ using\ a\ phrase\ with\ 5-6\ words\ for\ the\ best\ security.=Uma\ senha\ forte\ \u00E9\ uma\ senha\ longa\ que\ seja\ \u00FAnica\ para\ cada\ s\u00EDtio.\ Tente usar\ uma\ frase\ com\ 5\ a\ 6\ palavras\ para\ melhor\ seguran\u00E7a. +A\ strong\ password\ is\ a\ long\ password\ that''s\ unique\ for\ every\ site.\ Try\ using\ a\ phrase\ with\ 5-6\ words\ for\ the\ best\ security.=Uma\ senha\ forte\ é\ uma\ senha\ longa\ que\ seja\ única\ para\ cada\ sítio.\ Tente usar\ uma\ frase\ com\ 5\ a\ 6\ palavras\ para\ melhor\ segurança. Poor=Fraca Password=Senha Email=Email -If\ you\ already\ have\ a\ Jenkins\ account,=Voc\u00EA\ j\u00E1\ tem\ uma\ conta\ no\ Jenkins, +If\ you\ already\ have\ a\ Jenkins\ account,=Você\ já\ tem\ uma\ conta\ no\ Jenkins, diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_sr.properties index f1315accaf12..e8a304545964 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_sr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Sign\ up=\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0458\u0430 +Sign\ up=РегиÑтрација diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_tr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_tr.properties index ac4754862927..ac9a2006200a 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_tr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Sign\ up=Kay\u0131t ol +Sign\ up=Kayıt ol diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_zh_TW.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_zh_TW.properties index 39ccee0a6519..228515573fe8 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_zh_TW.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_zh_TW.properties @@ -20,20 +20,20 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -A\ strong\ password\ is\ a\ long\ password\ that's\ unique\ for\ every\ site.\ Try\ using\ a\ phrase\ with\ 5-6\ words\ for\ the\ best\ security.=\u5f37\u5065\u7684\u5bc6\u78bc\u64c1\u6709\u8f03\u591a\u5b57\u5143\u4e14\u5728\u4e0d\u540c\u7cfb\u7d71\u4f7f\u7528\u7368\u7279\u7684\u5bc6\u78bc\u3002\u8acb\u8a66\u8457\u4f7f\u7528\u5305\u542b 5~6 \u500b\u55ae\u5b57\u7684\u53e5\u5b50\u4ee5\u7372\u5f97\u6700\u4f73\u5b89\u5168\u6027\u3002 -If\ you\ already\ have\ a\ Jenkins\ account,=\u5982\u679c\u60a8\u6709 Jenkins \u5e33\u6236\u4e86\uff0c -Create\ an\ account\!\ [Jenkins]=\u5efa\u7acb\u65b0\u5e33\u6236\! [Jenkins] -Strength=\u5f37\u5ea6 -please\ sign\ in.=\u8acb\u767b\u5165\u3002 -Show=\u986f\u793a -Username=\u5e33\u865f -Create\ an\ account\!=\u5efa\u7acb\u65b0\u5e33\u6236\! -Enter\ text\ as\ shown=\u8f38\u5165\u986f\u793a\u7684\u6587\u5b57 -Weak=\u5f31 -Moderate=\u4e2d -Poor=\u5dee -Create\ account=\u5efa\u7acb\u5e33\u6236 -Email=\u96fb\u5b50\u4fe1\u7bb1 -Strong=\u5f37 -Password=\u5bc6\u78bc -Full\ name=\u5168\u540d +A\ strong\ password\ is\ a\ long\ password\ that's\ unique\ for\ every\ site.\ Try\ using\ a\ phrase\ with\ 5-6\ words\ for\ the\ best\ security.=å¼·å¥çš„密碼æ“有較多字元且在ä¸åŒç³»çµ±ä½¿ç”¨ç¨ç‰¹çš„å¯†ç¢¼ã€‚è«‹è©¦è‘—ä½¿ç”¨åŒ…å« 5~6 個單字的å¥å­ä»¥ç²å¾—最佳安全性。 +If\ you\ already\ have\ a\ Jenkins\ account,=如果您有 Jenkins 帳戶了, +Create\ an\ account\!\ [Jenkins]=建立新帳戶\! [Jenkins] +Strength=強度 +please\ sign\ in.=請登入。 +Show=顯示 +Username=帳號 +Create\ an\ account\!=建立新帳戶\! +Enter\ text\ as\ shown=輸入顯示的文字 +Weak=å¼± +Moderate=中 +Poor=å·® +Create\ account=建立帳戶 +Email=é›»å­ä¿¡ç®± +Strong=å¼· +Password=密碼 +Full\ name=å…¨å diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_bg.properties index 41525cba68ad..6dbd16fe0104 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_bg.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Success=\ - \u0423\u0441\u043f\u0435\u0445 + УÑпех description=\ - \u0412\u043f\u0438\u0441\u0430\u043d\u0438 \u0441\u0442\u0435. \u041a\u044a\u043c \u043e\u0441\u043d\u043e\u0432\u043d\u0430\u0442\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430. + ВпиÑани Ñте. Към оÑновната Ñтраница. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_da.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_da.properties index 42347cd0b2a7..1efd0619956e 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_da.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_da.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Success=Succes -description=Du er nu logget ind, G\u00e5 tilbage til oversigtssiden. +description=Du er nu logget ind, GÃ¥ tilbage til oversigtssiden. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_de.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_de.properties index 610a9e075492..068a569765be 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_de.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_de.properties @@ -1,2 +1,2 @@ Success=Erfolgreich -description=Sie sind jetzt angemeldet. Zurück zur übergeordneten Seite. +description=Sie sind jetzt angemeldet. Zurück zur übergeordneten Seite. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_fr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_fr.properties index 3c85ca9397c1..7b58728b192b 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_fr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Success=Succès -description=Vous êtes maintenant connecté. Retournez à la page principale. +Success=Succès +description=Vous êtes maintenant connecté. Retournez à la page principale. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_it.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_it.properties index 8205b3a8d4a1..f5b72251c238 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_it.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_ja.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_ja.properties index f981da90b1ca..d996590b3854 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_ja.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Success=\u6210\u529F -description=\u30ED\u30B0\u30A4\u30F3\u3057\u307E\u3057\u305F\u3002\u30C8\u30C3\u30D7\u306B\u623B\u308A\u307E\u3059\u3002 +Success=æˆåŠŸ +description=ログインã—ã¾ã—ãŸã€‚トップã«æˆ»ã‚Šã¾ã™ã€‚ diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_ko.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_ko.properties index de018185d836..ca9d697b39a4 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_ko.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_ko.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Success=\uC131\uACF5 -description=\uD604\uC7AC \uB85C\uADF8\uC778\uB418\uC5B4 \uC788\uC2B5\uB2C8\uB2E4. \uCCAB\uD398\uC774\uC9C0\uB85C \uB3CC\uC544\uAC00\uC2DC\uC2ED\uC624. +Success=성공 +description=현재 로그ì¸ë˜ì–´ 있습니다. 첫페ì´ì§€ë¡œ ëŒì•„가시십오. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_pt_BR.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_pt_BR.properties index 4ce0d363d7f1..c19881568f3c 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_pt_BR.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_pt_BR.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. # You are now logged in. Go back to the top page. -description=Descri\u00e7\u00e3o +description=Descrição Success=Sucesso diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_ru.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_ru.properties index a6b253087a45..b7f95b263f46 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_ru.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_ru.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Success=\u0412\u044b \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043b\u0438\u0441\u044c!. -description=\u0412\u044b \u0432\u043e\u0448\u043b\u0438 \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0443, \u043c\u043e\u0436\u0435\u0442\u0435 \u0432\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f \u043d\u0430 \u0433\u043b\u0430\u0432\u043d\u0443\u044e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443. +Success=Ð’Ñ‹ уÑпешно зарегиÑтрировалиÑÑŒ!. +description=Ð’Ñ‹ вошли в ÑиÑтему, можете вернутьÑÑ Ð½Ð° главную Ñтраницу. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_sr.properties index e27a6feb9293..8788280cfc60 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_sr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Success=\u0423\u0441\u043F\u0435\u0448\u043D\u043E -description=\u041F\u0440\u0438\u0458\u0430\u0432\u0459\u0435\u043D\u0438 \u0441\u0442\u0435. \u041D\u0430\u0437\u0430\u0434 \u043A\u0430 \u0433\u043B\u0430\u0432\u043D\u043E\u0458 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0438. +Success=УÑпешно +description=Пријављени Ñте. Ðазад ка главној Ñтраници. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_zh_TW.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_zh_TW.properties index f353d6db499c..ff30af99f38a 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_zh_TW.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Success=\u6210\u529f -description=\u60a8\u5df2\u7d93\u767b\u5165\u3002\u56de\u5230\u9996\u9801\u3002 +Success=æˆåŠŸ +description=您已經登入。回到首é ã€‚ diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_bg.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_bg.properties index 6bc00b09971b..eecfbd9bc0f7 100644 --- a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_bg.properties +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_bg.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Unprotected\ URLs=\ - \u041d\u0435\u0437\u0430\u0449\u0438\u0442\u0435\u043d \u0430\u0434\u0440\u0435\u0441 + Ðезащитен Ð°Ð´Ñ€ÐµÑ # These URLs (and URLs starting with these prefixes plus a /) should require no authentication. \ # If possible, configure your container to pass these requests straight to Jenkins without requiring login. blurb=\ - \u0422\u0435\u0437\u0438 \u0430\u0434\u0440\u0435\u0441\u0438, \u043a\u0430\u043a\u0442\u043e \u0438 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u0438\u0442\u0435 \u0441 \u0434\u043e\u0431\u0430\u0432\u0435\u043d\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0435\u043d\u0430 \u0447\u0435\u0440\u0442\u0430 \u201e/\u201c \u0432 \u043a\u0440\u0430\u044f, \u043d\u0435\ - \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u0435 \u043d\u0443\u0436\u0434\u0430\u044f\u0442 \u043e\u0442 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f. \u0410\u043a\u043e \u0435 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e, \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u0442\u0435 \u043a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440\u0430 \u0437\u0430\ - \u0441\u044a\u0440\u0432\u043b\u0435\u0442\u0438 \u0434\u0430 \u043f\u0440\u0435\u0434\u0430\u0432\u0430 \u0442\u0435\u0437\u0438 \u0437\u0430\u044f\u0432\u043a\u0438 \u0434\u0438\u0440\u0435\u043a\u0442\u043d\u043e \u043d\u0430 Jenkins, \u0431\u0435\u0437 \u0434\u0430 \u0438\u0437\u0438\u0441\u043a\u0432\u0430 \u0432\u043f\u0438\u0441\u0432\u0430\u043d\u0435. + Тези адреÑи, както и вариантите Ñ Ð´Ð¾Ð±Ð°Ð²ÐµÐ½Ð° наклонена черта „/“ в краÑ, не\ + Ñ‚Ñ€Ñбва да Ñе нуждаÑÑ‚ от идентификациÑ. Ðко е възможно, наÑтройте контейнера за\ + Ñървлети да предава тези заÑвки директно на Jenkins, без да изиÑква впиÑване. diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_de.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_de.properties index 89b5c4ae4693..c6a2ce294c1d 100644 --- a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_de.properties +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_de.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Unprotected\ URLs=Ungesch\u00FCtzte URLs -blurb=Diese URLs (und URLs, die mit diesem Pr\u00E4fix und einem / beginnen) sollten keine Authentifizierung erfordern. Falls m\u00F6glich, konfigurieren Sie Ihren Servlet-Container, diese Anfragen direkt an Jenkins durchzureichen, ohne daf\u00FCr eine Anmeldung zu ben\u00F6tigen. +Unprotected\ URLs=Ungeschützte URLs +blurb=Diese URLs (und URLs, die mit diesem Präfix und einem / beginnen) sollten keine Authentifizierung erfordern. Falls möglich, konfigurieren Sie Ihren Servlet-Container, diese Anfragen direkt an Jenkins durchzureichen, ohne dafür eine Anmeldung zu benötigen. diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_es.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_es.properties index 26324fcdac8e..e44847c5e178 100644 --- a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_es.properties +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_es.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors Unprotected\ URLs=URLs Desprotegidas -blurb=Estas URLs (y las URLs que inician con el prefijo /) no requieren autenticaci\u00F3n. Si es posible, configure su servidor para pasar esta solicitud a Jenkins si requerir autenticaci\u00F3n. +blurb=Estas URLs (y las URLs que inician con el prefijo /) no requieren autenticación. Si es posible, configure su servidor para pasar esta solicitud a Jenkins si requerir autenticación. diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_fr.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_fr.properties index a2693f114921..23c4238823bf 100644 --- a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_fr.properties +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_fr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Unprotected\ URLs=URLs non-prot\u00E9g\u00E9s -blurb=Ces URLs (et les URLs comman\u00E7ant par ces pr\u00E9fixes plus un /) ne n\u00E9cessite pas d''authentification. Si possible, configurez votre (container) pour passer les requ\u00EAtes \u00E0 Jenkins sans n\u00E9cessiter d''authentification. +Unprotected\ URLs=URLs non-protégés +blurb=Ces URLs (et les URLs commançant par ces préfixes plus un /) ne nécessite pas d''authentification. Si possible, configurez votre (container) pour passer les requêtes à Jenkins sans nécessiter d''authentification. diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_it.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_it.properties index 63d82137a86e..ac4516f1f3c1 100644 --- a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_it.properties +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,7 +21,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Questi URL (e gli URL che iniziano con questi prefissi più /) non \ +blurb=Questi URL (e gli URL che iniziano con questi prefissi più /) non \ dovrebbero richiedere l''autenticazione. Se possibile, configurare il \ container per inoltrare direttamente queste richieste a Jenkins senza \ richiedere l''accesso. diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_ja.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_ja.properties index 592f3f838166..11ea550c2ec2 100644 --- a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_ja.properties +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Unprotected\ URLs=\u8a8d\u8a3c\u4e0d\u8981\u306aURL +Unprotected\ URLs=èªè¨¼ä¸è¦ãªURL blurb=\ - \u6b21\u306eURL (\u3068\u3001\u305d\u306eURL + '/'\u3067\u59cb\u307e\u308bURL\uff09\u306f\u3001\u8a8d\u8a3c\u306f\u4e0d\u8981\u3067\u3059\u3002\ - \u53ef\u80fd\u3067\u3042\u308c\u3070\u3001\u3053\u308c\u3089\u306eURL\u306b\u5bfe\u3057\u3066\u30ed\u30b0\u30a4\u30f3\u306a\u3057\u306b\u30a2\u30af\u30bb\u30b9\u3067\u304d\u308b\u3088\u3046\u306b\u3001\u30b3\u30f3\u30c6\u30ca\u3092\u8a2d\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002 + 次ã®URL (ã¨ã€ãã®URL + '/'ã§å§‹ã¾ã‚‹URL)ã¯ã€èªè¨¼ã¯ä¸è¦ã§ã™ã€‚\ + å¯èƒ½ã§ã‚ã‚Œã°ã€ã“れらã®URLã«å¯¾ã—ã¦ãƒ­ã‚°ã‚¤ãƒ³ãªã—ã«ã‚¢ã‚¯ã‚»ã‚¹ã§ãるよã†ã«ã€ã‚³ãƒ³ãƒ†ãƒŠã‚’設定ã—ã¦ãã ã•ã„。 diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_ko.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_ko.properties index 94f99da7d6e8..5661af0dc3dd 100644 --- a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_ko.properties +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_ko.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Unprotected\ URLs=\uBCF4\uD638\uB418\uC9C0 \uC54A\uC740 URL\uB4E4 -blurb=\uC774 URL(\uADF8\uB9AC\uACE0 \uC774 \uCCA8\uB450\uBB38\uC790\uC640 /\uB85C \uC2DC\uC791\uD558\uB294 URL)\uB4E4\uC740 \uC778\uC99D\uC744 \uC694\uAD6C\uD558\uC9C0 \uC54A\uC544\uC57C\uD569\uB2C8\uB2E4. \uAC00\uB2A5\uD558\uB2E4\uBA74, \uB85C\uADF8\uC778\uC744 \uC694\uCCAD\uC5C6\uC774 \uC774 \uC694\uCCAD\uB4E4\uC744 \uCEE8\uD14C\uC774\uB108\uAC00 Jenkins\uC5D0\uAC8C \uBC14\uB85C \uC804\uB2EC\uD558\uB3C4\uB85D \uC124\uC815\uD558\uC2ED\uC2DC\uC694. +Unprotected\ URLs=보호ë˜ì§€ ì•Šì€ URL들 +blurb=ì´ URL(그리고 ì´ ì²¨ë‘문ìžì™€ /ë¡œ 시작하는 URL)ë“¤ì€ ì¸ì¦ì„ 요구하지 않아야합니다. 가능하다면, 로그ì¸ì„ ìš”ì²­ì—†ì´ ì´ ìš”ì²­ë“¤ì„ ì»¨í…Œì´ë„ˆê°€ Jenkinsì—게 바로 전달하ë„ë¡ ì„¤ì •í•˜ì‹­ì‹œìš”. diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_pl.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_pl.properties index a940c52cf5a1..eda50f84df5a 100644 --- a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_pl.properties +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_pl.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors Unprotected\ URLs=Niezabezpieczone URL -blurb=Te URL''e (i URL''e rozpoczynaj\u0105ce si\u0119 od prefiksu i /) nie powinny wymaga\u0107 autoryzacji. Je\u015Bli to mo\u017Cliwe, skonfiguruj kontener aby przes\u0142a\u0107 te \u017C\u0105dania bezpo\u015Brednio do Jenkinsa bez logowania. +blurb=Te URL''e (i URL''e rozpoczynajÄ…ce siÄ™ od prefiksu i /) nie powinny wymagać autoryzacji. JeÅ›li to możliwe, skonfiguruj kontener aby przesÅ‚ać te żądania bezpoÅ›rednio do Jenkinsa bez logowania. diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_pt_BR.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_pt_BR.properties index 613847da5eef..de91c28caacc 100644 --- a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_pt_BR.properties +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_pt_BR.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by author, Fernando Boaglio Unprotected\ URLs=URLs desprotegidas -blurb=Estas URLs (e URLs iniciando com estes prefixos mais uma /) n\u00E3o devem requerer autentica\u00E7\u00E3o. Se poss\u00EDvel, configure o seu cont\u00eainer para passar estas requisi\u00E7\u00F5es diretamente para o Jenkins sem precisar de login. +blurb=Estas URLs (e URLs iniciando com estes prefixos mais uma /) não devem requerer autenticação. Se possível, configure o seu contêiner para passar estas requisições diretamente para o Jenkins sem precisar de login. diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_ru.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_ru.properties index 9ded233ffdb1..2ec033916fb5 100644 --- a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_ru.properties +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_ru.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Unprotected\ URLs=\u041D\u0435\u0437\u0430\u0449\u0438\u0449\u0435\u043D\u043D\u044B\u0435 URL -blurb=\u042D\u0442\u0438 URL (\u0438 URL, \u043D\u0430\u0447\u0438\u043D\u0430\u044E\u0449\u0438\u0435\u0441\u044F \u0441 \u044D\u0442\u0438\u0445 \u043F\u0440\u0438\u0441\u0442\u0430\u0432\u043E\u043A \u043F\u043B\u044E\u0441 /) \u043D\u0435 \u0434\u043E\u043B\u0436\u043D\u044B \u0442\u0440\u0435\u0431\u043E\u0432\u0430\u0442\u044C \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u0438. \u0415\u0441\u043B\u0438 \u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E, \u0441\u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0443\u0439\u0442\u0435 \u0441\u0432\u043E\u0439 \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440 \u0442\u0430\u043A, \u0447\u0442\u043E\u0431\u044B \u0442\u0430\u043A\u0438\u0435 \u0437\u0430\u043F\u0440\u043E\u0441\u044B \u043F\u0435\u0440\u0435\u0434\u0430\u0432\u0430\u043B\u0438\u0441\u044C \u043D\u0430\u043F\u0440\u044F\u043C\u0443\u044E \u0432 Jenkins, \u0431\u0435\u0437 \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u043E\u0441\u0442\u0438 \u0432\u0445\u043E\u0434\u0430 \u0432 \u0441\u0438\u0441\u0442\u0435\u043C\u0443. +Unprotected\ URLs=Ðезащищенные URL +blurb=Эти URL (и URL, начинающиеÑÑ Ñ Ñтих приÑтавок Ð¿Ð»ÑŽÑ /) не должны требовать аутентификации. ЕÑли возможно, Ñконфигурируйте Ñвой контейнер так, чтобы такие запроÑÑ‹ передавалиÑÑŒ напрÑмую в Jenkins, без необходимоÑти входа в ÑиÑтему. diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_sk.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_sk.properties index d3932dd38fad..23782ec1a802 100644 --- a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_sk.properties +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_sk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Unprotected\ URLs=Nezabezpe\u010Den\u00E9 URLs +Unprotected\ URLs=NezabezpeÄené URLs diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_sr.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_sr.properties index d76a9217726a..24dcf91eea23 100644 --- a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_sr.properties +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Unprotected\ URLs=\u041D\u0435\u0437\u0430\u0448\u0442\u0438\u045B\u0435\u043D\u0435 URL \u0430\u0434\u0440\u0435\u0441\u0435 -blurb=\u041E\u0432\u043E\u0458 \u0430\u0434\u0440\u0435\u0441\u0438, \u043A\u0430\u043E \u0438 \u043E\u0441\u0442\u0430\u043B\u0438\u043C \u0441\u0430 \u0434\u043E\u0434\u0430\u0442\u043D\u043E\u0458 \u0446\u0440\u0442\u0438 "/" \u043D\u0430 \u043A\u0440\u0430\u0458\u0443, \u043D\u0438\u0458\u0435 \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u043A\u0430\u0446\u0438\u0458\u0430. \u0410\u043A\u043E \u0458\u0435 \u0442\u043E \u043C\u043E\u0433\u0443\u045B\u0435, \u043D\u0430\u043C\u0435\u0441\u0442\u0438 \u043A\u043E\u043D\u0442\u0435\u0458\u043D\u0435\u0440 \u0434\u0430 \u0434\u0438\u0440\u0435\u043A\u0442\u043D\u043E \u043F\u0440\u0435\u043D\u043E\u0441\u0438 \u0437\u0430\u0445\u0442\u0435\u0432\u0435 \u043D\u0430 Jenkins \u0431\u0435\u0437 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0458\u0435. +Unprotected\ URLs=Ðезаштићене URL адреÑе +blurb=Овој адреÑи, као и оÑталим Ñа додатној црти "/" на крају, није потребно аутентикација. Ðко је то могуће, намеÑти контејнер да директно преноÑи захтеве на Jenkins без региÑтрације. diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_uk.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_uk.properties index 7f729e29f494..62892c74fba4 100644 --- a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_uk.properties +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Unprotected\ URLs=\u041D\u0435\u0437\u0430\u0445\u0438\u0449\u0435\u043D\u0456 URLs +Unprotected\ URLs=Ðезахищені URLs diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_zh_TW.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_zh_TW.properties index 4054f9e22559..91572c6cf149 100644 --- a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_zh_TW.properties +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_zh_TW.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Unprotected\ URLs=\u4e0d\u53d7\u4fdd\u8b77\u7684 URL +Unprotected\ URLs=ä¸å—ä¿è­·çš„ URL blurb=\ - \u9019\u4e9b URL (\u4ee5\u53ca\u9019\u4e9b URL \u52a0\u4e0a "/" \u958b\u982d\u7684\u6240\u6709 URL) \u4e0d\u9700\u8981\u9a57\u8b49\u5c31\u80fd\u5b58\u53d6\u3002\ - \u5982\u679c\u53ef\u4ee5\u7684\u8a71\uff0c\u8b93\u60a8\u7684 Container \u76f4\u63a5\u5c07\u90a3\u4e9b\u8acb\u6c42\u9001\u5230 Jenkins\uff0c\u4e0d\u8981\u63d0\u793a\u767b\u5165\u3002 + 這些 URL (以åŠé€™äº› URL 加上 "/" 開頭的所有 URL) ä¸éœ€è¦é©—證就能存å–。\ + 如果å¯ä»¥çš„話,讓您的 Container 直接將那些請求é€åˆ° Jenkins,ä¸è¦æ示登入。 diff --git a/core/src/main/resources/hudson/security/Messages.properties b/core/src/main/resources/hudson/security/Messages.properties index c49320ba2d23..ef9d965ae247 100644 --- a/core/src/main/resources/hudson/security/Messages.properties +++ b/core/src/main/resources/hudson/security/Messages.properties @@ -25,7 +25,7 @@ GlobalSecurityConfiguration.Description=Secure Jenkins; define who is allowed to HudsonPrivateSecurityRealm.WouldYouLikeToSignUp=This {0} {1} is new to Jenkins. Would you like to sign up? LegacyAuthorizationStrategy.DisplayName=Legacy mode -HudsonPrivateSecurityRealm.DisplayName=Jenkins\u2019 own user database +HudsonPrivateSecurityRealm.DisplayName=Jenkins’ own user database HudsonPrivateSecurityRealm.SignupWarning=With signup enabled, anyone on your network can become an authenticated user. It is recommended in this case to minimize the permissions granted to any authenticated user. HudsonPrivateSecurityRealm.Details.DisplayName=Password HudsonPrivateSecurityRealm.Details.PasswordError=\ diff --git a/core/src/main/resources/hudson/security/Messages_bg.properties b/core/src/main/resources/hudson/security/Messages_bg.properties index 7b035f3a4ebe..b8e6b9116a4a 100644 --- a/core/src/main/resources/hudson/security/Messages_bg.properties +++ b/core/src/main/resources/hudson/security/Messages_bg.properties @@ -21,53 +21,53 @@ # THE SOFTWARE. GlobalSecurityConfiguration.DisplayName=\ - \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0441\u0438\u0433\u0443\u0440\u043d\u043e\u0441\u0442\u0442\u0430 + ÐаÑтройки на ÑигурноÑтта GlobalSecurityConfiguration.Description=\ - \u041e\u0441\u0438\u0433\u0443\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u0438\u0433\u0443\u0440\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0430 Jenkins \u2014 \u043a\u043e\u0439 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0433\u043e \u0434\u043e\u0441\u0442\u044a\u043f\u0432\u0430 \u0438 \u043f\u043e\u043b\u0437\u0432\u0430. + ОÑигурÑване на ÑигурноÑтта на Jenkins — кой може да го доÑтъпва и ползва. HudsonPrivateSecurityRealm.WouldYouLikeToSignUp=\ - \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f\u0442 \u043d\u0430 \u201e{0} {1}\u201c \u0435 \u043d\u0435\u043f\u043e\u0437\u043d\u0430\u0442 \u0437\u0430 Jenkins. \u0418\u0441\u043a\u0430\u0442\u0435 \u043b\u0438 \u0434\u0430 \u0433\u043e \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u0442\u0435? + ПотребителÑÑ‚ на „{0} {1}“ е непознат за Jenkins. ИÑкате ли да го региÑтрирате? LegacyAuthorizationStrategy.DisplayName=\ - \u041e\u0441\u0442\u0430\u0440\u044f\u043b \u0440\u0435\u0436\u0438\u043c + ОÑтарÑл режим HudsonPrivateSecurityRealm.DisplayName=\ - \u0411\u0430\u0437\u0430\u0442\u0430 \u043e\u0442 \u0434\u0430\u043d\u043d\u0438 \u0441 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 \u043d\u0430 Jenkins + Базата от данни Ñ Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ð¸ на Jenkins HudsonPrivateSecurityRealm.Details.DisplayName=\ - \u041f\u0430\u0440\u043e\u043b\u0430 + Парола HudsonPrivateSecurityRealm.Details.PasswordError=\ - \u0414\u0432\u0435\u0442\u0435 \u043f\u0430\u0440\u043e\u043b\u0438 \u043d\u0435 \u0441\u044a\u0432\u043f\u0430\u0434\u0430\u0442, \u0430 \u0442\u0440\u044f\u0431\u0432\u0430. \u0412\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0433\u0438 \u043e\u0442\u043d\u043e\u0432\u043e. + Двете пароли не Ñъвпадат, а Ñ‚Ñ€Ñбва. Въведете ги отново. HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=\ - \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438\u0442\u0435 + Управление на потребителите HudsonPrivateSecurityRealm.ManageUserLinks.Description=\ - \u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435/\u0438\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435/\u043f\u0440\u043e\u043c\u044f\u043d\u0430 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438\u0442\u0435 \u043d\u0430 Jenkins + Създаване/изтриване/промÑна на потребителите на Jenkins HudsonPrivateSecurityRealm.CreateAccount.TextNotMatchWordInImage=\ - \u0422\u0435\u043a\u0441\u0442\u044a\u0442 \u043d\u0435 \u043e\u0442\u0433\u043e\u0432\u0430\u0440\u044f \u043d\u0430 \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u043e\u0442\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 + ТекÑÑ‚ÑŠÑ‚ не Ð¾Ñ‚Ð³Ð¾Ð²Ð°Ñ€Ñ Ð½Ð° показаното изображение HudsonPrivateSecurityRealm.CreateAccount.PasswordNotMatch=\ - \u041f\u0430\u0440\u043e\u043b\u0430\u0442\u0430 \u043d\u0435 \u0441\u044a\u0432\u043f\u0430\u0434\u0430 + Паролата не Ñъвпада HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=\ - \u041f\u0430\u0440\u043e\u043b\u0430\u0442\u0430 \u0435 \u0437\u0430\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u0430 + Паролата е задължителна HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=\ - \u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0435 \u0437\u0430\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u043e + Името на Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñ Ðµ задължително HudsonPrivateSecurityRealm.CreateAccount.InvalidEmailAddress=\ - \u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u0435\u043d \u0430\u0434\u0440\u0435\u0441 \u043d\u0430 \u0435-\u043f\u043e\u0449\u0430 + Ðеправилен Ð°Ð´Ñ€ÐµÑ Ð½Ð° е-поща HudsonPrivateSecurityRealm.CreateAccount.UserNameAlreadyTaken=\ - \u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0435 \u0437\u0430\u0435\u0442\u043e + Името на Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñ Ðµ заето FullControlOnceLoggedInAuthorizationStrategy.DisplayName=\ - \u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043b\u0438\u0442\u0435 \u0441\u0435, \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043d\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438, \u043c\u043e\u0433\u0430\u0442 \u0432\u0441\u0438\u0447\u043a\u043e + Идентифициралите Ñе, региÑтрирани потребители, могат вÑичко AuthorizationStrategy.DisplayName=\ - \u0412\u0441\u0435\u043a\u0438 \u043c\u043e\u0436\u0435 \u0432\u0441\u0438\u0447\u043a\u043e + Ð’Ñеки може вÑичко LegacySecurityRealm.Displayname=\ - \u041e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u043a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440\u0430 \u0437\u0430 \u0441\u044a\u0440\u0432\u043b\u0435\u0442\u0438 \u0434\u0430 \u0441\u0435 \u0433\u0440\u0438\u0436\u0438 \u0437\u0430 \u0442\u043e\u0432\u0430 + ОÑтавÑне на контейнера за Ñървлети да Ñе грижи за това UserDetailsServiceProxy.UnableToQuery=\ - \u041d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043f\u043e\u043b\u0443\u0447\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u201e{0}\u201c + Ðе може да Ñе получи Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñ â€ž{0}“ # not in use Permission.Permissions.Title=\ - \u041b\u0438\u043f\u0441\u0432\u0430 + ЛипÑва AccessDeniedException2.MissingPermission=\ - \u201e{0}\u201c \u043d\u044f\u043c\u0430 \u043f\u0440\u0430\u0432\u043e\u0442\u043e \u201e{1}\u201c + „{0}“ нÑма правото „{1}“ diff --git a/core/src/main/resources/hudson/security/Messages_da.properties b/core/src/main/resources/hudson/security/Messages_da.properties index 1fdfa8e17741..0520db78b3c7 100644 --- a/core/src/main/resources/hudson/security/Messages_da.properties +++ b/core/src/main/resources/hudson/security/Messages_da.properties @@ -23,14 +23,14 @@ LegacyAuthorizationStrategy.DisplayName=Legacy Tilstand HudsonPrivateSecurityRealm.Details.DisplayName=Adgangskode LegacySecurityRealm.Displayname=Delegate til servlet container -UserDetailsServiceProxy.UnableToQuery=Ikke i stand til at foresp\u00f8rge brugerinformation: {0} +UserDetailsServiceProxy.UnableToQuery=Ikke i stand til at forespørge brugerinformation: {0} HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=Brugeradministration HudsonPrivateSecurityRealm.DisplayName=Jenkins''s egen brugerdatabase -AuthorizationStrategy.DisplayName=Alle kan g\u00f8re alt +AuthorizationStrategy.DisplayName=Alle kan gøre alt AccessDeniedException2.MissingPermission={0} mangler {1} rettigheden Permission.Permissions.Title=N/A -FullControlOnceLoggedInAuthorizationStrategy.DisplayName=Indloggede brugere kan g\u00f8re alt +FullControlOnceLoggedInAuthorizationStrategy.DisplayName=Indloggede brugere kan gøre alt HudsonPrivateSecurityRealm.Details.PasswordError=\ Den konfirmerende adgangskode er ikke den samme som den indtastede. \ Venligst indtast samme adgangskode begge steder. -HudsonPrivateSecurityRealm.ManageUserLinks.Description=Opret/slet/modificer brugere der kan logge ind p\u00e5 denne Jenkins +HudsonPrivateSecurityRealm.ManageUserLinks.Description=Opret/slet/modificer brugere der kan logge ind pÃ¥ denne Jenkins diff --git a/core/src/main/resources/hudson/security/Messages_de.properties b/core/src/main/resources/hudson/security/Messages_de.properties index 958b36f731d7..e2c31c5d0af8 100644 --- a/core/src/main/resources/hudson/security/Messages_de.properties +++ b/core/src/main/resources/hudson/security/Messages_de.properties @@ -24,24 +24,24 @@ GlobalSecurityConfiguration.Description=Jenkins absichern und festlegen, wer Zug LegacyAuthorizationStrategy.DisplayName=Legacy-Autorisierung -HudsonPrivateSecurityRealm.DisplayName=Jenkins\u2019 eingebautes Benutzerverzeichnis +HudsonPrivateSecurityRealm.DisplayName=Jenkins’ eingebautes Benutzerverzeichnis HudsonPrivateSecurityRealm.Details.DisplayName=Passwort HudsonPrivateSecurityRealm.Details.PasswordError=\ - Das angegebene Passwort und seine Wiederholung stimmen nicht \u00FCberein. \ - Bitte \u00FCberpr\u00FCfen Sie Ihre Eingabe. + Das angegebene Passwort und seine Wiederholung stimmen nicht überein. \ + Bitte überprüfen Sie Ihre Eingabe. HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=Benutzer verwalten -HudsonPrivateSecurityRealm.ManageUserLinks.Description=Anlegen, Aktualisieren und L\u00F6schen von Benutzern, die sich an dieser Jenkins-Installation anmelden d\u00FCrfen. +HudsonPrivateSecurityRealm.ManageUserLinks.Description=Anlegen, Aktualisieren und Löschen von Benutzern, die sich an dieser Jenkins-Installation anmelden dürfen. -HudsonPrivateSecurityRealm.CreateAccount.TextNotMatchWordInImage=Text stimmt nicht mit dem Wort im Bild \u00FCberein -HudsonPrivateSecurityRealm.CreateAccount.PasswordNotMatch=Das angegebene Passwort und seine Wiederholung stimmen nicht \u00FCberein -HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=Passwort wird ben\u00F6tigt -HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=Benutzername wird ben\u00F6tigt -HudsonPrivateSecurityRealm.CreateAccount.InvalidEmailAddress=Ung\u00FCltige E-Mail Adresse +HudsonPrivateSecurityRealm.CreateAccount.TextNotMatchWordInImage=Text stimmt nicht mit dem Wort im Bild überein +HudsonPrivateSecurityRealm.CreateAccount.PasswordNotMatch=Das angegebene Passwort und seine Wiederholung stimmen nicht überein +HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=Passwort wird benötigt +HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=Benutzername wird benötigt +HudsonPrivateSecurityRealm.CreateAccount.InvalidEmailAddress=Ungültige E-Mail Adresse HudsonPrivateSecurityRealm.CreateAccount.UserNameAlreadyTaken=Benutzername ist bereits vergeben -FullControlOnceLoggedInAuthorizationStrategy.DisplayName=Angemeldete Benutzer d\u00FCrfen alle Aktionen ausf\u00FChren +FullControlOnceLoggedInAuthorizationStrategy.DisplayName=Angemeldete Benutzer dürfen alle Aktionen ausführen -AuthorizationStrategy.DisplayName=Jeder darf alle Aktionen ausf\u00FChren +AuthorizationStrategy.DisplayName=Jeder darf alle Aktionen ausführen LegacySecurityRealm.Displayname=An Servlet-Container delegieren @@ -49,6 +49,6 @@ UserDetailsServiceProxy.UnableToQuery=Benutzerinformationen konnten nicht abgefr # not in use Permission.Permissions.Title=N/A -AccessDeniedException2.MissingPermission={0} fehlt das Recht \u201E{1}\u201C +AccessDeniedException2.MissingPermission={0} fehlt das Recht „{1}“ -HudsonPrivateSecurityRealm.WouldYouLikeToSignUp={0} {1} ist Jenkins bisher nicht bekannt. M\u00F6chten Sie sich registrieren? +HudsonPrivateSecurityRealm.WouldYouLikeToSignUp={0} {1} ist Jenkins bisher nicht bekannt. Möchten Sie sich registrieren? diff --git a/core/src/main/resources/hudson/security/Messages_es.properties b/core/src/main/resources/hudson/security/Messages_es.properties index da50bc4f79a5..891eed1d040d 100644 --- a/core/src/main/resources/hudson/security/Messages_es.properties +++ b/core/src/main/resources/hudson/security/Messages_es.properties @@ -20,29 +20,29 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -GlobalSecurityConfiguration.DisplayName=Configuraci\u00f3n global de la seguridad +GlobalSecurityConfiguration.DisplayName=Configuración global de la seguridad GlobalSecurityConfiguration.Description=Seguridad en Jenkins. \ - Define qui\u00e9n tiene acceso al sistema (autenticaci\u00f3n) y qu\u00e9 puede hacer (autorizaci\u00f3n) + Define quién tiene acceso al sistema (autenticación) y qué puede hacer (autorización) LegacyAuthorizationStrategy.DisplayName=Modo ''legacy'' HudsonPrivateSecurityRealm.DisplayName=Usar base de datos de Jenkins -HudsonPrivateSecurityRealm.Details.DisplayName=Contrase\u00f1a +HudsonPrivateSecurityRealm.Details.DisplayName=Contraseña HudsonPrivateSecurityRealm.Details.PasswordError=\ - Las contrase\u00f1as no coinciden. -HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=Gesti\u00f3n de usuarios + Las contraseñas no coinciden. +HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=Gestión de usuarios HudsonPrivateSecurityRealm.ManageUserLinks.Description=Crear/borrar/editar usuarios que puedan utilizar Jenkins FullControlOnceLoggedInAuthorizationStrategy.DisplayName=Usuarios autenticados tienen privilegios para todo -AuthorizationStrategy.DisplayName=Cualquiera puede hacer cualquier acci\u00f3n +AuthorizationStrategy.DisplayName=Cualquiera puede hacer cualquier acción LegacySecurityRealm.Displayname=Delegar seguridad al contenedor de servlets -UserDetailsServiceProxy.UnableToQuery=Imposible obtener la informaci\u00f3n del usuario: {0} +UserDetailsServiceProxy.UnableToQuery=Imposible obtener la información del usuario: {0} # not in use Permission.Permissions.Title=N/D AccessDeniedException2.MissingPermission={0} no tiene el permiso {1} -HudsonPrivateSecurityRealm.WouldYouLikeToSignUp=Este {0} {1} es nuevo en Jenkins. \u00bfTe gustar\u00eda crear una nueva cuenta? +HudsonPrivateSecurityRealm.WouldYouLikeToSignUp=Este {0} {1} es nuevo en Jenkins. ¿Te gustaría crear una nueva cuenta? diff --git a/core/src/main/resources/hudson/security/Messages_fr.properties b/core/src/main/resources/hudson/security/Messages_fr.properties index 89fc84398482..4de4c353a717 100644 --- a/core/src/main/resources/hudson/security/Messages_fr.properties +++ b/core/src/main/resources/hudson/security/Messages_fr.properties @@ -19,32 +19,32 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -GlobalSecurityConfiguration.DisplayName=Configurer la s\u00e9curit\u00e9 globale -GlobalSecurityConfiguration.Description=S\u00e9curiser Jenkins; d\u00e9finir qui est autoris\u00e9 \u00e0 acc\u00e9der au syst\u00e8me. +GlobalSecurityConfiguration.DisplayName=Configurer la sécurité globale +GlobalSecurityConfiguration.Description=Sécuriser Jenkins; définir qui est autorisé à accéder au système. LegacyAuthorizationStrategy.DisplayName=Mode legacy -HudsonPrivateSecurityRealm.DisplayName=Base de donn\u00e9es des utilisateurs de Jenkins +HudsonPrivateSecurityRealm.DisplayName=Base de données des utilisateurs de Jenkins HudsonPrivateSecurityRealm.Details.DisplayName=Mot de passe HudsonPrivateSecurityRealm.Details.PasswordError=\ - Le mot de passe de confirmation n''est pas le m\u00eame que le premier mot de passe. \ - Merci de vous assurer que les mots de passe sont les m\u00eames dans les deux cases. -HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=G\u00e9rer les utilisateurs -HudsonPrivateSecurityRealm.ManageUserLinks.Description=Cr\u00e9er/supprimer/modifier les utilisateurs qui peuvent se logger sur ce serveur Jenkins + Le mot de passe de confirmation n''est pas le même que le premier mot de passe. \ + Merci de vous assurer que les mots de passe sont les mêmes dans les deux cases. +HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=Gérer les utilisateurs +HudsonPrivateSecurityRealm.ManageUserLinks.Description=Créer/supprimer/modifier les utilisateurs qui peuvent se logger sur ce serveur Jenkins HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=Le mot de passe est requis HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=Le nom d''utilisateur est requis HudsonPrivateSecurityRealm.CreateAccount.InvalidEmailAddress=Adresse mail invalide -HudsonPrivateSecurityRealm.CreateAccount.UserNameAlreadyTaken=Le nom d''utilisateur est d\u00e9j\u00e0 utilis\u00e9 +HudsonPrivateSecurityRealm.CreateAccount.UserNameAlreadyTaken=Le nom d''utilisateur est déjà utilisé -FullControlOnceLoggedInAuthorizationStrategy.DisplayName=Les utilisateurs connect\u00e9s peuvent tout faire +FullControlOnceLoggedInAuthorizationStrategy.DisplayName=Les utilisateurs connectés peuvent tout faire -AuthorizationStrategy.DisplayName=Tout le monde a acc\u00e8s \u00e0 toutes les fonctionnalit\u00e9s +AuthorizationStrategy.DisplayName=Tout le monde a accès à toutes les fonctionnalités -LegacySecurityRealm.Displayname=D\u00e9l\u00e9guer au conteneur de servlets +LegacySecurityRealm.Displayname=Déléguer au conteneur de servlets -UserDetailsServiceProxy.UnableToQuery=Impossible de r\u00e9cup\u00e9rer les informations utilisateur: {0} +UserDetailsServiceProxy.UnableToQuery=Impossible de récupérer les informations utilisateur: {0} # not in use diff --git a/core/src/main/resources/hudson/security/Messages_it.properties b/core/src/main/resources/hudson/security/Messages_it.properties index f8666a2c862b..fe8a265bdc2e 100644 --- a/core/src/main/resources/hudson/security/Messages_it.properties +++ b/core/src/main/resources/hudson/security/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,30 +22,30 @@ # THE SOFTWARE. AccessDeniedException.MissingPermissions=All''utente {0} manca un permesso, \ - ne è richiesto uno tra i seguenti: {1} + ne è richiesto uno tra i seguenti: {1} AccessDeniedException2.MissingPermission=All''utente {0} manca il permesso {1} -AuthorizationStrategy.DisplayName=Chiunque può eseguire qualsiasi operazione +AuthorizationStrategy.DisplayName=Chiunque può eseguire qualsiasi operazione FullControlOnceLoggedInAuthorizationStrategy.DisplayName=Gli utenti che hanno \ eseguito l''accesso possono eseguire qualsiasi operazione GlobalSecurityConfiguration.Description=Mette in sicurezza Jenkins; definisce \ - chi è autorizzato ad accedere e ad utilizzare il sistema. + chi è autorizzato ad accedere e ad utilizzare il sistema. GlobalSecurityConfiguration.DisplayName=Configura sicurezza globale HudsonPrivateSecurityRealm.CreateAccount.InvalidEmailAddress=Indirizzo di \ posta elettronica non valido HudsonPrivateSecurityRealm.CreateAccount.PasswordNotMatch=Le password non \ corrispondono -HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=È richiesto \ +HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=È richiesto \ immettere una password HudsonPrivateSecurityRealm.CreateAccount.TextNotMatchWordInImage=Il testo \ non corrisponde alla parola visualizzata nell''immagine HudsonPrivateSecurityRealm.CreateAccount.UserNameAlreadyTaken=Il nome \ - utente è già utilizzato + utente è già utilizzato HudsonPrivateSecurityRealm.CreateAccount.UserNameInvalidCharacters=Il nome \ - utente può contenere solo caratteri alfanumerici, trattini di \ + utente può contenere solo caratteri alfanumerici, trattini di \ sottolineatura e trattini HudsonPrivateSecurityRealm.CreateAccount.UserNameInvalidCharactersCustom=Il \ nome utente deve corrispondere alla seguente espressione: {0} -HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=È richiesto \ +HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=È richiesto \ immettere un nome utente HudsonPrivateSecurityRealm.Details.DisplayName=Password HudsonPrivateSecurityRealm.Details.PasswordError=La conferma password non \ @@ -55,13 +55,13 @@ HudsonPrivateSecurityRealm.DisplayName=Database utenti di Jenkins HudsonPrivateSecurityRealm.ManageUserLinks.Description=Crea/elimina/modifica \ gli utenti che possono accedere a quest''istanza di Jenkins HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=Gestisci utenti -HudsonPrivateSecurityRealm.SignupWarning=Se la registrazione è abilitata, \ - qualunque persona sulla propria rete potrà diventare un utente autenticato. \ - In tal caso è raccomandato ridurre al minimo i permessi concessi a tutti \ +HudsonPrivateSecurityRealm.SignupWarning=Se la registrazione è abilitata, \ + qualunque persona sulla propria rete potrà diventare un utente autenticato. \ + In tal caso è raccomandato ridurre al minimo i permessi concessi a tutti \ gli utenti autenticati. -HudsonPrivateSecurityRealm.WouldYouLikeToSignUp=Questo {0} {1} non è noto a \ +HudsonPrivateSecurityRealm.WouldYouLikeToSignUp=Questo {0} {1} non è noto a \ Jenkins. Si desidera registrarsi? -LegacyAuthorizationStrategy.DisplayName=Modalità legacy +LegacyAuthorizationStrategy.DisplayName=Modalità legacy LegacySecurityRealm.Displayname=Delega al container servlet NoneSecurityRealm.DisplayName=Nessuno Permission.Permissions.Title=N/D diff --git a/core/src/main/resources/hudson/security/Messages_ja.properties b/core/src/main/resources/hudson/security/Messages_ja.properties index 34d4f5cfe802..d9eef21f12c3 100644 --- a/core/src/main/resources/hudson/security/Messages_ja.properties +++ b/core/src/main/resources/hudson/security/Messages_ja.properties @@ -19,34 +19,34 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -GlobalSecurityConfiguration.DisplayName=\u30b0\u30ed\u30fc\u30d0\u30eb\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u306e\u8a2d\u5b9a -GlobalSecurityConfiguration.Description=Jenkins\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u8a2d\u5b9a\u3057\u307e\u3059\u3002\u8ab0\u304c\u30b7\u30b9\u30c6\u30e0\u306b\u30a2\u30af\u30bb\u30b9\u3001\u4f7f\u7528\u3067\u304d\u308b\u304b\u306a\u3069\u3092\u8a2d\u5b9a\u3057\u307e\u3059\u3002 +GlobalSecurityConfiguration.DisplayName=グローãƒãƒ«ã‚»ã‚­ãƒ¥ãƒªãƒ†ã‚£ã®è¨­å®š +GlobalSecurityConfiguration.Description=Jenkinsã®ã‚»ã‚­ãƒ¥ãƒªãƒ†ã‚£ã‚’設定ã—ã¾ã™ã€‚誰ãŒã‚·ã‚¹ãƒ†ãƒ ã«ã‚¢ã‚¯ã‚»ã‚¹ã€ä½¿ç”¨ã§ãã‚‹ã‹ãªã©ã‚’設定ã—ã¾ã™ã€‚ -HudsonPrivateSecurityRealm.WouldYouLikeToSignUp=\u3053\u306e{0}\u306e{1}\u306f\u3001Jenkins\u306b\u306f\u767b\u9332\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u30b5\u30a4\u30f3\u30a2\u30c3\u30d7\u3057\u307e\u3059\u304b? -LegacyAuthorizationStrategy.DisplayName=\u4e92\u63db\u6027\u30e2\u30fc\u30c9 +HudsonPrivateSecurityRealm.WouldYouLikeToSignUp=ã“ã®{0}ã®{1}ã¯ã€Jenkinsã«ã¯ç™»éŒ²ã•ã‚Œã¦ã„ã¾ã›ã‚“。サインアップã—ã¾ã™ã‹? +LegacyAuthorizationStrategy.DisplayName=互æ›æ€§ãƒ¢ãƒ¼ãƒ‰ -HudsonPrivateSecurityRealm.DisplayName=Jenkins\u306e\u30e6\u30fc\u30b6\u30fc\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9 -HudsonPrivateSecurityRealm.Details.DisplayName=\u30d1\u30b9\u30ef\u30fc\u30c9 -HudsonPrivateSecurityRealm.Details.PasswordError=\u5165\u529b\u3055\u308c\u305f\uff12\u3064\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u4e00\u81f4\u3057\u3066\u3044\u307e\u305b\u3093\u3002\u3082\u3046\u4e00\u5ea6\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002 -HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=\u30e6\u30fc\u30b6\u30fc\u306e\u7ba1\u7406 -HudsonPrivateSecurityRealm.ManageUserLinks.Description=Jenkins\u306b\u30ed\u30b0\u30a4\u30f3\u3059\u308b\u30e6\u30fc\u30b6\u30fc\u306e\u4f5c\u6210/\u524a\u9664/\u5909\u66f4\u3092\u5b9f\u884c\u3057\u307e\u3059\u3002 +HudsonPrivateSecurityRealm.DisplayName=Jenkinsã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ +HudsonPrivateSecurityRealm.Details.DisplayName=パスワード +HudsonPrivateSecurityRealm.Details.PasswordError=入力ã•ã‚ŒãŸï¼’ã¤ã®ãƒ‘スワードãŒä¸€è‡´ã—ã¦ã„ã¾ã›ã‚“。もã†ä¸€åº¦å…¥åŠ›ã—ã¦ãã ã•ã„。 +HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=ユーザーã®ç®¡ç† +HudsonPrivateSecurityRealm.ManageUserLinks.Description=Jenkinsã«ãƒ­ã‚°ã‚¤ãƒ³ã™ã‚‹ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ä½œæˆ/削除/変更を実行ã—ã¾ã™ã€‚ -HudsonPrivateSecurityRealm.CreateAccount.TextNotMatchWordInImage=\u753b\u50cf\u306e\u8a00\u8449\u3068\u30c6\u30ad\u30b9\u30c8\u304c\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002 -HudsonPrivateSecurityRealm.CreateAccount.PasswordNotMatch=\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002 -HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=\u30d1\u30b9\u30ef\u30fc\u30c9\u306f\u5fc5\u9808\u3067\u3059\u3002 -HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=\u30e6\u30fc\u30b6\u30fc\u540d\u306f\u5fc5\u9808\u3067\u3059\u3002 -HudsonPrivateSecurityRealm.CreateAccount.InvalidEmailAddress=\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u306b\u8aa4\u308a\u304c\u3042\u308a\u307e\u3059\u3002 -HudsonPrivateSecurityRealm.CreateAccount.UserNameAlreadyTaken=\u305d\u306e\u30e6\u30fc\u30b6\u30fc\u540d\u306f\u3059\u3067\u306b\u4f7f\u7528\u3055\u308c\u3066\u3044\u307e\u3059\u3002 +HudsonPrivateSecurityRealm.CreateAccount.TextNotMatchWordInImage=ç”»åƒã®è¨€è‘‰ã¨ãƒ†ã‚­ã‚¹ãƒˆãŒä¸€è‡´ã—ã¾ã›ã‚“。 +HudsonPrivateSecurityRealm.CreateAccount.PasswordNotMatch=パスワードãŒä¸€è‡´ã—ã¾ã›ã‚“。 +HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=パスワードã¯å¿…é ˆã§ã™ã€‚ +HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=ユーザーåã¯å¿…é ˆã§ã™ã€‚ +HudsonPrivateSecurityRealm.CreateAccount.InvalidEmailAddress=メールアドレスã«èª¤ã‚ŠãŒã‚ã‚Šã¾ã™ã€‚ +HudsonPrivateSecurityRealm.CreateAccount.UserNameAlreadyTaken=ãã®ãƒ¦ãƒ¼ã‚¶ãƒ¼åã¯ã™ã§ã«ä½¿ç”¨ã•ã‚Œã¦ã„ã¾ã™ã€‚ -FullControlOnceLoggedInAuthorizationStrategy.DisplayName=\u30ed\u30b0\u30a4\u30f3\u6e08\u307f\u30e6\u30fc\u30b6\u30fc\u306b\u8a31\u53ef +FullControlOnceLoggedInAuthorizationStrategy.DisplayName=ログイン済ã¿ãƒ¦ãƒ¼ã‚¶ãƒ¼ã«è¨±å¯ -AuthorizationStrategy.DisplayName=\u5168\u54e1\u306b\u8a31\u53ef +AuthorizationStrategy.DisplayName=全員ã«è¨±å¯ -LegacySecurityRealm.Displayname=\u30b5\u30fc\u30d6\u30ec\u30c3\u30c8\u30b3\u30f3\u30c6\u30ca\u306e\u8a8d\u8a3c +LegacySecurityRealm.Displayname=サーブレットコンテナã®èªè¨¼ -UserDetailsServiceProxy.UnableToQuery={0}\u306e\u30e6\u30fc\u30b6\u30fc\u60c5\u5831\u3092\u691c\u7d22\u3067\u304d\u307e\u305b\u3093\u3002 +UserDetailsServiceProxy.UnableToQuery={0}ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼æƒ…報を検索ã§ãã¾ã›ã‚“。 # not in use Permission.Permissions.Title=N/A -AccessDeniedException2.MissingPermission={0} \u306b\u306f\u3001{1} \u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3\u304c\u3042\u308a\u307e\u305b\u3093\u3002 +AccessDeniedException2.MissingPermission={0} ã«ã¯ã€{1} パーミッションãŒã‚ã‚Šã¾ã›ã‚“。 diff --git a/core/src/main/resources/hudson/security/Messages_pl.properties b/core/src/main/resources/hudson/security/Messages_pl.properties index cc98c4214921..e7effae6d0c7 100644 --- a/core/src/main/resources/hudson/security/Messages_pl.properties +++ b/core/src/main/resources/hudson/security/Messages_pl.properties @@ -20,19 +20,19 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. # Manage Users -HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=Zarz\u0105dzaj u\u017Cytkownikami +HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=ZarzÄ…dzaj użytkownikami # Create/delete/modify users that can log in to this Jenkins -HudsonPrivateSecurityRealm.ManageUserLinks.Description=Dodawaj, usuwaj i modyfikuj u\u017Cytkownik\u00F3w, kt\u00F3rzy mog\u0105 si\u0119 logowa\u0107 do Jenkinsa -GlobalSecurityConfiguration.DisplayName=Konfiguruj ustawienia bezpiecze\u0144stwa -GlobalSecurityConfiguration.Description=Zabezpiecz Jenkinsa: decyduj, kto ma do niego dost\u0119p. -HudsonPrivateSecurityRealm.Details.DisplayName=Has\u0142o -HudsonPrivateSecurityRealm.DisplayName=W\u0142asna baza danych Jenkinsa +HudsonPrivateSecurityRealm.ManageUserLinks.Description=Dodawaj, usuwaj i modyfikuj użytkowników, którzy mogÄ… siÄ™ logować do Jenkinsa +GlobalSecurityConfiguration.DisplayName=Konfiguruj ustawienia bezpieczeÅ„stwa +GlobalSecurityConfiguration.Description=Zabezpiecz Jenkinsa: decyduj, kto ma do niego dostÄ™p. +HudsonPrivateSecurityRealm.Details.DisplayName=HasÅ‚o +HudsonPrivateSecurityRealm.DisplayName=WÅ‚asna baza danych Jenkinsa HudsonPrivateSecurityRealm.Details.PasswordError=\ - Potw\u00F3rzone has\u0142o nie jest takie samo, jak wpisane. \ - Upewnij si\u0119, \u017Ce oba has\u0142a s\u0105 takie same. -HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=Has\u0142o jest wymagane -HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=Nazwa u\u017Cytkownika jest wymagana + Potwórzone hasÅ‚o nie jest takie samo, jak wpisane. \ + Upewnij siÄ™, że oba hasÅ‚a sÄ… takie same. +HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=HasÅ‚o jest wymagane +HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=Nazwa użytkownika jest wymagana HudsonPrivateSecurityRealm.CreateAccount.InvalidEmailAddress=Niepoprawny adres e-mail -HudsonPrivateSecurityRealm.CreateAccount.UserNameAlreadyTaken=Nazwa u\u017Cytkownika jest ju\u017C u\u017Cywana -AuthorizationStrategy.DisplayName=Ka\u017Cdy u\u017Cytkownik mo\u017Ce wszystko +HudsonPrivateSecurityRealm.CreateAccount.UserNameAlreadyTaken=Nazwa użytkownika jest już używana +AuthorizationStrategy.DisplayName=Każdy użytkownik może wszystko Permission.Permissions.Title=nd. diff --git a/core/src/main/resources/hudson/security/Messages_pt_BR.properties b/core/src/main/resources/hudson/security/Messages_pt_BR.properties index 6a28fc40efce..730a2d5d2beb 100644 --- a/core/src/main/resources/hudson/security/Messages_pt_BR.properties +++ b/core/src/main/resources/hudson/security/Messages_pt_BR.properties @@ -20,29 +20,29 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -GlobalSecurityConfiguration.DisplayName=Configurar seguran\u00E7a global -GlobalSecurityConfiguration.Description=Fa\u00E7a a seguran\u00E7a no Jenkins; defina quem pode usar/acessar o sistema. -HudsonPrivateSecurityRealm.WouldYouLikeToSignUp=O {0} {1} \u00E9 novo no Jenkins. Voc\u00EA deseja se cadastrar? +GlobalSecurityConfiguration.DisplayName=Configurar segurança global +GlobalSecurityConfiguration.Description=Faça a segurança no Jenkins; defina quem pode usar/acessar o sistema. +HudsonPrivateSecurityRealm.WouldYouLikeToSignUp=O {0} {1} é novo no Jenkins. Você deseja se cadastrar? LegacyAuthorizationStrategy.DisplayName=Modo legado HudsonPrivateSecurityRealm.Details.DisplayName=Senha -HudsonPrivateSecurityRealm.Details.PasswordError=A senha confirmada n\u00E3o \u00E9 igual \u00E0 senha informada. Por favor assegure-se de digitar a mesma senha duas vezes. -UserDetailsServiceProxy.UnableToQuery=N\u00E3o foi poss\u00EDvel buscar informa\u00E7\u00F5es do usu\u00E1rio\: {0} +HudsonPrivateSecurityRealm.Details.PasswordError=A senha confirmada não é igual à senha informada. Por favor assegure-se de digitar a mesma senha duas vezes. +UserDetailsServiceProxy.UnableToQuery=Não foi possível buscar informações do usuário\: {0} Permission.Permissions.Title=N/A -FullControlOnceLoggedInAuthorizationStrategy.DisplayName=Usu\u00E1rios que deram entrada conseguem fazer qualquer coisa +FullControlOnceLoggedInAuthorizationStrategy.DisplayName=Usuários que deram entrada conseguem fazer qualquer coisa AuthorizationStrategy.DisplayName=Qualquer um pode fazer qualquer coisa -AccessDeniedException2.MissingPermission= {0} est\u00E1 faltando a permiss\u00E3o {1} -HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=Gerenciar usu\u00E1rios +AccessDeniedException2.MissingPermission= {0} está faltando a permissão {1} +HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=Gerenciar usuários LegacySecurityRealm.Displayname=Delegar para o conteiner de servlet HudsonPrivateSecurityRealm.DisplayName=Base de dados interna do Jenkins -HudsonPrivateSecurityRealm.ManageUserLinks.Description=Criar/remover/modificar usu\u00E1rios que entram no Jenkins -HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=O nome do usu\u00E1rio \u00E9 obrigat\u00F3rio -HudsonPrivateSecurityRealm.CreateAccount.UserNameAlreadyTaken=O nome de usu\u00E1rio \u00E9 foi utilizado -HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=A senha \u00E9 obrigat\u00F3ria -HudsonPrivateSecurityRealm.CreateAccount.PasswordNotMatch=A senha n\u00E3o confere -HudsonPrivateSecurityRealm.CreateAccount.TextNotMatchWordInImage=O texto n\u00E3o confere com o exibido na imagem -HudsonPrivateSecurityRealm.CreateAccount.InvalidEmailAddress=Endere\u00E7o de e-mail inv\u00E1lido -HudsonPrivateSecurityRealm.SignupWarning=Com inscri\u00E7\u00E3o habilitada qualquer pessoa na sua rede pode se tornar um usu\u00E1rio autenticado. \u00C9 recomendado neste caso minimizar as permiss\u00F5es concedidas a qualquer usu\u00E1rio autenticado. +HudsonPrivateSecurityRealm.ManageUserLinks.Description=Criar/remover/modificar usuários que entram no Jenkins +HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=O nome do usuário é obrigatório +HudsonPrivateSecurityRealm.CreateAccount.UserNameAlreadyTaken=O nome de usuário é foi utilizado +HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=A senha é obrigatória +HudsonPrivateSecurityRealm.CreateAccount.PasswordNotMatch=A senha não confere +HudsonPrivateSecurityRealm.CreateAccount.TextNotMatchWordInImage=O texto não confere com o exibido na imagem +HudsonPrivateSecurityRealm.CreateAccount.InvalidEmailAddress=Endereço de e-mail inválido +HudsonPrivateSecurityRealm.SignupWarning=Com inscrição habilitada qualquer pessoa na sua rede pode se tornar um usuário autenticado. É recomendado neste caso minimizar as permissões concedidas a qualquer usuário autenticado. NoneSecurityRealm.DisplayName=Nenhum -AccessDeniedException.MissingPermissions={0} tem uma permiss\u00E3o faltando, uma da {1} \u00E9 requerida -HudsonPrivateSecurityRealm.CreateAccount.UserNameInvalidCharacters=O nome do usu\u00E1rio pode conter apenas caracteres alfanum\u00E9ricos, sublinhado e h\u00EDfen -HudsonPrivateSecurityRealm.CreateAccount.UserNameInvalidCharactersCustom=Nome do usu\u00E1rio precisa combinar com a seguinte express\u00E3o: {0} +AccessDeniedException.MissingPermissions={0} tem uma permissão faltando, uma da {1} é requerida +HudsonPrivateSecurityRealm.CreateAccount.UserNameInvalidCharacters=O nome do usuário pode conter apenas caracteres alfanuméricos, sublinhado e hífen +HudsonPrivateSecurityRealm.CreateAccount.UserNameInvalidCharactersCustom=Nome do usuário precisa combinar com a seguinte expressão: {0} diff --git a/core/src/main/resources/hudson/security/Messages_ru.properties b/core/src/main/resources/hudson/security/Messages_ru.properties index 29f9c701648c..5d88473c58e7 100644 --- a/core/src/main/resources/hudson/security/Messages_ru.properties +++ b/core/src/main/resources/hudson/security/Messages_ru.properties @@ -20,30 +20,30 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -LegacyAuthorizationStrategy.DisplayName="\u0422\u0440\u0430\u0434\u0438\u0446\u0438\u043E\u043D\u043D\u044B\u0439" \u0440\u0435\u0436\u0438\u043C +LegacyAuthorizationStrategy.DisplayName="Традиционный" режим -HudsonPrivateSecurityRealm.Details.DisplayName=\u041F\u0430\u0440\u043E\u043B\u044C +HudsonPrivateSecurityRealm.Details.DisplayName=Пароль HudsonPrivateSecurityRealm.Details.PasswordError=\ - \u041F\u0430\u0440\u043E\u043B\u044C \u0438 \u043F\u043E\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043D\u0438\u0435 \u043D\u0435 \u0441\u043E\u0432\u043F\u0430\u0434\u0430\u044E\u0442. \ - \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044C \u0447\u0442\u043E \u0432\u044B \u0432\u0432\u043E\u0434\u0438\u0442\u0435 \u043E\u0434\u0438\u043D \u0438 \u0442\u043E\u0442 \u0436\u0435 \u043F\u0430\u0440\u043E\u043B\u044C. + Пароль и подтверждение не Ñовпадают. \ + УбедитеÑÑŒ что вы вводите один и тот же пароль. -UserDetailsServiceProxy.UnableToQuery=\u041D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044E \u043E \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0435: {0} +UserDetailsServiceProxy.UnableToQuery=Ðевозможно получить информацию о пользователе: {0} # not in use -Permission.Permissions.Title=\u041D\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043D\u043E -GlobalSecurityConfiguration.DisplayName=\u0413\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u044B\u0435 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u0431\u0435\u0437\u043E\u043F\u0430\u0441\u043D\u043E\u0441\u0442\u0438 -GlobalSecurityConfiguration.Description=\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 \u0431\u0435\u0437\u043E\u043F\u0430\u0441\u043D\u043E\u0441\u0442\u0438 Jenkins, \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F \u043F\u0440\u0430\u0432 \u0434\u043B\u044F \u0434\u043E\u0441\u0442\u0443\u043F\u0430 \u0438 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u044F \u0441\u0438\u0441\u0442\u0435\u043C\u044B. -HudsonPrivateSecurityRealm.WouldYouLikeToSignUp=\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C {0} {1} \u044F\u0432\u043B\u044F\u0435\u0442\u0441\u044F \u043D\u043E\u0432\u044B\u043C \u0434\u043B\u044F Jenkins. \u0425\u043E\u0442\u0435\u043B\u0438 \u0431\u044B \u0432\u044B \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043E\u0432\u0430\u0442\u044C\u0441\u044F? -HudsonPrivateSecurityRealm.DisplayName=\u0411\u0430\u0437\u0430 \u0434\u0430\u043D\u043D\u044B\u0445 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0435\u0439 Jenkins -HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=\u0423\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F\u043C\u0438 -HudsonPrivateSecurityRealm.ManageUserLinks.Description=\u0421\u043E\u0437\u0434\u0430\u043D\u0438\u0435, \u0443\u0434\u0430\u043B\u0435\u043D\u0438\u0435 \u0438 \u043C\u043E\u0434\u0438\u0444\u0438\u043A\u0446\u0438\u044F \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0435\u0439, \u0438\u043C\u0435\u044E\u0449\u0438\u0445 \u043F\u0440\u0430\u0432\u043E \u0434\u043E\u0441\u0442\u0443\u043F\u0430 \u043A Jenkins -HudsonPrivateSecurityRealm.CreateAccount.TextNotMatchWordInImage=\u0422\u0435\u043A\u0441\u0442 \u043D\u0435 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u044E -HudsonPrivateSecurityRealm.CreateAccount.PasswordNotMatch=\u041F\u0430\u0440\u043E\u043B\u044C \u043D\u0435 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u0435\u0442 -HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044F \u043F\u0430\u0440\u043E\u043B\u044C -HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044F \u0438\u043C\u044F \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F -HudsonPrivateSecurityRealm.CreateAccount.InvalidEmailAddress=\u041D\u0435\u043A\u043E\u0440\u0440\u0435\u043A\u0442\u043D\u044B\u0439 e-mail -HudsonPrivateSecurityRealm.CreateAccount.UserNameAlreadyTaken=\u0418\u043C\u044F \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F \u0443\u0436\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0441\u044F -FullControlOnceLoggedInAuthorizationStrategy.DisplayName=\u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0435 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0438 \u043C\u043E\u0433\u0443\u0442 \u0434\u0435\u043B\u0430\u0442\u044C \u0447\u0442\u043E \u0443\u0433\u043E\u0434\u043D\u043E -AuthorizationStrategy.DisplayName=\u041B\u044E\u0431\u043E\u0439 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C \u043C\u043E\u0436\u0435\u0442 \u0441\u0434\u0435\u043B\u0430\u0442\u044C \u0447\u0442\u043E \u0443\u0433\u043E\u0434\u043D\u043E -LegacySecurityRealm.Displayname=\u0414\u0435\u043B\u0435\u0433\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440\u0443 \u0441\u0435\u0440\u0432\u043B\u0435\u0442\u043E\u0432 -AccessDeniedException2.MissingPermission={0} \u043E\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043D\u0438\u0435 \u043D\u0430 {1} +Permission.Permissions.Title=ÐеизвеÑтно +GlobalSecurityConfiguration.DisplayName=Глобальные наÑтройки безопаÑноÑти +GlobalSecurityConfiguration.Description=ÐаÑтройка безопаÑноÑти Jenkins, ÐºÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð¿Ñ€Ð°Ð² Ð´Ð»Ñ Ð´Ð¾Ñтупа и иÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ ÑиÑтемы. +HudsonPrivateSecurityRealm.WouldYouLikeToSignUp=Пользователь {0} {1} ÑвлÑетÑÑ Ð½Ð¾Ð²Ñ‹Ð¼ Ð´Ð»Ñ Jenkins. Хотели бы вы зарегиÑтрироватьÑÑ? +HudsonPrivateSecurityRealm.DisplayName=База данных пользователей Jenkins +HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=Управление пользователÑми +HudsonPrivateSecurityRealm.ManageUserLinks.Description=Создание, удаление и Ð¼Ð¾Ð´Ð¸Ñ„Ð¸ÐºÑ†Ð¸Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»ÐµÐ¹, имеющих право доÑтупа к Jenkins +HudsonPrivateSecurityRealm.CreateAccount.TextNotMatchWordInImage=ТекÑÑ‚ не ÑоответÑтвует изображению +HudsonPrivateSecurityRealm.CreateAccount.PasswordNotMatch=Пароль не ÑоответÑтвует +HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=ТребуетÑÑ Ð¿Ð°Ñ€Ð¾Ð»ÑŒ +HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=ТребуетÑÑ Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ +HudsonPrivateSecurityRealm.CreateAccount.InvalidEmailAddress=Ðекорректный e-mail +HudsonPrivateSecurityRealm.CreateAccount.UserNameAlreadyTaken=Ð˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ ÑƒÐ¶Ðµ иÑпользуетÑÑ +FullControlOnceLoggedInAuthorizationStrategy.DisplayName=ЗарегиÑтрированные пользователи могут делать что угодно +AuthorizationStrategy.DisplayName=Любой пользователь может Ñделать что угодно +LegacySecurityRealm.Displayname=Делегировать контейнеру Ñервлетов +AccessDeniedException2.MissingPermission={0} отÑутÑтвует разрешение на {1} diff --git a/core/src/main/resources/hudson/security/Messages_sr.properties b/core/src/main/resources/hudson/security/Messages_sr.properties index c41df9b913f4..c4d311028da4 100644 --- a/core/src/main/resources/hudson/security/Messages_sr.properties +++ b/core/src/main/resources/hudson/security/Messages_sr.properties @@ -1,23 +1,23 @@ # This file is under the MIT License by authors -GlobalSecurityConfiguration.DisplayName=\u0421\u0438\u0433\u0443\u0440\u043D\u043E\u0441\u043D\u0430 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 -GlobalSecurityConfiguration.Description=\u041E\u0431\u0435\u0437\u0431\u0435\u0434\u0438 Jenkins \u2014 \u043A\u043E \u0438\u043C\u0430 \u043F\u0440\u0438\u0441\u0442\u0443\u043F \u0441\u0438\u0441\u0442\u0435\u043C\u0443. -HudsonPrivateSecurityRealm.WouldYouLikeToSignUp=\u041E\u0432\u0430\u0458 {0} {1} \u0458\u0435 \u043D\u043E\u0432\u043E Jenkins-\u0443. \u0414\u0430\u043B\u0438 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u0441\u0435 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0443\u0458\u0435\u0442\u0435? -LegacyAuthorizationStrategy.DisplayName=\u0421\u0442\u0430\u0440\u0438 \u0440\u0435\u0436\u0438\u043C -HudsonPrivateSecurityRealm.DisplayName=\u0411\u0430\u0437\u0430 \u043F\u043E\u0434\u0430\u0442\u0430\u043A\u0430 \u0437\u0430 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0435 \u0443\u043D\u0443\u0442\u0430\u0440 Jenkins -HudsonPrivateSecurityRealm.Details.DisplayName=\u041B\u043E\u0437\u0438\u043D\u043A\u0430 -HudsonPrivateSecurityRealm.Details.PasswordError=\u041B\u043E\u0437\u0438\u043D\u043A\u0435 \u0441\u0435 \u043D\u0435 \u043F\u043E\u043A\u043B\u0430\u043F\u0430\u0458\u0443. \u041C\u043E\u043B\u0438\u043C\u043E \u0432\u0430\u0441, \u0443\u043D\u0435\u0441\u0438\u0442\u0435 \u043F\u043E\u043D\u043E\u0432\u043E. -HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=\u0423\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438\u043C\u0430 -HudsonPrivateSecurityRealm.ManageUserLinks.Description=\ \u041A\u0440\u0435\u0438\u0440\u0430\u0458/\u0438\u0437\u0431\u0440\u0438\u0448\u0438/\u0443\u0440\u0435\u0434\u0438 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0435 \u0441\u0430 \u043F\u0440\u0438\u0441\u0442\u0443\u043F\u043E\u043C \u043D\u0430 Jenkins -HudsonPrivateSecurityRealm.CreateAccount.TextNotMatchWordInImage=\u0422\u0435\u043A\u0441\u0442 \u043D\u0435 \u043E\u0434\u0433\u043E\u0432\u0430\u0440\u0430 \u0440\u0435\u045B \u043F\u043E\u043A\u0430\u0437\u0430\u043D \u0441\u043B\u0438\u043A\u043E\u043C -HudsonPrivateSecurityRealm.CreateAccount.PasswordNotMatch=\u041B\u043E\u0437\u0438\u043D\u043A\u0430 \u0441\u0435 \u043D\u0435 \u043F\u043E\u043A\u043B\u0430\u043F\u0430 -HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=\u041B\u043E\u0437\u0438\u043D\u043A\u0430 \u0458\u0435 \u043E\u0431\u0430\u0432\u0435\u0437\u043D\u0430 -HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u043E \u0438\u043C\u0435 \u0458\u0435 \u043E\u0431\u0430\u0432\u0435\u0437\u043D\u043E -HudsonPrivateSecurityRealm.CreateAccount.InvalidEmailAddress=\u041D\u0435\u0432\u0430\u0436\u0435\u045B\u0430 \u0430\u0434\u0440\u0435\u0441\u0430 \u0435-\u043F\u043E\u0448\u0442\u0435 -HudsonPrivateSecurityRealm.CreateAccount.UserNameAlreadyTaken=\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u043E \u0438\u043C\u0435 \u0458\u0435 \u0432\u0435\u045B \u0437\u0430\u0443\u0437\u0435\u0442\u043E -FullControlOnceLoggedInAuthorizationStrategy.DisplayName=\u041F\u0440\u0438\u0458\u0430\u0432\u0459\u0435\u043D\u0438 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438 \u043C\u043E\u0433\u0443 \u0441\u0432\u0435 -AuthorizationStrategy.DisplayName=\u0421\u0432\u0438 \u043C\u043E\u0433\u0443 \u0441\u0432\u0435 -LegacySecurityRealm.Displayname=\u0414\u0435\u043B\u0435\u0433\u0438\u0440\u0430\u0458 \u0441\u0435\u0440\u0432\u043B\u0435\u0442 \u043A\u043E\u043D\u0442\u0435\u0458\u043D\u0435\u0440\u0443 -UserDetailsServiceProxy.UnableToQuery=\u041D\u0438\u0458\u0435 \u043C\u043E\u0433\u0443\u045B\u0435 \u043F\u0440\u043E\u0458\u0430\u045B\u0438 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0443 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430: {0} -Permission.Permissions.Title=\u041D/\u0414 -AccessDeniedException2.MissingPermission={0} \u0444\u0430\u043B\u0438 \u043E\u0432\u043B\u0430\u0448\u045B\u0435\u045A\u0435 {1} +GlobalSecurityConfiguration.DisplayName=СигурноÑна подешавања +GlobalSecurityConfiguration.Description=Обезбеди Jenkins — ко има приÑтуп ÑиÑтему. +HudsonPrivateSecurityRealm.WouldYouLikeToSignUp=Овај {0} {1} је ново Jenkins-у. Дали желите да Ñе региÑтрујете? +LegacyAuthorizationStrategy.DisplayName=Стари режим +HudsonPrivateSecurityRealm.DisplayName=База података за кориÑнике унутар Jenkins +HudsonPrivateSecurityRealm.Details.DisplayName=Лозинка +HudsonPrivateSecurityRealm.Details.PasswordError=Лозинке Ñе не поклапају. Молимо ваÑ, унеÑите поново. +HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=Управљање кориÑницима +HudsonPrivateSecurityRealm.ManageUserLinks.Description=\ Креирај/избриши/уреди кориÑнике Ñа приÑтупом на Jenkins +HudsonPrivateSecurityRealm.CreateAccount.TextNotMatchWordInImage=ТекÑÑ‚ не одговара рећ показан Ñликом +HudsonPrivateSecurityRealm.CreateAccount.PasswordNotMatch=Лозинка Ñе не поклапа +HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=Лозинка је обавезна +HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=КориÑничко име је обавезно +HudsonPrivateSecurityRealm.CreateAccount.InvalidEmailAddress=Ðеважећа адреÑа е-поште +HudsonPrivateSecurityRealm.CreateAccount.UserNameAlreadyTaken=КориÑничко име је већ заузето +FullControlOnceLoggedInAuthorizationStrategy.DisplayName=Пријављени кориÑници могу Ñве +AuthorizationStrategy.DisplayName=Сви могу Ñве +LegacySecurityRealm.Displayname=Делегирај Ñервлет контејнеру +UserDetailsServiceProxy.UnableToQuery=Ðије могуће пројаћи информацију кориÑника: {0} +Permission.Permissions.Title=Ð/Д +AccessDeniedException2.MissingPermission={0} фали овлашћење {1} diff --git a/core/src/main/resources/hudson/security/Messages_tr.properties b/core/src/main/resources/hudson/security/Messages_tr.properties index 062ca3e82291..3778bf6e9c3a 100644 --- a/core/src/main/resources/hudson/security/Messages_tr.properties +++ b/core/src/main/resources/hudson/security/Messages_tr.properties @@ -22,12 +22,12 @@ LegacyAuthorizationStrategy.DisplayName=Miras modu -HudsonPrivateSecurityRealm.Details.DisplayName=\u015fifre +HudsonPrivateSecurityRealm.Details.DisplayName=ÅŸifre HudsonPrivateSecurityRealm.Details.PasswordError=\ - Do\u011frulama i\u00e7in girilen \u015fifre \u00f6nceki girilen ile ayn\u0131 de\u011fil. \ - L\u00fctfen ayn\u0131 \u015fifreyi iki kez yazd\u0131\u011f\u0131n\u0131za emin olun. + DoÄŸrulama için girilen ÅŸifre önceki girilen ile aynı deÄŸil. \ + Lütfen aynı ÅŸifreyi iki kez yazdığınıza emin olun. -UserDetailsServiceProxy.UnableToQuery=Kullan\u0131c\u0131 bilgisi al\u0131nam\u0131yor: {0} +UserDetailsServiceProxy.UnableToQuery=Kullanıcı bilgisi alınamıyor: {0} # not in use -Permission.Permissions.Title=Mevcut De\u011fil +Permission.Permissions.Title=Mevcut DeÄŸil diff --git a/core/src/main/resources/hudson/security/Messages_zh_TW.properties b/core/src/main/resources/hudson/security/Messages_zh_TW.properties index d5068ad40fda..01ab926a2eb0 100644 --- a/core/src/main/resources/hudson/security/Messages_zh_TW.properties +++ b/core/src/main/resources/hudson/security/Messages_zh_TW.properties @@ -20,36 +20,36 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -GlobalSecurityConfiguration.DisplayName=\u8a2d\u5b9a\u5168\u57df\u5b89\u5168\u6027 -GlobalSecurityConfiguration.Description=\u4fdd\u8b77 Jenkins\uff0c\u5b9a\u7fa9\u8ab0\u53ef\u4ee5\u5b58\u53d6\u6216\u662f\u4f7f\u7528\u7cfb\u7d71\u3002 +GlobalSecurityConfiguration.DisplayName=設定全域安全性 +GlobalSecurityConfiguration.Description=ä¿è­· Jenkins,定義誰å¯ä»¥å­˜å–或是使用系統。 -HudsonPrivateSecurityRealm.WouldYouLikeToSignUp=Jenkins \u4e0d\u8a8d\u5f97 {0} {1}\u3002\u60a8\u8981\u8a3b\u518a\u55ce? -LegacyAuthorizationStrategy.DisplayName=\u820a\u7248\u6a21\u5f0f +HudsonPrivateSecurityRealm.WouldYouLikeToSignUp=Jenkins ä¸èªå¾— {0} {1}。您è¦è¨»å†Šå—Ž? +LegacyAuthorizationStrategy.DisplayName=èˆŠç‰ˆæ¨¡å¼ -HudsonPrivateSecurityRealm.DisplayName=Jenkins \u5167\u5efa\u4f7f\u7528\u8005\u8cc7\u6599\u5eab -HudsonPrivateSecurityRealm.Details.DisplayName=\u5bc6\u78bc +HudsonPrivateSecurityRealm.DisplayName=Jenkins 內建使用者資料庫 +HudsonPrivateSecurityRealm.Details.DisplayName=密碼 HudsonPrivateSecurityRealm.Details.PasswordError=\ - \u78ba\u8a8d\u5bc6\u78bc\u8ddf\u8f38\u5165\u7684\u5bc6\u78bc\u4e0d\u4e00\u81f4\u3002\ - \u8acb\u78ba\u5b9a\u60a8\u5169\u6b21\u8f38\u5165\u7684\u5bc6\u78bc\u662f\u4e00\u6a23\u7684\u3002 -HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=\u7ba1\u7406\u4f7f\u7528\u8005 -HudsonPrivateSecurityRealm.ManageUserLinks.Description=\u5efa\u7acb\u3001\u522a\u9664\u6216\u662f\u4fee\u6539\u53ef\u4ee5\u767b\u5165\u5230 Jenkins \u7684\u4f7f\u7528\u8005 + 確èªå¯†ç¢¼è·Ÿè¼¸å…¥çš„密碼ä¸ä¸€è‡´ã€‚\ + 請確定您兩次輸入的密碼是一樣的。 +HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=管ç†ä½¿ç”¨è€… +HudsonPrivateSecurityRealm.ManageUserLinks.Description=建立ã€åˆªé™¤æˆ–是修改å¯ä»¥ç™»å…¥åˆ° Jenkins 的使用者 -HudsonPrivateSecurityRealm.CreateAccount.TextNotMatchWordInImage=\u6587\u5b57\u8ddf\u5716\u7247\u88e1\u7684\u5b57\u6a23\u4e0d\u7b26 -HudsonPrivateSecurityRealm.CreateAccount.PasswordNotMatch=\u5bc6\u78bc\u4e0d\u7b26 -HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=\u4e00\u5b9a\u8981\u8f38\u5165\u5bc6\u78bc -HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=\u4e00\u5b9a\u8981\u8f38\u5165\u4f7f\u7528\u8005\u540d\u7a31 -HudsonPrivateSecurityRealm.CreateAccount.InvalidEmailAddress=\u96fb\u5b50\u90f5\u4ef6\u4fe1\u7bb1\u7121\u6548 -HudsonPrivateSecurityRealm.CreateAccount.UserNameAlreadyTaken=\u4f7f\u7528\u8005\u540d\u7a31\u5df2\u7d93\u6709\u4eba\u7528\u4e86 +HudsonPrivateSecurityRealm.CreateAccount.TextNotMatchWordInImage=文字跟圖片裡的字樣ä¸ç¬¦ +HudsonPrivateSecurityRealm.CreateAccount.PasswordNotMatch=密碼ä¸ç¬¦ +HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=一定è¦è¼¸å…¥å¯†ç¢¼ +HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=一定è¦è¼¸å…¥ä½¿ç”¨è€…å稱 +HudsonPrivateSecurityRealm.CreateAccount.InvalidEmailAddress=é›»å­éƒµä»¶ä¿¡ç®±ç„¡æ•ˆ +HudsonPrivateSecurityRealm.CreateAccount.UserNameAlreadyTaken=使用者å稱已經有人用了 -FullControlOnceLoggedInAuthorizationStrategy.DisplayName=\u767b\u5165\u6210\u529f\u7684\u4f7f\u7528\u8005\u53ef\u4ee5\u505a\u4efb\u4f55\u4e8b +FullControlOnceLoggedInAuthorizationStrategy.DisplayName=登入æˆåŠŸçš„使用者å¯ä»¥åšä»»ä½•äº‹ -AuthorizationStrategy.DisplayName=\u5927\u5bb6\u90fd\u53ef\u4ee5\u505a\u4efb\u4f55\u4e8b +AuthorizationStrategy.DisplayName=大家都å¯ä»¥åšä»»ä½•äº‹ -LegacySecurityRealm.Displayname=\u59d4\u6d3e\u7d66 Servlet Container +LegacySecurityRealm.Displayname=委派給 Servlet Container -UserDetailsServiceProxy.UnableToQuery=\u7121\u6cd5\u67e5\u8a62\u4f7f\u7528\u8005\u8cc7\u8a0a: {0} +UserDetailsServiceProxy.UnableToQuery=無法查詢使用者資訊: {0} # not in use Permission.Permissions.Title=N/A -AccessDeniedException2.MissingPermission={0} \u6c92\u6709 {1} \u6b0a\u9650 +AccessDeniedException2.MissingPermission={0} 沒有 {1} æ¬Šé™ diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_bg.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_bg.properties index c63343d4501e..118cb963af29 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_bg.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. login=\ - \u0432\u0445\u043e\u0434 + вход diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_cs.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_cs.properties index 91be3c5c911d..22987435add9 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_cs.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=p\u0159ihl\u00E1sit +login=pÅ™ihlásit diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_el.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_el.properties index 686e09241ae6..9f9e60e37383 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_el.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_el.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=\u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 +login=σÏνδεση diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_es.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_es.properties index be0e40f1c076..5387de844125 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_es.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=Iniciar sesi\u00F3n +login=Iniciar sesión diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_fi.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_fi.properties index fe8dda29fc23..cfd51cd9d6d5 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_fi.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_fi.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=Kirjaudu sis\u00E4\u00E4n +login=Kirjaudu sisään diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_he.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_he.properties index 04d3180ab5a9..7c7daec01e09 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_he.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_he.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=\u05D4\u05EA\u05D7\u05D1\u05E8 +login=התחבר diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_hu.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_hu.properties index ed37a95084ae..db8c351d1366 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_hu.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=Bejelentkez\u00E9s +login=Bejelentkezés diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_it.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_it.properties index ae73045d945a..80db1cb934a3 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_it.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ja.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ja.properties index d5be289309cf..e1a5c8abf20e 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ja.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=\u30ed\u30b0\u30a4\u30f3 +login=ログイン diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ko.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ko.properties index 234c0e5481b4..73f39a4cd3eb 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ko.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=\uB85C\uADF8\uC778 +login=ë¡œê·¸ì¸ diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pt_PT.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pt_PT.properties index af2ca823e563..11545c9975c1 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pt_PT.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pt_PT.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=Iniciar sess\u00E3o +login=Iniciar sessão diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ru.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ru.properties index f927e8fe80d7..36c6fef5434b 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ru.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=\u0432\u043e\u0439\u0442\u0438 +login=войти diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sk.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sk.properties index 0287d5d6a82a..27b8f83852d3 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sk.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=Prihl\u00E1si\u0165 sa +login=PrihlásiÅ¥ sa diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sr.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sr.properties index c7e7a1693ed8..e2b013e5d83d 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sr.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -login=\u041F\u0440\u0438\u0458\u0430\u0432\u0438 \u0441\u0435 +login=Пријави Ñе diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_tr.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_tr.properties index 010b8551216f..3e8e245e68ec 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_tr.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=giri\u015f yap +login=giriÅŸ yap diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_uk.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_uk.properties index dda8b9d6c8e6..60afea97061a 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_uk.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -login=\u0423\u0432\u0456\u0439\u0442\u0438 +login=Увійти diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_zh_TW.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_zh_TW.properties index 13a822be40b3..35a0d64c5130 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_zh_TW.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=\u767B\u5165 +login=登入 diff --git a/core/src/main/resources/hudson/security/SecurityRealm/signup_bg.properties b/core/src/main/resources/hudson/security/SecurityRealm/signup_bg.properties index cfb28e18f24d..1d16d68e6cfe 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/signup_bg.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/signup_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Sign\ up=\ - \u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f + Създаване на региÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ This\ is\ not\ supported\ in\ the\ current\ configuration.=\ - \u0422\u043e\u0432\u0430 \u043d\u0435 \u0441\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430 \u043e\u0442 \u0442\u0435\u043a\u0443\u0449\u0438\u0442\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438. + Това не Ñе поддържа от текущите наÑтройки. Signup\ not\ supported=\ - \u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u043d\u0435 \u0441\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430 + Създаването на региÑтрации не Ñе поддържа diff --git a/core/src/main/resources/hudson/security/SecurityRealm/signup_de.properties b/core/src/main/resources/hudson/security/SecurityRealm/signup_de.properties index 9bb35dac39ba..a57e19b2ad1f 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/signup_de.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/signup_de.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Sign\ up=Registrieren -This\ is\ not\ supported\ in\ the\ current\ configuration.=Dies ist in der aktuellen Konfiguration nicht unterst\u00FCtzt. -Signup\ not\ supported=Registrierung nicht unterst\u00FCtzt. +This\ is\ not\ supported\ in\ the\ current\ configuration.=Dies ist in der aktuellen Konfiguration nicht unterstützt. +Signup\ not\ supported=Registrierung nicht unterstützt. diff --git a/core/src/main/resources/hudson/security/SecurityRealm/signup_it.properties b/core/src/main/resources/hudson/security/SecurityRealm/signup_it.properties index c5121babe747..cef10e99f070 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/signup_it.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/signup_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -24,4 +24,4 @@ Sign\ up=Registrati Signup\ not\ supported=Registrazione non supportata This\ is\ not\ supported\ in\ the\ current\ configuration.=Quest''azione non \ - è supportata nella configurazione corrente. + è supportata nella configurazione corrente. diff --git a/core/src/main/resources/hudson/security/SecurityRealm/signup_ja.properties b/core/src/main/resources/hudson/security/SecurityRealm/signup_ja.properties index 1e1d19fa5d47..a36130dbf9d1 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/signup_ja.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/signup_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Signup\ not\ supported=\u30b5\u30a4\u30f3\u30a2\u30c3\u30d7\u672a\u5bfe\u5fdc -Sign\ up=\u30b5\u30a4\u30f3\u30a2\u30c3\u30d7 +Signup\ not\ supported=サインアップ未対応 +Sign\ up=サインアップ This\ is\ not\ supported\ in\ the\ current\ configuration.=\ -\u539f\u7f6a\u306e\u8a2d\u5b9a\u306f\u672a\u5bfe\u5fdc\u3067\u3059\u3002 +原罪ã®è¨­å®šã¯æœªå¯¾å¿œã§ã™ã€‚ diff --git a/core/src/main/resources/hudson/security/SecurityRealm/signup_pl.properties b/core/src/main/resources/hudson/security/SecurityRealm/signup_pl.properties index b8c44f57f31b..37b1269cd1ad 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/signup_pl.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/signup_pl.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Signup\ not\ supported==Rejestracja nie jest wspierana -This\ is\ not\ supported\ in\ the\ current\ configuration.=Niedost\u0119pne dla aktualnej konfiguracji. +This\ is\ not\ supported\ in\ the\ current\ configuration.=NiedostÄ™pne dla aktualnej konfiguracji. Sign\ up=Zarejestruj diff --git a/core/src/main/resources/hudson/security/SecurityRealm/signup_pt_BR.properties b/core/src/main/resources/hudson/security/SecurityRealm/signup_pt_BR.properties index c39feff52474..4886a51d9d28 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/signup_pt_BR.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/signup_pt_BR.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Sign\ up=Fazer\ o\ cadastro -This\ is\ not\ supported\ in\ the\ current\ configuration.=Isto n\u00E3o \u00E9 suportado na configura\u00E7\u00E3o atual. -Signup\ not\ supported=Fazer\ o\ cadastro\ n\u00E3o\ suportado +This\ is\ not\ supported\ in\ the\ current\ configuration.=Isto não é suportado na configuração atual. +Signup\ not\ supported=Fazer\ o\ cadastro\ não\ suportado diff --git a/core/src/main/resources/hudson/security/SecurityRealm/signup_sr.properties b/core/src/main/resources/hudson/security/SecurityRealm/signup_sr.properties index b84ffe86ae4c..167e2bc5a86d 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/signup_sr.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/signup_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Signup\ not\ supported=\u041F\u0440\u0438\u0458\u0430\u0432\u0430 \u043D\u0438\u0458\u0435 \u043C\u043E\u0433\u0443\u045B\u0435 -Sign\ up=\u041F\u0440\u0438\u0458\u0430\u0432\u0438 \u0441\u0435 -This\ is\ not\ supported\ in\ the\ current\ configuration.=\u041D\u0438\u0458\u0435 \u043F\u043E\u0434\u0440\u0436\u0430\u043D\u043E \u0437\u0430 \u0442\u0435\u043A\u0443\u045B\u0443 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0458\u0443 +Signup\ not\ supported=Пријава није могуће +Sign\ up=Пријави Ñе +This\ is\ not\ supported\ in\ the\ current\ configuration.=Ðије подржано за текућу конфигурацију diff --git a/core/src/main/resources/hudson/security/SecurityRealm/signup_zh_TW.properties b/core/src/main/resources/hudson/security/SecurityRealm/signup_zh_TW.properties index 84408cb13310..576823b14b67 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/signup_zh_TW.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/signup_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Sign\ up=\u8a3b\u518a -Signup\ not\ supported=\u4e0d\u63d0\u4f9b\u8a3b\u518a -This\ is\ not\ supported\ in\ the\ current\ configuration.=\u76ee\u524d\u7684\u8a2d\u5b9a\u4e0d\u63d0\u4f9b\u6b64\u529f\u80fd\u3002 +Sign\ up=註冊 +Signup\ not\ supported=ä¸æ供註冊 +This\ is\ not\ supported\ in\ the\ current\ configuration.=ç›®å‰çš„設定ä¸æ供此功能。 diff --git a/core/src/main/resources/hudson/security/csrf/CrumbFilter/retry_it.properties b/core/src/main/resources/hudson/security/csrf/CrumbFilter/retry_it.properties index 78a47238729c..a10ca39d78a8 100644 --- a/core/src/main/resources/hudson/security/csrf/CrumbFilter/retry_it.properties +++ b/core/src/main/resources/hudson/security/csrf/CrumbFilter/retry_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -29,5 +29,5 @@ blurb=L''URL a cui si sta tentando di accedere richiede che le richieste \ Method\ Not\ Allowed=Metodo non consentito Retry\ using\ POST=Riprova utilizzando il metodo POST This\ URL\ requires\ POST=Quest''URL richiede il metodo POST -warning=Se si è stati indirizzati qui da una sorgente non affidabile, \ +warning=Se si è stati indirizzati qui da una sorgente non affidabile, \ proseguire con cautela. diff --git a/core/src/main/resources/hudson/security/csrf/CrumbFilter/retry_pt_BR.properties b/core/src/main/resources/hudson/security/csrf/CrumbFilter/retry_pt_BR.properties index e99f61f976da..72b33b195ac8 100644 --- a/core/src/main/resources/hudson/security/csrf/CrumbFilter/retry_pt_BR.properties +++ b/core/src/main/resources/hudson/security/csrf/CrumbFilter/retry_pt_BR.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. Retry\ using\ POST=Retentativa\ usando\ POST -blurb=A URL que voc\u00EA est\u00E1 tentando acessar exige que requisi\u00E7\u00F5es sejam enviadas usando POST (como uma submiss\u00E3o de formul\u00E1rio). \ -O bot\u00E3o abaixo permite que voc\u00EA tente novamente acessando esta URL com POST. \ +blurb=A URL que você está tentando acessar exige que requisições sejam enviadas usando POST (como uma submissão de formulário). \ +O botão abaixo permite que você tente novamente acessando esta URL com POST. \ URL sendo acessada: This\ URL\ requires\ POST=Esta\ URL\ requer\ HTTP\ POST -warning=Se voc\u00EA chegou \u00E0 partir de uma fonte n\u00E3o-confi\u00E1vel, por favor proceda com cautela. -Method\ Not\ Allowed=M\u00E9todo\ n\u00E3o\ permitido +warning=Se você chegou à partir de uma fonte não-confiável, por favor proceda com cautela. +Method\ Not\ Allowed=Método\ não\ permitido diff --git a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_bg.properties b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_bg.properties index c443d84303a9..d183f63893d9 100644 --- a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_bg.properties +++ b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Enable\ proxy\ compatibility=\ - \u0412\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u0442\u0430 \u0441\u044a\u0441 \u0441\u044a\u0440\u0432\u044a\u0440\u0438-\u043f\u043e\u0441\u0440\u0435\u0434\u043d\u0438\u0446\u0438 + Включване на ÑъвмеÑтимоÑтта ÑÑŠÑ Ñървъри-поÑредници diff --git a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_de.properties b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_de.properties index 3286122659db..a28c049f288d 100644 --- a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_de.properties +++ b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Enable\ proxy\ compatibility=Kompatibilit\u00E4tsmodus f\u00FCr Proxys aktivieren +Enable\ proxy\ compatibility=Kompatibilitätsmodus für Proxys aktivieren diff --git a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_fr.properties b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_fr.properties index e04ac17b1cb2..ed77d32cf635 100644 --- a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_fr.properties +++ b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Enable\ proxy\ compatibility=Activer la compatibilit\u00E9 proxy +Enable\ proxy\ compatibility=Activer la compatibilité proxy diff --git a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_it.properties b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_it.properties index 4427e048e4a9..0acc960f1223 100644 --- a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_it.properties +++ b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,4 +21,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Enable\ proxy\ compatibility=Abilita compatibilità proxy +Enable\ proxy\ compatibility=Abilita compatibilità proxy diff --git a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_ja.properties b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_ja.properties index 604dcf5c758b..4d8c80ac20ae 100644 --- a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_ja.properties +++ b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Enable\ proxy\ compatibility=\u30d7\u30ed\u30ad\u30b7\u30fc\u3068\u306e\u4e92\u63db\u6027\u3092\u6709\u52b9\u5316 +Enable\ proxy\ compatibility=プロキシーã¨ã®äº’æ›æ€§ã‚’有効化 diff --git a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_nb_NO.properties b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_nb_NO.properties index 9b2cc8cad311..cc614e25bcee 100644 --- a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_nb_NO.properties +++ b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_nb_NO.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Enable\ proxy\ compatibility=Skru p\u00E5 proxykompatibilitet +Enable\ proxy\ compatibility=Skru pÃ¥ proxykompatibilitet diff --git a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_ru.properties b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_ru.properties index 967f856300f0..c6b8876531b1 100644 --- a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_ru.properties +++ b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Enable\ proxy\ compatibility=\u0412\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0441\u043E\u0432\u043C\u0435\u0441\u0442\u0438\u043C\u043E\u0441\u0442\u044C \u0441 \u043F\u0440\u043E\u043A\u0441\u0438 +Enable\ proxy\ compatibility=Включить ÑовмеÑтимоÑÑ‚ÑŒ Ñ Ð¿Ñ€Ð¾ÐºÑи diff --git a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_sr.properties b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_sr.properties index 28f532fc9e52..e9c5a06a2180 100644 --- a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_sr.properties +++ b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Enable\ proxy\ compatibility=\u041E\u043C\u043E\u0433\u0443\u045B\u0438 \u043A\u043E\u043C\u043F\u0430\u0442\u0438\u0431\u0438\u043B\u0438\u043D\u043E\u0441\u0442 proxy-\u0430 +Enable\ proxy\ compatibility=Омогући компатибилиноÑÑ‚ proxy-а diff --git a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_sv_SE.properties b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_sv_SE.properties index 1852c8e80a03..3d2ffd0f0185 100644 --- a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_sv_SE.properties +++ b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Enable\ proxy\ compatibility=Aktivera kompatibilitet f\u00F6r proxy +Enable\ proxy\ compatibility=Aktivera kompatibilitet för proxy diff --git a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_zh_TW.properties b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_zh_TW.properties index 95a514769b84..cece1aaa091b 100644 --- a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_zh_TW.properties +++ b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_zh_TW.properties @@ -21,4 +21,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Enable\ proxy\ compatibility=\u555f\u7528\u4ee3\u7406\u4f3a\u670d\u5668\u76f8\u5bb9\u6a21\u5f0f +Enable\ proxy\ compatibility=啟用代ç†ä¼ºæœå™¨ç›¸å®¹æ¨¡å¼ diff --git a/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_fi.properties b/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_fi.properties index 0ef3fc245c00..dc77ca1d6bc4 100644 --- a/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_fi.properties +++ b/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_fi.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Prevent\ Cross\ Site\ Request\ Forgery\ exploits=Est\u00E4 sivujenv\u00E4listen pyynt\u00F6jen v\u00E4\u00E4renn\u00F6s yrityksi\u00E4. +Prevent\ Cross\ Site\ Request\ Forgery\ exploits=Estä sivujenvälisten pyyntöjen väärennös yrityksiä. diff --git a/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_fr.properties b/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_fr.properties index 83ab5cc9fd81..da560e286bd5 100644 --- a/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_fr.properties +++ b/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Prevent\ Cross\ Site\ Request\ Forgery\ exploits=Se prot\u00E9ger contre les exploits de type Cross Site Request Forgery +Prevent\ Cross\ Site\ Request\ Forgery\ exploits=Se protéger contre les exploits de type Cross Site Request Forgery diff --git a/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_it.properties b/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_it.properties index d1188d9e19c8..2a95d6674c17 100644 --- a/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_it.properties +++ b/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -23,9 +23,9 @@ Crumb\ Issuer=Componente emissione crumb CSRF\ Protection=Protezione CSRF -disabled=Questa configurazione non è disponibile perché la proprietà di \ +disabled=Questa configurazione non è disponibile perché la proprietà di \ sistema hudson.security.csrf.GlobalCrumbIssuerConfiguration.DISABLE_CSRF_PROTECTION \ - è impostata a true. + è impostata a true. unsupported=L''opzione dovrebbe essere considerata non supportata e il suo \ utilizzo dovrebbe essere limitato come soluzione alternativa a problemi di \ - compatibilità fino alla loro risoluzione. + compatibilità fino alla loro risoluzione. diff --git a/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_ja.properties b/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_ja.properties index 434059748bf8..094759cd7396 100644 --- a/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_ja.properties +++ b/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Prevent\ Cross\ Site\ Request\ Forgery\ exploits=CSRF\u5bfe\u7b56 -Crumb\ Algorithm=Crumb \u30a2\u30eb\u30b4\u30ea\u30ba\u30e0 +Prevent\ Cross\ Site\ Request\ Forgery\ exploits=CSRF対策 +Crumb\ Algorithm=Crumb アルゴリズム Crumbs=Crumbs diff --git a/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_pt_BR.properties b/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_pt_BR.properties index 6caa2d6d3d8b..ee8659784dde 100644 --- a/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_pt_BR.properties +++ b/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_pt_BR.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Prevent\ Cross\ Site\ Request\ Forgery\ exploits= Prevenir site contra invas\u00f5es -Crumbs=Fra\u00e7\u00e3o +Prevent\ Cross\ Site\ Request\ Forgery\ exploits= Prevenir site contra invasões +Crumbs=Fração Crumb\ Algorithm=Algoritmo crumb diff --git a/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_sr.properties b/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_sr.properties index 15a86fb60ad5..d1e06e5c4a57 100644 --- a/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_sr.properties +++ b/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Prevent\ Cross\ Site\ Request\ Forgery\ exploits=\u0421\u043F\u0440\u0435\u0447\u0438 Cross Site Request Forgery \u043F\u0440\u043E\u0432\u0430\u043B\u0435 -Crumbs=\u041C\u0440\u0432\u0438\u0446\u0435 -Crumb\ Algorithm=\u0410\u043B\u0433\u043E\u0440\u0438\u0442\u0430\u043C \u043C\u0440\u0432\u0438\u0446\u0430 +Prevent\ Cross\ Site\ Request\ Forgery\ exploits=Спречи Cross Site Request Forgery провале +Crumbs=Мрвице +Crumb\ Algorithm=Ðлгоритам мрвица diff --git a/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_zh_TW.properties b/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_zh_TW.properties index e97dae435f6c..e18cb9ce8cb7 100644 --- a/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_zh_TW.properties +++ b/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Prevent\ Cross\ Site\ Request\ Forgery\ exploits=\u9632\u7bc4 CSRF \u5165\u4fb5 +Prevent\ Cross\ Site\ Request\ Forgery\ exploits=防範 CSRF 入侵 Crumbs=Crumb -Crumb\ Algorithm=Crumb \u6f14\u7b97\u6cd5 +Crumb\ Algorithm=Crumb 演算法 diff --git a/core/src/main/resources/hudson/security/csrf/Messages_bg.properties b/core/src/main/resources/hudson/security/csrf/Messages_bg.properties index e42f9fceae54..fe42c65d9e57 100644 --- a/core/src/main/resources/hudson/security/csrf/Messages_bg.properties +++ b/core/src/main/resources/hudson/security/csrf/Messages_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. DefaultCrumbIssuer.DisplayName=\ - \u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u044a\u0442\u0435\u043f\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u0438 + Стандартно Ñъздаване на пътепоказатели diff --git a/core/src/main/resources/hudson/security/csrf/Messages_it.properties b/core/src/main/resources/hudson/security/csrf/Messages_it.properties index 52ac38f81e88..72047acaf261 100644 --- a/core/src/main/resources/hudson/security/csrf/Messages_it.properties +++ b/core/src/main/resources/hudson/security/csrf/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/security/csrf/Messages_pt_BR.properties b/core/src/main/resources/hudson/security/csrf/Messages_pt_BR.properties index 5bf5e699496c..71231818c726 100644 --- a/core/src/main/resources/hudson/security/csrf/Messages_pt_BR.properties +++ b/core/src/main/resources/hudson/security/csrf/Messages_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. # Default Crumb Issuer -DefaultCrumbIssuer.DisplayName=Gerador de Fragmentos Padr\u00e3o +DefaultCrumbIssuer.DisplayName=Gerador de Fragmentos Padrão diff --git a/core/src/main/resources/hudson/security/csrf/Messages_sr.properties b/core/src/main/resources/hudson/security/csrf/Messages_sr.properties index cf47eed5d819..85e728cfdc95 100644 --- a/core/src/main/resources/hudson/security/csrf/Messages_sr.properties +++ b/core/src/main/resources/hudson/security/csrf/Messages_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -DefaultCrumbIssuer.DisplayName=\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u043D\u0438 \u0438\u0437\u0434\u0430\u0432\u0430\u0447 \u043C\u0440\u0432\u0438\u0446\u0430 +DefaultCrumbIssuer.DisplayName=Стандардни издавач мрвица diff --git a/core/src/main/resources/hudson/security/csrf/Messages_zh_TW.properties b/core/src/main/resources/hudson/security/csrf/Messages_zh_TW.properties index efa6d35fabee..552a5c10723c 100644 --- a/core/src/main/resources/hudson/security/csrf/Messages_zh_TW.properties +++ b/core/src/main/resources/hudson/security/csrf/Messages_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -DefaultCrumbIssuer.DisplayName=\u9810\u8a2d Crumb \u7c3d\u767c\u7a0b\u5f0f +DefaultCrumbIssuer.DisplayName=é è¨­ Crumb ç°½ç™¼ç¨‹å¼ diff --git a/core/src/main/resources/hudson/slaves/Cloud/index_bg.properties b/core/src/main/resources/hudson/slaves/Cloud/index_bg.properties index af23fba2f8a2..1587ccb737d7 100644 --- a/core/src/main/resources/hudson/slaves/Cloud/index_bg.properties +++ b/core/src/main/resources/hudson/slaves/Cloud/index_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Cloud=\ - \u041e\u0431\u043b\u0430\u043a + Облак diff --git a/core/src/main/resources/hudson/slaves/Cloud/index_it.properties b/core/src/main/resources/hudson/slaves/Cloud/index_it.properties index 4d3cdb1c6470..bb3bbefb0348 100644 --- a/core/src/main/resources/hudson/slaves/Cloud/index_it.properties +++ b/core/src/main/resources/hudson/slaves/Cloud/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main.jelly b/core/src/main/resources/hudson/slaves/ComputerLauncher/main.jelly index 70b5aa9137a6..8262e4b69ea1 100644 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main.jelly +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main.jelly @@ -29,7 +29,9 @@ THE SOFTWARE.

    ${%launchingDescription} + ${%See log for more details} +

    diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_bg.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_bg.properties index cf7c74ea9988..05f487aabfde 100644 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_bg.properties +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_bg.properties @@ -21,11 +21,11 @@ # THE SOFTWARE. Relaunch\ agent=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442\u0430 \u043d\u0430\u043d\u043e\u0432\u043e + Стартиране на агента наново See\ log\ for\ more\ details=\ - \u0417\u0430 \u043f\u043e\u0432\u0435\u0447\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u0439\u0442\u0435 \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0442\u0435 + За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¿Ñ€ÐµÐ³Ð»ÐµÐ´Ð°Ð¹Ñ‚Ðµ журналите Launch\ agent=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442\u0430 + Стартиране на агента # This node is being launched. launchingDescription=\ - \u0422\u0430\u0437\u0438 \u043c\u0430\u0448\u0438\u043d\u0430 \u0432 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0441\u0435 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430. + Тази машина в момента Ñе Ñтартира. diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_fr.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_fr.properties index 5b28b80fdc47..6faaa64d9742 100644 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_fr.properties +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -See\ log\ for\ more\ details=Voir les logs pour plus de détails +See\ log\ for\ more\ details=Voir les logs pour plus de détails diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_he.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_he.properties index 382f3164e0ca..2dae84343450 100644 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_he.properties +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_he.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -See\ log\ for\ more\ details=\u05DC\u05E4\u05E8\u05D8\u05D9\u05DD \u05E0\u05D5\u05E1\u05E4\u05D9\u05DD \u05E8\u05D0\u05D4 \u05D0\u05EA \u05E7\u05D5\u05D1\u05E5 \u05D4\u05DC\u05D5\u05D2 -launchingDescription=\u05D4\u05DE\u05DB\u05D5\u05E0\u05D4 \u05E0\u05D8\u05E2\u05E0\u05EA \u05DB\u05E2\u05EA +See\ log\ for\ more\ details=×œ×¤×¨×˜×™× × ×•×¡×¤×™× ×¨××” ×ת קובץ הלוג +launchingDescription=המכונה נטענת כעת diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_it.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_it.properties index 3886c5dc4da5..6270ff4ca42a 100644 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_it.properties +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_ja.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_ja.properties index 1b6052a5e564..ee711eac7a09 100644 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_ja.properties +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -See\ log\ for\ more\ details=\u8A73\u7D30\u306F\u30ED\u30B0\u3092\u53C2\u7167 -launchingDescription=\u3053\u306E\u30CE\u30FC\u30C9\u306F\u8D77\u52D5\u6E08\u307F\u3067\u3059\u3002 +See\ log\ for\ more\ details=詳細ã¯ãƒ­ã‚°ã‚’å‚ç…§ +launchingDescription=ã“ã®ãƒŽãƒ¼ãƒ‰ã¯èµ·å‹•æ¸ˆã¿ã§ã™ã€‚ diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_lv.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_lv.properties index 7b0399c3515a..ad6c64676eae 100644 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_lv.properties +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -See\ log\ for\ more\ details=Skat\u012Bt \u017Eurn\u0101lu pla\u0161\u0101kai inform\u0101cijai +See\ log\ for\ more\ details=SkatÄ«t žurnÄlu plaÅ¡Äkai informÄcijai diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_pt_BR.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_pt_BR.properties index 881e96845ff9..70682179db14 100644 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_pt_BR.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. # This node is being launched. -launchingDescription=Este n\u00F3 est\u00E1 sendo lan\u00E7ado +launchingDescription=Este nó está sendo lançado See\ log\ for\ more\ details=Veja o registro de atividades para mais detalhes -Relaunch\ agent=Lan\u00E7ar\ o\ agente\ novamente -Launch\ agent=Lan\u00E7ar\ o\ agente +Relaunch\ agent=Lançar\ o\ agente\ novamente +Launch\ agent=Lançar\ o\ agente diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_sr.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_sr.properties index 23f7fceb55ab..2009001f7262 100644 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_sr.properties +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_sr.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -launchingDescription=\u041E\u0432\u0430 \u043C\u0430\u0448\u0438\u043D\u0430 \u0441\u0435 \u043F\u043E\u043A\u0440\u0435\u045B\u0435 -See\ log\ for\ more\ details=\u041F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 \u0436\u0443\u0440\u043D\u0430\u043B \u0437\u0430 \u0432\u0438\u0448\u0435 \u0434\u0435\u0442\u0430\u0459\u0430 -Relaunch\ agent=\u041F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0438 \u0430\u0433\u0435\u043D\u0442 -Launch\ agent=\u041F\u043E\u043A\u0440\u0435\u043D\u0438 \u0430\u0433\u0435\u043D\u0442 -description=\u041E\u0432\u0430 \u043C\u0430\u0448\u0438\u043D\u0430 \u045B\u0435 \u0431\u0438\u0442\u0438 \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u0430. +launchingDescription=Ова машина Ñе покреће +See\ log\ for\ more\ details=Прегледајте журнал за више детаља +Relaunch\ agent=Поново покрени агент +Launch\ agent=Покрени агент +description=Ова машина ће бити покренута. diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_sv_SE.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_sv_SE.properties index 61a5469b2318..06d71a292b56 100644 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_sv_SE.properties +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_sv_SE.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -See\ log\ for\ more\ details=Se loggen f\u00F6r mer information -description=Denna nod \u00E4r fr\u00E5nkopplad eftersom Jenkins kunde inte starta agenten p\u00E5 noden. +See\ log\ for\ more\ details=Se loggen för mer information +description=Denna nod är frÃ¥nkopplad eftersom Jenkins kunde inte starta agenten pÃ¥ noden. diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_zh_TW.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_zh_TW.properties index 787a6ef67069..0000897580ce 100644 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -launchingDescription=\u672C\u7BC0\u9EDE\u6B63\u5728\u555F\u52D5\u4E2D\u3002 -See\ log\ for\ more\ details=\u67E5\u770B\u65E5\u8A8C\u53D6\u5F97\u8A73\u7D30\u8CC7\u6599 +launchingDescription=本節點正在啟動中。 +See\ log\ for\ more\ details=查看日誌å–得詳細資料 diff --git a/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_bg.properties b/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_bg.properties index 8e930f459b86..16ea8602096a 100644 --- a/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_bg.properties +++ b/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Actual\ launch\ method=\ - \u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u0435\u043d \u043c\u0435\u0442\u043e\u0434 \u0437\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 + ДейÑтвителен метод за Ñтартиране diff --git a/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_de.properties b/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_de.properties index 09f6de30b43e..095299c52939 100644 --- a/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_de.properties +++ b/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Actual\ launch\ method=Tatsächliche Startmethode +Actual\ launch\ method=Tatsächliche Startmethode diff --git a/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_es.properties b/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_es.properties index a06b4ecb3a9d..29f2c63d1e67 100644 --- a/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_es.properties +++ b/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Actual\ launch\ method=Método actual para lanzar la tarea +Actual\ launch\ method=Método actual para lanzar la tarea diff --git a/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_it.properties b/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_it.properties index f0f2c6166adf..40b5c64378c2 100644 --- a/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_it.properties +++ b/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_ja.properties b/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_ja.properties index 637297323fa1..000860279085 100644 --- a/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_ja.properties +++ b/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Actual\ launch\ method=\u5b9f\u969b\u306b\u8d77\u52d5\u3059\u308b\u65b9\u6cd5 +Actual\ launch\ method=実際ã«èµ·å‹•ã™ã‚‹æ–¹æ³• diff --git a/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_pt_BR.properties b/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_pt_BR.properties index 90bb0bdbb86e..7f742329a898 100644 --- a/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Actual\ launch\ method=M\u00e9todo atual de lan\u00e7amento +Actual\ launch\ method=Método atual de lançamento diff --git a/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_sr.properties b/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_sr.properties index 147ac620f18b..cab4f89a17f8 100644 --- a/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_sr.properties +++ b/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Actual\ launch\ method=\u041C\u0435\u0442\u043E\u0434 \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0430 +Actual\ launch\ method=Метод покретања diff --git a/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_zh_TW.properties b/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_zh_TW.properties index eb7db44b0977..52a9c60cd532 100644 --- a/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Actual\ launch\ method=\u5be6\u969b\u555f\u52d5\u65b9\u5f0f +Actual\ launch\ method=å¯¦éš›å•Ÿå‹•æ–¹å¼ diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_bg.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_bg.properties index 6e4cf513f30c..a60974c4ca12 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_bg.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_bg.properties @@ -21,16 +21,16 @@ # THE SOFTWARE. Availability=\ - \u041d\u0430\u043b\u0438\u0447\u043d\u043e\u0441\u0442 + ÐаличноÑÑ‚ Node\ Properties=\ - \u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u043c\u0430\u0448\u0438\u043d\u0430\u0442\u0430 + СвойÑтва на машината \#\ of\ executors=\ - \u0411\u0440\u043e\u0439 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430\u0449\u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0438 + Брой изпълнÑващи процеÑи Description=\ - \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 + ОпиÑание Launch\ method=\ - \u041c\u0435\u0442\u043e\u0434 \u0437\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 + Метод за Ñтартиране Labels=\ - \u0415\u0442\u0438\u043a\u0435\u0442\u0438 + Етикети Remote\ root\ directory=\ - \u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u043d\u0430 \u043e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d\u0430\u0442\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 + ОÑновна Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° отдалечената машина diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_da.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_da.properties index b0d38c7ab1bd..6796b0b17727 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_da.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_da.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Labels=Etiketter -Availability=Tilg\u00e6ngelihed +Availability=Tilgængelihed Node\ Properties=Nodeegenskaber Launch\ method=Opstartsmetode \#\ of\ executors=# afviklere diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_de.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_de.properties index d6eede869aee..0c091df1a520 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_de.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_de.properties @@ -25,5 +25,5 @@ Description=Beschreibung Remote\ root\ directory=Stammverzeichnis in entferntem Dateisystem Labels=Labels Launch\ method=Startmethode -Availability=Verfügbarkeit +Availability=Verfügbarkeit Node\ Properties=Eigenschaften des Knotens diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_es.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_es.properties index a2fd702af0ca..a37ec1ce6679 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_es.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_es.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=Descripción -\#\ of\ executors=Número de ejecutores +Description=Descripción +\#\ of\ executors=Número de ejecutores Remote\ root\ directory=Directorio raiz remoto Labels=Etiquetas -Launch\ method=Metodo de ejecución +Launch\ method=Metodo de ejecución Availability=Disponibilidad Node\ Properties=Propiedades del nodo diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_fr.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_fr.properties index a9c36c9b78e0..6a7dcec512e9 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_fr.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_fr.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -\#\ of\ executors=Nombre d''ex\u00e9cuteurs -Remote\ root\ directory=R\u00e9pertoire de travail du syst\u00e8me distant -Labels=\u00C9tiquettes -Launch\ method=M\u00e9thode de lancement -Availability=Disponibilit\u00e9 -Node\ Properties=Propri\u00E9t\u00E9s du n\u0153ud +\#\ of\ executors=Nombre d''exécuteurs +Remote\ root\ directory=Répertoire de travail du système distant +Labels=Étiquettes +Launch\ method=Méthode de lancement +Availability=Disponibilité +Node\ Properties=Propriétés du nÅ“ud diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_hu.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_hu.properties index 6ee8d7828908..3e122e185997 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_hu.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_hu.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -#\ of\ executors=P\u00E1rhuzamos sz\u00E1lak sz\u00E1ma -Description=Le\u00EDr\u00E1s -Labels=C\u00EDmke -Launch\ method=Futtat\u00E1si m\u00F3d -Remote\ root\ directory=T\u00E1voli FS root +#\ of\ executors=Párhuzamos szálak száma +Description=Leírás +Labels=Címke +Launch\ method=Futtatási mód +Remote\ root\ directory=Távoli FS root diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_it.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_it.properties index 45ec0c46784d..e92edec3ce9a 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_it.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,9 +22,9 @@ # THE SOFTWARE. \#\ of\ executors=Numero di esecutori -Availability=Disponibilità +Availability=Disponibilità Description=Descrizione Labels=Etichette Launch\ method=Metodo di avvio -Node\ Properties=Proprietà nodo +Node\ Properties=Proprietà nodo Remote\ root\ directory=Directory radice remota diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_ja.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_ja.properties index 692e1ba8f397..d846738ef126 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_ja.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_ja.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=\u8AAC\u660E -\#\ of\ executors=\u540C\u6642\u30D3\u30EB\u30C9\u6570 -Remote\ root\ directory=\u30EA\u30E2\u30FC\u30C8FS\u30EB\u30FC\u30C8 -Labels=\u30E9\u30D9\u30EB -Launch\ method=\u8D77\u52D5\u65B9\u6CD5 -Availability=\u53EF\u7528\u6027 -Node\ Properties=\u30CE\u30FC\u30C9 \u30D7\u30ED\u30D1\u30C6\u30A3 +Description=説明 +\#\ of\ executors=åŒæ™‚ビルド数 +Remote\ root\ directory=リモートFSルート +Labels=ラベル +Launch\ method=起動方法 +Availability=å¯ç”¨æ€§ +Node\ Properties=ノード プロパティ diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_lv.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_lv.properties index fbb1c8ed4070..604cb8e0131f 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_lv.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_lv.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -#\ of\ executors=# izpild\u012Bt\u0101ju +#\ of\ executors=# izpildÄ«tÄju Description=Apraksts Labels=Markas -Launch\ method=Palaiz\u0161anas metode -Remote\ root\ directory=Att\u0101lin\u0101t\u0101 FS s\u0101kumdirektorija +Launch\ method=PalaizÅ¡anas metode +Remote\ root\ directory=AttÄlinÄtÄ FS sÄkumdirektorija diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_pl.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_pl.properties index fe1b48b5efac..8694a269e2d5 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_pl.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_pl.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -#\ of\ executors=Liczba uruchomie\u0144 +#\ of\ executors=Liczba uruchomieÅ„ Description=Opis Labels=Etykiety Launch\ method=Metoda uruchomienia -Remote\ root\ directory=Zdalny system plik\u00F3w +Remote\ root\ directory=Zdalny system plików diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_pt_BR.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_pt_BR.properties index 3c7a69a39c7f..918cdd7fa364 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_pt_BR.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=Descri\u00E7\u00E3o -Remote\ root\ directory=Diret\u00F3rio raiz remoto -Labels=R\u00F3tulos -Launch\ method=M\u00E9todo de lan\u00E7amento +Description=Descrição +Remote\ root\ directory=Diretório raiz remoto +Labels=Rótulos +Launch\ method=Método de lançamento Availability=Disponibilidade -Node\ Properties=Propriedades dos n\u00D3S -Number\ of\ executors=N\u00FAmero\ de\ executores +Node\ Properties=Propriedades dos nÓS +Number\ of\ executors=Número\ de\ executores diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_ru.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_ru.properties index 5a6688a923fa..bbad45fe216c 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_ru.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_ru.properties @@ -20,18 +20,18 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Master=\u0413\u043b\u0430\u0432\u043d\u044b\u0439 -Name=\u0418\u043c\u044f -Description=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 -This\ Jenkins\ server=\u0421\u0435\u0440\u0432\u0435\u0440 Jenkins -\#\ of\ executors=\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432-\u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0435\u0439 -Local\ FS\ root=\u041a\u043e\u0440\u0435\u043d\u044c \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0439 \u0424\u0421 -Name\ is\ mandatory=\u0418\u043c\u044f \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044f \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u043d\u043e -Number\ of\ executors\ is\ mandatory.=\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0435\u0439 \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u043d\u043e -Remote\ root\ directory=\u041a\u043e\u0440\u0435\u043d\u044c \u0443\u0434\u0430\u043b\u0435\u043d\u043d\u043e\u0439 \u0424\u0421 -Remote\ directory\ is\ mandatory.=\u0423\u043a\u0430\u0437\u0430\u043d\u0438\u0435 \u043a\u043e\u0440\u043d\u044f \u0443\u0434\u0430\u043b\u0435\u043d\u043d\u043e\u0439 \u0424\u0421 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e -Labels=\u041c\u0435\u0442\u043a\u0438 -Usage=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 -Launch\ method=\u0421\u043f\u043e\u0441\u043e\u0431 \u0437\u0430\u043f\u0443\u0441\u043a\u0430 -Availability=\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u044c -Save=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c +Master=Главный +Name=Ð˜Ð¼Ñ +Description=ОпиÑание +This\ Jenkins\ server=Сервер Jenkins +\#\ of\ executors=КоличеÑтво процеÑÑов-иÑполнителей +Local\ FS\ root=Корень локальной ФС +Name\ is\ mandatory=Ð˜Ð¼Ñ Ð¸ÑÐ¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»Ñ Ð´Ð¾Ð»Ð¶Ð½Ð¾ быть указано +Number\ of\ executors\ is\ mandatory.=КоличеÑтво иÑполнителей должно быть указано +Remote\ root\ directory=Корень удаленной ФС +Remote\ directory\ is\ mandatory.=Указание ÐºÐ¾Ñ€Ð½Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð½Ð¾Ð¹ ФС обÑзательно +Labels=Метки +Usage=ИÑпользование +Launch\ method=СпоÑоб запуÑка +Availability=ДоÑтупноÑÑ‚ÑŒ +Save=Сохранить diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_sk.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_sk.properties index f004f39c92ff..918a615382f7 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_sk.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_sk.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -#\ of\ executors=Po\u010Det sp\u00FA\u0161\u0165a\u010Dov -Availability=Dostupnos\u0165 +#\ of\ executors=PoÄet spúšťaÄov +Availability=DostupnosÅ¥ Description=Popis -Labels=Zna\u010Dky -Launch\ method=Met\u00F3da sp\u00FA\u0161\u0165ania +Labels=ZnaÄky +Launch\ method=Metóda spúšťania diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_sr.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_sr.properties index 080510945b9c..cf632822bed2 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_sr.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_sr.properties @@ -1,18 +1,18 @@ # This file is under the MIT License by authors -Description=\u041E\u043F\u0438\u0441 -\#\ of\ executors=\u0431\u0440\u043E\u0458 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 -Remote\ root\ directory=\u0423\u0434\u0430\u0459\u0435\u043D\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C \u043A\u043E\u0440\u0435\u043D\u0430 -Labels=\u041B\u0430\u0431\u0435\u043B\u0435 -Launch\ method=\u041C\u0435\u0442\u043E\u0434 \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0430 -Availability=\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u043E\u0441\u0442 -Node\ Properties=\u041F\u043E\u0441\u0442\u0430\u0432\u043A\u0435 \u043C\u0430\u0448\u0438\u043D\u0435 -Master=\u0413\u043B\u0430\u0432\u043D\u0430 -Name=\u0418\u043C\u0435 -This\ Jenkins\ server=\u041E\u0432\u0430 Jenkins \u043C\u0430\u0448\u0438\u043D\u0430 -Local\ FS\ root=\u041A\u043E\u0440\u0435\u043D \u043B\u043E\u043A\u0430\u043B\u043D\u043E\u0433 \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430 -Name\ is\ mandatory=\u0418\u043C\u0435 \u0458\u0435 \u043E\u0431\u0430\u0432\u0435\u0437\u043D\u043E -Number\ of\ executors\ is\ mandatory.=\u0411\u0440\u043E\u0458 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 \u0458\u0435 \u043E\u0431\u0430\u0432\u0435\u0437\u043D\u043E -Remote\ directory\ is\ mandatory.=\u0423\u0434\u0430\u0459\u0435\u043D\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C \u043A\u043E\u0440\u0435\u043D\u0430 \u0458\u0435 \u043E\u0431\u0430\u0432\u0435\u0437\u043D\u043E -Usage=\u0423\u043F\u043E\u0442\u0440\u0435\u0431\u0430 -Save=\u0421\u0430\u0447\u0443\u0432\u0430\u0458 +Description=ÐžÐ¿Ð¸Ñ +\#\ of\ executors=број извршитеља +Remote\ root\ directory=Удаљени директоријум корена +Labels=Лабеле +Launch\ method=Метод покретања +Availability=ДоÑтупноÑÑ‚ +Node\ Properties=ПоÑтавке машине +Master=Главна +Name=Име +This\ Jenkins\ server=Ова Jenkins машина +Local\ FS\ root=Корен локалног ÑиÑтема датотека +Name\ is\ mandatory=Име је обавезно +Number\ of\ executors\ is\ mandatory.=Број извршитеља је обавезно +Remote\ directory\ is\ mandatory.=Удаљени директоријум корена је обавезно +Usage=Употреба +Save=Сачувај diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_sv_SE.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_sv_SE.properties index b66819e7b22a..ef7fadb674b8 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_sv_SE.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_sv_SE.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Availability=Tillg\u00E4nglighet +Availability=Tillgänglighet Description=Beskrivning Labels=Etiketter Launch\ method=Startmetod diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_zh_TW.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_zh_TW.properties index 4a1ed9d54d1e..4821f842d9c0 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_zh_TW.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=\u63CF\u8FF0 -\#\ of\ executors=\u57f7\u884c\u7a0b\u5f0f\u6578\u91cf -Remote\ root\ directory=\u9060\u7AEF\u6A94\u6848\u7CFB\u7D71\u6839\u76EE\u9304 -Labels=\u6A19\u7C64 -Launch\ method=\u555F\u52D5\u6A21\u5F0F -Availability=\u53EF\u7528\u6027 -Node\ Properties=\u7bc0\u9ede\u5c6c\u6027 +Description=æè¿° +\#\ of\ executors=執行程å¼æ•¸é‡ +Remote\ root\ directory=é ç«¯æª”案系統根目錄 +Labels=標籤 +Launch\ method=å•Ÿå‹•æ¨¡å¼ +Availability=å¯ç”¨æ€§ +Node\ Properties=節點屬性 diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail.properties b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail.properties index 70c380808ff7..c48d4283588e 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. detail=\ - Adds a plain, permanent agent to Jenkins. This is called "permanent" because Jenkins doesn\u2019t provide \ + Adds a plain, permanent agent to Jenkins. This is called "permanent" because Jenkins doesn’t provide \ higher level of integration with these agents, such as dynamic provisioning. \ Select this type if no other agent types apply — for example such as when you are adding \ a physical computer, virtual machines managed outside Jenkins, etc. diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_bg.properties b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_bg.properties index 517885383360..1d1d2179c255 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_bg.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_bg.properties @@ -21,13 +21,13 @@ # THE SOFTWARE. # \ -# Adds a plain, permanent agent to Jenkins. This is called "permanent" because Jenkins doesn\u2019t provide \ +# Adds a plain, permanent agent to Jenkins. This is called "permanent" because Jenkins doesn’t provide \ # higher level of integration with these agents, such as dynamic provisioning. \ # Select this type if no other agent types apply — for example such as when you are adding \ # a physical computer, virtual machines managed outside Jenkins, etc. detail=\ - \u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u043e\u0431\u0438\u043a\u043d\u043e\u0432\u0435\u043d, \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u0435\u043d \u0430\u0433\u0435\u043d\u0442 \u043a\u044a\u043c Jenkins. \u041d\u0430\u0440\u0438\u0447\u0430 \u0441\u0435 \u201e\u043f\u043e\u0441\u0442\u043e\u044f\u043d\u0435\u043d\u201c,\ - \u0437\u0430\u0449\u043e\u0442\u043e Jenkins \u043d\u0435 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430 \u043f\u043e-\u0432\u0438\u0441\u043e\u043a\u0438 \u043d\u0438\u0432\u0430 \u043d\u0430 \u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f \u0441 \u0442\u043e\u0437\u0438 \u0432\u0438\u0434 \u0430\u0433\u0435\u043d\u0442\u0438,\ - \u043a\u0430\u0442\u043e \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u0434\u0438\u043d\u0430\u043c\u0438\u0447\u043d\u043e \u0437\u0430\u0434\u0435\u043b\u044f\u043d\u0435. \u0418\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0442\u043e\u0437\u0438 \u0432\u0438\u0434 \u0430\u0433\u0435\u043d\u0442, \u0441\u0430\u043c\u043e \u0430\u043a\u043e \u0434\u0440\u0443\u0433\u0438\u0442\u0435\ - \u0432\u0438\u0434\u043e\u0432\u0435 \u0430\u0433\u0435\u043d\u0442\u0438 \u043d\u0435 \u0440\u0430\u0431\u043e\u0442\u044f\u0442, \u043d\u0430\u043f\u0440. \u043a\u043e\u0433\u0430\u0442\u043e \u0434\u043e\u0431\u0430\u0432\u044f\u0442\u0435 \u0444\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u0438 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440, \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u043d\u0438\ - \u043c\u0430\u0448\u0438\u043d\u0438, \u043a\u043e\u0438\u0442\u043e \u0441\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0432\u0430\u0442 \u0438\u0437\u0432\u044a\u043d Jenkins, \u0438 \u0442.\u043d. + ДобавÑне на обикновен, поÑтоÑнен агент към Jenkins. Ðарича Ñе „поÑтоÑнен“,\ + защото Jenkins не предлага по-виÑоки нива на Ð¸Ð½Ñ‚ÐµÐ³Ñ€Ð°Ñ†Ð¸Ñ Ñ Ñ‚Ð¾Ð·Ð¸ вид агенти,\ + като например динамично заделÑне. Изберете този вид агент, Ñамо ако другите\ + видове агенти не работÑÑ‚, напр. когато добавÑте физичеÑки компютър, виртуални\ + машини, които Ñе управлÑват извън Jenkins, и Ñ‚.н. diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_de.properties b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_de.properties index 8d295ba08263..6b19f62ffed5 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_de.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -detail=Einfachen, statischen Agenten zu Jenkins hinzuf\u00FCgen. Statisch, da Jenkins keine weitere Integration mit diesen Agenten, wie z.B. dynamische Provisionierung, anbietet. W\u00E4hlen Sie diesen Typ, wenn kein anderer Agenten-Typ zutrifft, beispielsweise, wenn Sie einen (physischen) Computer oder au\u00DFerhalb von Jenkins verwaltete virtuelle Maschinen hinzuf\u00FCgen. +detail=Einfachen, statischen Agenten zu Jenkins hinzufügen. Statisch, da Jenkins keine weitere Integration mit diesen Agenten, wie z.B. dynamische Provisionierung, anbietet. Wählen Sie diesen Typ, wenn kein anderer Agenten-Typ zutrifft, beispielsweise, wenn Sie einen (physischen) Computer oder außerhalb von Jenkins verwaltete virtuelle Maschinen hinzufügen. diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_es.properties b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_es.properties index 97159a95122d..858f79ee8b92 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_es.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_es.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. detail=\ - Añadir un agente permanente a Jenkins. Es llamado ''permanente'' porque Jenkins no provee ningun tipo de \ - integración de alto nivel con estos agentes, como pueda ser aprovisionamiento dinámico. \ - Selecciona este tipo si no hay ningún otro tipo mas adecuado. Por ejemplo cuando se añaden \ - maquinas físicas o virtuales gestionadas desde fuera de Jenkins, etc. + Añadir un agente permanente a Jenkins. Es llamado ''permanente'' porque Jenkins no provee ningun tipo de \ + integración de alto nivel con estos agentes, como pueda ser aprovisionamiento dinámico. \ + Selecciona este tipo si no hay ningún otro tipo mas adecuado. Por ejemplo cuando se añaden \ + maquinas físicas o virtuales gestionadas desde fuera de Jenkins, etc. diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_it.properties b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_it.properties index d6440dae84d1..5b17b890c2c9 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_it.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,8 +21,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -detail=Aggiunge agenti semplici statici a Jenkins ("statici" perché Jenkins \ +detail=Aggiunge agenti semplici statici a Jenkins ("statici" perché Jenkins \ non offre altre integrazioni con questi agenti, come ad es. il provisioning \ - dinamico). Scegliere questa tipologia se nessun altro tipo di agente è \ + dinamico). Scegliere questa tipologia se nessun altro tipo di agente è \ corretto, ad esempio quando si aggiungono un computer (fisico) o macchine \ virtuali gestite al di fuori di Jenkins. diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_pl.properties b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_pl.properties index 6ebde5e1c4b9..da205be139b8 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_pl.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_pl.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. detail=\ - Dodaje do Jenkinsa sta\u0142ego agenta. Jest on nazwany "sta\u0142ym", poniewa\u017C Jenkins nie wspiera \ + Dodaje do Jenkinsa staÅ‚ego agenta. Jest on nazwany "staÅ‚ym", ponieważ Jenkins nie wspiera \ zaawansowanej integracji z takimi agentami, takiej jak dynamiczny provisioning. \ - Wybierz ten typ agenta, je\u015Bli inne typy nie pasuj\u0105 — na przyk\u0142ad, je\u015Bli dodano \ - komputer fizyczny lub wirtualn\u0105 maszyn\u0119 zarz\u0105dzan\u0105 poza Jenkinsem itp. + Wybierz ten typ agenta, jeÅ›li inne typy nie pasujÄ… — na przykÅ‚ad, jeÅ›li dodano \ + komputer fizyczny lub wirtualnÄ… maszynÄ™ zarzÄ…dzanÄ… poza Jenkinsem itp. diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_pt_BR.properties b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_pt_BR.properties index 62fae3b247c7..6ab42a8666a2 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_pt_BR.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -detail=Adiciona um agente simples e permanente no Jenkins. Isto \u00E9 chamado de "permanente" porque o Jenkins n\u00E3o prove \ -uma integra\u00E7\u00E3o de alto n\u00EDvel com estes agentes, como provisionamento din\u00E2mico. \ -Selecione este tipo se nenhum outro for aplic\u00E1vel — por exemplo, quando voc\u00EA estiver adicionando \ -um computador f\u00EDsico, m\u00E1quinhas virtuais gerenciadas fora do Jenkins, etc. +detail=Adiciona um agente simples e permanente no Jenkins. Isto é chamado de "permanente" porque o Jenkins não prove \ +uma integração de alto nível com estes agentes, como provisionamento dinâmico. \ +Selecione este tipo se nenhum outro for aplicável — por exemplo, quando você estiver adicionando \ +um computador físico, máquinhas virtuais gerenciadas fora do Jenkins, etc. diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_sr.properties b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_sr.properties index 6b58ffb55f23..0f9f0ed15dd1 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_sr.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors detail=\ -\u0414\u043E\u0434\u0430 \u043E\u0431\u0438\u0447\u0430\u043D, \u0442\u0440\u0430\u0458\u043D\u0438 \u0430\u0433\u0435\u043D\u0442 Jenkins-\u0443. \u0422\u0440\u0430\u0458\u043D\u043E \u0458\u0435 \u0437\u0430\u0448\u0442\u043E \u043D\u0435\u0434\u0430\u0458\u0435 \u0432\u0435\u045B\u0438 \u043D\u0438\u0432\u043E \u0438\u043D\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u0458\u0435 \u0441\u0430 \u043E\u0432\u0438\u043C \u0430\u0433\u0435\u043D\u0442\u0438\u043C\u0430, \u043A\u0430\u043E \u0434\u0438\u043D\u0430\u043C\u0438\u0447\u043D\u043E \u0441\u043D\u0430\u0431\u0434\u0435\u0432\u0430\u045A\u0435. \u0418\u0437\u0430\u0431\u0435\u0440\u0438\u0442\u0435 \u043E\u0432\u043E \u0430\u043A\u043E \u0434\u0440\u0443\u0433\u0435 \u0432\u0440\u0441\u0442\u0435 \u0430\u0433\u0435\u043D\u0430\u0442\u0430 \u043D\u0435 \u043E\u0434\u0433\u043E\u0432\u0430\u0440\u0430\u0458\u0443 — \u043D\u043F\u0440. \u043A\u0430\u0442 \u0434\u043E\u0434\u0430\u0458\u0435\u0442\u0435 \u0440\u0430\u0447\u0443\u043D\u0430\u0440 \u0438\u043B\u0438 \u0432\u0438\u0440\u0442\u0443\u0435\u043B\u043D\u0435 \u043C\u0430\u0448\u0438\u043D\u0435 \u0441\u043F\u043E\u0459\u043E\u043C Jenkins-\u0430. +Дода обичан, трајни агент Jenkins-у. Трајно је зашто недаје већи ниво интеграције Ñа овим агентима, као динамично Ñнабдевање. Изаберите ово ако друге врÑте агената не одговарају — нпр. кат додајете рачунар или виртуелне машине Ñпољом Jenkins-а. diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_bg.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_bg.properties index 6a8664977afd..8a431f0b76f8 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_bg.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Value=\ - \u0421\u0442\u043e\u0439\u043d\u043e\u0441\u0442 + СтойноÑÑ‚ Name=\ - \u0418\u043c\u0435 + Име List\ of\ variables=\ - \u0421\u043f\u0438\u0441\u044a\u043a \u0441 \u043f\u0440\u043e\u043c\u0435\u043d\u043b\u0438\u0432\u0438\u0442\u0435 + СпиÑък Ñ Ð¿Ñ€Ð¾Ð¼ÐµÐ½Ð»Ð¸Ð²Ð¸Ñ‚Ðµ diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_da.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_da.properties index 86e73838343f..3538138ab3e9 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_da.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_da.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Name=navn -Value=v\u00e6rdi -List\ of\ variables=Liste af n\u00f8gle-v\u00e6rdi par +Value=værdi +List\ of\ variables=Liste af nøgle-værdi par diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_fr.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_fr.properties index 5c0bd6de9375..365e30bb67e7 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_fr.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_fr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -List\ of\ variables=Liste des paires clé-valeur +List\ of\ variables=Liste des paires clé-valeur Name=nom Value=valeur diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_he.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_he.properties index fced55bf1854..78cb349c10b8 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_he.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_he.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -List\ of\ variables=\u05E8\u05E9\u05D9\u05DE\u05D4 \u05E9\u05DC \u05E9\u05D3\u05D4-\u05E2\u05E8\u05DA -Name=\u05E9\u05DD -Value=\u05E2\u05E8\u05DA +List\ of\ variables=רשימה של שדה-ערך +Name=×©× +Value=ערך diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_it.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_it.properties index 01f3c1e462ba..e82000e37aca 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_it.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ja.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ja.properties index d4ee4ce65bfb..0e1eed5af7bb 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ja.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -List\ of\ variables=\u30AD\u30FC\u3068\u5024\u306E\u30EA\u30B9\u30C8 -Name=\u30AD\u30FC -Value=\u5024 +List\ of\ variables=キーã¨å€¤ã®ãƒªã‚¹ãƒˆ +Name=キー +Value=値 diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ko.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ko.properties index 3118f5607d5c..3273ccfb885b 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ko.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ko.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -List\ of\ variables=\uD0A4-\uAC12 \uBAA9\uB85D -Name=\uC774\uB984 -Value=\uAC12 +List\ of\ variables=키-ê°’ ëª©ë¡ +Name=ì´ë¦„ +Value=ê°’ diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_lt.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_lt.properties index 9c2b27879ab9..ef248606399f 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_lt.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_lt.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors Name=pavadinimas -Value=reik\u0161m\u0117 +Value=reikÅ¡mÄ— diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_nb_NO.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_nb_NO.properties index 63f92aa21357..c34767b0082d 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_nb_NO.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_nb_NO.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -List\ of\ variables=Liste over n\u00F8kkel-verdi par -Name=N\u00F8kkel +List\ of\ variables=Liste over nøkkel-verdi par +Name=Nøkkel Value=Verdi diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pl.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pl.properties index 7774f0d27f61..52efd31a068e 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pl.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pl.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -List\ of\ variables=Lista par klucz-warto\u015B\u0107 +List\ of\ variables=Lista par klucz-wartość Name=nazwa -Value=warto\u015B\u0107 +Value=wartość diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ru.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ru.properties index bdb277f7a12e..b94335947767 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ru.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -List\ of\ variables=\u0421\u043F\u0438\u0441\u043E\u043A \u043F\u0430\u0440 "\u043A\u043B\u044E\u0447-\u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435" -Name=\u0438\u043C\u044F -Value=\u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 +List\ of\ variables=СпиÑок пар "ключ-значение" +Name=Ð¸Ð¼Ñ +Value=значение diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sk.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sk.properties index 5d8d7592e304..be289fce75b4 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sk.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sk.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -List\ of\ variables=Zoznam p\u00E1rov k\u013E\u00FA\u010D - hodnota -Name=k\u013E\u00FA\u010D +List\ of\ variables=Zoznam párov kÄ¾ÃºÄ - hodnota +Name=kÄ¾ÃºÄ Value=hodnota diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sr.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sr.properties index a656ba685a96..8598a03d49f9 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sr.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -List\ of\ variables=\u0421\u043F\u0438\u0441\u0430\u043A \u043F\u0440\u043E\u043C\u0435\u043D\u0459\u0438\u0432\u0430 -Name=\u0418\u043C\u0435 -Value=\u0412\u0440\u0435\u0434\u043D\u043E\u0441\u0442 +List\ of\ variables=СпиÑак променљива +Name=Име +Value=ВредноÑÑ‚ diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sv_SE.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sv_SE.properties index 2c29646a5c9e..628aebfb0970 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sv_SE.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sv_SE.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -List\ of\ variables=Lista p\u00E5 nyckel-v\u00E4rde par +List\ of\ variables=Lista pÃ¥ nyckel-värde par Name=namn -Value=v\u00E4rde +Value=värde diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_zh_TW.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_zh_TW.properties index ad09037b0f8e..21e073c0696a 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_zh_TW.properties @@ -21,6 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -List\ of\ variables=Key-Value \u5c0d\u61c9\u6e05\u55ae -Name=\u540d\u7a31 -Value=\u503c +List\ of\ variables=Key-Value å°æ‡‰æ¸…å–® +Name=å稱 +Value=值 diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/config_bg.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_bg.properties index 5fbeb54e515f..205b9ede97f4 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/config_bg.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Tunnel\ connection\ through=\ - \u0422\u0443\u043d\u0435\u043b\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0432\u0440\u044a\u0437\u043a\u0430\u0442\u0430 \u043f\u0440\u0435\u0437 + Тунелиране на връзката през JVM\ options=\ - \u041e\u043f\u0446\u0438\u0438 \u043d\u0430 \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u043d\u0430\u0442\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 \u043d\u0430 Java + Опции на виртуалната машина на Java Enable\ work\ directory=\ - \u0412\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u043d\u0430\u0442\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f + Включване на работната Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/config_es.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_es.properties index 9f40b96f78f7..2785b69511da 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/config_es.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Tunnel\ connection\ through=Establecer un túnel a traves de +Tunnel\ connection\ through=Establecer un túnel a traves de JVM\ options=Opciones de la JVM diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/config_it.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_it.properties index e14bdbc16e24..d2162528f208 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/config_it.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/config_ja.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_ja.properties index b733859a4f8b..0ec1cc21cea5 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/config_ja.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Tunnel\ connection\ through=\u30C8\u30F3\u30CD\u30EB\u63A5\u7D9A -JVM\ options=JVM\u30AA\u30D7\u30B7\u30E7\u30F3 +Tunnel\ connection\ through=トンãƒãƒ«æŽ¥ç¶š +JVM\ options=JVMオプション diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/config_pt_BR.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_pt_BR.properties index 06c58a3a56ed..9ac8aae90891 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/config_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Tunnel\ connection\ through=T\u00FAnel conecta atrav\u00E9s -Enable\ work\ directory=Habilitar diret\u00F3rio de trabalho +Tunnel\ connection\ through=Túnel conecta através +Enable\ work\ directory=Habilitar diretório de trabalho Use\ WebSocket=Usar\ um\ websocket diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/config_sr.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_sr.properties index f33e2853a0de..f44ad44ef28b 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/config_sr.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Tunnel\ connection\ through=\u041F\u043E\u0432\u0435\u0436\u0438 \u043F\u043E\u043C\u043E\u045B\u0435\u043C \u0442\u0443\u043D\u0435\u043B\u0430 -JVM\ options=JVM \u043E\u043F\u0446\u0438\u0458\u0435 +Tunnel\ connection\ through=Повежи помоћем тунела +JVM\ options=JVM опције diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/config_zh_TW.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_zh_TW.properties index 871a55d2c20b..b2f3c7df83a4 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/config_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -JVM\ options=JVM \u53C3\u6578 -Tunnel\ connection\ through=Tunnel \u9023\u7DDA\u4F4D\u7F6E +JVM\ options=JVM åƒæ•¸ +Tunnel\ connection\ through=Tunnel 連線ä½ç½® diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_bg.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/help_bg.properties index c8949bb2fdf1..21c5be1eac0d 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_bg.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/help_bg.properties @@ -21,15 +21,15 @@ # THE SOFTWARE. blurb=\ - \u041f\u043e\u0437\u0432\u043e\u043b\u044f\u0432\u0430 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d \u0447\u0440\u0435\u0437\ + ПозволÑва на агент да бъде Ñтартиран чрез\ Java Web Start.
    \ - \u0417\u0430 \u0442\u043e\u0432\u0430 \u0442\u0440\u044f\u0431\u0432\u0430 \u043e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d\u0430\u0442\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 \u0434\u0430 \u043e\u0442\u0432\u043e\u0440\u0438 \u0444\u0430\u0439\u043b \u0432\u044a\u0432 \u0444\u043e\u0440\u043c\u0430\u0442 JNLP, \u0441\u043b\u0435\u0434 \u0442\u043e\u0432\u0430\ - \u0442\u044f \u0449\u0435 \u043e\u0442\u0432\u043e\u0440\u0438 \u0432\u0440\u044a\u0437\u043a\u0430 \u043f\u043e TCP \u043a\u044a\u043c \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0432\u0430\u0449\u0438\u044f\u0442 \u0441\u044a\u0440\u0432\u044a\u0440 \u043d\u0430 Jenkins.
    \ - \u0422\u043e\u0432\u0430 \u043e\u0437\u043d\u0430\u0447\u0430\u0432\u0430, \u0447\u0435 \u043d\u0435 \u0435 \u0437\u0430\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0432\u0430\u0449\u0438\u044f\u0442 \u0441\u044a\u0440\u0432\u044a\u0440 \u0434\u0430 \u0435 \u0432 \u0441\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\ - \u0434\u043e\u0441\u0442\u0438\u0433\u043d\u0435 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u0438\u044f, \u043d\u043e \u0435 \u0437\u0430\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u043e \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u0438\u044f\u0442 \u0434\u0430 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0442\u0438\u0433\u043d\u0435 \u0434\u043e\ - \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0432\u0430\u0449\u0438\u044f. \u0410\u043a\u043e \u0441\u0442\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u043b\u0438 \u0441\u0438\u0433\u0443\u0440\u043d\u043e\u0441\u0442\u0442\u0430 \u043f\u0440\u0435\u0437 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u0442\u0430 \u0437\u0430\ - \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0441\u0438\u0433\u0443\u0440\u043d\u043e\u0441\u0442\u0442\u0430, \u043c\u043e\u0436\u0435 \u0438 \u0434\u0430 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0438\u0442\u0435 \u043f\u043e\u0440\u0442\u0430, \u043d\u0430 \u043a\u043e\u0439\u0442\u043e\ - \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0432\u0430\u0449\u0438\u044f\u0442 \u0441\u044a\u0440\u0432\u044a\u0440 \u0449\u0435 \u0447\u0430\u043a\u0430 \u0437\u0430 \u0432\u0445\u043e\u0434\u044f\u0449\u0438 \u0432\u0440\u044a\u0437\u043a\u0438 \u0437\u0430 JNLP.
    \ - \u041f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435 \u0430\u0433\u0435\u043d\u0442\u0438\u0442\u0435 \u0441 JNLP \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0442 \u0433\u0440\u0430\u0444\u0438\u0447\u0435\u043d \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441, \u043d\u043e \u043c\u043e\u0436\u0435 \u0434\u0430\ - \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u0435 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u0431\u0435\u0437 \u0442\u0430\u043a\u044a\u0432 \u2014 \u043f\u043e\u0434\u043e\u0431\u043d\u043e \u043d\u0430 \u0443\u0441\u043b\u0443\u0433\u0430 \u043d\u0430 Windows. + За това Ñ‚Ñ€Ñбва отдалечената машина да отвори файл във формат JNLP, Ñлед това\ + Ñ‚Ñ Ñ‰Ðµ отвори връзка по TCP към управлÑващиÑÑ‚ Ñървър на Jenkins.
    \ + Това означава, че не е задължително управлÑващиÑÑ‚ Ñървър да е в ÑÑŠÑтоÑние да\ + доÑтигне подчинениÑ, но е задължително подчинениÑÑ‚ да може да Ñтигне до\ + управлÑващиÑ. Ðко Ñте наÑтроили ÑигурноÑтта през Ñтраницата за\ + ÐаÑтройки на ÑигурноÑтта, може и да определите порта, на който\ + управлÑващиÑÑ‚ Ñървър ще чака за входÑщи връзки за JNLP.
    \ + По подразбиране агентите Ñ JNLP Ñтартират графичен интерфейÑ, но може да\ + наÑтроите Ñтартиране без такъв — подобно на уÑлуга на Windows. diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_es.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/help_es.properties index 0f7743712438..bc1cdd288690 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_es.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/help_es.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. blurb=Arranca un agente haciendo uso de JNLP.\ - De modo que el agente inicia la ejecución, por lo que los agentes no necesitan una IP accesible desde el master. \ - Incluso es posible arrancar una ejecución sin GUI, como puede ser un servicio Windows. + De modo que el agente inicia la ejecución, por lo que los agentes no necesitan una IP accesible desde el master. \ + Incluso es posible arrancar una ejecución sin GUI, como puede ser un servicio Windows. diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_it.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/help_it.properties index bd6cbb5b658d..3c14e211b783 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_it.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/help_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,18 +21,18 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Consente a un agente di essere collegato al master Jenkins quando è \ - pronto.
    In una modalità, viene utilizzato \ +blurb=Consente a un agente di essere collegato al master Jenkins quando è \ + pronto.
    In una modalità, viene utilizzato \ Java \ Web Start. In questo caso si deve aprire un file JNLP sulla macchina \ - agente, la quale stabilirà una connessione TCP al master Jenkins. (Altri \ + agente, la quale stabilirà una connessione TCP al master Jenkins. (Altri \ metodi di avvio utilizzano un file JNLP ma non Java Web Start, oppure non \ - utilizzano alcun file JNLP).
    Ciò significa che l''agente non deve essere \ + utilizzano alcun file JNLP).
    Ciò significa che l''agente non deve essere \ necessariamente raggiungibile dal master; l''agente deve essere \ - semplicemente in grado di raggiungere il master. Se si è abilitata la \ - sicurezza nella pagina Configura sicurezza globale, è possibile \ - personalizzare la porta su cui il master Jenkins rimarrà in ascolto per \ + semplicemente in grado di raggiungere il master. Se si è abilitata la \ + sicurezza nella pagina Configura sicurezza globale, è possibile \ + personalizzare la porta su cui il master Jenkins rimarrà in ascolto per \ ricevere le connessioni in ingresso degli agenti.
    Per impostazione \ - predefinita, l''agente lancerà un''interfaccia grafica, ma è anche \ + predefinita, l''agente lancerà un''interfaccia grafica, ma è anche \ possibile eseguire un agente senza interfaccia grafica, ad esempio come \ servizio Windows. diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_pt_BR.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/help_pt_BR.properties index b0d6de667e78..a90afec776e0 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/help_pt_BR.properties @@ -22,13 +22,13 @@ blurb=\ Permite que um agente seja conectado ao Jenkins controller sempre que estiver pronto.
    \ - Neste modo o Java Web Start \u00E9 utilizado. \ - Neste caso, um arquivo JNLP precisa ser aberto no agente de m\u00E1quina, \ - que ir\u00E1 estabelecer uma conex\u00E3o TCP com o Jenkins controller \ - (outros m\u00E9todos de lan\u00E7amento usam o arquivo JNLP mas n\u00E3o o Java Web start, ou n\u00E3o usam o JNLP de qualquer forma).
    \ - Isto significa que o agente n\u00E3o precisa ser alcan\u00E7\u00E1vel pelo controller, \ - ele precisa apenas conseguir alcan\u00E7ar o controller. \ - Se voc\u00EA tiver seguran\u00E7a habilitada via a p\u00E1gina Configurar seguran\u00E7a global, \ - voc\u00EA pode customizar a porta em que o Jenkins controller ir\u00E1 escutar por conex\u00F5es de entrada do agente.
    \ - Por padr\u00E3o, o agente ir\u00E1 lan\u00E7ar uma GUI, mas tamb\u00E9m \u00E9 poss\u00EDvel executar \ - o agente sem a GUI, como um servi\u00E7o do Windows, por exemplo. + Neste modo o Java Web Start é utilizado. \ + Neste caso, um arquivo JNLP precisa ser aberto no agente de máquina, \ + que irá estabelecer uma conexão TCP com o Jenkins controller \ + (outros métodos de lançamento usam o arquivo JNLP mas não o Java Web start, ou não usam o JNLP de qualquer forma).
    \ + Isto significa que o agente não precisa ser alcançável pelo controller, \ + ele precisa apenas conseguir alcançar o controller. \ + Se você tiver segurança habilitada via a página Configurar segurança global, \ + você pode customizar a porta em que o Jenkins controller irá escutar por conexões de entrada do agente.
    \ + Por padrão, o agente irá lançar uma GUI, mas também é possível executar \ + o agente sem a GUI, como um serviço do Windows, por exemplo. diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_sr.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/help_sr.properties index 07df3fab7a8e..0ab395163389 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_sr.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/help_sr.properties @@ -1,11 +1,11 @@ # This file is under the MIT License by authors -blurb=\u041E\u043C\u043E\u0433\u0443\u045B\u0430\u0432\u0430 \u0434\u0430 \u0441\u0435 \u043F\u043E\u043A\u0440\u0435\u043D\u0435 \u0430\u0433\u0435\u043D\u0442 \u043F\u0440\u0435\u043A\u043E Java Web Start.
    \ - \u0423 \u0442\u043E\u043C \u0441\u043B\u0443\u0447\u0430\u0458\u0443, JNLP \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u043C\u043E\u0440\u0430 \u0431\u0438\u0442\u0438 \u043E\u0442\u0432\u043E\u0440\u0435\u043D\u0430 \u043D\u0430 \u043C\u0430\u0448\u0438\u043D\u0438 \u0430\u0433\u0435\u043D\u0442\u0430, \u043A\u043E\u0458\u0430 \u045B\u0435 \u0431\u0438\u0442\u0438 \ - \u043F\u043E\u0432\u0435\u0436\u0435\u043D\u0430 TCP \u0432\u0435\u0437\u043E\u043C \u043D\u0430 Jenkins \u043C\u0430\u0441\u0442\u0435\u0440.
    \ - \u0410\u0433\u0435\u043D\u0442 \u043D\u0435 \u043C\u043E\u0440\u0430 \u0431\u0438\u0442\u0438 \u0434\u043E\u0441\u0442\u0443\u043F\u0430\u043D \u043C\u0430\u0441\u0442\u0435\u0440\u043E\u043C; \u0430\u0433\u0435\u043D\u0442 \ - \u0458\u0435\u0434\u0438\u043D\u043E \u043C\u043E\u0440\u0430 \u0431\u0438\u0442\u0438 \u0443 \u0441\u0442\u0430\u045A\u0443 \u0434\u0430 \u043D\u0430\u0452\u0435 \u043C\u0430\u0441\u0442\u0435\u0440\u0430. \u0410\u043A\u043E \u0441\u0442\u0435 \u043E\u043C\u043E\u0433\u0443\u045B\u0438\u043B\u0438 \u0431\u0435\u0437\u0431\u0435\u0434\u043D\u0438 \u0440\u0435\u0436\u0438\u043C \ - \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0438 \u041F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0431\u0435\u0437\u0431\u0435\u0434\u043D\u043E\u0441\u0442\u0438, \u043C\u043E\u0436\u0435\u0442\u0435 \u043D\u0430\u0432\u0435\u0441\u0442\u0438 \u043F\u043E\u0440\u0442 \u043F\u0440\u0435\u043A\u043E \ - \u043A\u043E\u0458\u0435 \u045B\u0435 \u043C\u0430\u0441\u0442\u0435\u0440 Jenkins \u043C\u0430\u0448\u0438\u043D\u0430 \u0441\u043B\u0443\u0448\u0430\u0442\u0438 \u0437\u0430 \u0434\u043E\u043B\u0430\u0437\u0435\u045B\u0435 JNLP \u0432\u0435\u0437\u0435.
    \ - JNLP \u0430\u0433\u0435\u043D\u0442 \u045B\u0435 \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u0438 \u0433\u0440\u0430\u0444\u0438\u0447\u043A\u0438 \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0458\u0441, \u043C\u0435\u0452\u0443\u0442\u0438\u043C \u043C\u043E\u0433\u0443\u045B\u0435 \u0458\u0435 \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u0438 \ - JNLP \u0430\u0433\u0435\u043D\u0442\u0430 \u0431\u0435\u0437 \u0433\u0440\u0430\u0444\u0438\u0447\u043A\u043E\u0433 \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0438\u0458\u0441\u0430, \u043D\u043F\u0440. \u043A\u0430\u043E Windows \u0441\u0435\u0440\u0432\u0438\u0441. +blurb=Омогућава да Ñе покрене агент преко Java Web Start.
    \ + У том Ñлучају, JNLP датотека мора бити отворена на машини агента, која ће бити \ + повежена TCP везом на Jenkins маÑтер.
    \ + Ðгент не мора бити доÑтупан маÑтером; агент \ + једино мора бити у Ñтању да нађе маÑтера. Ðко Ñте омогућили безбедни режим \ + на Ñтраници Подешавања безбедноÑти, можете навеÑти порт преко \ + које ће маÑтер Jenkins машина Ñлушати за долазеће JNLP везе.
    \ + JNLP агент ће покренути графички интерфејÑ, међутим могуће је покренути \ + JNLP агента без графичког интерфеијÑа, нпр. као Windows ÑервиÑ. diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_bg.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_bg.properties index 7e857ee1cbdd..b9f820d9716c 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_bg.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_bg.properties @@ -21,19 +21,19 @@ # THE SOFTWARE. Connect\ agent\ to\ Jenkins\ one\ of\ these\ ways\:=\ - \u0421\u0432\u044a\u0440\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442 \u043a\u044a\u043c Jenkins \u043f\u043e \u0435\u0434\u0438\u043d \u043e\u0442 \u0441\u043b\u0435\u0434\u043d\u0438\u0442\u0435 \u043d\u0430\u0447\u0438\u043d\u0438: + Свързване на агент към Jenkins по един от Ñледните начини: Or\ if\ the\ agent\ is\ headless\:=\ - \u0410\u043a\u043e \u0430\u0433\u0435\u043d\u0442\u044a\u0442 \u0435 \u0431\u0435\u0437 \u043c\u043e\u043d\u0438\u0442\u043e\u0440: + Ðко агентът е без монитор: Run\ from\ agent\ command\ line\:=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442\u0430 \u043e\u0442 \u043a\u043e\u043c\u0430\u043d\u0434\u043d\u0438\u044f \u0440\u0435\u0434 + Стартиране на агента от ÐºÐ¾Ð¼Ð°Ð½Ð´Ð½Ð¸Ñ Ñ€ÐµÐ´ launch\ agent=\ - \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442\u0430 + Ñтартиране на агента slaveAgentPort.disabled=\ - \u041f\u043e\u0440\u0442\u044a\u0442 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442\u0430 \u0435 \u0438\u0437\u043a\u043b\u044e\u0447\u0435\u043d + Портът на агента е изключен Launch\ agent\ from\ browser=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442 \u043e\u0442 \u0431\u0440\u0430\u0443\u0437\u044a\u0440 + Стартиране на агент от браузър Connected\ via\ JNLP\ agent.=\ - \u0412\u0440\u044a\u0437\u043a\u0430 \u0441 \u0430\u0433\u0435\u043d\u0442 \u0447\u0440\u0435\u0437 JNLP. + Връзка Ñ Ð°Ð³ÐµÐ½Ñ‚ чрез JNLP. # Go to security configuration screen and change it configure.link.text=\ - \u041e\u0442\u0438\u0434\u0435\u0442\u0435 \u0432 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u0442\u0430 \u0437\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435 \u0437\u0430 \u0441\u0438\u0433\u0443\u0440\u043d\u043e\u0441\u0442\u0442\u0430 \u0438 \u0433\u043e \u0441\u043c\u0435\u043d\u0435\u0442\u0435. + Отидете в Ñтраницата за наÑтройките за ÑигурноÑтта и го Ñменете. diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_de.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_de.properties index 92fdae4babc9..36c54f92d3d8 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_de.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_de.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -configure.link.text=Zur globalen Sicherheitskonfiguration wechseln und \u00E4ndern +configure.link.text=Zur globalen Sicherheitskonfiguration wechseln und ändern launch\ agent=Agent starten -Connected\ via\ JNLP\ agent.=Verbunden \u00FCber JNLP-Agent. -slaveAgentPort.disabled=JNLP=Agenten k\u00F6nnen nicht verbinden, da der JNLP-Port deaktiviert ist. +Connected\ via\ JNLP\ agent.=Verbunden über JNLP-Agent. +slaveAgentPort.disabled=JNLP=Agenten können nicht verbinden, da der JNLP-Port deaktiviert ist. Launch\ agent\ from\ browser=JNLP-Agent via Webbrowser starten -Connect\ agent\ to\ Jenkins\ one\ of\ these\ ways\:=M\u00F6glichkeiten, den Agent mit Jenkins zu verbinden: -Run\ from\ agent\ command\ line\:=Auf der Befehlszeile ausf\u00FChren: -Or\ if\ the\ agent\ is\ headless\:=Wenn der Agent ohne grafische Oberfl\u00E4che benutzt wird: +Connect\ agent\ to\ Jenkins\ one\ of\ these\ ways\:=Möglichkeiten, den Agent mit Jenkins zu verbinden: +Run\ from\ agent\ command\ line\:=Auf der Befehlszeile ausführen: +Or\ if\ the\ agent\ is\ headless\:=Wenn der Agent ohne grafische Oberfläche benutzt wird: diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_es.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_es.properties index 390cf03a391b..3b363197bba7 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_es.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_es.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -slaveAgentPort.disabled=El puerto TCP para los agentes via JNLP está deshabilitado. +slaveAgentPort.disabled=El puerto TCP para los agentes via JNLP está deshabilitado. launch\ agent=Lanzar agente Or\ if\ the\ agent\ is\ headless\:=O si el agente no tiene pantalla -Run\ from\ agent\ command\ line\:=Ejecutar agente desde la línea de comandos del nodo +Run\ from\ agent\ command\ line\:=Ejecutar agente desde la línea de comandos del nodo Launch\ agent\ from\ browser=Lanzar el agente desde el navegador en el nodo -Connect\ agent\ to\ Jenkins\ one\ of\ these\ ways\:=Conectar el agente a Jenkins usando uno de estos métodos -Connected\ via\ JNLP\ agent.=Conectado a través del agente JNLP +Connect\ agent\ to\ Jenkins\ one\ of\ these\ ways\:=Conectar el agente a Jenkins usando uno de estos métodos +Connected\ via\ JNLP\ agent.=Conectado a través del agente JNLP diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_fr.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_fr.properties index 9d4946e1b6c6..822059bad7bb 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_fr.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_fr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Run\ from\ agent\ command\ line\:=Ex\u00E9cuter l''agent \u00E0 partir de l\u2019interpr\u00E8te de commandes +Run\ from\ agent\ command\ line\:=Exécuter l''agent à partir de l’interprète de commandes launch\ agent=lancer l''agent -Connect\ agent\ to\ Jenkins\ one\ of\ these\ ways\:=Connecter l''agent \u00E0 Jenkins avec l''une des mani\u00E8res suivantes: -Connected\ via\ JNLP\ agent.=Connect\u00E9 via l\u2019agent JNLP. +Connect\ agent\ to\ Jenkins\ one\ of\ these\ ways\:=Connecter l''agent à Jenkins avec l''une des manières suivantes: +Connected\ via\ JNLP\ agent.=Connecté via l’agent JNLP. diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_it.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_it.properties index f1aa1b04e977..37b21deb833c 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_it.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,16 +21,16 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Agent\ is\ connected.=L''agente è connesso. +Agent\ is\ connected.=L''agente è connesso. configure.link.text=Vai alla schermata di configurazione della sicurezza e \ modificala Connect\ agent\ to\ Jenkins\ one\ of\ these\ ways\:=Connettere l''agente a \ Jenkins in uno di questi modi: launch\ agent=avvia l''agente Launch\ agent\ from\ browser=Avvia l''agente dal browser -Or\ if\ the\ agent\ is\ headless\:=O se l''agente è senza interfaccia grafica: +Or\ if\ the\ agent\ is\ headless\:=O se l''agente è senza interfaccia grafica: Run\ from\ agent\ command\ line\:=Esegui dalla riga di comando dell''agente Run\ from\ agent\ command\ line,\ with\ the\ secret\ stored\ in\ a\ file\:=\ Esegui dalla riga di comando dell''agente con il segreto salvato in un file -slaveAgentPort.disabled=La porta agente JNLP è disabilitata e gli agenti non \ - possono connettersi in questa modalità. +slaveAgentPort.disabled=La porta agente JNLP è disabilitata e gli agenti non \ + possono connettersi in questa modalità. diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ja.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ja.properties index 49e9af614f09..88332813b80e 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ja.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -launch\ agent=\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u306e\u8d77\u52d5 -Connected\ via\ JNLP\ agent.=JNLP\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u7d4c\u7531\u3067\u63a5\u7d9a -configure.link.text=\u30b0\u30ed\u30fc\u30d0\u30eb\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u306e\u8a2d\u5b9a\u30da\u30fc\u30b8\u3067\u5909\u66f4\u3057\u3066\u304f\u3060\u3055\u3044\u3002 +launch\ agent=エージェントã®èµ·å‹• +Connected\ via\ JNLP\ agent.=JNLPエージェント経由ã§æŽ¥ç¶š +configure.link.text=グローãƒãƒ«ã‚»ã‚­ãƒ¥ãƒªãƒ†ã‚£ã®è¨­å®šãƒšãƒ¼ã‚¸ã§å¤‰æ›´ã—ã¦ãã ã•ã„。 diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ko.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ko.properties index f2efec4ece8b..bb038ce52cc2 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ko.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Connected\ via\ JNLP\ agent.=JNLP Agent\uB85C \uC5F0\uACB0 +Connected\ via\ JNLP\ agent.=JNLP Agentë¡œ ì—°ê²° diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_lv.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_lv.properties index d267186db916..4c6fd669055a 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_lv.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_lv.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Connected\ via\ JNLP\ agent.=Savienots ar JLNP a\u0123entu. -launch\ agent=palaist a\u0123entu +Connected\ via\ JNLP\ agent.=Savienots ar JLNP aÄ£entu. +launch\ agent=palaist aÄ£entu diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_pl.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_pl.properties index d0bb3259cd48..ee15aed09df5 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_pl.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_pl.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Connected\ via\ JNLP\ agent.=Po\u0142\u0105czony za pomoc\u0105 agenta JNLP. +Connected\ via\ JNLP\ agent.=PoÅ‚Ä…czony za pomocÄ… agenta JNLP. diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_pt_BR.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_pt_BR.properties index 886bf2225897..910c35fdc04a 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_pt_BR.properties @@ -21,9 +21,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -slaveAgentPort.disabled=Porta TCP para JNLP est\u00E1 desativada -configure.link.text=V\u00E1 para a p\u00E1gina de configura\u00E7\u00E3o de seguran\u00E7a para alterar -Agent\ is\ connected.=O\ agente\ est\u00E1\ conectado. +slaveAgentPort.disabled=Porta TCP para JNLP está desativada +configure.link.text=Vá para a página de configuração de segurança para alterar +Agent\ is\ connected.=O\ agente\ está\ conectado. Run\ from\ agent\ command\ line\:=Executar\ da\ linha\ de\ comando\ do\ agente\: Or\ run\ from\ agent\ command\ line,\ with\ the\ secret\ stored\ in\ a\ file\:=Ou execute pela linha de comando do \ agente com o segredo armazenado em um arquivo: diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ru.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ru.properties index 174db0d3b793..fdb4d3dd71b4 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ru.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Connected\ via\ JNLP\ agent.=\u041F\u043E\u0434\u043A\u043B\u044E\u0447\u0435\u043D \u0447\u0435\u0440\u0435\u0437 JNLP \u0430\u0433\u0435\u043D\u0442\u0430. -Run\ from\ agent\ command\ line\:=\u0412\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u044C \u0432 \u043A\u043E\u043C\u043C\u0430\u043D\u0434\u043D\u043E\u0439 \u0441\u0442\u0440\u043E\u043A\u0435 \u043F\u043E\u0434\u0447\u0438\u043D\u0435\u043D\u043D\u043E\u0433\u043E \u0443\u0437\u043B\u0430 -launch\ agent=\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u0430\u0433\u0435\u043D\u0442\u0430 +Connected\ via\ JNLP\ agent.=Подключен через JNLP агента. +Run\ from\ agent\ command\ line\:=Выполнить в коммандной Ñтроке подчиненного узла +launch\ agent=запуÑтить агента diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_sr.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_sr.properties index c3626b46510e..65c5c7116f1f 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_sr.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_sr.properties @@ -1,12 +1,12 @@ # This file is under the MIT License by authors -slaveAgentPort.disabled=\u041F\u043E\u0440\u0442 TCP \u0437\u0430 JNLP \u0458\u0435 \u0437\u0430\u0442\u0432\u043E\u0440\u0435\u043D -configure.link.text=\u0418\u0442\u0438\u0442\u0435 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0443 \u0437\u0430 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0431\u0435\u0437\u0431\u0435\u0434\u043D\u043E\u0441\u0442\u0438 \u0438 \u043F\u0440\u043E\u043C\u0435\u043D\u0438\u0442\u0435 \u0433\u0430 -Connect\ agent\ to\ Jenkins\ one\ of\ these\ ways\:=\u041F\u043E\u0432\u0435\u0436\u0438\u0442\u0435 \u0441\u0435 \u0441\u0430 Jenkins-\u043E\u043C \u043F\u0443\u0442\u0435\u043C: -launch\ agent=\u043F\u043E\u043A\u0440\u0435\u043D\u0438 \u0430\u0433\u0435\u043D\u0442\u0430 -Launch\ agent\ from\ browser=\u041F\u043E\u043A\u0440\u0435\u043D\u0438 \u0441\u0430 \u0432\u0435\u0431-\u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0447\u0430 -Run\ from\ agent\ command\ line\:=\u0418\u0437\u0432\u0440\u0448\u0438 \u0441\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u0435 \u043B\u0438\u043D\u0438\u0458\u0435: -Or\ if\ the\ agent\ is\ headless\:=\u0418\u043B\u0438, \u0430\u043A\u043E \u0430\u0433\u0435\u043D\u0442 \u043D\u0435 \u0438\u043C\u0430 \u0435\u043A\u0440\u0430\u043D\u0430 -Connected\ via\ JNLP\ agent.=\u041F\u043E\u0432\u0435\u0437\u0430\u043D\u043E \u043F\u0443\u0442\u0435\u043C JNLP \u0430\u0433\u0435\u043D\u0442\u0430. -Run\ from\ agent\ command\ line=\u0418\u0437\u0432\u0440\u0448\u0438 \u0441\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u0435 \u043B\u0438\u043D\u0438\u0458\u0435 -Connect\ agent\ to\ Jenkins\ one\ of\ these\ ways=\u041F\u043E\u0432\u0435\u0436\u0438\u0442\u0435 \u0441\u0435 \u0441\u0430 Jenkins-\u043E\u043C \u043F\u0443\u0442\u0435\u043C +slaveAgentPort.disabled=Порт TCP за JNLP је затворен +configure.link.text=Итите на Ñтраницу за подешавања безбедноÑти и промените га +Connect\ agent\ to\ Jenkins\ one\ of\ these\ ways\:=Повежите Ñе Ñа Jenkins-ом путем: +launch\ agent=покрени агента +Launch\ agent\ from\ browser=Покрени Ñа веб-прегледача +Run\ from\ agent\ command\ line\:=Изврши Ñа командне линије: +Or\ if\ the\ agent\ is\ headless\:=Или, ако агент не има екрана +Connected\ via\ JNLP\ agent.=Повезано путем JNLP агента. +Run\ from\ agent\ command\ line=Изврши Ñа командне линије +Connect\ agent\ to\ Jenkins\ one\ of\ these\ ways=Повежите Ñе Ñа Jenkins-ом путем diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_tr.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_tr.properties index da1edb827a7e..a37d25dac48b 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_tr.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_tr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Connected\ via\ JNLP\ agent.=JNLP ajan\u0131 ile ba\u011Fland\u0131 +Connected\ via\ JNLP\ agent.=JNLP ajanı ile baÄŸlandı diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_zh_TW.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_zh_TW.properties index 7c50bf1b2681..2c7e5befa58d 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -launch\ agent=\u555f\u52d5\u4ee3\u7406\u7a0b\u5f0f -Connected\ via\ JNLP\ agent.=\u5C07\u7531 JNLP \u4EE3\u7406\u7A0B\u5F0F\u5EFA\u7ACB\u9023\u7DDA\u3002 +launch\ agent=啟動代ç†ç¨‹å¼ +Connected\ via\ JNLP\ agent.=將由 JNLP 代ç†ç¨‹å¼å»ºç«‹é€£ç·šã€‚ diff --git a/core/src/main/resources/hudson/slaves/Messages.properties b/core/src/main/resources/hudson/slaves/Messages.properties index bf2dd8dc8fe5..26ff8c28df57 100644 --- a/core/src/main/resources/hudson/slaves/Messages.properties +++ b/core/src/main/resources/hudson/slaves/Messages.properties @@ -38,5 +38,5 @@ SlaveComputer.DisconnectedBy=Disconnected by {0}{1} NodeDescriptor.CheckName.Mandatory=Name is mandatory ComputerLauncher.NoJavaFound=Java version {0} was found but 1.8 or later is needed. ComputerLauncher.JavaVersionResult={0} -version returned {1}. -ComputerLauncher.UnknownJavaVersion=Couldn\u2019t figure out the Java version of {0} +ComputerLauncher.UnknownJavaVersion=Couldn’t figure out the Java version of {0} Cloud.ProvisionPermission.Description=Provision new nodes diff --git a/core/src/main/resources/hudson/slaves/Messages_bg.properties b/core/src/main/resources/hudson/slaves/Messages_bg.properties index 69f3280c0320..b99a6dce8daa 100644 --- a/core/src/main/resources/hudson/slaves/Messages_bg.properties +++ b/core/src/main/resources/hudson/slaves/Messages_bg.properties @@ -21,58 +21,58 @@ # THE SOFTWARE. RetentionStrategy.Demand.OfflineIdle=\ - \u041d\u0435 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f, \u0437\u0430\u0449\u043e\u0442\u043e \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u044a\u0442 \u0431\u0435\u0437\u0434\u0435\u0439\u0441\u0442\u0432\u0430. \u0429\u0435 \u0441\u0435 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430 \u043f\u0440\u0438 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442. + Ðе е на линиÑ, защото компютърът бездейÑтва. Ще Ñе Ñтартира при необходимоÑÑ‚. ConnectionActivityMonitor.OfflineCause=\ - \u041c\u043d\u043e\u0433\u043e\u043a\u0440\u0430\u0442\u043d\u0438\u0442\u0435 \u043e\u043f\u0438\u0442\u0438 \u0437\u0430 \u0432\u0440\u044a\u0437\u043a\u0430 \u0447\u0440\u0435\u0437 \u043a\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u0430 \u201eping\u201c \u0441\u0430 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u0438 + Многократните опити за връзка чрез командата „ping“ Ñа неуÑпешни NodeProvisioner.EmptyString=\ OfflineCause.connection_was_broken_=\ - \u0412\u0440\u044a\u0437\u043a\u0430\u0442\u0430 \u0431\u0435 \u043f\u0440\u0435\u043a\u044a\u0441\u043d\u0430\u0442\u0430: {0} + Връзката бе прекъÑната: {0} SimpleScheduledRetentionStrategy.FinishedUpTime=\ - \u041a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u044a\u0442 \u043f\u0440\u0438\u0432\u044a\u0440\u0448\u0438 \u043f\u043b\u0430\u043d\u0438\u0440\u0430\u043d\u043e\u0442\u043e \u0432\u0440\u0435\u043c\u0435 \u0437\u0430 \u0440\u0430\u0431\u043e\u0442\u0430 + Компютърът привърши планираното време за работа EnvironmentVariablesNodeProperty.displayName=\ - \u041f\u0440\u043e\u043c\u0435\u043d\u043b\u0438\u0432\u0438 \u043d\u0430 \u0441\u0440\u0435\u0434\u0430\u0442\u0430 + Променливи на Ñредата SlaveComputer.DisconnectedBy=\ - \u0412\u0440\u044a\u0437\u043a\u0430\u0442\u0430 \u0431\u0435 \u043f\u0440\u0435\u043a\u044a\u0441\u043d\u0430\u0442\u0430 \u043e\u0442 \u201e{0}{1}\u201c + Връзката бе прекъÑната от „{0}{1}“ NodeDescripter.CheckName.Mandatory=\ - \u0418\u043c\u0435\u0442\u043e \u0435 \u0437\u0430\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u043e + Името е задължително ComputerLauncher.NoJavaFound=\ - \u041e\u0442\u043a\u0440\u0438\u0442\u0430 \u0431\u0435 \u0432\u0435\u0440\u0441\u0438\u044f \u201e{0}\u201c \u043d\u0430 Java, \u043d\u043e \u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u0430 \u0432\u0435\u0440\u0441\u0438\u044f \u043f\u043e\u043d\u0435 \u201e1.6\u201c. + Открита бе верÑÐ¸Ñ â€ž{0}“ на Java, но е необходима верÑÐ¸Ñ Ð¿Ð¾Ð½Ðµ „1.6“. ComputerLauncher.JavaVersionResult=\ - \u041a\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u0430 \u201e{0} -version\u201c \u0432\u044a\u0440\u043d\u0430 \u201e{1}\u201c. + Командата „{0} -version“ върна „{1}“. ComputerLauncher.UknownJavaVersion=\ - \u0412\u0435\u0440\u0441\u0438\u044f\u0442\u0430 \u043d\u0430 Java \u043d\u0430 \u201e{0}\u201c \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0430 + ВерÑиÑта на Java на „{0}“ не може да бъде определена # Unexpected error in launching an agent. This is probably a bug in Jenkins ComputerLauncher.unexpectedError=\ - \u041d\u0435\u043e\u0447\u0430\u043a\u0432\u0430\u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0430\u0433\u0435\u043d\u0442\u0430. \u0422\u043e\u0432\u0430 \u0432\u0435\u0440\u043e\u044f\u0442\u043d\u043e \u0435 \u0433\u0440\u0435\u0448\u043a\u0430 \u0432 Jenkins + Ðеочаквана грешка при Ñтартирането на агента. Това вероÑтно е грешка в Jenkins # Permanent Agent DumbSlave.displayName=\ - \u041f\u043e\u0441\u0442\u043e\u044f\u043d\u0435\u043d \u0430\u0433\u0435\u043d\u0442 + ПоÑтоÑнен агент # Bring this agent online when in demand, and take offline when idle RetentionStrategy.Demand.displayName=\ - \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u043e\u0437\u0438 \u0430\u0433\u0435\u043d\u0442 \u043f\u0440\u0438 \u043d\u0443\u0436\u0434\u0430. \u041a\u043e\u0433\u0430\u0442\u043e \u0430\u0433\u0435\u043d\u0442\u044a\u0442 \u0431\u0435\u0437\u0434\u0435\u0439\u0441\u0442\u0432\u0430, \u0434\u0430\ - \u0441\u0435 \u0438\u0437\u0432\u0435\u0436\u0434\u0430 \u0438\u0437\u0432\u044a\u043d \u043b\u0438\u043d\u0438\u044f. + Ðвтоматично използване на този агент при нужда. Когато агентът бездейÑтва, да\ + Ñе извежда извън линиÑ. # Launch agent via Java Web Start JNLPLauncher.displayName=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442 \u0441 Java Web Start + Стартиране на агент Ñ Java Web Start # Keep this agent online as much as possible RetentionStrategy.Always.displayName=\ - \u0410\u0433\u0435\u043d\u0442\u044a\u0442 \u0434\u0430 \u0435 \u043e\u043d\u043b\u0430\u0439\u043d \u043a\u043e\u043b\u043a\u043e\u0442\u043e \u043c\u043e\u0436\u0435 \u043f\u043e-\u0434\u044a\u043b\u0433\u043e + Ðгентът да е онлайн колкото може по-дълго # This agent is offline because Jenkins failed to launch the agent process on it. OfflineCause.LaunchFailed=\ - \u0410\u0433\u0435\u043d\u0442\u044a\u0442 \u043d\u0435 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f, \u0437\u0430\u0449\u043e\u0442\u043e Jenkins \u043d\u0435 \u0443\u0441\u043f\u044f \u0434\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0430 \u043c\u0443. + Ðгентът не е на линиÑ, защото Jenkins не уÑÐ¿Ñ Ð´Ð° Ñтартира процеÑа му. # Bring this agent online according to a schedule SimpleScheduledRetentionStrategy.displayName=\ - \u0410\u0433\u0435\u043d\u0442\u044a\u0442 \u0434\u0430 \u0435 \u043d\u0430 \u0438 \u0438\u0437\u0432\u044a\u043d \u043b\u0438\u043d\u0438\u044f \u043f\u043e \u0440\u0430\u0437\u043f\u0438\u0441\u0430\u043d\u0438\u0435 + Ðгентът да е на и извън Ð»Ð¸Ð½Ð¸Ñ Ð¿Ð¾ разпиÑание # Launching agent process aborted. ComputerLauncher.abortedLaunch=\ - \u041f\u0440\u043e\u0446\u0435\u0441\u044a\u0442 \u0437\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442\u0430 \u043f\u0440\u0438\u043a\u043b\u044e\u0447\u0438 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e -# Couldn\u2019t figure out the Java version of {0} + ПроцеÑÑŠÑ‚ за Ñтартиране на агента приключи неуÑпешно +# Couldn’t figure out the Java version of {0} ComputerLauncher.UnknownJavaVersion=\ - \u0412\u0435\u0440\u0441\u0438\u044f\u0442\u0430 \u043d\u0430 Java \u043d\u0430 {0} \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0430 + ВерÑиÑта на Java на {0} не може да бъде определена # Name is mandatory NodeDescriptor.CheckName.Mandatory=\ - \u0418\u043c\u0435\u0442\u043e \u0435 \u0437\u0430\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u043e + Името е задължително # Provision new nodes Cloud.ProvisionPermission.Description=\ - \u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u043e\u0449\u0435 \u043c\u0430\u0448\u0438\u043d\u0438 + ДобавÑне на още машини diff --git a/core/src/main/resources/hudson/slaves/Messages_da.properties b/core/src/main/resources/hudson/slaves/Messages_da.properties index ed12c4fbb549..b0e7bdc1568b 100644 --- a/core/src/main/resources/hudson/slaves/Messages_da.properties +++ b/core/src/main/resources/hudson/slaves/Messages_da.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -RetentionStrategy.Demand.OfflineIdle=Offline da computeren var i tomgang; vil blive genstartet n\u00e5r n\u00f8dvendigt. +RetentionStrategy.Demand.OfflineIdle=Offline da computeren var i tomgang; vil blive genstartet nÃ¥r nødvendigt. SimpleScheduledRetentionStrategy.FinishedUpTime=Computeren har afsluttet sin planlagte oppetid -EnvironmentVariablesNodeProperty.displayName=Milj\u00f8variable -ConnectionActivityMonitor.OfflineCause=Gentagne pingfors\u00f8g fejlede +EnvironmentVariablesNodeProperty.displayName=Miljøvariable +ConnectionActivityMonitor.OfflineCause=Gentagne pingforsøg fejlede SlaveComputer.DisconnectedBy=Frakoblet af {0}{1} NodeProvisioner.EmptyString= diff --git a/core/src/main/resources/hudson/slaves/Messages_de.properties b/core/src/main/resources/hudson/slaves/Messages_de.properties index a98fcd402011..baeb38c28f2d 100644 --- a/core/src/main/resources/hudson/slaves/Messages_de.properties +++ b/core/src/main/resources/hudson/slaves/Messages_de.properties @@ -23,19 +23,19 @@ Cloud.ProvisionPermission.Description=Neue Agenten provisionieren ComputerLauncher.abortedLaunch=Start des Agenten-Prozesses abgebrochen ComputerLauncher.JavaVersionResult={0} -version ergab {1}. -ComputerLauncher.NoJavaFound=Java-Version {0} gefunden, aber 1.7 oder neuer ist n\u00F6tig. +ComputerLauncher.NoJavaFound=Java-Version {0} gefunden, aber 1.7 oder neuer ist nötig. ComputerLauncher.unexpectedError=Unerwarteter Fehler beim Start des Agenten. Das ist vermutlich ein Bug in Jenkins. ComputerLauncher.UnknownJavaVersion=Konnte Java-Version von {0} nicht bestimmen. ConnectionActivityMonitor.OfflineCause=Ping-Versuche scheiterten wiederholt DumbSlave.displayName=Statischer Agent EnvironmentVariablesNodeProperty.displayName=Umgebungsvariablen -JNLPLauncher.displayName=Agent \u00FCber eine Verbindung zum Master-Knoten starten +JNLPLauncher.displayName=Agent über eine Verbindung zum Master-Knoten starten NodeDescriptor.CheckName.Mandatory=Name ist ein Pflichtfeld. NodeProvisioner.EmptyString= OfflineCause.connection_was_broken_=Verbindung wurde unterbrochen: {0} OfflineCause.LaunchFailed=Dieser Agent ist offline, da Jenkins den Agenten-Prozess nicht starten konnte. RetentionStrategy.Always.displayName=Diesen Agenten dauerhaft online halten -RetentionStrategy.Demand.displayName=Agent bei Bedarf online nehmen und bei Inaktivit\u00E4t offline nehmen +RetentionStrategy.Demand.displayName=Agent bei Bedarf online nehmen und bei Inaktivität offline nehmen RetentionStrategy.Demand.OfflineIdle=Dieser Agent ist offline da er inaktiv war. Er wird bei Bedarf wieder gestartet. SimpleScheduledRetentionStrategy.displayName=Agenten basierend auf Zeitplan online nehmen SimpleScheduledRetentionStrategy.FinishedUpTime=Geplante Laufzeit wurde erreicht. diff --git a/core/src/main/resources/hudson/slaves/Messages_es.properties b/core/src/main/resources/hudson/slaves/Messages_es.properties index afb431f155af..ba768b713f94 100644 --- a/core/src/main/resources/hudson/slaves/Messages_es.properties +++ b/core/src/main/resources/hudson/slaves/Messages_es.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -RetentionStrategy.Demand.OfflineIdle=Fuera de línea porque no es necesario, el servicio se volverá a iniciar cuando haya demanda +RetentionStrategy.Demand.OfflineIdle=Fuera de línea porque no es necesario, el servicio se volverá a iniciar cuando haya demanda ConnectionActivityMonitor.OfflineCause=No hubo respuesta a ''ping'' despues de varios intentos SimpleScheduledRetentionStrategy.FinishedUpTime=El nodo ha finalizado el tiempo programado de estar on-line EnvironmentVariablesNodeProperty.displayName=Variables de entorno SlaveComputer.DisconnectedBy=Desconectado por {0}{1} NodeProvisioner.EmptyString= NodeDescripter.CheckName.Mandatory=El nombre es obligatorio -ComputerLauncher.NoJavaFound=Se encontró la versión de Java {0}, sin embargo se necesita la versión 1.5 o posterior +ComputerLauncher.NoJavaFound=Se encontró la versión de Java {0}, sin embargo se necesita la versión 1.5 o posterior ComputerLauncher.JavaVersionResult={0} [SSH] {1} -version ha retornado {2}. -ComputerLauncher.UknownJavaVersion=Imposible de averiguar la versión de Java en {0} +ComputerLauncher.UknownJavaVersion=Imposible de averiguar la versión de Java en {0} diff --git a/core/src/main/resources/hudson/slaves/Messages_fr.properties b/core/src/main/resources/hudson/slaves/Messages_fr.properties index 67314e2cf6f3..79064e4a5468 100644 --- a/core/src/main/resources/hudson/slaves/Messages_fr.properties +++ b/core/src/main/resources/hudson/slaves/Messages_fr.properties @@ -19,7 +19,7 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -RetentionStrategy.Always.displayName=Maintenir l''agent activ\u00e9 le plus longtemps possible -RetentionStrategy.Demand.displayName=Activer l''agent en cas nécessit\u00e9 et le d\u00e9sactiver lorsqu''il n''est plus n\u00e9cessaire -SimpleScheduledRetentionStrategy.displayName=Activer l''agent \u00e0 des moments sp\u00e9cifiques +RetentionStrategy.Always.displayName=Maintenir l''agent activé le plus longtemps possible +RetentionStrategy.Demand.displayName=Activer l''agent en cas nécessité et le désactiver lorsqu''il n''est plus nécessaire +SimpleScheduledRetentionStrategy.displayName=Activer l''agent à des moments spécifiques EnvironmentVariablesNodeProperty.displayName=Variables d''environnement diff --git a/core/src/main/resources/hudson/slaves/Messages_it.properties b/core/src/main/resources/hudson/slaves/Messages_it.properties index 39fab540878d..f0aa8dc8d753 100644 --- a/core/src/main/resources/hudson/slaves/Messages_it.properties +++ b/core/src/main/resources/hudson/slaves/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -24,10 +24,10 @@ Cloud.ProvisionPermission.Description=Esegui il provisioning di nuovi nodi ComputerLauncher.abortedLaunch=Avvio del processo agente interrotto. ComputerLauncher.JavaVersionResult={0} -version ha restituito {1}. -ComputerLauncher.NoJavaFound=È stata rilevata la versione di Java {0}, ma è \ +ComputerLauncher.NoJavaFound=È stata rilevata la versione di Java {0}, ma è \ richiesta la versione 1.8 o successiva. ComputerLauncher.unexpectedError=Errore non previsto durante l''avvio di un \ - agente. Questo probabilmente è un bug di Jenkins + agente. Questo probabilmente è un bug di Jenkins ComputerLauncher.UnknownJavaVersion=Impossibile rilevare la versione di Java \ di {0} ConnectionActivityMonitor.OfflineCause=I tentativi ripetuti di ping non sono \ @@ -35,19 +35,19 @@ ConnectionActivityMonitor.OfflineCause=I tentativi ripetuti di ping non sono \ DumbSlave.displayName=Agente permanente EnvironmentVariablesNodeProperty.displayName=Variabili d''ambiente JNLPLauncher.displayName=Avvia l''agente facendolo connettere al master -NodeDescriptor.CheckName.Mandatory=Il nome è obbligatorio +NodeDescriptor.CheckName.Mandatory=Il nome è obbligatorio NodeProvisioner.EmptyString= OfflineCause.connection_was_broken_=Connessione interrotta: {0} -OfflineCause.LaunchFailed=Quest''agente non è in linea perché Jenkins non è \ +OfflineCause.LaunchFailed=Quest''agente non è in linea perché Jenkins non è \ riuscito ad avviare il processo dell''agente su di esso. -RetentionStrategy.Always.displayName=Mantieni quest''agente in linea il più \ +RetentionStrategy.Always.displayName=Mantieni quest''agente in linea il più \ possibile -RetentionStrategy.Demand.displayName=Poni quest''agente in linea quando c''è \ - richiesta e ponilo non in linea se è a riposo -RetentionStrategy.Demand.OfflineIdle=Non in linea poiché il computer era a \ - riposo; sarà riavviato quando richiesto. +RetentionStrategy.Demand.displayName=Poni quest''agente in linea quando c''è \ + richiesta e ponilo non in linea se è a riposo +RetentionStrategy.Demand.OfflineIdle=Non in linea poiché il computer era a \ + riposo; sarà riavviato quando richiesto. SimpleScheduledRetentionStrategy.displayName=Poni quest''agente in linea in \ base a una pianificazione -SimpleScheduledRetentionStrategy.FinishedUpTime=Il tempo di attività \ - pianificato per il computer è terminato +SimpleScheduledRetentionStrategy.FinishedUpTime=Il tempo di attività \ + pianificato per il computer è terminato SlaveComputer.DisconnectedBy=Disconnesso da {0}{1} diff --git a/core/src/main/resources/hudson/slaves/Messages_ja.properties b/core/src/main/resources/hudson/slaves/Messages_ja.properties index 889f2793d7c8..9f535c6a119f 100644 --- a/core/src/main/resources/hudson/slaves/Messages_ja.properties +++ b/core/src/main/resources/hudson/slaves/Messages_ja.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -RetentionStrategy.Demand.OfflineIdle=\u30b3\u30f3\u30d4\u30e5\u30fc\u30bf\u304c\u5f85\u6a5f\u4e2d\u306a\u306e\u3067\u30aa\u30d5\u30e9\u30a4\u30f3\u3067\u3059\u3002\u5fc5\u8981\u306b\u306a\u3063\u305f\u3089\u518d\u3073\u8d77\u52d5\u3057\u307e\u3059\u3002 -ConnectionActivityMonitor.OfflineCause=\u4f55\u5ea6\u3082ping\u304c\u5931\u6557\u3057\u307e\u3057\u305f\u3002 +RetentionStrategy.Demand.OfflineIdle=コンピュータãŒå¾…機中ãªã®ã§ã‚ªãƒ•ãƒ©ã‚¤ãƒ³ã§ã™ã€‚å¿…è¦ã«ãªã£ãŸã‚‰å†ã³èµ·å‹•ã—ã¾ã™ã€‚ +ConnectionActivityMonitor.OfflineCause=何度もpingãŒå¤±æ•—ã—ã¾ã—ãŸã€‚ NodeProvisioner.EmptyString= -SimpleScheduledRetentionStrategy.FinishedUpTime=\u30b3\u30f3\u30d4\u30e5\u30fc\u30bf\u306e\u52d5\u4f5c\u53ef\u80fd\u6642\u9593\u304c\u7d42\u4e86\u3057\u307e\u3057\u305f\u3002 -EnvironmentVariablesNodeProperty.displayName=\u74b0\u5883\u5909\u6570 -SlaveComputer.DisconnectedBy={0}\u304c\u30aa\u30d5\u30e9\u30a4\u30f3\u306b\u3057\u3066\u3044\u307e\u3059\u3002{1} -NodeDescripter.CheckName.Mandatory=\u30ce\u30fc\u30c9\u540d\u306f\u5fc5\u9808\u3067\u3059\u3002 -ComputerLauncher.NoJavaFound=Java\u306e\u30d0\u30fc\u30b8\u30e7\u30f3 {0} \u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u304c\u30011.5\u4ee5\u964d\u304c\u5fc5\u8981\u3067\u3059\u3002 -ComputerLauncher.JavaVersionResult={0} -version \u306e\u623b\u308a\u5024\u306f {1}\u3067\u3059\u3002 -ComputerLauncher.UknownJavaVersion={0} \u306eJava\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4e0d\u660e\u3067\u3059\u3002 +SimpleScheduledRetentionStrategy.FinishedUpTime=コンピュータã®å‹•ä½œå¯èƒ½æ™‚é–“ãŒçµ‚了ã—ã¾ã—ãŸã€‚ +EnvironmentVariablesNodeProperty.displayName=環境変数 +SlaveComputer.DisconnectedBy={0}ãŒã‚ªãƒ•ãƒ©ã‚¤ãƒ³ã«ã—ã¦ã„ã¾ã™ã€‚{1} +NodeDescripter.CheckName.Mandatory=ノードåã¯å¿…é ˆã§ã™ã€‚ +ComputerLauncher.NoJavaFound=Javaã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ {0} ãŒè¦‹ã¤ã‹ã‚Šã¾ã—ãŸãŒã€1.5以é™ãŒå¿…è¦ã§ã™ã€‚ +ComputerLauncher.JavaVersionResult={0} -version ã®æˆ»ã‚Šå€¤ã¯ {1}ã§ã™ã€‚ +ComputerLauncher.UknownJavaVersion={0} ã®Javaãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒä¸æ˜Žã§ã™ã€‚ diff --git a/core/src/main/resources/hudson/slaves/Messages_pl.properties b/core/src/main/resources/hudson/slaves/Messages_pl.properties index b07fbb56e219..535f642e734e 100644 --- a/core/src/main/resources/hudson/slaves/Messages_pl.properties +++ b/core/src/main/resources/hudson/slaves/Messages_pl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. # Environment variables -EnvironmentVariablesNodeProperty.displayName=Zmienne \u015Brodowiskowe -DumbSlave.displayName=Sta\u0142y Agent +EnvironmentVariablesNodeProperty.displayName=Zmienne Å›rodowiskowe +DumbSlave.displayName=StaÅ‚y Agent diff --git a/core/src/main/resources/hudson/slaves/Messages_pt_BR.properties b/core/src/main/resources/hudson/slaves/Messages_pt_BR.properties index e95d12197de6..51f906814edb 100644 --- a/core/src/main/resources/hudson/slaves/Messages_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/Messages_pt_BR.properties @@ -20,23 +20,23 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -RetentionStrategy.Demand.OfflineIdle=Fora de servi\u00E7o porque o computador estava ocioso; ser\u00E1 relan\u00E7ado quando necess\u00E1rio. +RetentionStrategy.Demand.OfflineIdle=Fora de serviço porque o computador estava ocioso; será relançado quando necessário. ConnectionActivityMonitor.OfflineCause=Repetidos comandos PING falharam SlaveComputer.DisconnectedBy=Desconectado por {0}{1} SimpleScheduledRetentionStrategy.FinishedUpTime=O computador terminou o seu tempo de atividade programada -EnvironmentVariablesNodeProperty.displayName=Vari\u00E1veis de ambiente -ComputerLauncher.NoJavaFound=A vers\u00E3o {0} do Java foi encontrada, mas a vers\u00E3o 1.6 ou mais nova \u00E9 necess\u00E1ria. +EnvironmentVariablesNodeProperty.displayName=Variáveis de ambiente +ComputerLauncher.NoJavaFound=A versão {0} do Java foi encontrada, mas a versão 1.6 ou mais nova é necessária. ComputerLauncher.JavaVersionResult={0} -version retornou {1}. -OfflineCause.connection_was_broken_=A conex\u00E3o foi interrompida: {0} -ComputerLauncher.abortedLaunch=O processo de lan\u00E7amento do agente foi abortado. +OfflineCause.connection_was_broken_=A conexão foi interrompida: {0} +ComputerLauncher.abortedLaunch=O processo de lançamento do agente foi abortado. NodeProvisioner.EmptyString=NodeProvisioner.EmptyString -ComputerLauncher.UnknownJavaVersion=N\u00E3o foi poss\u00EDvel definir a vers\u00E3o do Java {0} -RetentionStrategy.Demand.displayName=Ative este agente sob demanda e coloque-o fora de servi\u00E7o quando inativo -NodeDescriptor.CheckName.Mandatory=O nome \u00E9 mandat\u00F3rio +ComputerLauncher.UnknownJavaVersion=Não foi possível definir a versão do Java {0} +RetentionStrategy.Demand.displayName=Ative este agente sob demanda e coloque-o fora de serviço quando inativo +NodeDescriptor.CheckName.Mandatory=O nome é mandatório SimpleScheduledRetentionStrategy.displayName=Ative este agente de acordo com um agendamento -OfflineCause.LaunchFailed=O agente est\u00E1 fora de servi\u00E7o porque o Jenkins falhou ao tentar lan\u00E7ar um processo de agente. -ComputerLauncher.unexpectedError=Ocorreu um erro inesperado ao lan\u00E7ar um agente. Isto \u00E9 provavelmente um bug no Jenkins. +OfflineCause.LaunchFailed=O agente está fora de serviço porque o Jenkins falhou ao tentar lançar um processo de agente. +ComputerLauncher.unexpectedError=Ocorreu um erro inesperado ao lançar um agente. Isto é provavelmente um bug no Jenkins. DumbSlave.displayName=Agente permanente -RetentionStrategy.Always.displayName=Mantenha este agente em servi\u00E7o o m\u00E1ximo poss\u00EDvel -JNLPLauncher.displayName=Lan\u00E7ar um agente conectando-o ao controlador -Cloud.ProvisionPermission.Description=Provisionar novos n\u00F3s +RetentionStrategy.Always.displayName=Mantenha este agente em serviço o máximo possível +JNLPLauncher.displayName=Lançar um agente conectando-o ao controlador +Cloud.ProvisionPermission.Description=Provisionar novos nós diff --git a/core/src/main/resources/hudson/slaves/Messages_sr.properties b/core/src/main/resources/hudson/slaves/Messages_sr.properties index 71e7c2b93bea..1bf649548440 100644 --- a/core/src/main/resources/hudson/slaves/Messages_sr.properties +++ b/core/src/main/resources/hudson/slaves/Messages_sr.properties @@ -1,22 +1,22 @@ # This file is under the MIT License by authors -RetentionStrategy.Always.displayName=\u0414\u0440\u0436\u0438 \u043E\u0432\u043E\u0433 \u0430\u0433\u0435\u043D\u0442\u0430 \u043F\u043E\u0432\u0435\u0437\u0430\u043D\u043E\u0433 \u043A\u043E\u043B\u0438\u043A\u043E \u0433\u043E\u0434 \u043C\u043E\u0433\u0443\u045B\u0435 -RetentionStrategy.Demand.displayName=\u041F\u043E\u0432\u0435\u0436\u0438 \u043E\u0432\u043E\u0433 \u0430\u0433\u0435\u043D\u0442\u0430 \u043A\u0430\u0434\u0430 \u0431\u0443\u0434\u0435 \u0431\u0438\u043B\u043E \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E, \u0430 \u043F\u0440\u0435\u043A\u0438\u043D\u0438 \u0432\u0435\u0437\u0443 \u043A\u0430\u0434\u0430 \u0437\u0430\u0441\u0442\u043E\u0458\u0438. -RetentionStrategy.Demand.OfflineIdle=\u041D\u0438\u0458\u0435 \u043F\u043E\u0432\u0435\u0437\u0430\u043D\u043E, \u0458\u0435\u0440 \u0458\u0435 \u043C\u0430\u0448\u0438\u043D\u0430 \u0437\u0430\u0441\u0442\u043E\u0458\u0430\u043D\u0430. \u0411\u0438\u045B\u0435 \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u0442 \u043A\u0430\u0434\u0430 \u0431\u0443\u0434\u0435 \u0431\u0438\u043B\u043E \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E. -JNLPLauncher.displayName=\u041F\u043E\u043A\u0440\u0435\u043D\u0438 \u0430\u0433\u0435\u043D\u0442\u0430 \u0441\u0430 Java Web Start -ComputerLauncher.unexpectedError=\u041D\u0435\u043E\u0447\u0435\u043A\u0438\u0432\u0430\u043D\u0430 \u0433\u0440\u0435\u0448\u043A\u0430 \u043F\u0440\u0438\u043B\u0438\u043A\u043E\u043C \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0435 \u0430\u0433\u0435\u043D\u0442\u0430. \u041E\u0432\u043E \u0458\u0435 \u0432\u0435\u0440\u043E\u0432\u0430\u0442\u043D\u043E \u0433\u0440\u0435\u0448\u043A\u0430 \u0443 Jenkins. -ComputerLauncher.abortedLaunch=\u041F\u0440\u043E\u0446\u0435\u0441 \u0437\u0430 \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0435 \u0430\u0433\u0435\u043D\u0442\u0430 \u0458\u0435 \u043F\u0440\u0435\u043A\u0438\u043D\u0443\u0442. -ConnectionActivityMonitor.OfflineCause=\u041F\u043E\u043D\u043E\u0432\u0459\u0435\u043D\u0438 \u043F\u043E\u043A\u0443\u0448\u0430\u0458\u0438 \u0434\u0430 \u0441\u0435 \u0441\u0442\u0443\u043F\u0438 \u043A\u043E\u043D\u0442\u0430\u043A\u0442 \u043F\u0440\u0435\u043A\u043E \u043A\u043E\u043C\u0430\u043D\u0434\u0435 "ping" \u0441\u0443 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0438. -DumbSlave.displayName=\u0421\u0442\u0430\u043B\u043D\u0438 \u0430\u0433\u0435\u043D\u0442 +RetentionStrategy.Always.displayName=Држи овог агента повезаног колико год могуће +RetentionStrategy.Demand.displayName=Повежи овог агента када буде било потребно, а прекини везу када заÑтоји. +RetentionStrategy.Demand.OfflineIdle=Ðије повезано, јер је машина заÑтојана. Биће покренут када буде било потребно. +JNLPLauncher.displayName=Покрени агента Ñа Java Web Start +ComputerLauncher.unexpectedError=Ðеочекивана грешка приликом покретање агента. Ово је вероватно грешка у Jenkins. +ComputerLauncher.abortedLaunch=ÐŸÑ€Ð¾Ñ†ÐµÑ Ð·Ð° покретање агента је прекинут. +ConnectionActivityMonitor.OfflineCause=Поновљени покушаји да Ñе Ñтупи контакт преко команде "ping" Ñу неуÑпешни. +DumbSlave.displayName=Стални агент NodeProvisioner.EmptyString= -OfflineCause.LaunchFailed=\u0410\u0433\u0435\u043D\u0442 \u043D\u0438\u0458\u0435 \u043F\u0440\u0438\u043A\u0459\u0443\u0447\u0435\u043D \u0458\u0435\u0440 Jenkins \u043D\u0438\u0458\u0435 \u0443\u0441\u043F\u0435\u043E \u0434\u0430 \u043F\u043E\u043A\u0440\u0435\u043D\u0435 \u043F\u0440\u043E\u0446\u0435\u0441 \u043D\u0430 \u045A\u0435\u0433\u0430. -OfflineCause.connection_was_broken_=\u0412\u0435\u0437\u0430 \u0458\u0435 \u043F\u0440\u0435\u043A\u0438\u043D\u0443\u0442\u0430: {0} -SimpleScheduledRetentionStrategy.FinishedUpTime=\u041C\u0430\u0448\u0438\u043D\u0430 \u0458\u0435 \u0437\u0430\u0432\u0440\u0448\u0438\u043B\u0430 \u043F\u043B\u0430\u043D\u0438\u0440\u0430\u043D\u043E \u0432\u0440\u0435\u043C\u0435 \u0440\u0430\u0434\u0430 -SimpleScheduledRetentionStrategy.displayName=\u041F\u043E\u0432\u0435\u0436\u0438 \u0430\u0433\u0435\u043D\u0442\u0430 \u043F\u0440\u0435\u043C\u0430 \u0440\u0430\u0441\u043F\u043E\u0440\u0435\u0434\u0443 -EnvironmentVariablesNodeProperty.displayName=\u0413\u043B\u043E\u0431\u0430\u043B\u043D\u0430 \u043F\u0440\u043E\u043C\u0435\u043D\u0459\u0438\u0432\u0430 -SlaveComputer.DisconnectedBy=\u041F\u0440\u0435\u043A\u0438\u043D\u0443\u0442\u0430 \u0432\u0435\u0437\u0430 \u043E\u0434 \u0441\u0442\u0440\u0430\u043D\u0435 {0}{1} -NodeDescripter.CheckName.Mandatory=\u0418\u043C\u0435 \u0458\u0435 \u043E\u0431\u0430\u0432\u0435\u0437\u043D\u043E -ComputerLauncher.NoJavaFound=\u041F\u0440\u043E\u043D\u0430\u0452\u0435\u043D\u043E \u0458\u0435 Java \u0432\u0435\u0440\u0437\u0438\u0458\u0430 {0}, \u043C\u0435\u0452\u0443\u0442\u0438\u043C \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E \u0458\u0435 \u0432\u0435\u0440\u0437\u0438\u0458\u0430 1.6. -ComputerLauncher.JavaVersionResult=\u041A\u043E\u043C\u0430\u043D\u0434\u0430 {0} -version \u0458\u0435 \u0432\u0440\u0430\u0442\u0438\u043B\u043E {1}. -ComputerLauncher.UknownJavaVersion=\u041D\u0438\u0458\u0435 \u043C\u043E\u0433\u0443\u045B\u0435 \u043E\u0434\u0440\u0435\u0434\u0438\u0438\u0442\u0438 Java \u0432\u0435\u0440\u0437\u0438\u0458\u0443 {0} -Cloud.ProvisionPermission.Description=\u041E\u0434\u0440\u0435\u0434\u0438 \u043D\u043E\u0432\u0435 \u043C\u0430\u0448\u0438\u043D\u0435 +OfflineCause.LaunchFailed=Ðгент није прикључен јер Jenkins није уÑпео да покрене Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð½Ð° њега. +OfflineCause.connection_was_broken_=Веза је прекинута: {0} +SimpleScheduledRetentionStrategy.FinishedUpTime=Машина је завршила планирано време рада +SimpleScheduledRetentionStrategy.displayName=Повежи агента према раÑпореду +EnvironmentVariablesNodeProperty.displayName=Глобална променљива +SlaveComputer.DisconnectedBy=Прекинута веза од Ñтране {0}{1} +NodeDescripter.CheckName.Mandatory=Име је обавезно +ComputerLauncher.NoJavaFound=Пронађено је Java верзија {0}, међутим потребно је верзија 1.6. +ComputerLauncher.JavaVersionResult=Команда {0} -version је вратило {1}. +ComputerLauncher.UknownJavaVersion=Ðије могуће одредиити Java верзију {0} +Cloud.ProvisionPermission.Description=Одреди нове машине diff --git a/core/src/main/resources/hudson/slaves/Messages_zh_TW.properties b/core/src/main/resources/hudson/slaves/Messages_zh_TW.properties index eff7e9df82a0..be992a5cced9 100644 --- a/core/src/main/resources/hudson/slaves/Messages_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/Messages_zh_TW.properties @@ -21,19 +21,19 @@ # THE SOFTWARE. -ComputerLauncher.JavaVersionResult={0} -version \u56de\u50b3 {1}\u3002 -ComputerLauncher.NoJavaFound=\u627e\u5230 Java {0} \u7248\uff0c\u4e0d\u904e\u6211\u5011\u8981\u7684\u662f 1.5 \u6216\u66f4\u65b0\u7684\u7248\u672c\u3002 -ComputerLauncher.UknownJavaVersion=\u4e0d\u77e5\u9053 {0} \u7684 Java \u7248\u672c +ComputerLauncher.JavaVersionResult={0} -version 回傳 {1}。 +ComputerLauncher.NoJavaFound=找到 Java {0} 版,ä¸éŽæˆ‘們è¦çš„是 1.5 或更新的版本。 +ComputerLauncher.UknownJavaVersion=ä¸çŸ¥é“ {0} çš„ Java 版本 -ConnectionActivityMonitor.OfflineCause=\u91cd\u8907 Ping \u5931\u6557 +ConnectionActivityMonitor.OfflineCause=é‡è¤‡ Ping 失敗 -EnvironmentVariablesNodeProperty.displayName=\u74b0\u5883\u8b8a\u6578 -NodeDescripter.CheckName.Mandatory=\u4e00\u5b9a\u8981\u8f38\u5165\u540d\u7a31 +EnvironmentVariablesNodeProperty.displayName=環境變數 +NodeDescripter.CheckName.Mandatory=一定è¦è¼¸å…¥å稱 -RetentionStrategy.Demand.OfflineIdle=\u96fb\u8166\u9592\u7f6e\u96e2\u7dda\uff0c\u9700\u8981\u6642\u624d\u6703\u88ab\u555f\u52d5\u3002 +RetentionStrategy.Demand.OfflineIdle=電腦閒置離線,需è¦æ™‚æ‰æœƒè¢«å•Ÿå‹•ã€‚ -SimpleScheduledRetentionStrategy.FinishedUpTime=\u96fb\u8166\u5df2\u7d93\u505a\u6eff\u4e86\u6392\u5b9a\u7684\u4e0a\u7dda\u6642\u9593 +SimpleScheduledRetentionStrategy.FinishedUpTime=電腦已經åšæ»¿äº†æŽ’定的上線時間 -SlaveComputer.DisconnectedBy=\u7531 {0} \u4e2d\u65b7\u9023\u7dda{1} +SlaveComputer.DisconnectedBy=ç”± {0} 中斷連線{1} diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_bg.properties b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_bg.properties index 24c58e08d7ba..0fab14658561 100644 --- a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_bg.properties +++ b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Connection\ was\ broken=\ - \u0412\u0440\u044a\u0437\u043a\u0430\u0442\u0430 \u043f\u0440\u0435\u043a\u044a\u0441\u043d\u0430 + Връзката прекъÑна diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_es.properties b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_es.properties index 368d784caa89..2a88e8443b61 100644 --- a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_es.properties +++ b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Connection\ was\ broken=La conexión se ha cortado +Connection\ was\ broken=La conexión se ha cortado diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_fr.properties b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_fr.properties index 1cd4315ee6e5..996126807bf6 100644 --- a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_fr.properties +++ b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_fr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Connection\ was\ broken=La connection est cass\u00E9e +Connection\ was\ broken=La connection est cassée diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_it.properties b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_it.properties index 1f4473a1b41f..7cc00685886f 100644 --- a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_it.properties +++ b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,4 +21,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Connection\ was\ broken=La connessione è stata interrotta +Connection\ was\ broken=La connessione è stata interrotta diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_ja.properties b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_ja.properties index f20c73da939a..d6aae99e1d11 100644 --- a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_ja.properties +++ b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Connection\ was\ broken=\u30B3\u30CD\u30AF\u30B7\u30E7\u30F3\u304C\u5207\u65AD\u3055\u308C\u307E\u3057\u305F\u3002 +Connection\ was\ broken=コãƒã‚¯ã‚·ãƒ§ãƒ³ãŒåˆ‡æ–­ã•ã‚Œã¾ã—ãŸã€‚ diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_lv.properties b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_lv.properties index f7105ff219cd..dffd2677c916 100644 --- a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_lv.properties +++ b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Connection\ was\ broken=Savienojums tika p\u0101rtraukts +Connection\ was\ broken=Savienojums tika pÄrtraukts diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_pt_BR.properties b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_pt_BR.properties index 3cd1576f3c33..db36ee919704 100644 --- a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Connection\ was\ broken=A conex\u00e3o foi interrompida +Connection\ was\ broken=A conexão foi interrompida diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_ru.properties b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_ru.properties index 30a59b37ab8e..37c5634f8a6f 100644 --- a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_ru.properties +++ b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Connection\ was\ broken=\u0421\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u0435 \u0431\u044B\u043B\u043E \u0440\u0430\u0437\u043E\u0440\u0432\u0430\u043D\u043E +Connection\ was\ broken=Соединение было разорвано diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_sr.properties b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_sr.properties index c90bb813262f..c9a7d0d9f626 100644 --- a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_sr.properties +++ b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Connection\ was\ broken=\u0412\u0435\u0437\u0430 \u0458\u0435 \u043F\u0440\u0435\u043A\u0438\u043D\u0443\u0442\u0430 +Connection\ was\ broken=Веза је прекинута diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_zh_TW.properties b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_zh_TW.properties index 1876b15b2f1c..f7474733c322 100644 --- a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Connection\ was\ broken=\u9023\u7dda\u4e2d\u65b7 +Connection\ was\ broken=連線中斷 diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_bg.properties b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_bg.properties index ccdd23736684..6756dfc2cbcf 100644 --- a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_bg.properties +++ b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. See\ log\ for\ more\ details=\ - \u0417\u0430 \u043f\u043e\u0432\u0435\u0447\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u0439\u0442\u0435 \u0436\u0443\u0440\u043d\u0430\u043b\u0430 + За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¿Ñ€ÐµÐ³Ð»ÐµÐ´Ð°Ð¹Ñ‚Ðµ журнала diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_fr.properties b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_fr.properties index 3e706a275f78..6faaa64d9742 100644 --- a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_fr.properties +++ b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -See\ log\ for\ more\ details=Voir les logs pour plus de d\u00E9tails +See\ log\ for\ more\ details=Voir les logs pour plus de détails diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_it.properties b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_it.properties index df3bc72a8f5c..076276af77b0 100644 --- a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_it.properties +++ b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_ja.properties b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_ja.properties index d13492bc139d..2ce4fa2ec61a 100644 --- a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_ja.properties +++ b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -See\ log\ for\ more\ details=\u8A73\u7D30\u306F\u30ED\u30B0\u3092\u53C2\u7167 +See\ log\ for\ more\ details=詳細ã¯ãƒ­ã‚°ã‚’å‚ç…§ diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_lv.properties b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_lv.properties index ff254e8a2f5f..7872a3ce8d67 100644 --- a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_lv.properties +++ b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -See\ log\ for\ more\ details=Skat\u012Bt \u017Eurn\u0101lu detaliz\u0113tai inform\u0101cijai +See\ log\ for\ more\ details=SkatÄ«t žurnÄlu detalizÄ“tai informÄcijai diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_sr.properties b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_sr.properties index 5095bc44ec1b..51c01d0480c1 100644 --- a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_sr.properties +++ b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -See\ log\ for\ more\ details=\u041F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 \u0436\u0443\u0440\u043D\u0430\u043B \u0437\u0430 \u0432\u0438\u0448\u0435 \u0434\u0435\u0442\u0430\u0459\u0430 +See\ log\ for\ more\ details=Прегледајте журнал за више детаља diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_zh_TW.properties b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_zh_TW.properties index 2069af8c190c..784fbc4d3f62 100644 --- a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -See\ log\ for\ more\ details=\u5F9E\u65E5\u8A8C\u88E1\u53EF\u4EE5\u770B\u5230\u8A73\u7D30\u8CC7\u6599 +See\ log\ for\ more\ details=從日誌裡å¯ä»¥çœ‹åˆ°è©³ç´°è³‡æ–™ diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_bg.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_bg.properties index fe0178f341ae..7aa5d91f7c83 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_bg.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_bg.properties @@ -1,4 +1,4 @@ blurb=\ - \u0412 \u0442\u043E\u0437\u0438 \u0440\u0435\u0436\u0438\u043C Jenkins \u0434\u044A\u0440\u0436\u0438 \u0430\u0433\u0435\u043D\u0442\u0430 \u0432\u044A\u0437\u043C\u043E\u0436\u043D\u043E \u043D\u0430\u0439-\u0434\u044A\u043B\u0433\u043E \u0432\u0440\u0435\u043C\u0435 \u043D\u0430 \u043B\u0438\u043D\u0438\u044F.
    \ - \u0410\u043A\u043E \u0430\u0433\u0435\u043D\u0442\u044A\u0442 \u0441\u0435 \u0438\u0437\u043A\u043B\u044E\u0447\u0438, \u043F\u0440\u0438\u043C\u0435\u0440\u043D\u043E \u043F\u043E\u0440\u0430\u0434\u0438 \u0432\u0440\u0435\u043C\u0435\u043D\u0435\u043D \u043C\u0440\u0435\u0436\u043E\u0432 \u043F\u0440\u043E\u0431\u043B\u0435\u043C, \ - Jenkins \u043F\u0435\u0440\u0438\u043E\u0434\u0438\u0447\u043D\u043E \u0449\u0435 \u043F\u0440\u043E\u0431\u0432\u0430 \u0434\u0430 \u0433\u043E \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430. + Ð’ този режим Jenkins държи агента възможно най-дълго време на линиÑ.
    \ + Ðко агентът Ñе изключи, примерно поради временен мрежов проблем, \ + Jenkins периодично ще пробва да го реÑтартира. diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_de.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_de.properties index d2703f743671..2586b39b7025 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_de.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_de.properties @@ -1,4 +1,4 @@ blurb=\ - Dies ist der Vorgabewert und die übliche Einstellung. In diesem Modus versucht Jenkins, den Agenten-Knoten online zu halten. \ - Falls Jenkins den Knoten ohne weiteres Zutun des Benutzers starten kann, wird Jenkins in regelmäßigen Abständen versuchen, \ - den Knoten neu zu starten, falls er nicht verfügbar ist. Jenkins wird den Knoten nie offline schalten. + Dies ist der Vorgabewert und die übliche Einstellung. In diesem Modus versucht Jenkins, den Agenten-Knoten online zu halten. \ + Falls Jenkins den Knoten ohne weiteres Zutun des Benutzers starten kann, wird Jenkins in regelmäßigen Abständen versuchen, \ + den Knoten neu zu starten, falls er nicht verfügbar ist. Jenkins wird den Knoten nie offline schalten. diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_fr.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_fr.properties index 7f26403872fb..0fde38bae453 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_fr.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_fr.properties @@ -1,5 +1,5 @@ blurb=\ - C'est la configuration par défaut et la plus classique. Dans ce mode, Jenkins fait des tests réguliers pour conserver l'agent \ + C'est la configuration par défaut et la plus classique. Dans ce mode, Jenkins fait des tests réguliers pour conserver l'agent \ actif.
    \ - Si Jenkins peut démarrer l'agent sans l'aide de l'utilisateur et que l'agent n'est pas disponible, \ - il tentera régulièrement de le relancer. Jenkins ne cherchera pas à le désactiver. + Si Jenkins peut démarrer l'agent sans l'aide de l'utilisateur et que l'agent n'est pas disponible, \ + il tentera régulièrement de le relancer. Jenkins ne cherchera pas à le désactiver. diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_it.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_it.properties index 497932bd92e9..dbd4dd226988 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_it.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_it.properties @@ -1,3 +1,3 @@ blurb=\ - In questa modalità Jenkins manterrà quest'agente in linea il più possibile.
    \ - Se l'agente va fuori linea, ad esempio per un problema di rete temporaneo, Jenkins tenterà periodicamente di riavviarlo. + In questa modalità Jenkins manterrà quest'agente in linea il più possibile.
    \ + Se l'agente va fuori linea, ad esempio per un problema di rete temporaneo, Jenkins tenterà periodicamente di riavviarlo. diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_ja.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_ja.properties index 8d179f221ad9..cecba651a65e 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_ja.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_ja.properties @@ -1,4 +1,4 @@ blurb=\ - \u3053\u308C\u306F\u30C7\u30D5\u30A9\u30EB\u30C8\u3067\u901A\u5E38\u306E\u8A2D\u5B9A\u3067\u3059\u3002 \u3053\u306E\u30E2\u30FC\u30C9\u3067\u306F\u3001Jenkins\u306F\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u6975\u529B\u30AA\u30F3\u30E9\u30A4\u30F3\u306E\u307E\u307E\u306B\u3057\u3088\u3046\u3068\u3057\u307E\u3059\u3002 \ - \u30E6\u30FC\u30B6\u30FC\u306E\u624B\u52A9\u3051\u306A\u3057\u306BJenkins\u304C\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u958B\u59CB\u3067\u304D\u308B\u306A\u3089\u3001\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u304C\u4F7F\u7528\u3067\u304D\u306A\u3044\u5834\u5408\u306B\u5B9A\u671F\u7684\u306B\u30EA\u30B9\u30BF\u30FC\u30C8\u3057\u3088\u3046\u3068\u3057\u307E\u3059\u3002 \ - Jenkins\u306F\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u30AA\u30D5\u30E9\u30A4\u30F3\u306B\u306F\u3057\u307E\u305B\u3093\u3002 + ã“ã‚Œã¯ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã§é€šå¸¸ã®è¨­å®šã§ã™ã€‚ ã“ã®ãƒ¢ãƒ¼ãƒ‰ã§ã¯ã€Jenkinsã¯ã‚¨ãƒ¼ã‚¸ã‚§ãƒ³ãƒˆã‚’極力オンラインã®ã¾ã¾ã«ã—よã†ã¨ã—ã¾ã™ã€‚ \ + ユーザーã®æ‰‹åŠ©ã‘ãªã—ã«JenkinsãŒã‚¨ãƒ¼ã‚¸ã‚§ãƒ³ãƒˆã‚’開始ã§ãã‚‹ãªã‚‰ã€ã‚¨ãƒ¼ã‚¸ã‚§ãƒ³ãƒˆãŒä½¿ç”¨ã§ããªã„å ´åˆã«å®šæœŸçš„ã«ãƒªã‚¹ã‚¿ãƒ¼ãƒˆã—よã†ã¨ã—ã¾ã™ã€‚ \ + Jenkinsã¯ã‚¨ãƒ¼ã‚¸ã‚§ãƒ³ãƒˆã‚’オフラインã«ã¯ã—ã¾ã›ã‚“。 diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_pt_BR.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_pt_BR.properties index 6e7f21a1a0c7..025951904bfc 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_pt_BR.properties @@ -20,5 +20,5 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Neste modo o Jenkins ir\u00E1 manter este agente ativo o m\u00E1ximo poss\u00EDvel.
    Se o agente ficar fora do ar devido a \ - uma falha de rede tempor\u00E1ria, por exemplo, o Jenkins tentar\u00E1 reiniciar ele periodicamente. +blurb=Neste modo o Jenkins irá manter este agente ativo o máximo possível.
    Se o agente ficar fora do ar devido a \ + uma falha de rede temporária, por exemplo, o Jenkins tentará reiniciar ele periodicamente. diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_zh_TW.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_zh_TW.properties index 54953036c91f..3621c4a22ce9 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Always/help_zh_TW.properties @@ -1,5 +1,5 @@ blurb=\ - \u9019\u662F\u9810\u8A2D\u503C\u4E5F\u662F\u6A19\u6E96\u8A2D\u5B9A\u3002 \ - \u6B64\u6A21\u5F0F\u4E0B\uFF0CJenkins \u6703\u76E1\u53EF\u4EE5\u8B93 Agent \u4E0A\u7DDA\u3002 \ - \u5982\u679C Jenkins \u53EF\u4EE5\u81EA\u5DF2\u555F\u52D5 Agent\uFF0C\u5728 Agent \u7121\u6CD5\u4F7F\u7528\u6642\u6703\u6BCF\u9694\u4E00\u6BB5\u6642\u9593\u8A66\u770B\u770B\u80FD\u4E0D\u80FD\u5C07\u5176\u91CD\u555F\u3002 \ - Jenkins \u4E0D\u6703\u4E3B\u52D5\u8B93 Agent \u96E2\u7DDA\u3002 + 這是é è¨­å€¼ä¹Ÿæ˜¯æ¨™æº–設定。 \ + 此模å¼ä¸‹ï¼ŒJenkins 會盡å¯ä»¥è®“ Agent 上線。 \ + 如果 Jenkins å¯ä»¥è‡ªå·²å•Ÿå‹• Agent,在 Agent 無法使用時會æ¯éš”一段時間試看看能ä¸èƒ½å°‡å…¶é‡å•Ÿã€‚ \ + Jenkins ä¸æœƒä¸»å‹•è®“ Agent 離線。 diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_bg.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_bg.properties index 8e8626be8ad3..71474ec5bb96 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_bg.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_bg.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. In\ demand\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=\ - \u0418\u0437\u0447\u0430\u043a\u0432\u0430\u043d\u0435\u0442\u043e \u043f\u0440\u0438 \u0437\u0430\u0435\u0442\u043e\u0441\u0442 \u0435 \u0437\u0430\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u0435\u043d \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u044a\u0440 \u2014 \u0447\u0438\u0441\u043b\u043e. + Изчакването при заетоÑÑ‚ е задължителен параметър — чиÑло. Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=\ - \u0418\u0437\u0447\u0430\u043a\u0432\u0430\u043d\u0435\u0442\u043e \u043f\u0440\u0438 \u0431\u0435\u0437\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0435 \u0437\u0430\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u0435\u043d \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u044a\u0440 \u2014 \u0447\u0438\u0441\u043b\u043e. + Изчакването при бездейÑтвие е задължителен параметър — чиÑло. Idle\ delay=\ - \u0418\u0437\u0447\u0430\u043a\u0432\u0430\u043d\u0435 \u043f\u0440\u0438 \u0431\u0435\u0437\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 + Изчакване при бездейÑтвие In\ demand\ delay=\ - \u0418\u0437\u0447\u0430\u043a\u0432\u0430\u043d\u0435 \u043f\u0440\u0438 \u0437\u0430\u0435\u0442\u043e\u0441\u0442 + Изчакване при заетоÑÑ‚ diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_da.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_da.properties index ddf65547a454..53bf9dba5291 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_da.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_da.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. In\ demand\ delay=Behov for -In\ demand\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=Behov for forsinkelse er obligatorisk og skal v\u00e6re et tal. -Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=Tomgangsforsinkelse er obligatorisk og skal v\u00e6re et tal. +In\ demand\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=Behov for forsinkelse er obligatorisk og skal være et tal. +Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=Tomgangsforsinkelse er obligatorisk og skal være et tal. Idle\ delay=Tomgangsforsinkelse diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_de.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_de.properties index feba060fc263..b8fa5b1d72d2 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_de.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_de.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -In\ demand\ delay=Anschaltverzögerung -In\ demand\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=Anschaltverzögerung muß angegeben werden und eine Zahl sein. -Idle\ delay=Abschaltverzögerung -Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=Abschaltverzögerung muß angegeben werden und eine Zahl sein. +In\ demand\ delay=Anschaltverzögerung +In\ demand\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=Anschaltverzögerung muß angegeben werden und eine Zahl sein. +Idle\ delay=Abschaltverzögerung +Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=Abschaltverzögerung muß angegeben werden und eine Zahl sein. diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_fr.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_fr.properties index 37cb3b1f3ad7..d823ce6bec4f 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_fr.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_fr.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -In\ demand\ delay=D\u00E9lai d''attente lors d''une demande -In\ demand\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=Le d\u00E9lai d''attente est obligatoire et doit \u00EAtre un nombre. -In\ demand\ delay\ is\ mandatory.=Le d\u00E9lai d''attente suite \u00E0 une demande est obligatoire. -Idle\ delay=D\u00E9lai d''inactivit\u00E9 -Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=Le d\u00E9lai d''inactivit\u00E9 est obligatoire et doit \u00EAtre un nombre. -Idle\ delay\ is\ mandatory.=Le d\u00E9lai d''inactivit\u00E9 est obligatoire. +In\ demand\ delay=Délai d''attente lors d''une demande +In\ demand\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=Le délai d''attente est obligatoire et doit être un nombre. +In\ demand\ delay\ is\ mandatory.=Le délai d''attente suite à une demande est obligatoire. +Idle\ delay=Délai d''inactivité +Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=Le délai d''inactivité est obligatoire et doit être un nombre. +Idle\ delay\ is\ mandatory.=Le délai d''inactivité est obligatoire. diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_it.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_it.properties index dcf2f7dcc58a..3b5abf9acfe1 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_it.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -23,7 +23,7 @@ Idle\ delay=Ritardo in attesa Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=Il valore "Ritardo in \ - attesa" è obbligatorio e dev''essere un numero. + attesa" è obbligatorio e dev''essere un numero. In\ demand\ delay=Ritardo in fase di richiesta In\ demand\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=Il valore \ - "Ritardo in fase di richiesta" è obbligatorio e dev''essere un numero. + "Ritardo in fase di richiesta" è obbligatorio e dev''essere un numero. diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_ja.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_ja.properties index e1f97515f1d9..c8bdced5db04 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_ja.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -In\ demand\ delay=\u8981\u6C42\u6642\u306E\u9045\u5EF6\u6642\u9593 -Idle\ delay=\u5F85\u6A5F\u6642\u306E\u9045\u5EF6\u6642\u9593 -In\ demand\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=\u8981\u6C42\u6642\u306E\u9045\u5EF6\u6642\u9593\u306F\u3001\u5FC5\u9808\u304B\u3064\u6570\u5024\u3067\u3059\u3002 -Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=\u5F85\u6A5F\u6642\u306E\u9045\u5EF6\u6642\u9593\u306F\u3001\u5FC5\u9808\u304B\u3064\u6570\u5024\u3067\u3059\u3002 +In\ demand\ delay=è¦æ±‚時ã®é…延時間 +Idle\ delay=待機時ã®é…延時間 +In\ demand\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=è¦æ±‚時ã®é…延時間ã¯ã€å¿…é ˆã‹ã¤æ•°å€¤ã§ã™ã€‚ +Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=待機時ã®é…延時間ã¯ã€å¿…é ˆã‹ã¤æ•°å€¤ã§ã™ã€‚ diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_lv.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_lv.properties index 8e6905db4c77..5010880d6a41 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_lv.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_lv.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=D\u012Bkst\u0101ves aizture ir oblig\u0101ta un t\u0101s v\u0113rt\u012Bbai ir j\u0101b\u016Bt skaitlim. +Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=DÄ«kstÄves aizture ir obligÄta un tÄs vÄ“rtÄ«bai ir jÄbÅ«t skaitlim. diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_pt_BR.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_pt_BR.properties index 1d915ff3421d..4de4b9e3523c 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_pt_BR.properties @@ -22,5 +22,5 @@ In\ demand\ delay=Atraso em demanda Idle\ delay=Atraso de inatividade -In\ demand\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=Atraso em demanda \u00e9 obrigat\u00f3rio e precisa ser um n\u00famero -Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=Atraso de inatividade \u00e9 obrigat\u00f3rio e precisa ser um n\u00famero +In\ demand\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=Atraso em demanda é obrigatório e precisa ser um número +Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=Atraso de inatividade é obrigatório e precisa ser um número diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_ru.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_ru.properties index 14d3b047ccb0..30238a101cb3 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_ru.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -In\ demand\ delay=\u0417\u0430\u0434\u0435\u0440\u0436\u043a\u0430 \u043f\u043e\u0441\u043b\u0435 \u043f\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u0437\u0430\u0434\u0430\u0447\u0438 -In\ demand\ delay\ is\ mandatory.=\u0417\u0430\u0434\u0435\u0440\u0436\u043a\u0430 \u043f\u043e\u0441\u043b\u0435 \u043f\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u0437\u0430\u0434\u0430\u0447\u0438 \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u043d\u0430. -Idle\ delay=\u0417\u0430\u0434\u0435\u0440\u0436\u043a\u0430 \u043f\u043e\u0441\u043b\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f -Idle\ delay\ is\ mandatory.=\u0417\u0430\u0434\u0435\u0440\u0436\u043a\u0430 \u043f\u043e\u0441\u043b\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u043d\u0430. +In\ demand\ delay=Задержка поÑле поÑтановки задачи +In\ demand\ delay\ is\ mandatory.=Задержка поÑле поÑтановки задачи должна быть указана. +Idle\ delay=Задержка поÑле Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¸Ñ +Idle\ delay\ is\ mandatory.=Задержка поÑле Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¸Ñ Ð´Ð¾Ð»Ð¶Ð½Ð° быть указана. diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_sr.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_sr.properties index 6e5107cd17cf..ca3961033e61 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_sr.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -In\ demand\ delay=\u041A\u0430\u0448\u045A\u0435\u045A\u0435 \u043D\u0430\u043A\u043E\u043D \u043F\u043E\u0441\u0442\u0430\u0432\u0459\u0430\u045A\u0430 \u0437\u0430\u0434\u0430\u0442\u043A\u0430 -In\ demand\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=\u041A\u0430\u0448\u045A\u0435\u045A\u0435 \u043D\u0430\u043A\u043E\u043D \u043F\u043E\u0441\u0442\u0430\u0432\u0459\u0430\u045A\u0430 \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0430 \u043C\u043E\u0440\u0430 \u0431\u0438\u0442\u0438 \u043D\u0430\u0432\u0435\u0434\u0435\u043D\u043E. -Idle\ delay=\u041A\u0430\u0448\u045A\u0435\u045A\u0435 \u043D\u0430\u043A\u043E\u043D \u0437\u0430\u0432\u0440\u0448\u0435\u0442\u043A\u0430 -Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=\u041A\u0430\u0448\u045A\u0435\u045A\u0435 \u043D\u0430\u043A\u043E\u043D \u0437\u0430\u0432\u0440\u0448\u0435\u0442\u043A\u0430 \u043C\u043E\u0440\u0430 \u0431\u0438\u0442\u0438 \u043D\u0430\u0432\u0435\u0434\u0435\u043D\u043E. +In\ demand\ delay=Кашњење након поÑтављања задатка +In\ demand\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=Кашњење након поÑтављања задатака мора бити наведено. +Idle\ delay=Кашњење након завршетка +Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=Кашњење након завршетка мора бити наведено. diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_sv_SE.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_sv_SE.properties index 44dacdf2ada1..d100bdfac5d2 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_sv_SE.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_sv_SE.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Idle\ delay=Inatkivf\u00F6rdr\u00F6jning -Idle\ delay\ is\ mandatory.=F\u00F6rdr\u00F6jning \u00E4r obligatoriskt -In\ demand\ delay=Efterfr\u00E5gningsf\u00F6rdr\u00F6jning -In\ demand\ delay\ is\ mandatory.=F\u00F6rdr\u00F6jning \u00E4r obligatoriskt +Idle\ delay=Inatkivfördröjning +Idle\ delay\ is\ mandatory.=Fördröjning är obligatoriskt +In\ demand\ delay=EfterfrÃ¥gningsfördröjning +In\ demand\ delay\ is\ mandatory.=Fördröjning är obligatoriskt diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_zh_TW.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_zh_TW.properties index 21e88606dddc..4a2a79f4c7e5 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_zh_TW.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -In\ demand\ delay=\u9700\u8981\u6642\u555F\u52D5\u5EF6\u9072 -In\ demand\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=\u9700\u8981\u6642\u555F\u52D5\u5EF6\u9072\u4E00\u5B9A\u8981\u8F38\u5165\u6578\u5B57\u3002 -Idle\ delay=\u9592\u7F6E\u5F8C\u95DC\u9589\u5EF6\u9072 -Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=\u9592\u7F6E\u5F8C\u95DC\u9589\u5EF6\u9072\u4E00\u5B9A\u8981\u8F38\u5165\u6578\u5B57\u3002 +In\ demand\ delay=需è¦æ™‚å•Ÿå‹•å»¶é² +In\ demand\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=需è¦æ™‚啟動延é²ä¸€å®šè¦è¼¸å…¥æ•¸å­—。 +Idle\ delay=é–’ç½®å¾Œé—œé–‰å»¶é² +Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=閒置後關閉延é²ä¸€å®šè¦è¼¸å…¥æ•¸å­—。 diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_bg.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_bg.properties index 804d29cbdf6d..e5702b877b3b 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_bg.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_bg.properties @@ -1,15 +1,15 @@ blurb=\ - \u0412 \u0442\u043E\u0437\u0438 \u0440\u0435\u0436\u0438\u043C Jenkins \u0432\u043A\u043B\u044E\u0447\u0432\u0430 \u0430\u0433\u0435\u043D\u0442\u0430 \u0432 \u0441\u043B\u0443\u0447\u0430\u0439 \u043D\u0430 \u043D\u0443\u0436\u0434\u0430 \u2014 \u0438\u043C\u0430 \u0447\u0430\u043A\u0430\u0449\u0438 \ - \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043D\u0438\u044F \u0432 \u043E\u043F\u0430\u0448\u043A\u0430\u0442\u0430, \u043A\u043E\u0438\u0442\u043E \u043E\u0442\u0433\u043E\u0432\u0430\u0440\u044F\u0442 \u043D\u0430 \u0441\u043B\u0435\u0434\u043D\u0438\u0442\u0435 \u0438\u0437\u0438\u0441\u043A\u0432\u0430\u043D\u0438\u044F: \ + Ð’ този режим Jenkins включва агента в Ñлучай на нужда — има чакащи \ + Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ Ð² опашката, които отговарÑÑ‚ на Ñледните изиÑкваниÑ: \
      \ -
    • \u0427\u0430\u043A\u0430\u043B\u0438 \u0441\u0430 \u0432 \u043E\u043F\u0430\u0448\u043A\u0430\u0442\u0430 \u043F\u043E\u043D\u0435 \u0432\u0440\u0435\u043C\u0435\u0442\u043E \u0443\u043A\u0430\u0437\u0430\u043D\u043E \u0432 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430\u0442\u0430 \ - \u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u043D\u043E \u0432\u0440\u0435\u043C\u0435 \u0437\u0430 \u0447\u0430\u043A\u0430\u043D\u0435
    • \ -
    • \u041C\u043E\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043F\u044A\u043B\u043D\u044F\u0442 \u043D\u0430 \u0442\u043E\u0437\u0438 \u0430\u0433\u0435\u043D\u0442 (\u0442.\u0435. \u043E\u0442\u0433\u043E\u0432\u0430\u0440\u044F\u0442 \u043D\u0430 \u0438\u0437\u0440\u0430\u0437\u0430 \u0441 \ - \u0435\u0442\u0438\u043A\u0435\u0442\u0438\u0442\u0435)
    • \ +
    • Чакали Ñа в опашката поне времето указано в наÑтройката \ + МакÑимално време за чакане
    • \ +
    • Могат да Ñе изпълнÑÑ‚ на този агент (Ñ‚.е. отговарÑÑ‚ на израза Ñ \ + етикетите)
    • \
    \ - \u0410\u0433\u0435\u043D\u0442\u044A\u0442 \u0449\u0435 \u0431\u044A\u0434\u0435 \u0438\u0437\u043A\u043B\u044E\u0447\u0435\u043D, \u0430\u043A\u043E: \ + Ðгентът ще бъде изключен, ако: \
      \ -
    • \u041D\u044F\u043C\u0430 \u0442\u0435\u043A\u0443\u0449\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043D\u0438\u044F \u043D\u0430 \u043D\u0435\u0433\u043E
    • \ -
    • \u0410\u0433\u0435\u043D\u0442\u044A\u0442 \u0435 \u0431\u0435\u0437\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u043B \u043F\u043E\u043D\u0435 \u043F\u0435\u0440\u0438\u043E\u0434\u0430, \u0443\u043A\u0430\u0437\u0430\u043D \u0432 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430\u0442\u0430 \ - \u041F\u043E\u0437\u0432\u043E\u043B\u0435\u043D\u043E \u0431\u0435\u0437\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435
    • \ +
    • ÐÑма текущи Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ Ð½Ð° него
    • \ +
    • Ðгентът е бездейÑтвал поне периода, указан в наÑтройката \ + Позволено бездейÑтвие
    • \
    diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_de.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_de.properties index da43c67288e2..3810bb7330ee 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_de.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_de.properties @@ -1,12 +1,12 @@ blurb=\ - Falls Jenkins den Knoten ohne weiteres Zutun des Benutzers starten kann, wird Jenkins regelmäßig versuchen, \ - den Knoten neu zu starten, sobald geplante Jobs vorliegen, die folgende Kriterien erfüllen: \ + Falls Jenkins den Knoten ohne weiteres Zutun des Benutzers starten kann, wird Jenkins regelmäßig versuchen, \ + den Knoten neu zu starten, sobald geplante Jobs vorliegen, die folgende Kriterien erfüllen: \
      \ -
    • Die Jobs sind bereits länger als die angegebene Startzeit geplant.
    • \ -
    • Die Jobs können auf diesem Knoten ausgeführt werden.
    • \ +
    • Die Jobs sind bereits länger als die angegebene Startzeit geplant.
    • \ +
    • Die Jobs können auf diesem Knoten ausgeführt werden.
    • \
    \ Der Knoten wird wieder offline geschaltet sobald... \
      \ -
    • keine aktiven Jobs auf dem Knoten ausgeführt werden und
    • \ -
    • der Knoten länger als die Mindestruhezeit inaktiv war.
    • \ +
    • keine aktiven Jobs auf dem Knoten ausgeführt werden und
    • \ +
    • der Knoten länger als die Mindestruhezeit inaktiv war.
    • \
    diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_fr.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_fr.properties index 8e3b93234420..70ee49512579 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_fr.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_fr.properties @@ -1,12 +1,12 @@ blurb=\ - Dans ce mode, si Jenkins peut démarrer l'agent sans l'aide de l'utilisateur, il cherchera régulièrement \ - à l'activer tant qu'il y aura des jobs en attente respectant les critères suivants : \ + Dans ce mode, si Jenkins peut démarrer l'agent sans l'aide de l'utilisateur, il cherchera régulièrement \ + à l'activer tant qu'il y aura des jobs en attente respectant les critères suivants : \
      \ -
    • Ils sont dans la file d'attente depuis au moins aussi longtemps que le Délai d'attente lors d'une demande spécifié
    • \ -
    • Ils peuvent s'exécuter sur cette machine
    • \ +
    • Ils sont dans la file d'attente depuis au moins aussi longtemps que le Délai d'attente lors d'une demande spécifié
    • \ +
    • Ils peuvent s'exécuter sur cette machine
    • \
    \ - L'agent sera désactivé si : \ + L'agent sera désactivé si : \
      \
    • Il n'y a plus de jobs en cours sur cet agent
    • \ -
    • L'agent a été inactif depuis au moins le Délai d'inactivité spécifié
    • \ +
    • L'agent a été inactif depuis au moins le Délai d'inactivité spécifié
    • \
    diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_it.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_it.properties index 092d672e92c8..8f869827950b 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_it.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_it.properties @@ -1,15 +1,15 @@ blurb=\ - In questa modalità Jenkins porrà quest'agente in linea se c'è richiesta, ossia se ci sono \ + In questa modalità Jenkins porrà quest'agente in linea se c'è richiesta, ossia se ci sono \ compilazioni in coda che soddisfano i seguenti criteri:\
      \
    • Sono rimaste in coda per un periodo di tempo pari almeno al \ Ritardo "richiesta" specificato
    • \
    • Possono essere eseguite da quest'agente (ad esempio \ - perché hanno un'espressione etichetta corrispondente)
    • \ + perché hanno un'espressione etichetta corrispondente) \
    \ - Quest'agente sarà posto non in linea se: \ + Quest'agente sarà posto non in linea se: \
      \
    • Non ci sono compilazioni attive in esecuzione su quest'agente
    • \ -
    • Quest'agente è rimasto inattivo per un periodo di tempo pari \ +
    • Quest'agente è rimasto inattivo per un periodo di tempo pari \ almeno al Ritardo "inattivo" specificato
    • \
    diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_ja.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_ja.properties index 8d19f4abee3e..e3a2e7b041ab 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_ja.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_ja.properties @@ -1,12 +1,12 @@ blurb=\ - \u3053\u306E\u30E2\u30FC\u30C9\u3067\u306F\u3001\u30E6\u30FC\u30B6\u30FC\u306E\u624B\u52A9\u3051\u306A\u3057\u306BJenkins\u304C\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u958B\u59CB\u3067\u304D\u308B\u306A\u3089\u3001 \ - \u6B21\u306E\u6761\u4EF6\u306B\u5408\u3046\u672A\u5B9F\u884C\u306E\u30B8\u30E7\u30D6\u304C\u3042\u308B\u9593\u306F\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u958B\u59CB\u3057\u3088\u3046\u3068\u3057\u307E\u3059\u3002 \ + ã“ã®ãƒ¢ãƒ¼ãƒ‰ã§ã¯ã€ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®æ‰‹åŠ©ã‘ãªã—ã«JenkinsãŒã‚¨ãƒ¼ã‚¸ã‚§ãƒ³ãƒˆã‚’開始ã§ãã‚‹ãªã‚‰ã€ \ + 次ã®æ¡ä»¶ã«åˆã†æœªå®Ÿè¡Œã®ã‚¸ãƒ§ãƒ–ãŒã‚ã‚‹é–“ã¯ã‚¨ãƒ¼ã‚¸ã‚§ãƒ³ãƒˆã‚’開始ã—よã†ã¨ã—ã¾ã™ã€‚ \
      \ -
    • \u5C11\u306A\u304F\u3068\u3082\u3042\u308B\u4E00\u5B9A\u306E\u8D77\u52D5\u8981\u6C42\u671F\u9593\u306B\u30AD\u30E5\u30FC\u306B\u3042\u308B
    • \ -
    • \u3053\u306E\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u4E0A\u3067\u5B9F\u884C\u53EF\u80FD
    • \ +
    • å°‘ãªãã¨ã‚‚ã‚る一定ã®èµ·å‹•è¦æ±‚期間ã«ã‚­ãƒ¥ãƒ¼ã«ã‚ã‚‹
    • \ +
    • ã“ã®ã‚¨ãƒ¼ã‚¸ã‚§ãƒ³ãƒˆä¸Šã§å®Ÿè¡Œå¯èƒ½
    • \
    \ - \u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u306F\u6B21\u306E\u5834\u5408\u30AA\u30D5\u30E9\u30A4\u30F3\u306B\u306A\u308A\u307E\u3059\u3002 \ + エージェントã¯æ¬¡ã®å ´åˆã‚ªãƒ•ãƒ©ã‚¤ãƒ³ã«ãªã‚Šã¾ã™ã€‚ \
      \ -
    • \u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u4E0A\u306B\u5B9F\u884C\u4E2D\u306E\u30B8\u30E7\u30D6\u304C\u5B58\u5728\u3057\u306A\u3044
    • \ -
    • \u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u304C\u5C11\u306A\u304F\u3068\u3082\u3042\u308B\u4E00\u5B9A\u306E\u671F\u9593\u5F85\u6A5F\u4E2D\u3067\u3042\u308B
    • \ +
    • エージェント上ã«å®Ÿè¡Œä¸­ã®ã‚¸ãƒ§ãƒ–ãŒå­˜åœ¨ã—ãªã„
    • \ +
    • エージェントãŒå°‘ãªãã¨ã‚‚ã‚る一定ã®æœŸé–“待機中ã§ã‚ã‚‹
    • \
    diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_pt_BR.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_pt_BR.properties index 4fd4bc549889..9dc1e22d7051 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/help_pt_BR.properties @@ -20,9 +20,9 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Neste modo o Jenkins ativar\u00E1 o agente se houver demanda, como por exemplo existirem constru\u00E7\u00F5es enfileiradas que \ - seguem os seguintes crit\u00E9rios:
    • Elas tem ficado na fila pelo menos durante o per\u00EDodo de tempo definido por \ - Atraso sob demanda
    • Elas podem ser executadas por este agente (em outras palavras, tem a express\u00E3o de \ - etiquetas corretas)
    Este agente ficar\u00E1 fora de servi\u00E7o se:
+installWizard_gettingStarted_title=Attività iniziali installWizard_goBack=Indietro installWizard_goInstall=Installa -installWizard_installComplete_banner=Jenkins è pronto! -installWizard_installComplete_bannerRestart=Jenkins è quasi pronto! +installWizard_installComplete_banner=Jenkins è pronto! +installWizard_installComplete_bannerRestart=Jenkins è quasi pronto! installWizard_installComplete_finishButtonLabel=Inizia ad utilizzare Jenkins installWizard_installComplete_installComplete_restartRequiredMessage=\ - L''installazione di Jenkins è stata completata, ma alcuni componenti \ + L''installazione di Jenkins è stata completata, ma alcuni componenti \ aggiuntivi richiedono il riavvio di Jenkins. installWizard_installComplete_installComplete_restartRequiredNotSupportedMessage=\ - L''installazione di Jenkins è stata completata, ma alcuni componenti \ + L''installazione di Jenkins è stata completata, ma alcuni componenti \ aggiuntivi richiedono il riavvio di Jenkins e sembra che quest''istanza non \ supporti il riavvio automatico. Riavviare manualmente l''istanza ora per \ completare l''installazione. -installWizard_installComplete_message=L''installazione di Jenkins è stata \ +installWizard_installComplete_message=L''installazione di Jenkins è stata \ completata. installWizard_installComplete_restartLabel=Riavvia -installWizard_installComplete_title=Attività iniziali +installWizard_installComplete_title=Attività iniziali installWizard_installCustom_dependenciesPrefix=Dipendenze installWizard_installCustom_selectAll=Tutti installWizard_installCustom_selected=Selezionati installWizard_installCustom_selectNone=Nessuno installWizard_installCustom_selectRecommended=Suggeriti -installWizard_installCustom_title=Attività iniziali +installWizard_installCustom_title=Attività iniziali installWizard_installIncomplete_banner=Riprendi installazione installWizard_installIncomplete_dependenciesLabel=Dipendenze -installWizard_installIncomplete_message=Jenkins è stato riavviato durante \ +installWizard_installIncomplete_message=Jenkins è stato riavviato durante \ l''installazione e sembra che alcuni componenti aggiuntivi non siano stati \ installati. installWizard_installIncomplete_resumeInstallationButtonLabel=Riprendi @@ -75,23 +75,23 @@ installWizard_installIncomplete_title=Riprendi installazione installWizard_installingConsole_dependencyIndicatorNote=** - dipendenza \ richiesta installWizard_installing_detailsLink=Dettagli... -installWizard_installing_title=Attività iniziali +installWizard_installing_title=Attività iniziali installWizard_jenkinsVersionTitle=Jenkins installWizard_offline_message=Sembra che quest''istanza di Jenkins non sia in \ linea.

Per ulteriori informazioni \ sull''installazione di Jenkins senza una connessione a Internet, si veda la \ \ - documentazione sull''installazione non in linea di Jenkins.

È \ + documentazione sull''installazione non in linea di Jenkins.

È \ possibile continuare se si configura un proxy o se si omette \ l''installazione dei componenti aggiuntivi.

installWizard_offline_title=Non in linea installWizard_pluginInstallFailure_message=L''installazione di alcuni \ - componenti aggiuntivi non è riuscita, è possibile riprovare ad installarli \ + componenti aggiuntivi non è riuscita, è possibile riprovare ad installarli \ o continuare senza installare tali componenti installWizard_pluginInstallFailure_title=Errori di installazione installWizard_pluginsInstalled_banner=Benvenuto in Jenkins {0}! installWizard_pluginsInstalled_message=L''installazione dei componenti \ - aggiuntivi è stata completata. + aggiuntivi è stata completata. installWizard_retry=Riprova installWizard_saveConfigureInstance=Salva e finisci installWizard_saveFirstUser=Salva e continua @@ -102,22 +102,22 @@ installWizard_skipPluginInstallations=Salta l''installazione dei componenti \ aggiuntivi installWizard_upgradeComplete_finishButtonLabel=Fine installWizard_upgradeComplete_message=Congratulazioni! L''aggiornamento a \ - Jenkins {0} è stato completato.

Per ulteriori informazioni sulle sue \ - nuove funzionalità, si visiti

Per ulteriori informazioni sulle sue \ + nuove funzionalità, si visiti il sito Web di Jenkins! installWizard_upgradeComplete_title=Aggiornamento installWizard_upgradePanel_banner=Benvenuto in Jenkins {0}! installWizard_upgradePanel_message=Jenkins {0} include delle nuove \ - funzionalità che pensiamo possano piacere; installare i seguenti componenti \ + funzionalità che pensiamo possano piacere; installare i seguenti componenti \ aggiuntivi per sfruttarle. installWizard_upgradePanel_skipRecommendedPlugins=No, grazie installWizard_upgradePanel_title=Aggiornamento -installWizard_upgradeSkipped_banner=Funzionalità non installate +installWizard_upgradeSkipped_banner=Funzionalità non installate installWizard_upgradeSkipped_message=

I componenti aggiuntivi consigliati non saranno installati.
\ -

È possibile anche installare nuove funzionalità \ +

È possibile anche installare nuove funzionalità \ dal Gestore componenti aggiuntivi se si cambia idea.

Scopri come queste nuove funzionalità possano migliorare \ + 0 4px">Scopri come queste nuove funzionalità possano migliorare \ l''esperienza con Jenkins \ visitandone il sito.

installWizard_upgradeSkipped_title=Aggiornamento @@ -125,13 +125,13 @@ installWizard_upgrading_title=Installazione componenti aggiuntivi in corso installWizard_websiteLinkLabel=Sito Web installWizard_welcomePanel_banner=Personalizza Jenkins installWizard_welcomePanel_customizeActionDetails=Selezionare e installare i \ - componenti aggiuntivi più adatti alle proprie esigenze. + componenti aggiuntivi più adatti alle proprie esigenze. installWizard_welcomePanel_customizeActionTitle=Selezionare i componenti \ aggiuntivi da installare installWizard_welcomePanel_message=I componenti aggiuntivi estendono Jenkins \ - con funzionalità aggiuntive per venire incontro alle esigenze più disparate. + con funzionalità aggiuntive per venire incontro alle esigenze più disparate. installWizard_welcomePanel_recommendedActionDetails=Installa i componenti \ - aggiuntivi ritenuti maggiormente utili dalla comunità di Jenkins. + aggiuntivi ritenuti maggiormente utili dalla comunità di Jenkins. installWizard_welcomePanel_recommendedActionTitle=Installa componenti \ aggiuntivi consigliati -installWizard_welcomePanel_title=Attività iniziali +installWizard_welcomePanel_title=Attività iniziali diff --git a/core/src/main/resources/jenkins/install/pluginSetupWizard_lt.properties b/core/src/main/resources/jenkins/install/pluginSetupWizard_lt.properties index 337dd6304d46..97f1ae20bc42 100644 --- a/core/src/main/resources/jenkins/install/pluginSetupWizard_lt.properties +++ b/core/src/main/resources/jenkins/install/pluginSetupWizard_lt.properties @@ -1,57 +1,57 @@ -installWizard_welcomePanel_title=\u012evadas +installWizard_welcomePanel_title=Ä®vadas installWizard_welcomePanel_banner=Jenkins pritaikymas -installWizard_welcomePanel_message=Priedai papildo Jenkins\u0105 naujomis galimyb\u0117mis. -installWizard_welcomePanel_recommendedActionTitle=\u012ediegti si\u016blomus priedus -installWizard_welcomePanel_recommendedActionDetails=\u012ediegti priedus, kuriuos Jenkinso bendruomen\u0117 labiausiai naudoja. -installWizard_welcomePanel_customizeActionTitle=Parinkite priedus \u012fdiegimui -installWizard_welcomePanel_customizeActionDetails=Parinkite ir \u012fdiekite priedus, labiausiai patenkinan\u010dius j\u016bs\u0173 poreikius. +installWizard_welcomePanel_message=Priedai papildo JenkinsÄ… naujomis galimybÄ—mis. +installWizard_welcomePanel_recommendedActionTitle=Ä®diegti siÅ«lomus priedus +installWizard_welcomePanel_recommendedActionDetails=Ä®diegti priedus, kuriuos Jenkinso bendruomenÄ— labiausiai naudoja. +installWizard_welcomePanel_customizeActionTitle=Parinkite priedus įdiegimui +installWizard_welcomePanel_customizeActionDetails=Parinkite ir įdiekite priedus, labiausiai patenkinanÄius jÅ«sų poreikius. installWizard_jenkinsVersionTitle=Jenkins -installWizard_offline_title=Atsijung\u0119s -installWizard_offline_message=Pana\u0161u, kad \u0161is Jenkinsas yra atsijung\u0119s. \ +installWizard_offline_title=AtsijungÄ™s +installWizard_offline_message=PanaÅ¡u, kad Å¡is Jenkinsas yra atsijungÄ™s. \

\ -Daugiau informacijos apie tai, kaip diegti Jenkins\u0105 neprisijungus prie interneto, ie\u0161kokite \ +Daugiau informacijos apie tai, kaip diegti Jenkinsą neprisijungus prie interneto, ieškokite \ Neprijungto Jenkins diegimo dokumentacijoje.

\ -Galite nuspr\u0119sti t\u0119sti sukonfig\u016brav\u0119 \u0161liuz\u0105 arba praleisdami pried\u0173 diegim\u0105. \ +Galite nuspręsti tęsti sukonfigūravę šliuzą arba praleisdami priedų diegimą. \

-installWizard_error_header=\u012evyko klaida -installWizard_error_message=Diegiant \u012fvyko klaida: +installWizard_error_header=Įvyko klaida +installWizard_error_message=Diegiant įvyko klaida: installWizard_error_connection=Nepavyksta prisijungti prie Jenkinso -installWizard_installCustom_title=\u012evadas +installWizard_installCustom_title=Įvadas installWizard_installCustom_selectAll=Viskas installWizard_installCustom_selectNone=Nieko installWizard_installCustom_selectRecommended=Rekomenduojami -installWizard_installCustom_selected=Pa\u017eym\u0117ti -installWizard_installCustom_dependenciesPrefix=Priklausomyb\u0117s +installWizard_installCustom_selected=Pažymėti +installWizard_installCustom_dependenciesPrefix=Priklausomybės installWizard_goBack=Atgal -installWizard_goInstall=\u012ediegti -installWizard_installing_title=\u012evadas -installWizard_installing_detailsLink=Detal\u0117s... -installWizard_installComplete_title=\u012evadas -installWizard_installComplete_banner=Jenkinsas paruo\u0161tas! -installWizard_pluginsInstalled_message=J\u016bs\u0173 pried\u0173 diegimas baigtas. -installWizard_installComplete_message=J\u016bs\u0173 Jenkinso nustatymas baigtas. -installWizard_installComplete_finishButtonLabel=Prad\u0117kite naudoti Jenkins\u0105 -installWizard_installComplete_restartRequiredMessage=Kai kuriems priedams reikia, kad Jenkinsas b\u016bt\u0173 i\u0161 naujo paleistas. -installWizard_installComplete_restartLabel=Paleisti i\u0161 naujo -installWizard_installIncomplete_title=T\u0119sti diegim\u0105 -installWizard_installIncomplete_banner=T\u0119sti diegim\u0105 -installWizard_installIncomplete_message=Jenkinsas buvo i\u0161 naujo paleistas diegimo metu ir pana\u0161u, kad kai kurie prieda ne\u012fsidieg\u0117. -installWizard_installIncomplete_resumeInstallationButtonLabel=T\u0119sti -installWizard_saveFirstUser=\u012era\u0161yti ir baigti -installWizard_skipFirstUser=T\u0119sti kaip administratoriumi +installWizard_goInstall=Įdiegti +installWizard_installing_title=Įvadas +installWizard_installing_detailsLink=Detalės... +installWizard_installComplete_title=Įvadas +installWizard_installComplete_banner=Jenkinsas paruoštas! +installWizard_pluginsInstalled_message=Jūsų priedų diegimas baigtas. +installWizard_installComplete_message=Jūsų Jenkinso nustatymas baigtas. +installWizard_installComplete_finishButtonLabel=Pradėkite naudoti Jenkinsą +installWizard_installComplete_restartRequiredMessage=Kai kuriems priedams reikia, kad Jenkinsas būtų iš naujo paleistas. +installWizard_installComplete_restartLabel=Paleisti iš naujo +installWizard_installIncomplete_title=Tęsti diegimą +installWizard_installIncomplete_banner=Tęsti diegimą +installWizard_installIncomplete_message=Jenkinsas buvo iš naujo paleistas diegimo metu ir panašu, kad kai kurie prieda neįsidiegė. +installWizard_installIncomplete_resumeInstallationButtonLabel=Tęsti +installWizard_saveFirstUser=Įrašyti ir baigti +installWizard_skipFirstUser=Tęsti kaip administratoriumi installWizard_firstUserSkippedMessage=
\ -J\u016bs praleidote administratoriaus naudotojo k\u016brim\u0105. Nor\u0117dami prisijungti, naudokite vard\u0105: \u201eadmin\u201c ir \ -administratoriaus slapta\u017eod\u012f, kur\u012f naudojote prisijungimui prie nustatymo vedlio.\ +Jūs praleidote administratoriaus naudotojo kūrimą. Norėdami prisijungti, naudokite vardą: „admin“ ir \ +administratoriaus slaptažodį, kurį naudojote prisijungimui prie nustatymo vedlio.\
-installWizard_addFirstUser_title=\u012evadas -installWizard_configureProxy_label=Konfig\u016bruoti \u0161liuz\u0105 -installWizard_configureProxy_save=\u012era\u0161yti ir t\u0119sti -installWizard_skipPluginInstallations=Praleisti pried\u0173 diegim\u0105 -installWizard_installIncomplete_dependenciesLabel=Priklausomyb\u0117s -installWizard_installingConsole_dependencyIndicatorNote=** - privaloma priklausomyb\u0117 -installWizard_websiteLinkLabel=Svetain\u0117 -installWizard_pluginInstallFailure_title=Diegimo nes\u0117km\u0117s -installWizard_pluginInstallFailure_message=Kai kuri\u0173 pried\u0173 nepavyko s\u0117kmingai \u012fdiegti, galite bandyti i\u0161 naujo juos diegti, \ -arba t\u0119sti su nepavykusiais priedais -installWizard_continue=T\u0119sti +installWizard_addFirstUser_title=Įvadas +installWizard_configureProxy_label=Konfigūruoti šliuzą +installWizard_configureProxy_save=Įrašyti ir tęsti +installWizard_skipPluginInstallations=Praleisti priedų diegimą +installWizard_installIncomplete_dependenciesLabel=Priklausomybės +installWizard_installingConsole_dependencyIndicatorNote=** - privaloma priklausomybė +installWizard_websiteLinkLabel=Svetainė +installWizard_pluginInstallFailure_title=Diegimo nesėkmės +installWizard_pluginInstallFailure_message=Kai kurių priedų nepavyko sėkmingai įdiegti, galite bandyti iš naujo juos diegti, \ +arba tęsti su nepavykusiais priedais +installWizard_continue=Tęsti installWizard_retry=Kartoti diff --git a/core/src/main/resources/jenkins/install/pluginSetupWizard_pl.properties b/core/src/main/resources/jenkins/install/pluginSetupWizard_pl.properties index dfdfcc71e388..9ded00d8ffce 100644 --- a/core/src/main/resources/jenkins/install/pluginSetupWizard_pl.properties +++ b/core/src/main/resources/jenkins/install/pluginSetupWizard_pl.properties @@ -22,64 +22,64 @@ installWizard_welcomePanel_title=Zaczynamy installWizard_welcomePanel_banner=Dostosuj Jenkinsa -installWizard_welcomePanel_message=Wtyczki rozszerzaj\u0105ce Jenkinsa o dodatkowe funkcjonalno\u015Bci, kt\u00F3re zaspokajaj\u0105 wiele potrzeb. +installWizard_welcomePanel_message=Wtyczki rozszerzające Jenkinsa o dodatkowe funkcjonalności, które zaspokajają wiele potrzeb. installWizard_welcomePanel_recommendedActionTitle=Zainstaluj sugerowane wtyczki -installWizard_welcomePanel_recommendedActionDetails=Zainstaluj wtyczki, kt\u00F3re spo\u0142eczno\u015B\u0107 Jenkinsa uzna\u0142a za najbardziej przydatne. +installWizard_welcomePanel_recommendedActionDetails=Zainstaluj wtyczki, które społeczność Jenkinsa uznała za najbardziej przydatne. installWizard_welcomePanel_customizeActionTitle=Wybierz wtyczki do instalacji installWizard_welcomePanel_customizeActionDetails=Wybierz i zainstaluj wtyczki najbardziej dopasowane do Twoich potrzeb. installWizard_jenkinsVersionTitle=Jenkins installWizard_installComplete_banner=Jenkins jest gotowy! -installWizard_installComplete_finishButtonLabel=Zacznij korzysta\u0107 z Jenkinsa -installWizard_installComplete_message=Konfiguracja Jenkinsa zosta\u0142a zako\u0144czona. +installWizard_installComplete_finishButtonLabel=Zacznij korzystać z Jenkinsa +installWizard_installComplete_message=Konfiguracja Jenkinsa została zakończona. installWizard_firstUserSkippedMessage=
\ -Pomini\u0119to utworzenie konta administratora. Aby si\u0119 zalogowa\u0107, u\u017Cyj loginu 'admin' i has\u0142a u\u017Cytego podczas konfigurowania Jenkinsa.\ +Pominięto utworzenie konta administratora. Aby się zalogować, użyj loginu 'admin' i hasła użytego podczas konfigurowania Jenkinsa.\
-installWizard_addFirstUser_title=Dodawanie pierwszego u\u017Cytkownika +installWizard_addFirstUser_title=Dodawanie pierwszego użytkownika installWizard_installCustom_title=Instalacja wybrantych wtyczek installWizard_installing_title=Instalacja wtyczek -installWizard_installComplete_title=Instalacja zako\u0144czona +installWizard_installComplete_title=Instalacja zakończona installWizard_installCustom_selectAll=Wszystkie -installWizard_installCustom_selectNone=\u017Badne +installWizard_installCustom_selectNone=Żadne installWizard_installCustom_selectRecommended=Rekomendowane installWizard_installCustom_selected=Wybrane -installWizard_goBack=Wr\u00F3\u0107 +installWizard_goBack=Wróć installWizard_goInstall=Instaluj -installWizard_error_connection=Nie uda\u0142o si\u0119 po\u0142\u0105czy\u0107 z Jenkinsem -installWizard_error_title=B\u0142\u0105d -installWizard_error_header=Wyst\u0105pi\u0142 b\u0142\u0105d -installWizard_installingConsole_dependencyIndicatorNote=** - zale\u017Cno\u015Bci wymagane -installWizard_retry=Pon\u00F3w -installWizard_pluginInstallFailure_message=Niekt\u00F3rych wtyczek nie uda\u0142o si\u0119 zainstalowa\u0107. Mo\u017Cesz ponowi\u0107 instalacje lub kontynuowa\u0107 z b\u0142\u0119dnymi wtyczkami. +installWizard_error_connection=Nie udało się połączyć z Jenkinsem +installWizard_error_title=Błąd +installWizard_error_header=Wystąpił błąd +installWizard_installingConsole_dependencyIndicatorNote=** - zależności wymagane +installWizard_retry=Ponów +installWizard_pluginInstallFailure_message=Niektórych wtyczek nie udało się zainstalować. Możesz ponowić instalacje lub kontynuować z błędnymi wtyczkami. installWizard_continue=Kontynuuj installWizard_offline_title=Offline installWizard_installIncomplete_title=Wznawianie instalacji installWizard_installIncomplete_banner=Wznawianie instalacji -installWizard_offline_message=Wygl\u0105da, \u017Ce Jenkins pracuje w trybie offline. \ +installWizard_offline_message=Wygląda, że Jenkins pracuje w trybie offline. \

\ -Aby uzyska\u0107 wi\u0119cej informacji o instalowaniu Jenkinsa bez dost\u0119pu do Internetu, sprawd\u017A \ +Aby uzyskać więcej informacji o instalowaniu Jenkinsa bez dostępu do Internetu, sprawdź \ Offline Jenkins Installation Documentation.

\ -Mo\u017Cesz kontynuowa\u0107 konfiguruj\u0105c proxy lub pomin\u0105\u0107 instalacje wtyczek.\ +Możesz kontynuować konfigurując proxy lub pominąć instalacje wtyczek.\

installWizard_configureInstance_title=Konfiguracja instancji -installWizard_saveConfigureInstance=Zapisz i zako\u0144cz +installWizard_saveConfigureInstance=Zapisz i zakończ installWizard_skipConfigureInstance=Nie teraz installWizard_configureProxy_label=Konfiguruj proxy -installWizard_skipPluginInstallations=Pomi\u0144 instalacje wtyczek +installWizard_skipPluginInstallations=Pomiń instalacje wtyczek installWizard_configureProxy_save=Zapisz i kontynuuj -installWizard_installIncomplete_resumeInstallationButtonLabel=Pon\u00F3w -installWizard_installIncomplete_message=Jenkins zosta\u0142 ponownie uruchomiony w trakcie instalacji i wygl\u0105da, \u017Ce cz\u0119\u015B\u0107 wtyczek nie zosta\u0142a zainstalowana. -installWizard_installComplete_installComplete_restartRequiredMessage=Instalacja jest zako\u0144czona, ale niekt\u00F3re wtyczki wymagaj\u0105 ponownego uruchomienia Jenkinsa. -installWizard_saveFirstUser=Zapisz i zako\u0144cz +installWizard_installIncomplete_resumeInstallationButtonLabel=Ponów +installWizard_installIncomplete_message=Jenkins został ponownie uruchomiony w trakcie instalacji i wygląda, że część wtyczek nie została zainstalowana. +installWizard_installComplete_installComplete_restartRequiredMessage=Instalacja jest zakończona, ale niektóre wtyczki wymagają ponownego uruchomienia Jenkinsa. +installWizard_saveFirstUser=Zapisz i zakończ installWizard_skipFirstUser=Kontynuuj jako administrator -installWizard_error_message=Wyst\u0105pi\u0142 b\u0142\u0105d podczas instalacji -installWizard_installCustom_dependenciesPrefix=Zale\u017Cno\u015Bci -installWizard_pluginInstallFailure_title=Instalacja nie powiod\u0142a si\u0119 -installWizard_installing_detailsLink=Szczeg\u00F3\u0142y... +installWizard_error_message=Wystąpił błąd podczas instalacji +installWizard_installCustom_dependenciesPrefix=Zależności +installWizard_pluginInstallFailure_title=Instalacja nie powiodła się +installWizard_installing_detailsLink=Szczegóły... installWizard_installComplete_installComplete_restartRequiredNotSupportedMessage= installWizard_gettingStarted_title=Zaczynamy installWizard_saveSecurity=Zapisz i kontynuuj -installWizard_installIncomplete_dependenciesLabel=Zale\u017Cno\u015Bci +installWizard_installIncomplete_dependenciesLabel=Zależności installWizard_configureInstanceSkippedMessage=
\ -Pomini\u0119to konfiguracje bazowego adresu URL Jenkinsa.

\ -Aby go skonfigurowa\u0107, przejd\u017A do strony "Zarz\u0105dzaj Jenkinsem".\ +Pominięto konfiguracje bazowego adresu URL Jenkinsa.

\ +Aby go skonfigurować, przejdź do strony "Zarządzaj Jenkinsem".\
diff --git a/core/src/main/resources/jenkins/install/pluginSetupWizard_sr.properties b/core/src/main/resources/jenkins/install/pluginSetupWizard_sr.properties index 7a68c49b9d92..14a3affb5905 100644 --- a/core/src/main/resources/jenkins/install/pluginSetupWizard_sr.properties +++ b/core/src/main/resources/jenkins/install/pluginSetupWizard_sr.properties @@ -1,73 +1,73 @@ # This file is under the MIT License by authors -installWizard_welcomePanel_title=\u041F\u043E\u0447\u0435\u0442\u0430\u043A -installWizard_welcomePanel_banner=\u041F\u0440\u0438\u0440\u0435\u0434\u0438 Jenkins -installWizard_welcomePanel_message=\u041C\u043E\u0434\u0443\u043B\u0435 \u043F\u0440\u043E\u0448\u0438\u0440\u0443\u0458\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u043E\u043D\u0430\u043B\u043D\u043E\u0441\u0442 Jenkins-\u0430 \u0441\u0430 \u0434\u043E\u0434\u0430\u0442\u043D\u0438\u043C \u043E\u0434\u043B\u0438\u043A\u0430\u043C\u0430 \u043A\u043E\u0458\u0438 \u043F\u043E\u0434\u0440\u0436\u0430\u0432\u0430\u0458\u0443 \u0440\u0430\u0437\u043D\u0435 \u0443\u043F\u043E\u0442\u0440\u0435\u0431\u0435. +installWizard_welcomePanel_title=Почетак +installWizard_welcomePanel_banner=Приреди Jenkins +installWizard_welcomePanel_message=Модуле проширују функционалноÑÑ‚ Jenkins-а Ñа додатним одликама који подржавају разне употребе. installWizard_jenkinsVersionTitle=Jenkins -installWizard_offline_title=\u0412\u0430\u043D \u043C\u0440\u0435\u0436\u0435 -installWizard_offline_message=Jenkins \u0442\u0440\u0435\u043D\u0443\u0442\u043D\u043E \u0440\u0430\u0434\u0438 \u0432\u0430\u043D \u043C\u0440\u0435\u0436\u0435.\ +installWizard_offline_title=Ван мреже +installWizard_offline_message=Jenkins тренутно ради ван мреже.\

\ -\u0414\u0430 \u0431\u0438 \u0441\u0442\u0435 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043B\u0438 Jenkins \u0431\u0435\u0437 \u0438\u043D\u0442\u0435\u0440\u043D\u0435\u0442 \u0432\u0435\u0437\u043E\u043C, \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 \ -\u0412\u0430\u043D-\u043C\u0440\u0435\u0436\u043D\u0430 Jenkins \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430.

\ -\u041C\u043E\u0436\u0435\u0442\u0435 \u043D\u0430\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043F\u043E\u0441\u0442\u0430\u0432\u0459\u0430\u0458\u0443\u0447\u0438 proxy \u0438\u043B\u0438 \u043F\u0440\u0435\u0441\u043A\u0430\u043A\u0430\u045A\u0435\u043C \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0438 \u043C\u043E\u0434\u0443\u043B\u0430. \ +Да би Ñте инÑталирали Jenkins без интернет везом, прегледајте \ +Ван-мрежна Jenkins инÑталација.

\ +Можете наÑтавити поÑтављајучи proxy или преÑкакањем инÑталацији модула. \

-installWizard_error_header=\u0414\u043E\u0448\u043B\u043E \u0458\u0435 \u0434\u043E \u0433\u0440\u0435\u0448\u043A\u0435 -installWizard_error_message=\u0414\u043E\u0448\u043B\u043E \u0458\u0435 \u0434\u043E \u0433\u0440\u0435\u0448\u043A\u0435 \u0442\u043E\u043A\u043E\u043C \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0435: -installWizard_error_connection=\u041D\u0438\u0458\u0435 \u043C\u043E\u0433\u0443\u045B\u0435 \u043F\u043E\u0432\u0435\u0437\u0430\u0442\u0438 \u0441\u0430 Jenkins-\u043E\u043C -installWizard_error_restartNotSupported=\u041F\u043E\u0448\u0442\u043E \u0430\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u043E \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0435 \u043D\u0438\u0458\u0435 \u043F\u043E\u0434\u0440\u0436\u0430\u043D\u043E, \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0438\u0442\u0435 \u043C\u0430\u0448\u0438\u043D\u0443 \u0440\u0443\u0447\u043D\u043E. -installWizard_installCustom_title=\u041F\u043E\u0447\u0435\u0442\u0430\u043A -installWizard_installCustom_selectAll=\u0421\u0432\u0435 -installWizard_installCustom_selectNone=\u041D\u0438\u0448\u0442\u0430 -installWizard_installCustom_selectRecommended=\u041F\u0440\u0435\u0434\u043B\u043E\u0436\u0435\u043D\u043E -installWizard_installCustom_selected=\u0418\u0437\u0430\u0431\u0440\u0430\u043D\u043E -installWizard_installCustom_dependenciesPrefix=\u0417\u0430\u0432\u0438\u0441\u043D\u043E\u0441\u0442\u0438 -installWizard_goBack=\u041D\u0430\u0437\u0430\u0434 -installWizard_goInstall=\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0458 -installWizard_installing_title=\u041F\u043E\u0447\u0435\u0442\u0430\u043A -installWizard_installing_detailsLink=\u0414\u0435\u0442\u0430\u0459\u0438... -installWizard_installComplete_title=\u041F\u043E\u0447\u0435\u0442\u0430\u043A -installWizard_installComplete_banner=Jenkins \u0458\u0435 \u0441\u043F\u0440\u0435\u043C\u0430\u043D! -installWizard_installComplete_bannerRestart=Jenkins \u0458\u0435 \u0441\u043A\u043E\u0440\u043E \u0441\u043F\u0440\u0435\u043C\u0430\u043D! -installWizard_pluginsInstalled_message=\u0418\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430 \u043C\u043E\u0434\u0443\u043B\u0430 \u0458\u0435 \u0433\u043E\u0442\u043E\u0432\u043E. -installWizard_installComplete_message=\u0418\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430 Jenkins-\u0430 \u0458\u0435 \u0433\u043E\u0442\u043E\u0432\u043E. -installWizard_installComplete_finishButtonLabel=\u041F\u043E\u0447\u043D\u0438\u0442\u0435 \u0434\u0430 \u043A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0435 Jenkins -installWizard_installComplete_installComplete_restartRequiredMessage=\u0418\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430 Jenkins-\u0430 \u0458\u0435 \u0433\u043E\u0442\u043E\u0432\u043E, \u043C\u0435\u0452\u0443\u0442\u0438\u043C \u043D\u0435\u043A\u0435 \u043C\u043E\u0434\u0443\u043B\u0435 \u0442\u0440\u0430\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0435\u0440\u0435\u043D\u0435 Jenkins. -installWizard_installComplete_installComplete_restartRequiredNotSupportedMessage=\u0418\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430 Jenkins-\u0430 \u0458\u0435 \u0433\u043E\u0442\u043E\u0432\u043E, \u043C\u0435\u0452\u0443\u0442\u0438\u043C \u043D\u0435\u043A\u0435 \u043C\u043E\u0434\u0443\u043B\u0435 \u0442\u0440\u0430\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0435\u0440\u0435\u043D\u0435 Jenkins. \u041F\u043E\u0448\u0442\u043E \u0430\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u043E \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0435 \u043D\u0438\u0458\u0435 \u043F\u043E\u0434\u0440\u0436\u0430\u043D\u043E, \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0438\u0442\u0435 \u043C\u0430\u0448\u0438\u043D\u0443 \u0440\u0443\u0447\u043D\u043E. -installWizard_installComplete_restartRequiredMessage=\u041D\u0435\u043A\u0435 \u043C\u043E\u0434\u0443\u043B\u0435 \u0442\u0440\u0430\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0435\u0440\u0435\u043D\u0435 Jenkins. -installWizard_installComplete_restartLabel=\u041F\u043E\u043A\u0440\u0435\u043D\u0438 \u043F\u043E\u043D\u043E\u0432\u043E -installWizard_installIncomplete_title=\u041D\u0430\u0441\u0442\u0430\u0432\u0438 \u0441\u0430 \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u043E\u043C -installWizard_installIncomplete_banner=\u041D\u0430\u0441\u0442\u0430\u0432\u0438 \u0441\u0430 \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u043E\u043C +installWizard_error_header=Дошло је до грешке +installWizard_error_message=Дошло је до грешке током инÑталације: +installWizard_error_connection=Ðије могуће повезати Ñа Jenkins-ом +installWizard_error_restartNotSupported=Пошто аутоматÑко поново покретање није подржано, поново покрените машину ручно. +installWizard_installCustom_title=Почетак +installWizard_installCustom_selectAll=Све +installWizard_installCustom_selectNone=Ðишта +installWizard_installCustom_selectRecommended=Предложено +installWizard_installCustom_selected=Изабрано +installWizard_installCustom_dependenciesPrefix=ЗавиÑноÑти +installWizard_goBack=Ðазад +installWizard_goInstall=ИнÑталирај +installWizard_installing_title=Почетак +installWizard_installing_detailsLink=Детаљи... +installWizard_installComplete_title=Почетак +installWizard_installComplete_banner=Jenkins је Ñпреман! +installWizard_installComplete_bannerRestart=Jenkins је Ñкоро Ñпреман! +installWizard_pluginsInstalled_message=ИнÑталација модула је готово. +installWizard_installComplete_message=ИнÑталација Jenkins-а је готово. +installWizard_installComplete_finishButtonLabel=Почните да кориÑтите Jenkins +installWizard_installComplete_installComplete_restartRequiredMessage=ИнÑталација Jenkins-а је готово, међутим неке модуле траже да Ñе поново покерене Jenkins. +installWizard_installComplete_installComplete_restartRequiredNotSupportedMessage=ИнÑталација Jenkins-а је готово, међутим неке модуле траже да Ñе поново покерене Jenkins. Пошто аутоматÑко поново покретање није подржано, поново покрените машину ручно. +installWizard_installComplete_restartRequiredMessage=Ðеке модуле траже да Ñе поново покерене Jenkins. +installWizard_installComplete_restartLabel=Покрени поново +installWizard_installIncomplete_title=ÐаÑтави Ñа инÑталацијом +installWizard_installIncomplete_banner=ÐаÑтави Ñа инÑталацијом installWizard_installIncomplete_message= -installWizard_saveFirstUser=\u0421\u0430\u0447\u0443\u0432\u0430\u0458 \u0438 \u043D\u0430\u0441\u0442\u0430\u0432\u0438 -installWizard_skipFirstUser=\u041D\u0430\u0441\u0442\u0430\u0432\u0438 \u0441\u0430 \u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0442\u043E\u0440\u0441\u043A\u0438\u043C \u043D\u0430\u043B\u043E\u0433\u043E\u043C +installWizard_saveFirstUser=Сачувај и наÑтави +installWizard_skipFirstUser=ÐаÑтави Ñа админиÑтраторÑким налогом installWizard_firstUserSkippedMessage=
\ -\u041F\u0440\u0435\u0441\u043A\u043E\u0447\u0438\u043B\u0438 \u0441\u0442\u0435 \u043A\u0440\u0435\u0438\u0440\u0430\u045A\u0435\u043C \u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043E\u0433 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430. \u041F\u0440\u0438\u0458\u0430\u0432\u0438\u0442\u0435 \u0441\u0435 \u043A\u0430\u043A\u043E \u0448\u0442\u043E \u045B\u0435 \u0442\u0435 \u043A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0438 \u0438\u043C\u0435: 'admin' \u0438 \u043B\u043E\u0437\u0438\u043D\u043A\u0443 \u043A\u043E\u0458\u0443 \u0441\u0442\u0435 \u043A\u043E\u0440\u0438\u0441\u0442\u0438\u043B\u0438 \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u043E\u043C.\ +ПреÑкочили Ñте креирањем админиÑтративог кориÑника. Пријавите Ñе како што ће те кориÑтити име: 'admin' и лозинку коју Ñте кориÑтили инÑталацијом.\
-installWizard_addFirstUser_title=\u041F\u043E\u0447\u0435\u0442\u0430\u043A -installWizard_configureProxy_label=\u041F\u043E\u0441\u0442\u0430\u0432\u0438 Proxy \u0441\u0435\u0440\u0432\u0435\u0440 +installWizard_addFirstUser_title=Почетак +installWizard_configureProxy_label=ПоÑтави Proxy Ñервер installWizard_configureProxy_save= installWizard_gettingStarted_title= -installWizard_saveSecurity=\u0421\u0430\u0447\u0443\u0432\u0430\u0458 \u0438 \u043D\u0430\u0441\u0442\u0430\u0432\u0438 -installWizard_skipPluginInstallations=\u041F\u0440\u0435\u0441\u043A\u043E\u0447\u0438 \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0443 \u043C\u043E\u0434\u0443\u043B\u0430 -installWizard_installIncomplete_dependenciesLabel=\u0417\u0430\u0432\u0438\u0441\u043D\u043E\u0441\u0442\u0438 -installWizard_installingConsole_dependencyIndicatorNote=** - \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u0430 \u0437\u0430\u0432\u0438\u0441\u043D\u043E\u0441\u0442 -installWizard_websiteLinkLabel=\u0421\u0442\u0440\u0430\u043D\u0438\u0446\u0430 -installWizard_pluginInstallFailure_title=\u0413\u0440\u0435\u0448\u043A\u0435 \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u043E\u043C -installWizard_pluginInstallFailure_message=\u041D\u0435\u043A\u0435 \u043C\u043E\u0434\u0443\u043B\u0435 \u043D\u0438\u0441\u0443 \u0443\u0441\u043F\u0435\u0448\u043D\u043E \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u0435. \u041C\u043E\u0436\u0435\u0442\u0435 \u043F\u043E\u043A\u0443\u0448\u0430\u0442\u0438 \u043F\u043E\u043D\u043E\u0432\u043E \u0434\u0430 \u0438\u0445 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0442\u0435 \u0438\u043B\u0438 \u043D\u0430\u0441\u0442\u0430\u0432\u0438\u0442\u0438. -installWizard_continue=\u041D\u0430\u0441\u0442\u0430\u0432\u0438 -installWizard_retry=\u041F\u043E\u043A\u0443\u0448\u0430\u0458 \u043F\u043E\u043D\u043E\u0432\u043E -installWizard_upgradePanel_title=\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u0458 -installWizard_upgradePanel_banner=\u0414\u043E\u0431\u0440\u043E\u0434\u043E\u0448\u043B\u0438 \u043D\u0430 Jenkins {0}! -installWizard_upgradePanel_message=Jenkins {0} \u0438\u043C\u0430 \u043D\u0435\u043A\u0435 \u043E\u0434\u043B\u0438\u0447\u043D\u0435 \u043D\u043E\u0432\u0435 \u043E\u0434\u043B\u0438\u043Ae \u043A\u043E\u0458\u0435 \u043C\u0438\u0441\u043B\u0438\u043C\u043E \u0434\u0430 \u0432\u0430\u043C \u045B\u0435 \u0441\u0435 \u0441\u0432\u0438\u0452\u0430\u0442\u0438. \u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0458\u0442\u0435 \u043E\u0432\u0435 \u0434\u043E\u0434\u0430\u0442\u043D\u0435 \u043C\u043E\u0434\u0443\u043B\u0435 \u0448\u0442\u043E \u043F\u0440\u0435! -installWizard_upgradePanel_skipRecommendedPlugins=\u041D\u0435 \u0445\u0432\u0430\u043B\u0430 -installWizard_upgradeComplete_title=\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u0458 -installWizard_pluginsInstalled_banner=\u0414\u043E\u0431\u0440\u043E\u0434\u043E\u0448\u043B\u0438 \u043D\u0430 Jenkins {0}! -installWizard_upgradeComplete_message=\u0427\u0435\u0441\u0442\u0438\u0442\u0430\u043C\u043E! \u0410\u0436\u0443\u0440\u0438\u0440\u0430\u043B\u0438 \u0441\u0442\u0435 Jenkins \u043D\u0430 \u0432\u0435\u0440\u0437\u0438\u0458\u0443 {0}.

\u041F\u0440\u043E\u0447\u0438\u0442\u0430\u0458\u0442\u0435 \u0458\u043E\u0448 \u043D\u0430 Jenkins \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0438! -installWizard_upgradeSkipped_title=\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u0458 -installWizard_upgradeSkipped_banner=\u041E\u0434\u043B\u0438\u043A\u0435 \u043A\u043E\u0458\u0435 \u043D\u0438\u0441\u0443 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u0435 -installWizard_upgradeSkipped_message=

\u043F\u0440\u0435\u0434\u043B\u043E\u0436\u0438\u0435 \u043C\u043E\u0434\u0443\u043B\u0435 \u043D\u0435\u045B\u0435 \u0431\u0438\u0442\u0438 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u0435.
\ -

\u0410\u043A\u043E \u0441\u0442\u0435 \u043F\u0440\u0435\u0434\u043E\u043C\u0438\u0441\u043B\u0438\u0442\u0435, \u043C\u043E\u0436\u0435\u0442\u0435 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0442\u0438 \u043D\u043E\u0432\u0435 \u043C\u043E\u0434\u0443\u043B\u0435 \u0441\u0430 \u0423\u043F\u0440\u0430\u0432\u0459\u0430\u0447\u0435\u043C \u043C\u043E\u0434\u0443\u043B\u0430.

\ -

\u041F\u0440\u043E\u0447\u0438\u0442\u0430\u0458\u0442\u0435 \u043A\u0430\u043A\u043E \u043C\u043E\u0434\u0443\u043B\u0435 \u0443\u0441\u0430\u0432\u0440\u0448\u0430\u0432\u0430\u0458\u0443 Jenkins \ -\u043D\u0430 Jenkins \u0441\u0442\u0430\u043D\u0438\u0446\u0438.

-installWizard_upgrading_title=\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u045A\u0435 \u043C\u043E\u0434\u0443\u043B\u0430 -installWizard_upgradeComplete_finishButtonLabel=\u0417\u0430\u0432\u0440\u0448\u0438 +installWizard_saveSecurity=Сачувај и наÑтави +installWizard_skipPluginInstallations=ПреÑкочи инÑталацију модула +installWizard_installIncomplete_dependenciesLabel=ЗавиÑноÑти +installWizard_installingConsole_dependencyIndicatorNote=** - потребна завиÑноÑÑ‚ +installWizard_websiteLinkLabel=Страница +installWizard_pluginInstallFailure_title=Грешке инÑталацијом +installWizard_pluginInstallFailure_message=Ðеке модуле ниÑу уÑпешно инÑталиране. Можете покушати поново да их инÑталирате или наÑтавити. +installWizard_continue=ÐаÑтави +installWizard_retry=Покушај поново +installWizard_upgradePanel_title=Ðжурирај +installWizard_upgradePanel_banner=Добродошли на Jenkins {0}! +installWizard_upgradePanel_message=Jenkins {0} има неке одличне нове одликe које миÑлимо да вам ће Ñе Ñвиђати. ИнÑталирајте ове додатне модуле што пре! +installWizard_upgradePanel_skipRecommendedPlugins=Ðе хвала +installWizard_upgradeComplete_title=Ðжурирај +installWizard_pluginsInstalled_banner=Добродошли на Jenkins {0}! +installWizard_upgradeComplete_message=ЧеÑтитамо! Ðжурирали Ñте Jenkins на верзију {0}.

Прочитајте још на Jenkins Ñтраници! +installWizard_upgradeSkipped_title=Ðжурирај +installWizard_upgradeSkipped_banner=Одлике које ниÑу инÑталиране +installWizard_upgradeSkipped_message=

предложие модуле неће бити инÑталиране.
\ +

Ðко Ñте предомиÑлите, можете инÑталирати нове модуле Ñа Управљачем модула.

\ +

Прочитајте како модуле уÑавршавају Jenkins \ +на Jenkins Ñтаници.

+installWizard_upgrading_title=ИнÑталирање модула +installWizard_upgradeComplete_finishButtonLabel=Заврши diff --git a/core/src/main/resources/jenkins/install/pluginSetupWizard_zh_CN.properties b/core/src/main/resources/jenkins/install/pluginSetupWizard_zh_CN.properties index 115ba1786fc6..526cf033bf9b 100644 --- a/core/src/main/resources/jenkins/install/pluginSetupWizard_zh_CN.properties +++ b/core/src/main/resources/jenkins/install/pluginSetupWizard_zh_CN.properties @@ -21,87 +21,87 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -installWizard_welcomePanel_title=\u65b0\u624b\u5165\u95e8 -installWizard_welcomePanel_banner=\u81ea\u5b9a\u4e49Jenkins -installWizard_welcomePanel_message=\u63d2\u4ef6\u901a\u8fc7\u9644\u52a0\u7279\u6027\u6765\u6269\u5c55Jenkins\u4ee5\u6ee1\u8db3\u4e0d\u540c\u7684\u9700\u6c42\u3002 -installWizard_welcomePanel_recommendedActionTitle=\u5b89\u88c5\u63a8\u8350\u7684\u63d2\u4ef6 -installWizard_welcomePanel_recommendedActionDetails=\u5b89\u88c5Jenkins\u793e\u533a\u63a8\u8350\u7684\u63d2\u4ef6\u3002 -installWizard_welcomePanel_customizeActionTitle=\u9009\u62e9\u63d2\u4ef6\u6765\u5b89\u88c5 -installWizard_welcomePanel_customizeActionDetails=\u9009\u62e9\u5e76\u5b89\u88c5\u6700\u9002\u5408\u7684\u63d2\u4ef6\u3002 +installWizard_welcomePanel_title=新手入门 +installWizard_welcomePanel_banner=自定义Jenkins +installWizard_welcomePanel_message=æ’件通过附加特性æ¥æ‰©å±•Jenkins以满足ä¸åŒçš„需求。 +installWizard_welcomePanel_recommendedActionTitle=安装推èçš„æ’件 +installWizard_welcomePanel_recommendedActionDetails=安装Jenkins社区推èçš„æ’件。 +installWizard_welcomePanel_customizeActionTitle=选择æ’件æ¥å®‰è£… +installWizard_welcomePanel_customizeActionDetails=选择并安装最适åˆçš„æ’件。 installWizard_jenkinsVersionTitle=Jenkins -installWizard_offline_title=\u79bb\u7ebf -installWizard_offline_message=\u8be5Jenkins\u5b9e\u4f8b\u4f3c\u4e4e\u5df2\u79bb\u7ebf\u3002\ +installWizard_offline_title=离线 +installWizard_offline_message=该Jenkins实例似乎已离线。\

\ -\u53c2\u8003 \u79bb\u7ebfJenkins\u5b89\u88c5\u6587\u6863\u4e86\u89e3\u672a\u63a5\u5165\u4e92\u8054\u7f51\u65f6\u5b89\u88c5Jenkins\u7684\u66f4\u591a\u4fe1\u606f\u3002

\ -\u53ef\u4ee5\u901a\u8fc7\u914d\u7f6e\u4e00\u4e2a\u4ee3\u7406\u6216\u8df3\u8fc7\u63d2\u4ef6\u5b89\u88c5\u6765\u9009\u62e9\u7ee7\u7eed\u3002\ +å‚考 离线Jenkins安装文档了解未接入互è”网时安装Jenkins的更多信æ¯ã€‚

\ +å¯ä»¥é€šè¿‡é…置一个代ç†æˆ–跳过æ’件安装æ¥é€‰æ‹©ç»§ç»­ã€‚\

-installWizard_error_header=\u51fa\u73b0\u4e00\u4e2a\u9519\u8bef -installWizard_error_message=\u5b89\u88c5\u8fc7\u7a0b\u4e2d\u51fa\u73b0\u4e00\u4e2a\u9519\u8bef\uff1a -installWizard_error_connection=\u65e0\u6cd5\u8fde\u63a5\u5230Jenkins -installWizard_error_restartNotSupported=\u4e0d\u652f\u6301\u81ea\u52a8\u91cd\u542f\uff0c\u8bf7\u624b\u52a8\u91cd\u542f\u8be5\u5b9e\u4f8b -installWizard_installCustom_title=\u65b0\u624b\u5165\u95e8 -installWizard_installCustom_selectAll=\u5168\u90e8 -installWizard_installCustom_selectNone=\u65e0 -installWizard_installCustom_selectRecommended=\u5efa\u8bae -installWizard_installCustom_selected=\u5df2\u9009\u62e9 -installWizard_installCustom_dependenciesPrefix=\u4f9d\u8d56 -installWizard_goBack=\u540e\u9000 -installWizard_goInstall=\u5b89\u88c5 -installWizard_installing_title=\u65b0\u624b\u5165\u95e8 -installWizard_installing_detailsLink=\u8be6\u60c5\u3002\u3002\u3002 -installWizard_installComplete_title=\u65b0\u624b\u5165\u95e8 -installWizard_installComplete_banner=Jenkins\u5df2\u5c31\u7eea\uff01 -installWizard_installComplete_bannerRestart=Jenkins\u5373\u5c06\u5c31\u7eea\uff01 -installWizard_pluginsInstalled_message=\u63d2\u4ef6\u5b89\u88c5\u5df2\u5b8c\u6210\u3002 -installWizard_installComplete_message=Jenkins\u5b89\u88c5\u5df2\u5b8c\u6210\u3002 -installWizard_installComplete_finishButtonLabel=\u5f00\u59cb\u4f7f\u7528Jenkins -installWizard_installComplete_installComplete_restartRequiredMessage=Jenkins\u5b89\u88c5\u5df2\u5b8c\u6210\uff0c\u4f46\u90e8\u5206\u63d2\u4ef6\u9700\u8981\u91cd\u542fJenkins\u3002 -installWizard_installComplete_installComplete_restartRequiredNotSupportedMessage=Jenkins\u5b89\u88c5\u5df2\u5b8c\u6210\uff0c\u4f46\u90e8\u5206\u63d2\u4ef6\u9700\u8981\u91cd\u542fJenkins\uff0c\u8be5\u5b9e\u4f8b\u4f3c\u4e4e\u4e0d\u652f\u6301\u81ea\u52a8\u91cd\u542f\u3002\u8bf7\u73b0\u5728\u624b\u52a8\u91cd\u542f\u5b9e\u4f8b\u4ee5\u5b8c\u6210\u5b89\u88c5\u3002 -installWizard_installComplete_restartLabel=\u91cd\u542f -installWizard_installIncomplete_title=\u6062\u590d\u5b89\u88c5 -installWizard_installIncomplete_banner=\u6062\u590d\u5b89\u88c5 -installWizard_installIncomplete_message=Jenkins\u5728\u5b89\u88c5\u8fc7\u7a0b\u5df2\u91cd\u542f\uff0c\u90e8\u5206\u63d2\u4ef6\u4f3c\u4e4e\u672a\u5b89\u88c5\u3002 -installWizard_installIncomplete_resumeInstallationButtonLabel=\u6062\u590d -installWizard_saveFirstUser=\u4fdd\u5b58\u5e76\u5b8c\u6210 -installWizard_skipFirstUser=\u4f7f\u7528admin\u8d26\u6237\u7ee7\u7eed +installWizard_error_header=出现一个错误 +installWizard_error_message=安装过程中出现一个错误: +installWizard_error_connection=无法连接到Jenkins +installWizard_error_restartNotSupported=ä¸æ”¯æŒè‡ªåŠ¨é‡å¯ï¼Œè¯·æ‰‹åŠ¨é‡å¯è¯¥å®žä¾‹ +installWizard_installCustom_title=新手入门 +installWizard_installCustom_selectAll=全部 +installWizard_installCustom_selectNone=æ—  +installWizard_installCustom_selectRecommended=建议 +installWizard_installCustom_selected=已选择 +installWizard_installCustom_dependenciesPrefix=ä¾èµ– +installWizard_goBack=åŽé€€ +installWizard_goInstall=安装 +installWizard_installing_title=新手入门 +installWizard_installing_detailsLink=详情。。。 +installWizard_installComplete_title=新手入门 +installWizard_installComplete_banner=Jenkinså·²å°±ç»ªï¼ +installWizard_installComplete_bannerRestart=Jenkinså³å°†å°±ç»ªï¼ +installWizard_pluginsInstalled_message=æ’件安装已完æˆã€‚ +installWizard_installComplete_message=Jenkins安装已完æˆã€‚ +installWizard_installComplete_finishButtonLabel=开始使用Jenkins +installWizard_installComplete_installComplete_restartRequiredMessage=Jenkins安装已完æˆï¼Œä½†éƒ¨åˆ†æ’件需è¦é‡å¯Jenkins。 +installWizard_installComplete_installComplete_restartRequiredNotSupportedMessage=Jenkins安装已完æˆï¼Œä½†éƒ¨åˆ†æ’件需è¦é‡å¯Jenkins,该实例似乎ä¸æ”¯æŒè‡ªåŠ¨é‡å¯ã€‚请现在手动é‡å¯å®žä¾‹ä»¥å®Œæˆå®‰è£…。 +installWizard_installComplete_restartLabel=é‡å¯ +installWizard_installIncomplete_title=æ¢å¤å®‰è£… +installWizard_installIncomplete_banner=æ¢å¤å®‰è£… +installWizard_installIncomplete_message=Jenkins在安装过程已é‡å¯ï¼Œéƒ¨åˆ†æ’件似乎未安装。 +installWizard_installIncomplete_resumeInstallationButtonLabel=æ¢å¤ +installWizard_saveFirstUser=ä¿å­˜å¹¶å®Œæˆ +installWizard_skipFirstUser=使用admin账户继续 installWizard_firstUserSkippedMessage=
\ -\u4f60\u5df2\u8df3\u8fc7\u521b\u5efaadmin\u7528\u6237\u7684\u6b65\u9aa4\u3002\u8981\u767b\u5f55\u8bf7\u4f7f\u7528\u7528\u6237\u540d\uff1a'admin' \ -\u53ca\u7528\u4e8e\u8bbf\u95ee\u5b89\u88c5\u5411\u5bfc\u7684\u7ba1\u7406\u5458\u5bc6\u7801\u3002\ +你已跳过创建admin用户的步骤。è¦ç™»å½•è¯·ä½¿ç”¨ç”¨æˆ·å:'admin' \ +åŠç”¨äºŽè®¿é—®å®‰è£…å‘导的管ç†å‘˜å¯†ç ã€‚\
-installWizard_addFirstUser_title=\u65b0\u624b\u5165\u95e8 +installWizard_addFirstUser_title=新手入门 # instance configuration page -installWizard_configureInstance_title=\u5b9e\u4f8b\u914d\u7f6e -installWizard_saveConfigureInstance=\u4fdd\u5b58\u5e76\u5b8c\u6210 -installWizard_skipConfigureInstance=\u73b0\u5728\u4e0d\u8981 +installWizard_configureInstance_title=实例é…ç½® +installWizard_saveConfigureInstance=ä¿å­˜å¹¶å®Œæˆ +installWizard_skipConfigureInstance=现在ä¸è¦ installWizard_configureInstanceSkippedMessage=
\ -\u60a8\u5df2\u7ecf\u8df3\u8fc7\u4e86 Jenkins URL\u7684\u914d\u7f6e\u3002

\ -\u8981\u914d\u7f6e Jenkins URL\u7684\u8bdd\uff0c\u5230\u201cJenkins\u7ba1\u7406\u201d\u9875\u9762\u3002\ +您已ç»è·³è¿‡äº† Jenkins URLçš„é…置。

\ +è¦é…ç½® Jenkins URLçš„è¯ï¼Œåˆ°â€œJenkins管ç†â€é¡µé¢ã€‚\
-installWizard_configureProxy_label=\u914d\u7f6e\u4ee3\u7406 -installWizard_configureProxy_save=\u4fdd\u5b58\u5e76\u7ee7\u7eed -installWizard_gettingStarted_title=\u65b0\u624b\u5165\u95e8 -installWizard_saveSecurity=\u4fdd\u5b58\u5e76\u7ee7\u7eed -installWizard_skipPluginInstallations=\u8df3\u8fc7\u63d2\u4ef6\u5b89\u88c5 -installWizard_installIncomplete_dependenciesLabel=\u4f9d\u8d56 -installWizard_installingConsole_dependencyIndicatorNote=** - \u9700\u8981\u4f9d\u8d56 -installWizard_websiteLinkLabel=\u7f51\u7ad9 -installWizard_pluginInstallFailure_title=\u5b89\u88c5\u5931\u8d25 -installWizard_pluginInstallFailure_message=\u90e8\u5206\u63d2\u4ef6\u5b89\u88c5\u5931\u8d25\uff0c\u8bf7\u91cd\u8bd5\u6216\u7ee7\u7eed -installWizard_continue=\u7ee7\u7eed -installWizard_retry=\u91cd\u8bd5 -installWizard_upgradePanel_title=\u66f4\u65b0 -installWizard_upgradePanel_banner=\u6b22\u8fce\u4f7f\u7528Jenkins {0} \uff01 -installWizard_upgradePanel_message=Jenkins {0} \u5305\u62ec\u4e00\u4e9b\u4e0d\u9519\u7684\u65b0\u7279\u6027\uff0c\u6211\u4eec\u8ba4\u4e3a\u4f60\u53ef\u80fd\u4f1a\u559c\u6b22\uff0c\u5b89\u88c5\u8fd9\u4e9b\u9644\u52a0\u63d2\u4ef6\u6765\u4f53\u9a8c\uff01 -installWizard_upgradePanel_skipRecommendedPlugins=\u4e0d\uff0c\u8c22\u8c22 -installWizard_upgradeComplete_title=\u66f4\u65b0 -installWizard_pluginsInstalled_banner=\u6b22\u8fce\u4f7f\u7528Jenkins {0} \uff01 -installWizard_upgradeComplete_message=\u606d\u559c\uff01\u4f60\u5df2\u66f4\u65b0\u5230Jenkins {0} \u3002

\u8bbf\u95eeJenkins\u7f51\u7ad9\u4e86\u89e3\u66f4\u591a\u65b0\u7279\u6027\u7684\u4fe1\u606f\u3002 -installWizard_upgradeSkipped_title=\u66f4\u65b0 -installWizard_upgradeSkipped_banner=\u7279\u6027\u672a\u5b89\u88c5 -installWizard_upgradeSkipped_message=

\u5efa\u8bae\u7684\u63d2\u4ef6\u5c06\u4e0d\u88ab\u5b89\u88c5\u3002
\ -

\u5982\u679c\u4f60\u6539\u53d8\u4e3b\u610f\u4e86\uff0c\u8fd8\u53ef\u4ee5\u4ece\u63d2\u4ef6\u7ba1\u7406\u5668\u5b89\u88c5\u65b0\u7279\u6027\u3002

\ -

\u8bbf\u95eeJenkins\u5b98\u7f51\uff0c\u4e86\u89e3\u8fd9\u4e9b\u65b0\u7279\u6027\u5982\u4f55\u63d0\u5347Jenkins\u4f53\u9a8c\u3002

-installWizard_upgrading_title=\u6b63\u5728\u5b89\u88c5\u63d2\u4ef6 -installWizard_upgradeComplete_finishButtonLabel=\u5b8c\u6210 +installWizard_configureProxy_label=é…ç½®ä»£ç† +installWizard_configureProxy_save=ä¿å­˜å¹¶ç»§ç»­ +installWizard_gettingStarted_title=新手入门 +installWizard_saveSecurity=ä¿å­˜å¹¶ç»§ç»­ +installWizard_skipPluginInstallations=跳过æ’件安装 +installWizard_installIncomplete_dependenciesLabel=ä¾èµ– +installWizard_installingConsole_dependencyIndicatorNote=** - 需è¦ä¾èµ– +installWizard_websiteLinkLabel=网站 +installWizard_pluginInstallFailure_title=安装失败 +installWizard_pluginInstallFailure_message=部分æ’件安装失败,请é‡è¯•æˆ–继续 +installWizard_continue=继续 +installWizard_retry=é‡è¯• +installWizard_upgradePanel_title=æ›´æ–° +installWizard_upgradePanel_banner=欢迎使用Jenkins {0} ï¼ +installWizard_upgradePanel_message=Jenkins {0} 包括一些ä¸é”™çš„新特性,我们认为你å¯èƒ½ä¼šå–œæ¬¢ï¼Œå®‰è£…这些附加æ’件æ¥ä½“éªŒï¼ +installWizard_upgradePanel_skipRecommendedPlugins=ä¸ï¼Œè°¢è°¢ +installWizard_upgradeComplete_title=æ›´æ–° +installWizard_pluginsInstalled_banner=欢迎使用Jenkins {0} ï¼ +installWizard_upgradeComplete_message=æ­å–œï¼ä½ å·²æ›´æ–°åˆ°Jenkins {0} 。

访问Jenkins网站了解更多新特性的信æ¯ã€‚ +installWizard_upgradeSkipped_title=æ›´æ–° +installWizard_upgradeSkipped_banner=特性未安装 +installWizard_upgradeSkipped_message=

建议的æ’件将ä¸è¢«å®‰è£…。
\ +

如果你改å˜ä¸»æ„了,还å¯ä»¥ä»Žæ’件管ç†å™¨å®‰è£…新特性。

\ +

访问Jenkins官网,了解这些新特性如何æå‡Jenkins体验。

+installWizard_upgrading_title=正在安装æ’件 +installWizard_upgradeComplete_finishButtonLabel=å®Œæˆ diff --git a/core/src/main/resources/jenkins/install/pluginSetupWizard_zh_TW.properties b/core/src/main/resources/jenkins/install/pluginSetupWizard_zh_TW.properties index fa2d69024066..8d42c1f95f86 100644 --- a/core/src/main/resources/jenkins/install/pluginSetupWizard_zh_TW.properties +++ b/core/src/main/resources/jenkins/install/pluginSetupWizard_zh_TW.properties @@ -20,77 +20,77 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. # -installWizard_welcomePanel_title=\u958b\u59cb\u4f7f\u7528 -installWizard_welcomePanel_banner=\u81ea\u8a02 Jenkins -installWizard_welcomePanel_message=\u5916\u639b\u70ba Jenkins \u64f4\u5145\u984d\u5916\u7684\u529f\u80fd\u4ee5\u6eff\u8db3\u4e0d\u540c\u7684\u9700\u6c42\u3002 -installWizard_welcomePanel_recommendedActionTitle=\u5b89\u88dd\u63a8\u85a6\u7684\u5916\u639b -installWizard_welcomePanel_recommendedActionDetails=\u5b89\u88dd Jenkins \u793e\u7fa4\u8a8d\u70ba\u6700\u6709\u7528\u7684\u5916\u639b\u3002 -installWizard_welcomePanel_customizeActionTitle=\u9078\u64c7\u5916\u639b\u4f86\u5b89\u88dd -installWizard_welcomePanel_customizeActionDetails=\u9078\u64c7\u4e26\u5b89\u88dd\u6700\u9069\u5408\u60a8\u7684\u5916\u639b\u3002 +installWizard_welcomePanel_title=開始使用 +installWizard_welcomePanel_banner=自訂 Jenkins +installWizard_welcomePanel_message=外掛為 Jenkins æ“´å……é¡å¤–的功能以滿足ä¸åŒçš„需求。 +installWizard_welcomePanel_recommendedActionTitle=安è£æŽ¨è–¦çš„外掛 +installWizard_welcomePanel_recommendedActionDetails=å®‰è£ Jenkins 社群èªç‚ºæœ€æœ‰ç”¨çš„外掛。 +installWizard_welcomePanel_customizeActionTitle=é¸æ“‡å¤–æŽ›ä¾†å®‰è£ +installWizard_welcomePanel_customizeActionDetails=é¸æ“‡ä¸¦å®‰è£æœ€é©åˆæ‚¨çš„外掛。 installWizard_jenkinsVersionTitle=Jenkins -installWizard_offline_title=\u96e2\u7dda -installWizard_offline_message=\u6b64 Jenkins \u57f7\u884c\u500b\u9ad4\u4f3c\u4e4e\u5df2\u96e2\u7dda\u3002

\u8acb\u53c3\u95b1 Jenkins \u96e2\u7dda\u5b89\u88dd\u6587\u4ef6\u4ee5\u4e86\u89e3\u5982\u4f55\u5728\u6c92\u6709\u7db2\u8def\u9023\u7dda\u6642\u5b89\u88dd Jenkins\u3002

\u60a8\u53ef\u4ee5\u8a2d\u5b9a\u4ee3\u7406\u4f3a\u670d\u5668\u6216\u8df3\u904e\u5b89\u88dd\u5916\u639b\u4ee5\u7e7c\u7e8c\u3002

-installWizard_error_title=\u932f\u8aa4 -installWizard_error_header=\u767c\u751f\u932f\u8aa4 -installWizard_error_message=\u5b89\u88dd\u6642\u767c\u751f\u932f\u8aa4\: -installWizard_error_connection=\u7121\u6cd5\u9023\u7dda\u5230 Jenkins -installWizard_error_restartNotSupported=\u4e0d\u652f\u63f4\u91cd\u65b0\u555f\u52d5\uff0c\u8acb\u624b\u52d5\u91cd\u65b0\u555f\u52d5\u6b64\u57f7\u884c\u500b\u9ad4 -installWizard_installCustom_title=\u958b\u59cb\u4f7f\u7528 -installWizard_installCustom_selectAll=\u5168\u9078 -installWizard_installCustom_selectNone=\u53d6\u6d88\u5168\u9078 -installWizard_installCustom_selectRecommended=\u63a8\u85a6 -installWizard_installCustom_selected=\u5df2\u9078\u53d6 -installWizard_installCustom_dependenciesPrefix=\u76f8\u4f9d\u6027 -installWizard_installCustom_pluginListDesc=\u63d0\u9192\u60a8\uff0c\u9019\u88e1\u4e26\u672a\u5217\u51fa\u5b8c\u6574\u7684\u5916\u639b\u6e05\u55ae\u3002\u5b8c\u6210\u521d\u59cb\u5316\u5b89\u88dd\u5f8c\u5373\u53ef\u5728\u5916\u639b\u7e3d\u7ba1\u4e2d\u5b89\u88dd\u984d\u5916\u7684\u5916\u639b\u3002\u67e5\u770b\u6587\u4ef6\u4ee5\u7372\u5f97\u66f4\u591a\u8cc7\u8a0a\u3002 -installWizard_goBack=\u8fd4\u56de -installWizard_goInstall=\u5b89\u88dd -installWizard_installing_title=\u958b\u59cb\u4f7f\u7528 -installWizard_installing_detailsLink=\u8a73\u60c5... -installWizard_installComplete_title=\u958b\u59cb\u4f7f\u7528 -installWizard_installComplete_banner=Jenkins \u5df2\u5c31\u7dd2\uff01 -installWizard_installComplete_bannerRestart=Jenkins \u5373\u5c07\u5c31\u7dd2\uff01 -installWizard_pluginsInstalled_message=\u60a8\u7684\u5916\u639b\u5df2\u5b89\u88dd\u5b8c\u6210\u3002 -installWizard_installComplete_message=\u60a8\u7684 Jenkins \u5df2\u5b89\u88dd\u5b8c\u6210\u3002 -installWizard_installComplete_finishButtonLabel=\u958b\u59cb\u4f7f\u7528 Jenkins -installWizard_installComplete_installComplete_restartRequiredMessage=\u60a8\u7684 Jenkins \u5df2\u5b89\u88dd\u5b8c\u6210\uff0c\u4f46\u67d0\u4e9b\u5916\u639b\u9700\u8981\u91cd\u65b0\u555f\u52d5 Jenkins\u3002 -installWizard_installComplete_installComplete_restartRequiredNotSupportedMessage=\u60a8\u7684 Jenkins \u5df2\u5b89\u88dd\u5b8c\u6210\uff0c\u4f46\u67d0\u4e9b\u5916\u639b\u9700\u8981\u91cd\u65b0\u555f\u52d5 Jenkins\uff0c\u4f46\u770b\u4f86\u6b64\u57f7\u884c\u500b\u9ad4\u4e0d\u652f\u63f4\u81ea\u52d5\u91cd\u65b0\u555f\u52d5\u3002\u73fe\u5728\u8acb\u624b\u52d5\u91cd\u65b0\u555f\u52d5\u60a8\u7684\u57f7\u884c\u500b\u9ad4\u4ee5\u5b8c\u6210\u5b89\u88dd\u3002 -installWizard_installComplete_restartLabel=\u91cd\u65b0\u555f\u52d5 -installWizard_installIncomplete_title=\u7e7c\u7e8c\u5b89\u88dd -installWizard_installIncomplete_banner=\u7e7c\u7e8c\u5b89\u88dd -installWizard_installIncomplete_message=Jenkins \u5728\u5b89\u88dd\u671f\u9593\u91cd\u65b0\u555f\u52d5\uff0c\u800c\u4e14\u4f3c\u4e4e\u672a\u5b89\u88dd\u67d0\u4e9b\u5916\u639b\u3002 -installWizard_installIncomplete_resumeInstallationButtonLabel=\u7e7c\u7e8c -installWizard_saveFirstUser=\u5132\u5b58\u4e26\u7e7c\u7e8c -installWizard_skipFirstUser=\u8df3\u904e\u4e26\u4ee5 admin \u7e7c\u7e8c -installWizard_firstUserSkippedMessage=
\u60a8\u5df2\u7565\u904e\u8a2d\u5b9a\u7ba1\u7406\u54e1\u4f7f\u7528\u8005\u3002

\u8acb\u4f7f\u7528\u5e33\u865f\uff1a\u300cadmin\u300d\u548c\u60a8\u9032\u5165\u5b89\u88dd\u7cbe\u9748\u7684\u7ba1\u7406\u54e1\u5bc6\u78bc\u767b\u5165\u3002
-installWizard_addFirstUser_title=\u958b\u59cb\u4f7f\u7528 +installWizard_offline_title=離線 +installWizard_offline_message=此 Jenkins 執行個體似乎已離線。

è«‹åƒé–± Jenkins 離線安è£æ–‡ä»¶ä»¥äº†è§£å¦‚ä½•åœ¨æ²’æœ‰ç¶²è·¯é€£ç·šæ™‚å®‰è£ Jenkins。

您å¯ä»¥è¨­å®šä»£ç†ä¼ºæœå™¨æˆ–è·³éŽå®‰è£å¤–掛以繼續。

+installWizard_error_title=錯誤 +installWizard_error_header=發生錯誤 +installWizard_error_message=安è£æ™‚發生錯誤\: +installWizard_error_connection=無法連線到 Jenkins +installWizard_error_restartNotSupported=ä¸æ”¯æ´é‡æ–°å•Ÿå‹•ï¼Œè«‹æ‰‹å‹•é‡æ–°å•Ÿå‹•æ­¤åŸ·è¡Œå€‹é«” +installWizard_installCustom_title=開始使用 +installWizard_installCustom_selectAll=å…¨é¸ +installWizard_installCustom_selectNone=å–æ¶ˆå…¨é¸ +installWizard_installCustom_selectRecommended=推薦 +installWizard_installCustom_selected=å·²é¸å– +installWizard_installCustom_dependenciesPrefix=相ä¾æ€§ +installWizard_installCustom_pluginListDesc=æ醒您,這裡並未列出完整的外掛清單。完æˆåˆå§‹åŒ–安è£å¾Œå³å¯åœ¨å¤–掛總管中安è£é¡å¤–的外掛。查看文件以ç²å¾—更多資訊。 +installWizard_goBack=返回 +installWizard_goInstall=å®‰è£ +installWizard_installing_title=開始使用 +installWizard_installing_detailsLink=詳情... +installWizard_installComplete_title=開始使用 +installWizard_installComplete_banner=Jenkins å·²å°±ç·’ï¼ +installWizard_installComplete_bannerRestart=Jenkins å³å°‡å°±ç·’ï¼ +installWizard_pluginsInstalled_message=您的外掛已安è£å®Œæˆã€‚ +installWizard_installComplete_message=您的 Jenkins 已安è£å®Œæˆã€‚ +installWizard_installComplete_finishButtonLabel=開始使用 Jenkins +installWizard_installComplete_installComplete_restartRequiredMessage=您的 Jenkins 已安è£å®Œæˆï¼Œä½†æŸäº›å¤–掛需è¦é‡æ–°å•Ÿå‹• Jenkins。 +installWizard_installComplete_installComplete_restartRequiredNotSupportedMessage=您的 Jenkins 已安è£å®Œæˆï¼Œä½†æŸäº›å¤–掛需è¦é‡æ–°å•Ÿå‹• Jenkins,但看來此執行個體ä¸æ”¯æ´è‡ªå‹•é‡æ–°å•Ÿå‹•ã€‚ç¾åœ¨è«‹æ‰‹å‹•é‡æ–°å•Ÿå‹•æ‚¨çš„執行個體以完æˆå®‰è£ã€‚ +installWizard_installComplete_restartLabel=é‡æ–°å•Ÿå‹• +installWizard_installIncomplete_title=ç¹¼çºŒå®‰è£ +installWizard_installIncomplete_banner=ç¹¼çºŒå®‰è£ +installWizard_installIncomplete_message=Jenkins 在安è£æœŸé–“é‡æ–°å•Ÿå‹•ï¼Œè€Œä¸”似乎未安è£æŸäº›å¤–掛。 +installWizard_installIncomplete_resumeInstallationButtonLabel=繼續 +installWizard_saveFirstUser=儲存並繼續 +installWizard_skipFirstUser=è·³éŽä¸¦ä»¥ admin 繼續 +installWizard_firstUserSkippedMessage=
您已略éŽè¨­å®šç®¡ç†å“¡ä½¿ç”¨è€…。

請使用帳號:「adminã€å’Œæ‚¨é€²å…¥å®‰è£ç²¾éˆçš„管ç†å“¡å¯†ç¢¼ç™»å…¥ã€‚
+installWizard_addFirstUser_title=開始使用 # instance configuration page -installWizard_configureInstance_title=\u57f7\u884c\u500b\u9ad4\u7d44\u614b -installWizard_saveConfigureInstance=\u5132\u5b58\u4e26\u5b8c\u6210 -installWizard_skipConfigureInstance=\u66ab\u6642\u4e0d\u8981 -installWizard_configureInstanceSkippedMessage=
\u60a8\u5df2\u7565\u904e\u8a2d\u5b9a Jenkins URL\u3002

\u60a8\u4e4b\u5f8c\u53ef\u4ee5\u5230\u300c\u7ba1\u7406 Jenkins\u300d\u9801\u9762\u8a2d\u5b9a Jenkins URL\u3002
+installWizard_configureInstance_title=執行個體組態 +installWizard_saveConfigureInstance=å„²å­˜ä¸¦å®Œæˆ +installWizard_skipConfigureInstance=暫時ä¸è¦ +installWizard_configureInstanceSkippedMessage=
您已略éŽè¨­å®š Jenkins URL。

您之後å¯ä»¥åˆ°ã€Œç®¡ç† Jenkinsã€é é¢è¨­å®š Jenkins URL。
-installWizard_configureProxy_label=\u8a2d\u5b9a\u4ee3\u7406\u4f3a\u670d\u5668 -installWizard_configureProxy_save=\u5132\u5b58\u4e26\u7e7c\u7e8c -installWizard_gettingStarted_title=\u958b\u59cb\u4f7f\u7528 -installWizard_saveSecurity=\u5132\u5b58\u4e26\u7e7c\u7e8c -installWizard_skipPluginInstallations=\u8df3\u904e\u5b89\u88dd\u5916\u639b -installWizard_installIncomplete_dependenciesLabel=\u76f8\u4f9d\u6027 -installWizard_installingConsole_dependencyIndicatorNote=** - \u5fc5\u8981\u7684\u76f8\u4f9d\u6027 -installWizard_websiteLinkLabel=\u7db2\u7ad9 -installWizard_pluginInstallFailure_title=\u5b89\u88dd\u5931\u6557 -installWizard_pluginInstallFailure_message=\u67d0\u4e9b\u5916\u639b\u5b89\u88dd\u5931\u6557\uff0c\u60a8\u53ef\u4ee5\u91cd\u65b0\u5617\u8a66\u5b89\u88dd\u4ed6\u5011\u6216\u7565\u904e\u4e26\u7e7c\u7e8c -installWizard_continue=\u7e7c\u7e8c -installWizard_retry=\u91cd\u8a66 -installWizard_upgradePanel_title=\u5347\u7ea7 -installWizard_upgradePanel_banner=\u6b61\u8fce\u4f7f\u7528 Jenkins {0}\! -installWizard_upgradePanel_message=Jenkins {0} \u5305\u542b\u4e00\u4e9b\u5f88\u68d2\u7684\u65b0\u529f\u80fd\uff0c\u6211\u5011\u8a8d\u70ba\u60a8\u6703\u559c\u6b61\u3002\u5b89\u88dd\u9019\u4e9b\u984d\u5916\u7684\u5916\u639b\u4ee5\u5584\u7528\u4ed6\u5011\u3002 -installWizard_upgradePanel_skipRecommendedPlugins=\u4e0d\u7528\uff0c\u8b1d\u8b1d -installWizard_upgradeComplete_title=\u5347\u7ea7 -installWizard_pluginsInstalled_banner=\u6b61\u8fce\u4f7f\u7528 Jenkins {0}\! -installWizard_upgradeComplete_message=\u606d\u559c\uff01\u60a8\u5df2\u5347\u7d1a\u5230 Jenkins {0}\u3002

\u9020\u8a2a Jenkins \u7db2\u7ad9\u4ee5\u4e86\u89e3\u66f4\u591a\u65b0\u529f\u80fd\u7684\u8cc7\u8a0a\uff01 -installWizard_upgradeSkipped_title=\u5347\u7ea7 -installWizard_upgradeSkipped_banner=\u529f\u80fd\u672a\u5b89\u88dd -installWizard_upgradeSkipped_message=

\u4e0d\u6703\u5b89\u88dd\u63a8\u85a6\u7684\u5916\u639b\u3002

\u5982\u679c\u60a8\u6539\u8b8a\u4e3b\u610f\u4e86\uff0c\u60a8\u53ef\u5f9e\u5916\u639b\u7e3d\u7ba1\u5b89\u88dd\u65b0\u529f\u80fd\u3002

Learn how these new features can improve your Jenkins experience by \u9020\u8a2a\u9996\u9801\u4ee5\u4e86\u89e3\u9019\u4e9b\u65b0\u529f\u80fd\u5982\u4f55\u63d0\u5347\u60a8\u7684 Jenkins \u4f7f\u7528\u9ad4\u9a57\u3002

-installWizard_upgrading_title=\u6b63\u5728\u5b89\u88dd\u5916\u639b -installWizard_upgradeComplete_finishButtonLabel=\u5b8c\u6210 +installWizard_configureProxy_label=設定代ç†ä¼ºæœå™¨ +installWizard_configureProxy_save=儲存並繼續 +installWizard_gettingStarted_title=開始使用 +installWizard_saveSecurity=儲存並繼續 +installWizard_skipPluginInstallations=è·³éŽå®‰è£å¤–掛 +installWizard_installIncomplete_dependenciesLabel=相ä¾æ€§ +installWizard_installingConsole_dependencyIndicatorNote=** - å¿…è¦çš„相ä¾æ€§ +installWizard_websiteLinkLabel=網站 +installWizard_pluginInstallFailure_title=安è£å¤±æ•— +installWizard_pluginInstallFailure_message=æŸäº›å¤–掛安è£å¤±æ•—,您å¯ä»¥é‡æ–°å˜—試安è£ä»–們或略éŽä¸¦ç¹¼çºŒ +installWizard_continue=繼續 +installWizard_retry=é‡è©¦ +installWizard_upgradePanel_title=å‡çº§ +installWizard_upgradePanel_banner=歡迎使用 Jenkins {0}\! +installWizard_upgradePanel_message=Jenkins {0} 包å«ä¸€äº›å¾ˆæ£’的新功能,我們èªç‚ºæ‚¨æœƒå–œæ­¡ã€‚安è£é€™äº›é¡å¤–的外掛以善用他們。 +installWizard_upgradePanel_skipRecommendedPlugins=ä¸ç”¨ï¼Œè¬è¬ +installWizard_upgradeComplete_title=å‡çº§ +installWizard_pluginsInstalled_banner=歡迎使用 Jenkins {0}\! +installWizard_upgradeComplete_message=æ­å–œï¼æ‚¨å·²å‡ç´šåˆ° Jenkins {0}。

造訪 Jenkins ç¶²ç«™ä»¥äº†è§£æ›´å¤šæ–°åŠŸèƒ½çš„è³‡è¨Šï¼ +installWizard_upgradeSkipped_title=å‡çº§ +installWizard_upgradeSkipped_banner=åŠŸèƒ½æœªå®‰è£ +installWizard_upgradeSkipped_message=

ä¸æœƒå®‰è£æŽ¨è–¦çš„外掛。

如果您改變主æ„了,您å¯å¾žå¤–掛總管安è£æ–°åŠŸèƒ½ã€‚

Learn how these new features can improve your Jenkins experience by 造訪首é ä»¥äº†è§£é€™äº›æ–°åŠŸèƒ½å¦‚何æå‡æ‚¨çš„ Jenkins 使用體驗。

+installWizard_upgrading_title=正在安è£å¤–掛 +installWizard_upgradeComplete_finishButtonLabel=å®Œæˆ diff --git a/core/src/main/resources/jenkins/management/AdministrativeMonitorsApiData/monitorsList_bg.properties b/core/src/main/resources/jenkins/management/AdministrativeMonitorsApiData/monitorsList_bg.properties index 2e29623142ac..dd1a9c33f695 100644 --- a/core/src/main/resources/jenkins/management/AdministrativeMonitorsApiData/monitorsList_bg.properties +++ b/core/src/main/resources/jenkins/management/AdministrativeMonitorsApiData/monitorsList_bg.properties @@ -1,2 +1,2 @@ Manage\ Jenkins=\ - \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 Jenkins + Управление на Jenkins diff --git a/core/src/main/resources/jenkins/management/AdministrativeMonitorsApiData/monitorsList_pl.properties b/core/src/main/resources/jenkins/management/AdministrativeMonitorsApiData/monitorsList_pl.properties index 198fd4663671..e20be6535757 100644 --- a/core/src/main/resources/jenkins/management/AdministrativeMonitorsApiData/monitorsList_pl.properties +++ b/core/src/main/resources/jenkins/management/AdministrativeMonitorsApiData/monitorsList_pl.properties @@ -1 +1 @@ -Manage\ Jenkins=Zarz\u0105dzaj Jenkinsem +Manage\ Jenkins=ZarzÄ…dzaj Jenkinsem diff --git a/core/src/main/resources/jenkins/management/AdministrativeMonitorsApiData/monitorsList_pt_BR.properties b/core/src/main/resources/jenkins/management/AdministrativeMonitorsApiData/monitorsList_pt_BR.properties index dce6de3e72bc..2fb1120102fc 100644 --- a/core/src/main/resources/jenkins/management/AdministrativeMonitorsApiData/monitorsList_pt_BR.properties +++ b/core/src/main/resources/jenkins/management/AdministrativeMonitorsApiData/monitorsList_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Manage\ Jenkins=Gerenciar o Jenkins -no_active_monitors=Atualmente n\u00E3o h\u00E1 nenhum aviso +no_active_monitors=Atualmente não há nenhum aviso diff --git a/core/src/main/resources/jenkins/management/AdministrativeMonitorsApiData/monitorsList_tr.properties b/core/src/main/resources/jenkins/management/AdministrativeMonitorsApiData/monitorsList_tr.properties index 3af0bf32aa39..b28bbd735b2d 100644 --- a/core/src/main/resources/jenkins/management/AdministrativeMonitorsApiData/monitorsList_tr.properties +++ b/core/src/main/resources/jenkins/management/AdministrativeMonitorsApiData/monitorsList_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Manage\ Jenkins=Jenkins''i Y\u00f6net +Manage\ Jenkins=Jenkins''i Yönet diff --git a/core/src/main/resources/jenkins/management/AdministrativeMonitorsApiData/monitorsList_zh_TW.properties b/core/src/main/resources/jenkins/management/AdministrativeMonitorsApiData/monitorsList_zh_TW.properties index 9a889109d7de..0f65d2175f50 100644 --- a/core/src/main/resources/jenkins/management/AdministrativeMonitorsApiData/monitorsList_zh_TW.properties +++ b/core/src/main/resources/jenkins/management/AdministrativeMonitorsApiData/monitorsList_zh_TW.properties @@ -1,2 +1,2 @@ -no_active_monitors=\u76ee\u524d\u6c92\u6709\u8b66\u544a -Manage\ Jenkins=\u7ba1\u7406 Jenkins +no_active_monitors=ç›®å‰æ²’有警告 +Manage\ Jenkins=ç®¡ç† Jenkins diff --git a/core/src/main/resources/jenkins/management/AdministrativeMonitorsConfiguration/config_it.properties b/core/src/main/resources/jenkins/management/AdministrativeMonitorsConfiguration/config_it.properties index d0d802523094..99774b93a33c 100644 --- a/core/src/main/resources/jenkins/management/AdministrativeMonitorsConfiguration/config_it.properties +++ b/core/src/main/resources/jenkins/management/AdministrativeMonitorsConfiguration/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -24,8 +24,8 @@ Administrative\ monitors=Monitor amministrativi Administrative\ monitors\ configuration=Configurazione monitor amministrativi blurb=I monitor amministrativi sono avvisi visualizzati agli amministratori \ - di Jenkins riguardanti lo stato dell''istanza di Jenkins. In generale è \ + di Jenkins riguardanti lo stato dell''istanza di Jenkins. In generale è \ caldamente consigliato mantenere tutti i monitor amministrativi abilitati, \ - ma se non si è interessati a ricevere specifici avvisi, li si deselezioni \ + ma se non si è interessati a ricevere specifici avvisi, li si deselezioni \ qui per nasconderli permanentemente. Enabled\ administrative\ monitors=Monitor amministrativi abilitati diff --git a/core/src/main/resources/jenkins/management/AdministrativeMonitorsConfiguration/config_zh_TW.properties b/core/src/main/resources/jenkins/management/AdministrativeMonitorsConfiguration/config_zh_TW.properties index 8a727a0e6056..046f364b31a8 100644 --- a/core/src/main/resources/jenkins/management/AdministrativeMonitorsConfiguration/config_zh_TW.properties +++ b/core/src/main/resources/jenkins/management/AdministrativeMonitorsConfiguration/config_zh_TW.properties @@ -1 +1 @@ -blurb = \u7ba1\u7406\u76e3\u8996\u5668\u662f\u986f\u793a\u7d66 Jenkins \u7ba1\u7406\u54e1\u6709\u95dc\u6b64 Jenkins \u57f7\u884c\u500b\u9ad4\u72c0\u614b\u7684\u8b66\u544a\u3002\u4e00\u822c\u5f37\u70c8\u5efa\u8b70\u555f\u7528\u6240\u6709\u7ba1\u7406\u76e3\u8996\u5668\uff0c\u82e5\u60a8\u4e26\u4e0d\u5728\u610f\u67d0\u4e9b\u8b66\u544a\uff0c\u5728\u9019\u88e1\u53d6\u6d88\u9078\u53d6\u4ee5\u96b1\u85cf\u5b83\u5011\u3002 +blurb = 管ç†ç›£è¦–器是顯示給 Jenkins 管ç†å“¡æœ‰é—œæ­¤ Jenkins 執行個體狀態的警告。一般強烈建議啟用所有管ç†ç›£è¦–器,若您並ä¸åœ¨æ„æŸäº›è­¦å‘Šï¼Œåœ¨é€™è£¡å–消é¸å–以隱è—它們。 diff --git a/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_bg.properties b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_bg.properties index 2b8a1cd9cb22..53275bc89bc7 100644 --- a/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_bg.properties +++ b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_bg.properties @@ -22,6 +22,6 @@ # There are {0} active administrative monitors. tooltip=\ - \u0412 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0438\u043c\u0430 {0} \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u044f. + Ð’ момента има {0} предупреждениÑ. Manage\ Jenkins=\ - \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 Jenkins + Управление на Jenkins diff --git a/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_it.properties b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_it.properties index 47067a76ae66..9967613a7191 100644 --- a/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_it.properties +++ b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_pl.properties b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_pl.properties index 573e01739bfd..963548d361c7 100644 --- a/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_pl.properties +++ b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_pl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. # There are {0} active administrative monitors. -tooltip=Znaleziono {0} aktywnych powiadomie\u0144 dla administrator\u00F3w -Manage\ Jenkins=Zarz\u0105dzaj Jenkinsem +tooltip=Znaleziono {0} aktywnych powiadomieÅ„ dla administratorów +Manage\ Jenkins=ZarzÄ…dzaj Jenkinsem diff --git a/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_pt_BR.properties b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_pt_BR.properties index 7f0eda281b6b..103fb02ed797 100644 --- a/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_pt_BR.properties +++ b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. tooltip=Existem {0} monitores administrativos ativos. -tooltipSec=Existem {0} monitores administrativos de seguran\u00E7a ativos. +tooltipSec=Existem {0} monitores administrativos de segurança ativos. diff --git a/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_tr.properties b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_tr.properties index 56c632268e05..8447c064c4aa 100644 --- a/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_tr.properties +++ b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_tr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Manage\ Jenkins=Jenkins''i Y\u00f6net -tooltip={0} adet aktif y\u00f6netimsel g\u00f6sterge var. -tooltipSec={0} adet aktif y\u00f6netimsel g\u00FCvenlik g\u00f6stergesi var. +Manage\ Jenkins=Jenkins''i Yönet +tooltip={0} adet aktif yönetimsel gösterge var. +tooltipSec={0} adet aktif yönetimsel güvenlik göstergesi var. diff --git a/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_zh_TW.properties b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_zh_TW.properties index 98f919d0e54b..8fb68379da9f 100644 --- a/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_zh_TW.properties +++ b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_zh_TW.properties @@ -1,2 +1,2 @@ -tooltip=\u6709 {0} \u500b\u555f\u7528\u4e2d\u7684\u7ba1\u7406\u76e3\u8996\u5668\u3002 -tooltipSec=\u6709 {0} \u500b\u555f\u7528\u4e2d\u7684\u5b89\u5168\u6027\u7ba1\u7406\u76e3\u8996\u5668\u3002 +tooltip=有 {0} 個啟用中的管ç†ç›£è¦–器。 +tooltipSec=有 {0} 個啟用中的安全性管ç†ç›£è¦–器。 diff --git a/core/src/main/resources/jenkins/management/AsynchronousAdministrativeMonitor/log_it.properties b/core/src/main/resources/jenkins/management/AsynchronousAdministrativeMonitor/log_it.properties index c1fe38086b14..46bb1fcf4662 100644 --- a/core/src/main/resources/jenkins/management/AsynchronousAdministrativeMonitor/log_it.properties +++ b/core/src/main/resources/jenkins/management/AsynchronousAdministrativeMonitor/log_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/management/Messages_bg.properties b/core/src/main/resources/jenkins/management/Messages_bg.properties index 6ce72696078f..8e011ca2fc10 100644 --- a/core/src/main/resources/jenkins/management/Messages_bg.properties +++ b/core/src/main/resources/jenkins/management/Messages_bg.properties @@ -21,68 +21,68 @@ # THE SOFTWARE. ConfigureLink.DisplayName=\ - \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430 + ÐаÑтройки на ÑиÑтемата ConfigureLink.Description=\ - \u041e\u0431\u0449\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0438 \u043f\u044a\u0442\u0438\u0449\u0430. + Общи наÑтройки и пътища. ReloadLink.DisplayName=\ - \u041f\u0440\u0435\u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435 \u043e\u0442 \u0434\u0438\u0441\u043a\u0430 + Презареждане на наÑтройките от диÑка ReloadLink.Description=\ - \u0418\u0437\u0447\u0438\u0441\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435 \u0432 \u043f\u0430\u043c\u0435\u0442\u0442\u0430 \u0438 \u043f\u0440\u0435\u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435 \u043e\u0442\ - \u0434\u0438\u0441\u043a\u0430.\n\u0422\u043e\u0432\u0430 \u0435 \u043f\u043e\u043b\u0435\u0437\u043d\u043e, \u043a\u043e\u0433\u0430\u0442\u043e \u0441\u0442\u0435 \u043f\u0440\u043e\u043c\u0435\u043d\u044f\u043b\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435\u0442\u0435 \u0441 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043f\u043e \u0434\u0438\u0441\u043a\u0430. + ИзчиÑтване на наÑтройките в паметта и презареждане от\ + диÑка.\nТова е полезно, когато Ñте променÑли файловете Ñ Ð½Ð°Ñтройки по диÑка. PluginsLink.DisplayName=\ - \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438\u0442\u0435 + Управление на приÑтавките PluginsLink.Description=\ - \u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435, \u043f\u0440\u0435\u043c\u0430\u0445\u0432\u0430\u043d\u0435, \u0441\u043f\u0438\u0440\u0430\u043d\u0435 \u0438 \u043f\u0443\u0441\u043a\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438, \u043a\u043e\u0438\u0442\u043e \u0434\u043e\u043f\u044a\u043b\u0432\u0430\u0442 \u0438\ - \u0440\u0430\u0437\u0448\u0438\u0440\u044f\u0432\u0430\u0442 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438\u0442\u0435 \u043d\u0430 Jenkins. + ДобавÑне, премахване, Ñпиране и пуÑкане на приÑтавки, които допълват и\ + разширÑват възможноÑтите на Jenkins. SystemInfoLink.DisplayName=\ - \u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430 + Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° ÑиÑтемата SystemInfoLink.Description=\ - \u0418\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0441\u0440\u0435\u0434\u0430\u0442\u0430 \u0441 \u0446\u0435\u043b \u043e\u0442\u0441\u0442\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0438. + Извеждане на Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° Ñредата Ñ Ñ†ÐµÐ» отÑтранÑването на проблеми. SystemLogLink.DisplayName=\ - \u0421\u0438\u0441\u0442\u0435\u043c\u0435\u043d \u0436\u0443\u0440\u043d\u0430\u043b + СиÑтемен журнал SystemLogLink.Description=\ - \u0412 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u0438\u044f \u0436\u0443\u0440\u043d\u0430\u043b \u0441\u0435 \u0437\u0430\u043f\u0438\u0441\u0432\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u0442\u0430 \u043e\u0442 java.util.logging \u0437\u0430\ + Ð’ ÑиÑÑ‚ÐµÐ¼Ð½Ð¸Ñ Ð¶ÑƒÑ€Ð½Ð°Ð» Ñе запиÑва информациÑта от java.util.logging за\ Jenkins. StatisticsLink.DisplayName=\ - \u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u043d\u0430 \u043d\u0430\u0442\u043e\u0432\u0430\u0440\u0432\u0430\u043d\u0435\u0442\u043e + СтатиÑтика на натоварването StatisticsLink.Description=\ - \u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043d\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0438\u0442\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u0438, \u0437\u0430 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u043d\u0435 \u043d\u0430 \u0435\u0432\u0435\u043d\u0442\u0443\u0430\u043b\u043d\u0430\u0442\u0430 \u043d\u0443\u0436\u0434\u0430 \u043e\u0442 \u043e\u0449\u0435\ - \u043c\u0430\u0448\u0438\u043d\u0438 \u0437\u0430 Jenkins. + Проверка на използваните реÑурÑи, за определÑне на евентуалната нужда от още\ + машини за Jenkins. CliLink.DisplayName=\ - Jenkins \u043e\u0442 \u043a\u043e\u043c\u0430\u043d\u0434\u043d\u0438\u044f \u0440\u0435\u0434 + Jenkins от ÐºÐ¾Ð¼Ð°Ð½Ð´Ð½Ð¸Ñ Ñ€ÐµÐ´ CliLink.Description=\ - \u0414\u043e\u0441\u0442\u044a\u043f \u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 Jenkins \u043e\u0442 \u043a\u043e\u043c\u0430\u043d\u0434\u043d\u0438\u044f \u0440\u0435\u0434 \u0438\u043b\u0438 \u0441\u043a\u0440\u0438\u043f\u0442. + ДоÑтъп и управление на Jenkins от ÐºÐ¾Ð¼Ð°Ð½Ð´Ð½Ð¸Ñ Ñ€ÐµÐ´ или Ñкрипт. ConsoleLink.DisplayName=\ - \u041a\u043e\u043d\u0437\u043e\u043b\u0430 + Конзола ConsoleLink.Description=\ - \u0418\u0437\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u0435\u043d \u0441\u043a\u0440\u0438\u043f\u0442 \u0437\u0430 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043d\u0435, \u043e\u0442\u043a\u0440\u0438\u0432\u0430\u043d\u0435 \u0438 \u043e\u0442\u0441\u0442\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435\ - \u043d\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0438. + Изпълнение на произволен Ñкрипт за админиÑтриране, откриване и отÑтранÑване\ + на проблеми. NodesLink.DisplayName=\ - \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u043c\u0430\u0448\u0438\u043d\u0438 + Управление на машини NodesLink.Description=\ - \u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435, \u043f\u0440\u0435\u043c\u0430\u0445\u0432\u0430\u043d\u0435, \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u0438\u0442\u0435 \u043c\u0430\u0448\u0438\u043d\u0438, \u043d\u0430 \u043a\u043e\u0438\u0442\u043e \u0440\u0430\u0431\u043e\u0442\u0438 Jenkins. + ДобавÑне, премахване, управление на различните машини, на които работи Jenkins. ShutdownLink.DisplayName_prepare=\ - \u041f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u0437\u0430 \u0438\u0437\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 + Подготовка за изключване ShutdownLink.DisplayName_cancel=\ - \u041e\u0442\u043c\u044f\u043d\u0430 \u043d\u0430 \u0438\u0437\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435\u0442\u043e + ОтмÑна на изключването ShutdownLink.Description=\ - \u041d\u0435\u0434\u043e\u043f\u0443\u0441\u043a\u0430\u043d\u0435 \u043d\u0430 \u043d\u043e\u0432\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f, \u0437\u0430 \u0434\u0430 \u043c\u043e\u0436\u0435 \u0432 \u0434\u0430\u0434\u0435\u043d \u043c\u043e\u043c\u0435\u043d\u0442 \u043c\u0430\u0448\u0438\u043d\u0430\u0442\u0430 \u0434\u0430 \u0431\u044a\u0434\u0435\ - \u0441\u043f\u0440\u044f\u043d\u0430. + ÐедопуÑкане на нови изгражданиÑ, за да може в даден момент машината да бъде\ + ÑпрÑна. # Configure tools, their locations and automatic installers. ConfigureTools.Description=\ - \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438\u0442\u0435, \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u0442\u0430 \u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e\u0442\u043e \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435. + ÐаÑтройване на инÑтрументите, меÑтоположениÑта и автоматичното инÑталиране. # Global Tool Configuration ConfigureTools.DisplayName=\ - \u041e\u0431\u0449\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438\u0442\u0435 + Общи наÑтройки на инÑтрументите # Administrative Monitors Notifier AdministrativeMonitorsDecorator.DisplayName=\ - \u0418\u0437\u0432\u0435\u0441\u0442\u0438\u044f \u0437\u0430 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u044f + ИзвеÑÑ‚Ð¸Ñ Ð·Ð° Ð¿Ñ€ÐµÐ´ÑƒÐ¿Ñ€ÐµÐ¶Ð´ÐµÐ½Ð¸Ñ diff --git a/core/src/main/resources/jenkins/management/Messages_cs.properties b/core/src/main/resources/jenkins/management/Messages_cs.properties index 72b929c0497f..62fcd15422b0 100644 --- a/core/src/main/resources/jenkins/management/Messages_cs.properties +++ b/core/src/main/resources/jenkins/management/Messages_cs.properties @@ -22,20 +22,20 @@ # THE SOFTWARE. # -PluginsLink.Description=P\u0159id\u00E1v\u00E1n\u00ED, odstra\u0148ov\u00E1n\u00ED, zap\u00EDn\u00E1n\u00ED a vyp\u00EDn\u00E1n\u00ED plugin\u016F kter\u00E9 mohou roz\u0161i\u0159ovat funkcionalitu Jenkinse. -ConfigureLink.DisplayName=Nastavit syst\u00E9m -ConfigureLink.Description=Nastavit glob\u00E1ln\u00ED nastaven\u00ED a cesty -ReloadLink.Description=Zahodit v\u0161echna nahran\u00E1 data v pam\u011Bti a znovu nahr\u00E1t v\u0161e z disku.\n\ - Hod\u00ED se pokud jste zm\u011Bnili konfigura\u010Dn\u00ED soubory p\u0159\u00EDmo na disku. -SystemInfoLink.Description=Zobrazuje r\u016Fzn\u00E9 informace o prost\u0159ed\u00ED ke snadn\u011Bj\u0161\u00EDmu hled\u00E1n\u00ED chyb. -CliLink.Description=P\u0159\u00EDstup/nastaven\u00ED Jenkinse z p\u0159\u00EDkazov\u00E9 \u0159\u00E1dky nebo pomoc\u00ED skriptu. -StatisticsLink.DisplayName=Z\u00E1t\u011B\u017Eov\u00E9 statistiky -StatisticsLink.Description=Zkontrolujte vyu\u017Eit\u00ED syst\u00E9mov\u00FDch zdroj\u016F a zjist\u011Bte, zda nepot\u0159ebujete pro va\u0161e buildy dal\u0161\u00ED hardware. +PluginsLink.Description=PÅ™idávání, odstraňování, zapínání a vypínání pluginů které mohou rozÅ¡iÅ™ovat funkcionalitu Jenkinse. +ConfigureLink.DisplayName=Nastavit systém +ConfigureLink.Description=Nastavit globální nastavení a cesty +ReloadLink.Description=Zahodit vÅ¡echna nahraná data v pamÄ›ti a znovu nahrát vÅ¡e z disku.\n\ + Hodí se pokud jste zmÄ›nili konfiguraÄní soubory přímo na disku. +SystemInfoLink.Description=Zobrazuje různé informace o prostÅ™edí ke snadnÄ›jšímu hledání chyb. +CliLink.Description=Přístup/nastavení Jenkinse z příkazové řádky nebo pomocí skriptu. +StatisticsLink.DisplayName=Zátěžové statistiky +StatisticsLink.Description=Zkontrolujte využití systémových zdrojů a zjistÄ›te, zda nepotÅ™ebujete pro vaÅ¡e buildy další hardware. PluginsLink.DisplayName=Spravovat pluginy -ShutdownLink.DisplayName_prepare=P\u0159ipravit na vypnut\u00ED -ReloadLink.DisplayName=Znovu nahr\u00E1t konfiguraci z disku +ShutdownLink.DisplayName_prepare=PÅ™ipravit na vypnutí +ReloadLink.DisplayName=Znovu nahrát konfiguraci z disku ConsoleLink.DisplayName=Konzole -ShutdownLink.Description=P\u0159estane spou\u0161t\u011Bt nov\u00E9 buildy, aby mohl b\u00FDt syst\u00E9m pozd\u011Bji bezpe\u010Dn\u011B vypnut. -SystemInfoLink.DisplayName=Syst\u00E9mov\u00E9 informace -SystemLogLink.Description=Syst\u00E9mov\u00FD log ukl\u00E1d\u00E1 v\u00FDstup java.util.logging, kter\u00FD se t\u00FDk\u00E1 Jenkinse. +ShutdownLink.Description=PÅ™estane spouÅ¡tÄ›t nové buildy, aby mohl být systém pozdÄ›ji bezpeÄnÄ› vypnut. +SystemInfoLink.DisplayName=Systémové informace +SystemLogLink.Description=Systémový log ukládá výstup java.util.logging, který se týká Jenkinse. diff --git a/core/src/main/resources/jenkins/management/Messages_da.properties b/core/src/main/resources/jenkins/management/Messages_da.properties index e7549ed089b0..0f25d06b37b5 100644 --- a/core/src/main/resources/jenkins/management/Messages_da.properties +++ b/core/src/main/resources/jenkins/management/Messages_da.properties @@ -23,23 +23,23 @@ # SystemInfoLink.DisplayName=Systeminformation -CliLink.Description=Tilg\u00E5/bestyr Jenkins fra din shell eller fra dit skript. +CliLink.Description=TilgÃ¥/bestyr Jenkins fra din shell eller fra dit skript. ConfigureLink.Description=Konfigurer globale indstillinger og stier. -ShutdownLink.Description=Stopper udf\u00F8ring at nye byg, s\u00E5 systemet kan lukke sikkert ned. -ReloadLink.DisplayName=Genindl\u00E6s konfiguration fra harddisk +ShutdownLink.Description=Stopper udføring at nye byg, sÃ¥ systemet kan lukke sikkert ned. +ReloadLink.DisplayName=Genindlæs konfiguration fra harddisk SystemLogLink.Description=Systemloggen opsamler output fra java.util.logging relateret til Jenkins. -NodesLink.Description=Tilf\u00F8je, slette, h\u00E5ndtere og overv\u00E5ge de forskellige knuder som Jenkins k\u00F8rer jobs p\u00E5. -PluginsLink.DisplayName=Pluginh\u00E5ndtering +NodesLink.Description=Tilføje, slette, hÃ¥ndtere og overvÃ¥ge de forskellige knuder som Jenkins kører jobs pÃ¥. +PluginsLink.DisplayName=PluginhÃ¥ndtering StatisticsLink.Description=Tjek dit ressourceforbrug og se om du har brug for flere maskiner til dine byg. ConfigureLink.DisplayName=Konfigurer systemet NodesLink.DisplayName=Bestyr Noder StatisticsLink.DisplayName=Belastningsstatistik -SystemInfoLink.Description=Viser forskellige milj\u00F8informationer for at lette fejlfinding. +SystemInfoLink.Description=Viser forskellige miljøinformationer for at lette fejlfinding. ConsoleLink.DisplayName=Skriptkonsol -PluginsLink.Description=Tilf\u00F8j, fjern og sl\u00E5 fra/til diverse plugins, der udvider Jenkins funktionalitet. +PluginsLink.Description=Tilføj, fjern og slÃ¥ fra/til diverse plugins, der udvider Jenkins funktionalitet. ShutdownLink.DisplayName_cancel=Aflys nedlukning ConsoleLink.Description=Afvikler selvvalgt skript til administration/fejlfinding/diagnostik. -ReloadLink.Description=Forkast alle indl\u00E6ste data i RAM og genindl\u00E6s alt fra harddisken.\n\ - Nyttigt hvis du har modificeret konfigurationsfiler direkte p\u00E5 disken. +ReloadLink.Description=Forkast alle indlæste data i RAM og genindlæs alt fra harddisken.\n\ + Nyttigt hvis du har modificeret konfigurationsfiler direkte pÃ¥ disken. ShutdownLink.DisplayName_prepare=forbered nedlukning diff --git a/core/src/main/resources/jenkins/management/Messages_de.properties b/core/src/main/resources/jenkins/management/Messages_de.properties index 4ba968c4eb0d..d4f58db261f1 100644 --- a/core/src/main/resources/jenkins/management/Messages_de.properties +++ b/core/src/main/resources/jenkins/management/Messages_de.properties @@ -23,24 +23,24 @@ # ReloadLink.DisplayName=Konfiguration von Festplatte neu laden -ReloadLink.Description=Verwirft alle Daten im Speicher und l\u00E4dt die Konfigurationsdateien erneut aus dem Dateisystem.\n\ - Dies ist n\u00FCtzlich, wenn Sie Konfigurationsdateien direkt editiert haben. +ReloadLink.Description=Verwirft alle Daten im Speicher und lädt die Konfigurationsdateien erneut aus dem Dateisystem.\n\ + Dies ist nützlich, wenn Sie Konfigurationsdateien direkt editiert haben. PluginsLink.DisplayName=Plugins verwalten SystemInfoLink.DisplayName=Systeminformationen -SystemInfoLink.Description=Zeigt Umgebungsinformationen an, z.B. zur Unterst\u00FCtzung bei der Fehlersuche. +SystemInfoLink.Description=Zeigt Umgebungsinformationen an, z.B. zur Unterstützung bei der Fehlersuche. SystemLogLink.Description=Zeigt protokollierte Ereignisse im Jenkins Systemlog an. ConsoleLink.DisplayName=Skript-Konsole -ConsoleLink.Description=F\u00FChrt ein beliebiges Skript aus zur Administration/Fehlersuche/Diagnose. +ConsoleLink.Description=Führt ein beliebiges Skript aus zur Administration/Fehlersuche/Diagnose. ShutdownLink.DisplayName_cancel=Herunterfahren abbrechen ShutdownLink.DisplayName_prepare=Herunterfahren vorbereiten -ShutdownLink.Description=Verhindert die Ausf\u00FChrung neuer Builds, so dass Jenkins sicher heruntergefahren werden kann. +ShutdownLink.Description=Verhindert die Ausführung neuer Builds, so dass Jenkins sicher heruntergefahren werden kann. ConfigureLink.DisplayName=System konfigurieren ConfigureLink.Description=Globale Einstellungen und Pfade konfigurieren. -PluginsLink.Description=Plugins installieren, deinstallieren, aktivieren oder deaktivieren, welche die Funktionalit\u00E4t von Jenkins erweitern. +PluginsLink.Description=Plugins installieren, deinstallieren, aktivieren oder deaktivieren, welche die Funktionalität von Jenkins erweitern. StatisticsLink.DisplayName=Nutzungsstatistiken -StatisticsLink.Description=Ressourcenauslastung \u00FCberwachen und \u00FCberpr\u00FCfen, ob weitere Build-Knoten sinnvoll w\u00E4ren. +StatisticsLink.Description=Ressourcenauslastung überwachen und überprüfen, ob weitere Build-Knoten sinnvoll wären. NodesLink.DisplayName=Knoten verwalten -NodesLink.Description=Knoten hinzuf\u00FCgen, entfernen, steuern und \u00FCberwachen, auf denen Jenkins Projekte verteilt ausf\u00FChren kann. +NodesLink.Description=Knoten hinzufügen, entfernen, steuern und überwachen, auf denen Jenkins Projekte verteilt ausführen kann. CliLink.Description=Jenkins aus der Kommandozeile oder skriptgesteuert nutzen und verwalten. CliLink.DisplayName=Jenkins CLI SystemLogLink.DisplayName=Systemlog diff --git a/core/src/main/resources/jenkins/management/Messages_el.properties b/core/src/main/resources/jenkins/management/Messages_el.properties index cc8349085f90..66c07171b745 100644 --- a/core/src/main/resources/jenkins/management/Messages_el.properties +++ b/core/src/main/resources/jenkins/management/Messages_el.properties @@ -22,5 +22,5 @@ # THE SOFTWARE. # -ConfigureLink.DisplayName=\u03A1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2 \u03C3\u03C5\u03C3\u03C4\u03AE\u03BC\u03B1\u03C4\u03BF\u03C2 -ShutdownLink.DisplayName_prepare=\u03A0\u03C1\u03BF\u03B5\u03C4\u03BF\u03B9\u03BC\u03B1\u03C3\u03AF\u03B1 \u03B3\u03B9\u03B1 +ConfigureLink.DisplayName=Ρυθμίσεις συστήματος +ShutdownLink.DisplayName_prepare=ΠÏοετοιμασία για diff --git a/core/src/main/resources/jenkins/management/Messages_es.properties b/core/src/main/resources/jenkins/management/Messages_es.properties index d3103f659f36..f6c8eed36b07 100644 --- a/core/src/main/resources/jenkins/management/Messages_es.properties +++ b/core/src/main/resources/jenkins/management/Messages_es.properties @@ -22,24 +22,24 @@ # THE SOFTWARE. # -NodesLink.Description=A\u00F1adir, borrar, gestionar y monitorizar los nodos sobre los que Jenkins ejecuta tareas. -PluginsLink.Description=A\u00F1adir, borrar, desactivar y activar plugins que extienden la funcionalidad de Jenkins. +NodesLink.Description=Añadir, borrar, gestionar y monitorizar los nodos sobre los que Jenkins ejecuta tareas. +PluginsLink.Description=Añadir, borrar, desactivar y activar plugins que extienden la funcionalidad de Jenkins. ShutdownLink.DisplayName_cancel=Cancelar apagado ConfigureLink.Description=Configurar variables globales y rutas. ConfigureLink.DisplayName=Configurar el Sistema ReloadLink.Description=Descartar todos los datos cargados en memoria y actualizar todo nuevamente desde los ficheros del sistema.\n\ - \u00DAtil cuando se modifican ficheros de configuraci\u00F3n directamente en el disco duro. -SystemInfoLink.Description=Muestra informaci\u00F3n del entorno que puedan ayudar a la soluci\u00F3n de problemas. -ConsoleLink.Description=Ejecutar script para la administraci\u00F3n, diagn\u00F3stico y soluci\u00F3n de problemas. + Útil cuando se modifican ficheros de configuración directamente en el disco duro. +SystemInfoLink.Description=Muestra información del entorno que puedan ayudar a la solución de problemas. +ConsoleLink.Description=Ejecutar script para la administración, diagnóstico y solución de problemas. CliLink.Description=Accede y administra Jenkins desde la consola, o desde scripts -StatisticsLink.DisplayName=Estad\u00EDsticas de Carga -StatisticsLink.Description=Comprobar la utilizaci\u00F3n de los recursos y comprobar si es necesario a\u00F1adir nuevos nodos para la ejecuci\u00F3n de tareas. +StatisticsLink.DisplayName=Estadísticas de Carga +StatisticsLink.Description=Comprobar la utilización de los recursos y comprobar si es necesario añadir nuevos nodos para la ejecución de tareas. NodesLink.DisplayName=Administrar Nodos PluginsLink.DisplayName=Administrar Plugins ShutdownLink.DisplayName_prepare=Preparar Jenkins para apagar el contenedor -ReloadLink.DisplayName=Actualizar configuraci\u00F3n desde el disco duro. +ReloadLink.DisplayName=Actualizar configuración desde el disco duro. ConsoleLink.DisplayName=Consola de scripts -ShutdownLink.Description=Detener la ejecuci\u00F3n de nuevas tareas para que el sistema pueda apagarse de manera segura. -SystemInfoLink.DisplayName=Informaci\u00F3n del sistema +ShutdownLink.Description=Detener la ejecución de nuevas tareas para que el sistema pueda apagarse de manera segura. +SystemInfoLink.DisplayName=Información del sistema SystemLogLink.Description=El log del sistema captura la salidad de la clase java.util.logging en todo lo relacionado con Jenkins. diff --git a/core/src/main/resources/jenkins/management/Messages_fi.properties b/core/src/main/resources/jenkins/management/Messages_fi.properties index 8b81a92b078e..f04aff3a9103 100644 --- a/core/src/main/resources/jenkins/management/Messages_fi.properties +++ b/core/src/main/resources/jenkins/management/Messages_fi.properties @@ -22,24 +22,24 @@ # THE SOFTWARE. # -NodesLink.Description=Lis\u00E4\u00E4, poista, hallitse ja monitoroi Jenkinsin k\u00E4\u00E4nn\u00F6ssolmuja. -PluginsLink.Description=Lis\u00E4\u00E4, poista, sammuta tai k\u00E4ynnist\u00E4 liit\u00E4nn\u00E4isi\u00E4, joilla voit laajentaa Jenkinsin toiminnallisuutta. -ShutdownLink.DisplayName_cancel=Keskeyt\u00E4 alasajo -ConfigureLink.DisplayName=J\u00E4rjestelm\u00E4n asetukset -ConfigureLink.Description=S\u00E4\u00E4d\u00E4 j\u00E4rjestelm\u00E4n asetuksia ja polkuja. -ReloadLink.Description=Hylk\u00E4\u00E4 kaikki muistissa oleva tieto ja lataa kaikki uudelleen levylt\u00E4.\n\ - K\u00E4yt\u00E4nn\u00F6llinen muokattaessa konfiguraatioita suoraan levyll\u00E4. -SystemInfoLink.Description=N\u00E4ytt\u00E4\u00E4 erin\u00E4isi\u00E4 j\u00E4rjestelm\u00E4tietoja, jotka auttavat vianetsinn\u00E4ss\u00E4. -ConsoleLink.Description=Suorittaa erin\u00E4isi\u00E4 skriptej\u00E4 hallintaan, vianetsin\u00E4\u00E4n ja diagnostiikkaan. -CliLink.Description=Hallitse Jenkinsia komentorivilt\u00E4 tai skriptill\u00E4. +NodesLink.Description=Lisää, poista, hallitse ja monitoroi Jenkinsin käännössolmuja. +PluginsLink.Description=Lisää, poista, sammuta tai käynnistä liitännäisiä, joilla voit laajentaa Jenkinsin toiminnallisuutta. +ShutdownLink.DisplayName_cancel=Keskeytä alasajo +ConfigureLink.DisplayName=Järjestelmän asetukset +ConfigureLink.Description=Säädä järjestelmän asetuksia ja polkuja. +ReloadLink.Description=Hylkää kaikki muistissa oleva tieto ja lataa kaikki uudelleen levyltä.\n\ + Käytännöllinen muokattaessa konfiguraatioita suoraan levyllä. +SystemInfoLink.Description=Näyttää erinäisiä järjestelmätietoja, jotka auttavat vianetsinnässä. +ConsoleLink.Description=Suorittaa erinäisiä skriptejä hallintaan, vianetsinään ja diagnostiikkaan. +CliLink.Description=Hallitse Jenkinsia komentoriviltä tai skriptillä. StatisticsLink.DisplayName=Kuormitustilastot -StatisticsLink.Description=Tarkkaile resurssien k\u00E4ytt\u00F6\u00E4 ja seuraa, onko tarvetta lis\u00E4t\u00E4 kapasiteettia (tietokoneita) k\u00E4\u00E4nn\u00F6sty\u00F6t\u00E4 varten. -NodesLink.DisplayName=Hallitse Jenkinsin solmupisteit\u00E4 -PluginsLink.DisplayName=Hallinnoi liit\u00E4nn\u00E4isi\u00E4 +StatisticsLink.Description=Tarkkaile resurssien käyttöä ja seuraa, onko tarvetta lisätä kapasiteettia (tietokoneita) käännöstyötä varten. +NodesLink.DisplayName=Hallitse Jenkinsin solmupisteitä +PluginsLink.DisplayName=Hallinnoi liitännäisiä ShutdownLink.DisplayName_prepare=Valmistaudu alasajoon ReloadLink.DisplayName=Uudelleenlataa konfiguraatio ConsoleLink.DisplayName=Skriptikonsoli -ShutdownLink.Description=Pys\u00E4ytt\u00E4\u00E4 uusien k\u00E4\u00E4nn\u00F6ksien k\u00E4ynnist\u00E4misen niin ett\u00E4 j\u00E4rjestelm\u00E4 voidaan ajaa turvallisesti alas. -SystemInfoLink.DisplayName=J\u00E4rjestelm\u00E4tiedot -SystemLogLink.Description=J\u00E4rjestelm\u00E4lokia tuostettuna java.util.logging Jenkins ulostuloon. +ShutdownLink.Description=Pysäyttää uusien käännöksien käynnistämisen niin että järjestelmä voidaan ajaa turvallisesti alas. +SystemInfoLink.DisplayName=Järjestelmätiedot +SystemLogLink.Description=Järjestelmälokia tuostettuna java.util.logging Jenkins ulostuloon. diff --git a/core/src/main/resources/jenkins/management/Messages_fr.properties b/core/src/main/resources/jenkins/management/Messages_fr.properties index 0b913713a666..b1c910011529 100644 --- a/core/src/main/resources/jenkins/management/Messages_fr.properties +++ b/core/src/main/resources/jenkins/management/Messages_fr.properties @@ -22,37 +22,37 @@ # THE SOFTWARE. # -ConfigureLink.DisplayName=Configurer le syst\u00e8me -ConfigureLink.Description=Configurer les param\u00e8tres g\u00e9n\u00e9raux et les chemins de fichiers. +ConfigureLink.DisplayName=Configurer le système +ConfigureLink.Description=Configurer les paramètres généraux et les chemins de fichiers. ConfigureTools.DisplayName=Configuration globale des outils ConfigureTools.Description=Configurer les outils, leur localisation et les installeurs automatiques. -ReloadLink.DisplayName=Recharger la configuration \u00e0 partir du disque -ReloadLink.Description=Supprimer toutes les donn\u00e9es en m\u00e9moire et recharger tout \u00e0 partir du syst\u00e8me de fichiers.\n\ +ReloadLink.DisplayName=Recharger la configuration à partir du disque +ReloadLink.Description=Supprimer toutes les données en mémoire et recharger tout à partir du système de fichiers.\n\ Utile quand vous modifiez les fichiers de configuration directement sur le disque. PluginsLink.DisplayName=Gestion des plugins -PluginsLink.Description=Ajouter, supprimer, activer ou d\u00e9sactiver des plugins qui peuvent \u00e9tendre les fonctionnalit\u00e9s de Jenkins. +PluginsLink.Description=Ajouter, supprimer, activer ou désactiver des plugins qui peuvent étendre les fonctionnalités de Jenkins. -SystemInfoLink.DisplayName=Informations sur le syst\u00e8me -SystemInfoLink.Description=Affiche diverses informations relatives au syst\u00e8me pour aider \u00e0 la r\u00e9solution de probl\u00eames. +SystemInfoLink.DisplayName=Informations sur le système +SystemInfoLink.Description=Affiche diverses informations relatives au système pour aider à la résolution de problêmes. -SystemLogLink.DisplayName=Logs syst\u00e8mes -SystemLogLink.Description=Le log syst\u00e8me capture la sortie java.util.logging relative \u00e0 Jenkins. +SystemLogLink.DisplayName=Logs systèmes +SystemLogLink.Description=Le log système capture la sortie java.util.logging relative à Jenkins. StatisticsLink.DisplayName=Statistiques d''utilisation -StatisticsLink.Description=V\u00e9rifiez l''utilisation des ressources et d\u00e9cidez si vous avez besoin d''ordinateurs suppl\u00e9mentaires pour vos builds. +StatisticsLink.Description=Vérifiez l''utilisation des ressources et décidez si vous avez besoin d''ordinateurs supplémentaires pour vos builds. CliLink.DisplayName=Jenkins CLI -CliLink.Description=Acc\u00e9der ou g\u00e9rer Jenkins depuis votre shell ou depuis votre script. +CliLink.Description=Accéder ou gérer Jenkins depuis votre shell ou depuis votre script. ConsoleLink.DisplayName=Console de script -ConsoleLink.Description=Ex\u00e9cute des scripts arbitraires pour l''administration, la r\u00e9solution de probl\u00e8mes ou pour un diagnostic. +ConsoleLink.Description=Exécute des scripts arbitraires pour l''administration, la résolution de problèmes ou pour un diagnostic. -NodesLink.DisplayName=G\u00e9rer les n\u0153uds -NodesLink.Description=Ajouter, supprimer, contr\u00f4ler et monitorer les divers n\u0153uds que Jenkins utilise pour ex\u00e9cuter les jobs. +NodesLink.DisplayName=Gérer les nÅ“uds +NodesLink.Description=Ajouter, supprimer, contrôler et monitorer les divers nÅ“uds que Jenkins utilise pour exécuter les jobs. ShutdownLink.DisplayName_cancel=Annuler la fermeture -ShutdownLink.DisplayName_prepare=Pr\u00e9parer \u00e0 la fermeture -ShutdownLink.Description=Cesser d''ex\u00e9cuter de nouveaux builds, afin que le syst\u00e8me puisse se fermer. +ShutdownLink.DisplayName_prepare=Préparer à la fermeture +ShutdownLink.Description=Cesser d''exécuter de nouveaux builds, afin que le système puisse se fermer. diff --git a/core/src/main/resources/jenkins/management/Messages_he.properties b/core/src/main/resources/jenkins/management/Messages_he.properties index ae0cbbeca837..5991a0f261ec 100644 --- a/core/src/main/resources/jenkins/management/Messages_he.properties +++ b/core/src/main/resources/jenkins/management/Messages_he.properties @@ -22,13 +22,13 @@ # THE SOFTWARE. # -ConfigureLink.DisplayName=\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05DE\u05E2\u05E8\u05DB\u05EA -ConfigureLink.Description=\u05D4\u05D2\u05D3\u05E8\u05EA \u05DE\u05E9\u05EA\u05E0\u05D9\u05DD \u05D5\u05E1\u05E4\u05E8\u05D9\u05D5\u05EA -ReloadLink.Description=\u05D4\u05EA\u05E2\u05DC\u05DD \u05DE\u05D4\u05DE\u05D9\u05D3\u05E2 \u05D1\u05D6\u05DB\u05E8\u05D5\u05DF \u05D5\u05D8\u05E2\u05DF \u05E9\u05D5\u05D1 \u05DE\u05D4\u05D3\u05D9\u05E1\u05E7\n\ - \u05E9\u05D9\u05DE\u05D5\u05E9\u05D9 \u05DB\u05D0\u05E9\u05E8 \u05E2\u05D3\u05DB\u05E0\u05EA \u05E7\u05D1\u05E6\u05D9 \u05DE\u05E2\u05E8\u05DB\u05EA \u05DE\u05D4\u05D3\u05D9\u05E1\u05E7 -StatisticsLink.DisplayName=\u05D8\u05E2\u05DF \u05E1\u05D8\u05D8\u05D9\u05E1\u05D8\u05D9\u05E7\u05D5\u05EA -NodesLink.DisplayName=\u05E0\u05D4\u05DC \u05EA\u05D7\u05E0\u05D5\u05EA -PluginsLink.DisplayName=\u05E0\u05D4\u05DC \u05EA\u05D5\u05E1\u05E4\u05D9\u05DD -ShutdownLink.DisplayName_prepare=\u05D4\u05EA\u05DB\u05D5\u05E0\u05DF \u05DC\u05DB\u05D9\u05D1\u05D5\u05D9 -ReloadLink.DisplayName=\u05D8\u05E2\u05DF \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05DE\u05D4\u05D3\u05D9\u05E1\u05E7 -SystemInfoLink.DisplayName=\u05DE\u05D9\u05D3\u05E2 \u05D0\u05D5\u05D3\u05D5\u05EA \u05D4\u05DE\u05E2\u05E8\u05DB\u05EA +ConfigureLink.DisplayName=הגדרות מערכת +ConfigureLink.Description=הגדרת ×ž×©×ª× ×™× ×•×¡×¤×¨×™×•×ª +ReloadLink.Description=×”×ª×¢×œ× ×ž×”×ž×™×“×¢ בזכרון וטען שוב מהדיסק\n\ + שימושי ×›×שר עדכנת קבצי מערכת מהדיסק +StatisticsLink.DisplayName=טען סטטיסטיקות +NodesLink.DisplayName=נהל תחנות +PluginsLink.DisplayName=נהל ×ª×•×¡×¤×™× +ShutdownLink.DisplayName_prepare=התכונן לכיבוי +ReloadLink.DisplayName=טען הגדרות מהדיסק +SystemInfoLink.DisplayName=מידע ×ודות המערכת diff --git a/core/src/main/resources/jenkins/management/Messages_hu.properties b/core/src/main/resources/jenkins/management/Messages_hu.properties index b50122d98b69..ae70aeb277b8 100644 --- a/core/src/main/resources/jenkins/management/Messages_hu.properties +++ b/core/src/main/resources/jenkins/management/Messages_hu.properties @@ -22,17 +22,17 @@ # THE SOFTWARE. # -PluginsLink.Description=A Jenkins tud\u00E1s\u00E1t n\u00F6vel\u0151 b\u0151v\u00EDtm\u00E9nyek hozz\u00E1ad\u00E1sa, elt\u00E1vol\u00EDt\u00E1sa, ki- vagy bekapcsol\u00E1sa. -ConfigureLink.DisplayName=Rendszer Be\u00E1ll\u00EDt\u00E1sok -ConfigureLink.Description=Glob\u00E1lis be\u00E1ll\u00EDt\u00E1sok \u00E9s \u00FAtvonalak -ReloadLink.Description=A mem\u00F3ri\u00E1ban t\u00E1rolt adatok t\u00F6rl\u00E9se, \u00E9s minden adat \u00FAjra t\u00F6lt\u00E9se a file rendszerb\u0151l.\n\ - Hasznos, mikor a lemezen t\u00E1rolt be\u00E1ll\u00EDt\u00E1sok k\u00F6zvetlen\u00FCl lettek m\u00F3dos\u00EDtva. -SystemInfoLink.Description=Hibakeres\u00E9shez seg\u00EDts\u00E9get ad\u00F3 k\u00FCl\u00F6nb\u00F6z\u0151 k\u00F6rnyezeti v\u00E1ltoz\u00F3kat jelen\u00EDt meg. -StatisticsLink.DisplayName=Kimutat\u00E1sok bet\u00F6lt\u00E9se -StatisticsLink.Description=Ellen\u0151rizd az er\u0151forr\u00E1s kihaszn\u00E1lts\u00E1got, hogy sz\u00FCks\u00E9g van-e t\u00F6bb rendszerre az \u00E9p\u00EDt\u00E9sek sz\u00E1m\u00E1ra. -NodesLink.DisplayName=Csom\u00F3pontok Kezel\u00E9se -PluginsLink.DisplayName=Kieg\u00E9sz\u00EDt\u0151k Kezel\u00E9se -ShutdownLink.DisplayName_prepare=Felk\u00E9sz\u00FCl\u00E9s Le\u00E1ll\u00EDt\u00E1sra -ReloadLink.DisplayName=A diszken l\u00E9v\u0151 be\u00E1ll\u00EDt\u00E1sok \u00FAjrat\u00F6lt\u00E9se +PluginsLink.Description=A Jenkins tudását növelÅ‘ bÅ‘vítmények hozzáadása, eltávolítása, ki- vagy bekapcsolása. +ConfigureLink.DisplayName=Rendszer Beállítások +ConfigureLink.Description=Globális beállítások és útvonalak +ReloadLink.Description=A memóriában tárolt adatok törlése, és minden adat újra töltése a file rendszerbÅ‘l.\n\ + Hasznos, mikor a lemezen tárolt beállítások közvetlenül lettek módosítva. +SystemInfoLink.Description=Hibakereséshez segítséget adó különbözÅ‘ környezeti változókat jelenít meg. +StatisticsLink.DisplayName=Kimutatások betöltése +StatisticsLink.Description=EllenÅ‘rizd az erÅ‘forrás kihasználtságot, hogy szükség van-e több rendszerre az építések számára. +NodesLink.DisplayName=Csomópontok Kezelése +PluginsLink.DisplayName=KiegészítÅ‘k Kezelése +ShutdownLink.DisplayName_prepare=Felkészülés Leállításra +ReloadLink.DisplayName=A diszken lévÅ‘ beállítások újratöltése ConsoleLink.DisplayName=Szkript Konzol -SystemInfoLink.DisplayName=Rendszer Inform\u00E1ci\u00F3k +SystemInfoLink.DisplayName=Rendszer Információk diff --git a/core/src/main/resources/jenkins/management/Messages_it.properties b/core/src/main/resources/jenkins/management/Messages_it.properties index 6f0d3931454c..0d8770481329 100644 --- a/core/src/main/resources/jenkins/management/Messages_it.properties +++ b/core/src/main/resources/jenkins/management/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -37,10 +37,10 @@ NodesLink.Description=Aggiungi, rimuovi, controlla e monitora i vari nodi su \ cui Jenkins esegue dei processi. NodesLink.DisplayName=Gestisci nodi e cloud PluginsLink.Description=Aggiungi, rimuovi, disabilita o abilita componenti \ - aggiuntivi che possono estendere la funzionalità di Jenkins. + aggiuntivi che possono estendere la funzionalità di Jenkins. PluginsLink.DisplayName=Gestisci componenti aggiuntivi ReloadLink.Description=Scarta tutti i dati caricati in memoria e ricarica \ - tutto dal filesystem.\nQuest''opzione è utile se si sono modificati dei \ + tutto dal filesystem.\nQuest''opzione è utile se si sono modificati dei \ file di configurazione direttamente sul disco. ReloadLink.DisplayName=Ricarica configurazione da disco ShutdownLink.Description=Ferma l''esecuzione di nuove compilazioni in modo da \ @@ -48,7 +48,7 @@ ShutdownLink.Description=Ferma l''esecuzione di nuove compilazioni in modo da \ ShutdownLink.DisplayName_cancel=Annulla spegnimento ShutdownLink.DisplayName_prepare=Prepara per lo spegnimento StatisticsLink.Description=Verifica l''utilizzo delle risorse e determina se \ - sono necessari più computer per eseguire le compilazioni. + sono necessari più computer per eseguire le compilazioni. StatisticsLink.DisplayName=Statistiche di carico SystemInfoLink.Description=Visualizza varie informazioni relative \ all''ambiente per fornire assistenza durante la risoluzione di problemi. diff --git a/core/src/main/resources/jenkins/management/Messages_ja.properties b/core/src/main/resources/jenkins/management/Messages_ja.properties index 8bfa4fb7e753..f0bfc3b2be3c 100644 --- a/core/src/main/resources/jenkins/management/Messages_ja.properties +++ b/core/src/main/resources/jenkins/management/Messages_ja.properties @@ -22,33 +22,33 @@ # THE SOFTWARE. # -ConfigureLink.DisplayName=\u30b7\u30b9\u30c6\u30e0\u306e\u8a2d\u5b9a +ConfigureLink.DisplayName=システムã®è¨­å®š ConfigureLink.Description=\ - \u30b7\u30b9\u30c6\u30e0\u5168\u4f53\u306e\u632f\u308b\u821e\u3044\u3084\u30d1\u30b9\u3092\u8a2d\u5b9a\u3057\u307e\u3059\u3002 -ReloadLink.DisplayName=\u8a2d\u5b9a\u306e\u518d\u8aad\u307f\u8fbc\u307f + システム全体ã®æŒ¯ã‚‹èˆžã„やパスを設定ã—ã¾ã™ã€‚ +ReloadLink.DisplayName=設定ã®å†èª­ã¿è¾¼ã¿ ReloadLink.Description=\ - \u30e1\u30e2\u30ea\u5185\u306b\u30ed\u30fc\u30c9\u3055\u308c\u305f\u5168\u3066\u306e\u30c7\u30fc\u30bf\u3092\u7834\u68c4\u3057\u3001\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u304b\u3089\u518d\u30ed\u30fc\u30c9\u3057\u307e\u3059\u3002\n\ - \u76f4\u63a5\u30c7\u30a3\u30b9\u30af\u4e0a\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u5909\u66f4\u3057\u305f\u3068\u304d\u306b\u5f79\u306b\u7acb\u3061\u307e\u3059\u3002 -PluginsLink.DisplayName=\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u7ba1\u7406 + メモリ内ã«ãƒ­ãƒ¼ãƒ‰ã•ã‚ŒãŸå…¨ã¦ã®ãƒ‡ãƒ¼ã‚¿ã‚’破棄ã—ã€ãƒ•ã‚¡ã‚¤ãƒ«ã‚·ã‚¹ãƒ†ãƒ ã‹ã‚‰å†ãƒ­ãƒ¼ãƒ‰ã—ã¾ã™ã€‚\n\ + 直接ディスク上ã®è¨­å®šãƒ•ã‚¡ã‚¤ãƒ«ã‚’変更ã—ãŸã¨ãã«å½¹ã«ç«‹ã¡ã¾ã™ã€‚ +PluginsLink.DisplayName=プラグインã®ç®¡ç† PluginsLink.Description=\ - Jenkins\u306e\u6a5f\u80fd\u3092\u62e1\u5f35\u53ef\u80fd\u306a\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u8ffd\u52a0\u3001\u524a\u9664\u3001\u7121\u52b9\u5316\u304a\u3088\u3073\u6709\u52b9\u5316\u3092\u884c\u3044\u307e\u3059\u3002 -SystemInfoLink.DisplayName=\u30b7\u30b9\u30c6\u30e0\u60c5\u5831 + Jenkinsã®æ©Ÿèƒ½ã‚’æ‹¡å¼µå¯èƒ½ãªãƒ—ラグインã®è¿½åŠ ã€å‰Šé™¤ã€ç„¡åŠ¹åŒ–ãŠã‚ˆã³æœ‰åŠ¹åŒ–ã‚’è¡Œã„ã¾ã™ã€‚ +SystemInfoLink.DisplayName=システム情報 SystemInfoLink.Description=\ - \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0\u3092\u52a9\u3051\u308b\u305f\u3081\u306e\u69d8\u3005\u306a\u74b0\u5883\u5909\u6570\u306e\u60c5\u5831\u3092\u8868\u793a\u3057\u307e\u3059\u3002 -SystemLogLink.DisplayName=\u30b7\u30b9\u30c6\u30e0\u30ed\u30b0 + トラブルシューティングを助ã‘ã‚‹ãŸã‚ã®æ§˜ã€…ãªç’°å¢ƒå¤‰æ•°ã®æƒ…報を表示ã—ã¾ã™ã€‚ +SystemLogLink.DisplayName=システムログ SystemLogLink.Description=\ - \u30b7\u30b9\u30c6\u30e0\u30ed\u30b0\u306fJenkins\u95a2\u9023\u306ejava.util.logging\u304b\u3089\u306e\u51fa\u529b\u3092\u30ad\u30e3\u30d7\u30c1\u30e3\u30fc\u3057\u307e\u3059\u3002 -StatisticsLink.DisplayName=\u8ca0\u8377\u7d71\u8a08 -StatisticsLink.Description=\u30ea\u30bd\u30fc\u30b9\u306e\u5229\u7528\u72b6\u6cc1\u3092\u30c1\u30a7\u30c3\u30af\u3057\u3066\u3001\u3082\u3063\u3068\u30b3\u30f3\u30d4\u30e5\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0\u3057\u3066\u30d3\u30eb\u30c9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u304b\u628a\u63e1\u3057\u307e\u3059\u3002 -ConsoleLink.DisplayName=\u30b9\u30af\u30ea\u30d7\u30c8\u30b3\u30f3\u30bd\u30fc\u30eb + システムログã¯Jenkins関連ã®java.util.loggingã‹ã‚‰ã®å‡ºåŠ›ã‚’キャプãƒãƒ£ãƒ¼ã—ã¾ã™ã€‚ +StatisticsLink.DisplayName=è² è·çµ±è¨ˆ +StatisticsLink.Description=リソースã®åˆ©ç”¨çŠ¶æ³ã‚’ãƒã‚§ãƒƒã‚¯ã—ã¦ã€ã‚‚ã£ã¨ã‚³ãƒ³ãƒ”ューターを追加ã—ã¦ãƒ“ルドã™ã‚‹å¿…è¦ãŒã‚ã‚‹ã‹æŠŠæ¡ã—ã¾ã™ã€‚ +ConsoleLink.DisplayName=スクリプトコンソール ConsoleLink.Description=\ - \u7ba1\u7406/\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0/\u8a3a\u65ad\u306e\u305f\u3081\u306b\u4efb\u610f\u306e\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059\u3002 -NodesLink.DisplayName=\u30ce\u30fc\u30c9\u306e\u7ba1\u7406 + 管ç†/トラブルシューティング/診断ã®ãŸã‚ã«ä»»æ„ã®ã‚¹ã‚¯ãƒªãƒ—トを実行ã—ã¾ã™ã€‚ +NodesLink.DisplayName=ノードã®ç®¡ç† NodesLink.Description=\ - Jenkins\u304c\u30b8\u30e7\u30d6\u3092\u5b9f\u884c\u3059\u308b\u69d8\u3005\u306a\u30ce\u30fc\u30c9\u306e\u8ffd\u52a0\u3001\u524a\u9664\u3001\u5236\u5fa1\u304a\u3088\u3073\u76e3\u8996\u3092\u884c\u3044\u307e\u3059\u3002 -ShutdownLink.DisplayName_cancel=\u30b7\u30e3\u30c3\u30c8\u30c0\u30a6\u30f3\u306e\u30ad\u30e3\u30f3\u30bb\u30eb -ShutdownLink.DisplayName_prepare=\u30b7\u30e3\u30c3\u30c8\u30c0\u30a6\u30f3\u306e\u6e96\u5099 + JenkinsãŒã‚¸ãƒ§ãƒ–を実行ã™ã‚‹æ§˜ã€…ãªãƒŽãƒ¼ãƒ‰ã®è¿½åŠ ã€å‰Šé™¤ã€åˆ¶å¾¡ãŠã‚ˆã³ç›£è¦–ã‚’è¡Œã„ã¾ã™ã€‚ +ShutdownLink.DisplayName_cancel=シャットダウンã®ã‚­ãƒ£ãƒ³ã‚»ãƒ« +ShutdownLink.DisplayName_prepare=シャットダウンã®æº–å‚™ ShutdownLink.Description=\ - \u5b89\u5168\u306b\u30b7\u30b9\u30c6\u30e0\u3092\u6b62\u3081\u308b\u305f\u3081\u306b\u3001\u65b0\u3057\u3044\u30d3\u30eb\u30c9\u306e\u5b9f\u884c\u3092\u4e2d\u65ad\u3057\u307e\u3059\u3002 + 安全ã«ã‚·ã‚¹ãƒ†ãƒ ã‚’æ­¢ã‚ã‚‹ãŸã‚ã«ã€æ–°ã—ã„ビルドã®å®Ÿè¡Œã‚’中断ã—ã¾ã™ã€‚ CliLink.DisplayName=Jenkins CLI -CliLink.Description=\u30b7\u30a7\u30eb\u3084\u30b9\u30af\u30ea\u30d7\u30c8\u304b\u3089Jenkins\u306b\u30a2\u30af\u30bb\u30b9/\u7ba1\u7406\u3057\u307e\u3059\u3002 +CliLink.Description=シェルやスクリプトã‹ã‚‰Jenkinsã«ã‚¢ã‚¯ã‚»ã‚¹/管ç†ã—ã¾ã™ã€‚ diff --git a/core/src/main/resources/jenkins/management/Messages_ko.properties b/core/src/main/resources/jenkins/management/Messages_ko.properties index 3f6d455a9d83..4cff50116ea9 100644 --- a/core/src/main/resources/jenkins/management/Messages_ko.properties +++ b/core/src/main/resources/jenkins/management/Messages_ko.properties @@ -22,12 +22,12 @@ # THE SOFTWARE. # -PluginsLink.Description=Jenkins\uC758 \uAE30\uB2A5\uC744 \uD655\uC7A5\uD558\uAE30 \uC704\uD55C \uD50C\uB7EC\uADF8\uC778\uC744 \uCD94\uAC00, \uC81C\uAC70, \uC0AC\uC6A9, \uBBF8\uC0AC\uC6A9\uC73C\uB85C \uC124\uC815\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4. -ConfigureLink.DisplayName=\uC2DC\uC2A4\uD15C \uC124\uC815 -ConfigureLink.Description=\uD658\uACBD\uBCC0\uC218 \uBC0F \uACBD\uB85C \uC815\uBCF4\uB4F1\uC744 \uC124\uC815\uD569\uB2C8\uB2E4. -SystemInfoLink.Description=\uBB38\uC81C \uD574\uACB0\uC744 \uB3D5\uAE30\uC704\uD55C \uB2E4\uC591\uD55C \uD658\uACBD \uC815\uBCF4\uB97C \uBCF4\uC5EC\uC90D\uB2C8\uB2E4. -StatisticsLink.DisplayName=\uBD80\uD558 \uD1B5\uACC4 -NodesLink.DisplayName=\uB178\uB4DC \uAD00\uB9AC -PluginsLink.DisplayName=\uD50C\uB7EC\uADF8\uC778 \uAD00\uB9AC -ShutdownLink.DisplayName_prepare=\uB044\uAE30\uC804 \uC900\uBE44 -SystemInfoLink.DisplayName=\uC2DC\uC2A4\uD15C \uC815\uBCF4 +PluginsLink.Description=Jenkinsì˜ ê¸°ëŠ¥ì„ í™•ìž¥í•˜ê¸° 위한 플러그ì¸ì„ 추가, 제거, 사용, 미사용으로 설정할 수 있습니다. +ConfigureLink.DisplayName=시스템 설정 +ConfigureLink.Description=환경변수 ë° ê²½ë¡œ ì •ë³´ë“±ì„ ì„¤ì •í•©ë‹ˆë‹¤. +SystemInfoLink.Description=문제 í•´ê²°ì„ ë•ê¸°ìœ„í•œ 다양한 환경 정보를 ë³´ì—¬ì¤ë‹ˆë‹¤. +StatisticsLink.DisplayName=부하 통계 +NodesLink.DisplayName=노드 관리 +PluginsLink.DisplayName=í”ŒëŸ¬ê·¸ì¸ ê´€ë¦¬ +ShutdownLink.DisplayName_prepare=ë„기전 준비 +SystemInfoLink.DisplayName=시스템 ì •ë³´ diff --git a/core/src/main/resources/jenkins/management/Messages_lt.properties b/core/src/main/resources/jenkins/management/Messages_lt.properties index 5441f817a5ca..49a45973fd8f 100644 --- a/core/src/main/resources/jenkins/management/Messages_lt.properties +++ b/core/src/main/resources/jenkins/management/Messages_lt.properties @@ -1,32 +1,32 @@ # This file is under the MIT License by authors -CliLink.Description=Prieiti/tvarkyti Jenkins\u0105 i\u0161 j\u016Bs\u0173 aplinkos arba skripto. +CliLink.Description=Prieiti/tvarkyti JenkinsÄ… iÅ¡ jÅ«sų aplinkos arba skripto. CliLink.DisplayName=Jenkins CLI -ConfigureLink.Description=Konfig\u016Bruoti globalius nustatymus ir kelius. -ConfigureLink.DisplayName=Konfig\u016Bruoti sistem\u0105 +ConfigureLink.Description=KonfigÅ«ruoti globalius nustatymus ir kelius. +ConfigureLink.DisplayName=KonfigÅ«ruoti sistemÄ… -ConsoleLink.Description=Vykdo nurodyt\u0105 skript\u0105 administravimui/problem\u0173-aptikimui/diagnostikai. -ConsoleLink.DisplayName=Skript\u0173 konsol\u0117 +ConsoleLink.Description=Vykdo nurodytÄ… skriptÄ… administravimui/problemų-aptikimui/diagnostikai. +ConsoleLink.DisplayName=Skriptų konsolÄ— -NodesLink.Description=Prid\u0117ti, i\u0161imti, valdyti ir steb\u0117ti skirtingus mazgus, kuriuose Jenkinsas vykdo darbus. +NodesLink.Description=PridÄ—ti, iÅ¡imti, valdyti ir stebÄ—ti skirtingus mazgus, kuriuose Jenkinsas vykdo darbus. NodesLink.DisplayName=Valdyti mazgus -PluginsLink.Description=Prid\u0117ti, i\u0161imti, i\u0161jungti ir \u012Fjungti priedus, kurie gali papildyti Jenkinso funkcionalum\u0105. +PluginsLink.Description=PridÄ—ti, iÅ¡imti, iÅ¡jungti ir įjungti priedus, kurie gali papildyti Jenkinso funkcionalumÄ…. PluginsLink.DisplayName=Valdyti priedus -ReloadLink.Description=I\u0161mesti visus \u012F atmint\u012F \u012Fkeltus duomenis ir visk\u0105 \u012Fkelti i\u0161 naujo i\u0161 fail\u0173 sistemos.\nNaudinga, kai failus pakeit\u0117te tiesiai diske. -ReloadLink.DisplayName=I\u0161 naujo \u012Fkelti konfig\u016Bracij\u0105 i\u0161 disko +ReloadLink.Description=IÅ¡mesti visus į atmintį įkeltus duomenis ir viskÄ… įkelti iÅ¡ naujo iÅ¡ failų sistemos.\nNaudinga, kai failus pakeitÄ—te tiesiai diske. +ReloadLink.DisplayName=IÅ¡ naujo įkelti konfigÅ«racijÄ… iÅ¡ disko -ShutdownLink.Description=Sustabdo nauj\u0173 darb\u0173 vykdym\u0105, kad b\u016Bt\u0173 galima saugiai i\u0161jungti sistem\u0105. -ShutdownLink.DisplayName_cancel=Nutraukti i\u0161jungim\u0105 -ShutdownLink.DisplayName_prepare=Pasiruo\u0161ti i\u0161jungimui +ShutdownLink.Description=Sustabdo naujų darbų vykdymÄ…, kad bÅ«tų galima saugiai iÅ¡jungti sistemÄ…. +ShutdownLink.DisplayName_cancel=Nutraukti iÅ¡jungimÄ… +ShutdownLink.DisplayName_prepare=PasiruoÅ¡ti iÅ¡jungimui -StatisticsLink.Description=Patikrinkite j\u016Bs\u0173 resurs\u0173 naudojim\u0105 ir pa\u017Ei\u016Br\u0117kite, ar jums reikia daugiau kompiuteri\u0173 darbams. +StatisticsLink.Description=Patikrinkite jÅ«sų resursų naudojimÄ… ir pažiÅ«rÄ—kite, ar jums reikia daugiau kompiuterių darbams. StatisticsLink.DisplayName=Apkrovos statistika -SystemInfoLink.Description=Rodo \u012Fvairi\u0105 aplinkos informacij\u0105, kuri padeda aptikti problemas. +SystemInfoLink.Description=Rodo įvairiÄ… aplinkos informacijÄ…, kuri padeda aptikti problemas. SystemInfoLink.DisplayName=Sistemos informacija -SystemLogLink.Description=Sistemos \u017Eurnale kaupiama informacija i\u0161 java.util.logging i\u0161vesties, susijusios su Jenkinsu. -SystemLogLink.DisplayName=Sistemos \u017Eurnalas +SystemLogLink.Description=Sistemos žurnale kaupiama informacija iÅ¡ java.util.logging iÅ¡vesties, susijusios su Jenkinsu. +SystemLogLink.DisplayName=Sistemos žurnalas diff --git a/core/src/main/resources/jenkins/management/Messages_lv.properties b/core/src/main/resources/jenkins/management/Messages_lv.properties index 4fa59d3f51c1..8e193046ae63 100644 --- a/core/src/main/resources/jenkins/management/Messages_lv.properties +++ b/core/src/main/resources/jenkins/management/Messages_lv.properties @@ -22,13 +22,13 @@ # THE SOFTWARE. # -ShutdownLink.DisplayName_cancel=Atcelt Izsl\u0113g\u0161anu -ConfigureLink.DisplayName=Konfigur\u0113t sist\u0113mu -ConfigureLink.Description=Konfigur\u0113t glob\u0101los iestat\u012Bjumus un ce\u013Cus +ShutdownLink.DisplayName_cancel=Atcelt IzslÄ“gÅ¡anu +ConfigureLink.DisplayName=KonfigurÄ“t sistÄ“mu +ConfigureLink.Description=KonfigurÄ“t globÄlos iestatÄ«jumus un ceļus StatisticsLink.DisplayName=Noslodzes Statistika -NodesLink.DisplayName=P\u0101rvald\u012Bt nodes -PluginsLink.DisplayName=P\u0101rvald\u012Bt spraud\u0146us -ShutdownLink.DisplayName_prepare=Sagatavoties Izsl\u0113g\u0161\u0101nai -ReloadLink.DisplayName=P\u0101rl\u0101d\u0113 konfigur\u0101ciju no diska +NodesLink.DisplayName=PÄrvaldÄ«t nodes +PluginsLink.DisplayName=PÄrvaldÄ«t spraudņus +ShutdownLink.DisplayName_prepare=Sagatavoties IzslÄ“gÅ¡Änai +ReloadLink.DisplayName=PÄrlÄdÄ“ konfigurÄciju no diska ConsoleLink.DisplayName=Skriptu Konsole -SystemInfoLink.DisplayName=Sist\u0113mas Inform\u0101cija +SystemInfoLink.DisplayName=SistÄ“mas InformÄcija diff --git a/core/src/main/resources/jenkins/management/Messages_nb_NO.properties b/core/src/main/resources/jenkins/management/Messages_nb_NO.properties index 129d39692266..ea7d059b5928 100644 --- a/core/src/main/resources/jenkins/management/Messages_nb_NO.properties +++ b/core/src/main/resources/jenkins/management/Messages_nb_NO.properties @@ -22,20 +22,20 @@ # THE SOFTWARE. # -NodesLink.Description=Legg til, fjern, kontroller og overv\u00E5k de forskjellige nodene Jenkins kj\u00F8rer jobber p\u00E5 +NodesLink.Description=Legg til, fjern, kontroller og overvÃ¥k de forskjellige nodene Jenkins kjører jobber pÃ¥ PluginsLink.Description=Legg til, fjern, deaktivere eller aktivere programtillegg som kan utvide funksjonaliteten til Jenkins. ConfigureLink.DisplayName=Konfigurere systemet ConfigureLink.Description=Konfigurere globale verdier og stier CliLink.DisplayName=Command Line Interface - Kommandolinjegrensesnitt -CliLink.Description=F\u00E5 tilgang til/styr Jenkins fra et shell eller skript. +CliLink.Description=FÃ¥ tilgang til/styr Jenkins fra et shell eller skript. StatisticsLink.DisplayName=Serverlast-statistikk StatisticsLink.Description=Kontroller ressursutnyttelsen og se om du trenger flere datamaskiner for dine bygg. NodesLink.DisplayName=Behandle noder PluginsLink.DisplayName=Behandle programtillegg ShutdownLink.DisplayName_prepare=Forbered stans av systemet. -ReloadLink.DisplayName=Les konfigurasjon fra disk p\u00E5 nytt -ReloadLink.Description=Nyttig n\u00E5r du har endret konfigurasjonsfiler direkte i filsystemet. +ReloadLink.DisplayName=Les konfigurasjon fra disk pÃ¥ nytt +ReloadLink.Description=Nyttig nÃ¥r du har endret konfigurasjonsfiler direkte i filsystemet. ConsoleLink.DisplayName=Skriptkonsoll -ShutdownLink.Description=Stopper eksekvering av nye bygg slik at systemet kan avsluttes p\u00E5 en sikker m\u00E5te. +ShutdownLink.Description=Stopper eksekvering av nye bygg slik at systemet kan avsluttes pÃ¥ en sikker mÃ¥te. SystemInfoLink.DisplayName=Systeminformasjon SystemLogLink.Description=Systemloggen fanger output fra java.util.loggingoutput relatert til Jenkins. diff --git a/core/src/main/resources/jenkins/management/Messages_pl.properties b/core/src/main/resources/jenkins/management/Messages_pl.properties index 887db926a48e..e2854edc866b 100644 --- a/core/src/main/resources/jenkins/management/Messages_pl.properties +++ b/core/src/main/resources/jenkins/management/Messages_pl.properties @@ -21,37 +21,37 @@ # THE SOFTWARE. ConfigureLink.DisplayName=Skonfiguruj system -ConfigureLink.Description=Konfiguruj ustawienia globalne i \u015Bcie\u017Cki. +ConfigureLink.Description=Konfiguruj ustawienia globalne i Å›cieżki. -ReloadLink.DisplayName=Odczytaj ponownie konfiguracj\u0119 z dysku -ReloadLink.Description=Porzu\u0107 wszystkie dane za\u0142adowane w pami\u0119ci i za\u0142aduj wszystko z systemu plik\u00F3w.\n\ - Opcja u\u017Cyteczna gdy zmodyfikowano pliki konfiguracyjne bezpo\u015Brednio z dysku. +ReloadLink.DisplayName=Odczytaj ponownie konfiguracjÄ™ z dysku +ReloadLink.Description=Porzuć wszystkie dane zaÅ‚adowane w pamiÄ™ci i zaÅ‚aduj wszystko z systemu plików.\n\ + Opcja użyteczna gdy zmodyfikowano pliki konfiguracyjne bezpoÅ›rednio z dysku. -PluginsLink.DisplayName=Zarz\u0105dzaj wtyczkami -PluginsLink.Description=Dodaj, usu\u0144, wy\u0142\u0105cz lub w\u0142\u0105cz wtyczki kt\u00F3re mog\u0105 rozszerzy\u0107 funkcjonalno\u015B\u0107 Jenkinsa. +PluginsLink.DisplayName=ZarzÄ…dzaj wtyczkami +PluginsLink.Description=Dodaj, usuÅ„, wyÅ‚Ä…cz lub wÅ‚Ä…cz wtyczki które mogÄ… rozszerzyć funkcjonalność Jenkinsa. SystemInfoLink.DisplayName=Informacje o systemie -SystemInfoLink.Description=Wy\u015Bwietla wiele \u015Brodowiskowych informacji pomocnych przy rozwi\u0105zywaniu problem\u00F3w. +SystemInfoLink.Description=WyÅ›wietla wiele Å›rodowiskowych informacji pomocnych przy rozwiÄ…zywaniu problemów. -StatisticsLink.DisplayName=Statystyki obci\u0105\u017Cenia -StatisticsLink.Description=Sprawd\u017A obci\u0105\u017Cenie zasob\u00F3w systemowych i dowiedz si\u0119, czy nie potrzebujesz wi\u0119cej maszyn do uruchamiania zada\u0144. +StatisticsLink.DisplayName=Statystyki obciążenia +StatisticsLink.Description=Sprawdź obciążenie zasobów systemowych i dowiedz siÄ™, czy nie potrzebujesz wiÄ™cej maszyn do uruchamiania zadaÅ„. SystemLogLink.DisplayName=Dziennik systemowy -SystemLogLink.Description=Dziennik systemowy gromadzi wywoy\u0142ania java.util.logging powi\u0105zane z Jenkinsem. +SystemLogLink.Description=Dziennik systemowy gromadzi wywoyÅ‚ania java.util.logging powiÄ…zane z Jenkinsem. -CliLink.DisplayName=Wiersz polece\u0144 Jenkinsa -CliLink.Description=Zarz\u0105dzaj Jenkinsem poziomu z wiersza polece\u0144 lub systemu. +CliLink.DisplayName=Wiersz poleceÅ„ Jenkinsa +CliLink.Description=ZarzÄ…dzaj Jenkinsem poziomu z wiersza poleceÅ„ lub systemu. -ConsoleLink.DisplayName=Konsola skrypt\u00F3w -ConsoleLink.Description=Wykonuje dowolny skrypt pomocny do cel\u00F3w administracyjnych, usuwania usterek i diagnostyki. +ConsoleLink.DisplayName=Konsola skryptów +ConsoleLink.Description=Wykonuje dowolny skrypt pomocny do celów administracyjnych, usuwania usterek i diagnostyki. -NodesLink.DisplayName=Zarz\u0105dzaj w\u0119z\u0142ami -NodesLink.Description=Dodawaj, usuwaj, kontroluj i monitoruj r\u00F3\u017Cne w\u0119z\u0142y, na kt\u00F3rych Jenkins uruchamia zadania. +NodesLink.DisplayName=ZarzÄ…dzaj wÄ™zÅ‚ami +NodesLink.Description=Dodawaj, usuwaj, kontroluj i monitoruj różne wÄ™zÅ‚y, na których Jenkins uruchamia zadania. -ShutdownLink.DisplayName_prepare=Przygotuj do wy\u0142\u0105czenia -ShutdownLink.DisplayName_cancel=Anuluj wy\u0142\u0105czenie -ShutdownLink.Description=Zatrzyma wykonanie nowych build\u00F3w, tak by system m\u00F3g\u0142by\u0107 bezpiecznie wy\u0142\u0105czony. +ShutdownLink.DisplayName_prepare=Przygotuj do wyÅ‚Ä…czenia +ShutdownLink.DisplayName_cancel=Anuluj wyÅ‚Ä…czenie +ShutdownLink.Description=Zatrzyma wykonanie nowych buildów, tak by system mógÅ‚być bezpiecznie wyÅ‚Ä…czony. # Global Tool Configuration -ConfigureTools.DisplayName=Globalne narz\u0119dzia do konfiguracji +ConfigureTools.DisplayName=Globalne narzÄ™dzia do konfiguracji # Configure tools, their locations and automatic installers. -ConfigureTools.Description=Konfiguruj narz\u0119dzia, \u015Bcie\u017Cki do nich i automatyczne instalatory +ConfigureTools.Description=Konfiguruj narzÄ™dzia, Å›cieżki do nich i automatyczne instalatory diff --git a/core/src/main/resources/jenkins/management/Messages_pt_BR.properties b/core/src/main/resources/jenkins/management/Messages_pt_BR.properties index 734611ee02a9..51df8be5f6f2 100644 --- a/core/src/main/resources/jenkins/management/Messages_pt_BR.properties +++ b/core/src/main/resources/jenkins/management/Messages_pt_BR.properties @@ -23,31 +23,31 @@ # CliLink.Description=Acesse e gerencie o Jenkins pelo shell, ou pelo seu script. -StatisticsLink.DisplayName=Estat\u00EDsticas de carga -StatisticsLink.Description=Verifica a utiliza\u00E7\u00E3o de recursos e se voc\u00EA precisa de mais computadores para suas constru\u00E7\u00F5es -ReloadLink.DisplayName=Recarregar configura\u00E7\u00E3o do disco +StatisticsLink.DisplayName=Estatísticas de carga +StatisticsLink.Description=Verifica a utilização de recursos e se você precisa de mais computadores para suas construções +ReloadLink.DisplayName=Recarregar configuração do disco ConfigureLink.DisplayName=Configurar o sistema -ConfigureLink.Description=Configurar op\u00E7\u00F5es globais e caminhos -ReloadLink.Description=Descartar todos os dados carregados na mem\u00F3ria e recarregar tudo do sistema de arquivos. \ - Isso \u00E9 \u00FAtil quando seus arquivos de configura\u00E7\u00E3o foram modificados diretamente no disco. -PluginsLink.DisplayName=Gerenciar extens\u00F5es -SystemInfoLink.DisplayName=Informa\u00E7\u00F5es do sistema -SystemInfoLink.Description=Mostrar v\u00E1rias informa\u00E7\u00F5es do ambiente para auxiliar na resolu\u00E7\u00E3o de problemas. +ConfigureLink.Description=Configurar opções globais e caminhos +ReloadLink.Description=Descartar todos os dados carregados na memória e recarregar tudo do sistema de arquivos. \ + Isso é útil quando seus arquivos de configuração foram modificados diretamente no disco. +PluginsLink.DisplayName=Gerenciar extensões +SystemInfoLink.DisplayName=Informações do sistema +SystemInfoLink.Description=Mostrar várias informações do ambiente para auxiliar na resolução de problemas. SystemLogLink.DisplayName=Registro de atividades do sistema -SystemLogLink.Description=O registro de atividades do sistema captura a sa\u00EDda de java.util.logging relacionada ao Jenkins. +SystemLogLink.Description=O registro de atividades do sistema captura a saída de java.util.logging relacionada ao Jenkins. ConsoleLink.DisplayName=Console de script -ConsoleLink.Description=Executa script arbitr\u00E1rio para administrar, diagnosticar ou corrigir problemas. -PluginsLink.Description=Adiciona, remove, desabilita e habilita extens\u00F5es que podem incrementar as funcionalidades do Jenkins. +ConsoleLink.Description=Executa script arbitrário para administrar, diagnosticar ou corrigir problemas. +PluginsLink.Description=Adiciona, remove, desabilita e habilita extensões que podem incrementar as funcionalidades do Jenkins. ShutdownLink.DisplayName_cancel=Cancelar o desligamento ShutdownLink.DisplayName_prepare=Preparar para desligar -ShutdownLink.Description=Interrompe a execu\u00E7\u00E3o de novas constru\u00E7\u00F5es para que o sistema possa ser eventualmente desligado com seguran\u00E7a. -NodesLink.Description=Adiciona, remove, controla e monitora o v\u00E1rios n\u00F3s -NodesLink.DisplayName= Gerenciar n\u00F3s +ShutdownLink.Description=Interrompe a execução de novas construções para que o sistema possa ser eventualmente desligado com segurança. +NodesLink.Description=Adiciona, remove, controla e monitora o vários nós +NodesLink.DisplayName= Gerenciar nós CliLink.DisplayName=Interface de Linha de Commando do Jenkins (CLI) -ConfigureTools.DisplayName=Ferramenta de configura\u00E7\u00E3o global -ShutdownLink.DisplayName_update=Atualizar prepara\u00E7\u00E3o de desligamento -ShutdownLink.ShutDownReason_update=Atualizar raz\u00E3o -AdministrativeMonitorsDecorator.DisplayName=Notificador de monitora\u00E7\u00F5es administrativas -ConfigureTools.Description=Configurar ferramentas, suas localiza\u00E7\u00F5es e instaladores autom\u00E1ticos. -ShutdownLink.ShuttingDownInProgressDescription=O Jenkins est\u00E1 sendo desligado no momento. Novas constru\u00E7\u00F5es n\u00E3o ser\u00E3o executadas. -ShutdownLink.ShutDownReason_title=Raz\u00E3o +ConfigureTools.DisplayName=Ferramenta de configuração global +ShutdownLink.DisplayName_update=Atualizar preparação de desligamento +ShutdownLink.ShutDownReason_update=Atualizar razão +AdministrativeMonitorsDecorator.DisplayName=Notificador de monitorações administrativas +ConfigureTools.Description=Configurar ferramentas, suas localizações e instaladores automáticos. +ShutdownLink.ShuttingDownInProgressDescription=O Jenkins está sendo desligado no momento. Novas construções não serão executadas. +ShutdownLink.ShutDownReason_title=Razão diff --git a/core/src/main/resources/jenkins/management/Messages_pt_PT.properties b/core/src/main/resources/jenkins/management/Messages_pt_PT.properties index 2c9b0017142f..c75881f7de42 100644 --- a/core/src/main/resources/jenkins/management/Messages_pt_PT.properties +++ b/core/src/main/resources/jenkins/management/Messages_pt_PT.properties @@ -24,9 +24,9 @@ PluginsLink.Description=Adicionar, remover, desactivar ou activar plugins que extendem as funcionalidades do Jenkins ConfigureLink.DisplayName=Configurar Sistema -ConfigureLink.Description=Configura\u00E7\u00F5es gerais e pastas -ReloadLink.Description=Descarta toda a informa\u00E7\u00E3o carregada em mem\u00F3ria e recarrega tudo do sistema de ficheiros.\n\ - Adequado para quando se modificam ficheiros de configura\u00E7\u00E3o diretamente no disco. +ConfigureLink.Description=Configurações gerais e pastas +ReloadLink.Description=Descarta toda a informação carregada em memória e recarrega tudo do sistema de ficheiros.\n\ + Adequado para quando se modificam ficheiros de configuração diretamente no disco. PluginsLink.DisplayName=Gerir Plugins -ReloadLink.DisplayName=Carregar configura\u00E7\u00E3o do disco -SystemInfoLink.DisplayName=Informa\u00E7\u00E3o do Sistema +ReloadLink.DisplayName=Carregar configuração do disco +SystemInfoLink.DisplayName=Informação do Sistema diff --git a/core/src/main/resources/jenkins/management/Messages_ro.properties b/core/src/main/resources/jenkins/management/Messages_ro.properties index 6a803271e850..773a3648333c 100644 --- a/core/src/main/resources/jenkins/management/Messages_ro.properties +++ b/core/src/main/resources/jenkins/management/Messages_ro.properties @@ -22,11 +22,11 @@ # THE SOFTWARE. # -ConfigureLink.DisplayName=Configureaz\u0103 sistemul -ConfigureLink.Description=Configureaz\u0103 set\u0103rile globale \u015Fi c\u0103ile -StatisticsLink.DisplayName=Statistici de \u00EEnc\u0103rcare +ConfigureLink.DisplayName=Configurează sistemul +ConfigureLink.Description=Configurează setările globale ÅŸi căile +StatisticsLink.DisplayName=Statistici de încărcare PluginsLink.DisplayName=Administrare plugin-uri -ShutdownLink.DisplayName_prepare=Preg\u0103te\u015Fte pentru oprire -ReloadLink.DisplayName=Re\u00EEncarc\u0103 configura\u0163ia de pe disc -SystemInfoLink.DisplayName=Informa\u0163ii sistem -ReloadLink.Description=Util dac\u0103 au fost modificate fi\u015Fiere de configurare direct pe disc. +ShutdownLink.DisplayName_prepare=PregăteÅŸte pentru oprire +ReloadLink.DisplayName=Reîncarcă configuraÅ£ia de pe disc +SystemInfoLink.DisplayName=InformaÅ£ii sistem +ReloadLink.Description=Util dacă au fost modificate fiÅŸiere de configurare direct pe disc. diff --git a/core/src/main/resources/jenkins/management/Messages_ru.properties b/core/src/main/resources/jenkins/management/Messages_ru.properties index ff3f00dbb183..3a2783fc1919 100644 --- a/core/src/main/resources/jenkins/management/Messages_ru.properties +++ b/core/src/main/resources/jenkins/management/Messages_ru.properties @@ -22,27 +22,27 @@ # THE SOFTWARE. # -SystemLogLink.Description=\u0421\u0438\u0441\u0442\u0435\u043C\u043D\u044B\u0439 \u0436\u0443\u0440\u043D\u0430\u043B \u0441\u0447\u0438\u0442\u044B\u0432\u0430\u0435\u0442 \u0432\u044B\u0432\u043E\u0434 java.util.logging, \u043E\u0442\u043D\u043E\u0441\u044F\u0449\u0438\u0439\u0441\u044F \u043A Jenkins. -CliLink.Description=\u0414\u043E\u0441\u0442\u0443\u043F \u0438 \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 Jenkins \u0438\u0437 \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u043E\u0439 \u043E\u0431\u043E\u043B\u043E\u0447\u043A\u0438 \u0438\u043B\u0438 \u043F\u0440\u0438 \u043F\u043E\u043C\u043E\u0449\u0438 \u0441\u043A\u0440\u0438\u043F\u0442\u043E\u0432. -StatisticsLink.DisplayName=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0430 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u044F -StatisticsLink.Description=\u041A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u0437\u0430 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u0435\u043C \u0430\u043F\u043F\u0430\u0440\u0430\u0442\u043D\u044B\u0445 \u0440\u0435\u0441\u0443\u0440\u0441\u043E\u0432. \u041F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u0432\u044B\u044F\u0432\u0438\u0442\u044C \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E\u0441\u0442\u044C \u0432 \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0445 \u0440\u0435\u0441\u0443\u0440\u0441\u0430\u0445 \u0434\u043B\u044F \u0432\u044B\u043F\u043E\u043B\u043D\u0435\u043D\u0438\u044F \u0441\u0431\u043E\u0440\u043E\u043A. -ReloadLink.DisplayName=\u041F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0430 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 \u0441 \u0434\u0438\u0441\u043A\u0430 -ReloadLink.Description=\u041E\u0442\u043C\u0435\u043D\u0438\u0442\u044C \u0432\u0441\u0435 \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043D\u043D\u044B\u0435 \u0434\u0430\u043D\u043D\u044B\u0435 \u0432 \u043F\u0430\u043C\u044F\u0442\u0438 \u0438 \u043F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C \u0432\u0441\u0435 \u0438\u0437 \u0444\u0430\u0439\u043B\u043E\u0432\u043E\u0439 \u0441\u0438\u0441\u0442\u0435\u043C\u044B.\n\ - \u041F\u043E\u043B\u0435\u0437\u043D\u043E \u043F\u0440\u0438 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u0438 \u0444\u0430\u0439\u043B\u043E\u0432 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 \u043D\u0435\u043F\u043E\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043D\u043D\u043E \u043D\u0430 \u0434\u0438\u0441\u043A\u0435. -NodesLink.DisplayName=\u0423\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u0441\u0440\u0435\u0434\u0430\u043C\u0438 \u0441\u0431\u043E\u0440\u043A\u0438 -PluginsLink.DisplayName=\u0423\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043F\u043B\u0430\u0433\u0438\u043D\u0430\u043C\u0438 -SystemInfoLink.DisplayName=\u0421\u0438\u0441\u0442\u0435\u043C\u043D\u0430\u044F \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F -SystemInfoLink.Description=\u041E\u0442\u043E\u0431\u0440\u0430\u0436\u0430\u0435\u0442 \u0440\u0430\u0437\u043B\u0438\u0447\u043D\u044B\u0435 \u0441\u0432\u0435\u0434\u0435\u043D\u0438\u044F \u043E \u0441\u0440\u0435\u0434\u0435 \u043E\u043A\u0440\u0443\u0436\u0435\u043D\u0438\u044F \u0434\u043B\u044F \u043F\u043E\u043C\u043E\u0449\u0438 \u0432 \u0440\u0435\u0448\u0435\u043D\u0438\u0438 \u043F\u0440\u043E\u0431\u043B\u0435\u043C. -ConsoleLink.DisplayName=\u041A\u043E\u043D\u0441\u043E\u043B\u044C \u0441\u0446\u0435\u043D\u0430\u0440\u0438\u0435\u0432 -ConsoleLink.Description=\u0412\u044B\u043F\u043E\u043B\u043D\u0435\u043D\u0438\u0435 \u043F\u0440\u043E\u0438\u0437\u0432\u043E\u043B\u044C\u043D\u044B\u0445 \u0441\u043A\u0440\u0438\u043F\u0442\u043E\u0432 \u0434\u043B\u044F \u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F, \u0434\u0438\u0430\u0433\u043D\u043E\u0441\u0442\u0438\u043A\u0438 \u0438 \u0443\u0441\u0442\u0440\u0430\u043D\u0435\u043D\u0438\u044F \u043D\u0435\u0438\u0441\u043F\u0440\u0430\u0432\u043D\u043E\u0441\u0442\u0435\u0439. -ShutdownLink.DisplayName_cancel=\u041E\u0442\u043C\u0435\u043D\u0438\u0442\u044C \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u0438\u0435 \u0440\u0430\u0431\u043E\u0442\u044B -ShutdownLink.DisplayName_prepare=\u041F\u043E\u0434\u0433\u043E\u0442\u043E\u0432\u043A\u0430 \u043A \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u0438\u044E \u0440\u0430\u0431\u043E\u0442\u044B -ShutdownLink.Description=\u041F\u0440\u0435\u043A\u0440\u0430\u0449\u0430\u0435\u0442 \u0432\u044B\u043F\u043E\u043B\u043D\u0435\u043D\u0438\u0435 \u043D\u043E\u0432\u044B\u0445 \u0441\u0431\u043E\u0440\u043E\u043A \u0434\u043B\u044F \u0431\u0435\u0437\u043E\u043F\u0430\u0441\u043D\u043E\u0433\u043E \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u0438\u044F \u0440\u0430\u0431\u043E\u0442\u044B \u0441\u0438\u0441\u0442\u0435\u043C\u044B. -ConfigureLink.DisplayName=\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F \u0441\u0438\u0441\u0442\u0435\u043C\u044B -ConfigureLink.Description=\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u044B\u0445 \u043D\u0430\u0441\u0442\u0440\u043E\u0435\u043A \u0438 \u043F\u0443\u0442\u0435\u0439. -NodesLink.Description=\u041F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u0434\u043E\u0431\u0430\u0432\u043B\u044F\u0442\u044C, \u0443\u0434\u0430\u043B\u044F\u0442\u044C, \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0438 \u0430\u043D\u0430\u043B\u0438\u0437\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0441\u0440\u0435\u0434\u044B \u0441\u0431\u043E\u0440\u043A\u0438. -PluginsLink.Description=\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C, \u0443\u0434\u0430\u043B\u0438\u0442\u044C, \u043E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0438\u043B\u0438 \u0432\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u043F\u043B\u0430\u0433\u0438\u043D\u044B, \u0440\u0430\u0441\u0448\u0438\u0440\u044F\u044E\u0449\u0438\u0435 \u0444\u0443\u043D\u043A\u0446\u0438\u043E\u043D\u043E\u043D\u0430\u043B\u044C\u043D\u044B\u0435 \u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E\u0441\u0442\u0438 Jenkins. -ConfigureTools.Description=\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F \u0438\u043D\u0441\u0442\u0440\u0443\u043C\u0435\u043D\u0442\u043E\u0432, \u0438\u0445 \u0440\u0430\u0441\u043F\u043E\u043B\u043E\u0436\u0435\u043D\u0438\u0435 \u0438 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0430\u044F \u0438\u043D\u0441\u0442\u0430\u043B\u044F\u0446\u0438\u044F. -ConfigureTools.DisplayName=\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u044B\u0445 \u0438\u043D\u0441\u0442\u0440\u0443\u043C\u0435\u043D\u0442\u043E\u0432 -SystemLogLink.DisplayName=\u0421\u0438\u0441\u0442\u0435\u043C\u043D\u044B\u0439 \u0436\u0443\u0440\u043D\u0430\u043B -AdministrativeMonitorsDecorator.DisplayName=\u0421\u0438\u0441\u0442\u0435\u043C\u043D\u044B\u0435 \u0443\u0432\u0435\u0434\u043E\u043C\u043B\u0435\u043D\u0438\u044F +SystemLogLink.Description=СиÑтемный журнал Ñчитывает вывод java.util.logging, отноÑÑщийÑÑ Ðº Jenkins. +CliLink.Description=ДоÑтуп и управление Jenkins из командной оболочки или при помощи Ñкриптов. +StatisticsLink.DisplayName=СтатиÑтика иÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ +StatisticsLink.Description=Контроль за иÑпользованием аппаратных реÑурÑов. ПозволÑет выÑвить потребноÑÑ‚ÑŒ в дополнительных реÑурÑах Ð´Ð»Ñ Ð²Ñ‹Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ Ñборок. +ReloadLink.DisplayName=Перезагрузка конфигурации Ñ Ð´Ð¸Ñка +ReloadLink.Description=Отменить вÑе загруженные данные в памÑти и перезагрузить вÑе из файловой ÑиÑтемы.\n\ + Полезно при изменении файлов конфигурации непоÑредÑтвенно на диÑке. +NodesLink.DisplayName=Управление Ñредами Ñборки +PluginsLink.DisplayName=Управление плагинами +SystemInfoLink.DisplayName=СиÑÑ‚ÐµÐ¼Ð½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ +SystemInfoLink.Description=Отображает различные ÑÐ²ÐµÐ´ÐµÐ½Ð¸Ñ Ð¾ Ñреде Ð¾ÐºÑ€ÑƒÐ¶ÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰Ð¸ в решении проблем. +ConsoleLink.DisplayName=КонÑоль Ñценариев +ConsoleLink.Description=Выполнение произвольных Ñкриптов Ð´Ð»Ñ Ð°Ð´Ð¼Ð¸Ð½Ð¸ÑтрированиÑ, диагноÑтики и уÑÑ‚Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ð½ÐµÐ¸ÑправноÑтей. +ShutdownLink.DisplayName_cancel=Отменить завершение работы +ShutdownLink.DisplayName_prepare=Подготовка к завершению работы +ShutdownLink.Description=Прекращает выполнение новых Ñборок Ð´Ð»Ñ Ð±ÐµÐ·Ð¾Ð¿Ð°Ñного Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¸Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ ÑиÑтемы. +ConfigureLink.DisplayName=ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ ÑиÑтемы +ConfigureLink.Description=ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð³Ð»Ð¾Ð±Ð°Ð»ÑŒÐ½Ñ‹Ñ… наÑтроек и путей. +NodesLink.Description=ПозволÑет добавлÑÑ‚ÑŒ, удалÑÑ‚ÑŒ, контролировать и анализировать Ñреды Ñборки. +PluginsLink.Description=Добавить, удалить, отключить или включить плагины, раÑширÑющие функционональные возможноÑти Jenkins. +ConfigureTools.Description=ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð¸Ð½Ñтрументов, их раÑположение и автоматичеÑÐºÐ°Ñ Ð¸Ð½ÑталÑциÑ. +ConfigureTools.DisplayName=ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð³Ð»Ð¾Ð±Ð°Ð»ÑŒÐ½Ñ‹Ñ… инÑтрументов +SystemLogLink.DisplayName=СиÑтемный журнал +AdministrativeMonitorsDecorator.DisplayName=СиÑтемные ÑƒÐ²ÐµÐ´Ð¾Ð¼Ð»ÐµÐ½Ð¸Ñ diff --git a/core/src/main/resources/jenkins/management/Messages_sk.properties b/core/src/main/resources/jenkins/management/Messages_sk.properties index 01edf6b5f2b5..085b4fb24928 100644 --- a/core/src/main/resources/jenkins/management/Messages_sk.properties +++ b/core/src/main/resources/jenkins/management/Messages_sk.properties @@ -22,19 +22,19 @@ # THE SOFTWARE. # -PluginsLink.Description=Prida\u0165, odstr\u00E1ni\u0165, zak\u00E1za\u0165 alebo povoli\u0165 roz\u0161\u00EDrenia, ktor\u00E9 roz\u0161iruj\u00FA funk\u010Dnos\u0165 Jenkinsa -ConfigureLink.DisplayName=Konfigurova\u0165 syst\u00E9m -ConfigureLink.Description=Konfigurova\u0165 glob\u00E1lne nastavenia a cesty -StatisticsLink.DisplayName=Na\u010D\u00EDta\u0165 \u0161tatistiky -StatisticsLink.Description=Skontrolujte vyu\u017Eitie syst\u00E9mov\u00FDch zdrojov a zistite, \u010Di nepotrebujete pre va\u0161e buildy \u010Fal\u0161\u00ED hardware. -PluginsLink.DisplayName=Spravova\u0165 doplnky -ShutdownLink.DisplayName_prepare=Pripravi\u0165 na vypnutie (Shutdown) -ReloadLink.DisplayName=Na\u010D\u00EDta\u0165 konfigur\u00E1ciu z disku +PluginsLink.Description=PridaÅ¥, odstrániÅ¥, zakázaÅ¥ alebo povoliÅ¥ rozšírenia, ktoré rozÅ¡irujú funkÄnosÅ¥ Jenkinsa +ConfigureLink.DisplayName=KonfigurovaÅ¥ systém +ConfigureLink.Description=KonfigurovaÅ¥ globálne nastavenia a cesty +StatisticsLink.DisplayName=NaÄítaÅ¥ Å¡tatistiky +StatisticsLink.Description=Skontrolujte využitie systémových zdrojov a zistite, Äi nepotrebujete pre vaÅ¡e buildy Äalší hardware. +PluginsLink.DisplayName=SpravovaÅ¥ doplnky +ShutdownLink.DisplayName_prepare=PripraviÅ¥ na vypnutie (Shutdown) +ReloadLink.DisplayName=NaÄítaÅ¥ konfiguráciu z disku ConsoleLink.DisplayName=Skriptovacia konzola -ShutdownLink.Description=Ukon\u010D\u00ED sp\u00FA\u0161\u0165anie nov\u00FDch zostaven\u00ED, tak\u017Ee syst\u00E9m sa m\u00F4\u017Ee bezpe\u010Dne vypn\u00FA\u0165. -SystemInfoLink.DisplayName=Syst\u00E9mov\u00E9 inform\u00E1cie -SystemInfoLink.Description=Zobrazuje r\u00F4zne inform\u00E1cie o prostred\u00ED k jednoduch\u0161iemu h\u013Eadaniu ch\u00FDb. -ReloadLink.Description=Zahodi\u0165 v\u0161etky nahran\u00E9 d\u00E1ta v pam\u00E4ti a znovu nahra\u0165 v\u0161etko z disku.\n\ - Hod\u00ED sa pokia\u013E ste zmenili konfigura\u010Dn\u00E9 s\u00FAbory priamo na disku. -CliLink.Description=Pr\u00EDstup/nastavenie Jenkins z pr\u00EDkazov\u00E9ho riadku alebo pomocou skriptu. -SystemLogLink.Description=Syst\u00E9mov\u00FD log uklad\u00E1 v\u00FDstup java.util.logging, ktor\u00FD sa t\u00FDka Jenkins. +ShutdownLink.Description=UkonÄí spúšťanie nových zostavení, takže systém sa môže bezpeÄne vypnúť. +SystemInfoLink.DisplayName=Systémové informácie +SystemInfoLink.Description=Zobrazuje rôzne informácie o prostredí k jednoduchÅ¡iemu hľadaniu chýb. +ReloadLink.Description=ZahodiÅ¥ vÅ¡etky nahrané dáta v pamäti a znovu nahraÅ¥ vÅ¡etko z disku.\n\ + Hodí sa pokiaľ ste zmenili konfiguraÄné súbory priamo na disku. +CliLink.Description=Prístup/nastavenie Jenkins z príkazového riadku alebo pomocou skriptu. +SystemLogLink.Description=Systémový log ukladá výstup java.util.logging, ktorý sa týka Jenkins. diff --git a/core/src/main/resources/jenkins/management/Messages_sr.properties b/core/src/main/resources/jenkins/management/Messages_sr.properties index 04d63ea3f82e..0d00cebaf8ea 100644 --- a/core/src/main/resources/jenkins/management/Messages_sr.properties +++ b/core/src/main/resources/jenkins/management/Messages_sr.properties @@ -1,26 +1,26 @@ # This file is under the MIT License by authors -ConfigureLink.DisplayName=\u041F\u043E\u0441\u0442\u0430\u0432\u0438 \u0441\u0438\u0441\u0442\u0435\u043C\u0441\u043A\u0430 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 -ConfigureLink.Description=\u041E\u0431\u0448\u0442\u0430 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0438 \u043F\u0443\u0442\u0435\u0432\u0438. -ConfigureTools.DisplayName=\u041E\u0431\u0448\u0442\u0435 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0435 \u0430\u043B\u0430\u0442\u0430 -ConfigureTools.Description=\u041F\u043E\u0441\u0442\u0430\u0432\u0438 \u0430\u043B\u0430\u0442\u0435, \u043B\u043E\u043A\u0430\u0446\u0438\u0458\u0435, \u0438 \u0430\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0443 \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0443 -ReloadLink.DisplayName=\u041F\u043E\u043D\u043E\u0432\u043E \u0443\u0447\u0438\u0442\u0430\u0458 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0441\u0430 \u0434\u0438\u0441\u043A\u0430 -ReloadLink.Description=\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0441\u0430 \u043C\u0435\u043C\u043E\u0440\u0438\u0458\u0435 \u0438 \u0443\u0447\u0438\u0442\u0430\u0458 \u0441\u0430 \u0434\u0438\u0441\u043A\u0430.\n \u041A\u043E\u0440\u0438\u0441\u043D\u043E \u043A\u0430\u0434\u0430 \u0441\u0442\u0435 \u043F\u0440\u043E\u043C\u0435\u043D\u0438\u043B\u0438 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0434\u0438\u0440\u0435\u043A\u0442\u043D\u043E \u043D\u0430 \u0434\u0438\u0441\u043A\u0443. -PluginsLink.Description=\u0414\u043E\u0434\u0430\u0458\u0442\u0435, \u0443\u043A\u043B\u043E\u043D\u0438\u0442\u0435, \u0438\u043B\u0438 \u043E\u043D\u0435\u043C\u043E\u0433\u0443\u045B\u0438\u0442\u0435 \u043C\u043E\u0434\u0443\u043B\u0435 \u043A\u043E\u0458\u0435 \u043F\u0440\u043E\u0448\u0438\u0440\u0443\u0458\u0443 \u043C\u043E\u0433\u0443\u045B\u043D\u043E\u0441\u0442\u0435 Jenkins-\u0430. -PluginsLink.DisplayName=\u041F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0435 \u043C\u043E\u0434\u0443\u043B\u0430 -SystemInfoLink.DisplayName=\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0435 \u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0443 -SystemInfoLink.Description=\u041F\u0440\u0438\u043A\u0430\u0437\u0443\u0458\u0435 \u0440\u0430\u0437\u043D\u0443 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0443 \u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0443 \u0434\u0430 \u0431\u0443 \u043F\u043E\u043C\u0430\u0433\u0430\u043B\u043E \u0441\u0430 \u0440\u0435\u0448\u0430\u0432\u0430\u045A\u0435\u043C \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0438\u043C\u0430. -SystemLogLink.DisplayName=\u0416\u0443\u0440\u043D\u0430\u043B \u0441\u0438\u0441\u0442\u0435\u043C\u0430 -SystemLogLink.Description=\u0416\u0443\u0440\u043D\u0430\u043B \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u0437\u0430\u043F\u0438\u0441\u0443\u0458\u0435 \u0438\u0441\u0445\u043E\u0434 java.util.logging \u043A\u043E\u0458\u0438 \u0441\u0435 \u043E\u0434\u043D\u043E\u0441\u0438 \u043D\u0430 Jenkins. -StatisticsLink.DisplayName=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0435 \u043E \u043E\u043F\u0442\u0435\u0440\u0435\u045B\u0435\u045A\u0443 -StatisticsLink.Description=\u041F\u0440\u043E\u0432\u0435\u0440\u0438\u0442\u0435 \u043E\u043F\u0442\u0435\u0440\u0435\u045B\u0435\u045A\u0435 \u043D\u0430\u0434 \u0440\u0435\u0441\u0443\u0440\u0441\u0438\u043C\u0430 \u0434\u0430 \u0431\u0438 \u0441\u0442\u0435 \u043E\u0434\u0440\u0435\u0434\u0438\u043B\u0438 \u0430\u043A\u043E \u0458\u0435 \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E \u0432\u0438\u0448\u0435 \u043C\u0430\u0448\u0438\u043D\u0430 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443. -CliLink.Description=\u0414\u043E\u0441\u0442\u0443\u043F\u0438\u0442\u0435 \u0438 \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u0458\u0442\u0435 Jenkins-\u043E\u043C \u0441\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u0435 \u043B\u0438\u043D\u0438\u0458\u0435 \u0438\u043B\u0438 \u0441\u043A\u0440\u0438\u043F\u0442\u043E\u043C. -CliLink.DisplayName=Jenkins \u0441\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u0435 \u043B\u0438\u043D\u0438\u0458\u0435 -ConsoleLink.DisplayName=\u041A\u043E\u043D\u0437\u043E\u043B\u0430 -ConsoleLink.Description=\u0418\u0437\u0432\u0440\u0448\u0430\u0432\u0430 \u0441\u043A\u0440\u0438\u043F\u0442\u043E\u0432\u0435 \u0437\u0430 \u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0458\u0443 \u0438 \u043E\u0442\u043A\u0440\u0438\u0432\u0430\u045A\u0435 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0430. -NodesLink.DisplayName=\u0423\u043F\u0440\u0430\u0432\u0438 \u043C\u0430\u0448\u0438\u043D\u0430\u043C\u0430 -NodesLink.Description=\u0414\u043E\u0434\u0430\u0458\u0442\u0435, \u0443\u043A\u043B\u043E\u043D\u0438\u0442\u0435, \u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 \u043C\u0430\u0448\u0438\u043D\u0435 \u043D\u0430 \u043A\u0438\u043C \u0441\u0435 \u0438\u0437\u0432\u0440\u0448\u0430\u0432\u0430\u0458\u0443 \u0437\u0430\u0434\u0430\u0446\u0438. -ShutdownLink.DisplayName_prepare=\u041F\u0440\u0438\u043F\u0440\u0435\u043C\u0438 \u0437\u0430 \u0433\u0430\u0448\u0435\u045A\u0435 -ShutdownLink.Description=\u0417\u0430\u0443\u0441\u0442\u0430\u0432\u0438 \u0438\u0437\u0432\u0440\u0448\u0430\u0432\u0430\u045A\u0435 \u043D\u043E\u0432\u0438\u0445 \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0430, \u0434\u0430 \u0431\u0438 \u0441\u0438\u0441\u0442\u0435\u043C \u043C\u043E\u0433\u0430\u043E \u0431\u0438\u0442\u0438 \u0431\u0435\u0437\u0431\u0435\u0434\u043D\u043E \u0438\u0441\u043A\u0459\u0443\u0447\u0435\u043D. -ShutdownLink.DisplayName_cancel=\u041E\u0442\u043A\u0430\u0436\u0438 \u0433\u0430\u0448\u0435\u045A\u0435 -Manage\ Jenkins=\u0423\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 Jenkins-\u043E\u043C +ConfigureLink.DisplayName=ПоÑтави ÑиÑтемÑка подешавања +ConfigureLink.Description=Обшта подешавања и путеви. +ConfigureTools.DisplayName=Обште подешавање алата +ConfigureTools.Description=ПоÑтави алате, локације, и аутоматÑку инÑталацију +ReloadLink.DisplayName=Поново учитај подешавања Ñа диÑка +ReloadLink.Description=Избриши подешавања Ñа меморије и учитај Ñа диÑка.\n КориÑно када Ñте променили подешавања директно на диÑку. +PluginsLink.Description=Додајте, уклоните, или онемогућите модуле које проширују могућноÑте Jenkins-а. +PluginsLink.DisplayName=Подешавање модула +SystemInfoLink.DisplayName=Информације о ÑиÑтему +SystemInfoLink.Description=Приказује разну информацију о ÑиÑтему да бу помагало Ñа решавањем проблемима. +SystemLogLink.DisplayName=Журнал ÑиÑтема +SystemLogLink.Description=Журнал ÑиÑтема запиÑује иÑход java.util.logging који Ñе одноÑи на Jenkins. +StatisticsLink.DisplayName=СтатиÑтике о оптерећењу +StatisticsLink.Description=Проверите оптерећење над реÑурÑима да би Ñте одредили ако је потребно више машина за изградњу. +CliLink.Description=ДоÑтупите и управљајте Jenkins-ом Ñа командне линије или Ñкриптом. +CliLink.DisplayName=Jenkins Ñа командне линије +ConsoleLink.DisplayName=Конзола +ConsoleLink.Description=Извршава Ñкриптове за админиÑтрацију и откривање проблема. +NodesLink.DisplayName=Управи машинама +NodesLink.Description=Додајте, уклоните, и прегледајте машине на ким Ñе извршавају задаци. +ShutdownLink.DisplayName_prepare=Припреми за гашење +ShutdownLink.Description=ЗауÑтави извршавање нових задатака, да би ÑиÑтем могао бити безбедно иÑкључен. +ShutdownLink.DisplayName_cancel=Откажи гашење +Manage\ Jenkins=Управљање Jenkins-ом diff --git a/core/src/main/resources/jenkins/management/Messages_sv_SE.properties b/core/src/main/resources/jenkins/management/Messages_sv_SE.properties index 1f0e7231c25a..abaa7eae1745 100644 --- a/core/src/main/resources/jenkins/management/Messages_sv_SE.properties +++ b/core/src/main/resources/jenkins/management/Messages_sv_SE.properties @@ -22,22 +22,22 @@ # THE SOFTWARE. # -NodesLink.Description=L\u00E4gga till, ta bort, kontrollera och \u00F6vervaka de olika noderna som Jenkins k\u00F6r jobb p\u00E5. -PluginsLink.Description=Installera, ta bort, aktivera eller avaktivera insticksmoduler f\u00F6r fler funktioner. +NodesLink.Description=Lägga till, ta bort, kontrollera och övervaka de olika noderna som Jenkins kör jobb pÃ¥. +PluginsLink.Description=Installera, ta bort, aktivera eller avaktivera insticksmoduler för fler funktioner. ConfigureLink.DisplayName=Konfigurera systemet -ConfigureLink.Description=Konfigurera globala inst\u00E4llningar och s\u00F6kv\u00E4gar. -ReloadLink.Description=Kasta bort all data i minnet och ladda allt fr\u00E5n filsystemet.\n\ - Anv\u00E4ndbart n\u00E4r du har \u00E4ndrat konfigurationsfiler direkt p\u00E5 disken. -SystemInfoLink.Description=Visar diverse milj\u00F6information f\u00F6r att underl\u00E4tta fels\u00F6kning. -ConsoleLink.Description=K\u00F6r godtyckliga skript f\u00F6r administration/fels\u00F6kning/diagnostik. -CliLink.Description=Kom \u00E5t/hantera Jenkins ifr\u00E5n ditt skal, eller fr\u00E5n ditt skript. +ConfigureLink.Description=Konfigurera globala inställningar och sökvägar. +ReloadLink.Description=Kasta bort all data i minnet och ladda allt frÃ¥n filsystemet.\n\ + Användbart när du har ändrat konfigurationsfiler direkt pÃ¥ disken. +SystemInfoLink.Description=Visar diverse miljöinformation för att underlätta felsökning. +ConsoleLink.Description=Kör godtyckliga skript för administration/felsökning/diagnostik. +CliLink.Description=Kom Ã¥t/hantera Jenkins ifrÃ¥n ditt skal, eller frÃ¥n ditt skript. StatisticsLink.DisplayName=Belastningstatistik -StatisticsLink.Description=Kontrollera resursutnyttjandet och se om du beh\u00F6ver fler datorer till dina byggen. +StatisticsLink.Description=Kontrollera resursutnyttjandet och se om du behöver fler datorer till dina byggen. NodesLink.DisplayName=Hantera noder PluginsLink.DisplayName=Hantera insticksmoduler -ShutdownLink.DisplayName_prepare=F\u00F6rbered f\u00F6r nedst\u00E4ngning -ReloadLink.DisplayName=L\u00E4s om konfigurationen fr\u00E5n disk. +ShutdownLink.DisplayName_prepare=Förbered för nedstängning +ReloadLink.DisplayName=Läs om konfigurationen frÃ¥n disk. ConsoleLink.DisplayName=Skriptkonsoll -ShutdownLink.Description=Sluta starta nya byggen, s\u00E5 att systemet sedan kan st\u00E4ngas s\u00E4kert. +ShutdownLink.Description=Sluta starta nya byggen, sÃ¥ att systemet sedan kan stängas säkert. SystemInfoLink.DisplayName=Systeminformation -SystemLogLink.Description=Systemloggen f\u00E5ngar utskrift fr\u00E5n java.util.logging relaterat till Jenkins. +SystemLogLink.Description=Systemloggen fÃ¥ngar utskrift frÃ¥n java.util.logging relaterat till Jenkins. diff --git a/core/src/main/resources/jenkins/management/Messages_tr.properties b/core/src/main/resources/jenkins/management/Messages_tr.properties index bff568b4c16e..636fdf0833ad 100644 --- a/core/src/main/resources/jenkins/management/Messages_tr.properties +++ b/core/src/main/resources/jenkins/management/Messages_tr.properties @@ -22,18 +22,18 @@ # THE SOFTWARE. # -SystemLogLink.Description=Sistem logu Jenkins''le ilgili olan java.util.logging \u00E7\u0131kt\u0131lar\u0131n\u0131 yakalar. -ReloadLink.DisplayName=Konfig\u00FCrasyonu Disk''ten Y\u00FCkle -ReloadLink.Description=Haf\u0131zada tutulan yap\u0131lm\u0131\u015F t\u00FCm de\u011Fi\u015Fiklikleri iptal et ve her\u015Feyi dosya sisteminden y\u00FCkle.\n\ - Konfig\u00FCrasyon dosyalar\u0131n\u0131 do\u011Frudan diskten de\u011Fi\u015Ftirdiyseniz kullan\u0131\u015Fl\u0131d\u0131r -PluginsLink.DisplayName=Eklentileri Y\u00F6net +SystemLogLink.Description=Sistem logu Jenkins''le ilgili olan java.util.logging çıktılarını yakalar. +ReloadLink.DisplayName=Konfigürasyonu Disk''ten Yükle +ReloadLink.Description=Hafızada tutulan yapılmış tüm deÄŸiÅŸiklikleri iptal et ve herÅŸeyi dosya sisteminden yükle.\n\ + Konfigürasyon dosyalarını doÄŸrudan diskten deÄŸiÅŸtirdiyseniz kullanışlıdır +PluginsLink.DisplayName=Eklentileri Yönet SystemInfoLink.DisplayName=Sistem Bilgisi -SystemInfoLink.Description=Sorun \u00E7\u00F6zebilmek i\u00E7in \u00E7e\u015Fitli ortam de\u011Fi\u015Fkenlerini g\u00F6sterir. +SystemInfoLink.Description=Sorun çözebilmek için çeÅŸitli ortam deÄŸiÅŸkenlerini gösterir. ConsoleLink.DisplayName=Script Konsolu -ConsoleLink.Description=Y\u00F6netim/sorun \u00E7\u00F6zme/te\u015Fhis i\u00E7in scriptleri \u00E7al\u0131\u015Ft\u0131r\u0131r. -ShutdownLink.DisplayName_cancel=Kapatma i\u015Flemini iptal et -ShutdownLink.DisplayName_prepare=Kapatma i\u015Flemine haz\u0131rlan -ShutdownLink.Description=Sistemin g\u00FCvenli bir \u015Fekilde kapat\u0131labilmesi i\u00E7in, yeni yap\u0131land\u0131rma \u00E7al\u0131\u015Ft\u0131r\u0131lmas\u0131n\u0131 durdurur. -ConfigureLink.DisplayName=Sistem Konfig\u00FCrasyonunu De\u011Fi\u015Ftir -ConfigureLink.Description=Evrensel ayarlar\u0131 ve path'lari konfig\u00FCre et -PluginsLink.Description=Jenkins fonksiyonalitesini art\u0131rmak i\u00E7in kullan\u0131lan eklentileri ekle, \u00E7\u0131kar, devreye al veya devre d\u0131\u015F\u0131 b\u0131rak +ConsoleLink.Description=Yönetim/sorun çözme/teÅŸhis için scriptleri çalıştırır. +ShutdownLink.DisplayName_cancel=Kapatma iÅŸlemini iptal et +ShutdownLink.DisplayName_prepare=Kapatma iÅŸlemine hazırlan +ShutdownLink.Description=Sistemin güvenli bir ÅŸekilde kapatılabilmesi için, yeni yapılandırma çalıştırılmasını durdurur. +ConfigureLink.DisplayName=Sistem Konfigürasyonunu DeÄŸiÅŸtir +ConfigureLink.Description=Evrensel ayarları ve path'lari konfigüre et +PluginsLink.Description=Jenkins fonksiyonalitesini artırmak için kullanılan eklentileri ekle, çıkar, devreye al veya devre dışı bırak diff --git a/core/src/main/resources/jenkins/management/Messages_uk.properties b/core/src/main/resources/jenkins/management/Messages_uk.properties index 3c94474eab0b..cf03d42ce3e6 100644 --- a/core/src/main/resources/jenkins/management/Messages_uk.properties +++ b/core/src/main/resources/jenkins/management/Messages_uk.properties @@ -22,12 +22,12 @@ # THE SOFTWARE. # -ConfigureLink.DisplayName=\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 \u0421\u0438\u0441\u0442\u0435\u043C\u0443 -ConfigureLink.Description=\u0417\u043C\u0456\u043D\u0438\u0442\u0438 \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u0456 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u0442\u0430 \u043F\u0443\u0442\u0456 -StatisticsLink.DisplayName=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0430 \u043D\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F -NodesLink.DisplayName=\u041A\u0435\u0440\u0443\u0432\u0430\u0442\u0438 \u0432\u0443\u0437\u043B\u0430\u043C\u0438 -PluginsLink.DisplayName=\u041A\u0435\u0440\u0443\u0432\u0430\u0442\u0438 \u0414\u043E\u0434\u0430\u0442\u043A\u0430\u043C\u0438 -ShutdownLink.DisplayName_prepare=\u041F\u0456\u0434\u0433\u043E\u0442\u0443\u0432\u0430\u0442\u0438\u0441\u044C \u0434\u043E \u0412\u0438\u043C\u043A\u043D\u0435\u043D\u043D\u044F -ReloadLink.DisplayName=\u041F\u0435\u0440\u0435\u0447\u0438\u0442\u0430\u0442\u0438 \u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u0437 \u0414\u0438\u0441\u043A\u0443 -ConsoleLink.DisplayName=\u0421\u043A\u0440\u0438\u043F\u0442\u043E\u0432\u0430 \u041A\u043E\u043D\u0441\u043E\u043B\u044C -SystemInfoLink.DisplayName=\u0406\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u044F \u043F\u0440\u043E \u0421\u0438\u0441\u0442\u0435\u043C\u0443 +ConfigureLink.DisplayName=Ðалаштувати СиÑтему +ConfigureLink.Description=Змінити глобальні Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° путі +StatisticsLink.DisplayName=СтатиÑтика Ð½Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ +NodesLink.DisplayName=Керувати вузлами +PluginsLink.DisplayName=Керувати Додатками +ShutdownLink.DisplayName_prepare=ПідготуватиÑÑŒ до Ð’Ð¸Ð¼ÐºÐ½ÐµÐ½Ð½Ñ +ReloadLink.DisplayName=Перечитати ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð· ДиÑку +ConsoleLink.DisplayName=Скриптова КонÑоль +SystemInfoLink.DisplayName=Ð†Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¿Ñ€Ð¾ СиÑтему diff --git a/core/src/main/resources/jenkins/management/Messages_zh_TW.properties b/core/src/main/resources/jenkins/management/Messages_zh_TW.properties index c9c28b0afe95..3cf80d7c072e 100644 --- a/core/src/main/resources/jenkins/management/Messages_zh_TW.properties +++ b/core/src/main/resources/jenkins/management/Messages_zh_TW.properties @@ -22,43 +22,43 @@ # THE SOFTWARE. # -ConfigureLink.DisplayName=\u8a2d\u5b9a\u7cfb\u7d71 -ConfigureLink.Description=\u8a2d\u5b9a\u5168\u57df\u8a2d\u5b9a\u53ca\u8def\u5f91\u3002 +ConfigureLink.DisplayName=設定系統 +ConfigureLink.Description=設定全域設定åŠè·¯å¾‘。 -ConfigureTools.DisplayName=\u5168\u57df\u5de5\u5177\u8a2d\u5b9a -ConfigureTools.Description=\u8a2d\u5b9a\u5de5\u5177\uff0c\u5305\u542b\u5b83\u5011\u7684\u4f4d\u7f6e\u548c\u81ea\u52d5\u5b89\u88dd\u7a0b\u5f0f\u3002 +ConfigureTools.DisplayName=全域工具設定 +ConfigureTools.Description=設定工具,包å«å®ƒå€‘çš„ä½ç½®å’Œè‡ªå‹•å®‰è£ç¨‹å¼ã€‚ -ReloadLink.DisplayName=\u5f9e\u78c1\u789f\u91cd\u65b0\u8f09\u5165\u8a2d\u5b9a -ReloadLink.Description=\u653e\u68c4\u6240\u6709\u5728\u8a18\u61b6\u9ad4\u88e1\u7684\u8cc7\u6599\uff0c\u5168\u90e8\u7531\u6a94\u6848\u7cfb\u7d71\u91cd\u65b0\u8f09\u5165\u3002\n\ -\u5982\u679c\u60a8\u76f4\u63a5\u4fee\u6539\u904e\u8a2d\u5b9a\u6a94\uff0c\u9019\u500b\u529f\u80fd\u5c31\u61c9\u8a72\u883b\u6709\u7528\u7684\u3002 +ReloadLink.DisplayName=從ç£ç¢Ÿé‡æ–°è¼‰å…¥è¨­å®š +ReloadLink.Description=放棄所有在記憶體裡的資料,全部由檔案系統é‡æ–°è¼‰å…¥ã€‚\n\ +如果您直接修改éŽè¨­å®šæª”,這個功能就應該蠻有用的。 -PluginsLink.DisplayName=\u7ba1\u7406\u5916\u639b\u7a0b\u5f0f -PluginsLink.Description=\u5916\u639b\u7a0b\u5f0f\u662f\u80fd\u64f4\u5145 Jenkins \u529f\u80fd\u7684\u7a0b\u5f0f\uff0c\u60a8\u53ef\u4ee5\u5728\u9019\u88e1\u65b0\u589e\u3001\u79fb\u9664\u3001\u505c\u7528\u6216\u662f\u555f\u7528\u5b83\u5011\u3002 +PluginsLink.DisplayName=管ç†å¤–æŽ›ç¨‹å¼ +PluginsLink.Description=外掛程å¼æ˜¯èƒ½æ“´å…… Jenkins 功能的程å¼ï¼Œæ‚¨å¯ä»¥åœ¨é€™è£¡æ–°å¢žã€ç§»é™¤ã€åœç”¨æˆ–是啟用它們。 -SystemInfoLink.DisplayName=\u7cfb\u7d71\u8cc7\u8a0a -SystemInfoLink.Description=\u986f\u793a\u7cfb\u7d71\u74b0\u5883\u8cc7\u8a0a\uff0c\u5354\u52a9\u554f\u984c\u8655\u7406\u3002 +SystemInfoLink.DisplayName=系統資訊 +SystemInfoLink.Description=顯示系統環境資訊,å”助å•é¡Œè™•ç†ã€‚ -SystemLogLink.DisplayName=\u7cfb\u7d71\u8a18\u9304 -SystemLogLink.Description=\u7cfb\u7d71\u8a18\u9304\u4fdd\u5b58\u4e86 java.util.logging \u6709\u95dc\u65bc Jenkins \u7684\u8f38\u51fa\u7d50\u679c\u3002 +SystemLogLink.DisplayName=系統記錄 +SystemLogLink.Description=系統記錄ä¿å­˜äº† java.util.logging 有關於 Jenkins 的輸出çµæžœã€‚ -StatisticsLink.DisplayName=\u8ca0\u8f09\u7d71\u8a08 -StatisticsLink.Description=\u6aa2\u67e5\u60a8\u7684\u8cc7\u6e90\u4f7f\u7528\u7387\uff0c\u770b\u770b\u662f\u4e0d\u8981\u9700\u8981\u66f4\u591a\u4e3b\u6a5f\u624d\u5920\u5efa\u7f6e\u3002 +StatisticsLink.DisplayName=負載統計 +StatisticsLink.Description=檢查您的資æºä½¿ç”¨çŽ‡ï¼Œçœ‹çœ‹æ˜¯ä¸è¦éœ€è¦æ›´å¤šä¸»æ©Ÿæ‰å¤ å»ºç½®ã€‚ -CliLink.DisplayName=Jenkins \u547d\u4ee4\u5217\u4ecb\u9762 -CliLink.Description=\u7d93\u7531 Shell \u6216\u662f\u60a8\u5beb\u7684 Script \u5b58\u53d6\u53ca\u7ba1\u7406 Jenkins\u3002 +CliLink.DisplayName=Jenkins å‘½ä»¤åˆ—ä»‹é¢ +CliLink.Description=經由 Shell 或是您寫的 Script å­˜å–åŠç®¡ç† Jenkins。 -ConsoleLink.DisplayName=Script \u4e3b\u63a7\u53f0 -ConsoleLink.Description=\u57f7\u884c\u60a8\u60f3\u8981\u7684\u7cfb\u7d71\u7ba1\u7406\u3001\u554f\u984c\u6392\u9664\u6216\u8a3a\u65b7\u7528 Script\u3002 +ConsoleLink.DisplayName=Script ä¸»æŽ§å° +ConsoleLink.Description=執行您想è¦çš„系統管ç†ã€å•é¡ŒæŽ’除或診斷用 Script。 -NodesLink.DisplayName=\u7ba1\u7406\u7bc0\u9ede\u548c\u96f2\u7aef -NodesLink.Description=\u65b0\u589e\u3001\u79fb\u9664\u3001\u63a7\u5236\u6216\u76e3\u63a7 Jenkins \u57f7\u884c\u4f5c\u696d\u7684\u5404\u500b\u7bc0\u9ede\u3002 +NodesLink.DisplayName=管ç†ç¯€é»žå’Œé›²ç«¯ +NodesLink.Description=新增ã€ç§»é™¤ã€æŽ§åˆ¶æˆ–監控 Jenkins 執行作業的å„個節點。 -ShutdownLink.DisplayName_prepare=\u6e96\u5099\u505c\u6a5f -ShutdownLink.DisplayName_cancel=\u53d6\u6d88\u505c\u6a5f -ShutdownLink.DisplayName_update=\u66f4\u65b0\u505c\u6a5f\u6e96\u5099 -ShutdownLink.Description=\u4e0d\u518d\u57f7\u884c\u65b0\u7684\u5efa\u7f6e\u4f5c\u696d\uff0c\u8b93\u7cfb\u7d71\u53ef\u4ee5\u5b89\u5168\u505c\u6a5f\u3002 -ShutdownLink.ShuttingDownInProgressDescription=Jenkins \u6b63\u5728\u505c\u6a5f\uff0c\u4e0d\u6703\u57f7\u884c\u65b0\u7684\u5efa\u7f6e\u4f5c\u696d\u3002 -ShutdownLink.ShutDownReason_title=\u539f\u56e0 -ShutdownLink.ShutDownReason_update=\u66f4\u65b0\u539f\u56e0 +ShutdownLink.DisplayName_prepare=準備åœæ©Ÿ +ShutdownLink.DisplayName_cancel=å–消åœæ©Ÿ +ShutdownLink.DisplayName_update=æ›´æ–°åœæ©Ÿæº–å‚™ +ShutdownLink.Description=ä¸å†åŸ·è¡Œæ–°çš„建置作業,讓系統å¯ä»¥å®‰å…¨åœæ©Ÿã€‚ +ShutdownLink.ShuttingDownInProgressDescription=Jenkins 正在åœæ©Ÿï¼Œä¸æœƒåŸ·è¡Œæ–°çš„建置作業。 +ShutdownLink.ShutDownReason_title=原因 +ShutdownLink.ShutDownReason_update=更新原因 -AdministrativeMonitorsDecorator.DisplayName=\u7ba1\u7406\u76e3\u8996\u5668\u901a\u77e5 +AdministrativeMonitorsDecorator.DisplayName=管ç†ç›£è¦–器通知 diff --git a/core/src/main/resources/jenkins/management/ShutdownLink/index_zh_TW.properties b/core/src/main/resources/jenkins/management/ShutdownLink/index_zh_TW.properties index 9fb0edb3d77c..adf88698cade 100644 --- a/core/src/main/resources/jenkins/management/ShutdownLink/index_zh_TW.properties +++ b/core/src/main/resources/jenkins/management/ShutdownLink/index_zh_TW.properties @@ -1,2 +1,2 @@ -Back\ to\ Dashboard=\u8fd4\u56de\u8cc7\u8a0a\u4e3b\u9801 -Manage\ Jenkins=\u7ba1\u7406 Jenkins +Back\ to\ Dashboard=è¿”å›žè³‡è¨Šä¸»é  +Manage\ Jenkins=ç®¡ç† Jenkins diff --git a/core/src/main/resources/jenkins/model/ArtifactManagerConfiguration/config_it.properties b/core/src/main/resources/jenkins/model/ArtifactManagerConfiguration/config_it.properties index 16791fe837c7..c8ca31996e92 100644 --- a/core/src/main/resources/jenkins/model/ArtifactManagerConfiguration/config_it.properties +++ b/core/src/main/resources/jenkins/model/ArtifactManagerConfiguration/config_it.properties @@ -1,5 +1,5 @@ # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_bg.properties b/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_bg.properties index 7a53d880a7a6..bd7b66933eae 100644 --- a/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_bg.properties +++ b/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Strategy=\ - \u0421\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f + Ð¡Ñ‚Ñ€Ð°Ñ‚ÐµÐ³Ð¸Ñ diff --git a/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_it.properties b/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_it.properties index 4999b9c4fdb4..d7e615252de6 100644 --- a/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_it.properties +++ b/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_pt_BR.properties b/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_pt_BR.properties index 52c240b80dec..3130749ec5d1 100644 --- a/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Strategy=Estrat\u00E9gia +Strategy=Estratégia diff --git a/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_sr.properties b/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_sr.properties index a0f4b42884f5..857b7b4f4404 100644 --- a/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_sr.properties +++ b/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Strategy=\u0420\u0435\u0436\u0438\u043C +Strategy=Режим diff --git a/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_zh_TW.properties b/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_zh_TW.properties index 09b0562c5443..9bfc57edf710 100644 --- a/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Strategy=\u7b56\u7565 +Strategy=ç­–ç•¥ diff --git a/core/src/main/resources/jenkins/model/BuiltInNodeMigration/description_pt_BR.properties b/core/src/main/resources/jenkins/model/BuiltInNodeMigration/description_pt_BR.properties index afbf42227371..6f4b56661e81 100644 --- a/core/src/main/resources/jenkins/model/BuiltInNodeMigration/description_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/BuiltInNodeMigration/description_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Quando atualizando o Jenkins desde antes da vers\u00E3o 2.307, isto permite administradores a migrarem o nome e r\u00F3tulo do n\u00F3 embutido. +blurb=Quando atualizando o Jenkins desde antes da versão 2.307, isto permite administradores a migrarem o nome e rótulo do nó embutido. diff --git a/core/src/main/resources/jenkins/model/BuiltInNodeMigration/message_pl.properties b/core/src/main/resources/jenkins/model/BuiltInNodeMigration/message_pl.properties index 241fe76e6d92..c700a0717ad1 100644 --- a/core/src/main/resources/jenkins/model/BuiltInNodeMigration/message_pl.properties +++ b/core/src/main/resources/jenkins/model/BuiltInNodeMigration/message_pl.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Apply\ Migration=Zastosuj migracje -Dismiss=Pomi\u0144 \ No newline at end of file +Dismiss=PomiÅ„ \ No newline at end of file diff --git a/core/src/main/resources/jenkins/model/BuiltInNodeMigration/message_pt_BR.properties b/core/src/main/resources/jenkins/model/BuiltInNodeMigration/message_pt_BR.properties index 510e6979c175..66344c7a9654 100644 --- a/core/src/main/resources/jenkins/model/BuiltInNodeMigration/message_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/BuiltInNodeMigration/message_pt_BR.properties @@ -20,28 +20,28 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=A palavra "mestre" ser\u00E1 aposentada como um termo descritivo para o processo principal do Jenkins e do n\u00F3 embutido. \ - O processo principal agora \u00E9 chamado de "controlador" e o n\u00F3 embutido \u00E9 chamado apenas de "n\u00F3 embutido". \ - A interface de usu\u00E1rio foi atualizada com estas mudan\u00E7as. \ - As seguintes funcionalidades tamb\u00E9m foram afetadas: \ +blurb=A palavra "mestre" será aposentada como um termo descritivo para o processo principal do Jenkins e do nó embutido. \ + O processo principal agora é chamado de "controlador" e o nó embutido é chamado apenas de "nó embutido". \ + A interface de usuário foi atualizada com estas mudanças. \ + As seguintes funcionalidades também foram afetadas: \
    \ -
  • A etiqueta impl\u00EDcita do n\u00F3 embutido muda de mestre para embutido.
  • \ -
  • A vari\u00E1vel de ambiente NODE_NAME do n\u00F3 embutido tamb\u00E9m muda de mestre para \ +
  • A etiqueta implícita do nó embutido muda de mestre para embutido.
  • \ +
  • A variável de ambiente NODE_NAME do nó embutido também muda de mestre para \ embutido.\
  • \
\ - Essas mudan\u00E7as podem afetar o comportamento de constru\u00E7\u00E3o, ent\u00E3o n\u00E3o s\u00E3o aplicadas automaticamente. \ - Antes de aplicar essas mudan\u00E7as, voc\u00EA deve fazer o seguinte: \ + Essas mudanças podem afetar o comportamento de construção, então não são aplicadas automaticamente. \ + Antes de aplicar essas mudanças, você deve fazer o seguinte: \
    \ -
  • Rever as atribui\u00E7\u00F5es de etiquetas em configura\u00E7\u00F5es de tarefas e instaladores de ferramentas que usam a etiqueta\ - master. Qualquer atribui\u00E7\u00E3o dessas etiquetas n\u00E3o ir\u00E3o casar com o n\u00F3 embutido depois da migra\u00E7\u00E3o. \ - Al\u00E9m de atualizar essas atribui\u00E7\u00F5es, voc\u00EA tamb\u00E9m poderia explicitamente adicionar explicitamente a etiqueta \ - master no n\u00F3 embutido. \ +
  • Rever as atribuições de etiquetas em configurações de tarefas e instaladores de ferramentas que usam a etiqueta\ + master. Qualquer atribuição dessas etiquetas não irão casar com o nó embutido depois da migração. \ + Além de atualizar essas atribuições, você também poderia explicitamente adicionar explicitamente a etiqueta \ + master no nó embutido. \
  • \ -
  • Revisar o uso da vari\u00E1vel de ambiente NODE_NAME em scripts de constru\u00E7\u00F5es.
  • \ +
  • Revisar o uso da variável de ambiente NODE_NAME em scripts de construções.
  • \
\ \ Saiba mais. -Apply\ Migration=Aplicar migra\u00E7\u00E3o +Apply\ Migration=Aplicar migração Dismiss=Dispensar diff --git a/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_it.properties b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_it.properties index 0eb3572ffd9a..44d44a57debf 100644 --- a/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_it.properties +++ b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_ja.properties b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_ja.properties index 3cd254db98c9..899a4d7665a1 100644 --- a/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_ja.properties +++ b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_ja.properties @@ -1,2 +1,2 @@ -blurb=\u30e6\u30fc\u30b6\u30fc {0} \u306b\u3088\u308a\u4e2d\u65ad -userNotFound=\u30e6\u30fc\u30b6\u30fc {0} \u306b\u3088\u308a\u4e2d\u65ad +blurb=ユーザー {0} ã«ã‚ˆã‚Šä¸­æ–­ +userNotFound=ユーザー {0} ã«ã‚ˆã‚Šä¸­æ–­ diff --git a/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_pl.properties b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_pl.properties index d2c91f76b00a..8acd4bb20ab0 100644 --- a/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_pl.properties +++ b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_pl.properties @@ -1,2 +1,2 @@ -blurb=Przerwane przez u\u017cytkownika {0} -userNotFound=Przerwane przez u\u017cytkownika {0} +blurb=Przerwane przez użytkownika {0} +userNotFound=Przerwane przez użytkownika {0} diff --git a/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_sr.properties b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_sr.properties index a88ce0631cae..b94aad97b53e 100644 --- a/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_sr.properties +++ b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -blurb=\u041e\u0442\u043a\u0430\u0437\u0430\u043d\u043e \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a\u043e\u043c {0} -userNotFound=\u041e\u0442\u043a\u0430\u0437\u0430\u043d\u043e \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a\u043e\u043c {0} +blurb=Отказано кориÑником {0} +userNotFound=Отказано кориÑником {0} diff --git a/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_zh_TW.properties b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_zh_TW.properties index 3b2ac62c0632..f42b37cc2a73 100644 --- a/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_zh_TW.properties @@ -21,5 +21,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\u7531\u4f7f\u7528\u8005 {0} \u4e2d\u6b62 -userNotFound=\u7531\u4f7f\u7528\u8005 {0} \u4e2d\u6b62 +blurb=由使用者 {0} 中止 +userNotFound=由使用者 {0} 中止 diff --git a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv.properties b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv.properties index 65019f3c3012..476d2746f11e 100644 --- a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv.properties +++ b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv.properties @@ -7,7 +7,7 @@ JOB_BASE_NAME.blurb=Short Name of the project of this build stripping off folder BUILD_TAG.blurb=String of "jenkins-$'{'JOB_NAME}-$'{'BUILD_NUMBER}". All forward slashes ("/") in the JOB_NAME are replaced with dashes ("-"). Convenient to put into a resource file, a jar file, etc for easier identification. EXECUTOR_NUMBER.blurb=\ The unique number that identifies the current executor \ - (among executors of the same machine) that\u2019s \ + (among executors of the same machine) that’s \ carrying out this build. This is the number you see in \ the "build executor status", except that the number starts from 0, not 1. NODE_NAME.blurb=Name of the agent if the build is on an agent, or "built-in" if run on the built-in node (or "master" until Jenkins 2.306). diff --git a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_de.properties b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_de.properties index 1076f9fd4586..4a2d408331bb 100644 --- a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_de.properties +++ b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_de.properties @@ -1,14 +1,14 @@ BUILD_NUMBER.blurb=Die aktuelle Build-Nummer, z.B. "153". BUILD_ID.blurb=Die aktuelle Build-ID. In Builds ab Jenkins 1.597 ist dies die Build-Nummer, vorher ein Zeitstempel im Format YYYY-MM-DD_hh-mm-ss. -BUILD_DISPLAY_NAME.blurb=Der Anzeigename des aktuellen Builds, standardmäßig z.B. "#153". +BUILD_DISPLAY_NAME.blurb=Der Anzeigename des aktuellen Builds, standardmäßig z.B. "#153". JOB_NAME.blurb=Projektname des Builds, z.B. "foo" oder "foo/bar". (Um in einem Bourne Shell-Script den Pfadanteil abzuschneiden, probieren Sie: $'{'JOB_NAME##*/}) BUILD_TAG.blurb=Eine Zeichenkette in der Form "jenkins-$'{'JOB_NAME}-$'{'BUILD_NUMBER}". \ - Diese Variable l\u00E4\u00DFt sich sehr bequem zur sp\u00E4teren Identifikation in eine \ + Diese Variable läßt sich sehr bequem zur späteren Identifikation in eine \ Resource-Datei, JAR-Datei usw. ablegen. -EXECUTOR_NUMBER.blurb=Die laufende Nummer des Build-Prozessors, der den aktuellen Build ausf\u00FChrt \ +EXECUTOR_NUMBER.blurb=Die laufende Nummer des Build-Prozessors, der den aktuellen Build ausführt \ (aus den Build-Prozessoren desselben Rechners). \ Dies ist die Nummer, die Sie auch im Build-Prozessor Status sehen - \ - mit der Ausnahme, dass bei der Umgebungsvariable die Z\u00E4hlung bei 0 und nicht \ + mit der Ausnahme, dass bei der Umgebungsvariable die Zählung bei 0 und nicht \ bei 1 beginnt. NODE_LABELS.blurb=Durch Leerzeichen getrennte Liste von Labels, die dem Knoten zugeordnet sind. WORKSPACE.blurb=Der absolute Pfad zum Arbeitsbereich. diff --git a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_fr.properties b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_fr.properties index 5742588d24d0..06a4d4f0de67 100644 --- a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_fr.properties +++ b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_fr.properties @@ -1,14 +1,14 @@ -BUILD_NUMBER.blurb=Le num\u00E9ro du build courant, par exemple "153" +BUILD_NUMBER.blurb=Le numéro du build courant, par exemple "153" JOB_NAME.blurb=Nom du projet de ce build, par exemple "foo" -BUILD_TAG.blurb=Le texte "jenkins-$'{'JOB_NAME}-$'{'BUILD_NUMBER}", facile \u00E0 placer dans \ +BUILD_TAG.blurb=Le texte "jenkins-$'{'JOB_NAME}-$'{'BUILD_NUMBER}", facile à placer dans \ un fichier de ressource, ou un jar, pour identification future. -EXECUTOR_NUMBER.blurb=Le num\u00E9ro unique qui identifie l'ex\u00E9cuteur courant \ - (parmi les ex\u00E9cuteurs d'une m\u00EAme machine) qui a contruit ce build. \ - Il s'agit du num\u00E9ro que vous voyez dans le "statut de l'ex\u00E9cuteur du build", \ - sauf que la num\u00E9rotation commence \u00E0 0 et non \u00E0 1. +EXECUTOR_NUMBER.blurb=Le numéro unique qui identifie l'exécuteur courant \ + (parmi les exécuteurs d'une même machine) qui a contruit ce build. \ + Il s'agit du numéro que vous voyez dans le "statut de l'exécuteur du build", \ + sauf que la numérotation commence à 0 et non à 1. NODE_LABELS.blurb= -WORKSPACE.blurb=Le chemin absolu vers le r\u00E9pertoire de travail. +WORKSPACE.blurb=Le chemin absolu vers le répertoire de travail. JENKINS_HOME.blurb= -JENKINS_URL.blurb=L'URL compl\u00E8te de Jenkins, au format http://server:port/jenkins/ +JENKINS_URL.blurb=L'URL complète de Jenkins, au format http://server:port/jenkins/ BUILD_URL.blurb= JOB_URL.blurb= diff --git a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_it.properties b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_it.properties index 123e6584496f..5e4cdcf6b49b 100644 --- a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_it.properties +++ b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,28 +22,28 @@ # THE SOFTWARE. BUILD_DISPLAY_NAME.blurb=Il nome visualizzato della compilazione corrente; \ - per impostazione predefinita è una stringa simile a "#153". + per impostazione predefinita è una stringa simile a "#153". BUILD_ID.blurb=L''ID della compilazione corrente, identico a BUILD_NUMBER per \ le compilazioni create nella versione 1.597 o successiva, un timestamp \ YYYY-MM-DD_hh-mm-ss per le compilazioni meno recenti BUILD_NUMBER.blurb=Il numero della compilazione corrente, ad esempio "153" BUILD_TAG.blurb=La stringa "jenkins-$'{'JOB_NAME}-$'{'BUILD_NUMBER}". \ Tutte le barre ("/") nella variabile JOB_NAME sono sostituite da trattini \ - ("-"). È una stringa comoda da inserire in un file di risorse, un file JAR, \ - ecc. per consentirne un''identificazione più agevole. + ("-"). È una stringa comoda da inserire in un file di risorse, un file JAR, \ + ecc. per consentirne un''identificazione più agevole. BUILD_URL.blurb=L''URL completo di questa compilazione, ad es. \ http://server:porta/jenkins/job/pippo/15/ EXECUTOR_NUMBER.blurb=Il numero univoco che identifica l''esecutore corrente \ (fra gli esecutori appartenenti alla stessa macchina) che sta eseguendo \ - questa compilazione. Questo è il numero visualizzato nello "Stato esecutore \ + questa compilazione. Questo è il numero visualizzato nello "Stato esecutore \ compilazione", ad eccezione del fatto che il numero parte da 0, non da 1. JENKINS_HOME.blurb=Il percorso assoluto della directory assegnata sul nodo \ master per consentire a Jenkins di salvare i propri dati. JENKINS_URL.blurb=L''URL completo di Jenkins, ad es. \ http://server:porta/jenkins/ (nota: disponibile solo se l''URL \ - di Jenkins è stato impostato nella configurazione di sistema) + di Jenkins è stato impostato nella configurazione di sistema) JOB_BASE_NAME.blurb=Il nome breve del progetto a cui appartiene questa \ - compilazione senza i percorsi delle directory, ad esempio "pippo" anziché \ + compilazione senza i percorsi delle directory, ad esempio "pippo" anziché \ "pluto/pippo". JOB_NAME.blurb=Il nome del progetto a cui appartiene questa compilazione, ad \ esempio "pippo" o "pippo/pluto". @@ -57,8 +57,8 @@ NODE_NAME.blurb=Il nome dell''agente se la compilazione viene eseguita su un \ WORKSPACE.blurb=Il percorso assoluto della directory assegnata alla \ compilazione come spazio di lavoro. WORKSPACE_TMP.blurb=Una directory temporanea collocata vicino allo spazio di \ - lavoro che non sarà sfogliabile e non interferirà con i checkout dal \ + lavoro che non sarà sfogliabile e non interferirà con i checkout dal \ sistema di gestione del codice sorgente. Potrebbe non esistere \ inizialmente, per cui ci si assicuri di creare la directory se richiesto \ - (ad es. con mkdir -p su Linux). Non è definita se lo spazio di \ - lavoro ordinario è la directory radice di un disco. + (ad es. con mkdir -p su Linux). Non è definita se lo spazio di \ + lavoro ordinario è la directory radice di un disco. diff --git a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_ja.properties b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_ja.properties index f43bb3bf07bc..8f3c66726b92 100644 --- a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_ja.properties +++ b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_ja.properties @@ -1,12 +1,12 @@ -BUILD_NUMBER.blurb=\u5F53\u8A72\u30D3\u30EB\u30C9\u306E\u756A\u53F7\u3002\u4F8B "153" -JOB_NAME.blurb=\u30D3\u30EB\u30C9\u306E\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u540D\u3002\u4F8B "foo" -BUILD_TAG.blurb=\u6587\u5B57\u5217 "jenkins-$'{'JOB_NAME}-$'{'BUILD_NUMBER}"\u3002\ - \u7C21\u6613\u306A\u8B58\u5225\u5B50\u3068\u3057\u3066\u3001\u30EA\u30BD\u30FC\u30B9\u30D5\u30A1\u30A4\u30EB\u3084jar\u30D5\u30A1\u30A4\u30EB\u306A\u3069\u306B\u4ED8\u4E0E\u3059\u308B\u306E\u306B\u4FBF\u5229\u3067\u3059\u3002 -EXECUTOR_NUMBER.blurb=\u3053\u306E\u30D3\u30EB\u30C9\u3092\u5B9F\u884C\u3057\u3066\u3044\u308B\u73FE\u5728\u306E\u30A8\u30B0\u30BC\u30AD\u30E5\u30FC\u30BF\u30FC\u3092\u8B58\u5225\u3059\u308B(\u540C\u4E00\u30DE\u30B7\u30F3\u306E\u4E2D\u3067)\u30E6\u30CB\u30FC\u30AF\u306A\u756A\u53F7\u3002\ - "\u30D3\u30EB\u30C9\u5B9F\u884C\u72B6\u614B"\u306B\u8868\u793A\u3055\u308C\u3066\u3044\u308B\u6570\u5B57\u3067\u3059\u304C\u30011\u3067\u306F\u306A\u304F0\u304B\u3089\u59CB\u307E\u308B\u6570\u5B57\u3067\u3059\u3002 -NODE_LABELS.blurb=\u30CE\u30FC\u30C9\u306B\u8A2D\u5B9A\u3055\u308C\u305F\u30E9\u30D9\u30EB\u306E\u30EA\u30B9\u30C8\uFF08\u30B9\u30DA\u30FC\u30B9\u533A\u5207\u308A)\u3002 -WORKSPACE.blurb=\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u306E\u7D76\u5BFE\u30D1\u30B9\u3002 +BUILD_NUMBER.blurb=当該ビルドã®ç•ªå·ã€‚例 "153" +JOB_NAME.blurb=ビルドã®ãƒ—ロジェクトå。例 "foo" +BUILD_TAG.blurb=文字列 "jenkins-$'{'JOB_NAME}-$'{'BUILD_NUMBER}"。\ + 簡易ãªè­˜åˆ¥å­ã¨ã—ã¦ã€ãƒªã‚½ãƒ¼ã‚¹ãƒ•ã‚¡ã‚¤ãƒ«ã‚„jarファイルãªã©ã«ä»˜ä¸Žã™ã‚‹ã®ã«ä¾¿åˆ©ã§ã™ã€‚ +EXECUTOR_NUMBER.blurb=ã“ã®ãƒ“ルドを実行ã—ã¦ã„ã‚‹ç¾åœ¨ã®ã‚¨ã‚°ã‚¼ã‚­ãƒ¥ãƒ¼ã‚¿ãƒ¼ã‚’識別ã™ã‚‹(åŒä¸€ãƒžã‚·ãƒ³ã®ä¸­ã§)ユニークãªç•ªå·ã€‚\ + "ビルド実行状態"ã«è¡¨ç¤ºã•ã‚Œã¦ã„ã‚‹æ•°å­—ã§ã™ãŒã€1ã§ã¯ãªã0ã‹ã‚‰å§‹ã¾ã‚‹æ•°å­—ã§ã™ã€‚ +NODE_LABELS.blurb=ノードã«è¨­å®šã•ã‚ŒãŸãƒ©ãƒ™ãƒ«ã®ãƒªã‚¹ãƒˆï¼ˆã‚¹ãƒšãƒ¼ã‚¹åŒºåˆ‡ã‚Š)。 +WORKSPACE.blurb=ワークスペースã®çµ¶å¯¾ãƒ‘ス。 JENKINS_HOME.blurb= -JENKINS_URL.blurb=Jenkins\u306EURL\u3002\u4F8B http://server:port/jenkins/ -BUILD_URL.blurb=\u3053\u306E\u30D3\u30EB\u30C9\u306EURL\u3002 \u4F8B http://server:port/jenkins/job/foo/15/ -JOB_URL.blurb=\u3053\u306E\u30B8\u30E7\u30D6\u306EURL\u3002 \u4F8B http://server:port/jenkins/job/foo/ +JENKINS_URL.blurb=Jenkinsã®URL。例 http://server:port/jenkins/ +BUILD_URL.blurb=ã“ã®ãƒ“ルドã®URL。 例 http://server:port/jenkins/job/foo/15/ +JOB_URL.blurb=ã“ã®ã‚¸ãƒ§ãƒ–ã®URL。 例 http://server:port/jenkins/job/foo/ diff --git a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_nl.properties b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_nl.properties index b5c5a58c883f..3dfd4e82ed5f 100644 --- a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_nl.properties +++ b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_nl.properties @@ -2,7 +2,7 @@ BUILD_NUMBER.blurb=Het nummer van de huidige bouwpoging, v.b. "153" JOB_NAME.blurb=Naam van het project dat gebouwd wordt door deze bouwpoging, v.b. "foo" BUILD_TAG.blurb=Het label :"jenkins-$'{'JOB_NAME}-$'{'BUILD_NUMBER}". Dit label is typisch handig om \ ter identificatie op te nemen in een "resource"-bestand, archieven (zoals jar,war,ear,...), ... . -EXECUTOR_NUMBER.blurb=Het unieke nummer, waarmee uw huidige uitvoerder ge\u00EFdentifieerd kan worden op de server. \ +EXECUTOR_NUMBER.blurb=Het unieke nummer, waarmee uw huidige uitvoerder geïdentifieerd kan worden op de server. \ Dit is het nummer dat u terugvindt in de "Status uitvoerders"-tabel op de hoofdpagina. \ Merk wel dat in die tabel geteld wordt vanaf 1. Uitvoerder 1 in de "Status uitvoerders"-tabel \ komt dus overeen met een "EXECUTOR_NUMBER" gelijk aan 0. diff --git a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_sr.properties b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_sr.properties index cd96f70b5889..b12efe16d153 100644 --- a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_sr.properties +++ b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_sr.properties @@ -1,16 +1,16 @@ # This file is under the MIT License by authors -BUILD_NUMBER.blurb=\u0422\u0440\u0435\u043D\u0443\u0442\u043D\u0438 \u0431\u0440\u043E\u0458 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435, \u043A\u0430\u043E \u043D\u043F\u0440. "153" -BUILD_ID.blurb=ID \u0442\u0440\u0435\u043D\u0443\u0442\u043D\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435, \u0438\u0434\u0435\u043D\u0442\u0438\u0447\u0430\u043D BUILD_NUMBER \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 \u043F\u043E\u0441\u043B\u0435 \u0432\u0435\u0440\u0437\u0438\u0458\u0435 1.597, \u0430 \u0448\u0430\u0431\u043B\u043E\u043D\u0443 YYYY-MM-DD_hh-mm-ss \u0437\u0430 \u0441\u0442\u0430\u0440\u0438\u0458\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435. -BUILD_DISPLAY_NAME.blurb=\u0418\u043C\u0435 \u0442\u0440\u0435\u043D\u0443\u0442\u043D\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435, \u0448\u0442\u043E \u0438\u043D\u0430\u0447\u0435 \u043B\u0438\u0447\u0438 \u043D\u0430 "#153". -JOB_NAME.blurb=\u0418\u043C\u0435 \u0437\u0430\u0434\u0430\u0442\u043A\u0430 \u0437\u0430 \u043E\u0432\u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443, \u043D\u043F\u0440. "foo" \u0438\u043B\u0438 "foo/bar". -JOB_BASE_NAME.blurb=\u041A\u0440\u0430\u0442\u043A\u043E \u0438\u043C\u0435 \u043E\u0434 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0437\u0430 \u043E\u0432\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 (\u043D\u0435 \u043F\u0443\u043D\u043E \u043F\u0443\u0442\u0430\u045A\u0435), \u043D\u043F\u0440. "foo" for "bar/foo". -BUILD_TAG.blurb=\u041D\u0438\u0437 "jenkins-$'{'JOB_NAME}-$'{'BUILD_NUMBER}". \u0421\u0432\u0435 \u043A\u043E\u0441\u0435 \u0446\u0440\u0442\u0435 ('/') \u0443 JOB_NAME \u0441\u0443 \u0437\u0430\u043C\u0435\u045A\u0435\u043D\u0438 \u0446\u0440\u0442\u0438\u0446\u0430\u043C\u0430 ('-'). \u041F\u043E\u0433\u043E\u0434\u043D\u043E \u0458\u0435 \u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0443 resource, jar, \u0438\u0442\u0434. \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435 \u0437\u0430. -EXECUTOR_NUMBER.blurb=\u0408\u0435\u0434\u0438\u043D\u0441\u0442\u0432\u0435\u043D\u0438 \u0431\u0440\u043E\u0458 \u043A\u043E\u0458\u0438 \u0438\u043D\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0443\u0458\u0435 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 (\u043E\u0434 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 \u043D\u0430 \u0438\u0441\u0442\u043E\u0458 \u043C\u0430\u0448\u0438\u043D\u0438) \u043E\u0432\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435. \u0411\u0440\u043E\u0458\u0430 \u0441\u043B\u0438\u0447\u0430\u043D \u043E\u0432\u043E\u043C\u0435, \u043A\u043E\u0458\u0438 \u043F\u043E\u0447\u0438\u045A\u0435 \u0441\u0430 0 \u0430 \u043D\u0435 1, \u0458\u0435 \u043F\u0440\u0438\u043A\u0430\u0437\u0430\u043D \u043F\u0440\u0438 "\u0441\u0442\u0430\u045A\u0435 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435". -NODE_NAME.blurb=\u0418\u043C\u0435 \u0430\u0433\u0435\u043D\u0442\u0430 \u0430\u043A\u043E \u0441\u0435 \u0438\u0437\u0432\u0440\u0448\u0430\u0432\u0430 \u043D\u0430 \u0442\u0430\u043A\u0432\u043E\u0458 \u043C\u0430\u0448\u0438\u043D\u0438, \u0438\u043B\u0438 "master" \u0430\u043A\u043E \u043D\u0430 \u0442\u0430\u043A\u0432\u043E\u0458. +BUILD_NUMBER.blurb=Тренутни број изградње, као нпр. "153" +BUILD_ID.blurb=ID тренутне изградње, идентичан BUILD_NUMBER за изградње поÑле верзије 1.597, а шаблону YYYY-MM-DD_hh-mm-ss за Ñтарије изградње. +BUILD_DISPLAY_NAME.blurb=Име тренутне изградње, што иначе личи на "#153". +JOB_NAME.blurb=Име задатка за ову изградњу, нпр. "foo" или "foo/bar". +JOB_BASE_NAME.blurb=Кратко име од пројекта за ово изградње (не пуно путање), нпр. "foo" for "bar/foo". +BUILD_TAG.blurb=Ðиз "jenkins-$'{'JOB_NAME}-$'{'BUILD_NUMBER}". Све коÑе црте ('/') у JOB_NAME Ñу замењени цртицама ('-'). Погодно је Ñтавити у resource, jar, итд. датотеке за. +EXECUTOR_NUMBER.blurb=ЈединÑтвени број који индентификује извршитеља (од извршитеља на иÑтој машини) ове изградње. Броја Ñличан овоме, који почиње Ñа 0 а не 1, је приказан при "Ñтање извршитеља изградње". +NODE_NAME.blurb=Име агента ако Ñе извршава на таквој машини, или "master" ако на таквој. NODE_LABELS.blurb= -WORKSPACE.blurb=\u0420\u0430\u0437\u043C\u0430\u043A-\u043E\u0434\u0432\u043E\u0458\u0435\u043D\u0438 \u0441\u043F\u0438\u0441\u0430\u043A \u043B\u0430\u0431\u0435\u043B\u0430 \u0434\u043E\u0434\u0435\u0459\u0435\u043D\u043E \u043C\u0430\u0448\u0438\u043D\u0438. -JENKINS_HOME.blurb=\u041F\u0443\u043D\u043E \u043F\u0443\u0442\u0430\u045A\u0435 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C\u0443 \u0434\u043E\u0434\u0435\u0459\u0435\u043D\u043E \u0433\u043B\u0430\u0432\u043D\u043E\u0458 \u043C\u0430\u0448\u0438\u043D\u0438, \u0433\u0434\u0435 \u045B\u0435 Jenkins \u0447\u0443\u0432\u0430\u0442\u0438 \u0441\u0432\u043E\u0458\u0435 \u043F\u043E\u0434\u0430\u0442\u043A\u0435. -JENKINS_URL.blurb=\u041A\u043E\u043C\u043F\u043B\u0435\u0442\u043D\u0430 Jenkins URL-\u0430\u0434\u0440\u0435\u0441\u0430, \u043A\u0430\u043E http://server:port/jenkins/ (\u0441\u0430\u043C\u043E \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u043E \u0430\u043A\u043E \u0458\u0435 Jenkins URL \u043F\u043E\u0441\u0442\u0430\u0432\u0459\u0435\u043D\u043E \u0443 \u0441\u0438\u0441\u0442\u0435\u043C\u0441\u043A\u0438\u043C \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430) -BUILD_URL.blurb=\u041A\u043E\u043C\u043F\u043B\u0435\u0442\u043D\u0430 URL-\u0430\u0434\u0440\u0435\u0441\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435, \u043D\u043F\u0440. http://server:port/jenkins/job/foo/15/ (Jenkins URL \u043C\u043E\u0440\u0430 \u0431\u0438\u0442\u0438 \u043F\u043E\u0441\u0442\u0430\u0432\u0459\u0435\u043D\u043E) -JOB_URL.blurb=\u041A\u043E\u043C\u043F\u043B\u0435\u0442\u043D\u0430 URL-\u0430\u0434\u0440\u0435\u0441\u0430 \u0437\u0430\u0434\u0430\u0442\u043A\u0430, \u043D\u043F\u0440. http://server:port/jenkins/job/foo/ (Jenkins URL \u043C\u043E\u0440\u0430 \u0431\u0438\u0442\u0438 \u043F\u043E\u0441\u0442\u0430\u0432\u0459\u0435\u043D\u043E) +WORKSPACE.blurb=Размак-одвојени ÑпиÑак лабела додељено машини. +JENKINS_HOME.blurb=Пуно путање директоријуму додељено главној машини, где ће Jenkins чувати Ñвоје податке. +JENKINS_URL.blurb=Комплетна Jenkins URL-адреÑа, као http://server:port/jenkins/ (Ñамо доÑтупно ако је Jenkins URL поÑтављено у ÑиÑтемÑким подешавања) +BUILD_URL.blurb=Комплетна URL-адреÑа изградње, нпр. http://server:port/jenkins/job/foo/15/ (Jenkins URL мора бити поÑтављено) +JOB_URL.blurb=Комплетна URL-адреÑа задатка, нпр. http://server:port/jenkins/job/foo/ (Jenkins URL мора бити поÑтављено) diff --git a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_zh_TW.properties b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_zh_TW.properties index 6f299d50bedd..3b559b26049b 100644 --- a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_zh_TW.properties @@ -21,19 +21,19 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -CI.blurb=\u56fa\u5b9a\u8a2d\u70ba\u5b57\u4e32\u300ctrue\u300d\u4ee5\u793a\u6b64\u70ba\u300c\u6301\u7e8c\u6574\u5408\u300d\u57f7\u884c\u74b0\u5883\u3002 -BUILD_NUMBER.blurb=\u76ee\u524d\u5efa\u7f6e\u7de8\u865f\uff0c\u4f8b\u5982\u300c153\u300d\u3002 -BUILD_ID.blurb=\u76ee\u524d\u5efa\u7f6e\u7684 ID\u3002\u9019\u500b\u503c\u5728 Jenkins 1.597 \u7248\u672c\u4e4b\u5f8c\u8207 BUILD_NUMBER \u4e00\u6a23\uff0c1.597 \u7248\u4e4b\u524d\u5247\u662f\u683c\u5f0f\u70ba YYYY-MM-DD_hh-mm-ss \u7684\u6642\u9593\u6233\u3002 -BUILD_DISPLAY_NAME.blurb=\u76ee\u524d\u5efa\u7f6e\u7684\u986f\u793a\u540d\u7a31\u3002\u9810\u8a2d\u60c5\u6cc1\u4e0b\uff0c\u5b83\u7684\u683c\u5f0f\u6703\u662f\u300c\#153\u300d\u3002 -JOB_NAME.blurb=\u6b64\u5efa\u7f6e\u7684\u5c08\u6848\u540d\u7a31\uff0c\u4f8b\u5982\u300cfoo\u300d\u6216\u300cfoo/bar\u300d\u3002 -JOB_BASE_NAME.blurb=\u53bb\u6389\u8cc7\u6599\u593e\u8def\u5f91\u7684\u540d\u5b57\uff0c\u50cf\u662f\u300cfoo\u300d\u4e4b\u65bc\u300cbar/foo\u300d\u3002 -BUILD_TAG.blurb=\u300cjenkins-$'{'JOB_NAME}-$'{'BUILD_NUMBER}\u300d \u5b57\u4e32\u3002JOB_NAME \u4e2d\u7684\u6240\u6709\u659c\u7dda\u300c/\u300d\u6703\u88ab\u53d6\u4ee3\u70ba\u9023\u63a5\u865f\u300c-\u300d\u3002\u65b9\u4fbf\u653e\u5230\u8cc7\u6e90\u6a94\u3001JAR \u6a94...\u88e1\uff0c\u5e6b\u52a9\u8b58\u5225\u3002 -EXECUTOR_NUMBER.blurb=\u57f7\u884c\u672c\u6b21\u5efa\u7f6e\u7684\u57f7\u884c\u7a0b\u5f0f\u7de8\u865f\uff0c\u53ef\u7528\u4f86\u9451\u5225\u540c\u6a5f\u5668\u4e0a\u7684\u4e0d\u540c\u57f7\u884c\u7a0b\u5f0f\u3002\u4e5f\u5c31\u662f\u60a8\u5728\u300c\u5efa\u7f6e\u57f7\u884c\u7a0b\u5f0f\u72c0\u614b\u300d\u88e1\u770b\u5230\u7684\u865f\u78bc\uff0c\u53ea\u662f\u9019\u88e1\u5f9e 0 \u958b\u59cb\u7b97\uff0c\u4e0d\u662f 1\u3002 -NODE_NAME.blurb=\u7bc0\u9ede\u540d\u7a31\u3002\u82e5\u672c\u5efa\u7f6e\u662f\u5728 Agent \u4e0a\u57f7\u884c\u7684\u8a71\uff0c\u9019\u500b\u503c\u6703\u662f Agent \u7684\u540d\u5b57\uff1b\u82e5\u662f\u5728\u5167\u5efa\u7bc0\u9ede\u4e0a\u57f7\u884c\u7684\u8a71\uff0c\u5247\u70ba\u300c\u5167\u5efa\u300d\uff08Jenkins 2.306 \u7248\u4ee5\u524d\u70ba\u300cmaster\u300d\uff09\u3002 -NODE_LABELS.blurb=\u4ee5\u7a7a\u767d\u5206\u9694\u7684\u7bc0\u9ede\u6a19\u7c64\u6e05\u55ae\u3002 -WORKSPACE.blurb=\u5efa\u7f6e\u5de5\u4f5c\u5340\u76ee\u9304\u7684\u7d55\u5c0d\u8def\u5f91\u3002 -WORKSPACE_TMP.blurb=\u9130\u8fd1\u5de5\u4f5c\u5340\u7684\u66ab\u5b58\u8cc7\u6599\u593e\u3002\u5b83\u65e2\u4e0d\u80fd\u88ab\u700f\u89bd\uff0c\u4e5f\u4e0d\u6703\u5e72\u64fe\u5230 SCM checkouts\u3002 \u9019\u500b\u8cc7\u6599\u593e\u539f\u672c\u53ef\u80fd\u6c92\u6709\u88ab\u5efa\u7acb\u51fa\u4f86\uff0c\u56e0\u6b64\u82e5\u9700\u8981\u7684\u8a71\uff0c\u8acb\u5efa\u7acb\u8a72\u8cc7\u6599\u593e\uff08\u4f8b\u5982\u5728 Linux\u4e0a\u4e0b mkdir -p \u6307\u4ee4\uff09\u3002 \u82e5\u5de5\u4f5c\u5340\u662f drive root \u6642\uff0cWORKSPACE_TMP \u5247\u4e0d\u6703\u88ab\u5b9a\u7fa9\u3002 -JENKINS_HOME.blurb=Controller \u7684\u6a94\u6848\u7cfb\u7d71\u4e0a\uff0c\u5206\u914d\u7d66 Jenkins \u5132\u5b58\u8cc7\u6599\u76ee\u9304\u7684\u7d55\u5c0d\u8def\u5f91\u3002 -JENKINS_URL.blurb=Jenkins \u7684\u5b8c\u6574 URL\uff0c\u4f8b\u5982 http\://server\:port/jenkins/\uff08\u5099\u8a3b\uff1a\u53ea\u5728\u7cfb\u7d71\u8a2d\u5b9a\u4e2d\u7684 Jenkins URL \u6709\u8a2d\u5b9a\u6642\u624d\u6709\u6548\uff09\u3002 -BUILD_URL.blurb=\u672c\u6b21\u5efa\u7f6e\u5b8c\u6574 URL\uff0c\u4f8b\u5982 http\://server\:port/jenkins/job/foo/15/\uff08\u4e00\u5b9a\u8981\u8a2d\u5b9a Jenkins URL \uff09\u3002 -JOB_URL.blurb=\u6b64\u4f5c\u696d\u7684\u5b8c\u6574 URL\uff0c\u4f8b\u5982 http\://server\:port/jenkins/job/foo/\uff08\u4e00\u5b9a\u8981\u8a2d\u5b9a Jenkins URL \uff09\u3002 +CI.blurb=固定設為字串「trueã€ä»¥ç¤ºæ­¤ç‚ºã€ŒæŒçºŒæ•´åˆã€åŸ·è¡Œç’°å¢ƒã€‚ +BUILD_NUMBER.blurb=ç›®å‰å»ºç½®ç·¨è™Ÿï¼Œä¾‹å¦‚「153ã€ã€‚ +BUILD_ID.blurb=ç›®å‰å»ºç½®çš„ ID。這個值在 Jenkins 1.597 版本之後與 BUILD_NUMBER 一樣,1.597 版之å‰å‰‡æ˜¯æ ¼å¼ç‚º YYYY-MM-DD_hh-mm-ss 的時間戳。 +BUILD_DISPLAY_NAME.blurb=ç›®å‰å»ºç½®çš„顯示å稱。é è¨­æƒ…æ³ä¸‹ï¼Œå®ƒçš„æ ¼å¼æœƒæ˜¯ã€Œ\#153ã€ã€‚ +JOB_NAME.blurb=此建置的專案å稱,例如「fooã€æˆ–「foo/barã€ã€‚ +JOB_BASE_NAME.blurb=去掉資料夾路徑的å字,åƒæ˜¯ã€Œfooã€ä¹‹æ–¼ã€Œbar/fooã€ã€‚ +BUILD_TAG.blurb=「jenkins-$'{'JOB_NAME}-$'{'BUILD_NUMBER}〠字串。JOB_NAME 中的所有斜線「/ã€æœƒè¢«å–代為連接號「-ã€ã€‚方便放到資æºæª”ã€JAR 檔...裡,幫助識別。 +EXECUTOR_NUMBER.blurb=執行本次建置的執行程å¼ç·¨è™Ÿï¼Œå¯ç”¨ä¾†é‘‘別åŒæ©Ÿå™¨ä¸Šçš„ä¸åŒåŸ·è¡Œç¨‹å¼ã€‚也就是您在「建置執行程å¼ç‹€æ…‹ã€è£¡çœ‹åˆ°çš„號碼,åªæ˜¯é€™è£¡å¾ž 0 開始算,ä¸æ˜¯ 1。 +NODE_NAME.blurb=節點å稱。若本建置是在 Agent 上執行的話,這個值會是 Agent çš„å字;若是在內建節點上執行的話,則為「內建ã€ï¼ˆJenkins 2.306 版以å‰ç‚ºã€Œmasterã€ï¼‰ã€‚ +NODE_LABELS.blurb=以空白分隔的節點標籤清單。 +WORKSPACE.blurb=建置工作å€ç›®éŒ„的絕å°è·¯å¾‘。 +WORKSPACE_TMP.blurb=鄰近工作å€çš„暫存資料夾。它既ä¸èƒ½è¢«ç€è¦½ï¼Œä¹Ÿä¸æœƒå¹²æ“¾åˆ° SCM checkouts。 這個資料夾原本å¯èƒ½æ²’有被建立出來,因此若需è¦çš„話,請建立該資料夾(例如在 Linux上下 mkdir -p 指令)。 若工作å€æ˜¯ drive root 時,WORKSPACE_TMP 則ä¸æœƒè¢«å®šç¾©ã€‚ +JENKINS_HOME.blurb=Controller 的檔案系統上,分é…給 Jenkins 儲存資料目錄的絕å°è·¯å¾‘。 +JENKINS_URL.blurb=Jenkins 的完整 URL,例如 http\://server\:port/jenkins/(備註:åªåœ¨ç³»çµ±è¨­å®šä¸­çš„ Jenkins URL 有設定時æ‰æœ‰æ•ˆï¼‰ã€‚ +BUILD_URL.blurb=本次建置完整 URL,例如 http\://server\:port/jenkins/job/foo/15/(一定è¦è¨­å®š Jenkins URL )。 +JOB_URL.blurb=此作業的完整 URL,例如 http\://server\:port/jenkins/job/foo/(一定è¦è¨­å®š Jenkins URL )。 diff --git a/core/src/main/resources/jenkins/model/DefaultSimplePageDecorator/simple-header_fr.properties b/core/src/main/resources/jenkins/model/DefaultSimplePageDecorator/simple-header_fr.properties index d8560a8217e2..ddb6863848a6 100644 --- a/core/src/main/resources/jenkins/model/DefaultSimplePageDecorator/simple-header_fr.properties +++ b/core/src/main/resources/jenkins/model/DefaultSimplePageDecorator/simple-header_fr.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2020 Sol\u00e8ne Garda-Krebs +# Copyright (c) 2020 Solène Garda-Krebs # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/DefaultSimplePageDecorator/simple-header_it.properties b/core/src/main/resources/jenkins/model/DefaultSimplePageDecorator/simple-header_it.properties index 4d8fed62382f..462becd5063f 100644 --- a/core/src/main/resources/jenkins/model/DefaultSimplePageDecorator/simple-header_it.properties +++ b/core/src/main/resources/jenkins/model/DefaultSimplePageDecorator/simple-header_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/DefaultSimplePageDecorator/simple-header_ja.properties b/core/src/main/resources/jenkins/model/DefaultSimplePageDecorator/simple-header_ja.properties index 201618800ae2..b85d92f4472a 100644 --- a/core/src/main/resources/jenkins/model/DefaultSimplePageDecorator/simple-header_ja.properties +++ b/core/src/main/resources/jenkins/model/DefaultSimplePageDecorator/simple-header_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Welcome\ to\ Jenkins!=Jenkins\u3078\u3088\u3046\u3053\u305d\uff01 +Welcome\ to\ Jenkins!=Jenkinsã¸ã‚ˆã†ã“ãï¼ diff --git a/core/src/main/resources/jenkins/model/DefaultSimplePageDecorator/simple-header_tr.properties b/core/src/main/resources/jenkins/model/DefaultSimplePageDecorator/simple-header_tr.properties index 4c005bd3b2a5..883dab64d856 100644 --- a/core/src/main/resources/jenkins/model/DefaultSimplePageDecorator/simple-header_tr.properties +++ b/core/src/main/resources/jenkins/model/DefaultSimplePageDecorator/simple-header_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Welcome\ to\ Jenkins\!=Jenkins''e ho\u015F geldiniz! +Welcome\ to\ Jenkins\!=Jenkins''e hoÅŸ geldiniz! diff --git a/core/src/main/resources/jenkins/model/DefaultSimplePageDecorator/simple-header_zh_TW.properties b/core/src/main/resources/jenkins/model/DefaultSimplePageDecorator/simple-header_zh_TW.properties index d76c19d29ad8..cff7b8c90126 100644 --- a/core/src/main/resources/jenkins/model/DefaultSimplePageDecorator/simple-header_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/DefaultSimplePageDecorator/simple-header_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Welcome\ to\ Jenkins\!=\u6b61\u8fce\u4f7f\u7528 Jenkins\! +Welcome\ to\ Jenkins\!=歡迎使用 Jenkins\! diff --git a/core/src/main/resources/jenkins/model/GlobalBuildDiscarderConfiguration/config_it.properties b/core/src/main/resources/jenkins/model/GlobalBuildDiscarderConfiguration/config_it.properties index 25717953ce55..d44972aefd84 100644 --- a/core/src/main/resources/jenkins/model/GlobalBuildDiscarderConfiguration/config_it.properties +++ b/core/src/main/resources/jenkins/model/GlobalBuildDiscarderConfiguration/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_da.properties b/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_da.properties index 64a253d83778..dbd4bcd37acd 100644 --- a/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_da.properties +++ b/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_da.properties @@ -22,4 +22,4 @@ Delete\ cloud=Slet sky Cloud=Sky -Add\ a\ new\ cloud=Tilf\u00f8j en ny sky +Add\ a\ new\ cloud=Tilføj en ny sky diff --git a/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_de.properties b/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_de.properties index dfbb4fdbaf78..27371e4127e6 100644 --- a/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_de.properties +++ b/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_de.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Cloud=Cloud -Add\ a\ new\ cloud=Neue Cloud hinzufügen -Delete\ cloud=Cloud löschen +Add\ a\ new\ cloud=Neue Cloud hinzufügen +Delete\ cloud=Cloud löschen diff --git a/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_es.properties b/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_es.properties index f23960386508..d8e37185d417 100644 --- a/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_es.properties +++ b/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_es.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Cloud=Nube -Add\ a\ new\ cloud=Añadir una nueva nube +Add\ a\ new\ cloud=Añadir una nueva nube Delete\ cloud=Borrar la nube diff --git a/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_it.properties b/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_it.properties index 924154216b72..12b0561f83d3 100644 --- a/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_it.properties +++ b/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -28,7 +28,7 @@ Delete\ cloud=Elimina cloud Go\ to\ plugin\ manager.=Vai al Gestore componenti aggiuntivi. LOADING=Caricamento in corso Manage\ Nodes=Gestisci nodi -No\ clouds\ have\ been\ configured.=Non è stato configurato nessun cloud. +No\ clouds\ have\ been\ configured.=Non è stato configurato nessun cloud. Save=Salva There\ are\ no\ cloud\ implementations\ for\ dynamically\ allocated\ agents\ installed.\ =\ Non sono state installate implementazioni cloud per agenti allocati \ diff --git a/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_ja.properties b/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_ja.properties index 0e17dc3e4823..0c517dd44eec 100644 --- a/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_ja.properties +++ b/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Cloud=\u30af\u30e9\u30a6\u30c9 -Add\ a\ new\ cloud=\u8ffd\u52a0 -Delete\ cloud=\u524a\u9664 +Cloud=クラウド +Add\ a\ new\ cloud=追加 +Delete\ cloud=削除 diff --git a/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_sr.properties b/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_sr.properties index 5452b6e8e1f9..db9aff190cab 100644 --- a/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_sr.properties +++ b/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Delete\ cloud=\u0423\u043A\u043B\u043E\u043D\u0438 cloud +Delete\ cloud=Уклони cloud Cloud=Cloud -Add\ a\ new\ cloud=\u0414\u043E\u0434\u0430\u0458 \u043D\u043E\u0432\u0438 cloud +Add\ a\ new\ cloud=Додај нови cloud diff --git a/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_zh_TW.properties b/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_zh_TW.properties index e87e636ae5c1..6803290f4ddf 100644 --- a/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/index_zh_TW.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u8fd4\u56de\u8cc7\u8a0a\u4e3b\u9801 -Manage\ Nodes=\u7ba1\u7406\u7bc0\u9ede -Cloud=\u96f2 -Add\ a\ new\ cloud=\u65b0\u589e\u96f2 -Delete\ cloud=\u522a\u9664\u96f2 +Back\ to\ Dashboard=è¿”å›žè³‡è¨Šä¸»é  +Manage\ Nodes=管ç†ç¯€é»ž +Cloud=雲 +Add\ a\ new\ cloud=新增雲 +Delete\ cloud=刪除雲 diff --git a/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_fr.properties b/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_fr.properties index 0e0d39bd9cf9..922d291dc78a 100644 --- a/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_fr.properties +++ b/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Global\ properties=Propriétés globales +Global\ properties=Propriétés globales diff --git a/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_it.properties b/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_it.properties index 9cc0521fa889..894907bf48a9 100644 --- a/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_it.properties +++ b/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,4 +21,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Global\ properties=Proprietà globali +Global\ properties=Proprietà globali diff --git a/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_ja.properties b/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_ja.properties index 64f858478680..a588e816b698 100644 --- a/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_ja.properties +++ b/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Global\ properties=\u30b0\u30ed\u30fc\u30d0\u30eb \u30d7\u30ed\u30d1\u30c6\u30a3 +Global\ properties=グローãƒãƒ« プロパティ diff --git a/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_ru.properties b/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_ru.properties index 58ea91db091d..d317cfb45f86 100644 --- a/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_ru.properties +++ b/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Global\ properties=\u0413\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u044B\u0435 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 +Global\ properties=Глобальные наÑтройки diff --git a/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_sr.properties b/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_sr.properties index 99c0033bf9a3..844ebaa274b4 100644 --- a/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_sr.properties +++ b/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Global\ properties=\u0413\u043B\u043E\u0431\u0430\u043B\u043D\u0430 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 +Global\ properties=Глобална подешавања diff --git a/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_zh_TW.properties b/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_zh_TW.properties index 6be9cb471649..4e71e38951f9 100644 --- a/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Global\ properties=\u5168\u57df\u5c6c\u6027 +Global\ properties=全域屬性 diff --git a/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_de.properties b/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_de.properties index 23cb474eb7a2..da219d8aa34c 100644 --- a/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_de.properties +++ b/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_de.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -useNamingStrategy = Namenskonventionen f\u00FCr Jobnamen erzwingen +useNamingStrategy = Namenskonventionen für Jobnamen erzwingen namingStrategyTitle = Namensschema strategy = Schema diff --git a/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_fr.properties b/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_fr.properties index 9cc873522f1d..a3593002ca7c 100644 --- a/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_fr.properties +++ b/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_fr.properties @@ -1,3 +1,3 @@ useNamingStrategy=Restreindre le nommage de projet -namingStrategyTitle=Strat\u00E9gie de nommage -strategy=Strat\u00E9gie +namingStrategyTitle=Stratégie de nommage +strategy=Stratégie diff --git a/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_it.properties b/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_it.properties index 81eecddfa544..e7e5eccd6c87 100644 --- a/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_it.properties +++ b/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_ja.properties b/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_ja.properties index b1f2120ff225..4442562af95f 100644 --- a/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_ja.properties +++ b/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_ja.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -useNamingStrategy = \u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u540D\u306E\u5236\u9650 -namingStrategyTitle = \u30CD\u30FC\u30DF\u30F3\u30B0\u898F\u7D04 -strategy = \u898F\u7D04 +useNamingStrategy = プロジェクトåã®åˆ¶é™ +namingStrategyTitle = ãƒãƒ¼ãƒŸãƒ³ã‚°è¦ç´„ +strategy = è¦ç´„ diff --git a/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_sr.properties b/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_sr.properties index 96acef24d2ee..c67fd36aa8f9 100644 --- a/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_sr.properties +++ b/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -useNamingStrategy=\u041A\u043E\u0440\u0438\u0441\u0442\u0438 \u0448\u0435\u043C\u0443 \u0438\u043C\u0435\u043D\u043E\u0432\u0430\u045A\u0430 \u0437\u0430 \u043D\u0430\u0437\u0438\u0432 \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0430 -namingStrategyTitle=\u0428\u0435\u043C\u0430 \u0438\u043C\u0435\u043D\u043E\u0432\u0430\u045A\u0430 -strategy=\u0428\u0435\u043C\u0430 +useNamingStrategy=КориÑти шему именовања за назив задатака +namingStrategyTitle=Шема именовања +strategy=Шема diff --git a/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_zh_TW.properties b/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_zh_TW.properties index f9ac03128a5d..040125d596c5 100644 --- a/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -useNamingStrategy=\u5C08\u6848\u547D\u540D\u9650\u5236 -namingStrategyTitle=\u547D\u540D\u7B56\u7565 -strategy=\u7B56\u7565 +useNamingStrategy=專案命åé™åˆ¶ +namingStrategyTitle=命åç­–ç•¥ +strategy=ç­–ç•¥ diff --git a/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_fr.properties b/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_fr.properties index 06b257cdcb1a..e8ab0dded414 100644 --- a/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_fr.properties +++ b/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Quiet\ period=Période d''attente +Quiet\ period=Période d''attente diff --git a/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_it.properties b/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_it.properties index dec366edd83d..371bd9f9686e 100644 --- a/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_it.properties +++ b/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_ja.properties b/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_ja.properties index 29e6748c9fad..14c0827ebe6e 100644 --- a/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_ja.properties +++ b/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Quiet\ period=\u5f85\u6a5f\u6642\u9593 +Quiet\ period=待機時間 diff --git a/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_pt_BR.properties b/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_pt_BR.properties index 46b5889ef924..a46ef2cea0eb 100644 --- a/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Quiet\ period=Per\u00edodo de sil\u00eancio +Quiet\ period=Período de silêncio diff --git a/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_ru.properties b/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_ru.properties index d6e61c7ced7e..a70b78443a1d 100644 --- a/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_ru.properties +++ b/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Quiet\ period=\u0417\u0430\u0434\u0435\u0440\u0436\u043a\u0430 \u043f\u0435\u0440\u0435\u0434 \u0441\u0431\u043e\u0440\u043a\u043e\u0439 +Quiet\ period=Задержка перед Ñборкой diff --git a/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_sr.properties b/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_sr.properties index dd06cd0724c3..cc28e93f8bbe 100644 --- a/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_sr.properties +++ b/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Quiet\ period=\u041F\u0435\u0440\u0438\u043E\u0434 \u045B\u0443\u0442\u0430\u045A\u0430 +Quiet\ period=Период ћутања diff --git a/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_zh_TW.properties b/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_zh_TW.properties index 392fe7bc3b43..88e618875406 100644 --- a/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Quiet\ period=\u975c\u5019\u6642\u9593 +Quiet\ period=éœå€™æ™‚é–“ diff --git a/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_da.properties b/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_da.properties index 75bf08b004fb..fbdaa9224911 100644 --- a/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_da.properties +++ b/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_da.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -SCM\ checkout\ retry\ count=Antal SCM checkout fors\u00f8g +SCM\ checkout\ retry\ count=Antal SCM checkout forsøg diff --git a/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_it.properties b/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_it.properties index 1e689c8cf1ad..a2c4106b4128 100644 --- a/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_it.properties +++ b/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_ja.properties b/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_ja.properties index ad2db1071d02..b7135fe9aff9 100644 --- a/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_ja.properties +++ b/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -SCM\ checkout\ retry\ count=SCM\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8 \u30ea\u30c8\u30e9\u30a4\u6570 +SCM\ checkout\ retry\ count=SCMãƒã‚§ãƒƒã‚¯ã‚¢ã‚¦ãƒˆ リトライ数 diff --git a/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_ru.properties b/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_ru.properties index 76498c785d91..1086ff3fecc0 100644 --- a/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_ru.properties +++ b/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -SCM\ checkout\ retry\ count=\u041A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E \u043F\u043E\u043F\u044B\u0442\u043E\u043A \u043E\u0431\u0440\u0430\u0449\u0435\u043D\u0438\u044F \u043A SCM \u0434\u043B\u044F \u0432\u044B\u0433\u0440\u0443\u0437\u043A\u0438 \u043F\u0440\u043E\u0435\u043A\u0442\u043E\u0432 +SCM\ checkout\ retry\ count=КоличеÑтво попыток Ð¾Ð±Ñ€Ð°Ñ‰ÐµÐ½Ð¸Ñ Ðº SCM Ð´Ð»Ñ Ð²Ñ‹Ð³Ñ€ÑƒÐ·ÐºÐ¸ проектов diff --git a/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_sr.properties b/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_sr.properties index aaef0b2a2088..585b017ef5ce 100644 --- a/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_sr.properties +++ b/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -SCM\ checkout\ retry\ count=\u0411\u0440\u043E\u0458 \u043F\u043E\u043A\u0443\u0448\u0430\u0458\u0430 \u043F\u0440\u0435\u0443\u0437\u0438\u043C\u0430\u045A\u0435 \u0438\u0437\u0432\u043E\u0440\u043D\u043E\u0433 \u043A\u043E\u0434\u0430 +SCM\ checkout\ retry\ count=Број покушаја преузимање изворног кода diff --git a/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_zh_TW.properties b/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_zh_TW.properties index 16cca5ce3b9e..138d920eea92 100644 --- a/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -SCM\ checkout\ retry\ count=SCM Checkout \u91cd\u8a66\u6b21\u6578 +SCM\ checkout\ retry\ count=SCM Checkout é‡è©¦æ¬¡æ•¸ diff --git a/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/description_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/description_pt_BR.properties index 983ce1d2c4f2..7e147618e484 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/description_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/description_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Informa aos administradores que a porta TCP do agent \u00E9 diferente do valor imposto e ser\u00E1 revertido no rein\u00EDcio do sistema. +blurb=Informa aos administradores que a porta TCP do agent é diferente do valor imposto e será revertido no reinício do sistema. diff --git a/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/description_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/description_zh_TW.properties index 884a79be8d82..430b4eec7920 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/description_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/description_zh_TW.properties @@ -1 +1 @@ -blurb=\u901a\u77e5\u7ba1\u7406\u54e1 TCP Agent \u9023\u63a5\u57e0\u4e0d\u540c\u65bc\u5f37\u5236\u503c\u4e14\u91cd\u65b0\u555f\u52d5\u5f8c\u6703\u91cd\u8a2d\u3002 +blurb=通知管ç†å“¡ TCP Agent 連接埠ä¸åŒæ–¼å¼·åˆ¶å€¼ä¸”é‡æ–°å•Ÿå‹•å¾Œæœƒé‡è¨­ã€‚ diff --git a/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_bg.properties index 9a2eee5fff17..bbd6892dba48 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_bg.properties @@ -22,8 +22,8 @@ # JNLP Agent Port has been changed but was specified through system property {0} on startup. Its value will be reset to {1,number,#} on restart. description=\ - \u041f\u043e\u0440\u0442\u044a\u0442 \u0437\u0430 \u0430\u0433\u0435\u043d\u0442\u0430 \u043f\u043e JNLP \u0435 \u043f\u0440\u043e\u043c\u0435\u043d\u0435\u043d \u0447\u0440\u0435\u0437 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u0442\u043e \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u043e \u201e{0}\u201c \u043f\u0440\u0438\ - \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435. \u0421\u0442\u043e\u0439\u043d\u043e\u0441\u0442\u0442\u0430 \u0449\u0435 \u0431\u044a\u0434\u0435 \u0432\u044a\u0440\u043d\u0430\u0442\u0430 \u043d\u0430 {1,number,#} \u043f\u0440\u0438 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435. + Портът за агента по JNLP е променен чрез ÑиÑтемното ÑвойÑтво „{0}“ при\ + Ñтартиране. СтойноÑтта ще бъде върната на {1,number,#} при реÑтартиране. # Reset to {0,number,#} reset=\ - \u0412\u0440\u044a\u0449\u0430\u043d\u0435 \u043d\u0430 {0,number,#} + Връщане на {0,number,#} diff --git a/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_de.properties b/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_de.properties index 213275c7dec4..bd360a7e8f81 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_de.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description=Der TCP-Agent-Port wurde ver\u00E4ndert, obwohl er durch die System-Eigenschaft {0} beim Start festgelegt wurde. Der Wert wird beim Neustart auf {1,number,#} zur\u00FCckgesetzt. -reset=Auf {0,number,#} zur\u00FCcksetzen +description=Der TCP-Agent-Port wurde verändert, obwohl er durch die System-Eigenschaft {0} beim Start festgelegt wurde. Der Wert wird beim Neustart auf {1,number,#} zurückgesetzt. +reset=Auf {0,number,#} zurücksetzen diff --git a/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_it.properties b/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_it.properties index 5c1939a0645a..11e12ba54ef3 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,7 +21,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description=La porta dell''agente TCP è stata modificata ma era stata \ - specificata tramite la proprietà di sistema {0} all''avvio. Il \ - suo valore sarà reimpostato a {1,number,#} al riavvio. +description=La porta dell''agente TCP è stata modificata ma era stata \ + specificata tramite la proprietà di sistema {0} all''avvio. Il \ + suo valore sarà reimpostato a {1,number,#} al riavvio. reset=Reimposta a {0,number,#} diff --git a/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_pt_BR.properties index 34a61f15aefb..40374f92bcad 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description=A porta TCP do agente foi modificada mas estava especificada atrav\u00E9s da propriedade de sistema {0} na inicializa\u00E7\u00E3o. Este valor ser\u00E1 reiniciado para {1,number,#} e, um rein\u00EDcio do sistema. +description=A porta TCP do agente foi modificada mas estava especificada através da propriedade de sistema {0} na inicialização. Este valor será reiniciado para {1,number,#} e, um reinício do sistema. reset=Reiniciar para {0,number,#} diff --git a/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_zh_TW.properties index cd289a42b0e4..739288564e36 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_zh_TW.properties @@ -1,2 +1,2 @@ -description=TCP Agent \u9023\u63a5\u57e0\u5df2\u8b8a\u66f4\u4f46\u5df2\u5728\u555f\u52d5\u6642\u7531\u7cfb\u7d71\u5c6c\u6027 {0} \u6240\u6307\u5b9a\u3002\u5b83\u7684\u503c\u6703\u5728\u91cd\u65b0\u555f\u52d5\u5f8c\u88ab\u91cd\u8a2d\u70ba {1,number,\#}\u3002 -reset=\u91cd\u8a2d\u70ba {0,number,\#} +description=TCP Agent 連接埠已變更但已在啟動時由系統屬性 {0} 所指定。它的值會在é‡æ–°å•Ÿå‹•å¾Œè¢«é‡è¨­ç‚º {1,number,\#}。 +reset=é‡è¨­ç‚º {0,number,\#} diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/_api_it.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/_api_it.properties index cf1761a72565..55ec55b1868b 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/_api_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/_api_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/_api_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/_api_pt_BR.properties index d2c3d5934410..af66120124f5 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/_api_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/_api_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Load\ Statistics=Carregar\ estat\u00EDsticas +Load\ Statistics=Carregar\ estatísticas diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/_api_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/_api_zh_TW.properties index 627093aaf215..51e331e5807a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/_api_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/_api_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Load\ Statistics=\u8ca0\u8f09\u7d71\u8a08 +Load\ Statistics=負載統計 diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_bg.properties index 364c9355aea9..19d7448b8e3c 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_bg.properties @@ -21,12 +21,12 @@ # THE SOFTWARE. Node\ Properties=\ - \u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u043c\u0430\u0448\u0438\u043d\u0430\u0442\u0430 + СвойÑтва на машината Number\ of\ executors=\ - \u0411\u0440\u043e\u0439 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430\u0449\u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0438 + Брой изпълнÑващи процеÑи Description=\ - \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 + ОпиÑание Save=\ - \u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 + Запазване Labels=\ - \u0415\u0442\u0438\u043a\u0435\u0442\u0438 + Етикети diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_es.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_es.properties index 43717235d55b..1837d4fb9287 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_es.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Number\ of\ executors=N\u00FAmero de ejecutores +Number\ of\ executors=Número de ejecutores Labels=Etiquetas Node\ Properties=Propiedades del nodo Save=Guardar diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_fi.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_fi.properties index 89ddc34e807a..b6c3b2c52400 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_fi.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_fi.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Number\ of\ executors=Suorittaajien lukum\u00E4\u00E4r\u00E4 +Number\ of\ executors=Suorittaajien lukumäärä Labels= Node\ Properties= Save=Tallenna diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_fr.properties index 547830bb37e5..b70cc8044730 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_fr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Number\ of\ executors=Nombre d''ex\u00E9cuteurs -Labels=\u00C9tiquettes -Node\ Properties=Propri\u00E9t\u00E9s du N\u0153ud +Number\ of\ executors=Nombre d''exécuteurs +Labels=Étiquettes +Node\ Properties=Propriétés du NÅ“ud Save=Sauvegarder diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_hu.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_hu.properties index 094613a10391..f524af2bf721 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_hu.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_hu.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Number\ of\ executors=A v\u00E9grehajt\u00F3k sz\u00E1ma +Number\ of\ executors=A végrehajtók száma diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_it.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_it.properties index ba735e37f2a6..47ff3ed35a2a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -24,5 +24,5 @@ Number\ of\ executors=Numero di esecutori Description=Descrizione Labels=Etichette -Node\ Properties=Proprietà nodo +Node\ Properties=Proprietà nodo Save=Salva diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ja.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ja.properties index ac93d9a97410..ecb05a4e1a59 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ja.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ja.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Number\ of\ executors=\u540c\u6642\u5b9f\u884c\u6570 -Labels=\u30E9\u30D9\u30EB -Node\ Properties=\u30CE\u30FC\u30C9\u30D7\u30ED\u30D1\u30C6\u30A3 -Save=\u4FDD\u5B58 -Description=\u8aac\u660e +Number\ of\ executors=åŒæ™‚実行数 +Labels=ラベル +Node\ Properties=ノードプロパティ +Save=ä¿å­˜ +Description=説明 diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ko.properties index 97f282aca2a9..f33e0ac0513d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ko.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ko.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Labels=\uB77C\uBCA8 -Save=\uC800\uC7A5 +Labels=ë¼ë²¨ +Save=저장 diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_lt.properties index 690370c78fb0..1e487a1cba46 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_lt.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_lt.properties @@ -1,5 +1,5 @@ -Number\ of\ executors=# vykdytoj\u0173 -Labels=Etiket\u0117s -Node\ Properties=Mazgo savyb\u0117s -Save=\u012era\u0161yti -Description=Apra\u0161ymas +Number\ of\ executors=# vykdytojų +Labels=EtiketÄ—s +Node\ Properties=Mazgo savybÄ—s +Save=Ä®raÅ¡yti +Description=ApraÅ¡ymas diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_pt_BR.properties index dbc3b9782bda..012664fb5543 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_pt_BR.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Number\ of\ executors=N\u00famero de executores -Labels=R\u00F3tulos -Node\ Properties=Propriedades do n\u00F3 +Number\ of\ executors=Número de executores +Labels=Rótulos +Node\ Properties=Propriedades do nó Save=Salvar -Description=Descri\u00e7\u00e3o +Description=Descrição diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ru.properties index 42957dd5ac34..cb3b303a50b5 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ru.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Number\ of\ executors=\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432-\u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0435\u0439 -Description=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 -Labels=\u041c\u0435\u0442\u043a\u0438 -Node\ Properties=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0443\u0437\u043b\u0430 -Save=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c +Number\ of\ executors=КоличеÑтво процеÑÑов-иÑполнителей +Description=ОпиÑание +Labels=Метки +Node\ Properties=ÐаÑтройки узла +Save=Сохранить diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_sr.properties index 7b0da707aee3..feb1b0ba9f95 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_sr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_sr.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -Labels=\u041B\u0430\u0431\u0435\u043B\u0435 -Node\ Properties=\u041F\u043E\u0441\u0442\u0430\u0432\u043A\u0435 \u043C\u0430\u0448\u0438\u043D\u0435 -Save=\u0421\u0430\u0447\u0443\u0432\u0430\u0458 -Number\ of\ executors=\u0431\u0440\u043E\u0458 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 -Description=\u041E\u043F\u0438\u0441 +Labels=Лабеле +Node\ Properties=ПоÑтавке машине +Save=Сачувај +Number\ of\ executors=број извршитеља +Description=ÐžÐ¿Ð¸Ñ diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_tr.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_tr.properties index e97ee5ba5b08..2c2c7c99cb16 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_tr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_tr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Number\ of\ executors=Yap\u0131land\u0131rma i\u015flemleri say\u0131s\u0131 +Number\ of\ executors=Yapılandırma iÅŸlemleri sayısı Labels=Etiketler Node\ Properties= Save=Kaydet diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_zh_TW.properties index b973199719e2..7ffaf3768b43 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_zh_TW.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=\u8aaa\u660e -Number\ of\ executors=\u57f7\u884c\u7a0b\u5f0f\u6578 -Labels=\u6a19\u7c64 -Node\ Properties=\u7bc0\u9ede\u5c6c\u6027 -Save=\u5132\u5b58 +Description=說明 +Number\ of\ executors=執行程å¼æ•¸ +Labels=標籤 +Node\ Properties=節點屬性 +Save=儲存 diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_hu.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_hu.properties index 7feebb765478..84e3d7e20746 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_cli_hu.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_hu.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Available\ Commands=El\u00E9rhet\u0151 Parancsok -Jenkins\ CLI=Jenkins Parancssori Fel\u00FClet +Available\ Commands=ElérhetÅ‘ Parancsok +Jenkins\ CLI=Jenkins Parancssori Felület diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_ko.properties index d459d5dafe49..e1f37b4e7846 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_cli_ko.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_ko.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Available\ Commands=\uC0AC\uC6A9\uAC00\uB2A5\uD55C \uBA85\uB839\uB4E4 -blurb=Jenkins\uC758 \uB2E4\uC591\uD55C \uAE30\uB2A5\uC744 command-line \uD234\uC744 \uC0AC\uC6A9\uD558\uC5EC \uC811\uADFC\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4. \uC774\uAE30\uB2A5\uC5D0 \uB300\uD55C \uB354 \uC790\uC138\uD55C \uB0B4\uC6A9\uC740\uC774 Wiki\uB97C \uBCF4\uC138\uC694. \uC2DC\uC791\uD558\uB824\uBA74, jenkins-cli.jar\uC744 \uB2E4\uC6B4\uB85C\uB4DC \uD55C\uB4A4 \uB2E4\uC74C\uACFC \uAC19\uC774 \uC2E4\uD589\uD569\uB2C8\uB2E4: +Available\ Commands=사용가능한 명령들 +blurb=Jenkinsì˜ ë‹¤ì–‘í•œ ê¸°ëŠ¥ì„ command-line íˆ´ì„ ì‚¬ìš©í•˜ì—¬ 접근할 수 있습니다. ì´ê¸°ëŠ¥ì— 대한 ë” ìžì„¸í•œ ë‚´ìš©ì€ì´ Wiki를 보세요. 시작하려면, jenkins-cli.jarì„ ë‹¤ìš´ë¡œë“œ 한뒤 다ìŒê³¼ ê°™ì´ ì‹¤í–‰í•©ë‹ˆë‹¤: diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_pl.properties index c66365c63b0e..6570886986e3 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_cli_pl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_pl.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Available\ Commands=Dost\u0119pne komendy -Jenkins\ CLI=Wyj\u015Bcie Konsoli +Available\ Commands=DostÄ™pne komendy +Jenkins\ CLI=WyjÅ›cie Konsoli diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_pt_PT.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_pt_PT.properties index 591e0ed76300..6864b3b45e3a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_cli_pt_PT.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_pt_PT.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Available\ Commands=Comandos dispon\u00EDveis +Available\ Commands=Comandos disponíveis Jenkins\ CLI=CLI Jenkins diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_sr.properties index a832e8a8db60..0a9da3c933a7 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_cli_sr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Jenkins\ CLI=Jenkins \u0441\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u0435 \u043B\u0438\u043D\u0438\u0458\u0435 -Available\ Commands=\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u0435 +Jenkins\ CLI=Jenkins Ñа командне линије +Available\ Commands=ДоÑтупне команде diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_sv_SE.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_sv_SE.properties index 8355f19a5c91..477c355459e1 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_cli_sv_SE.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_sv_SE.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Available\ Commands=Tillg\u00E4ngliga kommandon -Jenkins\ CLI=Jenkins CLI (kommandorads\u00E5tkomst) -blurb=Du kan komma \u00E5t diverse funktioner i Jenkins genom ett kommandoradsverktyg. Se Wikin f\u00F6r mer detaljer av den h\u00E4r funktionen. F\u00F6r att komma ig\u00E5ng, ladda ner jenkins-cli.jar och k\u00F6r enligt f\u00F6ljande: +Available\ Commands=Tillgängliga kommandon +Jenkins\ CLI=Jenkins CLI (kommandoradsÃ¥tkomst) +blurb=Du kan komma Ã¥t diverse funktioner i Jenkins genom ett kommandoradsverktyg. Se Wikin för mer detaljer av den här funktionen. För att komma igÃ¥ng, ladda ner jenkins-cli.jar och kör enligt följande: diff --git a/core/src/main/resources/jenkins/model/Jenkins/_restart_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/_restart_bg.properties index 74184c4dcc0b..52b290dede54 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_restart_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_restart_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Yes=\ - \u0414\u0430 + Да Are\ you\ sure\ about\ restarting\ Jenkins?=\ - \u0421\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0442\u0435 Jenkins? + Сигурни ли Ñте, че иÑкате да реÑтартирате Jenkins? Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=\ - \u0421 \u0442\u0435\u043a\u0443\u0449\u0438\u0442\u0435 \u0441\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 Jenkins \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430. + С текущите Ñи наÑтройки Jenkins не може да Ñе реÑтартира. diff --git a/core/src/main/resources/jenkins/model/Jenkins/_restart_da.properties b/core/src/main/resources/jenkins/model/Jenkins/_restart_da.properties index c8fb6b896269..29180021e311 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_restart_da.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_restart_da.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Yes=Ja -Are\ you\ sure\ about\ restarting\ Jenkins?=Er du sikker p\u00e5 at du vil genstarte Jenkins? +Are\ you\ sure\ about\ restarting\ Jenkins?=Er du sikker pÃ¥ at du vil genstarte Jenkins? diff --git a/core/src/main/resources/jenkins/model/Jenkins/_restart_de.properties b/core/src/main/resources/jenkins/model/Jenkins/_restart_de.properties index 6530fd02ee05..7d99e4d9a180 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_restart_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_restart_de.properties @@ -1,3 +1,3 @@ -Are\ you\ sure\ about\ restarting\ Jenkins?=M\u00F6chten Sie Jenkins wirklich neu starten? +Are\ you\ sure\ about\ restarting\ Jenkins?=Möchten Sie Jenkins wirklich neu starten? Yes=Ja Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Jenkins kann sich wie konfiguriert nicht selbst neu starten. diff --git a/core/src/main/resources/jenkins/model/Jenkins/_restart_es.properties b/core/src/main/resources/jenkins/model/Jenkins/_restart_es.properties index 0a562ba27e8b..b78236bc4e99 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_restart_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_restart_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ restarting\ Jenkins?=¿Estás seguro de querer reiniciar Jenkins? -Yes=Sí +Are\ you\ sure\ about\ restarting\ Jenkins?=¿Estás seguro de querer reiniciar Jenkins? +Yes=Sí diff --git a/core/src/main/resources/jenkins/model/Jenkins/_restart_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/_restart_fr.properties index 1904365950e9..f0e1addde587 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_restart_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_restart_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ restarting\ Jenkins?=\u00cates-vous s\u00fbr de vouloir red\u00e9marrer Jenkins? +Are\ you\ sure\ about\ restarting\ Jenkins?=Êtes-vous sûr de vouloir redémarrer Jenkins? Yes=Oui diff --git a/core/src/main/resources/jenkins/model/Jenkins/_restart_it.properties b/core/src/main/resources/jenkins/model/Jenkins/_restart_it.properties index e133760c1edc..23515991013b 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_restart_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_restart_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,7 +22,7 @@ # THE SOFTWARE. Are\ you\ sure\ you\ want\ to\ restart\ Jenkins?=Riavviare Jenkins? -Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Jenkins non può \ - riavviarsi autononomamente così come configurato attualmente. +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Jenkins non può \ + riavviarsi autononomamente così come configurato attualmente. Restart\ Jenkins=Riavvia Jenkins -Yes=Sì +Yes=Sì diff --git a/core/src/main/resources/jenkins/model/Jenkins/_restart_ja.properties b/core/src/main/resources/jenkins/model/Jenkins/_restart_ja.properties index 3b254d03d1b4..a71905634f07 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_restart_ja.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_restart_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ restarting\ Jenkins?=Jenkins\u3092\u518D\u8D77\u52D5\u3057\u3066\u3088\u308D\u3057\u3044\u3067\u3059\u304B? -Yes=\u306F\u3044 +Are\ you\ sure\ about\ restarting\ Jenkins?=Jenkinsã‚’å†èµ·å‹•ã—ã¦ã‚ˆã‚ã—ã„ã§ã™ã‹? +Yes=ã¯ã„ diff --git a/core/src/main/resources/jenkins/model/Jenkins/_restart_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/_restart_lt.properties index 8d9d9476c750..661945887a83 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_restart_lt.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_restart_lt.properties @@ -1,3 +1,3 @@ Yes=Taip -Are\ you\ sure\ about\ restarting\ Jenkins?=Ar tikrai norite i\u0161 naujo paleisti Jenkins\u0105? -Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Jenkinsas toks, koks dabar yra sukonfig\u016bruotas, negali pats sav\u0119s paleisti i\u0161 naujo. +Are\ you\ sure\ about\ restarting\ Jenkins?=Ar tikrai norite iÅ¡ naujo paleisti JenkinsÄ…? +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Jenkinsas toks, koks dabar yra sukonfigÅ«ruotas, negali pats savÄ™s paleisti iÅ¡ naujo. diff --git a/core/src/main/resources/jenkins/model/Jenkins/_restart_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/_restart_pl.properties index e3cd86fa188f..6837ab95114a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_restart_pl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_restart_pl.properties @@ -19,6 +19,6 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ restarting\ Jenkins?=Czy na pewno chcesz ponownie uruchomi\u0107 Jenkinsa? +Are\ you\ sure\ about\ restarting\ Jenkins?=Czy na pewno chcesz ponownie uruchomić Jenkinsa? Yes=Tak -Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Aktualna konfiguracja uniemo\u017Cliwia Jenkinsowi samodzielne ponowne uruchomienie. +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Aktualna konfiguracja uniemożliwia Jenkinsowi samodzielne ponowne uruchomienie. diff --git a/core/src/main/resources/jenkins/model/Jenkins/_restart_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/_restart_pt_BR.properties index 72ed2753f858..e3aaf14873c1 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_restart_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_restart_pt_BR.properties @@ -22,5 +22,5 @@ Yes=Sim Restart\ Jenkins=Reiniciar o Jenkins -Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=O\ Jenkins\ n\u00E3o\ pode\ se\ reiniciar\ da\ forma\ como\ est\u00E1\ configurado\ no\ momento. -Are\ you\ sure\ you\ want\ to\ restart\ Jenkins?=Voc\u00EA\ tem\ certeza\ de\ que\ quer\ reiniciar\ o\ Jenkins? +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=O\ Jenkins\ não\ pode\ se\ reiniciar\ da\ forma\ como\ está\ configurado\ no\ momento. +Are\ you\ sure\ you\ want\ to\ restart\ Jenkins?=Você\ tem\ certeza\ de\ que\ quer\ reiniciar\ o\ Jenkins? diff --git a/core/src/main/resources/jenkins/model/Jenkins/_restart_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/_restart_ru.properties index a61b38b6a9d5..d09f1237f67d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_restart_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_restart_ru.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Are\ you\ sure\ about\ restarting\ Jenkins?=\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c Jenkins? -Yes=\u0414\u0430 -Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=\u0421\u043e\u0433\u043b\u0430\u0441\u043d\u043e \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u043c, Jenkins \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c\u0441\u044f \u0441\u0430\u043c. +Are\ you\ sure\ about\ restarting\ Jenkins?=Ð’Ñ‹ уверены, что хотите перезапуÑтить Jenkins? +Yes=Да +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=СоглаÑно наÑтройкам, Jenkins не может перезапуÑтитьÑÑ Ñам. diff --git a/core/src/main/resources/jenkins/model/Jenkins/_restart_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/_restart_sr.properties index fa62a6b2c338..0bb43fb646ef 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_restart_sr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_restart_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Are\ you\ sure\ about\ restarting\ Jenkins?=\u0414\u0430\u043B\u0438 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u0435 Jenkins? -Yes=\u0414\u0430 -Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=\u041D\u0435\u043C\u043E\u0436\u0435 \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u0438 Jenkins \u043F\u043E \u043E\u0432\u0438\u043C \u043F\u043E\u0441\u0442\u0430\u0432\u0446\u0438\u043C\u0430 +Are\ you\ sure\ about\ restarting\ Jenkins?=Дали желите да поново покренуте Jenkins? +Yes=Да +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Ðеможе поново покренути Jenkins по овим поÑтавцима diff --git a/core/src/main/resources/jenkins/model/Jenkins/_restart_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/_restart_zh_TW.properties index 21b559b9ac3b..8e3e26306be5 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_restart_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_restart_zh_TW.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ restarting\ Jenkins?=\u60a8\u78ba\u5b9a\u8981\u91cd\u65b0\u555f\u52d5 Jenkins \u55ce\uff1f -Yes=\u662f -Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Jenkins \u7121\u6cd5\u5728\u76ee\u524d\u7684\u8a2d\u5b9a\u503c\u4e0b\u81ea\u884c\u91cd\u65b0\u555f\u52d5\u3002 -Restart\ Jenkins=\u91cd\u65b0\u555f\u52d5 Jenkins -Are\ you\ sure\ you\ want\ to\ restart\ Jenkins?=\u60a8\u78ba\u5b9a\u8981\u91cd\u65b0\u555f\u52d5 Jenkins \u55ce\uff1f +Are\ you\ sure\ about\ restarting\ Jenkins?=您確定è¦é‡æ–°å•Ÿå‹• Jenkins 嗎? +Yes=是 +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Jenkins 無法在目å‰çš„設定值下自行é‡æ–°å•Ÿå‹•ã€‚ +Restart\ Jenkins=é‡æ–°å•Ÿå‹• Jenkins +Are\ you\ sure\ you\ want\ to\ restart\ Jenkins?=您確定è¦é‡æ–°å•Ÿå‹• Jenkins 嗎? diff --git a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_bg.properties index 0aee9fd59206..297ae4c15949 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_bg.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=\ - \u0421 \u0442\u0435\u043a\u0443\u0449\u0438\u0442\u0435 \u0441\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 Jenkins \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430. + С текущите Ñи наÑтройки Jenkins не може да Ñе реÑтартира. Yes=\ - \u0414\u0430 + Да Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=\ - \u0421\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0442\u0435 Jenkins? \u0422\u043e\u0439 \u0449\u0435 \u0441\u0435 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430 \u0441\ - \u043f\u0440\u0438\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u0442\u0435\u043a\u0443\u0449\u0438 \u0437\u0430\u0434\u0430\u0447\u0438. + Сигурни ли Ñте, че иÑкате да реÑтартирате Jenkins? Той ще Ñе реÑтартира Ñ\ + приключването на вÑички текущи задачи. diff --git a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_da.properties b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_da.properties index f1826afca8ff..72530c2b5d1f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_da.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_da.properties @@ -22,4 +22,4 @@ Yes=Ja Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=\ -Er du sikker p\u00e5 at du vil genstarte Jenkins? Jenkins vil genstarte n\u00e5r alle k\u00f8rende jobs er f\u00e6rdige. +Er du sikker pÃ¥ at du vil genstarte Jenkins? Jenkins vil genstarte nÃ¥r alle kørende jobs er færdige. diff --git a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_de.properties b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_de.properties index e702bd5f2da6..e5e0cace7a6a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_de.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=\ - M\u00F6chten Sie Jenkins wirklich neu starten? Jenkins wird neu starten, \ + Möchten Sie Jenkins wirklich neu starten? Jenkins wird neu starten, \ sobald alle laufenden Jobs abgeschlossen wurden. Yes=Ja Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Jenkins kann sich wie konfiguriert nicht selbst neu starten. diff --git a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_es.properties b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_es.properties index fae5d22db649..f803bc5a5181 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=¿Estás seguro de querer reiniciar Jenkins después de que acaben todos los procesos en ejecución? -Yes=Sí +Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=¿Estás seguro de querer reiniciar Jenkins después de que acaben todos los procesos en ejecución? +Yes=Sí diff --git a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_fr.properties index 375664a33fd8..bd15a5c787d8 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=\u00cates-vous s\u00fbr de vouloir red\u00e9marrer Jenkins? Jenkins red\u00e9marrera une fois tous les jobs termin\u00e9s. +Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=Êtes-vous sûr de vouloir redémarrer Jenkins? Jenkins redémarrera une fois tous les jobs terminés. Yes=Oui diff --git a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_it.properties b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_it.properties index 3b371fb0366b..de08143fd662 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,8 +22,8 @@ # THE SOFTWARE. Are\ you\ sure\ you\ want\ to\ restart\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=\ - Riavviare Jenkins? Jenkins si riavvierà una volta terminati tutti i \ + Riavviare Jenkins? Jenkins si riavvierà una volta terminati tutti i \ processi in esecuzione. -Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Jenkins non può \ - riavviarsi autononomamente così come configurato attualmente. -Yes=Sì +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Jenkins non può \ + riavviarsi autononomamente così come configurato attualmente. +Yes=Sì diff --git a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_ja.properties b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_ja.properties index 227cec34da30..033bba9d3e94 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_ja.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_ja.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=\ - Jenkins\u3092\u518D\u8D77\u52D5\u3057\u3066\u3082\u3088\u308D\u3057\u3044\u3067\u3059\u304B? \u5B9F\u884C\u4E2D\u306E\u30B8\u30E7\u30D6\u304C\u7D42\u4E86\u3057\u305F\u3089\u518D\u8D77\u52D5\u3057\u307E\u3059\u3002 -Yes=\u306F\u3044 + Jenkinsã‚’å†èµ·å‹•ã—ã¦ã‚‚よã‚ã—ã„ã§ã™ã‹? 実行中ã®ã‚¸ãƒ§ãƒ–ãŒçµ‚了ã—ãŸã‚‰å†èµ·å‹•ã—ã¾ã™ã€‚ +Yes=ã¯ã„ diff --git a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_lt.properties index 5c38c9a87a2e..56abf47da709 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_lt.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_lt.properties @@ -1,3 +1,3 @@ -Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=Ar tikrai norite i\u0161 naujo paleisti Jenkins\u0105? Jenkinsas bus paleistas i\u0161 naujo, kai visi vykdomi darbai bus baigti. +Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=Ar tikrai norite iÅ¡ naujo paleisti JenkinsÄ…? Jenkinsas bus paleistas iÅ¡ naujo, kai visi vykdomi darbai bus baigti. Yes=Taip -Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Toks, kaip dabar sukonfig\u016bruotas, Jenkinas negali pats sav\u0119s paleisti i\u0161 naujo. +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Toks, kaip dabar sukonfigÅ«ruotas, Jenkinas negali pats savÄ™s paleisti iÅ¡ naujo. diff --git a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_lv.properties b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_lv.properties index 9ce5e1ac3c68..1e8cc92b4223 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_lv.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_lv.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=Vai J\u016Bs esat dro\u0161s par Jenkins p\u0101rstart\u0113\u0161anos? Jenkins p\u0101rstart\u0113sies tikl\u012Bdz visi darbojo\u0161ies darbi b\u016Bs pabeigu\u0161i darbu. -Yes=J\u0101 +Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=Vai JÅ«s esat droÅ¡s par Jenkins pÄrstartÄ“Å¡anos? Jenkins pÄrstartÄ“sies tiklÄ«dz visi darbojoÅ¡ies darbi bÅ«s pabeiguÅ¡i darbu. +Yes=JÄ diff --git a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_pt_BR.properties index 7092f00e1c0a..b27e66650d51 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_pt_BR.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Yes=Sim -Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=O Jenkins n\u00E3o pode se reiniciar da forma como est\u00E1 \ +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=O Jenkins não pode se reiniciar da forma como está \ atualmente configurado. -Are\ you\ sure\ you\ want\ to\ restart\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=Voc\u00EA \ - tem certeza de que quer reiniciar o Jenkins? Ele reiniciar\u00E1 uma vez que todas tarefas estejam conclu\u00EDdas. +Are\ you\ sure\ you\ want\ to\ restart\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=Você \ + tem certeza de que quer reiniciar o Jenkins? Ele reiniciará uma vez que todas tarefas estejam concluídas. diff --git a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_ru.properties index 6fc49c8f05cb..75601b30cced 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_ru.properties @@ -1,3 +1,3 @@ -Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C Jenkins? Jenkins \u0431\u0443\u0434\u0435\u0442 \u043F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043D, \u043A\u043E\u0433\u0434\u0430 \u0432\u0441\u0435 \u0437\u0430\u043F\u0443\u0449\u0435\u043D\u043D\u044B\u0435 \u0437\u0430\u0434\u0430\u0447\u0438 \u0437\u0430\u0432\u0435\u0440\u0448\u0430\u0442\u0441\u044F. -Yes=\u0414\u0430 -Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=\u0412 \u0442\u0435\u043A\u0443\u0449\u0435\u0439 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 Jenkins \u043D\u0435 \u043C\u043E\u0436\u0435\u0442 \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C\u0441\u044F \u0441\u0430\u043C. +Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=Ð’Ñ‹ уверены, что хотите перезапуÑтить Jenkins? Jenkins будет перезагружен, когда вÑе запущенные задачи завершатÑÑ. +Yes=Да +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Ð’ текущей конфигурации Jenkins не может перезапуÑтитьÑÑ Ñам. diff --git a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_sr.properties index 430f57df1803..8150f7f76a58 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_sr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=\u0414\u0430 \u043B\u0438 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0435\u0442\u0435 Jenkins \u043A\u0430\u0434 \u0441\u0432\u0435 \u0442\u0435\u043A\u0443\u045B\u0435 \u043F\u043E\u0441\u043B\u043E\u0432\u0435 \u0431\u0443\u0434\u0443 \u0431\u0438\u043B\u0435 \u0433\u043E\u0442\u043E\u0432\u0435? -Yes=\u0414\u0430 -Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=\u041D\u0435\u043C\u043E\u0436\u0435 \u0441\u0435 \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u0438 Jenkins \u0437\u0430 \u043E\u0432\u0438\u043C \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0438\u043C\u0430. +Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=Да ли желите да поново покренете Jenkins кад Ñве текуће поÑлове буду биле готове? +Yes=Да +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Ðеможе Ñе поново покренути Jenkins за овим подешавањима. diff --git a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_zh_TW.properties index 50d8ef2c27e3..2e9921496253 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_zh_TW.properties @@ -21,7 +21,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=\u60a8\u78ba\u5b9a\u8981\u91cd\u65b0\u555f\u52d5 Jenkins \u55ce? Jenkins \u6703\u5728\u6240\u6709\u4f5c\u696d\u90fd\u5b8c\u6210\u5f8c\u91cd\u65b0\u555f\u52d5\u3002 -Yes=\u662f -Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Jenkins \u7121\u6cd5\u5728\u76ee\u524d\u7684\u8a2d\u5b9a\u503c\u4e0b\u81ea\u884c\u91cd\u65b0\u555f\u52d5\u3002 -Are\ you\ sure\ you\ want\ to\ restart\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=\u60a8\u78ba\u5b9a\u8981\u91cd\u65b0\u555f\u52d5 Jenkins \u55ce\uff1fJenkins \u6703\u5728\u6240\u6709\u4f5c\u696d\u90fd\u5b8c\u6210\u5f8c\u91cd\u65b0\u555f\u52d5\u3002 +Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=您確定è¦é‡æ–°å•Ÿå‹• Jenkins å—Ž? Jenkins 會在所有作業都完æˆå¾Œé‡æ–°å•Ÿå‹•ã€‚ +Yes=是 +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Jenkins 無法在目å‰çš„設定值下自行é‡æ–°å•Ÿå‹•ã€‚ +Are\ you\ sure\ you\ want\ to\ restart\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=您確定è¦é‡æ–°å•Ÿå‹• Jenkins 嗎?Jenkins 會在所有作業都完æˆå¾Œé‡æ–°å•Ÿå‹•ã€‚ diff --git a/core/src/main/resources/jenkins/model/Jenkins/accessDenied_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_bg.properties index fd265916bd4f..8731daa6f256 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/accessDenied_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Access\ Denied=\ - \u041e\u0442\u043a\u0430\u0437\u0430\u043d \u0434\u043e\u0441\u0442\u044a\u043f + Отказан доÑтъп Jenkins\ Login=\ - \u0412\u043f\u0438\u0441\u0432\u0430\u043d\u0435 \u0432 Jenkins + ВпиÑване в Jenkins diff --git a/core/src/main/resources/jenkins/model/Jenkins/accessDenied_da.properties b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_da.properties index a101eb622eeb..9659d1fb3b19 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/accessDenied_da.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_da.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Jenkins\ Login=Jenkins logind -Access\ Denied=Adgang n\u00e6gtet +Access\ Denied=Adgang nægtet diff --git a/core/src/main/resources/jenkins/model/Jenkins/accessDenied_it.properties b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_it.properties index 0503ac7fb9a9..31ca7e7739e8 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/accessDenied_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/Jenkins/accessDenied_ja.properties b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_ja.properties index 6ad169a0fa63..bfc45fe2a93c 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/accessDenied_ja.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ Login=Jenkins\u30ED\u30B0\u30A4\u30F3 -Access\ Denied=\u30A2\u30AF\u30BB\u30B9\u3067\u304D\u307E\u305B\u3093 +Jenkins\ Login=Jenkinsログイン +Access\ Denied=アクセスã§ãã¾ã›ã‚“ diff --git a/core/src/main/resources/jenkins/model/Jenkins/accessDenied_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_pl.properties index ac7552b95a6f..41ddc8714ecf 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/accessDenied_pl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Access\ Denied=Brak dost\u0119pu +Access\ Denied=Brak dostÄ™pu diff --git a/core/src/main/resources/jenkins/model/Jenkins/accessDenied_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_ru.properties index 9062c16a5491..ad1b99e8fdf4 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/accessDenied_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Access\ Denied=\u0414\u043e\u0441\u0442\u0443\u043f \u0437\u0430\u043f\u0440\u0435\u0449\u0451\u043d -Jenkins\ Login=\u0412\u0445\u043e\u0434 \u0432 Jenkins +Access\ Denied=ДоÑтуп запрещён +Jenkins\ Login=Вход в Jenkins diff --git a/core/src/main/resources/jenkins/model/Jenkins/accessDenied_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_sr.properties index 5dc7a3e054e7..99edc1385d9b 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/accessDenied_sr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Jenkins\ Login=\u041F\u0440\u0438\u0458\u0430\u0432\u0430 \u043D\u0430 Jenkins -Access\ Denied=\u041F\u0440\u0438\u0441\u0442\u0443\u043F \u043E\u0434\u0431\u0438\u0458\u0435\u043D +Jenkins\ Login=Пријава на Jenkins +Access\ Denied=ПриÑтуп одбијен diff --git a/core/src/main/resources/jenkins/model/Jenkins/accessDenied_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_zh_TW.properties index ce5a2ff8b173..5455cbb72098 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/accessDenied_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ Login=Jenkins \u767b\u5165 -Access\ Denied=\u62d2\u7d55\u5b58\u53d6 +Jenkins\ Login=Jenkins 登入 +Access\ Denied=æ‹’çµ•å­˜å– diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure.properties b/core/src/main/resources/jenkins/model/Jenkins/configure.properties new file mode 100644 index 000000000000..d72060216ddd --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/configure.properties @@ -0,0 +1 @@ +LOADING=Loading \ No newline at end of file diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_bg.properties index 073c3f90add4..7e7713f0de49 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_bg.properties @@ -21,16 +21,16 @@ # THE SOFTWARE. Build\ Record\ Root\ Directory=\ - \u0411\u0430\u0437\u043e\u0432\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e + Базова Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° изграждането Home\ directory=\ - \u0414\u043e\u043c\u0430\u0448\u043d\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f + Домашна Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ LOADING=\ - \u0417\u0410\u0420\u0415\u0416\u0414\u0410\u041d\u0415 + ЗÐРЕЖДÐÐЕ System\ Message=\ - \u0421\u0438\u0441\u0442\u0435\u043c\u043d\u043e \u0441\u044a\u043e\u0431\u0449\u0435\u043d\u0438\u0435 + СиÑтемно Ñъобщение Workspace\ Root\ Directory=\ - \u0411\u0430\u0437\u043e\u0432\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u043d\u043e\u0442\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e + Базова Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° работното проÑтранÑтво Configure\ System=\ - \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430 + ÐаÑтройване на ÑиÑтемата Save=\ - \u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 + Запазване diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_cs.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_cs.properties index 42a189b99deb..d376a7b85fed 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_cs.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_cs.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Build\ Record\ Root\ Directory=Build z\u00E1znamy - ko\u0159enov\u00FD adres\u00E1\u0159 -Home\ directory=Domovsk\u00FD adres\u00E1\u0159 -System\ Message=Syst\u00E9mov\u00E1 zpr\u00E1va -Workspace\ Root\ Directory=Workspace - ko\u0159enov\u00FD adres\u00E1\u0159 +Build\ Record\ Root\ Directory=Build záznamy - koÅ™enový adresář +Home\ directory=Domovský adresář +System\ Message=Systémová zpráva +Workspace\ Root\ Directory=Workspace - koÅ™enový adresář diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_da.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_da.properties index 4bf20aa517b4..5e1aaf58bfc2 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_da.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_da.properties @@ -23,5 +23,5 @@ Save=Gem Home\ directory=Hjemmemappe System\ Message=Systembesked -LOADING=INDL\u00c6SER +LOADING=INDLÆSER Workspace\ Root\ Directory=Arbejdssteds Rodmappe diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_de.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_de.properties index 4350cb817533..e0349d7637f4 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_de.properties @@ -25,6 +25,6 @@ System\ Message=Willkommensmeldung LOADING=LADE DATEN Save=Speichern Workspace\ Root\ Directory=Workspace Wurzelverzeichnis -Build\ Record\ Root\ Directory=Verzeichnis f\u00FCr aufgezeichnete Builds +Build\ Record\ Root\ Directory=Verzeichnis für aufgezeichnete Builds Configure\ System=Systemkonfiguration diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_es.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_es.properties index 316dc8656b4f..e4155006847a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_es.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Workspace\ Root\ Directory=Directorio ra\u00EDz del espacio de trabajo -Home\ directory=Directorio ra\u00EDz -Build\ Record\ Root\ Directory=Directorio ra\u00EDz de registro de ejecuciones +Workspace\ Root\ Directory=Directorio raíz del espacio de trabajo +Home\ directory=Directorio raíz +Build\ Record\ Root\ Directory=Directorio raíz de registro de ejecuciones Save=Guardar System\ Message=Mensaje del sistema LOADING=CARGANDO diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_fi.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_fi.properties index 97a5720512d6..980489a1bf93 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_fi.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_fi.properties @@ -22,4 +22,4 @@ Home\ directory=Kotihakemisto LOADING=LADATAAN -System\ Message=J\u00E4rjestelm\u00E4viesti +System\ Message=Järjestelmäviesti diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_fr.properties index 8321029643af..bb2d23932058 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_fr.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Home\ directory=R\u00E9pertoire Home -System\ Message=Message du syst\u00E8me -Workspace\ Root\ Directory=R\u00E9pertoire racine de l''espace de travail (workspace) +Home\ directory=Répertoire Home +System\ Message=Message du système +Workspace\ Root\ Directory=Répertoire racine de l''espace de travail (workspace) Save=Enregistrer -Build\ Record\ Root\ Directory=R\u00E9pertoire racine des constructions +Build\ Record\ Root\ Directory=Répertoire racine des constructions LOADING=CHARGEMENT diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_he.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_he.properties index e2ea97ab82b4..924016e6768e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_he.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_he.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Home\ directory=\u05E1\u05E4\u05E8\u05D9\u05D9\u05EA \u05D4\u05D1\u05D9\u05EA -LOADING=\u05D8\u05D5\u05E2\u05DF -System\ Message=\u05D4\u05D5\u05D3\u05E2\u05EA \u05DE\u05E2\u05E8\u05DB\u05EA -Workspace\ Root\ Directory=\u05E1\u05E4\u05E8\u05D9\u05D9\u05EA \u05E1\u05D1\u05D9\u05D1\u05EA \u05D4\u05E2\u05D1\u05D5\u05D3\u05D4 +Home\ directory=ספריית הבית +LOADING=טוען +System\ Message=הודעת מערכת +Workspace\ Root\ Directory=ספריית סביבת העבודה diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_hu.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_hu.properties index 5c7e9d21ffc0..d552207afbb0 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_hu.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_hu.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Record\ Root\ Directory=Build Record gy\u00F6k\u00E9rk\u00F6nyvt\u00E1r -Home\ directory=Home k\u00F6nyvt\u00E1r -LOADING=BET\u00D6LT\u00C9S -Save=Ment\u00E9s -System\ Message=Rendszer\u00FCzenet -Workspace\ Root\ Directory=Munkater\u00FClet gy\u00F6k\u00E9rk\u00F6nyvt\u00E1r +Build\ Record\ Root\ Directory=Build Record gyökérkönyvtár +Home\ directory=Home könyvtár +LOADING=BETÖLTÉS +Save=Mentés +System\ Message=Rendszerüzenet +Workspace\ Root\ Directory=Munkaterület gyökérkönyvtár diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_it.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_it.properties index 289f917e0832..83e799c6df57 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_ja.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_ja.properties index 8df9b2ae937b..10825fa19e08 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_ja.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_ja.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Configure\ System=\u30b7\u30b9\u30c6\u30e0\u306e\u8a2d\u5b9a -Home\ directory=\u30db\u30fc\u30e0\u30c7\u30a3\u30ec\u30af\u30c8\u30ea -Workspace\ Root\ Directory=\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9\u30fb\u30eb\u30fc\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea -Build\ Record\ Root\ Directory=\u30d3\u30eb\u30c9\u30fb\u30eb\u30fc\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea -System\ Message=\u30b7\u30b9\u30c6\u30e0\u30e1\u30c3\u30bb\u30fc\u30b8 -Save=\u4fdd\u5b58 -LOADING=\u30ed\u30fc\u30c9\u4e2d... +Configure\ System=システムã®è¨­å®š +Home\ directory=ホームディレクトリ +Workspace\ Root\ Directory=ワークスペース・ルートディレクトリ +Build\ Record\ Root\ Directory=ビルド・ルートディレクトリ +System\ Message=システムメッセージ +Save=ä¿å­˜ +LOADING=ロード中... diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_ko.properties index 24c477b6acf2..ce0f781cdc01 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_ko.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_ko.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Record\ Root\ Directory=\uBE4C\uB4DC \uAE30\uB85D \uCD5C\uC0C1\uC704 \uB514\uB809\uD1A0\uB9AC -Home\ directory=\uD648 \uB514\uB809\uD130\uB9AC -LOADING=\uBD88\uB7EC\uC624\uB294\uC911 -Save=\uC800\uC7A5 -System\ Message=\uC2DC\uC2A4\uD15C \uBA54\uC138\uC9C0 -Workspace\ Root\ Directory=\uC791\uC5C5\uACF5\uAC04 \uCD5C\uC0C1\uC704 \uB514\uB809\uD1A0\uB9AC +Build\ Record\ Root\ Directory=빌드 ê¸°ë¡ ìµœìƒìœ„ 디렉토리 +Home\ directory=홈 디렉터리 +LOADING=불러오는중 +Save=저장 +System\ Message=시스템 메세지 +Workspace\ Root\ Directory=작업공간 최ìƒìœ„ 디렉토리 diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_lt.properties index 7afe01e4c521..daaf64d97b08 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_lt.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_lt.properties @@ -1,7 +1,7 @@ -Home\ directory=Nam\u0173 aplankas -LOADING=\u012eKELIAMA -System\ Message=Sisteminis prane\u0161imas -Workspace\ Root\ Directory=Darbastalio \u0161akninis aplankas -Build\ Record\ Root\ Directory=Vykdymo \u012fra\u0161o \u0161akninis aplankas -Configure\ System=Konfig\u016bruoti sistem\u0105 -Save=\u012era\u0161yti +Home\ directory=Namų aplankas +LOADING=Ä®KELIAMA +System\ Message=Sisteminis praneÅ¡imas +Workspace\ Root\ Directory=Darbastalio Å¡akninis aplankas +Build\ Record\ Root\ Directory=Vykdymo įraÅ¡o Å¡akninis aplankas +Configure\ System=KonfigÅ«ruoti sistemÄ… +Save=Ä®raÅ¡yti diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_lv.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_lv.properties index 7b07f65763b4..1a8616c3cd1d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_lv.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_lv.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Home\ directory=M\u0101jas direktorija -LOADING=IEL\u0100D\u0112 -System\ Message=Sist\u0113mas Zi\u0146ojums +Home\ directory=MÄjas direktorija +LOADING=IELÄ€DÄ’ +System\ Message=SistÄ“mas Ziņojums Workspace\ Root\ Directory=Darbavietas saknes direktorija diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_nb_NO.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_nb_NO.properties index 036bf07b27bd..f6c7af5d26db 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_nb_NO.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_nb_NO.properties @@ -24,4 +24,4 @@ Build\ Record\ Root\ Directory=Byggepostinger rotmappe Home\ directory=Hjemmemappe LOADING=LASTER System\ Message=Systembeskjed -Workspace\ Root\ Directory=Arbeidsomr\u00E5de rotmappe +Workspace\ Root\ Directory=ArbeidsomrÃ¥de rotmappe diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_pt_BR.properties index 09737e724eaf..f00ef7fc5051 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_pt_BR.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Home\ directory=Diret\u00F3rio principal +Home\ directory=Diretório principal System\ Message=Mensagem do sistema Save=Salvar LOADING=CARREGANDO Configure\ System=Configurar o sistema -By\ default,\ Jenkins\ stores\ all\ of\ its\ data\ in\ this\ directory\ on\ the\ file\ system=O\ Jenkins\ por\ padr\u00E3o\ armazena\ todos\ os\ seus\ dados\ neste\ diret\u00F3rio\ no\ sistema\ de\ arquivos. -This\ message\ will\ be\ displayed\ at\ the\ top\ of\ the\ Jenkins\ main\ page.\ This\ can\ be\ useful\ for\ posting\ notifications\ to\ your\ users=Esta\ mensagem\ ser\u00E1\ mostrada\ no\ topo\ da\ p\u00E1gina\ principal\ do\ Jenkins.\ Isto\ pode\ ser\ \u00FAtil\ para\ postar\ notifica\u00E7\u00F5es\ para\ seus\ usu\u00E1rios +By\ default,\ Jenkins\ stores\ all\ of\ its\ data\ in\ this\ directory\ on\ the\ file\ system=O\ Jenkins\ por\ padrão\ armazena\ todos\ os\ seus\ dados\ neste\ diretório\ no\ sistema\ de\ arquivos. +This\ message\ will\ be\ displayed\ at\ the\ top\ of\ the\ Jenkins\ main\ page.\ This\ can\ be\ useful\ for\ posting\ notifications\ to\ your\ users=Esta\ mensagem\ será\ mostrada\ no\ topo\ da\ página\ principal\ do\ Jenkins.\ Isto\ pode\ ser\ útil\ para\ postar\ notificações\ para\ seus\ usuários diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_pt_PT.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_pt_PT.properties index 26590eaf1b91..7ce4b0113a2e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_pt_PT.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_pt_PT.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -Build\ Record\ Root\ Directory=Raiz do direct\u00F3rio de compila\u00E7\u00F5es -Home\ directory=Direct\u00F3rio Inicial +Build\ Record\ Root\ Directory=Raiz do directório de compilações +Home\ directory=Directório Inicial LOADING=A CARREGAR System\ Message=Mensagem do Sistema -Workspace\ Root\ Directory=Raiz do espa\u00E7o de trabalho +Workspace\ Root\ Directory=Raiz do espaço de trabalho diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_ru.properties index 9d9cff33eed7..cc1fe2e36878 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_ru.properties @@ -1,7 +1,7 @@ -Configure\ System=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u044b -Home\ directory=\u0414\u043e\u043c\u0430\u0448\u043d\u044f\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f -System\ Message=\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 -Build\ Record\ Root\ Directory=\u041a\u043e\u0440\u043d\u0435\u0432\u0430\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0438 \u0441\u0431\u043e\u0440\u043a\u0438 -Save=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c -Workspace\ Root\ Directory=\u041a\u043e\u0440\u043d\u0435\u0432\u0430\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u0441\u0431\u043e\u0440\u043e\u043a -LOADING=\u0417\u0410\u0413\u0420\u0423\u0417\u041a\u0410 +Configure\ System=ÐаÑтройка ÑиÑтемы +Home\ directory=ДомашнÑÑ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ +System\ Message=СиÑтемное Ñообщение +Build\ Record\ Root\ Directory=ÐšÐ¾Ñ€Ð½ÐµÐ²Ð°Ñ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð·Ð°Ð¿Ð¸Ñи Ñборки +Save=Сохранить +Workspace\ Root\ Directory=ÐšÐ¾Ñ€Ð½ÐµÐ²Ð°Ñ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ñборок +LOADING=ЗÐГРУЗКРdiff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_sk.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_sk.properties index 8b069d4bc31c..8580090d6706 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_sk.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_sk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Home\ directory=Domovsk\u00FD adres\u00E1r -LOADING=Nahr\u00E1vanie +Home\ directory=Domovský adresár +LOADING=Nahrávanie diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_sr.properties index 91b1da13f737..5734ac5e9a7a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_sr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_sr.properties @@ -1,9 +1,9 @@ # This file is under the MIT License by authors -Build\ Record\ Root\ Directory=\u041E\u0441\u043D\u043E\u0432\u043D\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C \u0440\u0435\u0437\u0443\u043B\u0430\u0442\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -Home\ directory=\u041F\u043E\u045B\u0435\u0442\u043D\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C -LOADING=\u0423\u0427\u0418\u0422\u0410\u0412\u0410\u040A\u0415 -System\ Message=\u0421\u0438\u0441\u0442\u0435\u043C\u0441\u043A\u0430 \u043F\u043E\u0440\u0443\u043A\u0430 -Workspace\ Root\ Directory=\u0413\u043B\u0430\u0432\u043D\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C \u0440\u0430\u0434\u043D\u043E\u0433 \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0430 -Configure\ System=\u041F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0435 \u0441\u0438\u0441\u0442\u0435\u043C\u043E\u043C -Save=\u0421\u0430\u0447\u0443\u0432\u0430\u0458 +Build\ Record\ Root\ Directory=ОÑновни директоријум резулата изградње +Home\ directory=Поћетни директоријум +LOADING=УЧИТÐÐ’ÐЊЕ +System\ Message=СиÑтемÑка порука +Workspace\ Root\ Directory=Главни директоријум радног проÑтора +Configure\ System=Подешавање ÑиÑтемом +Save=Сачувај diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_sv_SE.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_sv_SE.properties index 206b07638d3d..2ed7e4c4cbd0 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_sv_SE.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_sv_SE.properties @@ -23,4 +23,4 @@ Home\ directory=Hemkatalog LOADING=LADDAR System\ Message=Systemmeddelande -Workspace\ Root\ Directory=Rotkatalog f\u00F6r workspace +Workspace\ Root\ Directory=Rotkatalog för workspace diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_tr.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_tr.properties index 730324bf5c77..5958728d81c7 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_tr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_tr.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Home\ directory=Ana dizin -System\ Message=Sistem Mesaj\u0131 -LOADING=Y\u00DCKLEN\u0130YOR +System\ Message=Sistem Mesajı +LOADING=YÃœKLENÄ°YOR Save=Kaydet diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_uk.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_uk.properties index 5961f3ee6752..a467e1488a6b 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_uk.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_uk.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -Build\ Record\ Root\ Directory=\u041A\u0430\u0442\u0430\u043B\u043E\u0433 \u0437\u0430\u043F\u0438\u0441\u0456\u0432 \u043F\u0440\u043E \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0438 -Home\ directory=\u0414\u043E\u043C\u0430\u0448\u043D\u0456\u0439 \u043A\u0430\u0442\u0430\u043B\u043E\u0433 -LOADING=\u0417\u0410\u0412\u0410\u041D\u0422\u0410\u0416\u0415\u041D\u041D\u042F -System\ Message=\u0421\u0438\u0441\u0442\u0435\u043C\u043D\u0435 \u043F\u043E\u0432\u0456\u0434\u043E\u043C\u043B\u0435\u043D\u043D\u044F -Workspace\ Root\ Directory=\u0420\u043E\u0431\u043E\u0447\u0438\u0439 \u043A\u0430\u0442\u0430\u043B\u043E\u0433 +Build\ Record\ Root\ Directory=Каталог запиÑів про побудови +Home\ directory=Домашній каталог +LOADING=ЗÐÐ’ÐÐТÐЖЕÐÐЯ +System\ Message=СиÑтемне Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ +Workspace\ Root\ Directory=Робочий каталог diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_zh_TW.properties index 57f280862a18..3684e2f04363 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_zh_TW.properties @@ -21,12 +21,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Configure\ System=\u8a2d\u5b9a\u7cfb\u7d71 -LOADING=\u8f09\u5165\u4e2d -Home\ directory=\u5bb6\u76ee\u9304 -Workspace\ Root\ Directory=\u5de5\u4f5c\u5340\u6839\u76ee\u9304 -Build\ Record\ Root\ Directory=\u5efa\u7f6e\u8a18\u9304\u6839\u76ee\u9304 -System\ Message=\u7cfb\u7d71\u8a0a\u606f -Save=\u5132\u5b58 -This\ message\ will\ be\ displayed\ at\ the\ top\ of\ the\ Jenkins\ main\ page.\ This\ can\ be\ useful\ for\ posting\ notifications\ to\ your\ users=\u6b64\u8a0a\u606f\u6703\u986f\u793a\u5728 Jenkins \u7684\u4e3b\u9801\u4e0a\u65b9\u3002\u9019\u5f88\u9069\u5408\u7528\u4f86\u5411\u60a8\u7684\u4f7f\u7528\u8005\u767c\u4f48\u901a\u77e5\u3002 -By\ default,\ Jenkins\ stores\ all\ of\ its\ data\ in\ this\ directory\ on\ the\ file\ system=Jenkins \u9810\u8a2d\u6703\u5c07\u5b83\u7684\u6240\u6709\u8cc7\u6599\u5132\u5b58\u65bc\u6a94\u6848\u7cfb\u7d71\u4e0a\u7684\u9019\u500b\u76ee\u9304\u3002 +Configure\ System=設定系統 +LOADING=載入中 +Home\ directory=家目錄 +Workspace\ Root\ Directory=工作å€æ ¹ç›®éŒ„ +Build\ Record\ Root\ Directory=建置記錄根目錄 +System\ Message=ç³»çµ±è¨Šæ¯ +Save=儲存 +This\ message\ will\ be\ displayed\ at\ the\ top\ of\ the\ Jenkins\ main\ page.\ This\ can\ be\ useful\ for\ posting\ notifications\ to\ your\ users=此訊æ¯æœƒé¡¯ç¤ºåœ¨ Jenkins 的主é ä¸Šæ–¹ã€‚這很é©åˆç”¨ä¾†å‘您的使用者發佈通知。 +By\ default,\ Jenkins\ stores\ all\ of\ its\ data\ in\ this\ directory\ on\ the\ file\ system=Jenkins é è¨­æœƒå°‡å®ƒçš„所有資料儲存於檔案系統上的這個目錄。 diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_bg.properties index f1691452f783..a3a533c3ce75 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Restore\ the\ previous\ version\ of\ Jenkins=\ - \u0412\u0440\u044a\u0449\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0435\u0434\u0438\u0448\u043d\u0430\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430 Jenkins + Връщане на предишната верÑÐ¸Ñ Ð½Ð° Jenkins buttonText=\ - \u0412\u0440\u044a\u0449\u0430\u043d\u0435 \u043a\u044a\u043c {0} + Връщане към {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_ca.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_ca.properties index c2ff47b86066..9ff84c3ce491 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_ca.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_ca.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Restore\ the\ previous\ version\ of\ Jenkins=Restaurar a la versi\u00F3 anterior del Jenkins +Restore\ the\ previous\ version\ of\ Jenkins=Restaurar a la versió anterior del Jenkins diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_cs.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_cs.properties index 86dc0f151b38..bd92636bf724 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_cs.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_cs.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restore\ the\ previous\ version\ of\ Jenkins=Obnovit p\u0159edchoz\u00ED verzi Jenkinse +Restore\ the\ previous\ version\ of\ Jenkins=Obnovit pÅ™edchozí verzi Jenkinse buttonText=Downgradovat na {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_da.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_da.properties index e09902df7b7c..b109933856b0 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_da.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_da.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restore\ the\ previous\ version\ of\ Jenkins=G\u00e5 tilbage til den foreg\u00e5ende version af Jenkins +Restore\ the\ previous\ version\ of\ Jenkins=GÃ¥ tilbage til den foregÃ¥ende version af Jenkins buttonText=Nedgrader til {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_es.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_es.properties index 1c505d976806..77a92f327e71 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -buttonText=Bajar a la versión {0} -Restore\ the\ previous\ version\ of\ Jenkins=Restaurar la versión anterior de Jenkins +buttonText=Bajar a la versión {0} +Restore\ the\ previous\ version\ of\ Jenkins=Restaurar la versión anterior de Jenkins diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_fr.properties index f4b4be365888..2bb87789c15d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restore\ the\ previous\ version\ of\ Jenkins=Restaurer la version pr\u00E9c\u00E9dente de Jenkins -buttonText=Revenir \u00E0 la version {0} +Restore\ the\ previous\ version\ of\ Jenkins=Restaurer la version précédente de Jenkins +buttonText=Revenir à la version {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_hu.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_hu.properties index 31d1284d5be2..3cce3f4c3e33 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_hu.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_hu.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restore\ the\ previous\ version\ of\ Jenkins=El\u0151z\u0151 Jenkins v\u00E1ltozat vissza\u00E1ll\u00EDt\u00E1sa -buttonText=Vissza\u00E1l\u00EDt\u00E1s {0}-ra +Restore\ the\ previous\ version\ of\ Jenkins=ElÅ‘zÅ‘ Jenkins változat visszaállítása +buttonText=Visszaálítás {0}-ra diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_it.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_it.properties index 42ad1438d717..ab4228c9304d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_ja.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_ja.properties index 4692eba06c41..90ce298529f0 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_ja.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restore\ the\ previous\ version\ of\ Jenkins=\u4ee5\u524d\u306eJenkins\u306b\u623b\u3059 -buttonText={0}\u306b\u30c0\u30a6\u30f3\u30b0\u30ec\u30fc\u30c9 +Restore\ the\ previous\ version\ of\ Jenkins=以å‰ã®Jenkinsã«æˆ»ã™ +buttonText={0}ã«ãƒ€ã‚¦ãƒ³ã‚°ãƒ¬ãƒ¼ãƒ‰ diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_ko.properties index 0bb43edd8763..239c514380dc 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_ko.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_ko.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Restore\ the\ previous\ version\ of\ Jenkins=\uC774\uC804 \uBC84\uC804\uC758 Jenkins \uB85C \uBCF5\uC6D0 -buttonText={0}\uB85C \uB2E4\uC6B4\uADF8\uB808\uC774\uB4DC +Restore\ the\ previous\ version\ of\ Jenkins=ì´ì „ ë²„ì „ì˜ Jenkins ë¡œ ë³µì› +buttonText={0}ë¡œ 다운그레ì´ë“œ diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_lt.properties index 88b48e9acf7d..a8bfd2921b88 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_lt.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_lt.properties @@ -1,2 +1,2 @@ -buttonText=Nuleisti versij\u0105 iki {0} -Restore\ the\ previous\ version\ of\ Jenkins=Atstatyti ankstesn\u0119 Jenkinso versij\u0105 +buttonText=Nuleisti versijÄ… iki {0} +Restore\ the\ previous\ version\ of\ Jenkins=Atstatyti ankstesnÄ™ Jenkinso versijÄ… diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_lv.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_lv.properties index 3732e949a74a..c578cdb05ff4 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_lv.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restore\ the\ previous\ version\ of\ Jenkins=Atgriezties uz iepriek\u0161\u0113jo Jenkins versiju +Restore\ the\ previous\ version\ of\ Jenkins=Atgriezties uz iepriekÅ¡Ä“jo Jenkins versiju diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_pl.properties index 02a32fa88e48..021855a7fb60 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_pl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_pl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restore\ the\ previous\ version\ of\ Jenkins=Przywr\u00F3\u0107 poprzedni\u0105 wersj\u0119 Jenkinsa -buttonText=Obni\u017C do {0} +Restore\ the\ previous\ version\ of\ Jenkins=Przywróć poprzedniÄ… wersjÄ™ Jenkinsa +buttonText=Obniż do {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_pt_BR.properties index c1ee3e1d89dc..3af6e90fcaeb 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restore\ the\ previous\ version\ of\ Jenkins=Restaurar vers\u00E3o anterior do Jenkins +Restore\ the\ previous\ version\ of\ Jenkins=Restaurar versão anterior do Jenkins buttonText=Reverter para {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_ro.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_ro.properties index 75f4506ec9a9..4100466ea8f9 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_ro.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_ro.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restore\ the\ previous\ version\ of\ Jenkins=Revenire la versiunea anterioar\u0103 de Jnkins +Restore\ the\ previous\ version\ of\ Jenkins=Revenire la versiunea anterioară de Jnkins buttonText=Downgrade la {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_ru.properties index 6e224bdcd6a4..e7f07560a272 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restore\ the\ previous\ version\ of\ Jenkins=\u0412\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u043F\u0440\u0435\u0434\u044B\u0434\u0443\u0449\u0443\u044E \u0432\u0435\u0440\u0441\u0438\u044E Jenkins -buttonText=\u041E\u0442\u043A\u0430\u0442\u0438\u0442\u044C\u0441\u044F \u043D\u0430 {0} +Restore\ the\ previous\ version\ of\ Jenkins=ВоÑÑтановить предыдущую верÑию Jenkins +buttonText=ОткатитьÑÑ Ð½Ð° {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_sr.properties index d04470f1d0c8..8d268551836e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_sr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -buttonText=\u0412\u0440\u0430\u0442\u0438 \u043D\u0430\u0437\u0430\u0434 \u043D\u0430 {0} -Restore\ the\ previous\ version\ of\ Jenkins=\u0412\u0440\u0430\u0442\u0438 \u043D\u0430 \u043F\u0440\u0435\u0442\u043D\u043E\u0434\u043D\u0443 \u0432\u0435\u0440\u0437\u0438\u0458\u0443 Jenkins-\u0430 +buttonText=Врати назад на {0} +Restore\ the\ previous\ version\ of\ Jenkins=Врати на претнодну верзију Jenkins-а diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_sv_SE.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_sv_SE.properties index dbecdc3dba2f..faaf289065e6 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_sv_SE.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_sv_SE.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restore\ the\ previous\ version\ of\ Jenkins=\u00C5terst\u00E4ll senaste Jenkinsversion +Restore\ the\ previous\ version\ of\ Jenkins=Ã…terställ senaste Jenkinsversion buttonText=Nedgradera till {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_zh_TW.properties index 3f5f2bb4cd23..6e0d700decc4 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restore\ the\ previous\ version\ of\ Jenkins=\u56DE\u5FA9\u6210\u4E4B\u524D\u7248\u672C\u7684 Jenkins\u3002 -buttonText=\u964D\u7248\u6210 {0} +Restore\ the\ previous\ version\ of\ Jenkins=回復æˆä¹‹å‰ç‰ˆæœ¬çš„ Jenkins。 +buttonText=é™ç‰ˆæˆ {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck.properties index c675fa8afe6d..94ad408a054d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. description=\ - Got a jar file but don\u2019t know which version it is?
\ + Got a jar file but don’t know which version it is?
\ Find out by checking its fingerprint against \ the database in Jenkins. fingerprint.link=https://www.jenkins.io/redirect/fingerprint diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_bg.properties index 971ff254ce0e..f5dbda63d52e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_bg.properties @@ -21,20 +21,20 @@ # THE SOFTWARE. Check=\ - \u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 + Проверка File\ to\ check=\ - \u0424\u0430\u0439\u043b \u0437\u0430 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 + Файл за проверка Check\ File\ Fingerprint=\ - \u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043d\u0430 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u044f \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u044a\u043a \u043d\u0430 \u0444\u0430\u0439\u043b\u0430 + Проверка на Ñ†Ð¸Ñ„Ñ€Ð¾Ð²Ð¸Ñ Ð¾Ñ‚Ð¿ÐµÑ‡Ð°Ñ‚ÑŠÐº на файла # \ -# Got a jar file but don\u2019t know which version it is?
\ +# Got a jar file but don’t know which version it is?
\ # Find that out by checking the fingerprint against \ # the database in Jenkins description=\ - \u041d\u0435 \u0437\u043d\u0430\u0435\u0442\u0435 \u0432\u0435\u0440\u0441\u0438\u044f\u0442\u0430 \u043d\u0430 \u043d\u044f\u043a\u043e\u0439 \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u0435\u043d \u201e.jar\u201c \u0444\u0430\u0439\u043b?
\ - \u041f\u0440\u043e\u0432\u0435\u0440\u0435\u0442\u0435 \u0437\u0430 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u044f \u043c\u0443 \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u044a\u043a \u0432 \u0431\u0430\u0437\u0430\u0442\u0430 \u043d\u0430 Jenkins. + Ðе знаете верÑиÑта на нÑкой конкретен „.jar“ файл?
\ + Проверете за Ñ†Ð¸Ñ„Ñ€Ð¾Ð²Ð¸Ñ Ð¼Ñƒ отпечатък в базата на Jenkins. # https://www.jenkins.io/redirect/fingerprint fingerprint.link=\ https://www.jenkins.io/redirect/fingerprint more\ details=\ - \u041e\u0449\u0435 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u0438 + Още подробноÑти diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_cs.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_cs.properties index 3c18f5cbfad1..6fd763fcd492 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_cs.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_cs.properties @@ -1,9 +1,9 @@ # This file is under the MIT License by authors -Check=Ov\u011B\u0159it -Check\ File\ Fingerprint=Ov\u011B\u0159it otisk souboru -File\ to\ check=Soubor k ov\u011B\u0159en\u00ED -description=M\u00E1te jar soubor ale nev\u00EDte k jak\u00E9 verzi pat\u0159\u00ED?
\ -Ov\u011B\u0159te si jej v Jenkinsov\u011B datab\u00E1zi otisk\u016F +Check=Ověřit +Check\ File\ Fingerprint=Ověřit otisk souboru +File\ to\ check=Soubor k ověření +description=Máte jar soubor ale nevíte k jaké verzi patří?
\ +Ověřte si jej v Jenkinsově databázi otisků fingerprint.link=https://www.jenkins.io/redirect/fingerprint -more\ details=dal\u0161\u00ED informace +more\ details=další informace diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_da.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_da.properties index bf3b4ac519b6..325ecf2dab2c 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_da.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_da.properties @@ -24,7 +24,7 @@ Check\ File\ Fingerprint=Check filfingeraftryk File\ to\ check=Fil der skal checkes fingerprint.link=https://www.jenkins.io/redirect/fingerprint description=\ -Har du f\u00e5et en jar fil, men ved ikke hvilken version den har?
\ +Har du fået en jar fil, men ved ikke hvilken version den har?
\ Find ud af det ved at checke imod filfingeraftryksdatabasen i Jenkins more\ details=flere detaljer Check=Check diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_de.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_de.properties index 977b33cc4b9f..e64fd22b0810 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_de.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ File\ Fingerprint=Fingerabdruck überprüfen -File\ to\ check=Zu überprüfende Datei -Check=Überprüfen +Check\ File\ Fingerprint=Fingerabdruck überprüfen +File\ to\ check=Zu überprüfende Datei +Check=Ãœberprüfen more\ details=mehr... description=\ - Die Version einer JAR-Datei lässt sich über die von \ - Jenkins gespeicherten Fingerabdrücke herausfinden. + Die Version einer JAR-Datei lässt sich über die von \ + Jenkins gespeicherten Fingerabdrücke herausfinden. fingerprint.link=https://www.jenkins.io/redirect/fingerprint diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_el.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_el.properties index 7b3b766f0805..08ba90410c3c 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_el.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_el.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Check=\u0388\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 -Check\ File\ Fingerprint=\u0388\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 \u0391\u03C0\u03BF\u03C4\u03C5\u03C0\u03C9\u03BC\u03AC\u03C4\u03C9\u03BD \u0391\u03C1\u03C7\u03B5\u03AF\u03C9\u03BD -File\ to\ check=\u0391\u03C1\u03C7\u03B5\u03AF\u03BF \u03C0\u03C1\u03BF\u03C2 \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF -description=\u0388\u03C7\u03B5\u03C4\u03B5 \u03BA\u03AC\u03C0\u03BF\u03B9\u03BF jar \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF \u03B1\u03BB\u03BB\u03AC \u03B4\u03B5\u03BD \u03BE\u03AD\u03C1\u03B5\u03C4\u03B5 \u03C4\u03BF\u03BD \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC \u03AD\u03BA\u03B4\u03BF\u03C3\u03AE\u03C2 \u03C4\u03BF\u03C5;
\u0392\u03C1\u03B5\u03AF\u03C4\u03B5 \u03C4\u03B7\u03BD \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03BD\u03C4\u03B1\u03C2 \u03C4\u03BF \u03C8\u03B7\u03C6\u03B9\u03B1\u03BA\u03CC \u03B1\u03C0\u03BF\u03C4\u03CD\u03C0\u03C9\u03BC\u03B1 \u03C4\u03BF\u03C5 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5 \u03BA\u03B1\u03B9 \u03C3\u03C5\u03B3\u03BA\u03C1\u03AF\u03BD\u03BF\u03BD\u03C4\u03AC\u03C2 \u03C4\u03BF \u03BC\u03B5 \u03C4\u03B7 \u03B2\u03AC\u03C3\u03B7 \u03B1\u03C0\u03BF\u03C4\u03C5\u03C0\u03C9\u03BC\u03AC\u03C4\u03C9\u03BD \u03C3\u03C4\u03BF Jenkins +Check=Έλεγχος +Check\ File\ Fingerprint=Έλεγχος Αποτυπωμάτων ΑÏχείων +File\ to\ check=ΑÏχείο Ï€Ïος έλεγχο +description=Έχετε κάποιο jar αÏχείο αλλά δεν ξέÏετε τον αÏιθμό έκδοσής του;
Î’Ïείτε την ελέγχοντας το ψηφιακό αποτÏπωμα του αÏχείου και συγκÏίνοντάς το με τη βάση αποτυπωμάτων στο Jenkins fingerprint.link=https://www.jenkins.io/redirect/fingerprint -more\ details=\u03C0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B5\u03C2 \u03BB\u03B5\u03C0\u03C4\u03BF\u03BC\u03AD\u03C1\u03B5\u03B9\u03B5\u03C2 +more\ details=πεÏισσότεÏες λεπτομέÏειες diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_es.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_es.properties index dbebacf47588..53ba5222b15f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_es.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. description=\ - Si tienes un fichero ''jar'' en tu disco duro del que desconoces su versión
\ + Si tienes un fichero ''jar'' en tu disco duro del que desconoces su versión
\ Puedes identificarlo enviandolo a Jenkins para que busque su firma en la base de datos de firmas registradas. fingerprint.link=https://www.jenkins.io/redirect/fingerprint File\ to\ check=Selecciona un fichero para comprobar Check=Comprobar Check\ File\ Fingerprint=Comprobar ficheros -more\ details=más detalles +more\ details=más detalles diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_et.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_et.properties index 3c4ef25a9641..06731b9e04e3 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_et.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_et.properties @@ -5,5 +5,5 @@ Check\ File\ Fingerprint=Kontrolli Faili Signatuuri File\ to\ check=Kontrolli faili description=Sul on jar fail aga sa ei tea tema versiooninumbrit?
Leia see kontrollides faili signatuuri Jenkinsi andmebaasist. # TODO was this supposed to be part of the previous description? -#
Leia see Jenkinsi s\u00F5rmej\u00E4lgede andmebaasist. +#
Leia see Jenkinsi sõrmejälgede andmebaasist. more\ details=lisadetailid diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_fi.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_fi.properties index 3efe313dcd4e..1f2cc2c1e065 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_fi.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_fi.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Check=Tarkasta -Check\ File\ Fingerprint=Tarkasta tiedoston sormenj\u00E4lki +Check\ File\ Fingerprint=Tarkasta tiedoston sormenjälki File\ to\ check=Tiedosto joka tarkastetaan -description=Onko sinulla jar tiedosto jonka versiota et tied\u00E4?
Selvit\u00E4 versio tarkastamalla tiedoston sormenj\u00E4lki Jenkinsin tietokannasta -more\ details=lis\u00E4tietoja +description=Onko sinulla jar tiedosto jonka versiota et tiedä?
Selvitä versio tarkastamalla tiedoston sormenjälki Jenkinsin tietokannasta +more\ details=lisätietoja diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_fr.properties index 5b3d615f749c..35ba311b79e4 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_fr.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ File\ Fingerprint=Vérifier l''empreinte numérique -File\ to\ check=Fichier à vérifier -Check=Vérifier -description=Vous avez un fichier jar mais vous ne connaissez pas sa version ?
Vous pourrez la trouver en comparant l''empreinte num\u00E9rique avec celles dans la base de donn\u00E9es de Jenkins +Check\ File\ Fingerprint=Vérifier l''empreinte numérique +File\ to\ check=Fichier à vérifier +Check=Vérifier +description=Vous avez un fichier jar mais vous ne connaissez pas sa version ?
Vous pourrez la trouver en comparant l''empreinte numérique avec celles dans la base de données de Jenkins fingerprint.link=https://www.jenkins.io/redirect/fingerprint -more\ details=plus de détails +more\ details=plus de détails diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_he.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_he.properties index 183ecb67297a..c089c7715193 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_he.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_he.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -Check=\u05D1\u05D3\u05D5\u05E7 -Check\ File\ Fingerprint=\u05D1\u05D3\u05D5\u05E7 \u05D8\u05D1\u05D9\u05E2\u05EA \u05D0\u05E6\u05D1\u05E2 \u05E9\u05DC \u05E7\u05D5\u05D1\u05E5 -File\ to\ check=\u05E7\u05D5\u05D1\u05E5 \u05DC\u05D1\u05D3\u05D9\u05E7\u05D4 -description=\u05E7\u05D9\u05D1\u05DC\u05EA \u05E7\u05D5\u05D1\u05E5 \u05D2''\u05D0\u05E8 \u05D0\u05D1\u05DC \u05D0\u05EA\u05D4 \u05DC\u05D0 \u05D9\u05D5\u05D3\u05E2 \u05DE\u05D4 \u05D4\u05D2\u05E8\u05E1\u05D4 \u05E9\u05DC\u05D5?
\u05D2\u05DC\u05D4 \u05D6\u05D0\u05EA \u05E2\u05DC \u05D9\u05D3\u05D9 \u05D1\u05D3\u05D9\u05E7\u05EA \u05D8\u05D1\u05D9\u05E2\u05EA \u05D4\u05D0\u05E6\u05D1\u05E2 \u05E9\u05DC\u05D5 \u05D1\u05DE\u05D0\u05D2\u05E8 \u05E9\u05DC \u05D2''\u05E0\u05E7\u05D9\u05E0\u05E1 -more\ details=\u05DC\u05E4\u05E8\u05D8\u05D9\u05DD \u05E0\u05D5\u05E1\u05E4\u05D9\u05DD +Check=בדוק +Check\ File\ Fingerprint=בדוק טביעת ×צבע של קובץ +File\ to\ check=קובץ לבדיקה +description=קיבלת קובץ ×’''×ר ×בל ×תה ×œ× ×™×•×“×¢ מה הגרסה שלו?
גלה ×–×ת על ידי בדיקת טביעת ×”×צבע שלו במ×גר של ×’''נקינס +more\ details=×œ×¤×¨×˜×™× × ×•×¡×¤×™× diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_hu.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_hu.properties index 968876e9f1d8..608ec19919a4 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_hu.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_hu.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check=Ellen\u0151rz\u00E9s -Check\ File\ Fingerprint=F\u00E1jl Ujjlenyomat\u00E1nak Ellen\u0151rz\u00E9se -File\ to\ check=Ellen\u0151rizni k\u00EDv\u00E1nt f\u00E1jl -more\ details=tov\u00E1bbi r\u00E9szletek +Check=EllenÅ‘rzés +Check\ File\ Fingerprint=Fájl Ujjlenyomatának EllenÅ‘rzése +File\ to\ check=EllenÅ‘rizni kívánt fájl +more\ details=további részletek diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_it.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_it.properties index f2887d0c843c..bb4f0c07bce8 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -24,7 +24,7 @@ Check=Controlla Check\ File\ Fingerprint=Controlla impronta digitale file description=Si dispone di un file JAR ma non si sa a che versione appartenga?\ -
Lo si può scoprire ricercando la sua impronta digitale nel database \ +
Lo si può scoprire ricercando la sua impronta digitale nel database \ di Jenkins. File\ to\ check=File da controllare fingerprint.link=https://www.jenkins.io/redirect/fingerprint diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ja.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ja.properties index 95036e44447b..a3b51fe5fadc 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ja.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ja.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ File\ Fingerprint=\u30D5\u30A1\u30A4\u30EB\u6307\u7D0B\u30C1\u30A7\u30C3\u30AF -File\ to\ check=\u30C1\u30A7\u30C3\u30AF\u3059\u308B\u30D5\u30A1\u30A4\u30EB -Check=\u30C1\u30A7\u30C3\u30AF +Check\ File\ Fingerprint=ファイル指紋ãƒã‚§ãƒƒã‚¯ +File\ to\ check=ãƒã‚§ãƒƒã‚¯ã™ã‚‹ãƒ•ã‚¡ã‚¤ãƒ« +Check=ãƒã‚§ãƒƒã‚¯ description=\ - jar\u30D5\u30A1\u30A4\u30EB\u3092\u53D6\u5F97\u3057\u305F\u306E\u306B\u3001\u3069\u306E\u30D0\u30FC\u30B8\u30E7\u30F3\u304B\u5206\u304B\u3089\u306A\u3044\u306E\u3067\u3059\u304B?
\ - Jenkins\u306E\u30C7\u30FC\u30BF\u30D9\u30FC\u30B9\u3067\u30D5\u30A1\u30A4\u30EB\u6307\u7D0B\u3092\u30C1\u30A7\u30C3\u30AF\u3059\u308C\u3070\u3001\u5206\u304B\u308A\u307E\u3059\u3002 -more\ details=\u8A73\u7D30 + jarファイルをå–å¾—ã—ãŸã®ã«ã€ã©ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‹åˆ†ã‹ã‚‰ãªã„ã®ã§ã™ã‹?
\ + Jenkinsã®ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã§ãƒ•ã‚¡ã‚¤ãƒ«æŒ‡ç´‹ã‚’ãƒã‚§ãƒƒã‚¯ã™ã‚Œã°ã€åˆ†ã‹ã‚Šã¾ã™ã€‚ +more\ details=詳細 fingerprint.link=https://www.jenkins.io/redirect/fingerprint diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ko.properties index d79e17e42287..117df209747e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ko.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ko.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -Check=\uD655\uC778\uD558\uAE30 -Check\ File\ Fingerprint=\uD30C\uC77C \uC9C0\uBB38\uC744 \uD655\uC778\uD569\uB2C8\uB2E4 -File\ to\ check=\uD655\uC778\uD560 \uD30C\uC77C -description=jar\uD30C\uC77C\uC744 \uAC00\uC9C0\uACE0 \uC788\uC9C0\uB9CC \uC5B4\uB5A4 \uBC84\uC804\uC778\uC9C0 \uBAA8\uB974\uC2DC\uB098\uC694
Jenkins\uC5D0 \uB370\uC774\uD130\uBCA0\uC774\uC2A4\uC5D0 \uB300\uD55C \uC9C0\uBB38\uC744 \uD655\uC778\uD558\uB294 \uAC83\uC73C\uB85C \uBC84\uC804\uC744 \uCC3E\uC544\uBCF4\uC138\uC694 -more\ details=\uB354 \uC790\uC138\uD788 +Check=확ì¸í•˜ê¸° +Check\ File\ Fingerprint=íŒŒì¼ ì§€ë¬¸ì„ í™•ì¸í•©ë‹ˆë‹¤ +File\ to\ check=확ì¸í•  íŒŒì¼ +description=jar파ì¼ì„ 가지고 있지만 ì–´ë–¤ 버전ì¸ì§€ 모르시나요
Jenkinsì— ë°ì´í„°ë² ì´ìŠ¤ì— 대한 ì§€ë¬¸ì„ í™•ì¸í•˜ëŠ” 것으로 ë²„ì „ì„ ì°¾ì•„ë³´ì„¸ìš” +more\ details=ë” ìžì„¸ížˆ diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_lt.properties index 5066f663ba6f..2b4ed299ae70 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_lt.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_lt.properties @@ -1,8 +1,8 @@ description=\ - Gavote jar fail\u0105 bet ne\u017einote, kokia jo versija?
\ - Su\u017einokite patikrindami antspaud\u0105 Jenkinso duomen\u0173 baz\u0117je + Gavote jar failą bet nežinote, kokia jo versija?
\ + Sužinokite patikrindami antspaudą Jenkinso duomenų bazėje fingerprint.link=https://www.jenkins.io/redirect/fingerprint Check=Tikrinti -Check\ File\ Fingerprint=Tikrinti failo antspaud\u0105 +Check\ File\ Fingerprint=Tikrinti failo antspaudą more\ details=daugiau informacijos -File\ to\ check=Tikrinti fail\u0105 +File\ to\ check=Tikrinti failą diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_lv.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_lv.properties index 5718e94a13f2..6a34b5c8844e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_lv.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_lv.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check=P\u0101rbaud\u012Bt -Check\ File\ Fingerprint=P\u0101rbaude Faila Nospiedumam -File\ to\ check=Fails, kuru p\u0101baud\u012Bt -description=Ir *.jar fails, kuram nezini versiju?
Uzzini to, p\u0101rbaudot pirkstu nospiedumu pret Jenkins datub\u0101zi. +Check=PÄrbaudÄ«t +Check\ File\ Fingerprint=PÄrbaude Faila Nospiedumam +File\ to\ check=Fails, kuru pÄbaudÄ«t +description=Ir *.jar fails, kuram nezini versiju?
Uzzini to, pÄrbaudot pirkstu nospiedumu pret Jenkins datubÄzi. fingerprint.link=https://www.jenkins.io/redirect/fingerprint -more\ details=vair\u0101k inform\u0101cijas +more\ details=vairÄk informÄcijas diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pl.properties index 33c03fb917d7..3ed03161d221 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pl.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check=Sprawd\u017A -Check\ File\ Fingerprint=Wyszukaj wyst\u0105pienia artefaktu +Check=Sprawdź +Check\ File\ Fingerprint=Wyszukaj wystÄ…pienia artefaktu File\ to\ check=Plik do sprawdzenia -description=Masz plik ale nie wiesz w kt\u00F3rych zadaniach wyst\u0119puje?
Wyszukaj je w bazie danych Jenkinsa. +description=Masz plik ale nie wiesz w których zadaniach występuje?
Wyszukaj je w bazie danych Jenkinsa. fingerprint.link=https://www.jenkins.io/redirect/fingerprint -more\ details=wi\u0119cej detali +more\ details=więcej detali diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pt_BR.properties index d1ce2ab4d2dd..f40bf3391c7e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pt_BR.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ File\ Fingerprint=Verificar impress\u00E3o digital do arquivo +Check\ File\ Fingerprint=Verificar impressão digital do arquivo File\ to\ check=Arquivo para verificar Check=Verificar fingerprint.link=https://www.jenkins.io/redirect/fingerprint description=\ - Tem um arquivo jar mas n\u00E3o sabe em qual vers\u00E3o est\u00E1?
\ - Descubra atrav\u00E9s dos fingerprints na base de dados do Jenkins + Tem um arquivo jar mas não sabe em qual versão está?
\ + Descubra através dos fingerprints na base de dados do Jenkins more\ details=mais detalhes diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ru.properties index ea8b01288c73..38df585da352 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ru.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ File\ Fingerprint=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u043e\u043a \u0444\u0430\u0439\u043b\u0430 -File\ to\ check=\u0424\u0430\u0439\u043b \u0434\u043b\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 -Check=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c -description=\u041D\u0435 \u0437\u043D\u0430\u0435\u0442\u0435 \u0432\u0435\u0440\u0441\u0438\u044E Jar-\u0444\u0430\u0439\u043B\u0430?
\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C \u0432\u0430\u0448 jar-\u0444\u0430\u0439\u043B \u0434\u043B\u044F \u0435\u0433\u043E \u0441\u0440\u0430\u0432\u043D\u0435\u043D\u0438\u044F \u0441 \u0431\u0430\u0437\u043E\u0439 \u043E\u0442\u043F\u0435\u0447\u0430\u0442\u043A\u043E\u0432 \u0444\u0430\u0439\u043B\u043E\u0432 Jenkins +Check\ File\ Fingerprint=Проверить отпечаток файла +File\ to\ check=Файл Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð²ÐµÑ€ÐºÐ¸ +Check=Проверить +description=Ðе знаете верÑию Jar-файла?
Загрузить ваш jar-файл Ð´Ð»Ñ ÐµÐ³Ð¾ ÑÑ€Ð°Ð²Ð½ÐµÐ½Ð¸Ñ Ñ Ð±Ð°Ð·Ð¾Ð¹ отпечатков файлов Jenkins fingerprint.link=https://www.jenkins.io/redirect/fingerprint -more\ details=\u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u0430\u044F \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F +more\ details=Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sk.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sk.properties index 37da8a88cf44..b100a1d9ded8 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sk.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sk.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors Check=Skontroluj -Check\ File\ Fingerprint=Skontroluj odtla\u010Dok s\u00FAboru -File\ to\ check=S\u00FAbor na kontrolu +Check\ File\ Fingerprint=Skontroluj odtlaÄok súboru +File\ to\ check=Súbor na kontrolu fingerprint.link=https://www.jenkins.io/redirect/fingerprint more\ details=viac detailov diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sr.properties index 6c00c43d80fa..4b08329a63d9 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sr.properties @@ -1,10 +1,10 @@ # This file is under the MIT License by authors -Check\ File\ Fingerprint=\u041F\u0440\u043E\u0432\u0435\u0440\u0438 -description=\u041D\u0435\u0437\u043D\u0430\u0442\u0435 \u0432\u0435\u0440\u0437\u0438\u0458\u0443 \u043E\u0434 \u043D\u0435\u043A\u0435 '.jar' \u0430\u0440\u0445\u0438\u0432\u0435?
\ -\u041F\u0440\u043E\u0432\u0435\u0440\u0438\u0442\u0435 \u043F\u043E \u0434\u0438\u0433\u0438\u0442\u0430\u043B\u043D\u043E\u043C \u043E\u0442\u0438\u0441\u043A\u0443. +Check\ File\ Fingerprint=Провери +description=Ðезнате верзију од неке '.jar' архиве?
\ +Проверите по дигиталном отиÑку. fingerprint.link=https://www.jenkins.io/redirect/fingerprint -more\ details=\u0412\u0438\u0448\u0435 \u0434\u0435\u0442\u0430\u0459\u0430 -File\ to\ check=\u0410\u0440\u0445\u0438\u0432\u0430 \u0437\u0430 \u043F\u0440\u043E\u0432\u0435\u0440\u0438\u0432\u0430\u045A\u0435 -Check=\u041F\u0440\u043E\u0432\u0435\u0440\u0438 -Find=\u041F\u0440\u043E\u043D\u0430\u0452\u0438 +more\ details=Више детаља +File\ to\ check=Ðрхива за проверивање +Check=Провери +Find=Пронађи diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sv_SE.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sv_SE.properties index 22f7fc864dd6..290e9c6a7f1f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sv_SE.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sv_SE.properties @@ -23,6 +23,6 @@ Check=Kontrollera Check\ File\ Fingerprint=Kontrollera filkontrollsumma File\ to\ check=Fil att kontrollera -description=Har du en jar fil men vet inte vilket version den \u00E4r?
Kontrollera det via kontrollsumman i Jenkins databas +description=Har du en jar fil men vet inte vilket version den är?
Kontrollera det via kontrollsumman i Jenkins databas fingerprint.link=https://www.jenkins.io/redirect/fingerprint more\ details=mer detaljer diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_tr.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_tr.properties index 592726095f36..8a67a758900d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_tr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_tr.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ File\ Fingerprint=Dosya \u00fczerindeki parmakizini kontrol et +Check\ File\ Fingerprint=Dosya üzerindeki parmakizini kontrol et File\ to\ check=Kontrol edilecek dosya Check=Kontrol Et description=\ - Bir jar dosyan\u0131z var ve hangi versiyon oldu\u011funu bilmiyor musunuz?
\ - Parmakizini Jenkins i\u00e7erisindeki veritaban\u0131nda aratarak bulabilirsiniz. + Bir jar dosyanız var ve hangi versiyon olduğunu bilmiyor musunuz?
\ + Parmakizini Jenkins içerisindeki veritabanında aratarak bulabilirsiniz. more\ details=daha fazla detay diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_uk.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_uk.properties index f20257e80fbf..5d7de7caed33 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_uk.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_uk.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check=\u041F\u0435\u0440\u0435\u0432\u0456\u0440\u0438\u0442\u0438 -Check\ File\ Fingerprint=\u041F\u0435\u0440\u0435\u0432\u0456\u0440\u0438\u0442\u0438 \u0412\u0456\u0434\u0431\u0438\u0442\u043E\u043A \u0424\u0430\u0439\u043B\u0430 -File\ to\ check=\u0424\u0430\u0439\u043B \u0434\u043B\u044F \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u043A\u0438 -description=\u041C\u0430\u0454\u0442\u0435 jar, \u0430\u043B\u0435 \u043D\u0435 \u0437\u043D\u0430\u0454\u0442\u0435 \u043A\u043E\u0442\u0440\u043E\u0457 \u0432\u0435\u0440\u0441\u0456\u0457?
\u0414\u0456\u0437\u043D\u0430\u0439\u0442\u0435\u0441\u044C, \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u0438\u0432\u0448\u0438 \u0432\u0456\u0434\u0431\u0438\u0442\u043E\u043A \u0443 \u0431\u0430\u0437\u0456 \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441\u0430. -more\ details=\u0434\u0435\u0442\u0430\u043B\u044C\u043D\u0456\u0448\u0435 +Check=Перевірити +Check\ File\ Fingerprint=Перевірити Відбиток Файла +File\ to\ check=Файл Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ²Ñ–Ñ€ÐºÐ¸ +description=Маєте jar, але не знаєте котрої верÑÑ–Ñ—?
ДізнайтеÑÑŒ, перевіривши відбиток у базі ДженкінÑа. +more\ details=детальніше diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_zh_TW.properties index 7e2232a5f502..ab59b8c88874 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_zh_TW.properties @@ -19,9 +19,9 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description=\u624b\u908a\u6709\u500b JAR \u6a94\uff0c\u4f46\u662f\u537b\u4e0d\u77e5\u9053\u5b83\u5230\u5e95\u662f\u54ea\u4e00\u7248\u7684\uff1f
\u900f\u904e\u6a94\u6848\u7684\u6307\u7d0b\u5230 Jenkins \u7684\u8cc7\u6599\u5eab\u88e1\u627e\u770b\u770b\u5427\u3002 +description=手邊有個 JAR 檔,但是å»ä¸çŸ¥é“它到底是哪一版的?
é€éŽæª”案的指紋到 Jenkins 的資料庫裡找看看å§ã€‚ fingerprint.link=https\://www.jenkins.io/redirect/fingerprint -Check\ File\ Fingerprint=\u6aa2\u67e5\u6a94\u6848\u6307\u7d0b -more\ details=\u8a73\u7d30\u8cc7\u6599 -File\ to\ check=\u8981\u6aa2\u67e5\u7684\u6a94\u6848 -Check=\u6aa2\u67e5 +Check\ File\ Fingerprint=檢查檔案指紋 +more\ details=詳細資料 +File\ to\ check=è¦æª¢æŸ¥çš„檔案 +Check=檢查 diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend.properties b/core/src/main/resources/jenkins/model/Jenkins/legend.properties index f1d6f686fd16..75d6e79491b0 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend.properties @@ -33,9 +33,9 @@ yellow=The last build was successful but unstable. \ yellow_anime=The last build was successful but unstable. A new build is in progress. red=The last build failed. red_anime=The last build failed. A new build is in progress. -health-81plus=Project health is over 80%. You can hover the mouse over the project\u2019s icon for a more detailed explanation. -health-61to80=Project health is over 60% and up to 80%. You can hover the mouse over the project\u2019s icon for a more detailed explanation. -health-41to60=Project health is over 40% and up to 60%. You can hover the mouse over the project\u2019s icon for a more detailed explanation. -health-21to40=Project health is over 20% and up to 40%. You can hover the mouse over the project\u2019s icon for a more detailed explanation. -health-00to20=Project health is 20% or less. You can hover the mouse over the project\u2019s icon for a more detailed explanation. +health-81plus=Project health is over 80%. You can hover the mouse over the project’s icon for a more detailed explanation. +health-61to80=Project health is over 60% and up to 80%. You can hover the mouse over the project’s icon for a more detailed explanation. +health-41to60=Project health is over 40% and up to 60%. You can hover the mouse over the project’s icon for a more detailed explanation. +health-21to40=Project health is over 20% and up to 40%. You can hover the mouse over the project’s icon for a more detailed explanation. +health-00to20=Project health is 20% or less. You can hover the mouse over the project’s icon for a more detailed explanation. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_bg.properties index cf4e0133fde0..0bfa1e4ee8b3 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_bg.properties @@ -22,47 +22,47 @@ # The last build fatally failed. A new build is in progress. red_anime=\ - \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e\u0442\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0431\u0435 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e. \u0412 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0442\u0435\u0447\u0435 \u0441\u043b\u0435\u0434\u0432\u0430\u0449\u043e\u0442\u043e. + ПоÑледното изграждане бе неуÑпешно. Ð’ момента тече Ñледващото. # The project has never been built before, or the project is disabled. grey=\ - \u041f\u0440\u043e\u0435\u043a\u0442\u044a\u0442 \u043d\u0435 \u0435 \u0431\u0438\u043b \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d \u0434\u043e\u0441\u0435\u0433\u0430 \u0438\u043b\u0438 \u0435 \u0438\u0437\u043a\u043b\u044e\u0447\u0435\u043d. -# Project health is 20% or less. You can hover the mouse over the project\u2019s icon for a more detailed explanation. + Проектът не е бил изграждан доÑега или е изключен. +# Project health is 20% or less. You can hover the mouse over the project’s icon for a more detailed explanation. health-00to20=\ - \u041f\u0440\u043e\u0435\u043a\u0442\u044a\u0442 \u0435 \u0437\u0434\u0440\u0430\u0432 \u043d\u0430 [0;20]\u200a%. \u0417\u0430 \u043f\u043e\u0432\u0435\u0447\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430\u0434\u0440\u044a\u0436\u0442\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u043b\u0435\u0446\u0430 \u043d\u0430\ - \u043c\u0438\u0448\u043a\u0430\u0442\u0430 \u043d\u0430\u0434 \u0438\u043a\u043e\u043d\u0430\u0442\u0430 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430. + Проектът е здрав на [0;20] %. За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð°Ð´Ñ€ÑŠÐ¶Ñ‚Ðµ показалеца на\ + мишката над иконата на проекта. # The last build was successful but unstable. A new build is in progress. yellow_anime=\ - \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e\u0442\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e, \u043d\u043e \u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u043d\u043e. \u0412 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0442\u0435\u0447\u0435 \u0441\u043b\u0435\u0434\u0432\u0430\u0449\u043e\u0442\u043e. + ПоÑледното изграждане е уÑпешно, но неÑтабилно. Ð’ момента тече Ñледващото. # The last build was successful. blue=\ - \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e\u0442\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e. + ПоÑледното изграждане е уÑпешно. # The last build was successful but unstable.\ # This is primarily used to represent test failures. yellow=\ - \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e\u0442\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e, \u043d\u043e \u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u043d\u043e. \u041d\u0430\u0439-\u0447\u0435\u0441\u0442\u043e \u0442\u043e\u0432\u0430 \u0441\u0435 \u0434\u044a\u043b\u0436\u0438 \u043d\u0430\ - \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0438 \u043f\u0440\u0438 \u0442\u0435\u0441\u0442\u043e\u0432\u0435\u0442\u0435. + ПоÑледното изграждане е уÑпешно, но неÑтабилно. Ðай-чеÑто това Ñе дължи на\ + проблеми при теÑтовете. # The last build fatally failed. red=\ - \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e\u0442\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0431\u0435 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e. -# Project health is over 40% and up to 60%. You can hover the mouse over the project\u2019s icon for a more detailed explanation. + ПоÑледното изграждане бе неуÑпешно. +# Project health is over 40% and up to 60%. You can hover the mouse over the project’s icon for a more detailed explanation. health-41to60=\ - \u041f\u0440\u043e\u0435\u043a\u0442\u044a\u0442 \u0435 \u0437\u0434\u0440\u0430\u0432 \u043d\u0430 (40;60]\u200a%. \u0417\u0430 \u043f\u043e\u0432\u0435\u0447\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430\u0434\u0440\u044a\u0436\u0442\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u043b\u0435\u0446\u0430 \u043d\u0430\ - \u043c\u0438\u0448\u043a\u0430\u0442\u0430 \u043d\u0430\u0434 \u0438\u043a\u043e\u043d\u0430\u0442\u0430 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430. + Проектът е здрав на (40;60] %. За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð°Ð´Ñ€ÑŠÐ¶Ñ‚Ðµ показалеца на\ + мишката над иконата на проекта. # The last build was successful. A new build is in progress. blue_anime=\ - \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e\u0442\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0431\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e. \u0412 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0442\u0435\u0447\u0435 \u0441\u043b\u0435\u0434\u0432\u0430\u0449\u043e\u0442\u043e. -# Project health is over 20% and up to 40%. You can hover the mouse over the project\u2019s icon for a more detailed explanation. + ПоÑледното изграждане бе уÑпешно. Ð’ момента тече Ñледващото. +# Project health is over 20% and up to 40%. You can hover the mouse over the project’s icon for a more detailed explanation. health-21to40=\ - \u041f\u0440\u043e\u0435\u043a\u0442\u044a\u0442 \u0435 \u0437\u0434\u0440\u0430\u0432 \u043d\u0430 (20;40]\u200a%. \u0417\u0430 \u043f\u043e\u0432\u0435\u0447\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430\u0434\u0440\u044a\u0436\u0442\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u043b\u0435\u0446\u0430 \u043d\u0430\ - \u043c\u0438\u0448\u043a\u0430\u0442\u0430 \u043d\u0430\u0434 \u0438\u043a\u043e\u043d\u0430\u0442\u0430 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430. -# Project health is over 60% and up to 80%. You can hover the mouse over the project\u2019s icon for a more detailed explanation. + Проектът е здрав на (20;40] %. За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð°Ð´Ñ€ÑŠÐ¶Ñ‚Ðµ показалеца на\ + мишката над иконата на проекта. +# Project health is over 60% and up to 80%. You can hover the mouse over the project’s icon for a more detailed explanation. health-61to80=\ - \u041f\u0440\u043e\u0435\u043a\u0442\u044a\u0442 \u0435 \u0437\u0434\u0440\u0430\u0432 \u043d\u0430 (60;80]\u200a%. \u0417\u0430 \u043f\u043e\u0432\u0435\u0447\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430\u0434\u0440\u044a\u0436\u0442\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u043b\u0435\u0446\u0430 \u043d\u0430\ - \u043c\u0438\u0448\u043a\u0430\u0442\u0430 \u043d\u0430\u0434 \u0438\u043a\u043e\u043d\u0430\u0442\u0430 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430. -# Project health is over 80%. You can hover the mouse over the project\u2019s icon for a more detailed explanation. + Проектът е здрав на (60;80] %. За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð°Ð´Ñ€ÑŠÐ¶Ñ‚Ðµ показалеца на\ + мишката над иконата на проекта. +# Project health is over 80%. You can hover the mouse over the project’s icon for a more detailed explanation. health-81plus=\ - \u041f\u0440\u043e\u0435\u043a\u0442\u044a\u0442 \u0435 \u0437\u0434\u0440\u0430\u0432 \u043d\u0430 (80;100]\u200a%. \u0417\u0430 \u043f\u043e\u0432\u0435\u0447\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430\u0434\u0440\u044a\u0436\u0442\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u043b\u0435\u0446\u0430 \u043d\u0430\ - \u043c\u0438\u0448\u043a\u0430\u0442\u0430 \u043d\u0430\u0434 \u0438\u043a\u043e\u043d\u0430\u0442\u0430 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430. + Проектът е здрав на (80;100] %. За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð°Ð´Ñ€ÑŠÐ¶Ñ‚Ðµ показалеца на\ + мишката над иконата на проекта. # The first build of the project is in progress. grey_anime=\ - \u0412 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0442\u0435\u0447\u0435 \u043f\u044a\u0440\u0432\u043e\u0442\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430. + Ð’ момента тече първото изграждане на проекта. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_cs.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_cs.properties index 59ce893d8fb4..93f2563fd71e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_cs.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_cs.properties @@ -20,16 +20,16 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blue=Posledn\u00ED build byl \u00FAsp\u011B\u0161n\u00FD. -blue_anime=Posledn\u00ED build byl \u00FAsp\u011B\u0161n\u00FD a pr\u00E1v\u011B prob\u00EDh\u00E1 nov\u00FD build. -grey=Project je\u0161t\u011B nem\u011Bl ani jeden build a nebo je deaktivovan\u00FD. -grey_anime=Prvn\u00ED build projektu pr\u00E1v\u011B prob\u00EDh\u00E1. -health-00to20=Zdrav\u00ED projektu je ni\u017E\u0161\u00ED ne\u017E 20%. Podr\u017Ete kurzor my\u0161i nad ikonou projektu pro v\u00EDce informac\u00ED. -health-21to40=Zdrav\u00ED projektu je mezi 20% a 40%. Podr\u017Ete kurzor my\u0161i nad ikonou projektu pro v\u00EDce informac\u00ED. -health-41to60=Zdrav\u00ED projektu je mezi 40% a 60%. Podr\u017Ete kurzor my\u0161i nad ikonou projektu pro v\u00EDce informac\u00ED. -health-61to80=Zdrav\u00ED projektu je mezi 60% a 80%. Podr\u017Ete kurzor my\u0161i nad ikonou projektu pro v\u00EDce informac\u00ED. -health-81plus=Zdrav\u00ED projektu je vy\u0161\u0161\u00ED ne\u017E 80%. Podr\u017Ete kurzor my\u0161i nad ikonou projektu pro v\u00EDce informac\u00ED. -red=Posledn\u00ED build selhal. -red_anime=Posledn\u00ED build selhal a pr\u00E1v\u011B prob\u00EDh\u00E1 nov\u00FD build. -yellow=Posledn\u00ED build byl \u00FAsp\u011B\u0161n\u00FD, ale nestabiln\u00ED. Toto obvykle znamen\u00E1 \u017Ee n\u011Bkter\u00E9 testy nepro\u0161ly. -yellow_anime=Posledn\u00ED build byl \u00FAsp\u011B\u0161n\u00FD, ale nestabiln\u00ED. Pr\u00E1v\u011B prob\u00EDh\u00E1 nov\u00FD build. +blue=Poslední build byl úspěšný. +blue_anime=Poslední build byl úspěšný a právÄ› probíhá nový build. +grey=Project jeÅ¡tÄ› nemÄ›l ani jeden build a nebo je deaktivovaný. +grey_anime=První build projektu právÄ› probíhá. +health-00to20=Zdraví projektu je nižší než 20%. Podržte kurzor myÅ¡i nad ikonou projektu pro více informací. +health-21to40=Zdraví projektu je mezi 20% a 40%. Podržte kurzor myÅ¡i nad ikonou projektu pro více informací. +health-41to60=Zdraví projektu je mezi 40% a 60%. Podržte kurzor myÅ¡i nad ikonou projektu pro více informací. +health-61to80=Zdraví projektu je mezi 60% a 80%. Podržte kurzor myÅ¡i nad ikonou projektu pro více informací. +health-81plus=Zdraví projektu je vyšší než 80%. Podržte kurzor myÅ¡i nad ikonou projektu pro více informací. +red=Poslední build selhal. +red_anime=Poslední build selhal a právÄ› probíhá nový build. +yellow=Poslední build byl úspěšný, ale nestabilní. Toto obvykle znamená že nÄ›které testy neproÅ¡ly. +yellow_anime=Poslední build byl úspěšný, ale nestabilní. PrávÄ› probíhá nový build. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_da.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_da.properties index 5a1642dbb7cd..cd1589fa84cb 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_da.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_da.properties @@ -24,12 +24,12 @@ yellow_anime=Det sidste byg var succesfuldt men ustabilt. Et nyt byg er i gang. health-21to40=Projektets helbred er mellem 20% og 40%. Du kan holde musen over projektets ikon for en mere detaljeret forklaring. health-41to60=Projektets helbred er mellem 40% og 60%. Du kan holde musen over projektets ikon for en mere detaljeret forklaring. red=Det sidste byg fejlede fatalt. -grey=Projektet er aldrig blevet bygget f\u00f8r, eller projektet er sl\u00e5et fra. +grey=Projektet er aldrig blevet bygget før, eller projektet er slÃ¥et fra. health-61to80=Projektets helbred er mellem 60% og 80%. Du kan holde musen over projektets ikon for en mere detaljeret forklaring. -yellow=Det sidste byg var succesfuldt men ustabilt. Dette bruges prim\u00e6rt til at repr\u00e6sentere fejlede test. +yellow=Det sidste byg var succesfuldt men ustabilt. Dette bruges primært til at repræsentere fejlede test. blue_anime=Det sidste byg var succesfuldt. Et nyt byg er i gang. health-00to20=Projektets helbred er 20% eller derunder. Du kan holde musen over projektets ikon for en mere detaljeret forklaring. -grey_anime=Projektets f\u00f8rste byg er i gang. +grey_anime=Projektets første byg er i gang. blue=Det sidste byg var succesfuldt. health-81plus=Projektets helbred er over 80%. Du kan holde musen over projektets ikon for en mere detaljeret forklaring. red_anime=Det sidste byg fejlede fatalt. Et nyt byg er i gang. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_de.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_de.properties index 119b7cebbed9..8e9793c1ad81 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_de.properties @@ -3,12 +3,12 @@ grey_anime=Der erste Build des Projekts findet gerade statt. blue=Der letzte Build war erfolgreich. blue_anime=Der letzte Build war erfolgreich. Ein neuer Build findet gerade statt. yellow=Der letzte Build war erfolgreich, aber instabil. Dies bedeutet, dass der Build zwar technisch \ - durchgef\u00FChrt werden konnte, dabei aber Tests w\u00E4hrend des Builds fehlschlugen. + durchgeführt werden konnte, dabei aber Tests während des Builds fehlschlugen. yellow_anime=Der letzte Build war erfolgreich, aber instabil. Ein neuer Build findet gerade statt. red=Der letzte Build schlug fehl. red_anime=Der letzte Build schlug fehl. Ein neuer Build findet gerade statt. -health-81plus=Die Projektgesundheit betr\u00E4gt \u00FCber 80%. Fahren Sie mit dem Mauszeiger \u00FCber das Projektsymbol, um mehr Details dazu zu erfahren. -health-61to80=Die Projektgesundheit betr\u00E4gt zwischen 60% und 80%. Fahren Sie mit dem Mauszeiger \u00FCber das Projektsymbol, um mehr Details dazu zu erfahren. -health-41to60=Die Projektgesundheit betr\u00E4gt zwischen 40% und 60%. Fahren Sie mit dem Mauszeiger \u00FCber das Projektsymbol, um mehr Details dazu zu erfahren. -health-21to40=Die Projektgesundheit betr\u00E4gt zwischen 20% und 40%. Fahren Sie mit dem Mauszeiger \u00FCber das Projektsymbol, um mehr Details dazu zu erfahren. -health-00to20=Die Projektgesundheit betr\u00E4gt unter 20%. Fahren Sie mit dem Mauszeiger \u00FCber das Projektsymbol, um mehr Details dazu zu erfahren. +health-81plus=Die Projektgesundheit beträgt über 80%. Fahren Sie mit dem Mauszeiger über das Projektsymbol, um mehr Details dazu zu erfahren. +health-61to80=Die Projektgesundheit beträgt zwischen 60% und 80%. Fahren Sie mit dem Mauszeiger über das Projektsymbol, um mehr Details dazu zu erfahren. +health-41to60=Die Projektgesundheit beträgt zwischen 40% und 60%. Fahren Sie mit dem Mauszeiger über das Projektsymbol, um mehr Details dazu zu erfahren. +health-21to40=Die Projektgesundheit beträgt zwischen 20% und 40%. Fahren Sie mit dem Mauszeiger über das Projektsymbol, um mehr Details dazu zu erfahren. +health-00to20=Die Projektgesundheit beträgt unter 20%. Fahren Sie mit dem Mauszeiger über das Projektsymbol, um mehr Details dazu zu erfahren. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_es.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_es.properties index 825dbb92b661..9d1ffa8e61ff 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_es.properties @@ -20,17 +20,17 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -grey=El proyecto no se ha ejecutado nunca o está deshabilitado. -grey_anime=Se está ejecutando el proyecto por primera vez. -blue=La \u00FAltima ejecuci\u00F3n fue correcta. -blue_anime=La \u00FAltima ejecuci\u00F3n fue correcta. Se ha lanzado una nueva ejecuci\u00F3n. -yellow=La \u00FAltima ejecuci\u00F3n fue correcta pero inestable. Esto es debido normalmente a fallos en algunos tests. -yellow_anime=La \u00FAltima ejecuci\u00F3n fue correcta pero inestable. Se ha lanzado una nueva ejecuci\u00F3n. -red=La última ejecución falló. -red_anime=La última ejecución falló. Se ha lanzado una nueva ejecución. +grey=El proyecto no se ha ejecutado nunca o está deshabilitado. +grey_anime=Se está ejecutando el proyecto por primera vez. +blue=La última ejecución fue correcta. +blue_anime=La última ejecución fue correcta. Se ha lanzado una nueva ejecución. +yellow=La última ejecución fue correcta pero inestable. Esto es debido normalmente a fallos en algunos tests. +yellow_anime=La última ejecución fue correcta pero inestable. Se ha lanzado una nueva ejecución. +red=La última ejecución falló. +red_anime=La última ejecución falló. Se ha lanzado una nueva ejecución. -health-81plus=El estado de salud del proyecto supera el 80%. Puedes situar el ratón sobre el icono para ver una explicación detallada. -health-00to20=El estado de salud del proyecto es inferior al 20%. Puedes situar el rat\u00F3n sobre el icono para ver una explicaci\u00F3n detallada. -health-41to60=El estado de salud del proyecto est\u00E1 entre el 40% y el 60%. Puedes situar el rat\u00F3n sobre el icono para ver una explicaci\u00F3n detallada. -health-21to40=El estado de salud del proyecto est\u00E1 entre el 20% y el 40%. Puedes situar el rat\u00F3n sobre el icono para ver una explicaci\u00F3n detallada. -health-61to80=El estado de salud del proyecto est\u00E1 entre el 60% y 80%. Puedes situar el rat\u00F3n sobre el icono para ver una explicaci\u00F3n detallada. +health-81plus=El estado de salud del proyecto supera el 80%. Puedes situar el ratón sobre el icono para ver una explicación detallada. +health-00to20=El estado de salud del proyecto es inferior al 20%. Puedes situar el ratón sobre el icono para ver una explicación detallada. +health-41to60=El estado de salud del proyecto está entre el 40% y el 60%. Puedes situar el ratón sobre el icono para ver una explicación detallada. +health-21to40=El estado de salud del proyecto está entre el 20% y el 40%. Puedes situar el ratón sobre el icono para ver una explicación detallada. +health-61to80=El estado de salud del proyecto está entre el 60% y 80%. Puedes situar el ratón sobre el icono para ver una explicación detallada. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_et.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_et.properties index 8bfe9066a8e5..eafa58bff826 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_et.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_et.properties @@ -1,15 +1,15 @@ # This file is under the MIT License by authors -blue=Viimane ehitust\u00F6\u00F6 \u00F5nnestus. -blue_anime=Viimane ehitust\u00F6\u00F6 \u00F5nnestus. Projekti ehitatakse uuesti. -grey=Projekti pole veel kordagi ehitatud v\u00F5i selle ehitamine on peatatud. +blue=Viimane ehitustöö õnnestus. +blue_anime=Viimane ehitustöö õnnestus. Projekti ehitatakse uuesti. +grey=Projekti pole veel kordagi ehitatud või selle ehitamine on peatatud. grey_anime=Projekt on esmakordselt ehitamisel. -health-00to20=Projekti tervis on alla 20%. Hiirega projekti ikooni kohal h\u00E4ljudes saad t\u00E4psema selgituse. -health-21to40=Projekti tervis on \u00FCle 20%, kuid v\u00E4hem kui 40%. Hiirega projekti ikooni kohal h\u00E4ljudes saad t\u00E4psema selgituse. -health-41to60=Projekti tervis on \u00FCle 40%, kuid v\u00E4hem kui 60%. Hiirega projekti ikooni kohal h\u00E4ljudes saad t\u00E4psema selgituse. -health-61to80=Projekti tervis on \u00FCle 60%, kuid v\u00E4hem kui 80%. Hiirega projekti ikooni kohal h\u00E4ljudes saad t\u00E4psema selgituse. -health-81plus=Projekti tervis on \u00FCle 80%. Hiirega projekti ikooni kohal h\u00E4ljudes saad t\u00E4psema selgituse. -red=Viimane ehitust\u00F6\u00F6 kukkus l\u00E4bi. -red_anime=Viimane ehitust\u00F6\u00F6 kukkus l\u00E4bi. Projekti ehitatakse uuesti. -yellow=Viimane ehitus k\u00FCll \u00F5nnestus oli ebastabiilne. Tavaliselt t\u00E4hendab see testide eba\u00F5nnestumist. -yellow_anime=Viimane ehitus k\u00FCll \u00F5nnestus oli ebastabiilne. Projekti ehitatakse uuesti. +health-00to20=Projekti tervis on alla 20%. Hiirega projekti ikooni kohal häljudes saad täpsema selgituse. +health-21to40=Projekti tervis on üle 20%, kuid vähem kui 40%. Hiirega projekti ikooni kohal häljudes saad täpsema selgituse. +health-41to60=Projekti tervis on üle 40%, kuid vähem kui 60%. Hiirega projekti ikooni kohal häljudes saad täpsema selgituse. +health-61to80=Projekti tervis on üle 60%, kuid vähem kui 80%. Hiirega projekti ikooni kohal häljudes saad täpsema selgituse. +health-81plus=Projekti tervis on üle 80%. Hiirega projekti ikooni kohal häljudes saad täpsema selgituse. +red=Viimane ehitustöö kukkus läbi. +red_anime=Viimane ehitustöö kukkus läbi. Projekti ehitatakse uuesti. +yellow=Viimane ehitus küll õnnestus oli ebastabiilne. Tavaliselt tähendab see testide ebaõnnestumist. +yellow_anime=Viimane ehitus küll õnnestus oli ebastabiilne. Projekti ehitatakse uuesti. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_fr.properties index 35b8cc6b21bd..9fa47661705c 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_fr.properties @@ -20,21 +20,21 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -grey=Le projet n''a jamais \u00e9t\u00e9 construit avant ou est d\u00e9sactiv\u00e9. +grey=Le projet n''a jamais été construit avant ou est désactivé. grey_anime=Le premier build du projet est en cours. -darkgrey=Le dernier build a \u00e9t\u00e9 abandonn\u00e9. -darkgrey_anime=Le dernier build a \u00e9t\u00e9 abandonn\u00e9. Un nouveau build est en cours. -lightgrey=Le projet n''a jamais \u00e9t\u00e9 construit. +darkgrey=Le dernier build a été abandonné. +darkgrey_anime=Le dernier build a été abandonné. Un nouveau build est en cours. +lightgrey=Le projet n''a jamais été construit. lightgrey_anime=Le premier build est en cours. -blue=Le dernier build s''est achev\u00e9 avec succ\u00e8s. -blue_anime=Le dernier build s''est achev\u00e9 avec succ\u00e8s. Un nouveau build est en cours. -yellow=Le dernier build s''est achev\u00e9 avec succ\u00e8s mais est instable. \ - Cela est utilis\u00e9 principalement pour repr\u00e9senter des \u00e9checs sur les tests. -yellow_anime=Le dernier build s''est achev\u00e9 avec succ\u00e8s mais est instable. Un nouveau build est en cours. -red=Le dernier build est en \u00e9chec. -red_anime=Le dernier build est en \u00e9chec. Un nouveau build est en cours. -health-81plus=La sant\u00E9 du projet est au dessus de 80%. Vous pouvez passer votre souris au dessus de l''ic\u00F4ne du projet pour plus d''informations. -health-61to80=La sant\u00E9 du projet est entre 60% et 80%. Vous pouvez passer votre souris au dessus de l''ic\u00F4ne du projet pour plus d''informations. -health-41to60=La sant\u00E9 du projet est entre 40% et 60%. Vous pouvez passer votre souris au dessus de l''ic\u00F4ne du projet pour plus d''informations. -health-21to40=La sant\u00E9 du projet est entre 20% et 40%. Vous pouvez passer votre souris au dessus de l''ic\u00F4ne du projet pour plus d''informations. -health-00to20=La sant\u00E9 du projet est en dessous de 20%. Vous pouvez passer votre souris au dessus de l''ic\u00F4ne du projet pour plus d''informations. +blue=Le dernier build s''est achevé avec succès. +blue_anime=Le dernier build s''est achevé avec succès. Un nouveau build est en cours. +yellow=Le dernier build s''est achevé avec succès mais est instable. \ + Cela est utilisé principalement pour représenter des échecs sur les tests. +yellow_anime=Le dernier build s''est achevé avec succès mais est instable. Un nouveau build est en cours. +red=Le dernier build est en échec. +red_anime=Le dernier build est en échec. Un nouveau build est en cours. +health-81plus=La santé du projet est au dessus de 80%. Vous pouvez passer votre souris au dessus de l''icône du projet pour plus d''informations. +health-61to80=La santé du projet est entre 60% et 80%. Vous pouvez passer votre souris au dessus de l''icône du projet pour plus d''informations. +health-41to60=La santé du projet est entre 40% et 60%. Vous pouvez passer votre souris au dessus de l''icône du projet pour plus d''informations. +health-21to40=La santé du projet est entre 20% et 40%. Vous pouvez passer votre souris au dessus de l''icône du projet pour plus d''informations. +health-00to20=La santé du projet est en dessous de 20%. Vous pouvez passer votre souris au dessus de l''icône du projet pour plus d''informations. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_hu.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_hu.properties index 01e19d7f8314..940426bedb77 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_hu.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_hu.properties @@ -1,15 +1,15 @@ # This file is under the MIT License by authors -blue=Az utols\u00F3 Build sikeres volt. -blue_anime=Az utols\u00F3 Build sikeres volt. Az \u00FAj Build folyamatban van. -grey=A projekt m\u00E9g soha nem \u00E9p\u00FClt kor\u00E1bban, vagy a projekt le van tiltva. -grey_anime=Az els\u0151 \u00E9p\u00EDt\u00E9si projekt folyamatban van. -health-00to20=A projekt min\u0151s\u00E9ge 20% vagy alacsonyabb. H\u00FAzd az egeret a project"s ikonra a r\u00E9szletesebb magyar\u00E1zat\u00E9rt. -health-21to40=A projekt min\u0151s\u00E9ge t\u00F6bb mint 20% \u00E9s legfeljebb 40%. H\u00FAzd az egeret a projekt'''' s ikonra a r\u00E9szletesebb magyar\u00E1zat\u00E9rt. -health-41to60=A projekt min\u0151s\u00E9ge t\u00F6bb mint 40% \u00E9s legfeljebb 60%. H\u00FAzd az egeret a projekt'''' s ikonra a r\u00E9szletesebb magyar\u00E1zat\u00E9rt. -health-61to80=A projekt min\u0151s\u00E9ge t\u00F6bb mint 60% \u00E9s legfeljebb 80%. H\u00FAzd az egeret a projekt'''' s ikonra a r\u00E9szletesebb magyar\u00E1zat\u00E9rt. -health-81plus=A projekt min\u0151s\u00E9ge t\u00F6bb mint 80%. H\u00FAzd az egeret a projekt'''' s ikonra a r\u00E9szletesebb magyar\u00E1zat\u00E9rt. -red=Az utols\u00F3 Build v\u00E9gzetesen sikertelen. -red_anime=Az utols\u00F3 Build v\u00E9gzetesen sikertelen. Az \u00FAj Build folyamatban van. -yellow=Az utols\u00F3 Build sikeres volt, de instabil. Ez els\u0151sorban megmutatja a teszt hib\u00E1it. -yellow_anime=Az utols\u00F3 Build sikeres volt, de instabil. Az \u00FAj Build folyamatban van. +blue=Az utolsó Build sikeres volt. +blue_anime=Az utolsó Build sikeres volt. Az új Build folyamatban van. +grey=A projekt még soha nem épült korábban, vagy a projekt le van tiltva. +grey_anime=Az elsÅ‘ építési projekt folyamatban van. +health-00to20=A projekt minÅ‘sége 20% vagy alacsonyabb. Húzd az egeret a project"s ikonra a részletesebb magyarázatért. +health-21to40=A projekt minÅ‘sége több mint 20% és legfeljebb 40%. Húzd az egeret a projekt'''' s ikonra a részletesebb magyarázatért. +health-41to60=A projekt minÅ‘sége több mint 40% és legfeljebb 60%. Húzd az egeret a projekt'''' s ikonra a részletesebb magyarázatért. +health-61to80=A projekt minÅ‘sége több mint 60% és legfeljebb 80%. Húzd az egeret a projekt'''' s ikonra a részletesebb magyarázatért. +health-81plus=A projekt minÅ‘sége több mint 80%. Húzd az egeret a projekt'''' s ikonra a részletesebb magyarázatért. +red=Az utolsó Build végzetesen sikertelen. +red_anime=Az utolsó Build végzetesen sikertelen. Az új Build folyamatban van. +yellow=Az utolsó Build sikeres volt, de instabil. Ez elsÅ‘sorban megmutatja a teszt hibáit. +yellow_anime=Az utolsó Build sikeres volt, de instabil. Az új Build folyamatban van. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_it.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_it.properties index 23ed05033d20..8efee623cea5 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,36 +21,36 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blue=L''ultima compilazione è stata completata con successo. -blue_anime=L''ultima compilazione è stata completata con successo. È in corso \ +blue=L''ultima compilazione è stata completata con successo. +blue_anime=L''ultima compilazione è stata completata con successo. È in corso \ una nuova compilazione. -darkgrey=L''ultima compilazione è stata interrotta. -darkgrey_anime=L''ultima compilazione è stata interrotta. È in corso una \ +darkgrey=L''ultima compilazione è stata interrotta. +darkgrey_anime=L''ultima compilazione è stata interrotta. È in corso una \ nuova compilazione. -grey=Il progetto è disabilitato. -grey_anime=Il progetto è disabilitato, ma è in corso una compilazione. -health-00to20=La salute del progetto è al 20% o a un valore minore. È \ +grey=Il progetto è disabilitato. +grey_anime=Il progetto è disabilitato, ma è in corso una compilazione. +health-00to20=La salute del progetto è al 20% o a un valore minore. È \ possibile passare il puntatore sull''icona del progetto per una spiegazione \ - più dettagliata. -health-21to40=La salute del progetto è a un valore maggiore del 20% e minore \ - o uguale al 40%. È possibile passare il puntatore sull''icona del progetto \ - per una spiegazione più dettagliata. -health-41to60=La salute del progetto è a un valore maggiore del 40% e minore \ - o uguale al 60%. È possibile passare il puntatore sull''icona del progetto \ - per una spiegazione più dettagliata. -health-61to80=La salute del progetto è a un valore maggiore del 60% e minore \ - o uguale all''80%. È possibile passare il puntatore sull''icona del \ - progetto per una spiegazione più dettagliata. -health-81plus=La salute del progetto è a un valore maggiore dell''80%. È \ + più dettagliata. +health-21to40=La salute del progetto è a un valore maggiore del 20% e minore \ + o uguale al 40%. È possibile passare il puntatore sull''icona del progetto \ + per una spiegazione più dettagliata. +health-41to60=La salute del progetto è a un valore maggiore del 40% e minore \ + o uguale al 60%. È possibile passare il puntatore sull''icona del progetto \ + per una spiegazione più dettagliata. +health-61to80=La salute del progetto è a un valore maggiore del 60% e minore \ + o uguale all''80%. È possibile passare il puntatore sull''icona del \ + progetto per una spiegazione più dettagliata. +health-81plus=La salute del progetto è a un valore maggiore dell''80%. È \ possibile passare il puntatore sull''icona del progetto per una spiegazione \ - più dettagliata. -lightgrey=Il progetto non è mai stato compilato. -lightgrey_anime=La prima compilazione è in corso. -red=L''ultima compilazione non è riuscita. -red_anime=L''ultima compilazione non è riuscita. È in corso una nuova \ + più dettagliata. +lightgrey=Il progetto non è mai stato compilato. +lightgrey_anime=La prima compilazione è in corso. +red=L''ultima compilazione non è riuscita. +red_anime=L''ultima compilazione non è riuscita. È in corso una nuova \ compilazione. -yellow=L''ultima compilazione è stata completata con successo ma non è \ - stabile. Tale stato è utilizzato principalmente per rappresentare test non \ +yellow=L''ultima compilazione è stata completata con successo ma non è \ + stabile. Tale stato è utilizzato principalmente per rappresentare test non \ riusciti. -yellow_anime=L''ultima compilazione è stata completata con successo ma non è \ - stabile. È in corso una nuova compilazione. +yellow_anime=L''ultima compilazione è stata completata con successo ma non è \ + stabile. È in corso una nuova compilazione. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_ja.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_ja.properties index 3f5cd3258233..da1f5828f8e1 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_ja.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_ja.properties @@ -20,17 +20,17 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -grey=\u30D3\u30EB\u30C9\u304C1\u5EA6\u3082\u5B9F\u884C\u3055\u308C\u3066\u3044\u306A\u3044\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u3001\u3082\u3057\u304F\u306F\u7121\u52B9\u5316\u3055\u308C\u305F\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u3002 -grey_anime=\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u306E\u521D\u3081\u3066\u306E\u30D3\u30EB\u30C9\u3092\u5B9F\u884C\u4E2D\u3002 -blue=\u6700\u65B0\u306E\u30D3\u30EB\u30C9\u304C\u6210\u529F\u3002 -blue_anime=\u6700\u65B0\u306E\u30D3\u30EB\u30C9\u304C\u6210\u529F\u3057\u3001\u65B0\u898F\u306E\u30D3\u30EB\u30C9\u3092\u5B9F\u884C\u4E2D\u3002 -yellow=\u6700\u65B0\u306E\u30D3\u30EB\u30C9\u304C\u6210\u529F\u3057\u305F\u304C\u4E0D\u5B89\u5B9A\u3002\ - \u3053\u308C\u306F\u3001\u4E3B\u306B\u30C6\u30B9\u30C8\u306E\u5931\u6557\u3092\u610F\u5473\u3057\u307E\u3059\u3002 -yellow_anime=\u6700\u65B0\u306E\u30D3\u30EB\u30C9\u306F\u6210\u529F\u3057\u305F\u304C\u4E0D\u5B89\u5B9A\u3002\u65B0\u898F\u306E\u30D3\u30EB\u30C9\u3092\u5B9F\u884C\u4E2D\u3002 -red=\u6700\u65B0\u306E\u30D3\u30EB\u30C9\u304C\u5931\u6557\u3002 -red_anime=\u6700\u65B0\u306E\u30D3\u30EB\u30C9\u304C\u5931\u6557\u3002\u65B0\u898F\u306E\u30D3\u30EB\u30C9\u3092\u5B9F\u884C\u4E2D\u3002 -health-81plus=\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u306E\u72B6\u614B\u304C81%\u4EE5\u4E0A\u3002\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u306E\u30A2\u30A4\u30B3\u30F3\u306E\u4E0A\u306B\u30DE\u30A6\u30B9\u3092\u304B\u3056\u3059\u3068\u3001\u8A73\u7D30\u306A\u8AAC\u660E\u304C\u8868\u793A\u3055\u308C\u307E\u3059\u3002 -health-61to80=\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u306E\u72B6\u614B\u304C61%\u4EE5\u4E0A\u300180%\u4EE5\u4E0B\u3002\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u306E\u30A2\u30A4\u30B3\u30F3\u306E\u4E0A\u306B\u30DE\u30A6\u30B9\u3092\u304B\u3056\u3059\u3068\u3001\u8A73\u7D30\u306A\u8AAC\u660E\u304C\u8868\u793A\u3055\u308C\u307E\u3059\u3002 -health-41to60=\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u306E\u72B6\u614B\u304C41%\u4EE5\u4E0A\u300160%\u4EE5\u4E0B\u3002\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u306E\u30A2\u30A4\u30B3\u30F3\u306E\u4E0A\u306B\u30DE\u30A6\u30B9\u3092\u304B\u3056\u3059\u3068\u3001\u8A73\u7D30\u306A\u8AAC\u660E\u304C\u8868\u793A\u3055\u308C\u307E\u3059\u3002 -health-21to40=\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u306E\u72B6\u614B\u304C21%\u4EE5\u4E0A\u300140%\u4EE5\u4E0B\u3002\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u306E\u30A2\u30A4\u30B3\u30F3\u306E\u4E0A\u306B\u30DE\u30A6\u30B9\u3092\u304B\u3056\u3059\u3068\u3001\u8A73\u7D30\u306A\u8AAC\u660E\u304C\u8868\u793A\u3055\u308C\u307E\u3059\u3002 -health-00to20=\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u306E\u72B6\u614B\u304C20%\u672A\u6E80\u3002 \u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u306E\u30A2\u30A4\u30B3\u30F3\u306E\u4E0A\u306B\u30DE\u30A6\u30B9\u3092\u304B\u3056\u3059\u3068\u3001\u8A73\u7D30\u306A\u8AAC\u660E\u304C\u8868\u793A\u3055\u308C\u307E\u3059\u3002 +grey=ビルドãŒ1度も実行ã•ã‚Œã¦ã„ãªã„プロジェクトã€ã‚‚ã—ãã¯ç„¡åŠ¹åŒ–ã•ã‚ŒãŸãƒ—ロジェクト。 +grey_anime=プロジェクトã®åˆã‚ã¦ã®ãƒ“ルドを実行中。 +blue=最新ã®ãƒ“ルドãŒæˆåŠŸã€‚ +blue_anime=最新ã®ãƒ“ルドãŒæˆåŠŸã—ã€æ–°è¦ã®ãƒ“ルドを実行中。 +yellow=最新ã®ãƒ“ルドãŒæˆåŠŸã—ãŸãŒä¸å®‰å®šã€‚\ + ã“ã‚Œã¯ã€ä¸»ã«ãƒ†ã‚¹ãƒˆã®å¤±æ•—ã‚’æ„味ã—ã¾ã™ã€‚ +yellow_anime=最新ã®ãƒ“ルドã¯æˆåŠŸã—ãŸãŒä¸å®‰å®šã€‚æ–°è¦ã®ãƒ“ルドを実行中。 +red=最新ã®ãƒ“ルドãŒå¤±æ•—。 +red_anime=最新ã®ãƒ“ルドãŒå¤±æ•—。新è¦ã®ãƒ“ルドを実行中。 +health-81plus=プロジェクトã®çŠ¶æ…‹ãŒ81%以上。プロジェクトã®ã‚¢ã‚¤ã‚³ãƒ³ã®ä¸Šã«ãƒžã‚¦ã‚¹ã‚’ã‹ã–ã™ã¨ã€è©³ç´°ãªèª¬æ˜ŽãŒè¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ +health-61to80=プロジェクトã®çŠ¶æ…‹ãŒ61%以上ã€80%以下。プロジェクトã®ã‚¢ã‚¤ã‚³ãƒ³ã®ä¸Šã«ãƒžã‚¦ã‚¹ã‚’ã‹ã–ã™ã¨ã€è©³ç´°ãªèª¬æ˜ŽãŒè¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ +health-41to60=プロジェクトã®çŠ¶æ…‹ãŒ41%以上ã€60%以下。プロジェクトã®ã‚¢ã‚¤ã‚³ãƒ³ã®ä¸Šã«ãƒžã‚¦ã‚¹ã‚’ã‹ã–ã™ã¨ã€è©³ç´°ãªèª¬æ˜ŽãŒè¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ +health-21to40=プロジェクトã®çŠ¶æ…‹ãŒ21%以上ã€40%以下。プロジェクトã®ã‚¢ã‚¤ã‚³ãƒ³ã®ä¸Šã«ãƒžã‚¦ã‚¹ã‚’ã‹ã–ã™ã¨ã€è©³ç´°ãªèª¬æ˜ŽãŒè¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ +health-00to20=プロジェクトã®çŠ¶æ…‹ãŒ20%未満。 プロジェクトã®ã‚¢ã‚¤ã‚³ãƒ³ã®ä¸Šã«ãƒžã‚¦ã‚¹ã‚’ã‹ã–ã™ã¨ã€è©³ç´°ãªèª¬æ˜ŽãŒè¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_ko.properties index 0e629cbd23ab..77f022a215f5 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_ko.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_ko.properties @@ -20,20 +20,20 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -lightgrey=\uD504\uB85C\uC81D\uD2B8\uAC00 \uBE4C\uB4DC\uB41C \uC801\uC774 \uC5C6\uC2B5\uB2C8\uB2E4. -lightgrey_anime=\uD504\uB85C\uC81D\uD2B8\uC758 \uCD5C\uCD08 \uBE4C\uB4DC\uAC00 \uC9C4\uD589 \uC911\uC785\uB2C8\uB2E4. -grey=\uD504\uB85C\uC81D\uD2B8\uAC00 \uBE4C\uB4DC\uB41C \uC801\uC774 \uC5C6\uAC70\uB098, \uBE44\uD65C\uC131 \uC0C1\uD0DC\uC785\uB2C8\uB2E4. -grey_anime=\uD504\uB85C\uC81D\uD2B8\uC758 \uCD5C\uCD08 \uBE4C\uB4DC\uAC00 \uC9C4\uD589 \uC911\uC785\uB2C8\uB2E4. -darkgrey=\uB9C8\uC9C0\uB9C9 \uBE4C\uB4DC\uAC00 \uCDE8\uC18C\uB418\uC5C8\uC2B5\uB2C8\uB2E4. -darkgrey_anime=\uB9C8\uC9C0\uB9C9 \uBE4C\uB4DC\uAC00 \uCDE8\uC18C\uB418\uC5C8\uC2B5\uB2C8\uB2E4. \uC0C8\uB85C\uC6B4 \uBE4C\uB4DC\uAC00 \uC9C4\uD589 \uC911\uC785\uB2C8\uB2E4. -blue=\uB9C8\uC9C0\uB9C9 \uBE4C\uB4DC\uAC00 \uC131\uACF5\uD588\uC2B5\uB2C8\uB2E4. -blue_anime=\uB9C8\uC9C0\uB9C9 \uBE4C\uB4DC\uAC00 \uC131\uACF5\uD588\uC2B5\uB2C8\uB2E4. \uC0C8\uB85C\uC6B4 \uBE4C\uB4DC\uAC00 \uC9C4\uD589 \uC911\uC785\uB2C8\uB2E4. -yellow=\uB9C8\uC9C0\uB9C9 \uBE4C\uB4DC\uAC00 \uC131\uACF5\uD588\uC9C0\uB9CC \uBD88\uC548\uC815\uD569\uB2C8\uB2E4. \uC774\uAC83\uC740 \uC8FC\uB85C \uD14C\uC2A4\uD2B8 \uC2E4\uD328\uB97C \uB098\uD0C0\uB0B4\uB294 \uB370 \uC0AC\uC6A9\uB429\uB2C8\uB2E4. -yellow_anime=\uB9C8\uC9C0\uB9C9 \uBE4C\uB4DC\uAC00 \uC131\uACF5\uD588\uC9C0\uB9CC \uBD88\uC548\uC815\uD569\uB2C8\uB2E4. \uC0C8\uB85C\uC6B4 \uBE4C\uB4DC\uAC00 \uC9C4\uD589 \uC911\uC785\uB2C8\uB2E4. -red=\uB9C8\uC9C0\uB9C9 \uBE4C\uB4DC\uAC00 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4. -red_anime=\uB9C8\uC9C0\uB9C9 \uBE4C\uB4DC\uAC00 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4. \uC0C8\uB85C\uC6B4 \uBE4C\uB4DC\uAC00 \uC9C4\uD589 \uC911\uC785\uB2C8\uB2E4. -health-81plus=\uD504\uB85C\uC81D\uD2B8 \uAC74\uAC15\uC0C1\uD0DC\uAC00 80% \uCD08\uACFC\uC785\uB2C8\uB2E4. \uB9C8\uC6B0\uC2A4\uB97C \uD504\uB85C\uC81D\uD2B8 \uC544\uC774\uCF58\uC5D0 \uC62C\uB824\uB193\uC73C\uBA74 \uB354 \uC790\uC138\uD55C \uC124\uBA85\uC744 \uBCFC \uC218 \uC788\uC2B5\uB2C8\uB2E4. -health-61to80=\uD504\uB85C\uC81D\uD2B8 \uAC74\uAC15\uC0C1\uD0DC\uAC00 60% \uCD08\uACFC 80% \uC774\uD558\uC785\uB2C8\uB2E4. \uB9C8\uC6B0\uC2A4\uB97C \uD504\uB85C\uC81D\uD2B8 \uC544\uC774\uCF58\uC5D0 \uC62C\uB824\uB193\uC73C\uBA74 \uB354 \uC790\uC138\uD55C \uC124\uBA85\uC744 \uBCFC \uC218 \uC788\uC2B5\uB2C8\uB2E4. -health-41to60=\uD504\uB85C\uC81D\uD2B8 \uAC74\uAC15\uC0C1\uD0DC\uAC00 40% \uCD08\uACFC 60% \uC774\uD558\uC785\uB2C8\uB2E4. \uB9C8\uC6B0\uC2A4\uB97C \uD504\uB85C\uC81D\uD2B8 \uC544\uC774\uCF58\uC5D0 \uC62C\uB824\uB193\uC73C\uBA74 \uB354 \uC790\uC138\uD55C \uC124\uBA85\uC744 \uBCFC \uC218 \uC788\uC2B5\uB2C8\uB2E4. -health-21to40=\uD504\uB85C\uC81D\uD2B8 \uAC74\uAC15\uC0C1\uD0DC\uAC00 20% \uCD08\uACFC 40% \uC774\uD558\uC785\uB2C8\uB2E4. \uB9C8\uC6B0\uC2A4\uB97C \uD504\uB85C\uC81D\uD2B8 \uC544\uC774\uCF58\uC5D0 \uC62C\uB824\uB193\uC73C\uBA74 \uB354 \uC790\uC138\uD55C \uC124\uBA85\uC744 \uBCFC \uC218 \uC788\uC2B5\uB2C8\uB2E4. -health-00to20=\uD504\uB85C\uC81D\uD2B8 \uAC74\uAC15\uC0C1\uD0DC\uAC00 20% \uC774\uD558\uC785\uB2C8\uB2E4. \uB9C8\uC6B0\uC2A4\uB97C \uD504\uB85C\uC81D\uD2B8 \uC544\uC774\uCF58\uC5D0 \uC62C\uB824\uB193\uC73C\uBA74 \uB354 \uC790\uC138\uD55C \uC124\uBA85\uC744 \uBCFC \uC218 \uC788\uC2B5\uB2C8\uB2E4. +lightgrey=프로ì íŠ¸ê°€ ë¹Œë“œëœ ì ì´ 없습니다. +lightgrey_anime=프로ì íŠ¸ì˜ 최초 빌드가 진행 중입니다. +grey=프로ì íŠ¸ê°€ ë¹Œë“œëœ ì ì´ 없거나, 비활성 ìƒíƒœìž…니다. +grey_anime=프로ì íŠ¸ì˜ 최초 빌드가 진행 중입니다. +darkgrey=마지막 빌드가 취소ë˜ì—ˆìŠµë‹ˆë‹¤. +darkgrey_anime=마지막 빌드가 취소ë˜ì—ˆìŠµë‹ˆë‹¤. 새로운 빌드가 진행 중입니다. +blue=마지막 빌드가 성공했습니다. +blue_anime=마지막 빌드가 성공했습니다. 새로운 빌드가 진행 중입니다. +yellow=마지막 빌드가 성공했지만 불안정합니다. ì´ê²ƒì€ 주로 테스트 실패를 나타내는 ë° ì‚¬ìš©ë©ë‹ˆë‹¤. +yellow_anime=마지막 빌드가 성공했지만 불안정합니다. 새로운 빌드가 진행 중입니다. +red=마지막 빌드가 실패했습니다. +red_anime=마지막 빌드가 실패했습니다. 새로운 빌드가 진행 중입니다. +health-81plus=프로ì íŠ¸ ê±´ê°•ìƒíƒœê°€ 80% 초과입니다. 마우스를 프로ì íŠ¸ ì•„ì´ì½˜ì— 올려놓으면 ë” ìžì„¸í•œ ì„¤ëª…ì„ ë³¼ 수 있습니다. +health-61to80=프로ì íŠ¸ ê±´ê°•ìƒíƒœê°€ 60% 초과 80% ì´í•˜ìž…니다. 마우스를 프로ì íŠ¸ ì•„ì´ì½˜ì— 올려놓으면 ë” ìžì„¸í•œ ì„¤ëª…ì„ ë³¼ 수 있습니다. +health-41to60=프로ì íŠ¸ ê±´ê°•ìƒíƒœê°€ 40% 초과 60% ì´í•˜ìž…니다. 마우스를 프로ì íŠ¸ ì•„ì´ì½˜ì— 올려놓으면 ë” ìžì„¸í•œ ì„¤ëª…ì„ ë³¼ 수 있습니다. +health-21to40=프로ì íŠ¸ ê±´ê°•ìƒíƒœê°€ 20% 초과 40% ì´í•˜ìž…니다. 마우스를 프로ì íŠ¸ ì•„ì´ì½˜ì— 올려놓으면 ë” ìžì„¸í•œ ì„¤ëª…ì„ ë³¼ 수 있습니다. +health-00to20=프로ì íŠ¸ ê±´ê°•ìƒíƒœê°€ 20% ì´í•˜ìž…니다. 마우스를 프로ì íŠ¸ ì•„ì´ì½˜ì— 올려놓으면 ë” ìžì„¸í•œ ì„¤ëª…ì„ ë³¼ 수 있습니다. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_lt.properties index 6321019b9736..516bec0d9b4a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_lt.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_lt.properties @@ -1,14 +1,14 @@ -grey=Projektas dar nebuvo vykdomas, arba jis i\u0161jungtas. +grey=Projektas dar nebuvo vykdomas, arba jis iÅ¡jungtas. grey_anime=Vyksta pirmas darbo vykdymas. -blue=Paskutinis vykdymas buvo s\u0117kmingas. -blue_anime=Paskutinis vykdymas buvo s\u0117kmingas. Vyksta naujas vykdymas. -yellow=Paskutinis vykdymas buvo s\u0117kmingas, bet nestabilus.\ +blue=Paskutinis vykdymas buvo sÄ—kmingas. +blue_anime=Paskutinis vykdymas buvo sÄ—kmingas. Vyksta naujas vykdymas. +yellow=Paskutinis vykdymas buvo sÄ—kmingas, bet nestabilus.\ Tai pagrinde naudojama parodyti, kad nepavyko testai. -yellow_anime=Paskutinis vykdymas buvo s\u0117kmingas, bet nestabilus. Vyksta naujas vykdymas. -red=Paskutinis vykdymas visi\u0161kai nepavyko. -red_anime=Paskutinis vykdymas visi\u0161kai nepavyko. Vyksta naujas vykdymas. -health-81plus=Projekto sveikata vir\u0161 80%. Galite u\u017evesti pel\u0119 vir\u0161 projekto piktogramos detalesniam paai\u0161kinimui. -health-61to80=Projekto sveikata vir\u0161 60% ir \u017eemiau 80%. Galite u\u017evesti pel\u0119 vir\u0161 projekto piktogramos detalesniam paai\u0161kinimui. -health-41to60=Projekto sveikata vir\u0161 40% ir \u017eemiau 60%. Galite u\u017evesti pel\u0119 vir\u0161 projekto piktogramos detalesniam paai\u0161kinimui. -health-21to40=Projekto sveikata vir\u0161 20% ir \u017eemiau 40%. Galite u\u017evesti pel\u0119 vir\u0161 projekto piktogramos detalesniam paai\u0161kinimui. -health-00to20=Projekto sveikata \u017eemiau 20%. Galite u\u017evesti pel\u0119 vir\u0161 projekto piktogramos detalesniam paai\u0161kinimui. +yellow_anime=Paskutinis vykdymas buvo sÄ—kmingas, bet nestabilus. Vyksta naujas vykdymas. +red=Paskutinis vykdymas visiÅ¡kai nepavyko. +red_anime=Paskutinis vykdymas visiÅ¡kai nepavyko. Vyksta naujas vykdymas. +health-81plus=Projekto sveikata virÅ¡ 80%. Galite užvesti pelÄ™ virÅ¡ projekto piktogramos detalesniam paaiÅ¡kinimui. +health-61to80=Projekto sveikata virÅ¡ 60% ir žemiau 80%. Galite užvesti pelÄ™ virÅ¡ projekto piktogramos detalesniam paaiÅ¡kinimui. +health-41to60=Projekto sveikata virÅ¡ 40% ir žemiau 60%. Galite užvesti pelÄ™ virÅ¡ projekto piktogramos detalesniam paaiÅ¡kinimui. +health-21to40=Projekto sveikata virÅ¡ 20% ir žemiau 40%. Galite užvesti pelÄ™ virÅ¡ projekto piktogramos detalesniam paaiÅ¡kinimui. +health-00to20=Projekto sveikata žemiau 20%. Galite užvesti pelÄ™ virÅ¡ projekto piktogramos detalesniam paaiÅ¡kinimui. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_lv.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_lv.properties index 83674d28b6db..01623e2444d3 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_lv.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_lv.properties @@ -1,15 +1,15 @@ # This file is under the MIT License by authors -blue=P\u0113d\u0113jais b\u016Bv\u0113jums bija veiksm\u012Bgs. -blue_anime=P\u0113d\u0113jais b\u016Bv\u0113jums bija veiksm\u012Bgs. Notiek jauns b\u016Bv\u0113jums. -grey=Projekts v\u0113l nav bijis uzb\u016Bv\u0113ts vai ar\u012B projekts nav aktiviz\u0113ts. -grey_anime=Notiek pirmais projekta b\u016Bv\u0113jums. -health-00to20=Projekta vesel\u012Bba ir 20% vai maz\u0101k. J\u016Bs varat g\u016Bt detaliz\u0113t\u0101ku izskaidrojumu uzvelkot peles kursoru virs projekta ikonas. -health-21to40=Projekta vesel\u012Bba ir starp 20% un 40%. J\u016Bs varat g\u016Bt detaliz\u0113t\u0101ku izskaidrojumu uzvelkot peles kursoru virs projekta ikonas. -health-41to60=Projekta vesel\u012Bba ir starp 40% un 60%. J\u016Bs varat g\u016Bt detaliz\u0113t\u0101ku izskaidrojumu uzvelkot peles kursoru virs projekta ikonas. -health-61to80=Projekta vesel\u012Bba ir starp 60% un 80%. J\u016Bs varat g\u016Bt detaliz\u0113t\u0101ku izskaidrojumu uzvelkot peles kursoru virs projekta ikonas. -health-81plus=Projekta vesel\u012Bba ir virs 80%. J\u016Bs varat g\u016Bt detaliz\u0113t\u0101ku izskaidrojumu uzvelkot peles kursoru virs projekta ikonas. -red=P\u0113d\u0113jais b\u016Bv\u0113jums piln\u012Bgi izg\u0101zies. -red_anime=P\u0113d\u0113jais b\u016Bv\u0113jums piln\u012Bgi izg\u0101zies. Notiek jauns b\u016Bv\u0113jums. -yellow=P\u0113d\u0113jais b\u016Bv\u0113jums bija veiksm\u012Bgs, bet nestabils. T\u0101 bie\u017E\u0101k tiek apz\u012Bm\u0113tas k\u013C\u016Bdas testos. -yellow_anime=P\u0113d\u0113jais b\u016Bv\u0113jums bija veiksm\u012Bgs, bet nestabils. Notiek jauns b\u016Bv\u0113jums. +blue=PÄ“dÄ“jais bÅ«vÄ“jums bija veiksmÄ«gs. +blue_anime=PÄ“dÄ“jais bÅ«vÄ“jums bija veiksmÄ«gs. Notiek jauns bÅ«vÄ“jums. +grey=Projekts vÄ“l nav bijis uzbÅ«vÄ“ts vai arÄ« projekts nav aktivizÄ“ts. +grey_anime=Notiek pirmais projekta bÅ«vÄ“jums. +health-00to20=Projekta veselÄ«ba ir 20% vai mazÄk. JÅ«s varat gÅ«t detalizÄ“tÄku izskaidrojumu uzvelkot peles kursoru virs projekta ikonas. +health-21to40=Projekta veselÄ«ba ir starp 20% un 40%. JÅ«s varat gÅ«t detalizÄ“tÄku izskaidrojumu uzvelkot peles kursoru virs projekta ikonas. +health-41to60=Projekta veselÄ«ba ir starp 40% un 60%. JÅ«s varat gÅ«t detalizÄ“tÄku izskaidrojumu uzvelkot peles kursoru virs projekta ikonas. +health-61to80=Projekta veselÄ«ba ir starp 60% un 80%. JÅ«s varat gÅ«t detalizÄ“tÄku izskaidrojumu uzvelkot peles kursoru virs projekta ikonas. +health-81plus=Projekta veselÄ«ba ir virs 80%. JÅ«s varat gÅ«t detalizÄ“tÄku izskaidrojumu uzvelkot peles kursoru virs projekta ikonas. +red=PÄ“dÄ“jais bÅ«vÄ“jums pilnÄ«gi izgÄzies. +red_anime=PÄ“dÄ“jais bÅ«vÄ“jums pilnÄ«gi izgÄzies. Notiek jauns bÅ«vÄ“jums. +yellow=PÄ“dÄ“jais bÅ«vÄ“jums bija veiksmÄ«gs, bet nestabils. TÄ biežÄk tiek apzÄ«mÄ“tas kļūdas testos. +yellow_anime=PÄ“dÄ“jais bÅ«vÄ“jums bija veiksmÄ«gs, bet nestabils. Notiek jauns bÅ«vÄ“jums. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_nb_NO.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_nb_NO.properties index 7690c5319766..6f35e26b09af 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_nb_NO.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_nb_NO.properties @@ -2,8 +2,8 @@ blue=Siste bygging av prosjektet var en suksess. blue_anime=Siste bygging av prosjektet var en suksess. Et nytt bygg er i gang. -grey=Prosjektet er enten deaktivert eller har ikke blitt bygget f\u00F8r. -grey_anime=F\u00F8rstegangsbygging av prosjektet er i gang. +grey=Prosjektet er enten deaktivert eller har ikke blitt bygget før. +grey_anime=Førstegangsbygging av prosjektet er i gang. health-00to20=Prosjektets helsestatus er under 20%. Du kan holde musen over prosjektikonet for en mer detaljert forklaring. health-21to40=Prosjektets helsestatus er over 20% og opp til 40%. Du kan holde musen over prosjektikonet for en mer detaljert forklaring. health-41to60=Prosjektets helsestatus er over 40% og opp til 60%. Du kan holde musen over prosjektikonet for en mer detaljert forklaring. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_pl.properties index ebabe62edc19..33f5533ff851 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_pl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_pl.properties @@ -19,20 +19,20 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -grey=Projekt jest wy\u0142\u0105czony. -grey_anime=Projekt jest wy\u0142\u0105czony, ale trwa pierwsze jego zadanie. -darkgrey=Zadanie zosta\u0142o przerwane. -darkgrey_anime=Ostatnie zadanie zosta\u0142o przerwane. Nowe zadanie trwa. -lightgrey=Projekt nie by\u0142 nigdy zbudowany. +grey=Projekt jest wyÅ‚Ä…czony. +grey_anime=Projekt jest wyÅ‚Ä…czony, ale trwa pierwsze jego zadanie. +darkgrey=Zadanie zostaÅ‚o przerwane. +darkgrey_anime=Ostatnie zadanie zostaÅ‚o przerwane. Nowe zadanie trwa. +lightgrey=Projekt nie byÅ‚ nigdy zbudowany. lightgrey_anime=Pierwsze zadanie jest w trakcie. -blue=Ostatnie zadanie projektu zako\u0144czy\u0142o si\u0119 pomy\u015Blnie. -blue_anime=Ostatnie zadanie projektu zako\u0144czy\u0142o si\u0119 pomy\u015Blnie. Nowa wersja jest w trakcie budowy. -red=Ostatnie budowanie projektu nie powiod\u0142o si\u0119. -red_anime=Ostatnie zadanie projektu nie powiod\u0142o si\u0119. Nowa wersja jest w trakcie budowy. -yellow=Ostatnie zadanie projektu zako\u0144czy\u0142o si\u0119 pomy\u015Blnie, lecz wersja jest niestabilna. To oznaczenie stosowane jest dla projekt\u00F3w, w kt\u00F3rych testy zako\u0144czy\u0142y si\u0119 niepowodzeniem. -yellow_anime=Ostatnie zadanie projektu zako\u0144czy\u0142o si\u0119 pomy\u015Blnie, lecz wersja jest niestabilna. Nowa wersja jest w trakcie budowy. -health-81plus=Zadanie zako\u0144czone pomy\u015Blnie w ponad 80 procent przypadk\u00F3w. Przesu\u0144 myszk\u0119 nad ikon\u0119 projektu, aby sprawdzi\u0107 szczeg\u00F3\u0142y. -health-61to80=Zadanie zako\u0144czone pomy\u015Blnie pomi\u0119dzy 60 a 80 procent przypadk\u00F3w. Przesu\u0144 myszk\u0119 nad ikon\u0119 projektu, aby sprawdzi\u0107 szczeg\u00F3\u0142y. -health-41to60=Zadanie zako\u0144czone pomy\u015Blnie pomi\u0119dzy 40 a 60 procent przypadk\u00F3w. Przesu\u0144 myszk\u0119 nad ikon\u0119 projektu, aby sprawdzi\u0107 szczeg\u00F3\u0142y. -health-21to40=Zadanie zako\u0144czone pomy\u015Blnie pomi\u0119dzy 20 a 40 procent przypadk\u00F3w. Przesu\u0144 myszk\u0119 nad ikon\u0119 projektu, aby sprawdzi\u0107 szczeg\u00F3\u0142y. -health-00to20=Zadanie zako\u0144czone pomy\u015Blnie w poni\u017Cej 20 procent przypadk\u00F3w. Przesu\u0144 myszk\u0119 nad ikon\u0119 projektu, aby sprawdzi\u0107 szczeg\u00F3\u0142y. +blue=Ostatnie zadanie projektu zakoÅ„czyÅ‚o siÄ™ pomyÅ›lnie. +blue_anime=Ostatnie zadanie projektu zakoÅ„czyÅ‚o siÄ™ pomyÅ›lnie. Nowa wersja jest w trakcie budowy. +red=Ostatnie budowanie projektu nie powiodÅ‚o siÄ™. +red_anime=Ostatnie zadanie projektu nie powiodÅ‚o siÄ™. Nowa wersja jest w trakcie budowy. +yellow=Ostatnie zadanie projektu zakoÅ„czyÅ‚o siÄ™ pomyÅ›lnie, lecz wersja jest niestabilna. To oznaczenie stosowane jest dla projektów, w których testy zakoÅ„czyÅ‚y siÄ™ niepowodzeniem. +yellow_anime=Ostatnie zadanie projektu zakoÅ„czyÅ‚o siÄ™ pomyÅ›lnie, lecz wersja jest niestabilna. Nowa wersja jest w trakcie budowy. +health-81plus=Zadanie zakoÅ„czone pomyÅ›lnie w ponad 80 procent przypadków. PrzesuÅ„ myszkÄ™ nad ikonÄ™ projektu, aby sprawdzić szczegóły. +health-61to80=Zadanie zakoÅ„czone pomyÅ›lnie pomiÄ™dzy 60 a 80 procent przypadków. PrzesuÅ„ myszkÄ™ nad ikonÄ™ projektu, aby sprawdzić szczegóły. +health-41to60=Zadanie zakoÅ„czone pomyÅ›lnie pomiÄ™dzy 40 a 60 procent przypadków. PrzesuÅ„ myszkÄ™ nad ikonÄ™ projektu, aby sprawdzić szczegóły. +health-21to40=Zadanie zakoÅ„czone pomyÅ›lnie pomiÄ™dzy 20 a 40 procent przypadków. PrzesuÅ„ myszkÄ™ nad ikonÄ™ projektu, aby sprawdzić szczegóły. +health-00to20=Zadanie zakoÅ„czone pomyÅ›lnie w poniżej 20 procent przypadków. PrzesuÅ„ myszkÄ™ nad ikonÄ™ projektu, aby sprawdzić szczegóły. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_pt_BR.properties index c029f98f97e2..7bc5aab46f80 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_pt_BR.properties @@ -20,21 +20,21 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -yellow_anime=A \u00FAltima constru\u00E7\u00E3o foi bem-sucedida, mas inst\u00E1vel. Uma nova constru\u00E7\u00E3o est\u00E1 em andamento. -health-21to40=A sa\u00FAde do seu projeto est\u00E1 entre 20% e 40%. Passe o mouse no \u00EDcone para mais detalhes. -health-41to60=A sa\u00FAde do projeto est\u00E1 entre 40% e 60%. Passe o mouse no \u00EDcone para mais detalhes. -red=A \u00FAltima constru\u00E7\u00E3o teve um erro fatal -grey=Este projeto nunca foi constru\u00EDdo antes ou est\u00E1 desabilitado. -health-61to80=A sa\u00FAde do projeto est\u00E1 entre 60% e 80%. Passe o mouse no \u00EDcone para mais detalhes. -yellow=A \u00FAltima constru\u00E7\u00E3o foi bem-sucedida, mas inst\u00E1vel. Isto \u00E9 primariamente utilizado para representar falhas nos \ +yellow_anime=A última construção foi bem-sucedida, mas instável. Uma nova construção está em andamento. +health-21to40=A saúde do seu projeto está entre 20% e 40%. Passe o mouse no ícone para mais detalhes. +health-41to60=A saúde do projeto está entre 40% e 60%. Passe o mouse no ícone para mais detalhes. +red=A última construção teve um erro fatal +grey=Este projeto nunca foi construído antes ou está desabilitado. +health-61to80=A saúde do projeto está entre 60% e 80%. Passe o mouse no ícone para mais detalhes. +yellow=A última construção foi bem-sucedida, mas instável. Isto é primariamente utilizado para representar falhas nos \ testes. -blue_anime=A \u00FAltima constru\u00E7\u00E3o foi bem-sucedida. Uma nova constru\u00E7\u00E3o est\u00E1 em andamento. -health-00to20=A sa\u00FAde do seu projeto est\u00E1 em 20% ou menos. Passe o mouse no \u00EDcone do projeto para mais detalhes. -grey_anime=A primeira constru\u00E7\u00E3o do projeto est\u00E1 em andamento. -blue=A \u00FAltima constru\u00E7\u00E3o foi bem-sucedida. -health-81plus=A sa\u00FAde do projeto foi maior que 80%. Passe o mouse no \u00EDcone para mais detalhes. -red_anime=A \u00FAltima constru\u00E7\u00E3o teve um erro fatal. Uma nova constru\u00E7\u00E3o est\u00E1 em andamento. -darkgrey=A \u00FAltima constru\u00E7\u00E3o foi abortada. -darkgrey_anime=A \u00FAltima constru\u00E7\u00E3o foi abortada. Uma nova constru\u00E7\u00E3o est\u00E1 em progresso. -lightgrey_anime=A primeira constru\u00E7\u00E3o est\u00E1 em progresso. -lightgrey=O projeto nunca foi constru\u00EDdo antes. +blue_anime=A última construção foi bem-sucedida. Uma nova construção está em andamento. +health-00to20=A saúde do seu projeto está em 20% ou menos. Passe o mouse no ícone do projeto para mais detalhes. +grey_anime=A primeira construção do projeto está em andamento. +blue=A última construção foi bem-sucedida. +health-81plus=A saúde do projeto foi maior que 80%. Passe o mouse no ícone para mais detalhes. +red_anime=A última construção teve um erro fatal. Uma nova construção está em andamento. +darkgrey=A última construção foi abortada. +darkgrey_anime=A última construção foi abortada. Uma nova construção está em progresso. +lightgrey_anime=A primeira construção está em progresso. +lightgrey=O projeto nunca foi construído antes. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_ru.properties index 7104163db56a..5499eda959e5 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_ru.properties @@ -20,16 +20,16 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blue=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u0431\u044B\u043B\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u043E\u0439. -blue_anime=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u0431\u044B\u043B\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u043E\u0439. \u041F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0438\u0442\u0441\u044F \u043D\u043E\u0432\u0430\u044F \u0441\u0431\u043E\u0440\u043A\u0430. -grey=\u041F\u0440\u043E\u0435\u043A\u0442 \u0435\u0449\u0451 \u043D\u0435 \u0440\u0430\u0437\u0443 \u043D\u0435 \u0441\u043E\u0431\u0438\u0440\u0430\u043B\u0441\u044F \u0438\u043B\u0438 \u043E\u0442\u043A\u043B\u044E\u0447\u0435\u043D. -grey_anime=\u041F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0438\u0442\u0441\u044F \u043F\u0435\u0440\u0432\u0430\u044F \u0441\u0431\u043E\u0440\u043A\u0430. -health-00to20=\u0417\u0434\u043E\u0440\u043E\u0432\u044C\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u043C\u0435\u043D\u0435\u0435 20%. \u041D\u0430\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0443\u0440\u0441\u043E\u0440 \u043D\u0430 \u0438\u043A\u043E\u043D\u043A\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0434\u043B\u044F \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043E\u0431\u044A\u044F\u0441\u043D\u0435\u043D\u0438\u044F. -health-21to40=\u0417\u0434\u043E\u0440\u043E\u0432\u044C\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u043E\u0442 20% \u0434\u043E 40%. \u041D\u0430\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0443\u0440\u0441\u043E\u0440 \u043D\u0430 \u0438\u043A\u043E\u043D\u043A\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0434\u043B\u044F \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043E\u0431\u044A\u044F\u0441\u043D\u0435\u043D\u0438\u044F. -health-41to60=\u0417\u0434\u043E\u0440\u043E\u0432\u044C\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u043E\u0442 40% \u0434\u043E 60%. \u041D\u0430\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0443\u0440\u0441\u043E\u0440 \u043D\u0430 \u0438\u043A\u043E\u043D\u043A\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0434\u043B\u044F \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043E\u0431\u044A\u044F\u0441\u043D\u0435\u043D\u0438\u044F. -health-61to80=\u0417\u0434\u043E\u0440\u043E\u0432\u044C\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u043B\u0435\u0436\u0438\u0442 \u0432 \u0434\u0438\u0430\u043F\u0430\u0437\u043E\u043D\u0435 \u043C\u0435\u0436\u0434\u0443 60% \u0438 80%.\u041D\u0430\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0443\u0440\u0441\u043E\u0440 \u043C\u044B\u0448\u0438 \u043D\u0430 \u0438\u043A\u043E\u043D\u043A\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0434\u043B\u044F \u0431\u043E\u043B\u0435\u0435 \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438. -health-81plus=\u0417\u0434\u043E\u0440\u043E\u0432\u044C\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0431\u043E\u043B\u0435\u0435 80%. \u041D\u0430\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0443\u0440\u0441\u043E\u0440 \u043D\u0430 \u0438\u043A\u043E\u043D\u043A\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0434\u043B\u044F \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043E\u0431\u044A\u044F\u0441\u043D\u0435\u043D\u0438\u044F. -red=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u043D\u0435 \u0443\u0434\u0430\u043B\u0430\u0441\u044C. -red_anime=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u043D\u0435 \u0443\u0434\u0430\u043B\u0430\u0441\u044C. \u041F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0438\u0442\u0441\u044F \u043D\u043E\u0432\u0430\u044F \u0441\u0431\u043E\u0440\u043A\u0430. -yellow=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u0431\u044B\u043B\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u043E\u0439, \u043D\u043E \u043D\u0435 \u0441\u0442\u0430\u0431\u0438\u043B\u044C\u043D\u043E\u0439. \u041F\u0440\u0435\u0436\u0434\u0435 \u0432\u0441\u0435\u0433\u043E \u044D\u0442\u043E \u0433\u043E\u0432\u043E\u0440\u0438\u0442 \u043E \u043D\u0435\u0443\u0434\u0430\u0447\u043D\u044B\u0445 \u0442\u0435\u0441\u0442\u0430\u0445. -yellow_anime=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u0431\u044B\u043B\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u043E\u0439, \u043D\u043E \u043D\u0435 \u0441\u0442\u0430\u0431\u0438\u043B\u044C\u043D\u043E\u0439. \u041F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0438\u0442\u0441\u044F \u043D\u043E\u0432\u0430\u044F \u0441\u0431\u043E\u0440\u043A\u0430. +blue=ПоÑледнÑÑ Ñборка была уÑпешной. +blue_anime=ПоÑледнÑÑ Ñборка была уÑпешной. ПроизводитÑÑ Ð½Ð¾Ð²Ð°Ñ Ñборка. +grey=Проект ещё не разу не ÑобиралÑÑ Ð¸Ð»Ð¸ отключен. +grey_anime=ПроизводитÑÑ Ð¿ÐµÑ€Ð²Ð°Ñ Ñборка. +health-00to20=Здоровье проекта менее 20%. Ðаведите курÑор на иконку проекта Ð´Ð»Ñ Ð´ÐµÑ‚Ð°Ð»ÑŒÐ½Ð¾Ð³Ð¾ объÑÑнениÑ. +health-21to40=Здоровье проекта от 20% до 40%. Ðаведите курÑор на иконку проекта Ð´Ð»Ñ Ð´ÐµÑ‚Ð°Ð»ÑŒÐ½Ð¾Ð³Ð¾ объÑÑнениÑ. +health-41to60=Здоровье проекта от 40% до 60%. Ðаведите курÑор на иконку проекта Ð´Ð»Ñ Ð´ÐµÑ‚Ð°Ð»ÑŒÐ½Ð¾Ð³Ð¾ объÑÑнениÑ. +health-61to80=Здоровье проекта лежит в диапазоне между 60% и 80%.Ðаведите курÑор мыши на иконку проекта Ð´Ð»Ñ Ð±Ð¾Ð»ÐµÐµ детальной информации. +health-81plus=Здоровье проекта более 80%. Ðаведите курÑор на иконку проекта Ð´Ð»Ñ Ð´ÐµÑ‚Ð°Ð»ÑŒÐ½Ð¾Ð³Ð¾ объÑÑнениÑ. +red=ПоÑледнÑÑ Ñборка не удалаÑÑŒ. +red_anime=ПоÑледнÑÑ Ñборка не удалаÑÑŒ. ПроизводитÑÑ Ð½Ð¾Ð²Ð°Ñ Ñборка. +yellow=ПоÑледнÑÑ Ñборка была уÑпешной, но не Ñтабильной. Прежде вÑего Ñто говорит о неудачных теÑтах. +yellow_anime=ПоÑледнÑÑ Ñборка была уÑпешной, но не Ñтабильной. ПроизводитÑÑ Ð½Ð¾Ð²Ð°Ñ Ñборка. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_sk.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_sk.properties index c430c961f813..8a7db65f1735 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_sk.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_sk.properties @@ -20,16 +20,16 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blue=Posledn\u00E9 zostavenie bolo \u00FAspe\u0161n\u00E9. -blue_anime=Posledn\u00E9 zostavenie bolo \u00FAspe\u0161n\u00E9. Nov\u00E9 zostavenie pr\u00E1ve prebieha. -grey=Projekt nebol nikdy predt\u00FDm zostaven\u00FD, alebo je projekt zak\u00E1zan\u00FD. -grey_anime=Prv\u00E9 zostavenie projektu prebieha. -health-00to20=Zdravie projektu je 20% alebo menej. Presunut\u00EDm my\u0161i nad ikonu projektu sa zobraz\u00ED podrobnej\u0161ie vysvetlenie. -health-21to40=Zdravie projektu je nad 20% a do 40%. Presunut\u00EDm my\u0161i nad ikonu projektu sa zobraz\u00ED podrobnej\u0161ie vysvetlenie. -health-41to60=Zdravie projektu je nad 40%. Presunut\u00EDm my\u0161i nad ikonu projektu sa zobraz\u00ED podrobnej\u0161ie vysvetlenie. -health-61to80=Zdravie projektu je nad 60%. Presunut\u00EDm my\u0161i nad ikonu projektu sa zobraz\u00ED podrobnej\u0161ie vysvetlenie. -health-81plus=Zdravie projektu je nad 80%. Presunut\u00EDm my\u0161i nad ikonu projektu sa zobraz\u00ED podrobnej\u0161ie vysvetlenie. -red=Posledn\u00E9 zostavenie zlyhalo. -red_anime=Posledn\u00E9 zostavenie zlyhalo. Nov\u00E9 zostavenie pr\u00E1ve prebieha. -yellow=Posledn\u00E9 zostavenie bolo \u00FAspe\u0161n\u00E9 ale nestabiln\u00E9. Oby\u010Dajne to znamen\u00E1 chybu v testoch. -yellow_anime=Posledn\u00E9 zostavenie bolo \u00FAspe\u0161n\u00E9 ale nestabiln\u00E9. Nov\u00E9 zostavenie pr\u00E1ve prebieha. +blue=Posledné zostavenie bolo úspeÅ¡né. +blue_anime=Posledné zostavenie bolo úspeÅ¡né. Nové zostavenie práve prebieha. +grey=Projekt nebol nikdy predtým zostavený, alebo je projekt zakázaný. +grey_anime=Prvé zostavenie projektu prebieha. +health-00to20=Zdravie projektu je 20% alebo menej. Presunutím myÅ¡i nad ikonu projektu sa zobrazí podrobnejÅ¡ie vysvetlenie. +health-21to40=Zdravie projektu je nad 20% a do 40%. Presunutím myÅ¡i nad ikonu projektu sa zobrazí podrobnejÅ¡ie vysvetlenie. +health-41to60=Zdravie projektu je nad 40%. Presunutím myÅ¡i nad ikonu projektu sa zobrazí podrobnejÅ¡ie vysvetlenie. +health-61to80=Zdravie projektu je nad 60%. Presunutím myÅ¡i nad ikonu projektu sa zobrazí podrobnejÅ¡ie vysvetlenie. +health-81plus=Zdravie projektu je nad 80%. Presunutím myÅ¡i nad ikonu projektu sa zobrazí podrobnejÅ¡ie vysvetlenie. +red=Posledné zostavenie zlyhalo. +red_anime=Posledné zostavenie zlyhalo. Nové zostavenie práve prebieha. +yellow=Posledné zostavenie bolo úspeÅ¡né ale nestabilné. ObyÄajne to znamená chybu v testoch. +yellow_anime=Posledné zostavenie bolo úspeÅ¡né ale nestabilné. Nové zostavenie práve prebieha. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_sl.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_sl.properties index 70468a3c43e8..66908bad6fac 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_sl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_sl.properties @@ -1,15 +1,15 @@ # This file is under the MIT License by authors -blue=Zadnji build je bil uspe\u0161en. -blue_anime=Zadnji build je bil uspe\u0161en. V teku je nov build. -grey=Projekt \u0161e nikoli ni bil buildan, ali pa je onemogo\u010Den. +blue=Zadnji build je bil uspeÅ¡en. +blue_anime=Zadnji build je bil uspeÅ¡en. V teku je nov build. +grey=Projekt Å¡e nikoli ni bil buildan, ali pa je onemogoÄen. grey_anime=V teku je prvi build. -health-00to20=Zdravje projekta je pod 20%. Za natan\u010Dnej\u0161o razlago pridr\u017Eite kazalec mi\u0161ke nad ikono projekta. -health-21to40=Zdravje projekta je med 20 in 40%. Za natan\u010Dnej\u0161o razlago pridr\u017Eite kazalec mi\u0161ke nad ikono projekta. -health-41to60=Zdravje projekta je med 40 in 60%. Za natan\u010Dnej\u0161o razlago pridr\u017Eite kazalec mi\u0161ke nad ikono projekta. -health-61to80=Zdravje projekta je med 60 in 80%. Za natan\u010Dnej\u0161o razlago pridr\u017Eite kazalec mi\u0161ke nad ikono projekta. -health-81plus=Zdravje projekta je prek 80%. Za natan\u010Dnej\u0161o razlago pridr\u017Eite kazalec mi\u0161ke nad ikono projekta. +health-00to20=Zdravje projekta je pod 20%. Za natanÄnejÅ¡o razlago pridržite kazalec miÅ¡ke nad ikono projekta. +health-21to40=Zdravje projekta je med 20 in 40%. Za natanÄnejÅ¡o razlago pridržite kazalec miÅ¡ke nad ikono projekta. +health-41to60=Zdravje projekta je med 40 in 60%. Za natanÄnejÅ¡o razlago pridržite kazalec miÅ¡ke nad ikono projekta. +health-61to80=Zdravje projekta je med 60 in 80%. Za natanÄnejÅ¡o razlago pridržite kazalec miÅ¡ke nad ikono projekta. +health-81plus=Zdravje projekta je prek 80%. Za natanÄnejÅ¡o razlago pridržite kazalec miÅ¡ke nad ikono projekta. red=Zadnji build ni uspel. red_anime=Zadnji build ni uspel. V teku je nov build. -yellow=Zadnji build je bil uspe\u0161en, a ni stabilen. To je namenjeno prikazu napak testov. -yellow_anime=Zadnji build je bil uspe\u0161en, a ni stabilen. V teku je nov build. +yellow=Zadnji build je bil uspeÅ¡en, a ni stabilen. To je namenjeno prikazu napak testov. +yellow_anime=Zadnji build je bil uspeÅ¡en, a ni stabilen. V teku je nov build. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_sr.properties index 3397c9f26a67..8f47ec3488b5 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_sr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_sr.properties @@ -1,20 +1,20 @@ # This file is under the MIT License by authors -grey=\u041F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 \u043D\u0438\u0458\u0435 \u043F\u0440\u0435 \u0431\u0438\u0458\u043E \u0438\u0437\u0433\u0440\u0430\u0452\u0435\u043D, \u0438\u043B\u0438 \u0458\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 \u043E\u043D\u0435\u043C\u043E\u0433\u0443\u045B\u0435\u043D. -grey_anime=\u041F\u0440\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u0443 \u0442\u043E\u043A\u0443 -blue=\u0417\u0430\u0434\u045A\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0458\u0435 \u0431\u0438\u043B\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u0430 -blue_anime=\u0417\u0430\u0434\u045A\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0458\u0435 \u0431\u0438\u043B\u0430 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0430. \u041D\u043E\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0458\u0435 \u0443 \u0442\u043E\u043A\u0443. -yellow=\u0417\u0430\u0434\u045A\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0458\u0435 \u0443\u0441\u043F\u0435\u0448\u043D\u0430 \u0430\u043B\u0438 \u043D\u0435\u0441\u0442\u0430\u0431\u0438\u043B\u043D\u0430. \u041D\u0430\u0458\u0447\u0435\u0448\u045B\u0435 \u0441\u0435 \u0442\u043E \u0434\u0435\u0448\u0430\u0432\u0430 \u0437\u0431\u043E\u0433 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0438\u043C\u0430 \u043F\u0440\u0438\u043B\u0438\u043A\u043E\u043C \u0442\u0435\u0441\u0442\u0438\u0440\u0430\u045A\u0430. -yellow_anime=\u0417\u0430\u0434\u045A\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0458\u0435 \u0443\u0441\u043F\u0435\u0448\u043D\u0430 \u0430\u043B\u0438 \u043D\u0435\u0441\u0442\u0430\u0431\u0438\u043B\u043D\u0430. \u041D\u043E\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0458\u0435 \u0443 \u0442\u043E\u043A\u0443. -red=\u0417\u0430\u0434\u045A\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0458\u0435 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0430. -red_anime=\u0417\u0430\u0434\u045A\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0458\u0435 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0430. \u041D\u043E\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0458\u0435 \u0443 \u0442\u043E\u043A\u0443. -health-81plus=\u0417\u0434\u0440\u0430\u0432\u0459\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u043F\u0440\u0435\u043A\u043E 80%. \u041F\u0440\u0438\u0432\u0443\u0446\u0438\u0442\u0435 \u043C\u0438\u0448 \u043F\u0440\u0435\u043A\u043E \u045A\u0435\u043D\u0435 \u0438\u043A\u043E\u043D\u0438\u0446\u0435 \u0437\u0430 \u0434\u0435\u0442\u0430\u0459\u043D\u0438\u0458\u0438 \u043E\u043F\u0438\u0441. -health-61to80=\u0417\u0434\u0440\u0430\u0432\u0459\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u0438\u0437\u043C\u0435\u0452\u0443 60 \u0438 80%. \u041F\u0440\u0438\u0432\u0443\u0446\u0438\u0442\u0435 \u043C\u0438\u0448 \u043F\u0440\u0435\u043A\u043E \u045A\u0435\u043D\u0435 \u0438\u043A\u043E\u043D\u0438\u0446\u0435 \u0437\u0430 \u0434\u0435\u0442\u0430\u0459\u043D\u0438\u0458\u0438 \u043E\u043F\u0438\u0441. -health-41to60=\u0417\u0434\u0440\u0430\u0432\u0459\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u0438\u0437\u043C\u0435\u0452\u0443 40 \u0438 60%. \u041F\u0440\u0438\u0432\u0443\u0446\u0438\u0442\u0435 \u043C\u0438\u0448 \u043F\u0440\u0435\u043A\u043E \u045A\u0435\u043D\u0435 \u0438\u043A\u043E\u043D\u0438\u0446\u0435 \u0437\u0430 \u0434\u0435\u0442\u0430\u0459\u043D\u0438\u0458\u0438 \u043E\u043F\u0438\u0441. -health-21to40=\u0417\u0434\u0440\u0430\u0432\u0459\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u0438\u0437\u043C\u0435\u0452\u0443 20 \u0438 40%. \u041F\u0440\u0438\u0432\u0443\u0446\u0438\u0442\u0435 \u043C\u0438\u0448 \u043F\u0440\u0435\u043A\u043E \u045A\u0435\u043D\u0435 \u0438\u043A\u043E\u043D\u0438\u0446\u0435 \u0437\u0430 \u0434\u0435\u0442\u0430\u0459\u043D\u0438\u0458\u0438 \u043E\u043F\u0438\u0441. -health-00to20=\u0417\u0434\u0440\u0430\u0432\u0459\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u0438\u0441\u043F\u043E\u0434 20%. \u041F\u0440\u0438\u0432\u0443\u0446\u0438\u0442\u0435 \u043C\u0438\u0448 \u043F\u0440\u0435\u043A\u043E \u045A\u0435\u043D\u0435 \u0438\u043A\u043E\u043D\u0438\u0446\u0435 \u0437\u0430 \u0434\u0435\u0442\u0430\u0459\u043D\u0438\u0458\u0438 \u043E\u043F\u0438\u0441. -health-00to19=\u0417\u0434\u0440\u0430\u0432\u0459\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u0438\u0437\u043C\u0435\u0452\u0443 0 \u0438 20%. \u041F\u0440\u0438\u0432\u0443\u0446\u0438\u0442\u0435 \u043C\u0438\u0448 \u043F\u0440\u0435\u043A\u043E \u045A\u0435\u043D\u0435 \u0438\u043A\u043E\u043D\u0438\u0446\u0435 \u0437\u0430 \u0434\u0435\u0442\u0430\u0459\u043D\u0438\u0458\u0438 \u043E\u043F\u0438\u0441. -health-20to39=\u0417\u0434\u0440\u0430\u0432\u0459\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u0438\u0437\u043C\u0435\u0452\u0443 20 \u0438 40%. \u041F\u0440\u0438\u0432\u0443\u0446\u0438\u0442\u0435 \u043C\u0438\u0448 \u043F\u0440\u0435\u043A\u043E \u045A\u0435\u043D\u0435 \u0438\u043A\u043E\u043D\u0438\u0446\u0435 \u0437\u0430 \u0434\u0435\u0442\u0430\u0459\u043D\u0438\u0458\u0438 \u043E\u043F\u0438\u0441. -health-40to59=\u0417\u0434\u0440\u0430\u0432\u0459\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u0438\u0437\u043C\u0435\u0452\u0443 40 \u0438 60%. \u041F\u0440\u0438\u0432\u0443\u0446\u0438\u0442\u0435 \u043C\u0438\u0448 \u043F\u0440\u0435\u043A\u043E \u045A\u0435\u043D\u0435 \u0438\u043A\u043E\u043D\u0438\u0446\u0435 \u0437\u0430 \u0434\u0435\u0442\u0430\u0459\u043D\u0438\u0458\u0438 \u043E\u043F\u0438\u0441. -health-60to79=\u0417\u0434\u0440\u0430\u0432\u0459\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u0438\u0437\u043C\u0435\u0452\u0443 60 \u0438 80%. \u041F\u0440\u0438\u0432\u0443\u0446\u0438\u0442\u0435 \u043C\u0438\u0448 \u043F\u0440\u0435\u043A\u043E \u045A\u0435\u043D\u0435 \u0438\u043A\u043E\u043D\u0438\u0446\u0435 \u0437\u0430 \u0434\u0435\u0442\u0430\u0459\u043D\u0438\u0458\u0438 \u043E\u043F\u0438\u0441. -health-80plus=\u0417\u0434\u0440\u0430\u0432\u0459\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u043F\u0440\u0435\u043A\u043E 80%. \u041F\u0440\u0438\u0432\u0443\u0446\u0438\u0442\u0435 \u043C\u0438\u0448 \u043F\u0440\u0435\u043A\u043E \u045A\u0435\u043D\u0435 \u0438\u043A\u043E\u043D\u0438\u0446\u0435 \u0437\u0430 \u0434\u0435\u0442\u0430\u0459\u043D\u0438\u0458\u0438 \u043E\u043F\u0438\u0441. +grey=Пројекат није пре бијо изграђен, или је пројекат онемогућен. +grey_anime=Прва изградња пројекта је у току +blue=Задња изградња је била уÑпешна +blue_anime=Задња изградња је била неуÑпешна. Ðова изградња је у току. +yellow=Задња изградња је уÑпешна али неÑтабилна. Ðајчешће Ñе то дешава због проблемима приликом теÑтирања. +yellow_anime=Задња изградња је уÑпешна али неÑтабилна. Ðова изградња је у току. +red=Задња изградња је неуÑпешна. +red_anime=Задња изградња је неуÑпешна. Ðова изградња је у току. +health-81plus=Здравље пројекта је преко 80%. Привуците миш преко њене иконице за детаљнији опиÑ. +health-61to80=Здравље пројекта је између 60 и 80%. Привуците миш преко њене иконице за детаљнији опиÑ. +health-41to60=Здравље пројекта је између 40 и 60%. Привуците миш преко њене иконице за детаљнији опиÑ. +health-21to40=Здравље пројекта је између 20 и 40%. Привуците миш преко њене иконице за детаљнији опиÑ. +health-00to20=Здравље пројекта је иÑпод 20%. Привуците миш преко њене иконице за детаљнији опиÑ. +health-00to19=Здравље пројекта је између 0 и 20%. Привуците миш преко њене иконице за детаљнији опиÑ. +health-20to39=Здравље пројекта је између 20 и 40%. Привуците миш преко њене иконице за детаљнији опиÑ. +health-40to59=Здравље пројекта је између 40 и 60%. Привуците миш преко њене иконице за детаљнији опиÑ. +health-60to79=Здравље пројекта је између 60 и 80%. Привуците миш преко њене иконице за детаљнији опиÑ. +health-80plus=Здравље пројекта је преко 80%. Привуците миш преко њене иконице за детаљнији опиÑ. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_zh_TW.properties index 5e5763b11975..9b40dc1d71b8 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_zh_TW.properties @@ -20,20 +20,20 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -grey=\u9019\u500b\u5c08\u6848\u5df2\u505c\u7528\u3002 -grey_anime=\u9019\u500b\u5c08\u6848\u5df2\u505c\u7528\uff0c\u4f46\u6b63\u5728\u9032\u884c\u5efa\u7f6e\u3002 -darkgrey=\u6700\u8fd1\u4e00\u6b21\u5efa\u7f6e\u5df2\u4e2d\u6b62\u3002 -darkgrey_anime=\u6700\u8fd1\u4e00\u6b21\u5efa\u7f6e\u5df2\u4e2d\u6b62\u3002\u6b63\u5728\u5efa\u7f6e\u65b0\u7248\u672c\u3002 -lightgrey=\u8a72\u5c08\u6848\u4e0d\u66fe\u5efa\u7f6e\u3002 -lightgrey_anime=\u6b63\u5728\u9032\u884c\u7b2c\u4e00\u6b21\u5efa\u7f6e\u3002 -blue=\u6700\u8fd1\u4e00\u6b21\u7684\u5efa\u7f6e\u662f\u6210\u529f\u7684\u3002 -blue_anime=\u6700\u8fd1\u4e00\u6b21\u7684\u5efa\u7f6e\u6210\u529f\u3002\u6b63\u5728\u5efa\u7f6e\u65b0\u7248\u672c\u3002 -yellow=\u6700\u8fd1\u4e00\u6b21\u7684\u5efa\u7f6e\u6210\u529f\uff0c\u4f46\u662f\u4e26\u4e0d\u7a69\u5b9a\u3002\u53ef\u80fd\u662f\u6709\u6e2c\u8a66\u6848\u4f8b\u6c92\u901a\u904e\u3002 -yellow_anime=\u6700\u8fd1\u4e00\u6b21\u7684\u5efa\u7f6e\u6210\u529f\u4f46\u4e0d\u7a69\u5b9a\u3002\u6b63\u5728\u5efa\u7f6e\u65b0\u7248\u672c\u3002 -red=\u6700\u8fd1\u4e00\u6b21\u5efa\u7f6e\u6158\u70c8\u7684\u5931\u6557\u4e86\u3002 -red_anime=\u6700\u8fd1\u4e00\u6b21\u7684\u5efa\u7f6e\u5931\u6557\u3002\u6b63\u5728\u5efa\u7f6e\u65b0\u7248\u672c\u3002 -health-81plus=\u5c08\u6848\u5065\u5eb7\u9ad8\u65bc 80%\u3002\u5c07\u6ed1\u9f20\u6e38\u6a19\u79fb\u5230\u5c08\u6848\u5716\u793a\u4e0a\uff0c\u53ef\u4ee5\u770b\u5230\u66f4\u8a73\u7d30\u7684\u89e3\u91cb\u3002 -health-61to80=\u5c08\u6848\u5065\u5eb7\u72c0\u6cc1\u4ecb\u65bc 60% \u5230 80% \u4e4b\u9593\u3002\u5c07\u6ed1\u9f20\u6e38\u6a19\u79fb\u5230\u5c08\u6848\u5716\u793a\u4e0a\uff0c\u53ef\u4ee5\u770b\u5230\u66f4\u8a73\u7d30\u7684\u89e3\u91cb\u3002 -health-41to60=\u5c08\u6848\u5065\u5eb7\u72c0\u6cc1\u4ecb\u65bc 40% \u5230 60% \u4e4b\u9593\u3002\u5c07\u6ed1\u9f20\u6e38\u6a19\u79fb\u5230\u5c08\u6848\u5716\u793a\u4e0a\uff0c\u53ef\u4ee5\u770b\u5230\u66f4\u8a73\u7d30\u7684\u89e3\u91cb\u3002 -health-21to40=\u5c08\u6848\u5065\u5eb7\u72c0\u6cc1\u4ecb\u65bc 20% \u5230 40% \u4e4b\u9593\u3002\u5c07\u6ed1\u9f20\u6e38\u6a19\u79fb\u5230\u5c08\u6848\u5716\u793a\u4e0a\uff0c\u53ef\u4ee5\u770b\u5230\u66f4\u8a73\u7d30\u7684\u89e3\u91cb\u3002 -health-00to20=\u5c08\u6848\u5065\u5eb7\u72c0\u6cc1\u4f4e\u65bc 20%\u3002\u5c07\u6ed1\u9f20\u6e38\u6a19\u79fb\u5230\u5c08\u6848\u5716\u793a\u4e0a\uff0c\u53ef\u4ee5\u770b\u5230\u66f4\u8a73\u7d30\u7684\u89e3\u91cb\u3002 +grey=這個專案已åœç”¨ã€‚ +grey_anime=這個專案已åœç”¨ï¼Œä½†æ­£åœ¨é€²è¡Œå»ºç½®ã€‚ +darkgrey=最近一次建置已中止。 +darkgrey_anime=最近一次建置已中止。正在建置新版本。 +lightgrey=該專案ä¸æ›¾å»ºç½®ã€‚ +lightgrey_anime=正在進行第一次建置。 +blue=最近一次的建置是æˆåŠŸçš„。 +blue_anime=最近一次的建置æˆåŠŸã€‚正在建置新版本。 +yellow=最近一次的建置æˆåŠŸï¼Œä½†æ˜¯ä¸¦ä¸ç©©å®šã€‚å¯èƒ½æ˜¯æœ‰æ¸¬è©¦æ¡ˆä¾‹æ²’通éŽã€‚ +yellow_anime=最近一次的建置æˆåŠŸä½†ä¸ç©©å®šã€‚正在建置新版本。 +red=最近一次建置慘烈的失敗了。 +red_anime=最近一次的建置失敗。正在建置新版本。 +health-81plus=專案å¥åº·é«˜æ–¼ 80%。將滑鼠游標移到專案圖示上,å¯ä»¥çœ‹åˆ°æ›´è©³ç´°çš„解釋。 +health-61to80=專案å¥åº·ç‹€æ³ä»‹æ–¼ 60% 到 80% 之間。將滑鼠游標移到專案圖示上,å¯ä»¥çœ‹åˆ°æ›´è©³ç´°çš„解釋。 +health-41to60=專案å¥åº·ç‹€æ³ä»‹æ–¼ 40% 到 60% 之間。將滑鼠游標移到專案圖示上,å¯ä»¥çœ‹åˆ°æ›´è©³ç´°çš„解釋。 +health-21to40=專案å¥åº·ç‹€æ³ä»‹æ–¼ 20% 到 40% 之間。將滑鼠游標移到專案圖示上,å¯ä»¥çœ‹åˆ°æ›´è©³ç´°çš„解釋。 +health-00to20=專案å¥åº·ç‹€æ³ä½Žæ–¼ 20%。將滑鼠游標移到專案圖示上,å¯ä»¥çœ‹åˆ°æ›´è©³ç´°çš„解釋。 diff --git a/core/src/main/resources/jenkins/model/Jenkins/load-statistics_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_bg.properties index 9d46fdd58162..85e2c4e1856e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/load-statistics_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Load\ Statistics=\ - \u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u043d\u0430 \u043d\u0430\u0442\u043e\u0432\u0430\u0440\u0432\u0430\u043d\u0435\u0442\u043e + СтатиÑтика на натоварването diff --git a/core/src/main/resources/jenkins/model/Jenkins/load-statistics_es.properties b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_es.properties index 88f03649df9d..41c9e6bdae15 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/load-statistics_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Load\ Statistics=Cargar estadísticas +Load\ Statistics=Cargar estadísticas diff --git a/core/src/main/resources/jenkins/model/Jenkins/load-statistics_it.properties b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_it.properties index cf1761a72565..55ec55b1868b 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/load-statistics_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/Jenkins/load-statistics_ja.properties b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_ja.properties index 8829274a69d5..e1758786778f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/load-statistics_ja.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Load\ Statistics=\u8ca0\u8377\u7d71\u8a08 +Load\ Statistics=è² è·çµ±è¨ˆ diff --git a/core/src/main/resources/jenkins/model/Jenkins/load-statistics_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_pt_BR.properties index 368044a51aa2..f9cc23c8fe9a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/load-statistics_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Load\ Statistics=Estat\u00edsticas de carga +Load\ Statistics=Estatísticas de carga diff --git a/core/src/main/resources/jenkins/model/Jenkins/load-statistics_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_ru.properties index 42d8c5d4a93f..aa8e218745f1 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/load-statistics_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_ru.properties @@ -1 +1 @@ -Load\ Statistics=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f +Load\ Statistics=СтатиÑтика иÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ diff --git a/core/src/main/resources/jenkins/model/Jenkins/load-statistics_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_sr.properties index 8c5dc1f569c0..3ff0f3fe4e55 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/load-statistics_sr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Load\ Statistics=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0435 \u043E \u043E\u043F\u0442\u0435\u0440\u0435\u045B\u0435\u045A\u0443 +Load\ Statistics=СтатиÑтике о оптерећењу diff --git a/core/src/main/resources/jenkins/model/Jenkins/load-statistics_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_zh_TW.properties index 120670a8a11e..7c1c5117137b 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/load-statistics_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Load\ Statistics=\u8ca0\u8f09\u7d71\u8a08 +Load\ Statistics=負載統計 diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_bg.properties index a68d69156f8f..b6726fde57cf 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/loginError_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_bg.properties @@ -21,11 +21,11 @@ # THE SOFTWARE. Invalid\ login\ information.\ Please\ try\ again.=\ - \u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u043d\u0438 \u0438\u043c\u0435 \u0438\u043b\u0438 \u043f\u0430\u0440\u043e\u043b\u0430. \u041f\u0440\u043e\u0431\u0432\u0430\u0439\u0442\u0435 \u043e\u0442\u043d\u043e\u0432\u043e. + Ðеправилни име или парола. Пробвайте отново. If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=\ - \u0410\u043a\u043e \u0441\u0442\u0435 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440 \u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430 \u0438 \u043f\u0440\u0435\u0434\u043f\u043e\u043b\u0430\u0433\u0430\u0442\u0435, \u0447\u0435 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044a\u0442 \u0435 \u0432\ - \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435, \u043f\u0440\u043e\u0432\u0435\u0440\u0435\u0442\u0435 \u0438\u0437\u0445\u043e\u0434\u0430 \u043d\u0430 \u0441\u044a\u0440\u0432\u044a\u0440\u0430 \u043d\u0430 \u043a\u043e\u043d\u0437\u043e\u043b\u0430\u0442\u0430 \u0437\u0430 \u043f\u043e\u0432\u0435\u0447\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f. + Ðко Ñте админиÑтратор на ÑиÑтемата и предполагате, че проблемът е в\ + наÑтройките, проверете изхода на Ñървъра на конзолата за повече информациÑ. Try\ again=\ - \u041d\u043e\u0432 \u043e\u043f\u0438\u0442 + Ðов опит Login\ Error=\ - \u0413\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u0432\u043f\u0438\u0441\u0432\u0430\u043d\u0435 + Грешка при впиÑване diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_da.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_da.properties index 65f9f67c6b50..3fd82d00d946 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/loginError_da.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_da.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Try\ again=Pr\u00f8v igen -Invalid\ login\ information.\ Please\ try\ again.=Ugyldig logindinformation. Pr\u00f8v igen. +Try\ again=Prøv igen +Invalid\ login\ information.\ Please\ try\ again.=Ugyldig logindinformation. Prøv igen. Login\ Error=Logind fejl If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=\ -Hvis du er systemadministratoren og mist\u00e6nker at dette er et konfigurationsproblem kan du se serverens konsoloutput for flere detaljer. +Hvis du er systemadministratoren og mistænker at dette er et konfigurationsproblem kan du se serverens konsoloutput for flere detaljer. diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_es.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_es.properties index ca6d5656a8a4..ec25178825ce 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/loginError_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_es.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Invalid\ login\ information.\ Please\ try\ again.=Error de autenticación. -Try\ again=Int\u00E9ntalo de nuevo -Login\ Error=Error de autenticación +Invalid\ login\ information.\ Please\ try\ again.=Error de autenticación. +Try\ again=Inténtalo de nuevo +Login\ Error=Error de autenticación If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=\ - Si eres un administrador de sistemas y crees que esto es un problema de configuración, echa un vistazo a la salida de consola para ver mas detalles + Si eres un administrador de sistemas y crees que esto es un problema de configuración, echa un vistazo a la salida de consola para ver mas detalles diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_fr.properties index 78be7aeb1f12..7eb0966bb54f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/loginError_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_fr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=Si vous \u00EAtes administrateur syst\u00E8me et que vous soup\u00E7onnez un probl\u00E8me de configuration, reportez vous \u00E0 la sortie console pour plus de d\u00E9tail -Invalid\ login\ information.\ Please\ try\ again.=Identification invalide. Merci d''essayer à nouveau. -Try\ again=Essayez à nouveau. +If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=Si vous êtes administrateur système et que vous soupçonnez un problème de configuration, reportez vous à la sortie console pour plus de détail +Invalid\ login\ information.\ Please\ try\ again.=Identification invalide. Merci d''essayer à nouveau. +Try\ again=Essayez à nouveau. diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_ja.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_ja.properties index 93c1460af691..16291b91543c 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/loginError_ja.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_ja.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Invalid\ login\ information.\ Please\ try\ again.=\u30E6\u30FC\u30B6\u30FC\u540D\u307E\u305F\u306F\u30D1\u30B9\u30EF\u30FC\u30C9\u304C\u9055\u3044\u307E\u3059 -Try\ again=\u518D\u30ED\u30B0\u30A4\u30F3 +Invalid\ login\ information.\ Please\ try\ again.=ユーザーåã¾ãŸã¯ãƒ‘スワードãŒé•ã„ã¾ã™ +Try\ again=å†ãƒ­ã‚°ã‚¤ãƒ³ If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=\ - \u3042\u306A\u305F\u304C\u7BA1\u7406\u8005\u3067\u8A2D\u5B9A\u306E\u554F\u984C\u3068\u8003\u3048\u308B\u5834\u5408\u306F\u3001\u30B3\u30F3\u30BD\u30FC\u30EB\u51FA\u529B\u3092\u53C2\u7167\u3057\u3066\u304F\u3060\u3055\u3044\u3002 -Login\ Error=\u30ED\u30B0\u30A4\u30F3\u30A8\u30E9\u30FC + ã‚ãªãŸãŒç®¡ç†è€…ã§è¨­å®šã®å•é¡Œã¨è€ƒãˆã‚‹å ´åˆã¯ã€ã‚³ãƒ³ã‚½ãƒ¼ãƒ«å‡ºåŠ›ã‚’å‚ç…§ã—ã¦ãã ã•ã„。 +Login\ Error=ログインエラー diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_ko.properties index 6fb7fed59bc1..e2949dd4ff95 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/loginError_ko.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_ko.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=\uAD00\uB9AC\uC790\uB294 \uC124\uC815\uC5D0 \uBB38\uC81C\uAC00 \uC788\uC744 \uACBD\uC6B0 \uC11C\uBC84 \uCF58\uC194\uC744 \uD1B5\uD574 \uC790\uC138\uD55C \uC815\uBCF4\uB97C \uD655\uC778\uD558\uC2ED\uC2DC\uC624. -Invalid\ login\ information.\ Please\ try\ again.=\uB85C\uADF8\uC778 \uC815\uBCF4\uAC00 \uD2C0\uB9BD\uB2C8\uB2E4. \uC7AC\uC2DC\uB3C4\uD574 \uC8FC\uC138\uC694 -Try\ again=\uC7AC\uC2DC\uB3C4 +If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=관리ìžëŠ” ì„¤ì •ì— ë¬¸ì œê°€ ìžˆì„ ê²½ìš° 서버 ì½˜ì†”ì„ í†µí•´ ìžì„¸í•œ 정보를 확ì¸í•˜ì‹­ì‹œì˜¤. +Invalid\ login\ information.\ Please\ try\ again.=ë¡œê·¸ì¸ ì •ë³´ê°€ 틀립니다. 재시ë„í•´ 주세요 +Try\ again=ìž¬ì‹œë„ diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_lt.properties index dac6d05eba40..ad7f4af3115b 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/loginError_lt.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_lt.properties @@ -1,4 +1,4 @@ -If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=Jei esate sistemos administratorius ir \u012ftariate, kad tai konfig\u016bracijos problema, serverio konsol\u0117s i\u0161vestyje ie\u0161kokite daugiau informacijos. -Invalid\ login\ information.\ Please\ try\ again.=Neteisinga prisijungimo informacija. Pra\u0161ome bandyti dar kart\u0105. -Try\ again=Bandykite dar kart\u0105. +If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=Jei esate sistemos administratorius ir įtariate, kad tai konfigÅ«racijos problema, serverio konsolÄ—s iÅ¡vestyje ieÅ¡kokite daugiau informacijos. +Invalid\ login\ information.\ Please\ try\ again.=Neteisinga prisijungimo informacija. PraÅ¡ome bandyti dar kartÄ…. +Try\ again=Bandykite dar kartÄ…. Login\ Error=Prisijungimo klaida diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_lv.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_lv.properties index e5e4eba6e0a5..d5e0bc4ca1b6 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/loginError_lv.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_lv.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=Ja j\u016Bs esat sist\u0113mas administrators un esat aizdom\u012Bgs par konfigur\u0101cijas probl\u0113mu, apskatiet servera komandrindas izejas datus papildus inform\u0101cijai. -Invalid\ login\ information.\ Please\ try\ again.=Neder\u012Bga piesl\u0113g\u0161an\u0101s inform\u0101cija. L\u016Bdzu m\u0113\u0123iniet v\u0113lreiz. -Try\ again=M\u0113\u0123in\u0101t v\u0113lreiz. +If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=Ja jÅ«s esat sistÄ“mas administrators un esat aizdomÄ«gs par konfigurÄcijas problÄ“mu, apskatiet servera komandrindas izejas datus papildus informÄcijai. +Invalid\ login\ information.\ Please\ try\ again.=NederÄ«ga pieslÄ“gÅ¡anÄs informÄcija. LÅ«dzu mÄ“Ä£iniet vÄ“lreiz. +Try\ again=MÄ“Ä£inÄt vÄ“lreiz. diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_pl.properties index 00dd3f0c6319..e8e1f7a7719a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/loginError_pl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_pl.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=Je\u015Bli jeste\u015B administratorem serwera i podejrzewasz, \u017Ce mo\u017Ce to by\u0107 problem z konfiguracj\u0105 sprawd\u017A wyj\u015Bcie z konsoli by uzyska\u0107 wi\u0119cej szczeg\u00F3\u0142\u00F3w -Invalid\ login\ information.\ Please\ try\ again.=Nieprawid\u0142owe po\u015Bwiadczenia. Spr\u00F3buj ponownie. -Try\ again=Spr\u00F3buj ponownie +If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=JeÅ›li jesteÅ› administratorem serwera i podejrzewasz, że może to być problem z konfiguracjÄ… sprawdź wyjÅ›cie z konsoli by uzyskać wiÄ™cej szczegółów +Invalid\ login\ information.\ Please\ try\ again.=NieprawidÅ‚owe poÅ›wiadczenia. Spróbuj ponownie. +Try\ again=Spróbuj ponownie diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_ru.properties index 296dfea18eda..0229124819e3 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/loginError_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_ru.properties @@ -1,5 +1,5 @@ If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=\ - \u0415\u0441\u043b\u0438 \u0432\u044b \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440 \u0438 \u043f\u043e\u0434\u043e\u0437\u0440\u0435\u0432\u0430\u0435\u0442\u0435 \u043e\u0448\u0438\u0431\u043a\u0443 \u0432 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438, \u043e\u0431\u0440\u0430\u0442\u0438\u0442\u0435\u0441\u044c \u043a \u0432\u044b\u0432\u043e\u0434\u0443 \u043a\u043e\u043d\u0441\u043e\u043b\u0438 \u0441\u0435\u0440\u0432\u0435\u0440\u0430, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438. -Invalid\ login\ information.\ Please\ try\ again.=\u041d\u0435\u0432\u0435\u0440\u043d\u043e \u0443\u043a\u0430\u0437\u0430\u043d \u043b\u043e\u0433\u0438\u043d/\u043f\u0430\u0440\u043e\u043b\u044c. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0435\u0449\u0435 \u0440\u0430\u0437. -Try\ again=\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0435\u0449\u0435 \u0440\u0430\u0437 -Login\ Error=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0432\u0445\u043e\u0434\u0435 + ЕÑли вы ÑиÑтемный админиÑтратор и подозреваете ошибку в конфигурации, обратитеÑÑŒ к выводу конÑоли Ñервера, чтобы получить больше информации. +Invalid\ login\ information.\ Please\ try\ again.=Ðеверно указан логин/пароль. Попробуйте еще раз. +Try\ again=Попробуйте еще раз +Login\ Error=Ошибка при входе diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_sr.properties index 611539ab030b..19becb05cd11 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/loginError_sr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Invalid\ login\ information.\ Please\ try\ again.=\u041D\u0435\u0432\u0430\u0436\u0435\u045B\u0435 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u043E \u0438\u043C\u0435 \u0438\u043B\u0438 \u043B\u043E\u0437\u0438\u043D\u043A\u0430. \u041F\u043E\u043A\u0443\u0448\u0430\u0458\u0442\u0435 \u043F\u043E\u043D\u043E\u0432\u043E. -Try\ again=\u041F\u043E\u043A\u0443\u0448\u0430\u0458\u0442\u0435 \u043E\u043F\u0435\u0442 -If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=\u0410\u043A\u043E \u0441\u0442\u0435 \u0441\u0438\u0441\u0442\u0435\u043C\u0441\u043A\u0438 \u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0442\u043E\u0440 \u0438 \u043C\u0438\u0441\u043B\u0438\u0442\u0435 \u0434\u0430 \u0458\u0435 \u043F\u0440\u043E\u0431\u043B\u0435\u043C \u0432\u0435\u0437\u0430\u043D \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0443, \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 \u0418\u0441\u0445\u043E\u0434 \u0438\u0437 \u043A\u043E\u043D\u0437\u043E\u043B\u0435 \u0441\u0435\u0440\u0432\u0435\u0440\u0430. -Login\ Error=\u0413\u0440\u0435\u0448\u043A\u0430 \u043E\u043A\u043E \u043F\u0440\u0438\u0458\u0430\u0432\u0435 +Invalid\ login\ information.\ Please\ try\ again.=Ðеважеће кориÑничко име или лозинка. Покушајте поново. +Try\ again=Покушајте опет +If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=Ðко Ñте ÑиÑтемÑки админиÑтратор и миÑлите да је проблем везан подешавању, прегледајте ИÑход из конзоле Ñервера. +Login\ Error=Грешка око пријаве diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_tr.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_tr.properties index fbd4b1649eb8..7771a0436f06 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/loginError_tr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_tr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=E\u011Fer bir sistem y\u00F6neticisi vard\u0131r ve bu bir yap\u0131land\u0131rma sorunu oldu\u011Fundan \u015F\u00FCpheleniyorsan\u0131z, sunucu konsolu \u00E7\u0131k\u0131\u015F\u0131 Daha fazla bilgi i\u00E7in bkz -Invalid\ login\ information.\ Please\ try\ again.=Ge\u00e7ersiz giri\u015f bilgisi. L\u00fctfen tekrar deneyiniz. +If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=EÄŸer bir sistem yöneticisi vardır ve bu bir yapılandırma sorunu olduÄŸundan şüpheleniyorsanız, sunucu konsolu çıkışı Daha fazla bilgi için bkz +Invalid\ login\ information.\ Please\ try\ again.=Geçersiz giriÅŸ bilgisi. Lütfen tekrar deneyiniz. Try\ again=Tekrar deneyiniz diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_zh_TW.properties index e8a8e02e3ccd..8b18e15d91ab 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/loginError_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_zh_TW.properties @@ -21,8 +21,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Login\ Error=\u767b\u5165\u932f\u8aa4 -Invalid\ login\ information.\ Please\ try\ again.=\u767b\u5165\u8cc7\u8a0a\u7121\u6548\uff0c\u8acb\u518d\u8a66\u4e00\u6b21\u3002 -Try\ again=\u518d\u8a66\u4e00\u6b21 +Login\ Error=登入錯誤 +Invalid\ login\ information.\ Please\ try\ again.=登入資訊無效,請å†è©¦ä¸€æ¬¡ã€‚ +Try\ again=å†è©¦ä¸€æ¬¡ If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=\ - \u5982\u679c\u60a8\u662f\u7cfb\u7d71\u7ba1\u7406\u54e1\uff0c\u800c\u4e14\u61f7\u7591\u662f\u8a2d\u5b9a\u554f\u984c\uff0c\u4f3a\u670d\u5668\u7684\u756b\u9762\u8f38\u51fa\u88e1\u53ef\u80fd\u6709\u66f4\u8a73\u7d30\u7684\u8cc7\u6599\u3002 + 如果您是系統管ç†å“¡ï¼Œè€Œä¸”懷疑是設定å•é¡Œï¼Œä¼ºæœå™¨çš„ç•«é¢è¼¸å‡ºè£¡å¯èƒ½æœ‰æ›´è©³ç´°çš„資料。 diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/login_bg.properties index 94703bbcf3f6..fd0b75a876ac 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_bg.properties @@ -22,13 +22,13 @@ # Create an account if you are not a member yet. signUp=\ - \u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043d\u0435, \u0430\u043a\u043e \u043d\u0435 \u0441\u0442\u0435 \u0447\u043b\u0435\u043d. + РегиÑтриране, ако не Ñте член. Password=\ - \u041f\u0430\u0440\u043e\u043b\u0430 + Парола User=\ - \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b + Потребител # log in login=\ - \u0412\u043f\u0438\u0441\u0432\u0430\u043d\u0435 + ВпиÑване Remember\ me\ on\ this\ computer=\ - \u0417\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435 \u043d\u0430 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u0430 \u0437\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0432\u043f\u0438\u0441\u0432\u0430\u043d\u0435 + ЗапомнÑне на компютъра за автоматично впиÑване diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_cs.properties b/core/src/main/resources/jenkins/model/Jenkins/login_cs.properties index 4ffc25f8aa04..79708a0c0c4d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_cs.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_cs.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors Password=Heslo -Remember\ me\ on\ this\ computer=Zapamatovat si m\u011B na tomto po\u010D\u00EDta\u010Di -User=U\u017Eivatele -login=P\u0159ihl\u00E1sit -signUp=Vytvo\u0159it \u00FA\u010Det pokud ho je\u0161t\u011B nem\u00E1te. +Remember\ me\ on\ this\ computer=Zapamatovat si mÄ› na tomto poÄítaÄi +User=Uživatele +login=PÅ™ihlásit +signUp=VytvoÅ™it úÄet pokud ho jeÅ¡tÄ› nemáte. diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_da.properties b/core/src/main/resources/jenkins/model/Jenkins/login_da.properties index e49d053a91c7..e00529deff36 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_da.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_da.properties @@ -23,5 +23,5 @@ Password=Adgangskode login=log ind User=Bruger -Remember\ me\ on\ this\ computer=Husk mig p\u00e5 denne computer +Remember\ me\ on\ this\ computer=Husk mig pÃ¥ denne computer signUp=Opret en konto hvis du endnu ikke er medlem. diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_es.properties b/core/src/main/resources/jenkins/model/Jenkins/login_es.properties index f9682d805b70..d79d4df7fcee 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_es.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -signUp=Crea una cuenta si todavía no tienes una. +signUp=Crea una cuenta si todavía no tienes una. login=Entrar -Password=Contraseña +Password=Contraseña User=Usuario Remember\ me\ on\ this\ computer=Recuerdame en esta computadora diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_et.properties b/core/src/main/resources/jenkins/model/Jenkins/login_et.properties index 1f4612f8a78f..49298a5af409 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_et.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_et.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Password=Salas\u00F5na +Password=Salasõna User=Kasutaja login=sisene diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_fi.properties b/core/src/main/resources/jenkins/model/Jenkins/login_fi.properties index e6a2d618ae7d..eabfd3835cd6 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_fi.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_fi.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors Password=Salasana -Remember\ me\ on\ this\ computer=Muista minut t\u00E4ll\u00E4 koneella -User=K\u00E4ytt\u00E4j\u00E4 -login=kirjaudu sis\u00E4\u00E4n +Remember\ me\ on\ this\ computer=Muista minut tällä koneella +User=Käyttäjä +login=kirjaudu sisään diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/login_fr.properties index 208882d44216..dfb9acb430ef 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_fr.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. signIn=S''identifier -signUp=Cr\u00e9ez un compte si vous n''\u00eates pas encore membre. +signUp=Créez un compte si vous n''êtes pas encore membre. Invalid\ username\ or\ password=Nom d''utilisateur ou mot de passe incorrect Username=Utilisateur Password=Mot de passe diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_hu.properties b/core/src/main/resources/jenkins/model/Jenkins/login_hu.properties index 167e70f83aa2..39fc597625e9 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_hu.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_hu.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Password=Jelsz\u00F3 -Remember\ me\ on\ this\ computer=Jegyezzen meg ezen a g\u00E9pen -User=Felhaszn\u00E1l\u00F3n\u00E9v -login=bel\u00E9p\u00E9s -signUp=Ha nincs m\u00E9g hozz\u00E1f\u00E9r\u00E9se, regisztr\u00E1ljon egyet! +Password=Jelszó +Remember\ me\ on\ this\ computer=Jegyezzen meg ezen a gépen +User=Felhasználónév +login=belépés +signUp=Ha nincs még hozzáférése, regisztráljon egyet! diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_it.properties b/core/src/main/resources/jenkins/model/Jenkins/login_it.properties index df62ff7de596..cff28b030e22 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_ja.properties b/core/src/main/resources/jenkins/model/Jenkins/login_ja.properties index 80103f71d77e..22d6d71e291e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_ja.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_ja.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -signUp=\u30E1\u30F3\u30D0\u30FC\u3067\u306A\u3044\u4EBA\u306F\u3001\u30A2\u30AB\u30A6\u30F3\u30C8\u3092\u767B\u9332\u3057\u3066\u304F\u3060\u3055\u3044 -signIn=\u30b5\u30a4\u30f3\u30a4\u30f3 -Username=\u30e6\u30fc\u30b6\u30fc\u540d -Password=\u30D1\u30B9\u30EF\u30FC\u30C9 -Keep\ me\ signed\ in=\u30b5\u30a4\u30f3\u30a4\u30f3\u3057\u305f\u307e\u307e\u306b\u3059\u308b -Invalid\ username\ or\ password=\u30e6\u30fc\u30b6\u30fc\u540d\u304b\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u6b63\u3057\u304f\u3042\u308a\u307e\u305b\u3093 +signUp=メンãƒãƒ¼ã§ãªã„人ã¯ã€ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã‚’登録ã—ã¦ãã ã•ã„ +signIn=サインイン +Username=ユーザーå +Password=パスワード +Keep\ me\ signed\ in=サインインã—ãŸã¾ã¾ã«ã™ã‚‹ +Invalid\ username\ or\ password=ユーザーåã‹ãƒ‘スワードãŒæ­£ã—ãã‚ã‚Šã¾ã›ã‚“ diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/login_ko.properties index 485b63aa2c13..6128b0657f75 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_ko.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_ko.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Username=\uC0AC\uC6A9\uC790 \uC774\uB984 -Password=\uBE44\uBC00\uBC88\uD638 -signIn=\uB85C\uADF8\uC778 -signUp=\uACC4\uC815 \uC0DD\uC131 -Keep\ me\ signed\ in=\uB85C\uADF8\uC778 \uC0C1\uD0DC \uC720\uC9C0 -Invalid\ username\ or\ password=\uC0AC\uC6A9\uC790 \uC774\uB984 \uB610\uB294 \uC554\uD638\uAC00 \uC798\uBABB\uB418\uC5C8\uC2B5\uB2C8\uB2E4. +Username=ì‚¬ìš©ìž ì´ë¦„ +Password=비밀번호 +signIn=ë¡œê·¸ì¸ +signUp=계정 ìƒì„± +Keep\ me\ signed\ in=ë¡œê·¸ì¸ ìƒíƒœ 유지 +Invalid\ username\ or\ password=ì‚¬ìš©ìž ì´ë¦„ ë˜ëŠ” 암호가 잘못ë˜ì—ˆìŠµë‹ˆë‹¤. diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/login_lt.properties index e5649028f4f2..b124c7f5714d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_lt.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_lt.properties @@ -1,5 +1,5 @@ -signUp=Sukurkite paskyr\u0105, jei dar nesate narys. +signUp=Sukurkite paskyrÄ…, jei dar nesate narys. login=prisijungimas -Remember\ me\ on\ this\ computer=Prisiminkite mane \u0161iame kompiuteryje +Remember\ me\ on\ this\ computer=Prisiminkite mane Å¡iame kompiuteryje User=Naudotojas -Password=Slapta\u017eodis +Password=Slaptažodis diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_lv.properties b/core/src/main/resources/jenkins/model/Jenkins/login_lv.properties index 24cc762e0b96..d0d26d0b643f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_lv.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_lv.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Password=Parole -Remember\ me\ on\ this\ computer=Atcer\u0113ties mani uz \u0161\u012B datora -User=Lietot\u0101js +Remember\ me\ on\ this\ computer=AtcerÄ“ties mani uz Å¡Ä« datora +User=LietotÄjs login=Ielogoties -signUp=Piesl\u0113dzies izmantojot formu zem\u0101k vai izveido jaunu kontu. +signUp=PieslÄ“dzies izmantojot formu zemÄk vai izveido jaunu kontu. diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/login_pl.properties index aeb61a1eb78c..43b9b9e7b2c2 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_pl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_pl.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Password=Has\u0142o -signUp=Zaloguj si\u0119 poni\u017Cej lub za\u0142\u00F3\u017C konto. +Password=HasÅ‚o +signUp=Zaloguj siÄ™ poniżej lub załóż konto. signIn=Zaloguj -Keep\ me\ signed\ in=Zapami\u0119taj mnie -Username=U\u017Cytkownik -Invalid\ username\ or\ password=Niepoprawny u\u017Cytkownik lub has\u0142o +Keep\ me\ signed\ in=ZapamiÄ™taj mnie +Username=Użytkownik +Invalid\ username\ or\ password=Niepoprawny użytkownik lub hasÅ‚o diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/login_pt_BR.properties index 3d62385de508..338afde4a30d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_pt_BR.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Password=Senha -signUp=Criar uma nova conta se voc\u00EA ainda n\u00E3o for um usu\u00E1rio. -Invalid\ username\ or\ password=Usu\u00E1rio\ ou\ senha\ inv\u00E1lida -Username=Nome do usu\u00E1rio +signUp=Criar uma nova conta se você ainda não for um usuário. +Invalid\ username\ or\ password=Usuário\ ou\ senha\ inválida +Username=Nome do usuário signIn=Entrar Keep\ me\ signed\ in=Mantenha-me\ conectado diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/login_ru.properties index 23c4ca2aeafe..bc88891d02c1 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_ru.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -User=\u041b\u043e\u0433\u0438\u043d -Password=\u041f\u0430\u0440\u043e\u043b\u044c -Remember\ me\ on\ this\ computer=\u0417\u0430\u043f\u043e\u043c\u043d\u0438\u0442\u044c \u043c\u0435\u043d\u044f -login=\u0432\u043e\u0439\u0442\u0438 -signUp=\u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u0430\u043a\u043a\u0430\u0443\u043d\u0442 \u0435\u0441\u043b\u0438 \u0432\u044b \u0435\u0449\u0435 \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u044b +User=Логин +Password=Пароль +Remember\ me\ on\ this\ computer=Запомнить Ð¼ÐµÐ½Ñ +login=войти +signUp=Создайте аккаунт еÑли вы еще не зарегиÑтрированы diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_sk.properties b/core/src/main/resources/jenkins/model/Jenkins/login_sk.properties index ee34d9e52b53..4b9d92ab3ef0 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_sk.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_sk.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Password=Heslo -Remember\ me\ on\ this\ computer=Zapam\u00E4taj si ma na tomto po\u010D\u00EDta\u010Di -User=Pou\u017E\u00EDvate\u013E -login=Prihl\u00E1s +Remember\ me\ on\ this\ computer=Zapamätaj si ma na tomto poÄítaÄi +User=Používateľ +login=Prihlás diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/login_sr.properties index b8805d268cb6..3c99bf56151b 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_sr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_sr.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -User=\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u043A -Password=\u041B\u043E\u0437\u0438\u043D\u043A\u0430 -Remember\ me\ on\ this\ computer=\u0417\u0430\u043F\u0430\u043C\u0442\u0438 \u043C\u0435 \u043D\u0430 \u043E\u0432\u043E\u043C \u0440\u0430\u0447\u0443\u043D\u0430\u0440\u0443 -login=\u041F\u0440\u0438\u0458\u0430\u0432\u0438 \u0441\u0435 -signUp=\u041D\u0430\u043F\u0440\u0430\u0432\u0438\u0442\u0435 \u043D\u0430\u043B\u043E\u0433 \u0430\u043A\u043E \u0432\u0435\u045B \u043D\u0438\u0441\u0442\u0435. +User=КориÑник +Password=Лозинка +Remember\ me\ on\ this\ computer=Запамти ме на овом рачунару +login=Пријави Ñе +signUp=Ðаправите налог ако већ ниÑте. diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_sv_SE.properties b/core/src/main/resources/jenkins/model/Jenkins/login_sv_SE.properties index 75c6d79d7b71..12d07d19b5fe 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_sv_SE.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_sv_SE.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Password=L\u00F6senord -Remember\ me\ on\ this\ computer=Kom ih\u00E5g mig p\u00E5 den h\u00E4r datorn -User=Anv\u00E4ndarnamn +Password=Lösenord +Remember\ me\ on\ this\ computer=Kom ihÃ¥g mig pÃ¥ den här datorn +User=Användarnamn login=logga in diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_tr.properties b/core/src/main/resources/jenkins/model/Jenkins/login_tr.properties index 92c311b0df05..809f4932b0dd 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_tr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_tr.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -signUp=E\u011fer \u00fcye de\u011filseniz bir kullan\u0131c\u0131 olu\u015Fturun. -User=Kullan\u0131c\u0131 -Password=\u015eifre -Remember\ me\ on\ this\ computer=Beni bu bilgisayarda hat\u0131rla -login=giri\u015f -Invalid\ username\ or\ password=Kullan\u0131c\u0131 ad\u0131 veya \u015Fifre yanl\u0131\u015F -Keep\ me\ signed\ in=Beni hat\u0131rla -Username=Kullan\u0131c\u0131 ad\u0131 -signIn=Giri\u015F yap +signUp=EÄŸer üye deÄŸilseniz bir kullanıcı oluÅŸturun. +User=Kullanıcı +Password=Åžifre +Remember\ me\ on\ this\ computer=Beni bu bilgisayarda hatırla +login=giriÅŸ +Invalid\ username\ or\ password=Kullanıcı adı veya ÅŸifre yanlış +Keep\ me\ signed\ in=Beni hatırla +Username=Kullanıcı adı +signIn=GiriÅŸ yap diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/login_zh_TW.properties index 22b1e4e82f95..989b0aaaf99c 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_zh_TW.properties @@ -19,10 +19,10 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -signUp=\u8acb\u767b\u5165\u6216\u5efa\u7acb\u65b0\u5e33\u6236\u3002 -login=\u767b\u5165 -signIn=\u767b\u5165 -Invalid\ username\ or\ password=\u5e33\u865f\u6216\u5bc6\u78bc\u932f\u8aa4 -Password=\u5bc6\u78bc -Username=\u5e33\u865f -Keep\ me\ signed\ in=\u4fdd\u6301\u767b\u5165 +signUp=請登入或建立新帳戶。 +login=登入 +signIn=登入 +Invalid\ username\ or\ password=帳號或密碼錯誤 +Password=密碼 +Username=帳號 +Keep\ me\ signed\ in=ä¿æŒç™»å…¥ diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_bg.properties index 17cf3f900573..30dd0a083f82 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_bg.properties @@ -21,26 +21,26 @@ # THE SOFTWARE. Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=\ - \u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435, \u043f\u0440\u0435\u043c\u0430\u0445\u0432\u0430\u043d\u0435, \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0438 \u043d\u0430\u0431\u043b\u044e\u0434\u0435\u043d\u0438\u0435 \u043d\u0430 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u0438\u0442\u0435 \u043a\u043e\u043c\u043f\u044e\u0442\u0440\u0438, \u043a\u043e\u0439\u0442\u043e\ - Jenkins \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 \u0437\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0438. + ДобавÑне, премахване, управление и наблюдение на различните компютри, който\ + Jenkins използва за Ñтартиране на задачи. Configure\ global\ settings\ and\ paths.=\ - \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u0438\u0442\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0438 \u043f\u044a\u0442\u0438\u0449\u0430. + Управление на оÑновните наÑтройки и пътища. Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=\ - \u0418\u0437\u0447\u0438\u0441\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u0434\u0430\u043d\u043d\u0438 \u043e\u0442 \u043f\u0430\u043c\u0435\u0442\u0442\u0430 \u0438 \u043f\u0440\u0435\u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435 \u043e\u0442 \u0444\u0430\u0439\u043b\u043e\u0432\u0430\u0442\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430 + ИзчиÑтване на вÑички данни от паметта и презареждане от файловата ÑиÑтема Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=\ - \u0418\u0437\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u0441\u043a\u0440\u0438\u043f\u0442 \u0437\u0430 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043d\u0435/\u0434\u0438\u0430\u0433\u043d\u043e\u0441\u0442\u0438\u043a\u0430/\u043e\u0442\u0441\u0442\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0438. + Изпълнение на Ñкрипт за админиÑтриране/диагноÑтика/отÑтранÑване на проблеми. JenkinsCliText=\ - \u0414\u043e\u0441\u0442\u044a\u043f \u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 Jenkins \u043e\u0442 \u043a\u043e\u043d\u0437\u043e\u043b\u0430 \u0438\u043b\u0438 \u0441\u043a\u0440\u0438\u043f\u0442. + ДоÑтъп и управление на Jenkins от конзола или Ñкрипт. Manage\ Jenkins=\ - \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 Jenkins + Управление на Jenkins # {0}: are you sure? are.you.sure=\ - {0}: \u0441\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435? + {0}: Ñигурни ли Ñте? Script\ Console=\ - \u041a\u043e\u043d\u0437\u043e\u043b\u0430 \u0437\u0430 \u0441\u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0435 + Конзола за Ñкриптове Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=\ - \u0421\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u0435\u0442\u043e \u043d\u0430 \u043d\u043e\u0432\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f, \u0437\u0430 \u0434\u0430 \u043c\u043e\u0436\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430 \u0434\u0430 \u0441\u0435\ - \u0438\u0437\u043a\u043b\u044e\u0447\u0438 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e. + Спиране на изпълнението на нови изгражданиÑ, за да може ÑиÑтемата да Ñе\ + изключи безопаÑно. SystemLogText=\ - \u0421\u0438\u0441\u0442\u0435\u043c\u043d\u0438\u044f\u0442 \u0436\u0443\u0440\u043d\u0430\u043b \u043f\u0440\u0438\u0445\u0432\u0430\u0449\u0430 \u0438\u0437\u0445\u043e\u0434\u0430 \u043e\u0442 java.util.logging, \u043a\u043e\u0439\u0442\u043e \u0441\u0435\ - \u043f\u043e\u043b\u0437\u0432\u0430 \u043e\u0442 Jenkins. + СиÑтемниÑÑ‚ журнал прихваща изхода от java.util.logging, който Ñе\ + ползва от Jenkins. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_ca.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_ca.properties index 93652d939f00..931d7de6ba5f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_ca.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_ca.properties @@ -2,22 +2,22 @@ Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Afegeix, elimina, controla i monitoritza els diversos nodes on Jenkins executa treballs. Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Afegir, esborrar, deshabilitar o habilitar plugins que extenen les funcionalitats del Jenkins -Configure\ System=Configuraci\u00F3 del sistema -Configure\ global\ settings\ and\ paths.=Configurar par\u00E0metres globals i rutes. -Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Substituir la configuraci\u00F3 carregada a mem\u00F2ria per la emmagatzemada al disc. -Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Mostra informaci\u00F3 del sistema per ajudar a solucionar problemes. -Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Executa un script arbitrari per administraci\u00F3/resoluci\u00F3 de problemes/diagn\u00F2stics. +Configure\ System=Configuració del sistema +Configure\ global\ settings\ and\ paths.=Configurar paràmetres globals i rutes. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Substituir la configuració carregada a memòria per la emmagatzemada al disc. +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Mostra informació del sistema per ajudar a solucionar problemes. +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Executa un script arbitrari per administració/resolució de problemes/diagnòstics. JenkinsCliText=Accedeix/administra Jenkins des de la teva shell, o des d''un script. -Load\ Statistics=Carregar Estad\u00EDstiques -LoadStatisticsText=Comprova la teua utilitzaci\u00F3 de recursos i prova si necessites m\u00E9s m\u00E0quines per als teus builds. -Manage\ Jenkins=Configuraci\u00F3 del Jenkins +Load\ Statistics=Carregar Estadístiques +LoadStatisticsText=Comprova la teua utilització de recursos i prova si necessites més màquines per als teus builds. +Manage\ Jenkins=Configuració del Jenkins Manage\ Nodes=Administrar Nodes Manage\ Plugins=Configurar plugins Prepare\ for\ Shutdown=Preparar per Apagar -Reload\ Configuration\ from\ Disk=Recarregar configuraci\u00F3 des del disc +Reload\ Configuration\ from\ Disk=Recarregar configuració des del disc Script\ Console=Consola de Script -Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Detindre la execuci\u00F3 de nous builds, de tal forma que el sistema puga apagar-se amb seguretat. -System\ Information=Informaci\u00F3 de sistema +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Detindre la execució de nous builds, de tal forma que el sistema puga apagar-se amb seguretat. +System\ Information=Informació de sistema System\ Log=Log de sistema SystemLogText=Eixida de captures del log del Sistema de java.util.logging relacionades amb Jenkins. -Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=\u00DAtil quan vost\u00E9 modifica els fitxers de configuraci\u00F3 directament al disc. +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Útil quan vosté modifica els fitxers de configuració directament al disc. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_cs.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_cs.properties index bc481c75b8e5..905a895ed63f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_cs.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_cs.properties @@ -20,26 +20,26 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=P\u0159idat, odstranit, m\u011Bnit nastaven\u00ED r\u016Fzn\u00FDch uzl\u016F, na kter\u00FDch Jenkins pou\u0161t\u00ED joby. -Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=P\u0159idat, odebrat, vypnout nebo zapnout pluginy, kter\u00E9 roz\u0161i\u0159uj\u00ED funkcionalitu Jenkins-u. -Configure\ System=Konfigurovat Syst\u00E9m -Configure\ global\ settings\ and\ paths.=Konfigorovat glob\u00E1ln\u00ED nastaven\u00ED a cesty. -Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Zahodit nastaven\u00ED job\u016F a znovu-na\u010D\u00EDst v\u0161echno z konfigura\u010Dn\u00EDch soubor\u016F na disku. -Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Zobrazit r\u016Fzn\u00E1 nastaven\u00ED prost\u0159ed\u00ED - pomoc p\u0159i hled\u00E1n\u00ED chyb. -Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Spou\u0161t\u00ED libovoln\u00FD skript (administrace, diagnostika, ap.). -Jenkins\ CLI=Jenkins - p\u0159\u00EDkazov\u00E1 \u0159\u00E1dka -JenkinsCliText=Pou\u017E\u00EDvejte Jenkins nebo m\u011B\u0148te jeho nastaven\u00ED ze shell-u nebo ze skriptu. +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=PÅ™idat, odstranit, mÄ›nit nastavení různých uzlů, na kterých Jenkins pouÅ¡tí joby. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=PÅ™idat, odebrat, vypnout nebo zapnout pluginy, které rozÅ¡iÅ™ují funkcionalitu Jenkins-u. +Configure\ System=Konfigurovat Systém +Configure\ global\ settings\ and\ paths.=Konfigorovat globální nastavení a cesty. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Zahodit nastavení jobů a znovu-naÄíst vÅ¡echno z konfiguraÄních souborů na disku. +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Zobrazit různá nastavení prostÅ™edí - pomoc pÅ™i hledání chyb. +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=SpouÅ¡tí libovolný skript (administrace, diagnostika, ap.). +Jenkins\ CLI=Jenkins - příkazová řádka +JenkinsCliText=Používejte Jenkins nebo měňte jeho nastavení ze shell-u nebo ze skriptu. Load\ Statistics=Statistika -LoadStatisticsText=Prozkoumejte vyu\u017Eit\u00ED zdroj\u016F, zjist\u011Bte, zda pot\u0159ebujete v\u00EDce po\u010D\u00EDta\u010D\u016F pro sv\u00E9 buildy. -Manage\ Jenkins=Jenkins - nastaven\u00ED -Manage\ Nodes=Spr\u00E1va uzl\u016F +LoadStatisticsText=Prozkoumejte využití zdrojů, zjistÄ›te, zda potÅ™ebujete více poÄítaÄů pro své buildy. +Manage\ Jenkins=Jenkins - nastavení +Manage\ Nodes=Správa uzlů Manage\ Plugins=Spravovat Pluginy -Prepare\ for\ Shutdown=P\u0159ipravit na vypnut\u00ED -Reload\ Configuration\ from\ Disk=Znovu-nahr\u00E1t konfiguraci z disku. +Prepare\ for\ Shutdown=PÅ™ipravit na vypnutí +Reload\ Configuration\ from\ Disk=Znovu-nahrát konfiguraci z disku. Script\ Console=Konzole pro skripty -Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Zastav\u00ED spou\u0161t\u011Bn\u00ED nov\u00FDch build-\u016F - aby Jenkins mohl b\u00FDt bezpe\u010Dn\u011B vypnut. -System\ Information=Syst\u00E9m - Informace -System\ Log=Syst\u00E9m - Log -SystemLogText=Loggovac\u00ED soubor syst\u00E9mu zachycuje v\u00FDstup z java.util.logging v\u00FDstupu vztahuj\u00EDc\u00EDmu se k Jenkins-u. -Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Pot\u0159ebn\u00E9, pokud modifikujete konfigura\u010Dn\u00ED soubory p\u0159\u00EDmo na disku. +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Zastaví spouÅ¡tÄ›ní nových build-ů - aby Jenkins mohl být bezpeÄnÄ› vypnut. +System\ Information=Systém - Informace +System\ Log=Systém - Log +SystemLogText=Loggovací soubor systému zachycuje výstup z java.util.logging výstupu vztahujícímu se k Jenkins-u. +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=PotÅ™ebné, pokud modifikujete konfiguraÄní soubory přímo na disku. are.you.sure={0}: opravdu to chcete? diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_da.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_da.properties index 779196b33f46..9a63b4bc56ea 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_da.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_da.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Tilf\u00F8j, slet, h\u00E5ndter og overv\u00E5g de forskellige noder som Jenkins k\u00F8rer jobs p\u00E5. +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Tilføj, slet, hÃ¥ndter og overvÃ¥g de forskellige noder som Jenkins kører jobs pÃ¥. Jenkins\ CLI=Jenkins CLI (kommandolinie) -Manage\ Jenkins=Administr\u00E9r Jenkins +Manage\ Jenkins=Administrér Jenkins Manage\ Nodes=Bestyr noder Prepare\ for\ Shutdown=Forbered nedlukning are.you.sure={0}: er du sikker? diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_el.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_el.properties index 997fce153ee3..b94cebd91717 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_el.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_el.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Manage\ Jenkins=\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 Jenkins -Prepare\ for\ Shutdown=\u03A0\u03C1\u03BF\u03B5\u03C4\u03BF\u03B9\u03BC\u03B1\u03C3\u03AF\u03B1 \u03B3\u03B9\u03B1 \u03C4\u03B5\u03C1\u03BC\u03B1\u03C4\u03B9\u03C3\u03BC\u03CC \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2 +Manage\ Jenkins=ΔιαχείÏιση Jenkins +Prepare\ for\ Shutdown=ΠÏοετοιμασία για τεÏματισμό λειτουÏγίας diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_es.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_es.properties index fc9ae1cf1b3a..1c924cec9d43 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_es.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=A\u00F1adir, borrar, controlar y monitorear los nodos sobre los que Jenkins ejecuta tareas. +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Añadir, borrar, controlar y monitorear los nodos sobre los que Jenkins ejecuta tareas. Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Descartar todos los datos cargados en memoria y recargar todo nuevamente desde el sistema de archivos. -Jenkins\ CLI=Interfaz de l\u00EDnea de comandos (CLI) de Jenkins +Jenkins\ CLI=Interfaz de línea de comandos (CLI) de Jenkins Manage\ Jenkins=Administrar Jenkins -Reload\ Configuration\ from\ Disk=Recargar configuraci\u00F3n desde el disco duro. -Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Detener la ejecuci\u00F3n de nuevas construcciones para que el sistema pueda apagarse de manera segura. +Reload\ Configuration\ from\ Disk=Recargar configuración desde el disco duro. +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Detener la ejecución de nuevas construcciones para que el sistema pueda apagarse de manera segura. SystemLogText=El log del sistema captura la salida de la clase java.util.logging en todo lo relacionado con Jenkins. -are.you.sure=est\u00E1s seguro? +are.you.sure=estás seguro? diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_es_AR.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_es_AR.properties index 978ba0cd4bde..91e1c11f95ef 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_es_AR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_es_AR.properties @@ -1,9 +1,9 @@ # This file is under the MIT License by authors Configure\ System=Configurar sistema -Load\ Statistics=Cargar estad\u00EDsticas +Load\ Statistics=Cargar estadísticas Manage\ Jenkins=Administrar Jenkins Manage\ Nodes=Administrar Nodos Manage\ Plugins=Administrar plugins -System\ Information=Informaci\u00F3n del sistema +System\ Information=Información del sistema System\ Log=Log del sistema diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_et.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_et.properties index 624fc80d2edb..42604525f183 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_et.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_et.properties @@ -1,18 +1,18 @@ # This file is under the MIT License by authors -Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Lisa, eemalda, halda ja monitoori s\u00F5lmesid mida Jenkins j\u00E4rkude ehitamiseks kasutab. -Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Lisa, eemalda, blokeeri v\u00F5i v\u00F5imalda pistikprogramme mis laiendavad Jenkinsi funktsionaalsust. -Configure\ System=Konfigureeri S\u00FCsteemi +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Lisa, eemalda, halda ja monitoori sõlmesid mida Jenkins järkude ehitamiseks kasutab. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Lisa, eemalda, blokeeri või võimalda pistikprogramme mis laiendavad Jenkinsi funktsionaalsust. +Configure\ System=Konfigureeri Süsteemi Configure\ global\ settings\ and\ paths.=Halda globaalseid seadeid ja teid. -JenkinsCliText=Kasuta/halda Jenkinsit oma shellist v\u00F5i skriptist. +JenkinsCliText=Kasuta/halda Jenkinsit oma shellist või skriptist. Load\ Statistics=Laadi Statistika Manage\ Jenkins=Halda Jenkins''it -Manage\ Nodes=Halda S\u00F5lmesid +Manage\ Nodes=Halda Sõlmesid Manage\ Plugins=Halda Pistikprogramme Prepare\ for\ Shutdown=Valmistu Sulgemiseks -Reload\ Configuration\ from\ Disk=V\u00E4rskenda Konfiguratsioon K\u00F5vakettalt +Reload\ Configuration\ from\ Disk=Värskenda Konfiguratsioon Kõvakettalt Script\ Console=Skriptide Konsool -Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=L\u00F5petab uute j\u00E4rkude ehitamise selleks et s\u00FCsteemi v\u00F5iks ilma probleemideta sulgeda. -System\ Information=S\u00FCsteemi informatsioon -System\ Log=S\u00FCsteemi logid +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Lõpetab uute järkude ehitamise selleks et süsteemi võiks ilma probleemideta sulgeda. +System\ Information=Süsteemi informatsioon +System\ Log=Süsteemi logid are.you.sure={0}: oled kindel? diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_fi.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_fi.properties index 21ea59c903a3..d7b63ae36c83 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_fi.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_fi.properties @@ -20,20 +20,20 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Lis\u00E4\u00E4, poista, hallitse ja tarkkaile solmuja, joita Jenkins k\u00E4ytt\u00E4\u00E4 k\u00E4\u00E4nt\u00E4miseen. -Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Lis\u00E4\u00E4, poista, aktivoi tai deaktivoi liit\u00E4nn\u00E4isi\u00E4, jotka lis\u00E4\u00E4v\u00E4t Jenkinsiin toiminnallisuutta. -Configure\ System=J\u00E4rjestelm\u00E4n asetukset -Configure\ global\ settings\ and\ paths.=Muokkaa j\u00E4rjestelm\u00E4n asetuksia ja polkuja. -Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Lue uudet asetukset levylt\u00E4. -Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Suorita skriptej\u00E4 hallintaan, vianetsin\u00E4\u00E4n ja diagnostiikkaan. +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Lisää, poista, hallitse ja tarkkaile solmuja, joita Jenkins käyttää kääntämiseen. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Lisää, poista, aktivoi tai deaktivoi liitännäisiä, jotka lisäävät Jenkinsiin toiminnallisuutta. +Configure\ System=Järjestelmän asetukset +Configure\ global\ settings\ and\ paths.=Muokkaa järjestelmän asetuksia ja polkuja. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Lue uudet asetukset levyltä. +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Suorita skriptejä hallintaan, vianetsinään ja diagnostiikkaan. Jenkins\ CLI=Jenkinsin komentorivi -JenkinsCliText=Hallitse Jenkinsia komentorivilt\u00E4 tai skriptill\u00E4. +JenkinsCliText=Hallitse Jenkinsia komentoriviltä tai skriptillä. Load\ Statistics=Kuormitustilastot -LoadStatisticsText=Tarkkaile resurssien k\u00E4ytt\u00F6\u00E4 ja seuraa, onko tarvetta lis\u00E4tietokoneille k\u00E4\u00E4nn\u00F6sty\u00F6t\u00E4 varten. -Manage\ Jenkins=S\u00E4\u00E4d\u00E4 Jenkinsia +LoadStatisticsText=Tarkkaile resurssien käyttöä ja seuraa, onko tarvetta lisätietokoneille käännöstyötä varten. +Manage\ Jenkins=Säädä Jenkinsia Manage\ Nodes=Hallitse Jenkins-solmuja Reload\ Configuration\ from\ Disk=Uudelleenlataa asetukset Script\ Console=Skriptikonsoli -Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Pys\u00E4ytt\u00E4\u00E4 uusien k\u00E4\u00E4nn\u00F6ksien k\u00E4ynnist\u00E4misen, ett\u00E4 j\u00E4rjestelm\u00E4 voidaan ajaa turvallisesti alas. -SystemLogText=J\u00E4rjestelm\u00E4lokissa n\u00E4kyy Jenkinsiin liittyv\u00E4 java.util.logging-tuloste. -Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=K\u00E4yt\u00E4 t\u00E4t\u00E4, kun asetustiedostoja on muokattu. +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Pysäyttää uusien käännöksien käynnistämisen, että järjestelmä voidaan ajaa turvallisesti alas. +SystemLogText=Järjestelmälokissa näkyy Jenkinsiin liittyvä java.util.logging-tuloste. +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Käytä tätä, kun asetustiedostoja on muokattu. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_fr.properties index 0b5fa176bd68..f70cc363deaa 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_fr.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Ajouter, supprimer, contr\u00F4ler et surveiller les divers n\u0153uds que Jenkins utilise pour ex\u00E9cuter les jobs. -Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Ex\u00E9cute des scripts arbitraires pour l\u2019administration, la r\u00E9solution de probl\u00E8mes ou pour un diagnostic. -Load\ Statistics=Statistiques d\u2019utilisation -LoadStatisticsText=V\u00E9rifiez l\u2019utilisation des ressources et d\u00E9cidez si vous avez besoin d\u2019ordinateurs suppl\u00E9mentaires pour vos constructions. +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Ajouter, supprimer, contrôler et surveiller les divers nÅ“uds que Jenkins utilise pour exécuter les jobs. +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Exécute des scripts arbitraires pour l’administration, la résolution de problèmes ou pour un diagnostic. +Load\ Statistics=Statistiques d’utilisation +LoadStatisticsText=Vérifiez l’utilisation des ressources et décidez si vous avez besoin d’ordinateurs supplémentaires pour vos constructions. Manage\ Jenkins=Administrer Jenkins -Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Cesser d''ex\u00E9cuter de nouveaux builds, afin que le syst\u00E8me puisse se fermer. -are.you.sure={0} : \u00EAtes-vous s\u00FBr ? +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Cesser d''exécuter de nouveaux builds, afin que le système puisse se fermer. +are.you.sure={0} : êtes-vous sûr ? diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_he.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_he.properties index e7dfb58405f5..e514992fdc83 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_he.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_he.properties @@ -20,18 +20,18 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=\u05D4\u05D5\u05E1\u05E3, \u05D4\u05E1\u05E8 \u05D5\u05E2\u05E7\u05D5\u05D1 \u05D0\u05D7\u05E8 \u05D4\u05DE\u05DB\u05D5\u05E0\u05D5\u05EA-\u05D4\u05D1\u05E0\u05D9\u05D4 \u05D4\u05E9\u05D5\u05E0\u05D5\u05EA \u05D4\u05DE\u05E9\u05E8\u05EA\u05D5\u05EA \u05D0\u05EA \u05D2\u05F3\u05E0\u05E7\u05D9\u05E0\u05E1 -Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=\u05D4\u05D5\u05E1\u05E3, \u05D4\u05E1\u05E8, \u05D7\u05E1\u05D5\u05DD \u05D0\u05D5 \u05D4\u05E1\u05E8 \u05EA\u05D5\u05E1\u05E4\u05D9\u05DD \u05D5\u05D4\u05E8\u05D7\u05D1\u05D5\u05EA \u05E9\u05DC \u05D2\u05F3\u05E0\u05E7\u05D9\u05E0\u05E1. -Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=\u05D4\u05EA\u05E2\u05DC\u05DD \u05DE\u05DB\u05DC \u05D4\u05DE\u05D9\u05D3\u05E2 \u05D1\u05D6\u05DB\u05E8\u05D5\u05DF \u05D5\u05D8\u05E2\u05DF \u05E9\u05D5\u05D1 \u05DE\u05D4\u05D3\u05D9\u05E1\u05E7 -Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=\u05D4\u05E6\u05D2 \u05DE\u05D9\u05D3\u05E2 \u05E2\u05DC \u05E1\u05D1\u05D9\u05D1\u05EA-\u05D4\u05E2\u05D1\u05D5\u05D3\u05D4 \u05DB\u05D3\u05D9 \u05DC\u05E2\u05D6\u05D5\u05E8 \u05D1\u05D0\u05D9\u05EA\u05D5\u05E8 \u05EA\u05E7\u05DC\u05D5\u05EA -Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=\u05D4\u05E8\u05E5 \u05E1\u05E7\u05E8\u05D9\u05E4\u05D8 \u05DB\u05DC\u05E9\u05D4\u05D5 \u05DB\u05D3\u05D9 \u05DC\u05E0\u05D4\u05DC \u05D0\u05D5 \u05DC\u05D6\u05D4\u05D5\u05EA \u05D1\u05E2\u05D9\u05D5\u05EA -Jenkins\ CLI=CLI \u05E9\u05DC \u05D2\u05F3\u05E0\u05E7\u05D9\u05E0\u05E1 -JenkinsCliText=\u05E0\u05D4\u05DC \u05D0\u05EA \u05D2''\u05E0\u05E7\u05D9\u05E0\u05E1 \u05DE\u05EA\u05D5\u05DA \u05E1\u05E7\u05E8\u05D9\u05E4\u05D8 -Load\ Statistics=\u05E1\u05D8\u05D8\u05D9\u05E1\u05D8\u05D9\u05E7\u05D5\u05EA \u05E2\u05DC \u05E2\u05D5\u05DE\u05E1 -LoadStatisticsText=\u05D1\u05D3\u05D5\u05E7 \u05D0\u05EA \u05E0\u05D9\u05E6\u05D5\u05DC \u05DE\u05E9\u05D0\u05D1\u05D9-\u05D4\u05DE\u05E2\u05E8\u05DB\u05EA \u05DB\u05D3\u05D9 \u05DC\u05E8\u05D0\u05D5\u05EA \u05D0\u05DD \u05D9\u05E9 \u05E6\u05D5\u05E8\u05DA \u05D1\u05DB\u05D7-\u05DE\u05D9\u05D7\u05E9\u05D5\u05D1 \u05E0\u05D5\u05E1\u05E3. -Manage\ Jenkins=\u05D4\u05D2\u05D3\u05E8\u05EA \u05D2\u05F3\u05E0\u05E7\u05D9\u05E0\u05E1 -Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=\u05D0\u05DC \u05EA\u05D0\u05E4\u05E9\u05E8 \u05DC\u05D1\u05E0\u05D9\u05D5\u05EA \u05D7\u05D3\u05E9\u05D5\u05EA \u05DC\u05D4\u05EA\u05D7\u05D9\u05DC, \u05DB\u05D3\u05D9 \u05E9\u05E0\u05D9\u05EA\u05DF \u05D9\u05D4\u05D9\u05D4 \u05DC\u05DB\u05D1\u05D5\u05EA \u05D4\u05DE\u05E2\u05E8\u05DB\u05EA \u05D1\u05D1\u05D8\u05D7\u05D4. -System\ Log=\u05DC\u05D5\u05D2\u05D9\u05DD \u05E9\u05DC \u05D4\u05DE\u05E2\u05E8\u05DB\u05EA -SystemLogText=\u05DC\u05D5\u05D2\u05D9\u05DD \u05E9\u05DC \u05D4\u05DE\u05E2\u05E8\u05DB\u05EA \u05DC\u05D5\u05DB\u05D3\u05D9\u05DD \u05E4\u05DC\u05D8 \u05DE-java.util.logging \u05E9\u05E7\u05E9\u05D5\u05E8 \u05DC\u05D2\u05F3\u05E0\u05E7\u05D9\u05E0\u05E1. -Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=\u05E9\u05D9\u05DE\u05D5\u05E9\u05D9 \u05DB\u05D0\u05E9\u05E8 \u05E2\u05D3\u05DB\u05E0\u05EA \u05E7\u05D1\u05E6\u05D9 \u05DE\u05E2\u05E8\u05DB\u05EA \u05D9\u05E9\u05D9\u05E8\u05D5\u05EA \u05E2\u05DC \u05D4\u05D3\u05D9\u05E1\u05E7 -are.you.sure={0}: \u05D4\u05D0\u05DD \u05D0\u05EA\u05D4 \u05D1\u05D8\u05D5\u05D7? +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=הוסף, הסר ועקוב ×חר המכונות-הבניה השונות המשרתות ×ת ג׳נקינס +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=הוסף, הסר, ×—×¡×•× ×ו הסר ×ª×•×¡×¤×™× ×•×”×¨×—×‘×•×ª של ג׳נקינס. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=×”×ª×¢×œ× ×ž×›×œ המידע בזכרון וטען שוב מהדיסק +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=הצג מידע על סביבת-העבודה כדי לעזור ב×יתור תקלות +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=הרץ סקריפט כלשהו כדי לנהל ×ו לזהות בעיות +Jenkins\ CLI=CLI של ג׳נקינס +JenkinsCliText=נהל ×ת ×’''נקינס מתוך סקריפט +Load\ Statistics=סטטיסטיקות על עומס +LoadStatisticsText=בדוק ×ת ניצול מש×בי-המערכת כדי לר×ות ×× ×™×© צורך בכח-מיחשוב נוסף. +Manage\ Jenkins=הגדרת ג׳נקינס +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=×ל ת×פשר לבניות חדשות להתחיל, כדי שניתן ×™×”×™×” לכבות המערכת בבטחה. +System\ Log=×œ×•×’×™× ×©×œ המערכת +SystemLogText=×œ×•×’×™× ×©×œ המערכת ×œ×•×›×“×™× ×¤×œ×˜ מ-java.util.logging שקשור לג׳נקינס. +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=שימושי ×›×שר עדכנת קבצי מערכת ישירות על הדיסק +are.you.sure={0}: ×”×× ×תה בטוח? diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_hu.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_hu.properties index 54cb38a37680..81da380c7011 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_hu.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_hu.properties @@ -20,20 +20,20 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Hozz\u00E1ad, elt\u00E1vol\u00EDt, vez\u00E9rel \u00E9s monitoroz egyes csom\u00F3pontokat, amin a Jenkins feladatokat futtat. -Cancel\ Shutdown=Le\u00E1ll\u00EDt\u00E1s megszak\u00EDt\u00E1sa -Configure\ System=Rendszer konfigur\u00E1l\u00E1sa -Configure\ global\ settings\ and\ paths.=Glob\u00E1lis be\u00E1ll\u00EDt\u00E1sok \u00E9s \u00FAtvonalak konfigur\u00E1l\u00E1sa -Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Tetsz\u0151leges adminisztr\u00E1ci\u00F3s/hibakezel\u0151/diagnosztikai szkript futtat\u00E1sa. +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Hozzáad, eltávolít, vezérel és monitoroz egyes csomópontokat, amin a Jenkins feladatokat futtat. +Cancel\ Shutdown=Leállítás megszakítása +Configure\ System=Rendszer konfigurálása +Configure\ global\ settings\ and\ paths.=Globális beállítások és útvonalak konfigurálása +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=TetszÅ‘leges adminisztrációs/hibakezelÅ‘/diagnosztikai szkript futtatása. Jenkins\ CLI=Jenkins parancssor -JenkinsCliText=El\u00E9rheti/ir\u00E1ny\u00EDthatja a Jenkins shell-b\u0151l, vagy a saj\u00E1t szkript-j\u00E9b\u0151l. -Load\ Statistics=Terhel\u00E9si statisztika -Manage\ Jenkins=Jenkins be\u00E1ll\u00EDt\u00E1sa -Manage\ Plugins=B\u0151v\u00EDtm\u00E9nyek be\u00E1ll\u00EDt\u00E1sa -Prepare\ for\ Shutdown=Lekapcsol\u00E1sra felk\u00E9sz\u00FClni -Reload\ Configuration\ from\ Disk=A mentett be\u00E1ll\u00EDt\u00E1sok \u00FAjrat\u00F6lt\u00E9se +JenkinsCliText=Elérheti/irányíthatja a Jenkins shell-bÅ‘l, vagy a saját szkript-jébÅ‘l. +Load\ Statistics=Terhelési statisztika +Manage\ Jenkins=Jenkins beállítása +Manage\ Plugins=BÅ‘vítmények beállítása +Prepare\ for\ Shutdown=Lekapcsolásra felkészülni +Reload\ Configuration\ from\ Disk=A mentett beállítások újratöltése Script\ Console=Szkript konzol -Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Le\u00E1ll\u00EDtja az \u00FAj \u00E9p\u00EDt\u00E9sek futtat\u00E1s\u00E1t, \u00EDgy a rendszer biztons\u00E1gosan le\u00E1ll\u00EDthat\u00F3 lesz. -System\ Information=Rendszer inform\u00E1ci\u00F3k -System\ Log=Rendszer napl\u00F3 -SystemLogText=A rendszer log elkapja a java.util.logging kimenet\u00E9nek Jenkins-re vonatkoz\u00F3 \u00FCzeneteit. +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Leállítja az új építések futtatását, így a rendszer biztonságosan leállítható lesz. +System\ Information=Rendszer információk +System\ Log=Rendszer napló +SystemLogText=A rendszer log elkapja a java.util.logging kimenetének Jenkins-re vonatkozó üzeneteit. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_it.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_it.properties index 38f0a0dc63bd..a6d78e32c0a3 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_ja.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_ja.properties index 98323d1c09d4..5055849217f3 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_ja.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Manage\ Jenkins=Jenkins\u306e\u7ba1\u7406 -are.you.sure={0}: \u3088\u308d\u3057\u3044\u3067\u3059\u304b? +Manage\ Jenkins=Jenkinsã®ç®¡ç† +are.you.sure={0}: よã‚ã—ã„ã§ã™ã‹? diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_ko.properties index 4cd66f008cf4..8b8335ea63e1 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_ko.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_ko.properties @@ -20,17 +20,17 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Jenkins\uC758 Job\uB4E4\uC774 \uC2E4\uD589\uB418\uB294 \uB2E4\uC591\uD55C \uB178\uB4DC\uB4E4 \uCD94\uAC00, \uC81C\uAC70, \uC81C\uC5B4 \uBC0F \uBAA8\uB2C8\uD130\uB9C1 -Cancel\ Shutdown=\uB044\uAE30 \uCDE8\uC18C -Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=\uBA54\uBAA8\uB9AC\uC5D0 \uB85C\uB4DC\uB41C \uBAA8\uB4E0 \uB370\uC774\uD130\uB97C \uD3D0\uAE30\uD558\uACE0, \uD30C\uC77C\uC2DC\uC2A4\uD15C\uC5D0\uC11C \uBAA8\uB4E0 \uB370\uC774\uD130\uB97C \uB9AC\uB85C\uB4DC\uD55C\uB2E4. -Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=\uAD00\uB9AC/\uBB38\uC81C\uD574\uACB0/\uC9C4\uB2E8\uC744 \uC704\uD55C \uC784\uC758\uC758 \uC2A4\uD06C\uB9BD\uD2B8\uB97C \uC2E4\uD589\uD569\uB2C8\uB2E4. +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Jenkinsì˜ Jobë“¤ì´ ì‹¤í–‰ë˜ëŠ” 다양한 노드들 추가, 제거, 제어 ë° ëª¨ë‹ˆí„°ë§ +Cancel\ Shutdown=ë„기 취소 +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=ë©”ëª¨ë¦¬ì— ë¡œë“œëœ ëª¨ë“  ë°ì´í„°ë¥¼ í기하고, 파ì¼ì‹œìŠ¤í…œì—ì„œ 모든 ë°ì´í„°ë¥¼ 리로드한다. +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=관리/문제해결/ì§„ë‹¨ì„ ìœ„í•œ ìž„ì˜ì˜ 스í¬ë¦½íŠ¸ë¥¼ 실행합니다. Jenkins\ CLI=Jenkins CLI ( Command Line Interface ) -JenkinsCliText=\uC9C1\uC811 \uC791\uC131\uD55C \uC258, \uC2A4\uD06C\uB9BD\uD2B8\uB85C Jenkins \uC811\uADFC/\uAD00\uB9AC -Manage\ Jenkins=Jenkins \uAD00\uB9AC -Prepare\ for\ Shutdown=\uB044\uAE30 \uC804 \uC900\uBE44 -Reload\ Configuration\ from\ Disk=\uB514\uC2A4\uD06C\uC5D0\uC11C \uC124\uC815\uC744 \uB2E4\uC2DC \uB85C\uB4DC -Script\ Console=\uC2A4\uD06C\uB9BD\uD2B8 \uCF58\uC194 -Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=\uC0C8\uB85C\uC6B4 \uBE4C\uB4DC -SystemLogText=java.util.loggin\uC5D0\uC11C \uCD9C\uB825\uB41C \uC820\uD0A8\uC2A4\uC640 \uB87C\uACAC\uB41C \uC2DC\uC2A4\uD15C \uB85C\uADF8 -Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=\uB514\uC2A4\uD06C\uC758 \uD30C\uC77C\uC744 \uC9C1\uC811 \uBCC0\uACBD\uD588\uC744 \uB54C \uC720\uC6A9\uD569\uB2C8\uB2E4. -are.you.sure=\uD655\uC2E4 \uD569\uB2C8\uAE4C? +JenkinsCliText=ì§ì ‘ 작성한 쉘, 스í¬ë¦½íŠ¸ë¡œ Jenkins ì ‘ê·¼/관리 +Manage\ Jenkins=Jenkins 관리 +Prepare\ for\ Shutdown=ë„기 ì „ 준비 +Reload\ Configuration\ from\ Disk=디스í¬ì—ì„œ ì„¤ì •ì„ ë‹¤ì‹œ 로드 +Script\ Console=스í¬ë¦½íŠ¸ 콘솔 +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=새로운 빌드 +SystemLogText=java.util.logginì—ì„œ ì¶œë ¥ëœ ì  í‚¨ìŠ¤ì™€ ë¡¼ê²¬ëœ ì‹œìŠ¤í…œ 로그 +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=디스í¬ì˜ 파ì¼ì„ ì§ì ‘ ë³€ê²½í–ˆì„ ë•Œ 유용합니다. +are.you.sure=확실 합니까? diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_lt.properties index fce708b07257..763fa1b2e4e6 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_lt.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_lt.properties @@ -1,2 +1,2 @@ Manage\ Jenkins=Tvarkyti Jenkins -are.you.sure={0}: ar j\u016Bs tikri? +are.you.sure={0}: ar jÅ«s tikri? diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_lv.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_lv.properties index e5c507d30315..0821213978e7 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_lv.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_lv.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Izt\u012Br\u012Bt atmi\u0146\u0101 iel\u0101d\u0113tos datus un iel\u0101d\u0113t no jauna no diska. -Manage\ Jenkins=P\u0101rvald\u012Bt Jenkins -Prepare\ for\ Shutdown=Sagatavoties Izsl\u0113g\u0161anai -Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=\u0160is ir noder\u012Bgi, ja ir laboti konfigur\u0101cijas faili. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=IztÄ«rÄ«t atmiÅ†Ä ielÄdÄ“tos datus un ielÄdÄ“t no jauna no diska. +Manage\ Jenkins=PÄrvaldÄ«t Jenkins +Prepare\ for\ Shutdown=Sagatavoties IzslÄ“gÅ¡anai +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Å is ir noderÄ«gi, ja ir laboti konfigurÄcijas faili. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_nb_NO.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_nb_NO.properties index 96eff84e9914..40f91d494e81 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_nb_NO.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_nb_NO.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=T\u00F8m minnet for innlastede data, og last alt inn p\u00E5 nytt fra filsystemet. -Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Viser forskjellig informasjon om milj\u00F8et til Jenkins serveren for \u00E5 hjelpe til med feils\u00F8king. -Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Kj\u00F8r vilk\u00E5rlige script for administrative/feils\u00F8king/diagnose oppgaver. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Tøm minnet for innlastede data, og last alt inn pÃ¥ nytt fra filsystemet. +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Viser forskjellig informasjon om miljøet til Jenkins serveren for Ã¥ hjelpe til med feilsøking. +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Kjør vilkÃ¥rlige script for administrative/feilsøking/diagnose oppgaver. Manage\ Jenkins=Behandle Jenkins diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_pl.properties index 36c0c963b131..164be01cee62 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_pl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_pl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Manage\ Jenkins=Zarz\u0105dzaj Jenkinsem -are.you.sure={0}: czy jeste\u015B pewien? +Manage\ Jenkins=ZarzÄ…dzaj Jenkinsem +are.you.sure={0}: czy jesteÅ› pewien? diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_pt_BR.properties index be23d139a575..4ede2f490c97 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_pt_BR.properties @@ -22,4 +22,4 @@ Manage\ Jenkins=Gerenciar o Jenkins are.you.sure={0}: tem certeza? -updateAvailable={0} atualiza\u00E7\u00E3o(\u00F5es) dispon\u00EDvel(is) +updateAvailable={0} atualização(ões) disponível(is) diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_pt_PT.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_pt_PT.properties index 51e306f7154c..205a72b0c92f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_pt_PT.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_pt_PT.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Adicionar, remover, controlar e monitorizar v\u00E1rios nodes que o Jenkins -Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Mostrar v\u00E1rias informa\u00E7\u00F5es de ambiente para resolver problemas -Load\ Statistics=Carregar Estat\u00EDsticas +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Adicionar, remover, controlar e monitorizar vários nodes que o Jenkins +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Mostrar várias informações de ambiente para resolver problemas +Load\ Statistics=Carregar Estatísticas Manage\ Jenkins=Gerir o Jenkins Manage\ Nodes=Gerir "Nodes" Prepare\ for\ Shutdown=Preparar para Encerramento -Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Para de executar novos builds, para que o sistema possa ser desligado em seguran\u00E7a. +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Para de executar novos builds, para que o sistema possa ser desligado em segurança. System\ Log=Log Sistema diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_ro.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_ro.properties index 014701bcb4b2..feb8b1bd28cc 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_ro.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_ro.properties @@ -20,19 +20,19 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Adauga\u021Bi, \u0219terge\u021Bi, activa\u021Bi sau dezactiva\u021Bi plugin-uri ce pot extinde func\u021Bionalitate lui Jenkins. -Configure\ System=Configureaz\u0103 Sistemul -Configure\ global\ settings\ and\ paths.=Configureaz\u0103 set\u0103rile globale \u015Fi c\u0103ile. -Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Arunc\u0103 toate datele \u00EEnc\u0103rcate \u00EEn memorie \u0219i re\u00EEncarc\u0103 totul de pe sistemul de fi\u0219iere. -Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Afi\u0219eaz\u0103 o varietate de informa\u021Bie de mediu pentru a asista la rezolvarea problemelor. -JenkinsCliText=Accesa\u021Bi/organiza\u021Bi Jenkins din consola dvs, sau din scriptul dvs. -Load\ Statistics=Statistici de \u00CEnc\u0103rcare -LoadStatisticsText=Verifica\u021Bi utilizarea dvs de resurse \u0219i vede\u021Bi dac\u0103 ave\u021Bi nevoie de mai multe computere pentru build-urile dvs. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=AdaugaÈ›i, È™tergeÈ›i, activaÈ›i sau dezactivaÈ›i plugin-uri ce pot extinde funcÈ›ionalitate lui Jenkins. +Configure\ System=Configurează Sistemul +Configure\ global\ settings\ and\ paths.=Configurează setările globale ÅŸi căile. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Aruncă toate datele încărcate în memorie È™i reîncarcă totul de pe sistemul de fiÈ™iere. +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=AfiÈ™ează o varietate de informaÈ›ie de mediu pentru a asista la rezolvarea problemelor. +JenkinsCliText=AccesaÈ›i/organizaÈ›i Jenkins din consola dvs, sau din scriptul dvs. +Load\ Statistics=Statistici de ÃŽncărcare +LoadStatisticsText=VerificaÈ›i utilizarea dvs de resurse È™i vedeÈ›i dacă aveÈ›i nevoie de mai multe computere pentru build-urile dvs. Manage\ Jenkins=Administrare Jenkins Manage\ Nodes=Configureaza nodurile -Reload\ Configuration\ from\ Disk=Re\u00EEncarc\u0103 Configura\u021Bia de pe Disc -Script\ Console=Consol\u0103 de Script +Reload\ Configuration\ from\ Disk=Reîncarcă ConfiguraÈ›ia de pe Disc +Script\ Console=Consolă de Script Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Opreste crearea de pachete noi pentru ca sistemul sa poata fi oprit in siguranta. -System\ Information=Informa\u021Bii de Sistem +System\ Information=InformaÈ›ii de Sistem System\ Log=Log de Sistem -Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Util dac\u0103 a\u021Bi modificat fi\u0219ierele de configurare direct pe disc. +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Util dacă aÈ›i modificat fiÈ™ierele de configurare direct pe disc. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_ru.properties index e1fcd446931d..e25f6847fc70 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Manage\ Jenkins=\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 Jenkins -are.you.sure={0}: \u0432\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B? +Manage\ Jenkins=ÐаÑтройка Jenkins +are.you.sure={0}: вы уверены? diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_sk.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_sk.properties index 479f87dd9574..ab9750511ff5 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_sk.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_sk.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Load\ Statistics=\u0160tatistiky za\u0165a\u017Eenia -Manage\ Jenkins=Spravova\u0165 Jenkins -Manage\ Nodes=Spravova\u0165 uzly -are.you.sure={0}: si si ist\u00FD? +Load\ Statistics=Å tatistiky zaÅ¥aženia +Manage\ Jenkins=SpravovaÅ¥ Jenkins +Manage\ Nodes=SpravovaÅ¥ uzly +are.you.sure={0}: si si istý? diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_sl.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_sl.properties index e2e9f6ac49aa..755db373631d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_sl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_sl.properties @@ -3,12 +3,12 @@ Configure\ System=Nastavite sistem Configure\ global\ settings\ and\ paths.=Nastavite globalnih nastavitev in poti Jenkins\ CLI=Jenkinsov CLI -Load\ Statistics=Nalo\u017Ei statistiko +Load\ Statistics=Naloži statistiko Manage\ Jenkins=Upravljaj Jenkins Manage\ Plugins=Upravljanje vstavkov Prepare\ for\ Shutdown=Pripravite se za zaustavitev sistema -Reload\ Configuration\ from\ Disk=Ponovno naslo\u017Eite nastavitve z diska +Reload\ Configuration\ from\ Disk=Ponovno nasložite nastavitve z diska Script\ Console=Skriptna konzola System\ Information=Sistemske informacije System\ Log=Sistemski dnevnik -Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Uporabno, \u010De spreminjate nastavitvene datoteke neposredno na disku. +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Uporabno, Äe spreminjate nastavitvene datoteke neposredno na disku. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_sr.properties index 8a9de234c0eb..31ace6e8ca9b 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_sr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_sr.properties @@ -1,26 +1,26 @@ # This file is under the MIT License by authors -Configure\ System=\u041F\u043E\u0441\u0442\u0430\u0432\u0438 \u0441\u0438\u0441\u0442\u0435\u043C\u0441\u043A\u0430 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 -Manage\ Jenkins=\u0423\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 Jenkins-\u043E\u043C -are.you.sure={0}: \u0434\u0430\u043B\u0438 \u0441\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043D\u0438? -Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=\u0414\u043E\u0434\u0430\u0458\u0442\u0435, \u0443\u043A\u043B\u043E\u043D\u0438\u0442\u0435, \u0438 \u043D\u0430\u0434\u0436\u0438\u0440\u0430\u0432\u0430\u0458 \u043C\u0430\u0448\u0438\u043D\u0430\u043C\u0430 -Jenkins\ CLI=Jenkins \u0441\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u0435 \u043B\u0438\u043D\u0438\u0458\u0435 -Cancel\ Shutdown=\u041E\u0442\u043A\u0430\u0436\u0438 \u0433\u0430\u0448\u0435\u045A\u0435 -Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=\u041A\u043E\u0440\u0438\u0441\u043D\u043E \u043A\u0430\u0434 \u0441\u0442\u0435 \u043F\u0440\u043E\u043C\u0435\u043D\u0438\u043B\u0438 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0434\u0438\u0440\u0435\u043A\u0442\u043D\u043E \u0441\u0430 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430\u043C\u0430. -System\ Log=\u0421\u0438\u0441\u0442\u0435\u043C\u0441\u043A\u0438 \u0436\u0443\u0440\u043D\u0430\u043B -System\ Information=\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0435 \u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0443 -Reload\ Configuration\ from\ Disk=\u041F\u043E\u043D\u043E\u0432\u043E \u0443\u0447\u0438\u0442\u0430\u0458\u0442\u0435 \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0435 \u0441\u0430 \u0434\u0438\u0441\u043A\u0430. -Prepare\ for\ Shutdown=\u041F\u0440\u0438\u043F\u0440\u0435\u043C\u0438 \u0437\u0430 \u0433\u0430\u0448\u0435\u045A\u0435 -Manage\ Plugins=\u0423\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 \u043C\u043E\u0434\u0443\u043B\u0438\u043C\u0430 -Manage\ Nodes=\u0423\u0440\u0435\u0434\u0438 \u043C\u0430\u0448\u0438\u043D\u0435 -LoadStatisticsText=\u041F\u0440\u0435\u0433\u043B\u0435\u0434 \u0440\u0430\u0437\u043D\u0438\u0445 \u0440\u0435\u0441\u0443\u0440\u0441\u0430, \u0448\u0442\u043E \u0432\u0430\u043C \u043F\u043E\u043C\u043E\u0436\u0435 \u0434\u0430 \u043E\u0434\u0440\u0435\u0434\u0438\u0442\u0435 \u0430\u043A\u043E \u0458\u0435 \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E \u0432\u0438\u0448\u0435 \u043C\u0430\u0448\u0438\u043D\u0430. -Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=\u041F\u0440\u0438\u043A\u0430\u0437\u0443\u0458\u0435 \u0440\u0430\u0437\u043D\u0443 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0443 \u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0443 \u0434\u0430 \u0431\u0443 \u043F\u043E\u043C\u0430\u0433\u0430\u043B\u043E \u0441\u0430 \u0440\u0435\u0448\u0430\u0432\u0430\u045A\u0435\u043C \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0438\u043C\u0430. -Load\ Statistics=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0435 \u043E \u043E\u043F\u0442\u0435\u0440\u0435\u045B\u0435\u045A\u0443 -Configure\ global\ settings\ and\ paths.=\u041F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0435 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u0438\u0445 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0430 \u0438 \u043F\u0443\u0442\u0435\u0432\u0430. -Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=\u041E\u0434\u0431\u0430\u0446\u0438 \u0441\u0432\u0430 \u0443\u0447\u0438\u0442\u0430\u043D\u0435 \u043F\u043E\u0434\u0430\u0442\u043A\u0435 \u0443 \u043C\u0435\u043C\u043E\u0440\u0438\u0458\u0438 \u0438 \u043F\u043E\u043D\u043E\u0432\u043E \u0443\u0447\u0438\u0442\u0430\u0458 \u0441\u0430 \u0434\u0438\u0441\u043A\u0430. -JenkinsCliText=\u041F\u0440\u0438\u0441\u0442\u0443\u043F \u0438 \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 Jenkins \u0441\u0430 \u043A\u043E\u043D\u0437\u043E\u043B\u0435 \u0438\u043B\u0438 \u0441\u043A\u0440\u0438\u043F\u0442\u0430. -Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=\u0418\u0437\u0432\u0440\u0448\u0430\u0432\u0430 \u0430\u0440\u0431\u0438\u0442\u0440\u0430\u0440\u043D\u0438 \u0441\u043A\u0438\u0440\u043F\u0442 \u0437\u0430 \u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0458\u0443, \u0440\u0435\u0448\u0430\u0432\u0430\u045A\u0435 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0430, \u0438 \u0434\u0438\u0430\u0433\u043D\u043E\u0441\u0442\u0438\u043A\u0443. -Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=\u041F\u0440\u0435\u0441\u0442\u0430\u0458\u0435 \u043D\u043E\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0434\u0430 \u0431\u0438 \u043C\u043E\u0433\u0430\u043E \u0441\u0438\u0441\u0442\u0435\u043C \u0431\u0435\u0437\u0431\u0435\u0434\u043D\u043E \u0443\u0433\u0430\u0441\u0438\u0441\u0442\u0438. -Script\ Console=\u041A\u043E\u043D\u0437\u043E\u043B\u0430 -SystemLogText=\u0416\u0443\u0440\u043D\u0430\u043B \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u0437\u0430\u043F\u0438\u0441\u0443\u0458\u0435 \u0438\u0441\u0445\u043E\u0434 java.util.logging \u043A\u043E\u0458\u0438 \u0441\u0435 \u043E\u0434\u043D\u043E\u0441\u0438 \u043D\u0430 Jenkins. -Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=\u0414\u043E\u0434\u0430\u0458\u0442\u0435, \u0443\u043A\u043B\u043E\u043D\u0438\u0442\u0435, \u0438\u043B\u0438 \u043E\u043D\u0435\u043C\u043E\u0433\u0443\u045B\u0438\u0442\u0435 \u043C\u043E\u0434\u0443\u043B\u0435 \u043A\u043E\u0458\u0435 \u043F\u0440\u043E\u0448\u0438\u0440\u0443\u0458\u0443 \u043C\u043E\u0433\u0443\u045B\u043D\u043E\u0441\u0442\u0435 Jenkins-\u0430. +Configure\ System=ПоÑтави ÑиÑтемÑка подешавања +Manage\ Jenkins=Управљање Jenkins-ом +are.you.sure={0}: дали Ñте Ñигурни? +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Додајте, уклоните, и наджиравај машинама +Jenkins\ CLI=Jenkins Ñа командне линије +Cancel\ Shutdown=Откажи гашење +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=КориÑно кад Ñте променили подешавања директно Ñа датотекама. +System\ Log=СиÑтемÑки журнал +System\ Information=Информације о ÑиÑтему +Reload\ Configuration\ from\ Disk=Поново учитајте поÑтавке Ñа диÑка. +Prepare\ for\ Shutdown=Припреми за гашење +Manage\ Plugins=Управљање модулима +Manage\ Nodes=Уреди машине +LoadStatisticsText=Преглед разних реÑурÑа, што вам поможе да одредите ако је потребно више машина. +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Приказује разну информацију о ÑиÑтему да бу помагало Ñа решавањем проблемима. +Load\ Statistics=СтатиÑтике о оптерећењу +Configure\ global\ settings\ and\ paths.=Подешавање глобалних параметра и путева. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Одбаци Ñва учитане податке у меморији и поново учитај Ñа диÑка. +JenkinsCliText=ПриÑтуп и управљање Jenkins Ñа конзоле или Ñкрипта. +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Извршава арбитрарни Ñкирпт за админиÑтрацију, решавање проблема, и диагноÑтику. +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=ПреÑтаје нова изградња да би могао ÑиÑтем безбедно угаÑиÑти. +Script\ Console=Конзола +SystemLogText=Журнал ÑиÑтема запиÑује иÑход java.util.logging који Ñе одноÑи на Jenkins. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Додајте, уклоните, или онемогућите модуле које проширују могућноÑте Jenkins-а. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_sv_SE.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_sv_SE.properties index 0c61a995efd1..b9838d5642e4 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_sv_SE.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_sv_SE.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Installera, ta bort, aktivera eller avaktivera insticksmoduler f\u00F6r ut\u00F6kad funktionalitet. -Cancel\ Shutdown=Stoppa Nedst\u00E4ngning +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Installera, ta bort, aktivera eller avaktivera insticksmoduler för utökad funktionalitet. +Cancel\ Shutdown=Stoppa Nedstängning Configure\ System=Konfigurera Systemet Jenkins\ CLI=Jenkins Kommandsradstolk Manage\ Jenkins=Hantera Jenkins -Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Sluta starta nya byggen, s\u00E5 att systemet sedan kan st\u00E4ngas s\u00E4kert. -are.you.sure={0}: \u00E4r du s\u00E4ker? +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Sluta starta nya byggen, sÃ¥ att systemet sedan kan stängas säkert. +are.you.sure={0}: är du säker? diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_tr.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_tr.properties index bbcdc896624d..ba78b35f391f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_tr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Manage\ Jenkins=Jenkins''i Y\u00F6net +Manage\ Jenkins=Jenkins''i Yönet are.you.sure={0}: emin misin? diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_uk.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_uk.properties index aa1f08034c94..36f156bb79f4 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_uk.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_uk.properties @@ -20,22 +20,22 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=\u0414\u043E\u0434\u0430\u0432\u0430\u043D\u043D\u044F, \u0432\u0438\u0434\u0430\u043B\u0435\u043D\u043D\u044F, \u0443\u043F\u0440\u0430\u0432\u043B\u0456\u043D\u043D\u044F \u0456 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u0440\u0456\u0437\u043D\u043E\u043C\u0430\u043D\u0456\u0442\u043D\u0438\u043C\u0438 \u0432\u0443\u0437\u043B\u0430\u043C\u0438, \u043D\u0430 \u043A\u043E\u0442\u0440\u0438\u0445 \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441 \u0432\u0438\u043A\u043E\u043D\u0443\u0454 \u0437\u0430\u0432\u0434\u0430\u043D\u043D\u044F. -Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=\u0414\u043E\u0434\u0430\u0442\u0438, \u0432\u0438\u0434\u0430\u043B\u0438\u0442\u0438, \u0432\u0456\u0434\u043A\u043B\u044E\u0447\u0438\u0442\u0438 \u0430\u0431\u043E \u0443\u0432\u0456\u043C\u043A\u043D\u0443\u0442\u0438 \u043F\u043B\u0430\u0433\u0456\u043D\u0438, \u044F\u043A\u0456 \u043C\u043E\u0436\u0443\u0442\u044C \u0440\u043E\u0437\u0448\u0438\u0440\u0438\u0442\u0438 \u0444\u0443\u043D\u043A\u0446\u0456\u043E\u043D\u0430\u043B\u044C\u043D\u0456\u0441\u0442\u044C \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441\u0430 -Configure\ System=\u041A\u043E\u043D\u0444\u0456\u0491\u0443\u0440\u0430\u0446\u0456\u044F \u0441\u0438\u0441\u0442\u0435\u043C\u0438 -Configure\ global\ settings\ and\ paths.=\u0417\u043C\u0456\u043D\u0438\u0442\u0438 \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u0456 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u0442\u0430 \u0448\u043B\u044F\u0445\u0438. -Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438 \u0432\u0441\u0456 \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u0456 \u0434\u0430\u043D\u0456 \u0437 \u043F\u0430\u043C''\u044F\u0442\u0456 \u0456 \u043F\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F \u0432\u0441\u0435 \u0437 \u0444\u0430\u0439\u043B\u043E\u0432\u043E\u0457 \u0441\u0438\u0441\u0442\u0435\u043C\u0438. -Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u0438 \u0440\u0456\u0437\u043D\u043E\u043C\u0430\u043D\u0456\u0442\u043D\u0443 \u0456\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u044E \u043F\u0440\u043E \u0441\u0435\u0440\u0435\u0434\u043E\u0432\u0438\u0449\u0435, \u044F\u043A\u0430 \u043C\u043E\u0436\u0435 \u0434\u043E\u043F\u043E\u043C\u043E\u0433\u0442\u0438 \u043F\u0440\u0438 \u0443\u0441\u0443\u043D\u0435\u043D\u043D\u0456 \u043D\u0435\u0441\u043F\u0440\u0430\u0432\u043D\u043E\u0441\u0442\u0435\u0439. -Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=\u0412\u0438\u043A\u043E\u043D\u0430\u043D\u043D\u044F \u0434\u043E\u0434\u0430\u0442\u043A\u043E\u0432\u0438\u0445 \u0441\u0446\u0435\u043D\u0430\u0440\u0456\u0457\u0432 \u0434\u043B\u044F \u0430\u0434\u043C\u0456\u043D\u0456\u0441\u0442\u0440\u0443\u0432\u0430\u043D\u043D\u044F/\u0443\u0441\u0443\u043D\u0435\u043D\u043D\u044F \u043D\u0435\u0441\u043F\u0440\u0430\u0432\u043D\u043E\u0441\u0442\u0435\u0439/\u0434\u0456\u0430\u0433\u043D\u043E\u0441\u0442\u0438\u043A\u0438. -Jenkins\ CLI=\u041A\u043E\u043C\u0430\u043D\u0434\u043D\u0430 \u0441\u0442\u0440\u0456\u0447\u043A\u0430 \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441\u0430 -JenkinsCliText=\u0414\u043E\u0441\u0442\u0443\u043F/\u0443\u043F\u0440\u0430\u0432\u043B\u0456\u043D\u043D\u044F \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441\u043E\u043C \u0437 \u0432\u0430\u0448\u043E\u0457 \u043E\u0431\u043E\u043B\u043E\u043D\u043A\u0438 \u0430\u0431\u043E \u0437 \u0432\u0430\u0448\u043E\u0433\u043E \u0441\u0446\u0435\u043D\u0430\u0440\u0456\u044E \u0432\u0438\u043A\u043E\u043D\u0430\u043D\u043D\u044F. -LoadStatisticsText=\u041F\u0435\u0440\u0435\u0432\u0456\u0440\u0438\u0442\u0438 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F \u0440\u0435\u0441\u0443\u0440\u0441\u0456\u0432 \u0456 \u043F\u043E\u0434\u0438\u0432\u0438\u0442\u0438\u0441\u044F, \u0447\u0438 \u0432\u0430\u043C \u043F\u043E\u0442\u0440\u0456\u0431\u043D\u043E \u0431\u0456\u043B\u044C\u0448\u0435 \u043A\u043E\u043C\u043F''\u044E\u0442\u0435\u0440\u0456\u0432 \u0434\u043B\u044F \u0432\u0438\u043A\u043E\u043D\u0430\u043D\u043D\u044F \u0437\u0431\u0456\u0440\u043E\u043A. -Manage\ Jenkins=\u041A\u0435\u0440\u0443\u0432\u0430\u043D\u043D\u044F \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441\u043E\u043C -Manage\ Plugins=\u041A\u0435\u0440\u0443\u0432\u0430\u043D\u043D\u044F \u0434\u043E\u043F\u043E\u0432\u043D\u0435\u043D\u043D\u044F\u043C\u0438 -Prepare\ for\ Shutdown=\u041F\u0456\u0434\u0433\u043E\u0442\u0443\u0432\u0430\u0442\u0438 \u0434\u043E \u0432\u0438\u043C\u043A\u043D\u0435\u043D\u043D\u044F -Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=\u0417\u0443\u043F\u0438\u043D\u044F\u0454 \u0432\u0438\u043A\u043E\u043D\u0430\u043D\u043D\u044F \u043D\u043E\u0432\u0438\u0445 \u0437\u0431\u0456\u0440\u043E\u043A, \u0442\u0430\u043A\u0438\u043C \u0447\u0438\u043D\u043E\u043C, \u0449\u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u043C\u043E\u0436\u0435 \u0431\u0443\u0442\u0438 \u0432 \u043A\u0456\u043D\u0446\u0435\u0432\u043E\u043C\u0443 \u0440\u0430\u0445\u0443\u043D\u043A\u0443 \u0437\u0433\u043E\u0440\u043D\u0443\u0442\u0430 \u0431\u0435\u0437\u043F\u0435\u0447\u043D\u043E. -System\ Information=\u0412\u0456\u0434\u043E\u043C\u043E\u0441\u0442\u0456 \u043F\u0440\u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0443 -System\ Log=\u0421\u0438\u0441\u0442\u0435\u043C\u043D\u0438\u0439 \u043B\u043E\u0433 -SystemLogText=\u0421\u0438\u0441\u0442\u0435\u043C\u043D\u0438\u0439 \u0436\u0443\u0440\u043D\u0430\u043B \u0444\u0456\u043A\u0441\u0443\u0454 \u0432\u0438\u0432\u0456\u0434 \u0434\u0430\u043D\u0438\u0445 \u0437 java.util.logging \u043F\u043E\u0432''\u044F\u0437\u0430\u043D\u0438\u0445 \u0437 \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441. -Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=\u041A\u043E\u0440\u0438\u0441\u043D\u043E \u044F\u043A\u0449\u043E \u0432\u0438 \u043C\u043E\u0434\u0438\u0444\u0456\u043A\u0443\u0454\u0442\u0435 \u043A\u043E\u043D\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u0439\u043D\u0456 \u0444\u0430\u0439\u043B\u0438 \u043F\u0440\u044F\u043C\u043E \u043D\u0430 \u0434\u0438\u0441\u043A\u0443 -are.you.sure={0}: \u0412\u0438 \u0432\u043F\u0435\u0432\u043D\u0435\u043D\u0456? +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=ДодаваннÑ, видаленнÑ, ÑƒÐ¿Ñ€Ð°Ð²Ð»Ñ–Ð½Ð½Ñ Ñ– контроль різноманітними вузлами, на котрих Ð”Ð¶ÐµÐ½ÐºÑ–Ð½Ñ Ð²Ð¸ÐºÐ¾Ð½ÑƒÑ” завданнÑ. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Додати, видалити, відключити або увімкнути плагіни, Ñкі можуть розширити функціональніÑÑ‚ÑŒ ДженкінÑа +Configure\ System=ÐšÐ¾Ð½Ñ„Ñ–Ò‘ÑƒÑ€Ð°Ñ†Ñ–Ñ ÑиÑтеми +Configure\ global\ settings\ and\ paths.=Змінити глобальні Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° шлÑхи. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Видалити вÑÑ– завантажені дані з пам''ÑÑ‚Ñ– Ñ– Ð¿ÐµÑ€ÐµÐ·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð²Ñе з файлової ÑиÑтеми. +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Показати різноманітну інформацію про Ñередовище, Ñка може допомогти при уÑуненні неÑправноÑтей. +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Ð’Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ð´Ð¾Ð´Ð°Ñ‚ÐºÐ¾Ð²Ð¸Ñ… Ñценаріїв Ð´Ð»Ñ Ð°Ð´Ð¼Ñ–Ð½Ñ–ÑтруваннÑ/уÑÑƒÐ½ÐµÐ½Ð½Ñ Ð½ÐµÑправноÑтей/діагноÑтики. +Jenkins\ CLI=Командна Ñтрічка ДженкінÑа +JenkinsCliText=ДоÑтуп/ÑƒÐ¿Ñ€Ð°Ð²Ð»Ñ–Ð½Ð½Ñ Ð”Ð¶ÐµÐ½ÐºÑ–Ð½Ñом з вашої оболонки або з вашого Ñценарію виконаннÑ. +LoadStatisticsText=Перевірити викориÑÑ‚Ð°Ð½Ð½Ñ Ñ€ÐµÑурÑів Ñ– подивитиÑÑ, чи вам потрібно більше комп''ютерів Ð´Ð»Ñ Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ð·Ð±Ñ–Ñ€Ð¾Ðº. +Manage\ Jenkins=ÐšÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ð”Ð¶ÐµÐ½ÐºÑ–Ð½Ñом +Manage\ Plugins=ÐšÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¾Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñми +Prepare\ for\ Shutdown=Підготувати до Ð²Ð¸Ð¼ÐºÐ½ÐµÐ½Ð½Ñ +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=ЗупинÑÑ” Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ð½Ð¾Ð²Ð¸Ñ… збірок, таким чином, що ÑиÑтема може бути в кінцевому рахунку згорнута безпечно. +System\ Information=ВідомоÑÑ‚Ñ– про ÑиÑтему +System\ Log=СиÑтемний лог +SystemLogText=СиÑтемний журнал фікÑує вивід даних з java.util.logging пов''Ñзаних з ДженкінÑ. +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=КориÑно Ñкщо ви модифікуєте конфігураційні файли прÑмо на диÑку +are.you.sure={0}: Ви впевнені? diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_zh_TW.properties index 08b405ac478e..f2ff89ae367f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_zh_TW.properties @@ -20,12 +20,12 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -are.you.sure={0}\: \u60a8\u78ba\u5b9a\u55ce\uff1f -updateAvailable={0} \u6709\u66f4\u65b0 -updatesAvailable={0} \u6709\u66f4\u65b0 -Manage\ Jenkins=\u7ba1\u7406 Jenkins -Configure\ System=\u8a2d\u5b9a\u7cfb\u7d71 -Configure\ global\ settings\ and\ paths.=\u8a2d\u5b9a\u5168\u57df\u8a2d\u5b9a\u503c\u53ca\u8def\u5f91\u3002 -Cancel\ Shutdown=\u53d6\u6d88\u505c\u6a5f -Prepare\ for\ Shutdown=\u6e96\u5099\u505c\u6a5f -Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=\u505c\u6b62\u65b0\u7684\u5efa\u7f6e\u4f5c\u696d\uff0c\u8b93\u7cfb\u7d71\u6700\u5f8c\u53ef\u4ee5\u5b89\u5168\u7684\u505c\u6a5f\u3002 +are.you.sure={0}\: 您確定嗎? +updateAvailable={0} 有更新 +updatesAvailable={0} 有更新 +Manage\ Jenkins=ç®¡ç† Jenkins +Configure\ System=設定系統 +Configure\ global\ settings\ and\ paths.=設定全域設定值åŠè·¯å¾‘。 +Cancel\ Shutdown=å–消åœæ©Ÿ +Prepare\ for\ Shutdown=準備åœæ©Ÿ +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=åœæ­¢æ–°çš„建置作業,讓系統最後å¯ä»¥å®‰å…¨çš„åœæ©Ÿã€‚ diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_bg.properties index e260602118b8..a7054cc5d652 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/newView_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. View\ name=\ - \u0418\u043c\u0435 \u043d\u0430 \u0438\u0437\u0433\u043b\u0435\u0434 + Име на изглед Copy\ Existing\ View=\ - \u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430\u0449 \u0438\u0437\u0433\u043b\u0435\u0434 + Копиране на ÑъщеÑтвуващ изглед New\ View=\ - \u041d\u043e\u0432 \u0438\u0437\u0433\u043b\u0435\u0434 + Ðов изглед diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_it.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_it.properties index 3cc081d1553a..b586f68f4c4c 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/newView_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_ja.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_ja.properties index fc495090b396..bbe0d657590e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/newView_ja.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -New\ View=\u65b0\u898f\u30d3\u30e5\u30fc -View\ name=\u30d3\u30e5\u30fc\u540d +New\ View=æ–°è¦ãƒ“ュー +View\ name=ビューå diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_ko.properties index d47ea96f968d..b8a239ea4754 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/newView_ko.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -View\ name=\uC870\uD68C\uBA85 +View\ name=조회명 diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_lt.properties index e3757d177f0e..30899489a944 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/newView_lt.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_lt.properties @@ -1,3 +1,3 @@ View\ name=Vaizdo pavadinimas -Copy\ Existing\ View=Kopijuoti esam\u0105 vaizd\u0105 +Copy\ Existing\ View=Kopijuoti esamÄ… vaizdÄ… New\ View=Naujas vaizdas diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_pl.properties index 02bf92fc5eca..90d68d2077d8 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/newView_pl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_pl.properties @@ -22,4 +22,4 @@ View\ name=Nazwa widoku New\ View=Nowy widok -Copy\ Existing\ View=Kopiuj istniej\u0105cy widok +Copy\ Existing\ View=Kopiuj istniejÄ…cy widok diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_ru.properties index a0bcdbceb6dc..eed7a8023180 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/newView_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_ru.properties @@ -1,3 +1,3 @@ -View\ name=\u0418\u043c\u044f \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f -New\ View=\u041d\u043e\u0432\u043e\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 -Copy\ Existing\ View=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 +View\ name=Ð˜Ð¼Ñ Ð¿Ñ€ÐµÐ´ÑÑ‚Ð°Ð²Ð»ÐµÐ½Ð¸Ñ +New\ View=Ðовое предÑтавление +Copy\ Existing\ View=Копировать ÑущеÑтвующее предÑтавление diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_sk.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_sk.properties index 14c737fd51f5..211456a83b0c 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/newView_sk.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_sk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -View\ name=Meno poh\u013Eadu +View\ name=Meno pohľadu diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_sr.properties index 1a041652c8a7..b4d51761d57c 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/newView_sr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -New\ View=\u041D\u043E\u0432\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 -Copy\ Existing\ View=\u041A\u043E\u043F\u0438\u0440\u0430\u0458 \u043F\u043E\u0441\u0442\u043E\u0458\u0435\u045B\u0435\u0433 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 -View\ name=\u0418\u043C\u0435 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430 +New\ View=Ðови преглед +Copy\ Existing\ View=Копирај поÑтојећег преглед +View\ name=Име прегледа diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_sv_SE.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_sv_SE.properties index 64e803576ff2..97d8b44739f4 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/newView_sv_SE.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -View\ name=Namn p\u00E5 vy +View\ name=Namn pÃ¥ vy diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_tr.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_tr.properties index 62631ec930ca..aff7041c7458 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/newView_tr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -View\ name=G\u00f6r\u00fcnt\u00fc ismi +View\ name=Görüntü ismi diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_zh_TW.properties index 1fb5eaa4b916..84d5414a6233 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/newView_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_zh_TW.properties @@ -1,3 +1,3 @@ -New\ View=\u65b0\u589e\u8996\u666f -View\ name=\u540d\u7a31 -Copy\ Existing\ View=\u8907\u88fd\u65e2\u6709\u7684\u8996\u666f +New\ View=新增視景 +View\ name=å稱 +Copy\ Existing\ View=複製既有的視景 diff --git a/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_bg.properties index fc6159cdf2da..cfbc692a5bfd 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_bg.properties @@ -24,5 +24,5 @@ # The web container doesn't seem to be configured to do authentication. \ # Check the container documentation and/or also consult jenkins-users@googlegroups.com blurb=\ - \u0423\u0435\u0431 \u043a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440\u044a\u0442 \u043d\u0435 \u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043d \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f. \u041f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u0439\u0442\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f\u0442\u0430 \u043c\u0443\ - \u0438 \u0430\u0440\u0445\u0438\u0432\u0438\u0442\u0435 \u043d\u0430 \u0444\u043e\u0440\u0443\u043c\u0430 jenkins-users@googlegroups.com + Уеб контейнерът не е наÑтроен за идентификациÑ. Прегледайте документациÑта му\ + и архивите на форума jenkins-users@googlegroups.com diff --git a/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_da.properties b/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_da.properties index 687369beab2c..4b30904fd4a2 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_da.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_da.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Web containeren ser ikke ud til at v\u00e6re konfigureret til brugergodkendelse. \ -Check containerens dokumentation og/eller r\u00e5df\u00f8r dig med jenkins-users@googlegroups.com +blurb=Web containeren ser ikke ud til at være konfigureret til brugergodkendelse. \ +Check containerens dokumentation og/eller rÃ¥dfør dig med jenkins-users@googlegroups.com diff --git a/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_de.properties b/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_de.properties index dc69dd3e9f8a..bb527364ac46 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_de.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. blurb=\ - Der Servlet-Container scheint nicht für Benutzerauthentifizierung konfiguriert \ - worden zu sein. Prüfen Sie die Dokumentation des Servlet-Containers oder schreiben Sie eine \ - E-Mail an jenkinsci-users@googlegroups.com, die Mailingliste für Jenkins-Benutzer. + Der Servlet-Container scheint nicht für Benutzerauthentifizierung konfiguriert \ + worden zu sein. Prüfen Sie die Dokumentation des Servlet-Containers oder schreiben Sie eine \ + E-Mail an jenkinsci-users@googlegroups.com, die Mailingliste für Jenkins-Benutzer. diff --git a/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_es.properties b/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_es.properties index 3e9145a97b13..2edb9fedc0e5 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_es.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=El contenedor de servlets parece no estar configurado para autenticación. \ - Echa un vistazo a la documentación del contenedor y/o consulta jenkins-users@googlegroups.com +blurb=El contenedor de servlets parece no estar configurado para autenticación. \ + Echa un vistazo a la documentación del contenedor y/o consulta jenkins-users@googlegroups.com diff --git a/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_it.properties b/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_it.properties index 72f174de94a4..0a26c131c7c5 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_ja.properties b/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_ja.properties index 10095746d462..4f33f017da52 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_ja.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_ja.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. blurb=\ - \u30A6\u30A7\u30D6\u30B3\u30F3\u30C6\u30CA\u30FC\u304C\u8A8D\u8A3C\u3059\u308B\u3088\u3046\u306B\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u306A\u3044\u3088\u3046\u3067\u3059\u3002\ - \u30B3\u30F3\u30C6\u30CA\u30FC\u306E\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8\u3092\u53C2\u8003\u306B\u3059\u308B\u304B\u3001jenkins-users@googlegroups.com\u304B \ - jenkins-ja@googlegroups.com\u306B\u554F\u3044\u5408\u308F\u305B\u3066\u304F\u3060\u3055\u3044\u3002 + ウェブコンテナーãŒèªè¨¼ã™ã‚‹ã‚ˆã†ã«è¨­å®šã•ã‚Œã¦ã„ãªã„よã†ã§ã™ã€‚\ + コンテナーã®ãƒ‰ã‚­ãƒ¥ãƒ¡ãƒ³ãƒˆã‚’å‚考ã«ã™ã‚‹ã‹ã€jenkins-users@googlegroups.comã‹ \ + jenkins-ja@googlegroups.comã«å•ã„åˆã‚ã›ã¦ãã ã•ã„。 diff --git a/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_lt.properties index 9a479a8363af..fe93f63b7785 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_lt.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_lt.properties @@ -1,3 +1,3 @@ blurb=\ - Web konteineris nesukonfig\u016bruotas vykdyti autentikacij\u0105. \ - Patikrinkite konteinerio dokumentacij\u0105 ir/arba pasitarkite su jenkins-users@googlegroups.com + Web konteineris nesukonfigÅ«ruotas vykdyti autentikacijÄ…. \ + Patikrinkite konteinerio dokumentacijÄ… ir/arba pasitarkite su jenkins-users@googlegroups.com diff --git a/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_pt_BR.properties index 9f784b2863b8..95d20dded2a1 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_pt_BR.properties @@ -23,5 +23,5 @@ # \ # The web container doesn't seem to be configured to do authentication. \ # Check the container documentation and/or also consult jenkins-users@googlegroups.com -blurb=O container de servlets parece n\u00e3o estar configurado para fazer autentica\u00e7\u00e3o. jenkins-users@googlegroups.com +blurb=O container de servlets parece não estar configurado para fazer autenticação. jenkins-users@googlegroups.com diff --git a/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_sr.properties index 5fa1bea6a8af..54aa1aff174e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_sr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -blurb=\u0412\u0435\u0431-\u043A\u043E\u043D\u0442\u0435\u0458\u043D\u0435\u0440 \u043D\u0438\u0458\u0435 \u043E\u0441\u043F\u043E\u0441\u043E\u0431\u0459\u0435\u043D \u0437\u0430 \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u043A\u0430\u0446\u0438\u0458\u0443. \u041F\u0440\u043E\u0432\u0435\u0440\u0438\u0442\u0435 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0438\u0458\u0443 \u0438 jenkins-users@googlegroups.com. +blurb=Веб-контејнер није оÑпоÑобљен за аутентикацију. Проверите документацију и jenkins-users@googlegroups.com. diff --git a/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_zh_TW.properties index 6b7b2ed0d5e4..ad5c473420a3 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/noPrincipal_zh_TW.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. blurb=\ - Web Container \u4f3c\u4e4e\u6c92\u6709\u8a2d\u6210\u8981\u9a57\u8b49\u3002\ - \u8acb\u6838\u5c0d Container \u7684\u8aaa\u660e\u6587\u4ef6\uff0c\u6216\u5230 jenkins-users@googlegroups.com \u770b\u770b\u3002 + Web Container 似乎沒有設æˆè¦é©—證。\ + è«‹æ ¸å° Container 的說明文件,或到 jenkins-users@googlegroups.com 看看。 diff --git a/core/src/main/resources/jenkins/model/Jenkins/oops_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/oops_bg.properties index 8741b98a6e9d..e0e14ac1e280 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/oops_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/oops_bg.properties @@ -21,36 +21,36 @@ # THE SOFTWARE. Jenkins\ project=\ - \u041f\u0440\u043e\u0435\u043a\u0442\u044a\u0442 Jenkins + Проектът Jenkins Mailing\ Lists=\ - \u041f\u043e\u0449\u0435\u043d\u0441\u043a\u0438 \u0441\u043f\u0438\u0441\u044a\u0446\u0438 + ПощенÑки ÑпиÑъци # When you file an issue, make sure to add the entire stack trace, along with the version of Jenkins and relevant plugins. stackTracePlease=\ - \u041f\u0440\u0438 \u0434\u043e\u043a\u043b\u0430\u0434\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0430 \u0432\u043a\u043b\u044e\u0447\u0432\u0430\u0439\u0442\u0435 \u0446\u0435\u043b\u0438\u044f \u0441\u0442\u0435\u043a \u043d\u0430 \u0438\u0437\u0432\u0438\u043a\u0432\u0430\u043d\u0438\u044f\u0442\u0430 \u0437\u0430\u0435\u0434\u043d\u043e \u0441\ - \u0442\u043e\u0447\u043d\u0430\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430 Jenkins \u0438 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0438\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438. + При докладването на грешка включвайте Ñ†ÐµÐ»Ð¸Ñ Ñтек на извикваниÑта заедно Ñ\ + точната верÑÐ¸Ñ Ð½Ð° Jenkins и ползваните приÑтавки. Oops!=\ - \u041f\u0440\u043e\u0431\u043b\u0435\u043c! + Проблем! Bug\ tracker=\ - \u0421\u043b\u0435\u0434\u0435\u043d\u0435 \u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0438 + Следене на грешки Stack\ trace=\ - \u0421\u0442\u0435\u043a \u043d\u0430 \u0438\u0437\u0432\u0438\u043a\u0432\u0430\u043d\u0438\u044f\u0442\u0430 + Стек на извикваниÑта # The users list might be also useful in understanding what has happened. checkML=\ - \u041f\u043e\u0449\u0435\u043d\u0441\u043a\u0438\u0442\u0435 \u0441\u043f\u0438\u0441\u044a\u0446\u0438\ - \u0441\u0430 \u0435\u0434\u043d\u043e \u043e\u0442 \u043c\u0435\u0441\u0442\u0430\u0442\u0430, \u043a\u044a\u0434\u0435\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u043f\u043e\u0442\u044a\u0440\u0441\u0438\u0442\u0435 \u043e\u0431\u044f\u0441\u043d\u0435\u043d\u0438\u0435 \u0438 \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u043d\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430. + ПощенÑките ÑпиÑъци\ + Ñа едно от меÑтата, където може да потърÑите обÑÑнение и решение на проблема. # If you think this is a new issue, please file a new issue. pleaseReport=\ - \u0410\u043a\u043e \u0441\u0447\u0438\u0442\u0430\u0442\u0435, \u0447\u0435 \u0442\u043e\u0432\u0430 \u0435 \u043d\u043e\u0432 \u043f\u0440\u043e\u0431\u043b\u0435\u043c, \u0434\u043e\u043a\u043b\u0430\u0434\u0432\u0430\u0439\u0442\u0435 \u0433\u043e. + Ðко Ñчитате, че това е нов проблем, докладвайте го. # A problem occurred while processing the request. problemHappened=\ - \u0412\u044a\u0437\u043d\u0438\u043a\u043d\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c \u043f\u0440\u0438 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430\u0442\u0430 \u043d\u0430 \u0437\u0430\u044f\u0432\u043a\u0430. + Възникна проблем при обработката на заÑвка. # Please check our bug tracker to see if a similar problem has already been reported. checkJIRA=\ - \u041f\u0440\u043e\u0432\u0435\u0440\u0435\u0442\u0435 \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430 \u0437\u0430 \u0433\u0440\u0435\u0448\u043a\u0438\ - \u0434\u0430\u043b\u0438 \u0442\u043e\u0437\u0438 \u0438\u043b\u0438 \u043f\u043e\u0434\u043e\u0431\u0435\u043d \u043f\u0440\u043e\u0431\u043b\u0435\u043c \u0432\u0435\u0447\u0435 \u0435 \u0434\u043e\u043a\u043b\u0430\u0434\u0432\u0430\u043d. + Проверете в ÑиÑтемата за грешки\ + дали този или подобен проблем вече е докладван. Twitter\:\ @jenkinsci=\ Twitter: @jenkinsci # If it is already reported, please vote and put a comment on it to let us gauge the impact of the problem. vote=\ - \u0410\u043a\u043e \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044a\u0442 \u0432\u0435\u0447\u0435 \u0435 \u0434\u043e\u043a\u043b\u0430\u0434\u0432\u0430\u043d, \u043e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440 \u0438 \u0433\u043b\u0430\u0441\u0443\u0432\u0430\u0439\u0442\u0435 \u0437\u0430 \u043d\u0435\u0433\u043e.\ - \u0422\u043e\u0432\u0430 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0432\u0430 \u043f\u043e-\u0442\u043e\u0447\u043d\u0430 \u043e\u0446\u0435\u043d\u043a\u0430 \u043d\u0430 \u0437\u043d\u0430\u0447\u0438\u043c\u043e\u0441\u0442\u0442\u0430 \u043c\u0443. + Ðко проблемът вече е докладван, оÑтавете коментар и глаÑувайте за него.\ + Това позволÑва по-точна оценка на значимоÑтта му. diff --git a/core/src/main/resources/jenkins/model/Jenkins/oops_de.properties b/core/src/main/resources/jenkins/model/Jenkins/oops_de.properties index ca189e6d0f28..0e536ff12877 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/oops_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/oops_de.properties @@ -21,13 +21,13 @@ # THE SOFTWARE. Jenkins\ project=Jenkins-Projekt -stackTracePlease=Achten Sie beim Verfassen eines Bug-Reports darauf, mindestens den vollst\u00E4ndigen Stack-Trace, sowie die Versionen von Jenkins und relevanter Plugins mitzuteilen. +stackTracePlease=Achten Sie beim Verfassen eines Bug-Reports darauf, mindestens den vollständigen Stack-Trace, sowie die Versionen von Jenkins und relevanter Plugins mitzuteilen. Oops!=Hoppla! -checkML=Die Mailingliste f\u00FCr Jenkins-Nutzer k\u00F6nnte ebenfalls hilfreich sein, um das Problem zu verstehen. -checkJIRA=Bitte suchen Sie in unserem Bug-Tracker nach bereits erstellten, \u00E4hnlichen Bug-Reports. +checkML=Die Mailingliste für Jenkins-Nutzer könnte ebenfalls hilfreich sein, um das Problem zu verstehen. +checkJIRA=Bitte suchen Sie in unserem Bug-Tracker nach bereits erstellten, ähnlichen Bug-Reports. Bug\ tracker=Bug-Tracker Stack\ trace=Stack-Trace -vote=Wenn es zu diesem Fehler bereits einen Bericht gibt, stimmen Sie bitte f\u00FCr ihn. +vote=Wenn es zu diesem Fehler bereits einen Bericht gibt, stimmen Sie bitte für ihn. problemHappened=Ein Problem ist bei der Verarbeitung der Anfrage aufgetreten. pleaseReport=Wenn Sie glauben, dass dies ein neues Problem ist, senden Sie uns bitte einen neuen Bug-Report. Mailing\ Lists=Mailinglisten diff --git a/core/src/main/resources/jenkins/model/Jenkins/oops_it.properties b/core/src/main/resources/jenkins/model/Jenkins/oops_it.properties index 7987affdeaa1..7c1d905a82ea 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/oops_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/oops_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,13 +22,13 @@ # THE SOFTWARE. checkJIRA=Si consulti il \ - nostro sistema di tracciamento dei bug per vedere se è già stato \ + nostro sistema di tracciamento dei bug per vedere se è già stato \ segnalato un problema simile. checkML=Anche la \ lista di distribuzione degli utenti potrebbe essere utile per capire \ - quanto è accaduto. + quanto è accaduto. Oops!=Ops! -problemHappened=Si è verificato un problema durante l''elaborazione della \ +problemHappened=Si è verificato un problema durante l''elaborazione della \ richiesta. pleaseReport=Se si ritiene che questo sia un nuovo problema, si apra una \ nuova segnalazione. @@ -36,5 +36,5 @@ Stack\ trace=Analisi dello stack stackTracePlease=Quando si apre una segnalazione, ci si assicuri di \ aggiungere l''intera analisi dello stack, oltre alla versione di Jenkins e \ ai componenti aggiuntivi rilevanti. -vote=Se è già stato segnalato, lo si voti e si lasci un commento alla \ +vote=Se è già stato segnalato, lo si voti e si lasci un commento alla \ segnalazione per consentirci di misurare l''impatto del problema. diff --git a/core/src/main/resources/jenkins/model/Jenkins/oops_ja.properties b/core/src/main/resources/jenkins/model/Jenkins/oops_ja.properties index cb6e2a04a7be..8a332aec81d5 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/oops_ja.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/oops_ja.properties @@ -20,14 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -problemHappened= \u30ea\u30af\u30a8\u30b9\u30c8\u51e6\u7406\u4e2d\u306b\u554f\u984c\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 -checkJIRA= \u30d0\u30b0\u7ba1\u7406\u30b7\u30b9\u30c6\u30e0\u3092\u30c1\u30a7\u30c3\u30af\u3057\u3066\u3001\u540c\u3058\u3088\u3046\u306a\u554f\u984c\u304c\u5831\u544a\u3055\u308c\u3066\u3044\u306a\u3044\u304b\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002 -vote= \u5831\u544a\u6e08\u307f\u3067\u3042\u308c\u3070\u3001\u6295\u7968(vote)\u3057\u3066\u30b3\u30e1\u30f3\u30c8\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u305d\u3046\u3059\u308c\u3070\u3001\u305d\u306e\u554f\u984c\u306e\u5f71\u97ff\u306e\u5927\u304d\u3055\u304c\u958b\u767a\u8005\u306b\u4f1d\u308f\u308a\u307e\u3059\u3002 -pleaseReport= \u3082\u3057\u3001\u5831\u544a\u3055\u308c\u3066\u3044\u306a\u3044\u554f\u984c\u3067\u3042\u308c\u3070\u3001\u30c1\u30b1\u30c3\u30c8\u3092\u767b\u9332\u3057\u3066\u304f\u3060\u3055\u3044\u3002 -stackTracePlease= \u30c1\u30b1\u30c3\u30c8\u3092\u767b\u9332\u3059\u308b\u3068\u304d\u306b\u306f\u3001Jenkins\u3068\u95a2\u9023\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3042\u308f\u305b\u3066\u3001\u5fc5\u305a\u30b9\u30bf\u30c3\u30af\u30c8\u30ec\u30fc\u30b9\u3092\u3059\u3079\u3066\u6dfb\u4ed8\u3057\u304f\u3060\u3055\u3044\u3002 -checkML= \u4f55\u304c\u8d77\u304d\u305f\u306e\u304b\u7406\u89e3\u3059\u308b\u306b\u306f\u3001\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8\u304c\u53c2\u8003\u306b\u306a\u308a\u307e\u3059\u3002 +problemHappened= リクエスト処ç†ä¸­ã«å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚ +checkJIRA= ãƒã‚°ç®¡ç†ã‚·ã‚¹ãƒ†ãƒ ã‚’ãƒã‚§ãƒƒã‚¯ã—ã¦ã€åŒã˜ã‚ˆã†ãªå•é¡ŒãŒå ±å‘Šã•ã‚Œã¦ã„ãªã„ã‹ç¢ºèªã—ã¦ãã ã•ã„。 +vote= 報告済ã¿ã§ã‚ã‚Œã°ã€æŠ•ç¥¨(vote)ã—ã¦ã‚³ãƒ¡ãƒ³ãƒˆã—ã¦ãã ã•ã„。ãã†ã™ã‚Œã°ã€ãã®å•é¡Œã®å½±éŸ¿ã®å¤§ãã•ãŒé–‹ç™ºè€…ã«ä¼ã‚ã‚Šã¾ã™ã€‚ +pleaseReport= ã‚‚ã—ã€å ±å‘Šã•ã‚Œã¦ã„ãªã„å•é¡Œã§ã‚ã‚Œã°ã€ãƒã‚±ãƒƒãƒˆã‚’登録ã—ã¦ãã ã•ã„。 +stackTracePlease= ãƒã‚±ãƒƒãƒˆã‚’登録ã™ã‚‹ã¨ãã«ã¯ã€Jenkinsã¨é–¢é€£ã™ã‚‹ãƒ—ラグインã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã¨ã‚ã‚ã›ã¦ã€å¿…ãšã‚¹ã‚¿ãƒƒã‚¯ãƒˆãƒ¬ãƒ¼ã‚¹ã‚’ã™ã¹ã¦æ·»ä»˜ã—ãã ã•ã„。 +checkML= 何ãŒèµ·ããŸã®ã‹ç†è§£ã™ã‚‹ã«ã¯ã€ãƒ¡ãƒ¼ãƒªãƒ³ã‚°ãƒªã‚¹ãƒˆãŒå‚考ã«ãªã‚Šã¾ã™ã€‚ -Jenkins\ project=JenkinsWeb\u30b5\u30a4\u30c8 -Bug\ tracker=\u30d0\u30b0\u7ba1\u7406\u30b7\u30b9\u30c6\u30e0 -Mailing\ Lists=\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8 -Stack\ trace=\u30b9\u30bf\u30c3\u30af\u30c8\u30ec\u30fc\u30b9 +Jenkins\ project=JenkinsWebサイト +Bug\ tracker=ãƒã‚°ç®¡ç†ã‚·ã‚¹ãƒ†ãƒ  +Mailing\ Lists=メーリングリスト +Stack\ trace=スタックトレース diff --git a/core/src/main/resources/jenkins/model/Jenkins/oops_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/oops_lt.properties index 8f43960f0e04..ad443925ec7c 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/oops_lt.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/oops_lt.properties @@ -1,12 +1,12 @@ -problemHappened=Vykdant u\u017eklaus\u0105 atsitiko problema. -checkJIRA=Pra\u0161ome patikrinti m\u016bs\u0173 problem\u0173 sistem\u0105, ar ten n\u0117ra prane\u0161ta apie pana\u0161i\u0105 problem\u0105. -vote=Jei jau prane\u0161ta, pra\u0161ome balsuoti ir prid\u0117ti komentar\u0173, kad mes gal\u0117tume padidinti \u0161ios problemos svarb\u0105. -pleaseReport=Jei galvojate, kad tai nauja problema, pra\u0161ome u\u017epildyti nauj\u0105 problem\u0105. -stackTracePlease=Kai pildote problem\u0105, b\u016btinai prid\u0117kite piln\u0105 klaidos i\u0161vest\u012f (stack trace), kartu su Jenkinso ir susijusi\u0173 pried\u0173 versijomis. -checkML=Naudotoj\u0173 s\u0105ra\u0161ynas gali taipogi praversti susigaudant, kas atsitiko. +problemHappened=Vykdant užklausÄ… atsitiko problema. +checkJIRA=PraÅ¡ome patikrinti mÅ«sų problemų sistemÄ…, ar ten nÄ—ra praneÅ¡ta apie panaÅ¡iÄ… problemÄ…. +vote=Jei jau praneÅ¡ta, praÅ¡ome balsuoti ir pridÄ—ti komentarų, kad mes galÄ—tume padidinti Å¡ios problemos svarbÄ…. +pleaseReport=Jei galvojate, kad tai nauja problema, praÅ¡ome užpildyti naujÄ… problemÄ…. +stackTracePlease=Kai pildote problemÄ…, bÅ«tinai pridÄ—kite pilnÄ… klaidos iÅ¡vestį (stack trace), kartu su Jenkinso ir susijusių priedų versijomis. +checkML=Naudotojų sÄ…raÅ¡ynas gali taipogi praversti susigaudant, kas atsitiko. Jenkins\ project=Jenkinso projektas -Stack\ trace=Klaid\u0173 i\u0161klotin\u0117 +Stack\ trace=Klaidų iÅ¡klotinÄ— Oops!=Oi! Twitter\:\ @jenkinsci=Twitter: @jenkinsci -Mailing\ Lists=S\u0105ra\u0161ynai -Bug\ tracker=Klaid\u0173 registravimo sistema +Mailing\ Lists=SÄ…raÅ¡ynai +Bug\ tracker=Klaidų registravimo sistema diff --git a/core/src/main/resources/jenkins/model/Jenkins/oops_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/oops_pl.properties index d23f3fda35ee..910c3cf8e49c 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/oops_pl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/oops_pl.properties @@ -19,9 +19,9 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -problemHappened=Wyst\u0105pi\u0142 problem podczas przetwarzania \u017C\u0105dania. +problemHappened=WystÄ…piÅ‚ problem podczas przetwarzania żądania. Twitter\:\ @jenkinsci=Twitter\: @jenkinsci Mailing\ Lists=Lista mailingowa Oops!=Ups! -Bug\ tracker=Zg\u0142aszanie b\u0142\u0119d\u00F3w +Bug\ tracker=ZgÅ‚aszanie bÅ‚Ä™dów Jenkins\ project=Projekt Jenkins diff --git a/core/src/main/resources/jenkins/model/Jenkins/oops_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/oops_pt_BR.properties index 8f21812f295e..09c7810daa13 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/oops_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/oops_pt_BR.properties @@ -21,16 +21,16 @@ # THE SOFTWARE. # A problem occurred while processing the request. -problemHappened=Um problema ocorreu durante o processamento da requisi\u00e7\u00e3o. +problemHappened=Um problema ocorreu durante o processamento da requisição. # If it is already reported, please vote and put a comment on it to let us gauge the impact of the problem. vote=Caso tenha sido reportado, por favor vote e comente para que possamos medir o impacto do problema. # Please check our bug tracker to see if a similar problem has already been reported. -checkJIRA=Por favor verifique nosso bug tracker para verificar se um problema similar j\u00e1 foi reportado. +checkJIRA=Por favor verifique nosso bug tracker para verificar se um problema similar já foi reportado. Stack\ trace=Stack trace Oops!=Ops! # If you think this is a new issue, please file a new issue. -pleaseReport=Caso voc\u00ea acredite que seja um novo problema, por favor preencha uma reclama\u00e7\u00e3o +pleaseReport=Caso você acredite que seja um novo problema, por favor preencha uma reclamação # The users list might be also useful in understanding what has happened. -checkML=A lista de usu\u00e1rios pode ser \u00fatil para entender o que aconteceu. +checkML=A lista de usuários pode ser útil para entender o que aconteceu. # When you file an issue, make sure to add the entire stack trace, along with the version of Jenkins and relevant plugins. -stackTracePlease=Quando voc\u00ea preencher uma reclama\u00e7\u00e3o, assegure-se de adicionar o stack trace completo, junto com a vers\u00e3o do Jenkins e plugins relevantes. +stackTracePlease=Quando você preencher uma reclamação, assegure-se de adicionar o stack trace completo, junto com a versão do Jenkins e plugins relevantes. diff --git a/core/src/main/resources/jenkins/model/Jenkins/oops_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/oops_ru.properties index 350dd85b3557..0b7e0fa4af9d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/oops_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/oops_ru.properties @@ -1,12 +1,12 @@ -Bug\ tracker=\u0411\u0430\u0433-\u0442\u0440\u0435\u043a\u0435\u0440 -Jenkins\ project=\u041f\u0440\u043e\u0435\u043a\u0442 Jenkins -Mailing\ Lists=\u0421\u043f\u0438\u0441\u043a\u0438 \u0440\u0430\u0441\u0441\u044b\u043b\u043a\u0438 -Oops!=\u0423\u043f\u0441! -Stack\ trace=\u0421\u0442\u0435\u043a \u0432\u044b\u0437\u043e\u0432\u043e\u0432 -stackTracePlease=\u041f\u0440\u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0435 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f \u043e\u0448\u0438\u0431\u043a\u0438, \u043f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \u0432 \u043d\u0435\u0433\u043e \u043f\u043e\u043b\u043d\u044b\u0439 \u0441\u0442\u0435\u043a \u0432\u044b\u0437\u043e\u0432\u043e\u0432, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0432\u0435\u0440\u0441\u0438\u044e Jenkins'\u0430 \u0438 \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432. -Twitter\:\ @jenkinsci=\u0422\u0432\u0438\u0442\u0442\u0435\u0440: @jenkinsci -checkJIRA=\u041f\u043e\u0441\u0435\u0442\u0438\u0442\u0435 \u043d\u0430\u0448 \u0431\u0430\u0433-\u0442\u0440\u0435\u043a\u0435\u0440, \u0447\u0442\u043e\u0431\u044b \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0439\u0442\u0438 \u043f\u043e\u0445\u043e\u0436\u0443\u044e \u043e\u0448\u0438\u0431\u043a\u0443. -checkML=\u041f\u043e\u0447\u0442\u043e\u0432\u044b\u0435 \u0440\u0430\u0441\u0441\u044b\u043b\u043a\u0438 \u0442\u043e\u0436\u0435 \u043c\u043e\u0433\u0443\u0442 \u043f\u043e\u043c\u043e\u0447\u044c \u043f\u043e\u043d\u044f\u0442\u044c, \u0447\u0442\u043e \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u043e. -pleaseReport=\u0415\u0441\u043b\u0438 \u0432\u044b \u0434\u0443\u043c\u0430\u0435\u0442\u0435, \u0447\u0442\u043e \u044d\u0442\u043e \u043d\u043e\u0432\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430, \u043f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0441\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u043d\u043e\u0432\u044b\u0439 \u0431\u0430\u0433 \u0432 JIRA. -problemHappened=\u041e\u0448\u0438\u0431\u043a\u0430 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u0437\u0430\u043f\u0440\u043e\u0441\u0430. -vote=\u0415\u0441\u043b\u0438 \u044d\u0442\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u0443\u0436\u0435 \u043e\u043f\u0438\u0441\u0430\u043d\u0430, \u043f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u0440\u043e\u0433\u043e\u043b\u043e\u0441\u0443\u0439\u0442\u0435 \u0437\u0430 \u043d\u0435\u0451 \u0438 \u043e\u0442\u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0438\u0440\u0443\u0439\u0442\u0435, \u0447\u0442\u043e\u0431\u044b \u043c\u044b \u043c\u043e\u0433\u043b\u0438 \u043e\u0446\u0435\u043d\u0438\u0442\u044c \u0432\u043b\u0438\u044f\u043d\u0438\u0435 \u043e\u0448\u0438\u0431\u043a\u0438. +Bug\ tracker=Баг-трекер +Jenkins\ project=Проект Jenkins +Mailing\ Lists=СпиÑки раÑÑылки +Oops!=УпÑ! +Stack\ trace=Стек вызовов +stackTracePlease=При отправке опиÑÐ°Ð½Ð¸Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ¸, пожалуйÑта, включите в него полный Ñтек вызовов, а также верÑию Jenkins'а и плагинов. +Twitter\:\ @jenkinsci=Твиттер: @jenkinsci +checkJIRA=ПоÑетите наш баг-трекер, чтобы возможно найти похожую ошибку. +checkML=Почтовые раÑÑылки тоже могут помочь понÑÑ‚ÑŒ, что произошло. +pleaseReport=ЕÑли вы думаете, что Ñто Ð½Ð¾Ð²Ð°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ°, пожалуйÑта, Ñоздайте новый баг в JIRA. +problemHappened=Ошибка обработки запроÑа. +vote=ЕÑли Ñта ошибка уже опиÑана, пожалуйÑта, проголоÑуйте за неё и откомментируйте, чтобы мы могли оценить влиÑние ошибки. diff --git a/core/src/main/resources/jenkins/model/Jenkins/oops_sk.properties b/core/src/main/resources/jenkins/model/Jenkins/oops_sk.properties index c7fabd122f81..b6b5148ce6b5 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/oops_sk.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/oops_sk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors Jenkins\ project=Projekt Jenkins -problemHappened=Vyskytol sa probl\u00E9m pri spracov\u00E1van\u00ED po\u017Eiadavky. +problemHappened=Vyskytol sa problém pri spracovávaní požiadavky. diff --git a/core/src/main/resources/jenkins/model/Jenkins/oops_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/oops_sr.properties index d219355795c6..91cf278a6429 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/oops_sr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/oops_sr.properties @@ -1,14 +1,14 @@ # This file is under the MIT License by authors -Jenkins\ project=Jenkins \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 -Bug\ tracker=\u0421\u0438\u0441\u0442\u0435\u043C \u0437\u0430 \u043F\u0440\u0430\u045B\u0435\u045A\u0435 \u0433\u0440\u0435\u0448\u0430\u043A\u0430 -Mailing\ Lists=Mailing \u043B\u0441\u0438\u0442\u0435 +Jenkins\ project=Jenkins пројекат +Bug\ tracker=СиÑтем за праћење грешака +Mailing\ Lists=Mailing лÑите Twitter\:\ @jenkinsci=Twitter: @jenkinsci -Oops\!=\u041F\u0440\u043E\u0431\u043B\u0435\u043C! -problemHappened=\u0414\u043E\u0448\u043B\u043E \u0458\u0435 \u0434\u043E \u0433\u0440\u0435\u0448\u043A\u0435 \u043F\u0440\u0438\u043B\u0438\u043A\u043E\u043C \u043E\u0431\u0440\u0430\u0434\u0435 \u0437\u0430\u0445\u0442\u0435\u0432\u0430. -checkJIRA=\u041F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 \u0441\u0438\u0441\u0442\u0435\u043C \u0437\u0430 \u043F\u0440\u0430\u045B\u0435\u045A\u0435 \u0433\u0440\u0435\u0448\u0430\u043A\u0430 \u0434\u0430 \u043D\u0438\u0458\u0435 \u043D\u0435\u043A\u043E \u0432\u0435\u045B \u0434\u0430\u043E \u0438\u0437\u0432\u0435\u0448\u0442\u0430\u0458 \u043E \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0443. -vote=\u0410\u043A\u043E \u0432\u0435\u045B \u0438\u043C\u0430 \u0438\u0437\u0432\u0435\u0448\u0442\u0430\u0458\u0430, \u043C\u043E\u043B\u0438\u043C\u043E \u0432\u0430\u0441 \u0433\u043B\u0430\u0441\u0430\u0458\u0442\u0435 \u0438 \u043E\u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u043A\u043E\u043C\u0435\u043D\u0442\u0430\u0440 \u0434\u0430 \u0431\u0438\u0445 \u043C\u043E\u0433\u043B\u0438 \u043F\u0440\u0430\u0442\u0438\u043B\u0438 \u0448\u0438\u0440\u0438\u043D\u0443 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0430. -pleaseReport=\u0410\u043A\u043E \u043C\u0438\u0441\u043B\u0438\u0442\u0435 \u0434\u0430 \u043D\u043E\u0432\u0438 \u043F\u0440\u043E\u0431\u043B\u0435\u043C, \u043C\u043E\u043B\u0438\u043C\u043E \u0432\u0430\u0441 \u043F\u043E\u0434\u043D\u0435\u0441\u0438\u0442\u0435 \u0438\u0437\u0432\u0435\u0448\u0442\u0430\u0438\u0458 \u043E \u045A\u0435\u043C\u0443. -stackTracePlease=\u041A\u0430\u0434 \u0434\u0430\u0458\u0435\u0442\u0435 \u0438\u0437\u0432\u0435\u0448\u0442\u0430\u0458, \u043C\u043E\u043B\u0438\u043C\u043E \u0432\u0430\u0441 \u043F\u0440\u043E\u0441\u043B\u0435\u0434\u0438\u0442\u0435 \u0446\u0435\u043B\u0443 \u0442\u0440\u0430\u0441\u0443 \u0441\u0442\u0435\u043A\u0430, \u0438 \u0432\u0435\u0440\u0437\u0438\u0458\u0435 Jenkins-\u0430 \u0438 \u0431\u0438\u0442\u043D\u0438\u0445 \u043C\u043E\u0434\u0443\u043B\u0430. -checkML=\u0421\u043F\u0438\u0441\u0430\u043A \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430 \u043C\u043E\u0436\u0435 \u0432\u0430\u043C \u043F\u043E\u043C\u043E\u045B\u0438 \u0434\u0430 \u043D\u0430\u0452\u0435\u0442\u0435 \u0448\u0442\u0430 \u0441\u0435 \u0434\u043E\u0433\u043E\u0434\u0438\u043B\u043E. -Stack\ trace=\u0422\u0440\u0430\u0441\u0430 \u0441\u0442\u0435\u043A\u0443 +Oops\!=Проблем! +problemHappened=Дошло је до грешке приликом обраде захтева. +checkJIRA=Прегледајте ÑиÑтем за праћење грешака да није неко већ дао извештај о проблему. +vote=Ðко већ има извештаја, молимо Ð²Ð°Ñ Ð³Ð»Ð°Ñајте и оÑтавите коментар да бих могли пратили ширину проблема. +pleaseReport=Ðко миÑлите да нови проблем, молимо Ð²Ð°Ñ Ð¿Ð¾Ð´Ð½ÐµÑите извештаиј о њему. +stackTracePlease=Кад дајете извештај, молимо Ð²Ð°Ñ Ð¿Ñ€Ð¾Ñледите целу траÑу Ñтека, и верзије Jenkins-а и битних модула. +checkML=СпиÑак кориÑника може вам помоћи да нађете шта Ñе догодило. +Stack\ trace=ТраÑа Ñтеку diff --git a/core/src/main/resources/jenkins/model/Jenkins/oops_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/oops_zh_TW.properties index e16eede61b20..7f8cde07dc83 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/oops_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/oops_zh_TW.properties @@ -1,8 +1,8 @@ -problemHappened=\u8655\u7406\u8981\u6c42\u6642\u767c\u751f\u932f\u8aa4\u3002 -checkJIRA=\u8acb\u67e5\u770b\u6211\u5011\u7684\u7f3a\u9677\u8ffd\u8e64\u7cfb\u7d71\u78ba\u8a8d\u662f\u5426\u6709\u985e\u4f3c\u7684\u554f\u984c\u5df2\u7d93\u88ab\u56de\u5831\u4e86\u3002 -vote=\u5982\u679c\u5b83\u5df2\u7d93\u88ab\u56de\u5831\u4e86\uff0c\u8acb\u6295\u7968\u4e26\u7559\u8a00\u8b93\u6211\u5011\u8a55\u4f30\u9019\u500b\u554f\u984c\u7684\u5f71\u97ff\u3002 -pleaseReport=\u5982\u679c\u60a8\u8a8d\u70ba\u9019\u662f\u4e00\u500b\u65b0\u554f\u984c\uff0c\u8acb\u5efa\u7acb\u65b0\u554f\u984c\u3002 -stackTracePlease=\u7576\u60a8\u5efa\u7acb\u65b0\u554f\u984c\u6642\uff0c\u8acb\u78ba\u4fdd\u52a0\u5165\u6574\u500b\u5806\u758a\u8ffd\u8e64\uff0c\u5305\u542b Jenkins \u7248\u672c\u548c\u76f8\u95dc\u7684\u5916\u639b\u3002 -checkML=\u7db2\u8def\u8ad6\u58c7\u53ef\u80fd\u4e5f\u6709\u52a9\u65bc\u91d0\u6e05\u554f\u984c\u3002 -Oops\!=\u7cdf\u4e86\u500b\u7cd5\uff01 -Stack\ trace=\u5806\u758a\u8ffd\u8e64 +problemHappened=處ç†è¦æ±‚時發生錯誤。 +checkJIRA=請查看我們的缺陷追蹤系統確èªæ˜¯å¦æœ‰é¡žä¼¼çš„å•é¡Œå·²ç¶“被回報了。 +vote=如果它已經被回報了,請投票並留言讓我們評估這個å•é¡Œçš„影響。 +pleaseReport=如果您èªç‚ºé€™æ˜¯ä¸€å€‹æ–°å•é¡Œï¼Œè«‹å»ºç«‹æ–°å•é¡Œã€‚ +stackTracePlease=當您建立新å•é¡Œæ™‚,請確ä¿åŠ å…¥æ•´å€‹å †ç–Šè¿½è¹¤ï¼ŒåŒ…å« Jenkins 版本和相關的外掛。 +checkML=網路論壇å¯èƒ½ä¹Ÿæœ‰åŠ©æ–¼é‡æ¸…å•é¡Œã€‚ +Oops\!=ç³Ÿäº†å€‹ç³•ï¼ +Stack\ trace=堆疊追蹤 diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help.properties index 5307f80e9354..a9362b740b1f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Title=What\u2019s "project relationship"? +Title=What’s "project relationship"? body=\ When you have projects that depend on each other, Jenkins can track which build of \ the upstream project is used by which build of the downstream project, by using \ diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_bg.properties index 513f9f5c8d4a..5c65d95d4def 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_bg.properties @@ -21,24 +21,24 @@ # THE SOFTWARE. For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=\ - \u0417\u0430 \u0434\u0430 \u0441\u0440\u0430\u0431\u043e\u0442\u0438 \u0442\u043e\u0432\u0430, \u0449\u0435 \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u043f\u043e\u0434\u0441\u0438\u0433\u0443\u0440\u0438\u0442\u0435: + За да Ñработи това, ще Ñ‚Ñ€Ñбва да подÑигурите: # \ # When you have projects that depend on each other, Jenkins can track which build of \ # the upstream project is used by which build of the downstream project, by using \ # the records created by \ # the fingerprint support. body=\ - \u041a\u043e\u0433\u0430\u0442\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0438 \u0437\u0430\u0432\u0438\u0441\u044f\u0442 \u0435\u0434\u0438\u043d \u043e\u0442 \u0434\u0440\u0443\u0433, Jenkins \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u043b\u0435\u0434\u0438 \u043a\u043e\u044f \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430\ - \u043f\u0440\u0435\u0434\u0448\u0435\u0441\u0442\u0432\u0430\u0449 \u043f\u0440\u043e\u0435\u043a\u0442 \u0441\u0435 \u043f\u043e\u043b\u0437\u0432\u0430 \u043e\u0442 \u0441\u043b\u0435\u0434\u0432\u0430\u0449 \u043f\u0440\u043e\u0435\u043a\u0442 \u0438 \u043e\u0431\u0440\u0430\u0442\u043d\u043e \u043a\u0430\u0442\u043e \u0441\u044a\u0437\u0434\u0430\u0432\u0430 \u0431\u0430\u0437\u0430 \u043e\u0442\ - \u0434\u0430\u043d\u043d\u0438 \u043e\u0442\ - \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0442\u0435\ - \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u044a\u0446\u0438. + Когато проекти завиÑÑÑ‚ един от друг, Jenkins може да Ñледи ÐºÐ¾Ñ Ð²ÐµÑ€ÑÐ¸Ñ Ð½Ð°\ + предшеÑтващ проект Ñе ползва от Ñледващ проект и обратно като Ñъздава база от\ + данни от\ + цифровите\ + отпечатъци. The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses.=\ - \u041f\u043e\u0441\u043b\u0435\u0434\u0432\u0430\u0449\u0438\u044f\u0442 \u043f\u0440\u043e\u0435\u043a\u0442 \u043f\u0430\u0437\u0438 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0442\u0435 \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u044a\u0446\u0438 \u043d\u0430 \u0440\u0435\u0437\u0443\u043b\u0442\u0430\u0442\u0438\u0442\u0435 \u043e\u0442 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f\u0442\u0430. -# What\u2019s "project relationship"? + ПоÑледващиÑÑ‚ проект пази цифровите отпечатъци на резултатите от изгражданиÑта. +# What’s "project relationship"? Title=\ - \u0412\u0440\u044a\u0437\u043a\u0438 \u0441 \u0434\u0440\u0443\u0433\u0438\u0442\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u0438 + Връзки Ñ Ð´Ñ€ÑƒÐ³Ð¸Ñ‚Ðµ проекти The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=\ - \u041f\u0440\u0435\u0434\u0448\u0435\u0441\u0442\u0432\u0430\u0449\u0438\u044f\u0442 \u043f\u0440\u043e\u0435\u043a\u0442 \u043f\u0430\u0437\u0438 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0442\u0435 \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u044a\u0446\u0438 \u043d\u0430 \u0440\u0435\u0437\u0443\u043b\u0442\u0430\u0442\u0438\u0442\u0435 \u043e\u0442 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f\u0442\u0430. + ПредшеÑтващиÑÑ‚ проект пази цифровите отпечатъци на резултатите от изгражданиÑта. This\ allows\ Jenkins\ to\ correlate\ two\ projects.=\ - \u0422\u043e\u0432\u0430 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0432\u0430 \u043d\u0430 Jenkins \u0434\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438 \u0432\u0440\u044a\u0437\u043a\u0438\u0442\u0435 \u043c\u0435\u0436\u0434\u0443 \u0434\u0432\u0430\u0442\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430. + Това позволÑва на Jenkins да уÑтанови връзките между двата проекта. diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_da.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_da.properties index d54a3be29de6..957831a734e3 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_da.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_da.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Title=Hvad er et "projektforhold"? -For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=For at denne feature fungerer skal f\u00f8lgende v\u00e6re opfyldt: +For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=For at denne feature fungerer skal følgende være opfyldt: The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses.=Downstream projektet opsamler filfingeraftryk af de upstream filer det benytter. body=\ -Har du projekter der er afh\u00e6ngige af hinanden kan Jenkins f\u00f8lge hvilket byg af upstreamprojektet \ +Har du projekter der er afhængige af hinanden kan Jenkins følge hvilket byg af upstreamprojektet \ der bruges af hvilket byg af downstream projektet ved at bruge filfingeraftyrk This\ allows\ Jenkins\ to\ correlate\ two\ projects.=Dette tillader Jenkins at korrelere to projekter. The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=Upstream projektet opsamler filfingeraftryk af sine byggeartifakter. diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_de.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_de.properties index 384957a2d675..25a7898e9a98 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_de.properties @@ -22,10 +22,10 @@ Title=Was ist eine "Projektbeziehung"? body=\ - Wenn Sie voneinander abhängige Projekte entwickeln, kann Jenkins für Sie herausfinden, welcher Build \ - eines vorgelagerten Projektes für welchen Build eines nachgelagerten Projektes verwendet wurde. Dies geschieht über \ - gespeicherte "Fingerabdrücke", die mit Hilfe der Fingerabdruck-Funktion erzeugt wurden. -For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=Um Projektbeziehungen nachzuverfolgen, müssen folgende Bedingungen erfüllt sein: -The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=Das vorgelagerte Projekt zeichnet Fingerabdrücke seiner Build-Artefakte auf. -The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses.=Das nachgelagerte Projekt zeichnet Fingerabdrücke der verwendeten Dateien aus vorgelagerten Projekten auf. + Wenn Sie voneinander abhängige Projekte entwickeln, kann Jenkins für Sie herausfinden, welcher Build \ + eines vorgelagerten Projektes für welchen Build eines nachgelagerten Projektes verwendet wurde. Dies geschieht über \ + gespeicherte "Fingerabdrücke", die mit Hilfe der Fingerabdruck-Funktion erzeugt wurden. +For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=Um Projektbeziehungen nachzuverfolgen, müssen folgende Bedingungen erfüllt sein: +The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=Das vorgelagerte Projekt zeichnet Fingerabdrücke seiner Build-Artefakte auf. +The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses.=Das nachgelagerte Projekt zeichnet Fingerabdrücke der verwendeten Dateien aus vorgelagerten Projekten auf. This\ allows\ Jenkins\ to\ correlate\ two\ projects.=Diese Aufzeichnungen erlauben es Jenkins, zwei Projekte zueinander in Beziehung zu setzen. diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_es.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_es.properties index 279da4c3ae92..de82fb79228c 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_es.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Title=¿Cual es la relación entre proyectos? -body=Cuando hay proyectos que dependen unos de otros, Jenkins puede hacer un seguimiento de qu\u00E9 proyectos padres est\u00E1n siendo utilizado por otros proyectos hijos usando un registro de firmas de los ficheros generados. Echa un vistazo a esta pagina: the fingerprint support. +Title=¿Cual es la relación entre proyectos? +body=Cuando hay proyectos que dependen unos de otros, Jenkins puede hacer un seguimiento de qué proyectos padres están siendo utilizado por otros proyectos hijos usando un registro de firmas de los ficheros generados. Echa un vistazo a esta pagina: the fingerprint support. This\ allows\ Jenkins\ to\ correlate\ two\ projects.=Esto facilita que Jenkins pueda correlacionar los dos proyectos The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=Que el proyecto padre registre la firma de todos los ficheros que genera. diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_et.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_et.properties index e1ab0ba0ca2c..c7f716020de7 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_et.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_et.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=Selle funktsiooni t\u00F6\u00F6tamiseks peavad olema t\u00E4idetud j\u00E4rgnevad tingimused: -The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses.=Allavoolu projekt salvestab nende \u00FClesvoolu failide s\u00F5rmej\u00E4ljed mida ta kasutab. -The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=\u00DClesvoolu projekt salvestab oma j\u00E4rkude tulemuste s\u00F5rmej\u00E4ljed. +For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=Selle funktsiooni töötamiseks peavad olema täidetud järgnevad tingimused: +The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses.=Allavoolu projekt salvestab nende ülesvoolu failide sõrmejäljed mida ta kasutab. +The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=Ãœlesvoolu projekt salvestab oma järkude tulemuste sõrmejäljed. This\ allows\ Jenkins\ to\ correlate\ two\ projects.=See lubab Jenkinsil seostada kaks projekti. Title=Mis on "projektide seosed"? -body=Kui teil on kaks projekti mis s\u00F5ltuvad \u00FCksteisest, siis suudab Jenkins j\u00E4lgida seda millist \u00FClesvoolu projekti j\u00E4rku kasutatakse mingi allavoolu projekti j\u00E4rgu jaoks, kasutades s\u00F5rmej\u00E4lje toe poolt loodud kirjeid. +body=Kui teil on kaks projekti mis sõltuvad üksteisest, siis suudab Jenkins jälgida seda millist ülesvoolu projekti järku kasutatakse mingi allavoolu projekti järgu jaoks, kasutades sõrmejälje toe poolt loodud kirjeid. diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_fr.properties index 9be88e6747b7..03b62ae6f227 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_fr.properties @@ -22,13 +22,13 @@ Title=Que sont les "relations entre projets"? body=\ - Lorsque vous avez des projets qui dépendent les uns des autres, Jenkins peut tracer quel build \ - de projet en amont est utilisé par quel build de projet en aval, en utilisant \ - les enregistrements créés par \ - le support de l''empreinte numérique. -For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=Pour que cette fonctionnalité marche, les conditions suivantes sont requises: -The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=Le projet en amont enregistre les empreintes numériques de ses artefacts de build. -The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses.=Le projet en aval enregistre les empreintes num\u00E9riques des fichiers amont qu''il utilise. -The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ jar\ files\ it\ uses.=Le projet en aval enregistre les empreintes numériques des fichiers jar en amont qu''il utilise. -This\ allows\ Jenkins\ to\ correlate\ two\ projects.=Cela permet à Jenkins de mettre en corrélation deux projets. + Lorsque vous avez des projets qui dépendent les uns des autres, Jenkins peut tracer quel build \ + de projet en amont est utilisé par quel build de projet en aval, en utilisant \ + les enregistrements créés par \ + le support de l''empreinte numérique. +For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=Pour que cette fonctionnalité marche, les conditions suivantes sont requises: +The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=Le projet en amont enregistre les empreintes numériques de ses artefacts de build. +The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses.=Le projet en aval enregistre les empreintes numériques des fichiers amont qu''il utilise. +The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ jar\ files\ it\ uses.=Le projet en aval enregistre les empreintes numériques des fichiers jar en amont qu''il utilise. +This\ allows\ Jenkins\ to\ correlate\ two\ projects.=Cela permet à Jenkins de mettre en corrélation deux projets. diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_it.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_it.properties index 532f0862ae1b..729b2727a87a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,13 +21,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=Quando si hanno dei progetti dipendenti fra loro, Jenkins può tener \ - traccia della compilazione del progetto upstream che è stata utilizzata in \ +body=Quando si hanno dei progetti dipendenti fra loro, Jenkins può tener \ + traccia della compilazione del progetto upstream che è stata utilizzata in \ una precisa compilazione del progetto downstream utilizzando i record \ creati dal supporto per \ le impronte digitali. For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=\ - Affinché questa funzionalità possa essere utilizzata, devono essere \ + Affinché questa funzionalità possa essere utilizzata, devono essere \ rispettate le seguenti condizioni: The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses.=\ Il progetto downstream deve registrare le impronte digitali dei file del \ @@ -35,6 +35,6 @@ The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=\ Il progetto upstream deve registrare le impronte digitali dei propri \ artefatti di compilazione. -This\ allows\ Jenkins\ to\ correlate\ two\ projects.=Ciò consente a Jenkins \ +This\ allows\ Jenkins\ to\ correlate\ two\ projects.=Ciò consente a Jenkins \ di correlare i due progetti. -Title=Cos''è una "relazione tra progetti"? +Title=Cos''è una "relazione tra progetti"? diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_ja.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_ja.properties index 37f1ae9325ae..0fe34d59a4ff 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_ja.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_ja.properties @@ -20,21 +20,21 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Title="\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u76f8\u95a2\u95a2\u4fc2"\u3068\u306f? +Title="プロジェクト相関関係"ã¨ã¯? body=\ - \u4e92\u3044\u306b\u4f9d\u5b58\u3059\u308b\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u304c\u3042\u308b\u5834\u5408\u3001 Jenkins\u306f\u3069\u306e\u4e0a\u6d41\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u304c\u3069\u306e\u4e0b\u6d41\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306b\u4f7f\u7528\u3055\u308c\u3066\u3044\u308b\u304b\u3092\u3001\ - \u6307\u7d0b\u30b5\u30dd\u30fc\u30c8\ - \u306b\u3088\u3063\u3066\u4f5c\u6210\u3055\u308c\u305f\u8a18\u9332\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u3067\u8ffd\u8de1\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 + 互ã„ã«ä¾å­˜ã™ã‚‹ãƒ—ロジェクトãŒã‚ã‚‹å ´åˆã€ Jenkinsã¯ã©ã®ä¸Šæµãƒ—ロジェクトãŒã©ã®ä¸‹æµãƒ—ロジェクトã«ä½¿ç”¨ã•ã‚Œã¦ã„ã‚‹ã‹ã‚’ã€\ + 指紋サãƒãƒ¼ãƒˆ\ + ã«ã‚ˆã£ã¦ä½œæˆã•ã‚ŒãŸè¨˜éŒ²ã‚’使用ã™ã‚‹ã“ã¨ã§è¿½è·¡ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=\ - \u3053\u306e\u6a5f\u80fd\u306e\u305f\u3081\u306b\u3001\u4e0b\u8a18\u306e\u6761\u4ef6\u3092\u6e80\u305f\u3059\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 + ã“ã®æ©Ÿèƒ½ã®ãŸã‚ã«ã€ä¸‹è¨˜ã®æ¡ä»¶ã‚’満ãŸã™å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=\ - \u4e0a\u6d41\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306f\u6210\u679c\u7269\u3092\u30d3\u30eb\u30c9\u3057\u305f\u6307\u7d0b\u3092\u8a18\u9332\u3057\u307e\u3059\u3002. + 上æµãƒ—ロジェクトã¯æˆæžœç‰©ã‚’ビルドã—ãŸæŒ‡ç´‹ã‚’記録ã—ã¾ã™ã€‚. The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses.=\ - \u4e0b\u6d41\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306f\u4f7f\u7528\u3057\u3066\u3044\u308b\u4e0a\u6d41\u306e\u30d5\u30a1\u30a4\u30eb\u306e\u6307\u7d0b\u3092\u8a18\u9332\u3057\u307e\u3059\u3002. + 下æµãƒ—ロジェクトã¯ä½¿ç”¨ã—ã¦ã„る上æµã®ãƒ•ã‚¡ã‚¤ãƒ«ã®æŒ‡ç´‹ã‚’記録ã—ã¾ã™ã€‚. This\ allows\ Jenkins\ to\ correlate\ two\ projects.=\ - \u3053\u308c\u306fJenkins\u306b\u4e8c\u3064\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u76f8\u4e92\u306b\u95a2\u9023\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 + ã“ã‚Œã¯Jenkinsã«äºŒã¤ã®ãƒ—ロジェクトを相互ã«é–¢é€£ã•ã›ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_lt.properties index 2b95a2abbc2b..ecd180357c62 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_lt.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_lt.properties @@ -1,9 +1,9 @@ -Title=Kas yra \u201eprojekt\u0173 priklausomyb\u0117\u201c? +Title=Kas yra „projektų priklausomybė“? body=\ - Kai turite projektus, kurie priklauso vienas nuo kito, naudodamas \u012fra\u0161us, sukurtus \ - pir\u0161t\u0173 antspaud\u0173 palaikymo Jenkinsas gali sekti, kuris ankstesnio projekto vykdymas \ - naudojamas kuriame \u017eemesnio projekto vykdyme. -The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses.=V\u0117lesnis projektas registruoja panaudot\u0173 ankstesniojo projekto fail\u0173 antspaudus. -The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=Ankstesnis projektas registruoja savo vykdymo rezultat\u0173 antspaudus. -This\ allows\ Jenkins\ to\ correlate\ two\ projects.=Tai leid\u017eia Jenkinsus koreliuoti projektus. -For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=Kad veikt\u0173 \u0161i savyb\u0117, turi b\u016bti patenkintos \u0161ios s\u0105lygos: + Kai turite projektus, kurie priklauso vienas nuo kito, naudodamas įraÅ¡us, sukurtus \ + pirÅ¡tų antspaudų palaikymo Jenkinsas gali sekti, kuris ankstesnio projekto vykdymas \ + naudojamas kuriame žemesnio projekto vykdyme. +The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses.=VÄ—lesnis projektas registruoja panaudotų ankstesniojo projekto failų antspaudus. +The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=Ankstesnis projektas registruoja savo vykdymo rezultatų antspaudus. +This\ allows\ Jenkins\ to\ correlate\ two\ projects.=Tai leidžia Jenkinsus koreliuoti projektus. +For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=Kad veiktų Å¡i savybÄ—, turi bÅ«ti patenkintos Å¡ios sÄ…lygos: diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_pt_BR.properties index 9a4c8a02f9f3..3b37f7186b76 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_pt_BR.properties @@ -20,16 +20,16 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Title=O que \u00E9 "Projeto de relacionamento"? -body=Quando voc\u00EA tem projetos que dependem um do outro, o Jenkins pode rastrear qual constru\u00E7\u00E3o \u00E9 hierarquicamente \ +Title=O que é "Projeto de relacionamento"? +body=Quando você tem projetos que dependem um do outro, o Jenkins pode rastrear qual construção é hierarquicamente \ superior, usando os registros criados pelo suporte de \ - impress\u00E3o digital. -For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=Para esta caracter\u00EDstica funcionar, as \ - seguintes condi\u00E7\u00F5es s\u00E3o necess\u00E1rias -The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=O projeto pai grava as impress\u00F5es \ - digitais de seus artefatos de constru\u00E7\u00E3o. + impressão digital. +For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=Para esta característica funcionar, as \ + seguintes condições são necessárias +The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=O projeto pai grava as impressões \ + digitais de seus artefatos de construção. This\ allows\ Jenkins\ to\ correlate\ two\ projects.=Isto permite que o Jenkins correlacione dois projetos. The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses.=O projeto filho grava o \ - registro na impress\u00E3o digital do projeto pai. + registro na impressão digital do projeto pai. diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_ru.properties index 2f8bc0b98db2..8d40e68fe25d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_ru.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=\u0427\u0442\u043e\u0431\u044b \u0437\u0430\u0440\u0430\u0431\u043e\u0442\u0430\u043b\u0430 \u044d\u0442\u0430 \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u0442\u044c \u0443\u0434\u043e\u0432\u043b\u0435\u0442\u0432\u043e\u0440\u0435\u043d\u044b \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f: -The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=\u0412\u043e\u0441\u0445\u043e\u0434\u044f\u0449\u0438\u0439 \u043f\u0440\u043e\u0435\u043a\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0435\u0442 \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u043a\u0438 (fingrprints) \u0441\u0432\u043e\u0438\u0445 \u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u043e\u0432. -The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses.=\u041d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0438\u0439 \u043f\u0440\u043e\u0435\u043a\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0435\u0442 \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u043a\u0438 (fingrprints) \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0445 \u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u043e\u0432 \u0432\u043e\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430. -This\ allows\ Jenkins\ to\ correlate\ two\ projects.=\u042d\u0442\u043e \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0435\u0442 Jenkins \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u043c\u0435\u0436\u0434\u0443 \u0434\u0432\u0443\u043c\u044f \u043f\u0440\u043e\u0435\u043a\u0442\u0430\u043c\u0438. -Title=\u0427\u0442\u043e \u0442\u0430\u043a\u043e\u0435 "\u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u0432"? +For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=Чтобы заработала Ñта Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ Ð´Ð¾Ð»Ð¶Ð½Ñ‹ быть удовлетворены Ñледующие уÑловиÑ: +The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=ВоÑходÑщий проект ÑохранÑет отпечатки (fingrprints) Ñвоих артефактов. +The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses.=ÐиÑходÑщий проект ÑохранÑет отпечатки (fingrprints) иÑпользуемых артефактов воÑходÑщего проекта. +This\ allows\ Jenkins\ to\ correlate\ two\ projects.=Это позволÑет Jenkins уÑтановить отношение между Ð´Ð²ÑƒÐ¼Ñ Ð¿Ñ€Ð¾ÐµÐºÑ‚Ð°Ð¼Ð¸. +Title=Что такое "Ð¾Ñ‚Ð½Ð¾ÑˆÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¾ÐµÐºÑ‚Ð¾Ð²"? body=\ - \u041a\u043e\u0433\u0434\u0430 \u0443 \u0432\u0430\u0441 \u0435\u0441\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442\u044b, \u043e\u0434\u0438\u043d \u0438\u0437 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0437\u0430\u0432\u0438\u0441\u0438\u0442 \u043e\u0442 \u0434\u0440\u0443\u0433\u043e\u0433\u043e, Jenkins \u043c\u043e\u0436\u0435\u0442 \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u0442\u044c, \ - \u043a\u0430\u043a\u0430\u044f \u0441\u0431\u043e\u0440\u043a\u0430 \u0432\u043e\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0430 \u0432 \u043a\u0430\u043a\u043e\u0439 \u0441\u0431\u043e\u0440\u043a\u0435 \u043d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0433\u043e, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \ - \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u043a\u043e\u0432. + Когда у Ð²Ð°Ñ ÐµÑÑ‚ÑŒ проекты, один из которых завиÑит от другого, Jenkins может отÑлеживать, \ + ÐºÐ°ÐºÐ°Ñ Ñборка воÑходÑщего проекта иÑпользована в какой Ñборке ниÑходÑщего, иÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÑ \ + Ñохраненные запиÑи отпечатков. diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_sr.properties index 3f340e178a3b..fef099187abe 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_sr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_sr.properties @@ -1,10 +1,10 @@ # This file is under the MIT License by authors -Title=\u0428\u0442\u0430 \u0458\u0435 "\u0432\u0435\u0437\u0430 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430"? -body=Jenkins \u043C\u043E\u0436\u0435 \u043F\u0440\u0430\u0442\u0438\u0442\u0438 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0435 \u043A\u043E\u0458\u0438 \u0437\u0430\u0432\u0438\u0441\u0435 \u0458\u0435\u0434\u0430\u043D \u043E\u0434 \u0434\u0440\u0443\u0433\u043E\u0433 \u043A\u043E\u0440\u0438\u0441\u0442\u0435\u045B\u0438 \u0434\u0438\u0433\u0438\u0442\u0430\u043B\u043D\u0438 \u043E\u0442\u0438\u0441\u0430\u043A. -For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=\u0414\u0430 \u0431\u0438 \u0442\u043E \u0440\u0430\u0434\u0438\u043B\u043E, \u0442\u0440\u0435\u0431\u0430 \u043E\u0431\u0435\u0437\u0431\u0435\u0434\u0438\u0442\u0438: -The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=Upstream \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 \u0447\u0443\u0432\u0430 \u043E\u0442\u0438\u0441\u043A\u0435 \u0441\u0432\u043E\u0458\u0438\u0445 \u0430\u0440\u0442\u0438\u0444\u0430\u043A\u0430\u0442\u0438 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435. -The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses.=Downstream \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 \u0431\u0435\u043B\u0435\u0436\u0438 \u0434\u0438\u0433\u0438\u0442\u0430\u043B\u043D\u0435 \u043E\u0442\u0438\u0441\u043A\u0435 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u043E\u0434 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u043E\u0434 \u043A\u043E\u0433\u0430 \u0437\u0430\u0432\u0438\u0441\u0438. -This\ allows\ Jenkins\ to\ correlate\ two\ projects.=\u041E\u0432\u043E \u043E\u043C\u043E\u0433\u0443\u045B\u0430\u0432\u0430 Jenkins-\u0443 \u0434\u0430 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u0438 \u0432\u0435\u0437\u0443 \u0438\u0437\u043C\u0435\u0452\u0443 \u0434\u0432\u043E\u0458\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430. -For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met=\u0414\u0430 \u0431\u0438 \u0442\u043E \u0440\u0430\u0434\u0438\u043B\u043E, \u043C\u043E\u0440\u0430\u0442\u0435 \u043E\u0431\u0435\u0437\u0431\u0435\u0434\u0438\u0442\u0438: -The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ jar\ files\ it\ uses.=Downstream \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 \u0431\u0435\u043B\u0435\u0436\u0438 \u0434\u0438\u0433\u0438\u0442\u0430\u043B\u043D\u0435 \u043E\u0442\u0438\u0441\u043A\u0435 jar \u0430\u0440\u0445\u0438\u0432\u0435 \u043E\u0434 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u043E\u0434 \u043A\u043E\u0433\u0430 \u0437\u0430\u0432\u0438\u0441\u0438. +Title=Шта је "веза пројекта"? +body=Jenkins може пратити изградњу пројекте који завиÑе један од другог кориÑтећи дигитални отиÑак. +For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=Да би то радило, треба обезбедити: +The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=Upstream пројекат чува отиÑке Ñвојих артифакати изградње. +The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses.=Downstream пројекат бележи дигиталне отиÑке датотека од пројекта од кога завиÑи. +This\ allows\ Jenkins\ to\ correlate\ two\ projects.=Ово омогућава Jenkins-у да уÑтанови везу између двоје пројекта. +For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met=Да би то радило, морате обезбедити: +The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ jar\ files\ it\ uses.=Downstream пројекат бележи дигиталне отиÑке jar архиве од пројекта од кога завиÑи. diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_tr.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_tr.properties index 46fba638ccde..06514de246c9 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_tr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_tr.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Title="Proje ili\u015fkisi" nedir? +Title="Proje iliÅŸkisi" nedir? body=\ - E\u011fer birbirine ba\u011fl\u0131 projeleriniz varsa, Jenkins parmakizi deste\u011fi\ - ile olu\u015fturulan kay\u0131tlar\u0131 kullanarak hangi upstream projenin hangi downstream proje taraf\u0131ndan\ - kullan\u0131ld\u0131\u011f\u0131n\u0131 takip edebilir. -For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=Bu \u00f6zelli\u011fin \u00e7al\u0131\u015fabilmesi i\u00e7in devam\u0131ndaki \u015fartlar\u0131n sa\u011flanmas\u0131 gerekir: -The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=Upstream proje\, kendi yap\u0131land\u0131rma artefaktlar\u0131n\u0131n parmakizlerini kaydeder. -The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ jar\ files\ it\ uses.=Downstream proje, upstream projeden kulland\u0131\u011f\u0131 jar\'lar\u0131n parmakizini kaydeder. -This\ allows\ Jenkins\ to\ correlate\ two\ projects.=Bu, Jenkins\'e iki projeyi kar\u015f\u0131l\u0131kl\u0131 ili\u015fkilendirme yetene\u011fini verir. + EÄŸer birbirine baÄŸlı projeleriniz varsa, Jenkins parmakizi desteÄŸi\ + ile oluÅŸturulan kayıtları kullanarak hangi upstream projenin hangi downstream proje tarafından\ + kullanıldığını takip edebilir. +For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=Bu özelliÄŸin çalışabilmesi için devamındaki ÅŸartların saÄŸlanması gerekir: +The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=Upstream proje\, kendi yapılandırma artefaktlarının parmakizlerini kaydeder. +The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ jar\ files\ it\ uses.=Downstream proje, upstream projeden kullandığı jar\'ların parmakizini kaydeder. +This\ allows\ Jenkins\ to\ correlate\ two\ projects.=Bu, Jenkins\'e iki projeyi karşılıklı iliÅŸkilendirme yeteneÄŸini verir. diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_zh_TW.properties index 8b7087e28193..eb1c97b71429 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_zh_TW.properties @@ -20,9 +20,9 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Title=\u4ec0\u9ebc\u662f\u300c\u5c08\u6848\u95dc\u806f\u300d? -body=\u5982\u679c\u60a8\u7684\u5c08\u6848\u9593\u5f7c\u6b64\u6709\u95dc\u806f\uff0cJenkins \u5c31\u80fd\u8ffd\u8e64\u4e0b\u6e38\u5c08\u6848\u5230\u5e95\u662f\u4f7f\u7528\u5230\u4e0a\u6e38\u5c08\u6848\u7684\u54ea\u4e00\u7248\u9032\u884c\u5efa\u7f6e\u3002\u9019\u500b\u529f\u80fd\u662f\u5229\u7528\u6a94\u6848\u6307\u7d0b\u529f\u80fd\u6240\u7522\u751f\u7684\u8a18\u9304\u4f86\u9054\u6210\u3002 -For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=\u7b26\u5408\u4e0b\u5217\u689d\u4ef6\u624d\u80fd\u4f7f\u7528\u9019\u500b\u529f\u80fd\: -The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=\u4e0a\u6e38\u5c08\u6848\u8981\u8a18\u9304\u5efa\u7f6e\u6210\u54c1\u7684\u6307\u7d0b\u3002 -The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses.=\u4e0b\u6e38\u5c08\u6848\u8981\u8a18\u9304\u7528\u5230\u7684\u4e0a\u6e38\u6a94\u6848\u6307\u7d0b\u3002 -This\ allows\ Jenkins\ to\ correlate\ two\ projects.=\u5982\u6b64\u4e00\u4f86 Jenkins \u5c31\u80fd\u95dc\u806f\u9019\u5169\u500b\u5c08\u6848\u3002 +Title=什麼是「專案關è¯ã€? +body=如果您的專案間彼此有關è¯ï¼ŒJenkins 就能追蹤下游專案到底是使用到上游專案的哪一版進行建置。這個功能是利用檔案指紋功能所產生的記錄來é”æˆã€‚ +For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=符åˆä¸‹åˆ—æ¢ä»¶æ‰èƒ½ä½¿ç”¨é€™å€‹åŠŸèƒ½\: +The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts.=上游專案è¦è¨˜éŒ„建置æˆå“的指紋。 +The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses.=下游專案è¦è¨˜éŒ„用到的上游檔案指紋。 +This\ allows\ Jenkins\ to\ correlate\ two\ projects.=如此一來 Jenkins 就能關è¯é€™å…©å€‹å°ˆæ¡ˆã€‚ diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_bg.properties index 51b2569ace15..0f9e044632d5 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_bg.properties @@ -21,12 +21,12 @@ # THE SOFTWARE. Project\ Relationship=\ - \u0412\u0440\u044a\u0437\u043a\u0438 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 + Връзки на проекта Compare=\ - \u0421\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435 + Сравнение There\ are\ no\ fingerprint\ records\ that\ connect\ these\ two\ projects.=\ - \u041d\u044f\u043c\u0430 \u0437\u0430\u043f\u0438\u0441\u0438, \u043a\u043e\u0438\u0442\u043e \u0434\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0442 \u0432\u0440\u044a\u0437\u043a\u0438 \u043c\u0435\u0436\u0434\u0443 \u0442\u0435\u0437\u0438 \u0434\u0432\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430. + ÐÑма запиÑи, които да уÑтановÑÑ‚ връзки между тези два проекта. downstream\ project=\ - \u041f\u043e\u0441\u043b\u0435\u0434\u0432\u0430\u0449 \u043f\u0440\u043e\u0435\u043a\u0442 + ПоÑледващ проект upstream\ project=\ - \u041f\u0440\u0435\u0434\u0445\u043e\u0436\u0434\u0430\u0449 \u043f\u0440\u043e\u0435\u043a\u0442 + Предхождащ проект diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_de.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_de.properties index 698d2c9ebfed..06d92117599f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_de.properties @@ -25,4 +25,4 @@ upstream\ project=Vorgelagertes Projekt downstream\ project=Nachgelagertes Projekt Compare=Vergleichen There\ are\ no\ fingerprint\ records\ that\ connect\ these\ two\ projects.=\ - Es existieren keine Fingerabdrücke, welche diese beiden Projekte miteinander verbinden. + Es existieren keine Fingerabdrücke, welche diese beiden Projekte miteinander verbinden. diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_el.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_el.properties index aebac6c82904..08e06a194feb 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_el.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_el.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Compare=\u03A3\u03CD\u03BA\u03C1\u03B9\u03C3\u03B7 +Compare=ΣÏκÏιση diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_et.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_et.properties index 4363a6b64aca..b6e5aab3f6c0 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_et.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_et.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Compare=V\u00F5rdle +Compare=Võrdle Project\ Relationship=Projektide seosed downstream\ project=allavoolu projekt -upstream\ project=\u00FClesvoolu projekt +upstream\ project=ülesvoolu projekt diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_hu.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_hu.properties index 997987441d5e..1e4ad8833457 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_hu.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_hu.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Compare=\u00D6sszehasonl\u00EDt +Compare=Összehasonlít Project\ Relationship=Projekt Kapcsolatok -downstream\ project=r\u00E1k\u00F6vetkez\u0151 projekt -upstream\ project=megel\u0151z\u0151 projekt +downstream\ project=rákövetkezÅ‘ projekt +upstream\ project=megelÅ‘zÅ‘ projekt diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_it.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_it.properties index 051fd51602c0..72817d4b846f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_ja.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_ja.properties index 743eed55de40..ff5a73f5237b 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_ja.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_ja.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Project\ Relationship=\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u76F8\u95A2\u95A2\u4FC2 -upstream\ project=\u4E0A\u6D41\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8 -downstream\ project=\u4E0B\u6D41\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8 -Compare=\u6BD4\u8F03 +Project\ Relationship=プロジェクト相関関係 +upstream\ project=上æµãƒ—ロジェクト +downstream\ project=下æµãƒ—ロジェクト +Compare=比較 There\ are\ no\ fingerprint\ records\ that\ connect\ these\ two\ projects.=\ - 2\u3064\u306E\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u3092\u95A2\u9023\u4ED8\u3051\u308B\u30D5\u30A1\u30A4\u30EB\u6307\u7D0B\u306E\u8A18\u9332\u304C\u3042\u308A\u307E\u305B\u3093\u3002 + 2ã¤ã®ãƒ—ロジェクトを関連付ã‘るファイル指紋ã®è¨˜éŒ²ãŒã‚ã‚Šã¾ã›ã‚“。 diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_lt.properties index f78b03f14167..7343b885121f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_lt.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_lt.properties @@ -1,5 +1,5 @@ Compare=Palyginti -Project\ Relationship=Projekt\u0173 ry\u0161ys -There\ are\ no\ fingerprint\ records\ that\ connect\ these\ two\ projects.=N\u0117ra antspaud\u0173, siejan\u010di\u0173 \u0161iuos du projektus. -downstream\ project=v\u0117lesnis projektas +Project\ Relationship=Projektų ryÅ¡ys +There\ are\ no\ fingerprint\ records\ that\ connect\ these\ two\ projects.=NÄ—ra antspaudų, siejanÄių Å¡iuos du projektus. +downstream\ project=vÄ—lesnis projektas upstream\ project=ankstesnis projektas diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_lv.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_lv.properties index b14d5234cb55..ad78a5e57510 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_lv.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_lv.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Compare=Sal\u012Bdzin\u0101t +Compare=SalÄ«dzinÄt Project\ Relationship=Projektu saknes -There\ are\ no\ fingerprint\ records\ that\ connect\ these\ two\ projects.=Nav neviena pirkstu nospieduma ieraksta, kur\u0161 savienotu \u0161os divus projektus. +There\ are\ no\ fingerprint\ records\ that\ connect\ these\ two\ projects.=Nav neviena pirkstu nospieduma ieraksta, kurÅ¡ savienotu Å¡os divus projektus. downstream\ project=lejteces projekts -upstream\ project=aug\u0161teces projekts +upstream\ project=augÅ¡teces projekts diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_pl.properties index 4b71e2b25ab8..3a678c286d0f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_pl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_pl.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Compare=Por\u00F3wnaj -Project\ Relationship=Zale\u017Cno\u015Bci projekt\u00F3w -downstream\ project=Projekt podrz\u0119dny -upstream\ project=Projekt nadrz\u0119dny +Compare=Porównaj +Project\ Relationship=ZależnoÅ›ci projektów +downstream\ project=Projekt podrzÄ™dny +upstream\ project=Projekt nadrzÄ™dny diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_pt_BR.properties index 3b14806c03e2..e00d7e50887b 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_pt_BR.properties @@ -24,4 +24,4 @@ Project\ Relationship=Relacionamento de projetos upstream\ project=Projeto pai downstream\ project=Projeto filho Compare=Comparar -There\ are\ no\ fingerprint\ records\ that\ connect\ these\ two\ projects.=N\u00e3o existe identificador conectando esses dois projetos. +There\ are\ no\ fingerprint\ records\ that\ connect\ these\ two\ projects.=Não existe identificador conectando esses dois projetos. diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_ru.properties index 547fb75159b0..0f8b1dc929db 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_ru.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Project\ Relationship=\u041e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u0432 -upstream\ project=\u0432\u043e\u0441\u0445\u043e\u0434\u044f\u0449\u0438\u0439 \u043f\u0440\u043e\u0435\u043a\u0442 -downstream\ project=\u043d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0438\u0439 \u043f\u0440\u043e\u0435\u043a\u0442 -Compare=\u0421\u0440\u0430\u0432\u043d\u0438\u0442\u044c -There\ are\ no\ fingerprint\ records\ that\ connect\ these\ two\ projects.=\u041d\u0435\u0442 \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u043a\u043e\u0432 (fingerprints), \u0441\u043e\u0435\u0434\u0438\u043d\u044f\u044e\u0449\u0438\u0445 \u044d\u0442\u0438 \u0434\u0432\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430. +Project\ Relationship=ÐžÑ‚Ð½Ð¾ÑˆÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¾ÐµÐºÑ‚Ð¾Ð² +upstream\ project=воÑходÑщий проект +downstream\ project=ниÑходÑщий проект +Compare=Сравнить +There\ are\ no\ fingerprint\ records\ that\ connect\ these\ two\ projects.=Ðет отпечатков (fingerprints), ÑоединÑющих Ñти два проекта. diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_sk.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_sk.properties index 379fae025dac..357d78b43c76 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_sk.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_sk.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors Compare=Porovnaj -Project\ Relationship=Vz\u0165ahy projektov +Project\ Relationship=VzÅ¥ahy projektov downstream\ project=downstream projekt upstream\ project=upstream projekt diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_sr.properties index 7d01aa8e66c2..1c8482f8276e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_sr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_sr.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -upstream\ project=upstream \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 -downstream\ project=downstream \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 -Compare=\u0423\u043F\u043E\u0440\u0435\u0434\u0438 +upstream\ project=upstream пројекат +downstream\ project=downstream пројекат +Compare=Упореди There\ are\ no\ fingerprint\ records\ that\ connect\ these\ two\ projects.= -Project\ Relationship=\u041E\u0434\u043D\u043E\u0441 \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442\u0430 +Project\ Relationship=ÐžÐ´Ð½Ð¾Ñ Ð¿Ñ€Ð¾Ñ˜ÐµÐºÐ°Ñ‚Ð° diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_sv_SE.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_sv_SE.properties index ad87c03f9ef5..1d99d1402a4a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_sv_SE.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_sv_SE.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Compare=J\u00E4mf\u00F6r +Compare=Jämför Project\ Relationship=Jobbrelation -downstream\ project=\u00F6verordnat jobb +downstream\ project=överordnat jobb upstream\ project=underordnat jobb diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_tr.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_tr.properties index 434dfdd2b816..a16167154de0 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_tr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_tr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Project\ Relationship=Projelerin \u0130li\u015fkisi +Project\ Relationship=Projelerin Ä°liÅŸkisi upstream\ project=upstream proje downstream\ project=downstream proje -Compare=Kar\u015f\u0131la\u015ft\u0131r +Compare=KarşılaÅŸtır diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_uk.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_uk.properties index d926f5312e56..3f488a950b7a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_uk.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_uk.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Compare=\u041F\u043E\u0440\u0456\u0432\u043D\u044F\u0442\u0438 -Project\ Relationship=\u0417\u0432''\u044F\u0437\u043A\u0438 \u043F\u0440\u043E\u0435\u043A\u0442\u0443 -downstream\ project=\u043D\u0438\u0437\u0445\u0456\u0434\u043D\u0438\u0439 \u043F\u0440\u043E\u0435\u043A\u0442 -upstream\ project=\u0432\u0438\u0441\u0445\u0456\u0434\u043D\u0438\u0439 \u043F\u0440\u043E\u0435\u043A\u0442 +Compare=ПорівнÑти +Project\ Relationship=Зв''Ñзки проекту +downstream\ project=низхідний проект +upstream\ project=виÑхідний проект diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_zh_TW.properties index 98fc84b85d94..f91119563d0d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_zh_TW.properties @@ -21,9 +21,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Project\ Relationship=\u5c08\u6848\u95dc\u806f -upstream\ project=\u4e0a\u6e38\u5c08\u6848 -downstream\ project=\u4e0b\u6e38\u5c08\u6848 -Compare=\u6bd4\u8f03 +Project\ Relationship=å°ˆæ¡ˆé—œè¯ +upstream\ project=上游專案 +downstream\ project=下游專案 +Compare=比較 There\ are\ no\ fingerprint\ records\ that\ connect\ these\ two\ projects.=\ - \u6c92\u6709\u9023\u7d50\u9019\u5169\u500b\u5c08\u6848\u7684\u6307\u7d0b\u8a18\u9304\u3002 + 沒有連çµé€™å…©å€‹å°ˆæ¡ˆçš„指紋記錄。 diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_bg.properties index c3b52a13039b..b4654cc61d29 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_bg.properties @@ -21,24 +21,24 @@ # THE SOFTWARE. Plugins=\ - \u041f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438 + ПриÑтавки Name=\ - \u0418\u043c\u0435 + Име No\ plugins\ installed.=\ - \u041d\u0435 \u0441\u0430 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0438 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438 + Ðе Ñа инÑталирани приÑтавки # Visit this page for master and agent thread dumps. threadDump_blurb=\ - \u041d\u0430 \u0442\u0430\u0437\u0438 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 f\u0441\u0430 \u0434\u0430\u0434\u0435\u043d\u0438 \u0440\u0430\u0437\u0442\u043e\u0432\u0430\u0440\u0432\u0430\u043d\u0438\u044f\u0442\u0430 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u0438\u0442\u0435 \u0438\ - \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u0438 \u043d\u0438\u0448\u043a\u0438. + Ðа тази Ñтраница fÑа дадени разтоварваниÑта на оÑновните и\ + подчинени нишки. System\ Properties=\ - \u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430 + СвойÑтва на ÑиÑтемата Environment\ Variables=\ - \u041f\u0440\u043e\u043c\u0435\u043d\u043b\u0438\u0432\u0438 \u043d\u0430 \u0441\u0440\u0435\u0434\u0430\u0442\u0430 + Променливи на Ñредата Enabled=\ - \u0412\u043a\u043b\u044e\u0447\u0435\u043d\u043e + Включено Thread\ Dumps=\ - \u0420\u0430\u0437\u0442\u043e\u0432\u0430\u0440\u0432\u0430\u043d\u0438\u044f \u043d\u0430 \u043d\u0438\u0448\u043a\u0438\u0442\u0435 + Ð Ð°Ð·Ñ‚Ð¾Ð²Ð°Ñ€Ð²Ð°Ð½Ð¸Ñ Ð½Ð° нишките Version=\ - \u0412\u0435\u0440\u0441\u0438\u044f + ВерÑÐ¸Ñ System\ Information=\ - \u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430 + Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° ÑиÑтемата diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_cs.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_cs.properties index 798571a624e7..e8e75bd37073 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_cs.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_cs.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Enabled=Spu\u0161t\u011Bno -Name=Jm\u00E9no -Plugins=Dopl\u0148ky -System\ Properties=Syst\u00E9mov\u00E9 informace +Enabled=SpuÅ¡tÄ›no +Name=Jméno +Plugins=Doplňky +System\ Properties=Systémové informace Version=Verze diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_da.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_da.properties index d4e60028fc0e..39aaca906377 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_da.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_da.properties @@ -23,5 +23,5 @@ Name=Navn System\ Properties=Systemegenskaber Enabled=Aktiveret -Environment\ Variables=Milj\u00f8variable +Environment\ Variables=Miljøvariable Version=Version diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_de.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_de.properties index 16c8f4f75f12..23c565b4c3e3 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_de.properties @@ -27,6 +27,6 @@ No\ plugins\ installed.=Keine Plugins installiert. Name=Name Plugins=Plugins Version=Version -threadDump_blurb=Besuchen Sie diese Seite um Thread-Dumps f\u00FCr Master und Agenten zu sehen. +threadDump_blurb=Besuchen Sie diese Seite um Thread-Dumps für Master und Agenten zu sehen. System\ Information=Systeminformationen Thread\ Dumps=Thread-Dumps diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_el.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_el.properties index e6664ac87cfb..f270f786ca61 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_el.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_el.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Enabled=\u0395\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF -Environment\ Variables=\u039C\u03B5\u03C4\u03B1\u03B2\u03BB\u03B7\u03C4\u03AD\u03C2 \u03A0\u03B5\u03C1\u03B9\u03B2\u03AC\u03BB\u03BB\u03BF\u03BD\u03C4\u03BF\u03C2 -Name=\u038C\u03BD\u03BF\u03BC\u03B1 -Plugins=\u03A0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C4\u03B1 -System\ Properties=\u039C\u03B5\u03C4\u03B1\u03B2\u03BB\u03B7\u03C4\u03AD\u03C2 \u03A3\u03C5\u03C3\u03C4\u03AE\u03BC\u03B1\u03C4\u03BF\u03C2 -Version=\u0388\u03BA\u03B4\u03BF\u03C3\u03B7 +Enabled=ΕνεÏγοποιημένο +Environment\ Variables=Μεταβλητές ΠεÏιβάλλοντος +Name=Όνομα +Plugins=ΠÏόσθετα +System\ Properties=Μεταβλητές Συστήματος +Version=Έκδοση diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_es.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_es.properties index f5661dca26d3..e736d8b0195e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_es.properties @@ -22,9 +22,9 @@ System\ Properties=Propiedades del sistema Environment\ Variables=Variables de entorno -Version=Versión +Version=Versión Plugins=plugins No\ plugins\ installed.=No hay plugins instalados Name=Nombre Enabled=Activo -System\ Information=Información del sistema +System\ Information=Información del sistema diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_fr.properties index 3a5d2f906494..659d6c55500e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_fr.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Name=Nom -System\ Properties=Propriétés système +System\ Properties=Propriétés système Enabled=En effet Environment\ Variables=Variables d''environnement Version=Version diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_hu.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_hu.properties index 7f0154a5b74e..5d399a3f579e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_hu.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_hu.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Enabled=Enged\u00E9lyezve -Environment\ Variables=K\u00F6rnyezeti V\u00E1ltoz\u00F3k -Name=N\u00E9v -Plugins=Be\u00E9p\u00FCl\u0151k -System\ Properties=Rendszer Tulajdons\u00E1gok -Version=Verzi\u00F3 +Enabled=Engedélyezve +Environment\ Variables=Környezeti Változók +Name=Név +Plugins=BeépülÅ‘k +System\ Properties=Rendszer Tulajdonságok +Version=Verzió diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_it.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_it.properties index c4506bbfd0dd..b810fccc91e9 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -32,7 +32,7 @@ No\ plugins\ installed.=Nessun componente aggiuntivo installato. Plugins=Componenti aggiuntivi Short=Breve System\ Information=Informazioni di sistema -System\ Properties=Proprietà di sistema +System\ Properties=Proprietà di sistema Thread\ Dumps=Dump thread threadDump_blurb=Si visiti questa pagina per ottenere i \ dump dei thread del master e degli agenti. diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ja.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ja.properties index 5db7ded37efc..3a9887a58975 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ja.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ja.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -System\ Information=\u30b7\u30b9\u30c6\u30e0\u60c5\u5831 -System\ Properties=\u30b7\u30b9\u30c6\u30e0\u30d7\u30ed\u30d1\u30c6\u30a3 -Environment\ Variables=\u74b0\u5883\u5909\u6570 -Plugins=\u30d7\u30e9\u30b0\u30a4\u30f3 -No\ plugins\ installed.=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002 -Name=\u540d\u524d -Version=\u30d0\u30fc\u30b8\u30e7\u30f3 -Enabled=\u6709\u52b9\u5316 -Thread\ Dumps=\u30b9\u30ec\u30c3\u30c9\u30c0\u30f3\u30d7 +System\ Information=システム情報 +System\ Properties=システムプロパティ +Environment\ Variables=環境変数 +Plugins=プラグイン +No\ plugins\ installed.=インストールã•ã‚Œã¦ã„ã¾ã›ã‚“。 +Name=åå‰ +Version=ãƒãƒ¼ã‚¸ãƒ§ãƒ³ +Enabled=有効化 +Thread\ Dumps=スレッドダンプ diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ko.properties index 15002250f6c7..d3bf235a31e3 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ko.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ko.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Enabled=\uD65C\uC131\uD654 -Environment\ Variables=\uD658\uACBD \uBCC0\uC218 -Name=\uC774\uB984 -Plugins=\uD50C\uB7EC\uADF8\uC778 -System\ Properties=\uC2DC\uC2A4\uD15C \uC18D\uC131 -Version=\uBC84\uC804 +Enabled=활성화 +Environment\ Variables=환경 변수 +Name=ì´ë¦„ +Plugins=í”ŒëŸ¬ê·¸ì¸ +System\ Properties=시스템 ì†ì„± +Version=버전 diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_lt.properties index 3de2a8f72eb4..444c49de4a98 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_lt.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_lt.properties @@ -1,10 +1,10 @@ -threadDump_blurb=\u0160iame puslapyje rasite pagrindinio ir agent\u0173 gij\u0173 l\u016b\u017eimo informacij\u0105. -No\ plugins\ installed.=N\u0117ra \u012fdiegt\u0173 pried\u0173. +threadDump_blurb=Å iame puslapyje rasite pagrindinio ir agentų gijų lūžimo informacijÄ…. +No\ plugins\ installed.=NÄ—ra įdiegtų priedų. Name=Pavadinimas -System\ Properties=Sistemos savyb\u0117s +System\ Properties=Sistemos savybÄ—s System\ Information=Sistemos informacija Plugins=Priedai Environment\ Variables=Aplinkos kintamieji -Enabled=\u012ejungta -Thread\ Dumps=Gij\u0173 l\u016b\u017eimo informacija +Enabled=Ä®jungta +Thread\ Dumps=Gijų lūžimo informacija Version=Versija diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_lv.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_lv.properties index 932f25c17dd7..3dc2b832f422 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_lv.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_lv.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Enabled=Iesp\u0113jots -Environment\ Variables=Vides Main\u012Bgie +Enabled=IespÄ“jots +Environment\ Variables=Vides MainÄ«gie Name=Nosaukums -Plugins=Spraud\u0146i -System\ Properties=Sist\u0113mas parametri +Plugins=Spraudņi +System\ Properties=SistÄ“mas parametri Version=Versija diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pl.properties index 215eb8c77bca..dd7b42aeed27 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pl.properties @@ -19,11 +19,11 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Enabled=W\u0142\u0105czony +Enabled=WÅ‚Ä…czony Environment\ Variables=Zmienne systemowe Name=Nazwa Plugins=Wtyczki -System\ Properties=W\u0142a\u015Bciwo\u015Bci systemu +System\ Properties=WÅ‚aÅ›ciwoÅ›ci systemu Version=Wersja -threadDump_blurb=Otw\u00F3rz t\u0119 stron\u0119, aby sprawdzi\u0107 w\u0105tki dla mastera i agent\u00F3w. -Thread\ Dumps=Zrzut w\u0105tk\u00F3w +threadDump_blurb=Otwórz tÄ™ stronÄ™, aby sprawdzić wÄ…tki dla mastera i agentów. +Thread\ Dumps=Zrzut wÄ…tków diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pt_BR.properties index 1339329b1eeb..3ea76149d30c 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pt_BR.properties @@ -21,18 +21,18 @@ # THE SOFTWARE. Name=Nome -Plugins=Extens\u00F5es +Plugins=Extensões System\ Properties=Propriedades do sistema Enabled=Habilitado -Environment\ Variables=Vari\u00E1veis de ambiente -Version=Vers\u00E3o -Thread\ Dumps=Despejo de mem\u00F3ria de linhas de execu\u00E7\u00E3o -No\ plugins\ installed.=Nenhuma extens\u00E3o instalada. -System\ Information=Informa\u00E7\u00F5es do sistema +Environment\ Variables=Variáveis de ambiente +Version=Versão +Thread\ Dumps=Despejo de memória de linhas de execução +No\ plugins\ installed.=Nenhuma extensão instalada. +System\ Information=Informações do sistema Long=Longo -Medium=M\u00E9dio +Medium=Médio Timespan=Intervalo de tempo -Memory\ Usage=Uso\ de\ mem\u00F3ria -Memory\ usage\ graph=Gr\u00E1fico\ de\ uso\ de\ mem\u00F3ria +Memory\ Usage=Uso\ de\ memória +Memory\ usage\ graph=Gráfico\ de\ uso\ de\ memória Short=Curto -threadDump_blurb=Visite esta p\u00E1gina para despejos de mem\u00F3ria de linhas de execu\u00E7\u00E3o do controlador embutido e agentes +threadDump_blurb=Visite esta página para despejos de memória de linhas de execução do controlador embutido e agentes diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pt_PT.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pt_PT.properties index ae8489dc91c0..b953163c5f35 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pt_PT.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pt_PT.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors Enabled=Activo -Environment\ Variables=Vari\u00E1veis de Ambiente +Environment\ Variables=Variáveis de Ambiente Name=Nome System\ Properties=Propriedades de Sistema -Version=Vers\u00E3o +Version=Versão diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ru.properties index 598e6bc8e127..fc7221b64c11 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ru.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u0418\u043c\u044f -Plugins=\u041f\u043b\u0430\u0433\u0438\u043d\u044b -System\ Properties=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u044b -Enabled=\u0410\u043a\u0442\u0438\u0432\u0435\u043d -Environment\ Variables=\u041f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f -Version=\u0412\u0435\u0440\u0441\u0438\u044f -System\ Information=\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f -Thread\ Dumps=\u0414\u0430\u043c\u043f\u044b \u043f\u043e\u0442\u043e\u043a\u043e\u0432 -threadDump_blurb=\u0417\u0430\u0439\u0434\u0438\u0442\u0435 \u043d\u0430 \u044d\u0442\u0443 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0434\u0430\u043c\u043f\u044b \u043c\u0430\u0441\u0442\u0435\u0440\u0430 \u0438 \u0430\u0433\u0435\u043d\u0442\u043e\u0432. -No\ plugins\ installed.=\u041d\u0435\u0442 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0445 \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432. +Name=Ð˜Ð¼Ñ +Plugins=Плагины +System\ Properties=СвойÑтва ÑиÑтемы +Enabled=Ðктивен +Environment\ Variables=Переменные Ð¾ÐºÑ€ÑƒÐ¶ÐµÐ½Ð¸Ñ +Version=ВерÑÐ¸Ñ +System\ Information=СиÑÑ‚ÐµÐ¼Ð½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ +Thread\ Dumps=Дампы потоков +threadDump_blurb=Зайдите на Ñту Ñтраницу, чтобы проÑмотреть дампы маÑтера и агентов. +No\ plugins\ installed.=Ðет уÑтановленных плагинов. diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_sl.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_sl.properties index 90e6d794be0b..77de92b26ecf 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_sl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_sl.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Enabled=Omogo\u010Den +Enabled=OmogoÄen Environment\ Variables=Spremenljivke okolja Name=Ime -Plugins=Vti\u010Dniki +Plugins=VtiÄniki System\ Properties=Lastnosti sistema Version=Verzija diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_sr.properties index 9c8e87a46df1..54996903aee1 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_sr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_sr.properties @@ -1,12 +1,12 @@ # This file is under the MIT License by authors -System\ Information=\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0435 \u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0443 -System\ Properties=\u0421\u0438\u0441\u0442\u0435\u043C\u0441\u043A\u0430 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 -Environment\ Variables=\u041F\u0440\u043E\u043C\u0435\u043D\u0459\u0438\u0432\u0435 \u0441\u0440\u0435\u0434\u0438\u043D\u0435 -Plugins=\u041C\u043E\u0434\u0443\u043B\u0435 -No\ plugins\ installed.=\u041D\u0435\u043C\u0430 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u0438\u0445 \u043C\u043E\u0434\u0443\u043B\u0430. -Name=\u0418\u043C\u0435 -Version=\u0412\u0435\u0440\u0437\u0438\u0458\u0430 -Enabled=\u041E\u043C\u043E\u0433\u0443\u045B\u0435\u043D\u043E -Thread\ Dumps=\u0414\u0435\u043F\u043E\u043D\u0438\u0458a \u043D\u0438\u0442\u043E\u0432\u0430 -threadDump_blurb=\u041E\u0442\u0438\u0452\u0438\u0442\u0435 \u043D\u0430 \u043E\u0432\u0443 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0443 \u0434\u0430 \u0432\u0438\u0434\u0438\u0442\u0435 \u0434\u0435\u043F\u043E\u043D\u0438\u0458\u0435 \u043D\u0438\u0442\u043E\u0432\u0430 \u0433\u043B\u0430\u0432\u043D\u0438\u0445 \u0438 \u0430\u0433\u0435\u043D\u0442\u043D\u0438\u0445 \u043C\u0430\u0448\u0438\u043D\u0430. +System\ Information=Информације о ÑиÑтему +System\ Properties=СиÑтемÑка подешавања +Environment\ Variables=Променљиве Ñредине +Plugins=Модуле +No\ plugins\ installed.=Ðема инÑталираних модула. +Name=Име +Version=Верзија +Enabled=Омогућено +Thread\ Dumps=Депонијa нитова +threadDump_blurb=Отиђите на ову Ñтраницу да видите депоније нитова главних и агентних машина. diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_sv_SE.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_sv_SE.properties index edee65f72b85..54fa90a69392 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_sv_SE.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_sv_SE.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Enabled=Aktiverad -Environment\ Variables=Milj\u00F6variabler +Environment\ Variables=Miljövariabler Name=Namn System\ Properties=Systemegenskaper diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_tr.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_tr.properties index 15402a0854bb..56c89fd61901 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_tr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -System\ Properties=Sistem \u00d6zellikleri -Environment\ Variables=Ortam De\u011fi\u015fkenleri +System\ Properties=Sistem Özellikleri +Environment\ Variables=Ortam DeÄŸiÅŸkenleri diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_uk.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_uk.properties index 0cccc6a95768..2cd50b8cbb27 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_uk.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_uk.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Enabled=\u0423\u0432\u0456\u043C\u043A\u043D\u0435\u043D\u043E -Environment\ Variables=\u0417\u043C\u0456\u043D\u043D\u0456 \u043E\u0442\u043E\u0447\u0435\u043D\u043D\u044F -Name=\u041D\u0430\u0437\u0432\u0430 -Plugins=\u0414\u043E\u0434\u0430\u0442\u043A\u0438 -System\ Properties=\u0421\u0438\u0441\u0442\u0435\u043C\u043D\u0456 \u0432\u043B\u0430\u0441\u0442\u0438\u0432\u043E\u0441\u0442\u0456 -Version=\u0412\u0435\u0440\u0441\u0456\u044F +Enabled=Увімкнено +Environment\ Variables=Змінні Ð¾Ñ‚Ð¾Ñ‡ÐµÐ½Ð½Ñ +Name=Ðазва +Plugins=Додатки +System\ Properties=СиÑтемні влаÑтивоÑÑ‚Ñ– +Version=ВерÑÑ–Ñ diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_zh_TW.properties index 8f84d5716ab5..a6dff7553113 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_zh_TW.properties @@ -1,16 +1,16 @@ -threadDump_blurb=\u9020\u8a2a\u6b64\u9801\u9762\u4ee5\u53d6\u5f97 Master \u548c Agent \u7684\u57f7\u884c\u5e8f\u50be\u5370\u3002 -System\ Information=\u7cfb\u7d71\u8cc7\u8a0a -System\ Properties=\u7cfb\u7d71\u5c6c\u6027 -Environment\ Variables=\u74b0\u5883\u8b8a\u6578 -Plugins=\u5916\u639b\u7a0b\u5f0f -No\ plugins\ installed.=\u6c92\u6709\u5b89\u88dd\u5916\u639b\u7a0b\u5f0f\u3002 -Enabled=\u555f\u7528\u72c0\u6cc1 -Name=\u540d\u7a31 -Version=\u7248\u672c -Thread\ Dumps=\u57f7\u884c\u7dd2\u50be\u5370 -Long=\u9577 -Medium=\u4e2d -Memory\ Usage=\u8a18\u61b6\u9ad4\u4f7f\u7528\u91cf -Memory\ usage\ graph=\u8a18\u61b6\u9ad4\u4f7f\u7528\u91cf\u5716\u8868 -Short=\u77ed -Timespan=\u6642\u9593\u7bc4\u570d +threadDump_blurb=造訪此é é¢ä»¥å–å¾— Master å’Œ Agent 的執行åºå‚¾å°ã€‚ +System\ Information=系統資訊 +System\ Properties=系統屬性 +Environment\ Variables=環境變數 +Plugins=å¤–æŽ›ç¨‹å¼ +No\ plugins\ installed.=沒有安è£å¤–掛程å¼ã€‚ +Enabled=å•Ÿç”¨ç‹€æ³ +Name=å稱 +Version=版本 +Thread\ Dumps=åŸ·è¡Œç·’å‚¾å° +Long=é•· +Medium=中 +Memory\ Usage=è¨˜æ†¶é«”ä½¿ç”¨é‡ +Memory\ usage\ graph=記憶體使用é‡åœ–表 +Short=短 +Timespan=æ™‚é–“ç¯„åœ diff --git a/core/src/main/resources/jenkins/model/Jenkins/threadDump_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/threadDump_bg.properties index cb981df08bf0..a48a4d6ff44b 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/threadDump_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/threadDump_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Thread\ Dump=\ - \u0420\u0430\u0437\u0442\u043e\u0432\u0430\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u0438\u0448\u043a\u0430 + Разтоварване на нишка Thread\ dump=\ - \u0420\u0430\u0437\u0442\u043e\u0432\u0430\u0440\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u0438\u0448\u043a\u0430 + Разтоварване на нишка diff --git a/core/src/main/resources/jenkins/model/Jenkins/threadDump_da.properties b/core/src/main/resources/jenkins/model/Jenkins/threadDump_da.properties index 8fe9a8ae5700..efc15316fb32 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/threadDump_da.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/threadDump_da.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Thread\ Dump=Tr\u00e5ddump -Thread\ dump=Tr\u00e5ddump +Thread\ Dump=TrÃ¥ddump +Thread\ dump=TrÃ¥ddump diff --git a/core/src/main/resources/jenkins/model/Jenkins/threadDump_it.properties b/core/src/main/resources/jenkins/model/Jenkins/threadDump_it.properties index edb32bc2e921..5e2fe90469d3 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/threadDump_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/threadDump_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/Jenkins/threadDump_ja.properties b/core/src/main/resources/jenkins/model/Jenkins/threadDump_ja.properties index 639526f5bdb9..3683dcbb884f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/threadDump_ja.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/threadDump_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Thread\ dump=\u30B9\u30EC\u30C3\u30C9\u30C0\u30F3\u30D7 -Thread\ Dump=\u30B9\u30EC\u30C3\u30C9\u30C0\u30F3\u30D7 +Thread\ dump=スレッドダンプ +Thread\ Dump=スレッドダンプ diff --git a/core/src/main/resources/jenkins/model/Jenkins/threadDump_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/threadDump_ru.properties index 2de3307ce302..dd3563f8a7f2 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/threadDump_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/threadDump_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Thread\ dump=\u0414\u0430\u043c\u043f \u043f\u043e\u0442\u043e\u043a\u0430 -Thread\ Dump=\u0414\u0430\u043c\u043f \u043f\u043e\u0442\u043e\u043a\u0430 +Thread\ dump=Дамп потока +Thread\ Dump=Дамп потока diff --git a/core/src/main/resources/jenkins/model/Jenkins/threadDump_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/threadDump_sr.properties index 94dca418a99c..84de746f8681 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/threadDump_sr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/threadDump_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Thread\ dump=\u0414\u0435\u043F\u043E\u043D\u0438\u0458\u0430 \u043D\u0438\u0442\u043E\u0432\u0430 -Thread\ Dump=\u0414\u0435\u043F\u043E\u043D\u0438\u0458\u0430 \u043D\u0438\u0442\u043E\u0432\u0430 +Thread\ dump=Депонија нитова +Thread\ Dump=Депонија нитова diff --git a/core/src/main/resources/jenkins/model/Jenkins/threadDump_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/threadDump_zh_TW.properties index 7e5de177cdc8..6552e300da36 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/threadDump_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/threadDump_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Thread\ dump=\u57f7\u884c\u7dd2\u50be\u5370 -Thread\ Dump=\u57f7\u884c\u7dd2\u50be\u5370 +Thread\ dump=åŸ·è¡Œç·’å‚¾å° +Thread\ Dump=åŸ·è¡Œç·’å‚¾å° diff --git a/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_es.properties b/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_es.properties index 6ce8a979eb8a..f12fe2f32279 100644 --- a/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_es.properties +++ b/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ URL=Direcci\u00F3n web de Jenkins -Sender\ E-mail\ Address=Direcci\u00F3n de remitente +Jenkins\ URL=Dirección web de Jenkins +Sender\ E-mail\ Address=Dirección de remitente diff --git a/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_fr.properties b/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_fr.properties index ca39df4043d2..215c39071ee5 100644 --- a/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_fr.properties +++ b/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -System\ Admin\ e-mail\ address=Adresse email de l''administrateur syst\u00E8me +System\ Admin\ e-mail\ address=Adresse email de l''administrateur système Jenkins\ URL=URL de Jenkins diff --git a/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_it.properties b/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_it.properties index 9aab37bc135b..75c4fcc82f59 100644 --- a/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_it.properties +++ b/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_ja.properties b/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_ja.properties index 15ac114a5c05..f349ced2e6c1 100644 --- a/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_ja.properties +++ b/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ Location=Jenkins\u306e\u4f4d\u7f6e +Jenkins\ Location=Jenkinsã®ä½ç½® Jenkins\ URL=Jenkins URL -System\ Admin\ e-mail\ address=\u30b7\u30b9\u30c6\u30e0\u7ba1\u7406\u8005\u306e\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9 +System\ Admin\ e-mail\ address=システム管ç†è€…ã®ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ diff --git a/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_pt_BR.properties b/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_pt_BR.properties index 363ea7274a2c..fb828ca7a881 100644 --- a/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -System\ Admin\ e-mail\ address=Endere\u00e7o de e-mail do administrador do sistema +System\ Admin\ e-mail\ address=Endereço de e-mail do administrador do sistema Jenkins\ URL=URL do Jenkins diff --git a/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_ru.properties b/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_ru.properties index 5496e8f601d5..6535c824a788 100644 --- a/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_ru.properties +++ b/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -System\ Admin\ e-mail\ address=\u0410\u0434\u0440\u0435\u0441 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0430 +System\ Admin\ e-mail\ address=ÐÐ´Ñ€ÐµÑ Ð°Ð´Ð¼Ð¸Ð½Ð¸Ñтратора Jenkins\ URL=Jenkins URL diff --git a/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_sr.properties b/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_sr.properties index 7029b7b4cc8f..1f7783ebb6f3 100644 --- a/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_sr.properties +++ b/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -System\ Admin\ e-mail\ address=\u0410\u0434\u0440\u0435\u0441\u0430 \u0435-\u043F\u043E\u0448\u0442\u0435 \u0441\u0438\u0441\u0442\u0435\u043C\u0441\u043A\u043E\u0433 \u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0442\u043E\u0440\u0430 -Jenkins\ URL=Jenkins URL-\u0430\u0434\u0440\u0435\u0441\u0430 -Sender\ E-mail\ Address=\u0410\u0434\u0440\u0435\u0441\u0430 \u0435-\u043F\u043E\u0448\u0442\u0435 \u043Fp\u043E\u0448\u0438\u0459\u0430\u043B\u0430\u0446a -Jenkins\ Location=Jenkins \u043B\u043E\u043A\u0430\u0446\u0438\u0458\u0430 +System\ Admin\ e-mail\ address=ÐдреÑа е-поште ÑиÑтемÑког админиÑтратора +Jenkins\ URL=Jenkins URL-адреÑа +Sender\ E-mail\ Address=ÐдреÑа е-поште пpошиљалацa +Jenkins\ Location=Jenkins локација diff --git a/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_zh_TW.properties b/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_zh_TW.properties index dfee62848b03..dbaa3312046b 100644 --- a/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/config_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ Location=Jenkins \u4f4d\u7f6e +Jenkins\ Location=Jenkins ä½ç½® Jenkins\ URL=Jenkins URL -System\ Admin\ e-mail\ address=\u7cfb\u7d71\u7ba1\u7406\u54e1\u90f5\u4ef6\u5730\u5740 +System\ Admin\ e-mail\ address=系統管ç†å“¡éƒµä»¶åœ°å€ diff --git a/core/src/main/resources/jenkins/model/JobGlobalBuildDiscarderStrategy/config_it.properties b/core/src/main/resources/jenkins/model/JobGlobalBuildDiscarderStrategy/config_it.properties index 075dabecc8c4..8bf71d3b45b1 100644 --- a/core/src/main/resources/jenkins/model/JobGlobalBuildDiscarderStrategy/config_it.properties +++ b/core/src/main/resources/jenkins/model/JobGlobalBuildDiscarderStrategy/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/JobGlobalBuildDiscarderStrategy/config_pt_BR.properties b/core/src/main/resources/jenkins/model/JobGlobalBuildDiscarderStrategy/config_pt_BR.properties index 46fd7e96f8b7..48c95c54c74d 100644 --- a/core/src/main/resources/jenkins/model/JobGlobalBuildDiscarderStrategy/config_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/JobGlobalBuildDiscarderStrategy/config_pt_BR.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Descartadores de constru\u00E7\u00E3o configurados para a tarefa s\u00E3o executados somente depois que a constru\u00E7\u00E3o termina. \ -Esta op\u00E7\u00E3o executa as tarefas de descartadores de constru\u00E7\u00E3o periodicamente, aplicando mudan\u00E7as de configura\u00E7\u00E3o mesmo \ - quando nenhuma constru\u00E7\u00E3o \u00E9 executada. Esta op\u00E7\u00E3o n\u00E3o tem efeito se n\u00E3o existir nenhum descartador configurado para \ +blurb=Descartadores de construção configurados para a tarefa são executados somente depois que a construção termina. \ +Esta opção executa as tarefas de descartadores de construção periodicamente, aplicando mudanças de configuração mesmo \ + quando nenhuma construção é executada. Esta opção não tem efeito se não existir nenhum descartador configurado para \ a tarefa. diff --git a/core/src/main/resources/jenkins/model/JobGlobalBuildDiscarderStrategy/config_zh_TW.properties b/core/src/main/resources/jenkins/model/JobGlobalBuildDiscarderStrategy/config_zh_TW.properties index 5c6a4265984d..708f3d954a4b 100644 --- a/core/src/main/resources/jenkins/model/JobGlobalBuildDiscarderStrategy/config_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/JobGlobalBuildDiscarderStrategy/config_zh_TW.properties @@ -1 +1 @@ -blurb=\u8a2d\u5b9a\u7d66\u4f5c\u696d\u7684\u5efa\u7f6e\u6368\u68c4\u5668\u53ea\u5728\u5efa\u7f6e\u5b8c\u6210\u5f8c\u57f7\u884c\u3002\u6b64\u9078\u9805\u6703\u5b9a\u671f\u57f7\u884c\u4f5c\u696d\u8a2d\u5b9a\u7684\u5efa\u7f6e\u6368\u68c4\u5668\uff0c\u5373\u4f7f\u6c92\u6709\u57f7\u884c\u65b0\u5efa\u7f6e\u4e5f\u6703\u5957\u7528\u8a2d\u5b9a\u8b8a\u66f4\u3002\u5982\u679c\u4f5c\u696d\u6c92\u6709\u8a2d\u5b9a\u5efa\u7f6e\u6368\u68c4\u5668\uff0c\u6b64\u9078\u9805\u4e0d\u6703\u6709\u6548\u679c\u3002 +blurb=設定給作業的建置æ¨æ£„器åªåœ¨å»ºç½®å®Œæˆå¾ŒåŸ·è¡Œã€‚æ­¤é¸é …會定期執行作業設定的建置æ¨æ£„器,å³ä½¿æ²’有執行新建置也會套用設定變更。如果作業沒有設定建置æ¨æ£„器,此é¸é …ä¸æœƒæœ‰æ•ˆæžœã€‚ diff --git a/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_fi.properties b/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_fi.properties index 2b865456c668..635661602d95 100644 --- a/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_fi.properties +++ b/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_fi.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -\#\ of\ executors=Suorittaajien lukum\u00E4\u00E4r\u00E4 +\#\ of\ executors=Suorittaajien lukumäärä diff --git a/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_fr.properties b/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_fr.properties index bb23c91feb84..c2f9feea3d80 100644 --- a/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_fr.properties +++ b/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -\#\ of\ executors=Nombre d''ex\u00E9cuteurs -Labels=Libell\u00e9s +\#\ of\ executors=Nombre d''exécuteurs +Labels=Libellés diff --git a/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_hu.properties b/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_hu.properties index ed3579dc27de..d4ad6a2a628e 100644 --- a/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_hu.properties +++ b/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_hu.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -\#\ of\ executors=A v\u00E9grehajt\u00F3k sz\u00E1ma +\#\ of\ executors=A végrehajtók száma diff --git a/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_it.properties b/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_it.properties index bff805affc87..42b69ead5df0 100644 --- a/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_it.properties +++ b/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_ja.properties b/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_ja.properties index 8c557ab7edec..f93f4838e7d0 100644 --- a/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_ja.properties +++ b/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -\#\ of\ executors=\u540c\u6642\u30d3\u30eb\u30c9\u6570 -Labels=\u30e9\u30d9\u30eb +\#\ of\ executors=åŒæ™‚ビルド数 +Labels=ラベル diff --git a/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_pt_BR.properties b/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_pt_BR.properties index 20ece05bd77f..8bfa07ac4856 100644 --- a/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -\#\ of\ executors=N\u00famero de executores +\#\ of\ executors=Número de executores Labels=Etiquetas diff --git a/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_ru.properties b/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_ru.properties index 9867b1ccf148..e25cbe4f08b1 100644 --- a/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_ru.properties +++ b/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -\#\ of\ executors=\u041A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E \u0441\u0431\u043E\u0440\u0449\u0438\u043A\u043E\u0432 -Labels=\u041C\u0435\u0442\u043A\u0438 +\#\ of\ executors=КоличеÑтво Ñборщиков +Labels=Метки diff --git a/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_sr.properties b/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_sr.properties index c6b5cfab6e25..61cb8557bbe7 100644 --- a/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_sr.properties +++ b/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Labels=\u041B\u0430\u0431\u0435\u043B\u0430 -\#\ of\ executors=\u0431\u0440\u043E\u0458 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 +Labels=Лабела +\#\ of\ executors=број извршитеља diff --git a/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_tr.properties b/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_tr.properties index 8f3fb8a85a3a..228f84378160 100644 --- a/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_tr.properties +++ b/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_tr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -\#\ of\ executors=Yap\u0131land\u0131rma i\u015flemleri say\u0131s\u0131 +\#\ of\ executors=Yapılandırma iÅŸlemleri sayısı Labels=etiketler diff --git a/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_zh_TW.properties b/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_zh_TW.properties index 01b95599a8da..16cf47fd2c96 100644 --- a/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/MasterBuildConfiguration/config_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -\#\ of\ executors=\u57f7\u884c\u7a0b\u5f0f\u6578\u91cf -Labels=\u6a19\u7c64 +\#\ of\ executors=執行程å¼æ•¸é‡ +Labels=標籤 diff --git a/core/src/main/resources/jenkins/model/Messages.properties b/core/src/main/resources/jenkins/model/Messages.properties index ef2028aa5fd5..de5287bc8c20 100644 --- a/core/src/main/resources/jenkins/model/Messages.properties +++ b/core/src/main/resources/jenkins/model/Messages.properties @@ -29,16 +29,16 @@ Hudson.Computer.DisplayName=Built-in Hudson.Computer.IncorrectNumberOfExecutors=Incorrect field "Number of executors". It should be a non-negative number. Hudson.ControlCodeNotAllowed=No control code is allowed: {0} Hudson.DisplayName=Jenkins -Hudson.JobAlreadyExists=A job already exists with the name \u2018{0}\u2019 +Hudson.JobAlreadyExists=A job already exists with the name ‘{0}’ Hudson.NoJavaInPath=java is not in your PATH. Maybe you need to configure JDKs? Hudson.NoName=No name is specified Hudson.NodeBeingRemoved=Node is being removed -Hudson.UnsafeChar=\u2018{0}\u2019 is an unsafe character -Hudson.JobNameConventionNotApplyed=\u2018{0}\u2019 does not match the job name convention pattern {1} +Hudson.UnsafeChar=‘{0}’ is an unsafe character +Hudson.JobNameConventionNotApplyed=‘{0}’ does not match the job name convention pattern {1} Hudson.ViewAlreadyExists=A view already exists with the name "{0}" Hudson.ViewName=All Hudson.NotUsesUTF8ToDecodeURL=\ - Your container doesn\u2019t use UTF-8 to decode URLs. If you use non-ASCII characters as a job name etc, \ + Your container doesn’t use UTF-8 to decode URLs. If you use non-ASCII characters as a job name etc, \ this will cause problems. \ See Tomcat i18n for more details. Hudson.NodeDescription=the Jenkins controller''s built-in node diff --git a/core/src/main/resources/jenkins/model/Messages_bg.properties b/core/src/main/resources/jenkins/model/Messages_bg.properties index 66c640728953..c07e767e5bf2 100644 --- a/core/src/main/resources/jenkins/model/Messages_bg.properties +++ b/core/src/main/resources/jenkins/model/Messages_bg.properties @@ -21,96 +21,96 @@ # THE SOFTWARE. Hudson.BadPortNumber=\ - \u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u0435\u043d \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043f\u043e\u0440\u0442: {0} + Ðеправилен номер на порт: {0} Hudson.Computer.Caption=\ - \u041e\u0441\u043d\u043e\u0432\u0435\u043d \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440 + ОÑновен компютър Hudson.Computer.DisplayName=\ - \u043e\u0441\u043d\u043e\u0432\u0435\u043d \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440 + оÑновен компютър Hudson.ControlCodeNotAllowed=\ - \u041d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u043d\u0438 \u0437\u043d\u0430\u0446\u0438: {0} + Ðе може да ползвате контролни знаци: {0} Hudson.DisplayName=\ Jenkins Hudson.JobAlreadyExists=\ - \u0412\u0435\u0447\u0435 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 \u0441 \u0438\u043c\u0435 \u201e{0}\u201c + Вече ÑъщеÑтвува задача Ñ Ð¸Ð¼Ðµ „{0}“ Hudson.NoJavaInPath=\ - \u0412 \u043f\u044a\u0442\u0438\u0449\u0430\u0442\u0430 \u0441\u043e\u0447\u0435\u043d\u0438 \u043e\u0442 \u043f\u0440\u043e\u043c\u0435\u043d\u043b\u0438\u0432\u0430\u0442\u0430 \u201ePATH\u201c \u043b\u0438\u043f\u0441\u0432\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u0430 \u201ejava\u201c.\u00a0\u0412\u0435\u0440\u043e\u044f\u0442\u043d\u043e\ - \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u0435 \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0442 \u0437\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043d\u0430 JAVA\ - \u2014 JDK? + Ð’ пътищата Ñочени от променливата „PATH“ липÑва командата „java“. ВероÑтно\ + Ñ‚Ñ€Ñбва да наÑтроите комплект за разработка на JAVA\ + — JDK? Hudson.NoName=\ - \u041b\u0438\u043f\u0441\u0432\u0430 \u0438\u043c\u0435 + ЛипÑва име Hudson.NodeBeingRemoved=\ - \u0418\u0437\u0432\u0430\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u043c\u0430\u0448\u0438\u043d\u0430\u0442\u0430 \u043e\u0442 \u0433\u0440\u0443\u043f\u0430\u0442\u0430 + Изваждане на машината от групата Hudson.UnsafeChar=\ - \u0417\u043d\u0430\u0446\u0438 \u043a\u0430\u0442\u043e \u201e{0}\u201c \u0435 \u043e\u043f\u0430\u0441\u043d\u043e \u0434\u0430 \u0441\u0435 \u043f\u043e\u043b\u0437\u0432\u0430\u0442 + Знаци като „{0}“ е опаÑно да Ñе ползват Hudson.JobNameConventionNotApplyed=\ - \u201e{0}\u201c \u043d\u0435 \u043d\u0430\u043f\u0430\u0441\u0432\u0430 \u043d\u0430 \u0448\u0430\u0431\u043b\u043e\u043d\u0430 \u0437\u0430 \u0438\u043c\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 \u201e{1}\u201c + „{0}“ не напаÑва на шаблона за име на задача „{1}“ Hudson.ViewAlreadyExists=\ - \u0412\u0435\u0447\u0435 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430 \u0438\u0437\u0433\u043b\u0435\u0434 \u0441 \u0438\u043c\u0435 \u201e{0}\u201c + Вече ÑъщеÑтвува изглед Ñ Ð¸Ð¼Ðµ „{0}“ Hudson.ViewName=\ - \u0412\u0441\u0438\u0447\u043a\u0438 + Ð’Ñички Hudson.NotUsesUTF8ToDecodeURL=\ - \u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440\u044a\u0442 \u0437\u0430 \u0441\u044a\u0440\u0432\u043b\u0435\u0442\u0438, \u0432 \u043a\u043e\u0439\u0442\u043e \u0440\u0430\u0431\u043e\u0442\u0438 Jenkins, \u043d\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 UTF-8 \u0437\u0430\ - \u0434\u0435\u043a\u043e\u0434\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0434\u0440\u0435\u0441\u0438\u0442\u0435. \u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0437\u043d\u0430\u0446\u0438 \u0438\u0437\u0432\u044a\u043d ASCII \u0432 \u0438\u043c\u0435\u043d\u0430\u0442\u0430 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0438\ - \u0438 \u0434\u0440. \u043c\u043e\u0436\u0435 \u0434\u0430 \u0434\u043e\u0432\u0435\u0434\u0435 \u0434\u043e \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0438. \u0417\u0430 \u043f\u043e\u0432\u0435\u0447\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043f\u043e\u0433\u043b\u0435\u0434\u043d\u0435\u0442\u0435 \u0440\u0430\u0437\u0434\u0435\u043b\u0430 \u0437\u0430\ + Контейнерът за Ñървлети, в който работи Jenkins, не използва UTF-8 за\ + декодиране на адреÑите. Използването на знаци извън ASCII в имената на задачи\ + и др. може да доведе до проблеми. За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¿Ð¾Ð³Ð»ÐµÐ´Ð½ÐµÑ‚Ðµ раздела за\ \ - \u0438\u043d\u0442\u0435\u0440\u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u043d\u0430 Tomcat i18n. + Ð¸Ð½Ñ‚ÐµÑ€Ð½Ð°Ñ†Ð¸Ð¾Ð½Ð°Ð»Ð¸Ð·Ð°Ñ†Ð¸Ñ Ð½Ð° Tomcat i18n. Hudson.NodeDescription=\ - \u043e\u0441\u043d\u043e\u0432\u043d\u0438\u044f\u0442 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440 \u043d\u0430 Jenkins + оÑновниÑÑ‚ компютър на Jenkins CLI.restart.shortDescription=\ - \u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 Jenkins. + РеÑтартиране на Jenkins. CLI.safe-restart.shortDescription=\ - \u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 Jenkins. + БезопаÑно реÑтартиране на Jenkins. CLI.keep-build.shortDescription=\ - \u0422\u043e\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0434\u0430 \u0441\u0435 \u0437\u0430\u043f\u0430\u0437\u0438 \u0437\u0430\u0432\u0438\u043d\u0430\u0433\u0438. + Това изграждане да Ñе запази завинаги. CauseOfInterruption.ShortDescription=\ - \u041f\u0440\u0435\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u043e \u043e\u0442 \u201e{0}\u201c + ПреуÑтановено от „{0}“ CLI.shutdown.shortDescription=\ - \u041d\u0435\u0437\u0430\u0431\u0430\u0432\u043d\u043e \u0441\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 Jenkins. + Ðезабавно Ñпиране на Jenkins. CLI.safe-shutdown.shortDescription=\ - \u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 Jenkins \u0432 \u0440\u0435\u0436\u0438\u043c \u043d\u0430 \u043f\u0440\u0438\u0432\u044a\u0440\u0448\u0432\u0430\u043d\u0435 \u2014 \u043d\u0435 \u0441\u0435 \u043f\u0440\u0438\u0435\u043c\u0430\u0442 \u043d\u043e\u0432\u0438 \u0437\u0430\u0434\u0430\u0447\u0438 \u0437\u0430\ - \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435, \u0430 \u0432\u0435\u0447\u0435 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0438\u0442\u0435 \u0441\u0435 \u0438\u0437\u0447\u0430\u043a\u0432\u0430\u0442. + ПоÑтавÑне на Jenkins в режим на привършване — не Ñе приемат нови задачи за\ + изграждане, а вече Ñтартираните Ñе изчакват. DefaultProjectNamingStrategy.DisplayName=\ - \u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e + Стандартно IdStrategy.CaseInsensitive.DisplayName=\ - \u0411\u0435\u0437 \u0440\u0430\u0437\u043b\u0438\u043a\u0430 \u0433\u043b\u0430\u0432\u043d\u0438/\u043c\u0430\u043b\u043a\u0438 + Без разлика главни/малки IdStrategy.CaseSensitive.DisplayName=\ - \u0420\u0430\u0437\u043b\u0438\u043a\u0430 \u0433\u043b\u0430\u0432\u043d\u0438/\u043c\u0430\u043b\u043a\u0438 + Разлика главни/малки IdStrategy.CaseSensitiveEmailAddress.DisplayName=\ - \u0420\u0430\u0437\u043b\u0438\u043a\u0430 \u0433\u043b\u0430\u0432\u043d\u0438/\u043c\u0430\u043b\u043a\u0438 (\u0437\u0430 \u0430\u0434\u0440\u0435\u0441\u0430 \u0437\u0430 \u0435-\u043f\u043e\u0449\u0430) + Разлика главни/малки (за адреÑа за е-поща) Mailer.Address.Not.Configured=\ - \u0430\u0434\u0440\u0435\u0441\u044a\u0442 \u043d\u0435 \u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043d + адреÑÑŠÑ‚ не е наÑтроен Mailer.Localhost.Error=\ - \u0417\u0430\u0434\u0430\u0439\u0442\u0435 \u0434\u0440\u0443\u0433\u043e \u0438\u043c\u0435 \u043d\u0430 \u0445\u043e\u0441\u0442, \u0430 \u043d\u0435 \u201elocalhost\u201c + Задайте друго име на хоÑÑ‚, а не „localhost“ PatternProjectNamingStrategy.DisplayName=\ - \u0428\u0430\u0431\u043b\u043e\u043d + Шаблон PatternProjectNamingStrategy.NamePatternRequired=\ - \u0418\u0437\u0438\u0441\u043a\u0432\u0430 \u0441\u0435 \u0448\u0430\u0431\u043b\u043e\u043d \u0437\u0430 \u0438\u043c\u0435\u0442\u043e + ИзиÑква Ñе шаблон за името PatternProjectNamingStrategy.NamePatternInvalidSyntax=\ - \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u0435\u043d \u0440\u0435\u0433\u0443\u043b\u044f\u0440\u0435\u043d \u0438\u0437\u0440\u0430\u0437. + неправилен регулÑрен израз. ParameterizedJobMixIn.build_with_parameters=\ - \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0441 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 + Изграждане Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð¸ ParameterizedJobMixIn.build_now=\ - \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0441\u0435\u0433\u0430 + Изграждане Ñега BlockedBecauseOfBuildInProgress.shortDescription=\ - \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u2116\u200a{0} \u0432\u0435\u0447\u0435 \u0441\u0435 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430{1} + Изграждане № {0} вече Ñе изпълнÑва{1} BlockedBecauseOfBuildInProgress.ETA=\ - \ (\u043e\u0441\u0442\u0430\u0432\u0430\u0442: {0}) + \ (оÑтават: {0}) BuildDiscarderProperty.displayName=\ - \u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u0442\u0430\u0440\u0438\u0442\u0435 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f + Изтриване на Ñтарите Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ # No Parameters are specified for this parameterized build Hudson.NoParamsSpecified=\ - \u041b\u0438\u043f\u0441\u0432\u0430\u0442 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 \u0437\u0430 \u0442\u043e\u0432\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435. + ЛипÑват параметри за това параметризирано изграждане. CLI.disable-job.shortDescription=\ - \u0418\u0437\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430. + Изключване на задача. CLI.enable-job.shortDescription=\ - \u0412\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430. + Включване на задача. # Enforce JNLP Slave Agent Port EnforceSlaveAgentPortAdministrativeMonitor.displayName=\ - \u041a\u043e\u043d\u043a\u0440\u0435\u0442\u0435\u043d \u043f\u043e\u0440\u0442 \u0437\u0430 JNLP \u043d\u0430 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u0438\u044f \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440 + Конкретен порт за JNLP на Ð¿Ð¾Ð´Ñ‡Ð¸Ð½ÐµÐ½Ð¸Ñ ÐºÐ¾Ð¼Ð¿ÑŽÑ‚ÑŠÑ€ diff --git a/core/src/main/resources/jenkins/model/Messages_cs.properties b/core/src/main/resources/jenkins/model/Messages_cs.properties index ef85dc5059f5..5b48d201a5aa 100644 --- a/core/src/main/resources/jenkins/model/Messages_cs.properties +++ b/core/src/main/resources/jenkins/model/Messages_cs.properties @@ -1 +1 @@ -BuildDiscarderProperty.displayName=Zahodit star\u00E9 sestaven\u00ED +BuildDiscarderProperty.displayName=Zahodit staré sestavení diff --git a/core/src/main/resources/jenkins/model/Messages_da.properties b/core/src/main/resources/jenkins/model/Messages_da.properties index d640aaad0e2c..ab935ceede39 100644 --- a/core/src/main/resources/jenkins/model/Messages_da.properties +++ b/core/src/main/resources/jenkins/model/Messages_da.properties @@ -26,7 +26,7 @@ Hudson.Computer.Caption=Master Hudson.ControlCodeNotAllowed=Ingen kontroltegn tilladt: {0} Hudson.DisplayName=Jenkins Hudson.JobAlreadyExists=Et job eksisterer allerede med navnet ''{0}'' -Hudson.NoJavaInPath=Java er ikke i din sti. M\u00e5ske mangler du at konfigurere JDK? +Hudson.NoJavaInPath=Java er ikke i din sti. MÃ¥ske mangler du at konfigurere JDK? Hudson.NoName=Intet navn specificeret Hudson.NodeBeingRemoved=Node bliver fjernet Hudson.UnsafeChar=''{0}'' er et usikkert tegn @@ -36,10 +36,10 @@ Hudson.NotUsesUTF8ToDecodeURL=\ Din container bruger ikke UTF-8 til at afkode URLer. Hvis du bruger ikke-ASCII tegn i jobnavne etc, \ vil dette skabe problemer. Hudson.ReadPermission.Description=\ -L\u00e6serettigheden er n\u00f8dvendig for at se n\u00e6sten alle sider i Jenkins. \ -Denne rettighed kan bruges n\u00e5r du ikke vil have uauthentificerede brugere til at \ -se Jenkins sider — tilbagekald denne rettighed fra den anonyme bruger, tilf\u00f8j \ -derefter en "authentificeret" pseudo-bruger og giv denne l\u00e6serettigheder. +Læserettigheden er nødvendig for at se næsten alle sider i Jenkins. \ +Denne rettighed kan bruges nÃ¥r du ikke vil have uauthentificerede brugere til at \ +se Jenkins sider — tilbagekald denne rettighed fra den anonyme bruger, tilføj \ +derefter en "authentificeret" pseudo-bruger og giv denne læserettigheder. Hudson.NodeDescription=master Jenkins noden CLI.safe-restart.shortDescription=Sikker genstart af Jenkins @@ -47,10 +47,10 @@ CLI.keep-build.shortDescription=Marker bygget for at gemme det for evig tid CLI.restart.shortDescription=Genstart Jenkins Mailer.Address.Not.Configured=Adresse ikke konfigureret -Mailer.Localhost.Error=Venligst inds\u00e6t et gyldigt v\u00e6rtsnavn, istedet for localhost +Mailer.Localhost.Error=Venligst indsæt et gyldigt værtsnavn, istedet for localhost ParameterizedJobMixIn.build_now=Byg nu BlockedBecauseOfBuildInProgress.shortDescription=Byg #{0} er allerede i gang {1} BlockedBecauseOfBuildInProgress.ETA=(ETA: {0}) BuildDiscarderProperty.displayName=Fjern Gamle Byg -CLI.disable-job.shortDescription=Sl\u00e5r et job fra -CLI.enable-job.shortDescription=Sl\u00e5r et job til +CLI.disable-job.shortDescription=SlÃ¥r et job fra +CLI.enable-job.shortDescription=SlÃ¥r et job til diff --git a/core/src/main/resources/jenkins/model/Messages_de.properties b/core/src/main/resources/jenkins/model/Messages_de.properties index 1a895d39c7b2..a4aafa192b44 100644 --- a/core/src/main/resources/jenkins/model/Messages_de.properties +++ b/core/src/main/resources/jenkins/model/Messages_de.properties @@ -25,13 +25,13 @@ Hudson.Computer.Caption=Interner Knoten Hudson.Computer.DisplayName=Intern Hudson.ControlCodeNotAllowed=Kontrollcodes nicht erlaubt: {0} Hudson.DisplayName=Jenkins -Hudson.JobAlreadyExists=Es existiert bereits ein Job \u201E{0}\u201C +Hudson.JobAlreadyExists=Es existiert bereits ein Job „{0}“ Hudson.NoJavaInPath=java ist nicht in Ihrem PATH-Suchpfad. Eventuell sollten Sie JDKs konfigurieren. Hudson.NoName=Kein Name angegeben Hudson.NodeBeingRemoved=Knoten wird entfernt -Hudson.UnsafeChar=\u201E{0}\u201C ist kein \u201Esicheres\u201C Zeichen -Hudson.JobNameConventionNotApplyed=Der Elementname \u201E{0}\u201C folgt nicht der Namenskonvention \u201E{1}\u201C -Hudson.ViewAlreadyExists=Es existiert bereits eine Ansicht mit dem Namen \u201E{0}\u201C. +Hudson.UnsafeChar=„{0}“ ist kein „sicheres“ Zeichen +Hudson.JobNameConventionNotApplyed=Der Elementname „{0}“ folgt nicht der Namenskonvention „{1}“ +Hudson.ViewAlreadyExists=Es existiert bereits eine Ansicht mit dem Namen „{0}“. Hudson.ViewName=Alle Hudson.NotUsesUTF8ToDecodeURL=\ Ihr Servlet-Container verwendet kein UTF-8, um URLs zu dekodieren. Falls Sie Nicht-ASCII-Zeichen \ @@ -41,10 +41,10 @@ Hudson.NotUsesUTF8ToDecodeURL=\ Hudson.NodeDescription=Jenkins Master-Knoten CLI.restart.shortDescription=Jenkins neu starten. -CLI.keep-build.shortDescription=Build f\u00FCr immer aufbewahren. +CLI.keep-build.shortDescription=Build für immer aufbewahren. CLI.safe-restart.shortDescription=Startet Jenkins neu. -DefaultProjectNamingStrategy.DisplayName=keine Einschr\u00E4nkung +DefaultProjectNamingStrategy.DisplayName=keine Einschränkung Mailer.Address.Not.Configured=Adresse nicht konfiguriert Mailer.Localhost.Error=Bitte verwenden Sie einen konkreten Hostnamen anstelle von localhost . @@ -52,19 +52,19 @@ Mailer.Localhost.Error=Bitte verwenden Sie einen konkreten Hostnamen anstelle vo NewViewLink.NewView=Ansicht anlegen PatternProjectNamingStrategy.DisplayName=Muster -PatternProjectNamingStrategy.NamePatternRequired=Der Regul\u00E4re Ausdruck darf nicht leer sein. -PatternProjectNamingStrategy.NamePatternInvalidSyntax=Der Regul\u00E4re Ausdruck ist ung\u00FCltig. +PatternProjectNamingStrategy.NamePatternRequired=Der Reguläre Ausdruck darf nicht leer sein. +PatternProjectNamingStrategy.NamePatternInvalidSyntax=Der Reguläre Ausdruck ist ungültig. ParameterizedJobMixIn.build_with_parameters=Bauen mit Parametern ParameterizedJobMixIn.build_now=Jetzt bauen BlockedBecauseOfBuildInProgress.shortDescription=Build #{0} ist bereits in Arbeit{1} BlockedBecauseOfBuildInProgress.ETA=\ (ETA: {0}) BuildDiscarderProperty.displayName=Alte Builds verwerfen -IdStrategy.CaseSensitive.DisplayName=Gro\u00DF- und Kleinschreibung beachtend -CLI.shutdown.shortDescription=F\u00E4hrt Jenkins sofort herunter. -EnforceSlaveAgentPortAdministrativeMonitor.displayName=Agent-Port wird bei Neustart zur\u00FCckgesetzt +IdStrategy.CaseSensitive.DisplayName=Groß- und Kleinschreibung beachtend +CLI.shutdown.shortDescription=Fährt Jenkins sofort herunter. +EnforceSlaveAgentPortAdministrativeMonitor.displayName=Agent-Port wird bei Neustart zurückgesetzt CauseOfInterruption.ShortDescription=Abgebrochen von {0} -CLI.safe-shutdown.shortDescription=Aktiviert die Ruheperiode, wartet auf Beendigung laufender Builds, und f\u00E4hrt Jenkins dann herunter. -IdStrategy.CaseInsensitive.DisplayName=Gro\u00DF- und Kleinschreibung missachtend -IdStrategy.CaseSensitiveEmailAddress.DisplayName=Gro\u00DF- und Kleinschreibung beachtend (E-Mailadresse) +CLI.safe-shutdown.shortDescription=Aktiviert die Ruheperiode, wartet auf Beendigung laufender Builds, und fährt Jenkins dann herunter. +IdStrategy.CaseInsensitive.DisplayName=Groß- und Kleinschreibung missachtend +IdStrategy.CaseSensitiveEmailAddress.DisplayName=Groß- und Kleinschreibung beachtend (E-Mailadresse) CLI.disable-job.shortDescription=Projekt deaktivieren. CLI.enable-job.shortDescription=Projekt aktivieren. diff --git a/core/src/main/resources/jenkins/model/Messages_es.properties b/core/src/main/resources/jenkins/model/Messages_es.properties index 4045e15761dc..fe595190f8b7 100644 --- a/core/src/main/resources/jenkins/model/Messages_es.properties +++ b/core/src/main/resources/jenkins/model/Messages_es.properties @@ -20,46 +20,46 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Hudson.BadPortNumber=N\u00famero erroneo de puerto {0} +Hudson.BadPortNumber=Número erroneo de puerto {0} Hudson.Computer.Caption=Principal Hudson.Computer.DisplayName=principal -Hudson.ControlCodeNotAllowed=El c\u00f3digo de control {0} no est\u00e1 permitido +Hudson.ControlCodeNotAllowed=El código de control {0} no está permitido Hudson.DisplayName=Jenkins Hudson.JobAlreadyExists=Una tarea con el nombre ''{0}'' ya existe -Hudson.NoJavaInPath=No se encuentra el comando java en el ''PATH''. Quiz\u00e1s necesite configurar JDKs? +Hudson.NoJavaInPath=No se encuentra el comando java en el ''PATH''. Quizás necesite configurar JDKs? Hudson.NoName=No se ha especificado un nombre -Hudson.NodeBeingRemoved=Se est\u00e1 borrando el nodo -Hudson.UnsafeChar=''{0}'' es un car\u00e1cter inseguro +Hudson.NodeBeingRemoved=Se está borrando el nodo +Hudson.UnsafeChar=''{0}'' es un carácter inseguro Hudson.ViewAlreadyExists=Una vista con el nombre "{0}" ya existe Hudson.ViewName=Todo Hudson.NotUsesUTF8ToDecodeURL=\ - El contenedor de servlets no usa UTF-8 para decodificar URLs. Esto causar\u00e1 problemas si se usan nombres \ + El contenedor de servlets no usa UTF-8 para decodificar URLs. Esto causará problemas si se usan nombres \ con caracteres no ASCII. Echa un vistazo a \ Tomcat i18n para mas detalles. Hudson.ReadPermission.Description=\ - El permiso de lectura es necesario para visualizar casi todas las p\u00e1ginas de Jenkins.\ - Este permiso es \u00fatil cuando se quiere que usuarios no autenticados puedan ver las p\u00e1ginas. \ - Elimina este permiso del usuario "anonymous", luego a\u00f1ade "authenticated pseudo-user" con el \ + El permiso de lectura es necesario para visualizar casi todas las páginas de Jenkins.\ + Este permiso es útil cuando se quiere que usuarios no autenticados puedan ver las páginas. \ + Elimina este permiso del usuario "anonymous", luego añade "authenticated pseudo-user" con el \ permiso de lectura. Hudson.NodeDescription=El nodo principal de Jenkins CLI.restart.shortDescription=Reiniciar Jenkins CLI.safe-restart.shortDescription=Reiniciar Jenkins de manera segura -CLI.keep-build.shortDescription=Marcar la ejecuci\u00f3n para ser guardada para siempre. +CLI.keep-build.shortDescription=Marcar la ejecución para ser guardada para siempre. -PatternProjectNamingStrategy.DisplayName=Patrón +PatternProjectNamingStrategy.DisplayName=Patrón DefaultProjectNamingStrategy.DisplayName=Por defecto -CLI.safe-shutdown.shortDescription=Poner jenkins en estado de espera hasta que todos los trabajos terminen, después se apagará. -PatternProjectNamingStrategy.NamePatternRequired=El patrón para el nombre es necesario -Hudson.JobNameConventionNotApplyed=el nombre ''{0}'' no cumple el patrón {1} +CLI.safe-shutdown.shortDescription=Poner jenkins en estado de espera hasta que todos los trabajos terminen, después se apagará. +PatternProjectNamingStrategy.NamePatternRequired=El patrón para el nombre es necesario +Hudson.JobNameConventionNotApplyed=el nombre ''{0}'' no cumple el patrón {1} CLI.shutdown.shortDescription=Apagar inmediatamente Jenkins. CauseOfInterruption.ShortDescription=Cancelado por {0} -PatternProjectNamingStrategy.NamePatternInvalidSyntax=La sintaxis de la expresión regular no es válida +PatternProjectNamingStrategy.NamePatternInvalidSyntax=La sintaxis de la expresión regular no es válida -Mailer.Address.Not.Configured=Dirección no configurada todavía +Mailer.Address.Not.Configured=Dirección no configurada todavía Mailer.Localhost.Error=Escriba un nombre de servidor correcto en lugar de "localhost" ParameterizedJobMixIn.build_now=Construir ahora -BlockedBecauseOfBuildInProgress.shortDescription=La ejecuci\u00f3n #{0} ya est\u00e1 en progreso {1} +BlockedBecauseOfBuildInProgress.shortDescription=La ejecución #{0} ya está en progreso {1} BlockedBecauseOfBuildInProgress.ETA= (ETA: {0}) BuildDiscarderProperty.displayName=Desechar ejecuciones antiguas CLI.disable-job.shortDescription=Desactivar una tarea diff --git a/core/src/main/resources/jenkins/model/Messages_fi.properties b/core/src/main/resources/jenkins/model/Messages_fi.properties index e05f4ad601a6..ef3975aa3a1e 100644 --- a/core/src/main/resources/jenkins/model/Messages_fi.properties +++ b/core/src/main/resources/jenkins/model/Messages_fi.properties @@ -1,2 +1,2 @@ -ParameterizedJobMixIn.build_now=K\u00E4\u00E4nn\u00E4 nyt -BuildDiscarderProperty.displayName=H\u00E4vit\u00E4 vanhat k\u00E4\u00E4nn\u00F6kset +ParameterizedJobMixIn.build_now=Käännä nyt +BuildDiscarderProperty.displayName=Hävitä vanhat käännökset diff --git a/core/src/main/resources/jenkins/model/Messages_fr.properties b/core/src/main/resources/jenkins/model/Messages_fr.properties index 7b3b2bd60564..063e401c59a1 100644 --- a/core/src/main/resources/jenkins/model/Messages_fr.properties +++ b/core/src/main/resources/jenkins/model/Messages_fr.properties @@ -20,37 +20,37 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Hudson.BadPortNumber=Num\u00e9ro de port incorrect {0} -Hudson.Computer.Caption=Ma\u00eetre -Hudson.Computer.DisplayName=ma\u00eetre -Hudson.ControlCodeNotAllowed=Code de contr\u00f4le non autoris\u00e9 +Hudson.BadPortNumber=Numéro de port incorrect {0} +Hudson.Computer.Caption=Maître +Hudson.Computer.DisplayName=maître +Hudson.ControlCodeNotAllowed=Code de contrôle non autorisé Hudson.DisplayName=Jenkins -Hudson.JobAlreadyExists=Un job existe d\u00e9j\u00e0 avec le nom ''{0}'' -Hudson.NoJavaInPath=java n''est pas dans votre PATH. Peut-\u00eatre avez-vous besoin de configurer les JDKs? -Hudson.NoName=Aucun nom n''est sp\u00e9cifi\u00e9 -Hudson.UnsafeChar=''{0}'' est un caract\u00e8re dangereux -Hudson.ViewAlreadyExists=Une vue existe d\u00e9j\u00e0 avec le nom "{0}" +Hudson.JobAlreadyExists=Un job existe déjà avec le nom ''{0}'' +Hudson.NoJavaInPath=java n''est pas dans votre PATH. Peut-être avez-vous besoin de configurer les JDKs? +Hudson.NoName=Aucun nom n''est spécifié +Hudson.UnsafeChar=''{0}'' est un caractère dangereux +Hudson.ViewAlreadyExists=Une vue existe déjà avec le nom "{0}" Hudson.ViewName=Tous Hudson.NotUsesUTF8ToDecodeURL=\ - Votre conteneur n''utilise pas UTF-8 pour d\u00e9coder les URLs. Si vous utilisez des caract\u00e8res non-ASCII \ - dans le nom d''un job ou autre, cela causera des probl\u00e8mes. \ - Consultez les pages sur les Tomcat i18n pour plus de d\u00e9tails. + Votre conteneur n''utilise pas UTF-8 pour décoder les URLs. Si vous utilisez des caractères non-ASCII \ + dans le nom d''un job ou autre, cela causera des problèmes. \ + Consultez les pages sur les Tomcat i18n pour plus de détails. Hudson.ReadPermission.Description=\ - Le droit en lecture est n\u00e9cessaire pour voir la plupart des pages de Jenkins. \ - Ce droit est utile quand vous ne voulez pas que les utilisateurs non authentifi\u00e9s puissent voir les pages Jenkins \ - — retirez ce droit \u00e0 l''utilisateur anonymous, puis \ + Le droit en lecture est nécessaire pour voir la plupart des pages de Jenkins. \ + Ce droit est utile quand vous ne voulez pas que les utilisateurs non authentifiés puissent voir les pages Jenkins \ + — retirez ce droit à l''utilisateur anonymous, puis \ ajoutez le pseudo-utilisateur "authenticated" et accordez-lui le droit en lecture. -Mailer.Address.Not.Configured=Adresse pas encore configur\u00e9e -Mailer.Localhost.Error=Veuillez configurer un nom d''h\u00f4te valide, au lieu de localhost +Mailer.Address.Not.Configured=Adresse pas encore configurée +Mailer.Localhost.Error=Veuillez configurer un nom d''hôte valide, au lieu de localhost PatternProjectNamingStrategy.DisplayName=Pattern PatternProjectNamingStrategy.NamePatternRequired=Le nom de pattern est obligatoire -PatternProjectNamingStrategy.NamePatternInvalidSyntax=La syntaxe de l''expression r\u00e9guli\u00e8re est invalide. -ParameterizedJobMixIn.build_with_parameters=Lancer un build avec des param\u00e8tres +PatternProjectNamingStrategy.NamePatternInvalidSyntax=La syntaxe de l''expression régulière est invalide. +ParameterizedJobMixIn.build_with_parameters=Lancer un build avec des paramètres ParameterizedJobMixIn.build_now=Lancer un build -BlockedBecauseOfBuildInProgress.shortDescription=Le build #{0} est d\u00e9j\u00e0 en cours {1} -BlockedBecauseOfBuildInProgress.ETA=\ (fin pr\u00e9vue \u00e0 : {0}) +BlockedBecauseOfBuildInProgress.shortDescription=Le build #{0} est déjà en cours {1} +BlockedBecauseOfBuildInProgress.ETA=\ (fin prévue à : {0}) BuildDiscarderProperty.displayName=Supprimer les anciens builds -NewViewLink.NewView=Cr\u00E9er une Vue +NewViewLink.NewView=Créer une Vue diff --git a/core/src/main/resources/jenkins/model/Messages_he.properties b/core/src/main/resources/jenkins/model/Messages_he.properties index cd432a7c6c5e..64a5d7759a6d 100644 --- a/core/src/main/resources/jenkins/model/Messages_he.properties +++ b/core/src/main/resources/jenkins/model/Messages_he.properties @@ -1 +1 @@ -BuildDiscarderProperty.displayName=\u05D4\u05E9\u05DE\u05D3 \u05D1\u05E0\u05D9\u05D5\u05EA \u05D9\u05E9\u05E0\u05D5\u05EA +BuildDiscarderProperty.displayName=השמד בניות ישנות diff --git a/core/src/main/resources/jenkins/model/Messages_hu.properties b/core/src/main/resources/jenkins/model/Messages_hu.properties index 5855bc949f4b..d15e20713c93 100644 --- a/core/src/main/resources/jenkins/model/Messages_hu.properties +++ b/core/src/main/resources/jenkins/model/Messages_hu.properties @@ -1,2 +1,2 @@ -ParameterizedJobMixIn.build_now=\u00C9p\u00EDt\u00E9s Most -BuildDiscarderProperty.displayName=R\u00E9gi \u00E9p\u00EDt\u00E9sek t\u00F6rl\u00E9se +ParameterizedJobMixIn.build_now=Építés Most +BuildDiscarderProperty.displayName=Régi építések törlése diff --git a/core/src/main/resources/jenkins/model/Messages_it.properties b/core/src/main/resources/jenkins/model/Messages_it.properties index e32c7d8012f2..2388568df935 100644 --- a/core/src/main/resources/jenkins/model/Messages_it.properties +++ b/core/src/main/resources/jenkins/model/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,8 +22,8 @@ # THE SOFTWARE. BlockedBecauseOfBuildInProgress.ETA=\ (tempo stimato: {0}) -BlockedBecauseOfBuildInProgress.shortDescription=La compilazione numero {0} è \ - già in corso{1} +BlockedBecauseOfBuildInProgress.shortDescription=La compilazione numero {0} è \ + già in corso{1} BuildDiscarderProperty.displayName=Rimuovi compilazioni vecchie CauseOfInterruption.ShortDescription=Interrotta da {0} CLI.disable-job.shortDescription=Disabilita un processo. @@ -32,7 +32,7 @@ CLI.keep-build.shortDescription=Contrassegna la compilazione in modo che \ venga mantenuta per sempre. CLI.restart.shortDescription=Riavvia Jenkins. CLI.safe-restart.shortDescription=Esegue un riavvio sicuro di Jenkins. -CLI.safe-shutdown.shortDescription=Pone Jenkins in modalità quiete, attende \ +CLI.safe-shutdown.shortDescription=Pone Jenkins in modalità quiete, attende \ il completamento delle compilazioni esistenti e quindi arresta Jenkins. CLI.shutdown.shortDescription=Arresta immediatamente il server Jenkins. DefaultProjectNamingStrategy.DisplayName=Predefinita @@ -45,21 +45,21 @@ Hudson.Computer.IncorrectNumberOfExecutors=Valore del campo "Numero \ esecutori" non valido. Deve essere un numero non negativo. Hudson.ControlCodeNotAllowed=I codici di controllo non sono consentiti: {0} Hudson.DisplayName=Jenkins -Hudson.JobAlreadyExists=Un processo di nome "{0}" esiste già +Hudson.JobAlreadyExists=Un processo di nome "{0}" esiste già Hudson.JobNameConventionNotApplyed="{0}" non corrisponde al pattern \ convenzionale per i nomi dei processi "{1}" -Hudson.NodeBeingRemoved=Il nodo è in via di eliminazione +Hudson.NodeBeingRemoved=Il nodo è in via di eliminazione Hudson.NodeDescription=il nodo master Jenkins -Hudson.NoJavaInPath=java non è nel PATH. Forse è necessario \ +Hudson.NoJavaInPath=java non è nel PATH. Forse è necessario \ configurare i JDK? -Hudson.NoName=Non è stato specificato alcun nome +Hudson.NoName=Non è stato specificato alcun nome Hudson.NotUsesUTF8ToDecodeURL=\ Il container non utilizza UTF-8 per decodificare gli URL. L''utilizzo di \ - caratteri non ASCII come nome processo o in altri ambiti causerà problemi. \ + caratteri non ASCII come nome processo o in altri ambiti causerà problemi. \ Si veda \ Internazionalizzazione di Tomcat per ulteriori dettagli. -Hudson.UnsafeChar="{0}" è un carattere non sicuro -Hudson.ViewAlreadyExists=Una vista di nome "{0}" esiste già +Hudson.UnsafeChar="{0}" è un carattere non sicuro +Hudson.ViewAlreadyExists=Una vista di nome "{0}" esiste già Hudson.ViewName=Tutto IdStrategy.CaseInsensitive.DisplayName=Senza maiuscole/minuscole IdStrategy.CaseSensitive.DisplayName=Con maiuscole/minuscole @@ -69,15 +69,15 @@ JobGlobalBuildDiscarderStrategy.displayName=Componente di rimozione \ compilazioni progetto Mailer.Address.Not.Configured=Indirizzo non ancora configurato \ -Mailer.Localhost.Error=Impostare un nome host valido anziché localhost -Mailer.NotHttp.Error=L''URL non è valido, assicurarsi di utilizzare http:// o \ +Mailer.Localhost.Error=Impostare un nome host valido anziché localhost +Mailer.NotHttp.Error=L''URL non è valido, assicurarsi di utilizzare http:// o \ https:// con un dominio valido. NewViewLink.NewView=Nuova vista ParameterizedJobMixIn.build_now=Compila ora ParameterizedJobMixIn.build_with_parameters=Compila con parametri PatternProjectNamingStrategy.DisplayName=Pattern PatternProjectNamingStrategy.NamePatternInvalidSyntax=La sintassi \ - dell''espressione regolare non è valida -PatternProjectNamingStrategy.NamePatternRequired=Il pattern nomi è richiesto + dell''espressione regolare non è valida +PatternProjectNamingStrategy.NamePatternRequired=Il pattern nomi è richiesto SimpleGlobalBuildDiscarderStrategy.displayName=Componente di rimozione \ compilazione specifica diff --git a/core/src/main/resources/jenkins/model/Messages_ja.properties b/core/src/main/resources/jenkins/model/Messages_ja.properties index 5890cc63d749..26c941c645e7 100644 --- a/core/src/main/resources/jenkins/model/Messages_ja.properties +++ b/core/src/main/resources/jenkins/model/Messages_ja.properties @@ -20,50 +20,50 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Hudson.BadPortNumber={0}\u306f\u4e0d\u6b63\u306a\u30dd\u30fc\u30c8\u756a\u53f7\u3067\u3059\u3002 +Hudson.BadPortNumber={0}ã¯ä¸æ­£ãªãƒãƒ¼ãƒˆç•ªå·ã§ã™ã€‚ Hudson.Computer.Caption=master Hudson.Computer.DisplayName=master -Hudson.ControlCodeNotAllowed=\u5236\u5fa1\u6587\u5b57\u306f\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093\u3002: {0} +Hudson.ControlCodeNotAllowed=制御文字ã¯ä½¿ç”¨ã§ãã¾ã›ã‚“。: {0} Hudson.DisplayName=Jenkins -Hudson.JobAlreadyExists=''{0}''\u3068\u3044\u3046\u30b8\u30e7\u30d6\u306f\u65e2\u306b\u5b58\u5728\u3057\u3066\u3044\u307e\u3059\u3002 -Hudson.NoJavaInPath=Java\u304c\u30d1\u30b9\u306b\u3042\u308a\u307e\u305b\u3093\u3002JDKs\u306e\u8a2d\u5b9a\u304c\u5fc5\u8981? -Hudson.NoName=\u540d\u524d\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002 -Hudson.NodeBeingRemoved=\u30ce\u30fc\u30c9\u3092\u524a\u9664\u4e2d\u3067\u3059\u3002 -Hudson.UnsafeChar=''{0}''\u306f\u4f7f\u7528\u3067\u304d\u306a\u3044\u6587\u5b57\u3067\u3059\u3002 -Hudson.JobNameConventionNotApplyed=''{0}'' \u306f\u3001\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u540d\u306e\u30d1\u30bf\u30fc\u30f3 {1} \u306b\u53cd\u3057\u3066\u3044\u307e\u3059\u3002 -Hudson.ViewAlreadyExists="{0}"\u3068\u3044\u3046\u30d3\u30e5\u30fc\u306f\u65e2\u306b\u5b58\u5728\u3057\u3066\u3044\u307e\u3059\u3002 -Hudson.ViewName=\u3059\u3079\u3066 +Hudson.JobAlreadyExists=''{0}''ã¨ã„ã†ã‚¸ãƒ§ãƒ–ã¯æ—¢ã«å­˜åœ¨ã—ã¦ã„ã¾ã™ã€‚ +Hudson.NoJavaInPath=JavaãŒãƒ‘スã«ã‚ã‚Šã¾ã›ã‚“。JDKsã®è¨­å®šãŒå¿…è¦? +Hudson.NoName=åå‰ãŒæŒ‡å®šã•ã‚Œã¦ã„ã¾ã›ã‚“。 +Hudson.NodeBeingRemoved=ノードを削除中ã§ã™ã€‚ +Hudson.UnsafeChar=''{0}''ã¯ä½¿ç”¨ã§ããªã„文字ã§ã™ã€‚ +Hudson.JobNameConventionNotApplyed=''{0}'' ã¯ã€ãƒ—ロジェクトåã®ãƒ‘ターン {1} ã«åã—ã¦ã„ã¾ã™ã€‚ +Hudson.ViewAlreadyExists="{0}"ã¨ã„ã†ãƒ“ューã¯æ—¢ã«å­˜åœ¨ã—ã¦ã„ã¾ã™ã€‚ +Hudson.ViewName=ã™ã¹ã¦ Hudson.NotUsesUTF8ToDecodeURL=\ - URL\u304cUTF-8\u3067\u30c7\u30b3\u30fc\u30c9\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u30b8\u30e7\u30d6\u540d\u306a\u3069\u306bnon-ASCII\u306a\u6587\u5b57\u3092\u4f7f\u7528\u3059\u308b\u5834\u5408\u306f\u3001\ - Tomcat i18N\u3092\u53c2\u8003\u306b\u8a2d\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002 + URLãŒUTF-8ã§ãƒ‡ã‚³ãƒ¼ãƒ‰ã•ã‚Œã¦ã„ã¾ã›ã‚“。ジョブåãªã©ã«non-ASCIIãªæ–‡å­—を使用ã™ã‚‹å ´åˆã¯ã€\ + Tomcat i18Nã‚’å‚考ã«è¨­å®šã—ã¦ãã ã•ã„。 Hudson.ReadPermission.Description=\ - \u53c2\u7167\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3\u306f\u3001Jenkins\u306e\u307b\u307c\u3059\u3079\u3066\u306e\u753b\u9762\u3092\u53c2\u7167\u3059\u308b\u306e\u306b\u5fc5\u8981\u3067\u3059\u3002\ - \u3053\u306e\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3\u306f\u3001\u8a8d\u8a3c\u3055\u308c\u3066\u3044\u306a\u3044\u30e6\u30fc\u30b6\u30fc\u306b\u306fJenkins\u306e\u753b\u9762\u3092\u53c2\u7167\u3055\u305b\u305f\u304f\u306a\u3044\u5834\u5408\u306b\u4fbf\u5229\u3067\u3059\u3002\ - — \u533f\u540d\u30e6\u30fc\u30b6\u30fc\u304b\u3089\u3053\u306e\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3\u3092\u524a\u9664\u5f8c\u3001"\u8a8d\u8a3c\u6e08\u307f"\u306e\u65e2\u5b58\u30e6\u30fc\u30b6\u30fc\u3092\u8ffd\u52a0\u3057\u3066\u53c2\u7167\u3092\u8a31\u53ef\u3057\u307e\u3059\u3002 -Hudson.NodeDescription=\u30ce\u30fc\u30c9 + å‚照パーミッションã¯ã€Jenkinsã®ã»ã¼ã™ã¹ã¦ã®ç”»é¢ã‚’å‚ç…§ã™ã‚‹ã®ã«å¿…è¦ã§ã™ã€‚\ + ã“ã®ãƒ‘ーミッションã¯ã€èªè¨¼ã•ã‚Œã¦ã„ãªã„ユーザーã«ã¯Jenkinsã®ç”»é¢ã‚’å‚ç…§ã•ã›ãŸããªã„å ´åˆã«ä¾¿åˆ©ã§ã™ã€‚\ + — 匿åユーザーã‹ã‚‰ã“ã®ãƒ‘ーミッションを削除後ã€"èªè¨¼æ¸ˆã¿"ã®æ—¢å­˜ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’追加ã—ã¦å‚照を許å¯ã—ã¾ã™ã€‚ +Hudson.NodeDescription=ノード -CLI.restart.shortDescription=Jenkins\u3092\u518d\u8d77\u52d5\u3057\u307e\u3059\u3002 -CLI.safe-restart.shortDescription=Jenkins\u3092\u5b89\u5168\u306b\u518d\u8d77\u52d5\u3057\u307e\u3059\u3002 -CLI.keep-build.shortDescription=\u30d3\u30eb\u30c9\u3092\u4fdd\u5b58\u3059\u308b\u3088\u3046\u306b\u30de\u30fc\u30af\u3057\u307e\u3059\u3002 -CauseOfInterruption.ShortDescription={0}\u306b\u3088\u308b\u4e2d\u65ad -CLI.shutdown.shortDescription=Jenkins\u30b5\u30fc\u30d0\u30fc\u3092\u76f4\u3061\u306b\u30b7\u30e3\u30c3\u30c8\u30c0\u30a6\u30f3\u3057\u307e\u3059\u3002 +CLI.restart.shortDescription=Jenkinsã‚’å†èµ·å‹•ã—ã¾ã™ã€‚ +CLI.safe-restart.shortDescription=Jenkinsを安全ã«å†èµ·å‹•ã—ã¾ã™ã€‚ +CLI.keep-build.shortDescription=ビルドをä¿å­˜ã™ã‚‹ã‚ˆã†ã«ãƒžãƒ¼ã‚¯ã—ã¾ã™ã€‚ +CauseOfInterruption.ShortDescription={0}ã«ã‚ˆã‚‹ä¸­æ–­ +CLI.shutdown.shortDescription=Jenkinsサーãƒãƒ¼ã‚’ç›´ã¡ã«ã‚·ãƒ£ãƒƒãƒˆãƒ€ã‚¦ãƒ³ã—ã¾ã™ã€‚ CLI.safe-shutdown.shortDescription=\ - Jenkins\u3092\u7d42\u4e86\u30e2\u30fc\u30c9\u306b\u5909\u66f4\u3057\u30d3\u30eb\u30c9\u304c\u5b8c\u4e86\u5f8c\u306b\u3001\u30b7\u30e3\u30c3\u30c8\u30c0\u30a6\u30f3\u3057\u307e\u3059\u3002 + Jenkinsを終了モードã«å¤‰æ›´ã—ビルドãŒå®Œäº†å¾Œã«ã€ã‚·ãƒ£ãƒƒãƒˆãƒ€ã‚¦ãƒ³ã—ã¾ã™ã€‚ -DefaultProjectNamingStrategy.DisplayName=\u30c7\u30d5\u30a9\u30eb\u30c8 +DefaultProjectNamingStrategy.DisplayName=デフォルト -NewViewLink.NewView=\u65b0\u898f\u30d3\u30e5\u30fc +NewViewLink.NewView=æ–°è¦ãƒ“ュー -PatternProjectNamingStrategy.DisplayName=\u30d1\u30bf\u30fc\u30f3 -PatternProjectNamingStrategy.NamePatternRequired=\u30d1\u30bf\u30fc\u30f3\u306f\u5fc5\u9808\u3067\u3059\u3002 -PatternProjectNamingStrategy.NamePatternInvalidSyntax=\u6b63\u898f\u8868\u73fe\u306b\u8aa4\u308a\u304c\u3042\u308a\u307e\u3059\u3002 +PatternProjectNamingStrategy.DisplayName=パターン +PatternProjectNamingStrategy.NamePatternRequired=パターンã¯å¿…é ˆã§ã™ã€‚ +PatternProjectNamingStrategy.NamePatternInvalidSyntax=æ­£è¦è¡¨ç¾ã«èª¤ã‚ŠãŒã‚ã‚Šã¾ã™ã€‚ -Mailer.Address.Not.Configured=\u307e\u3060\u30a2\u30c9\u30ec\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002 -Mailer.Localhost.Error=localhost\u306e\u4ee3\u308f\u308a\u306b\u59a5\u5f53\u306a\u30db\u30b9\u30c8\u540d\u3092\u8a2d\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002 -ParameterizedJobMixIn.build_with_parameters=\u30d1\u30e9\u30e1\u30fc\u30bf\u4ed8\u304d\u30d3\u30eb\u30c9 -ParameterizedJobMixIn.build_now=\u30d3\u30eb\u30c9\u5b9f\u884c -BlockedBecauseOfBuildInProgress.shortDescription=\u30d3\u30eb\u30c9 #{0} \u306f\u65e2\u306b\u5b9f\u884c\u4e2d\u3067\u3059\u3002{1} -BlockedBecauseOfBuildInProgress.ETA=\ (\u4e88\u5b9a\u6642\u9593: {0}) -BuildDiscarderProperty.displayName=\u53e4\u3044\u30d3\u30eb\u30c9\u306e\u7834\u68c4 -CLI.disable-job.shortDescription=\u30b8\u30e7\u30d6\u3092\u7121\u52b9\u5316\u3057\u307e\u3059\u3002 -CLI.enable-job.shortDescription=\u30b8\u30e7\u30d6\u3092\u6709\u52b9\u5316\u3057\u307e\u3059\u3002 +Mailer.Address.Not.Configured=ã¾ã ã‚¢ãƒ‰ãƒ¬ã‚¹ãŒè¨­å®šã•ã‚Œã¦ã„ã¾ã›ã‚“。 +Mailer.Localhost.Error=localhostã®ä»£ã‚ã‚Šã«å¦¥å½“ãªãƒ›ã‚¹ãƒˆåを設定ã—ã¦ãã ã•ã„。 +ParameterizedJobMixIn.build_with_parameters=パラメータ付ãビルド +ParameterizedJobMixIn.build_now=ビルド実行 +BlockedBecauseOfBuildInProgress.shortDescription=ビルド #{0} ã¯æ—¢ã«å®Ÿè¡Œä¸­ã§ã™ã€‚{1} +BlockedBecauseOfBuildInProgress.ETA=\ (予定時間: {0}) +BuildDiscarderProperty.displayName=å¤ã„ビルドã®ç ´æ£„ +CLI.disable-job.shortDescription=ジョブを無効化ã—ã¾ã™ã€‚ +CLI.enable-job.shortDescription=ジョブを有効化ã—ã¾ã™ã€‚ diff --git a/core/src/main/resources/jenkins/model/Messages_ko.properties b/core/src/main/resources/jenkins/model/Messages_ko.properties index 7e7a1320dcfa..0ffab2537d1c 100644 --- a/core/src/main/resources/jenkins/model/Messages_ko.properties +++ b/core/src/main/resources/jenkins/model/Messages_ko.properties @@ -1,12 +1,12 @@ -Hudson.BadPortNumber= \uC720\uD6A8\uD558\uC9C0 \uC54A\uC740 \uD3EC\uD2B8\uBC88\uD638 {0} -Hudson.JobAlreadyExists=\uC774\uBBF8 \uAC19\uC740 \uC774\uB984\uC758 job\uC774 \uC874\uC7AC\uD569\uB2C8\uB2E4 \u2018{0}\u2019 -Hudson.ViewAlreadyExists="{0}" \uC774\uB984\uC758 \uBDF0\uAC00 \uC774\uBBF8 \uC874\uC7AC\uD569\uB2C8\uB2E4. +Hudson.BadPortNumber= 유효하지 ì•Šì€ í¬íŠ¸ë²ˆí˜¸ {0} +Hudson.JobAlreadyExists=ì´ë¯¸ ê°™ì€ ì´ë¦„ì˜ jobì´ ì¡´ìž¬í•©ë‹ˆë‹¤ ‘{0}’ +Hudson.ViewAlreadyExists="{0}" ì´ë¦„ì˜ ë·°ê°€ ì´ë¯¸ 존재합니다. -CLI.restart.shortDescription=Jenkins\uB97C \uC548\uC804\uD558\uAC8C \uC7AC\uC2DC\uC791 +CLI.restart.shortDescription=Jenkins를 안전하게 재시작 -NewViewLink.NewView=\uC0C8\uB85C\uC6B4 \uBDF0 +NewViewLink.NewView=새로운 ë·° -ParameterizedJobMixIn.build_with_parameters=\uD30C\uB77C\uBBF8\uD130\uC640 \uD568\uAED8 \uBE4C\uB4DC -ParameterizedJobMixIn.build_now=\uC9C0\uAE08 \uBE4C\uB4DC -BlockedBecauseOfBuildInProgress.shortDescription=\uBE4C\uB4DC #{0} \uAC00 \uC774\uBBF8 \uC9C4\uD589\uC911\uC785\uB2C8\uB2E4{1} -BuildDiscarderProperty.displayName=\uC624\uB798\uB41C \uBE4C\uB4DC \uC0AD\uC81C +ParameterizedJobMixIn.build_with_parameters=파ë¼ë¯¸í„°ì™€ 함께 빌드 +ParameterizedJobMixIn.build_now=지금 빌드 +BlockedBecauseOfBuildInProgress.shortDescription=빌드 #{0} ê°€ ì´ë¯¸ 진행중입니다{1} +BuildDiscarderProperty.displayName=ì˜¤ëž˜ëœ ë¹Œë“œ ì‚­ì œ diff --git a/core/src/main/resources/jenkins/model/Messages_lt.properties b/core/src/main/resources/jenkins/model/Messages_lt.properties index 2e3598af6c93..f8e498685114 100644 --- a/core/src/main/resources/jenkins/model/Messages_lt.properties +++ b/core/src/main/resources/jenkins/model/Messages_lt.properties @@ -1,48 +1,48 @@ BlockedBecauseOfBuildInProgress.ETA= \ (ETA: {0}) BlockedBecauseOfBuildInProgress.shortDescription=Darbas #{0} jau vykdomas{1} -BuildDiscarderProperty.displayName=Pa\u0161alinti senus darbus +BuildDiscarderProperty.displayName=PaÅ¡alinti senus darbus -CLI.keep-build.shortDescription=Pa\u017Eym\u0117ti darb\u0105 am\u017Einam rezultat\u0173 saugojimui. -CLI.reload-configuration.shortDescription=I\u0161mesti visus \u012F atmint\u012F \u012Fkeltus duomenis ir \u012Fkelti visk\u0105 i\u0161 fail\u0173 sistemos. Naudinga, kai kei\u010Diate konfig\u016Bracijos failus tiesiai diske. -CLI.restart.shortDescription=I\u0161 naujo paleisti Jenkins\u0105. -CLI.safe-restart.shortDescription=Saugiai i\u0161 naujo paleisti Jenkins\u0105. -CLI.safe-shutdown.shortDescription=Perjungia Jenkins\u0105 \u012F tyl\u0173 re\u017Eim\u0105, palaukia, kol baigiami vykdomi darbai, ir tada i\u0161jungia Jenkins\u0105. -CLI.shutdown.shortDescription=Nedelsiant i\u0161jungia Jenkinso server\u012F. +CLI.keep-build.shortDescription=PažymÄ—ti darbÄ… amžinam rezultatų saugojimui. +CLI.reload-configuration.shortDescription=IÅ¡mesti visus į atmintį įkeltus duomenis ir įkelti viskÄ… iÅ¡ failų sistemos. Naudinga, kai keiÄiate konfigÅ«racijos failus tiesiai diske. +CLI.restart.shortDescription=IÅ¡ naujo paleisti JenkinsÄ…. +CLI.safe-restart.shortDescription=Saugiai iÅ¡ naujo paleisti JenkinsÄ…. +CLI.safe-shutdown.shortDescription=Perjungia JenkinsÄ… į tylų režimÄ…, palaukia, kol baigiami vykdomi darbai, ir tada iÅ¡jungia JenkinsÄ…. +CLI.shutdown.shortDescription=Nedelsiant iÅ¡jungia Jenkinso serverį. -CauseOfInterruption.ShortDescription=Nutrauk\u0117 naudotojas {0} +CauseOfInterruption.ShortDescription=NutraukÄ— naudotojas {0} DefaultProjectNamingStrategy.DisplayName=Numatyta Hudson.BadPortNumber=Blogas prievado numeris {0} Hudson.Computer.Caption=Valdytojas Hudson.Computer.DisplayName=valdytojas -Hudson.ControlCodeNotAllowed=Valdymo kodas neleid\u017Eiamas: {0} +Hudson.ControlCodeNotAllowed=Valdymo kodas neleidžiamas: {0} Hudson.DisplayName=Jenkins -Hudson.JobAlreadyExists=Jau yra darbas pavadinimu \u201E{0}\u201C -Hudson.JobNameConventionNotApplyed=\u201E{0}\u201C neatitinka darb\u0173 pavadinim\u0173 susitarimo \u0161ablono {1} -Hudson.NoJavaInPath=j\u016Bs\u0173 PATH n\u0117ra javos. Gal reikia sukonfig\u016Bruoti JDKs? +Hudson.JobAlreadyExists=Jau yra darbas pavadinimu „{0}“ +Hudson.JobNameConventionNotApplyed=„{0}“ neatitinka darbų pavadinimų susitarimo Å¡ablono {1} +Hudson.NoJavaInPath=jÅ«sų PATH nÄ—ra javos. Gal reikia sukonfigÅ«ruoti JDKs? Hudson.NoName=Nenurodytas vardas -Hudson.NodeBeingRemoved=Mazgas \u0161alinamas +Hudson.NodeBeingRemoved=Mazgas Å¡alinamas Hudson.NodeDescription=Jenkinso valdytojo mazgas -Hudson.NotUsesUTF8ToDecodeURL=J\u016Bs\u0173 konteineris nenaudoja UTF-8 atkoduojant URL. Jei naudosite ne ASCII simbolius darb\u0173 pavadinimuose, tai sukels problem\u0173. Daugiau informacijos rasite Konteineri\u0173 ir Tomcat i18n apra\u0161ymuose. -Hudson.UnsafeChar=\u201E{0}\u201C yra nesaugus simbolis -Hudson.ViewAlreadyExists=Jau yra rodinys pavadintas \u201E{0}\u201C +Hudson.NotUsesUTF8ToDecodeURL=JÅ«sų konteineris nenaudoja UTF-8 atkoduojant URL. Jei naudosite ne ASCII simbolius darbų pavadinimuose, tai sukels problemų. Daugiau informacijos rasite Konteinerių ir Tomcat i18n apraÅ¡ymuose. +Hudson.UnsafeChar=„{0}“ yra nesaugus simbolis +Hudson.ViewAlreadyExists=Jau yra rodinys pavadintas „{0}“ Hudson.ViewName=Visi -IdStrategy.CaseInsensitive.DisplayName=Neskirti raid\u017Ei\u0173 dyd\u017Eio -IdStrategy.CaseSensitive.DisplayName=Skirti raid\u017Ei\u0173 dyd\u012F -IdStrategy.CaseSensitiveEmailAddress.DisplayName=Raid\u017Ei\u0173 dydis svarbus (e-pa\u0161to adresas) +IdStrategy.CaseInsensitive.DisplayName=Neskirti raidžių dydžio +IdStrategy.CaseSensitive.DisplayName=Skirti raidžių dydį +IdStrategy.CaseSensitiveEmailAddress.DisplayName=Raidžių dydis svarbus (e-paÅ¡to adresas) -Mailer.Address.Not.Configured=adresas dar nesukonfig\u016Bruotas -Mailer.Localhost.Error=Pra\u0161ome nurodyti tinkam\u0105 serverio pavadinim\u0105, o ne localhost +Mailer.Address.Not.Configured=adresas dar nesukonfigÅ«ruotas +Mailer.Localhost.Error=PraÅ¡ome nurodyti tinkamÄ… serverio pavadinimÄ…, o ne localhost ParameterizedJobMixIn.build_now=Vykdyti dabar ParameterizedJobMixIn.build_with_parameters=Vykdyti su parametrais -PatternProjectNamingStrategy.DisplayName=\u0160ablonas -PatternProjectNamingStrategy.NamePatternInvalidSyntax=netinkama reguliariosios i\u0161rai\u0161kos sintaks\u0117. -PatternProjectNamingStrategy.NamePatternRequired=Reikia pavadinim\u0173 \u0161ablono +PatternProjectNamingStrategy.DisplayName=Å ablonas +PatternProjectNamingStrategy.NamePatternInvalidSyntax=netinkama reguliariosios iÅ¡raiÅ¡kos sintaksÄ—. +PatternProjectNamingStrategy.NamePatternRequired=Reikia pavadinimų Å¡ablono -CLI.disable-job.shortDescription=I\u0161jungia darb\u0105. -CLI.enable-job.shortDescription=\u012ejungia darb\u0105. +CLI.disable-job.shortDescription=IÅ¡jungia darbÄ…. +CLI.enable-job.shortDescription=Ä®jungia darbÄ…. diff --git a/core/src/main/resources/jenkins/model/Messages_lv.properties b/core/src/main/resources/jenkins/model/Messages_lv.properties index b94712621426..7b010d201ae3 100644 --- a/core/src/main/resources/jenkins/model/Messages_lv.properties +++ b/core/src/main/resources/jenkins/model/Messages_lv.properties @@ -1 +1 @@ -BuildDiscarderProperty.displayName=Dz\u0113st vecos b\u016Bv\u0113jumus +BuildDiscarderProperty.displayName=DzÄ“st vecos bÅ«vÄ“jumus diff --git a/core/src/main/resources/jenkins/model/Messages_pl.properties b/core/src/main/resources/jenkins/model/Messages_pl.properties index 6e4595c8b614..ada7a0b5e1ce 100644 --- a/core/src/main/resources/jenkins/model/Messages_pl.properties +++ b/core/src/main/resources/jenkins/model/Messages_pl.properties @@ -19,11 +19,11 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -BuildDiscarderProperty.displayName=Porzu\u0107 stare zadania +BuildDiscarderProperty.displayName=Porzuć stare zadania ParameterizedJobMixIn.build_with_parameters=Uruchom z parametrami ParameterizedJobMixIn.build_now=Uruchom # address not configured yet Mailer.Address.Not.Configured=adres jeszcze nie jest skonfigurowany # Please set a valid host name, instead of localhost -Mailer.Localhost.Error=Ustaw prawid\u0142ow\u0105 nazw\u0119 hosta, inn\u0105 ni\u017C localhost +Mailer.Localhost.Error=Ustaw prawidÅ‚owÄ… nazwÄ™ hosta, innÄ… niż localhost NewViewLink.NewView=Nowy widok diff --git a/core/src/main/resources/jenkins/model/Messages_pt_BR.properties b/core/src/main/resources/jenkins/model/Messages_pt_BR.properties index 175daad8733e..94cdc13fb189 100644 --- a/core/src/main/resources/jenkins/model/Messages_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Messages_pt_BR.properties @@ -20,52 +20,52 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Hudson.BadPortNumber=N\u00FAmero de porta ruim {0} -Hudson.Computer.Caption=N\u00F3 embutido +Hudson.BadPortNumber=Número de porta ruim {0} +Hudson.Computer.Caption=Nó embutido Hudson.Computer.DisplayName=Embutido -Hudson.ControlCodeNotAllowed=Nenhum c\u00F3digo de controle \u00E9 permitido: {0} +Hudson.ControlCodeNotAllowed=Nenhum código de controle é permitido: {0} Hudson.DisplayName=Jenkins -Hudson.JobAlreadyExists=Uma tarefa j\u00E1 existe com o nome ''{0}'' -Hudson.NoJavaInPath=Java n\u00E3o est\u00E1 em seu PATH. Talvez seja preciso configurar as JDKs? -Hudson.NodeBeingRemoved=O n\u00F3 est\u00E1 sendo removido +Hudson.JobAlreadyExists=Uma tarefa já existe com o nome ''{0}'' +Hudson.NoJavaInPath=Java não está em seu PATH. Talvez seja preciso configurar as JDKs? +Hudson.NodeBeingRemoved=O nó está sendo removido Hudson.NoName=Nenhum nome foi especificado -Hudson.UnsafeChar=''{0}'' n\u00E3o \u00E9 um caractere seguro -Hudson.ViewAlreadyExists=J\u00E1 existe uma vis\u00E3o com esse nome "{0}" +Hudson.UnsafeChar=''{0}'' não é um caractere seguro +Hudson.ViewAlreadyExists=Já existe uma visão com esse nome "{0}" Hudson.ViewName=Tudo -Hudson.NotUsesUTF8ToDecodeURL=n\u00E3o use caracteres UTF-8 nas URLs -Hudson.NodeDescription=O n\u00F3 controlador embutido do Jenkins -CLI.safe-restart.shortDescription=Reiniciar o Jenkins com seguran\u00E7a +Hudson.NotUsesUTF8ToDecodeURL=não use caracteres UTF-8 nas URLs +Hudson.NodeDescription=O nó controlador embutido do Jenkins +CLI.safe-restart.shortDescription=Reiniciar o Jenkins com segurança CLI.restart.shortDescription=Reiniciar o Jenkins -CLI.keep-build.shortDescription=Marcar a constru\u00E7\u00E3o como permanente -Mailer.Address.Not.Configured=Endere\u00E7o ainda n\u00E3o configurado -Mailer.Localhost.Error=Por favor, insira um nome de hospedeiro v\u00E1lido. -CLI.safe-shutdown.shortDescription=Coloca o Jenkins no modo silencioso, aguarda as constru\u00E7\u00F5es conclu\u00EDrem e ent\u00E3o \ +CLI.keep-build.shortDescription=Marcar a construção como permanente +Mailer.Address.Not.Configured=Endereço ainda não configurado +Mailer.Localhost.Error=Por favor, insira um nome de hospedeiro válido. +CLI.safe-shutdown.shortDescription=Coloca o Jenkins no modo silencioso, aguarda as construções concluírem e então \ desliga o Jenkins -PatternProjectNamingStrategy.DisplayName=Padr\u00E3o +PatternProjectNamingStrategy.DisplayName=Padrão CauseOfInterruption.ShortDescription=Abortado por {0} -PatternProjectNamingStrategy.NamePatternRequired=O padr\u00E3o do nome \u00E9 obrigat\u00F3rio -Hudson.JobNameConventionNotApplyed=\u2018{0}\u2019 n\u00E3o atende ao padr\u00E3o de nomenclatura {1} +PatternProjectNamingStrategy.NamePatternRequired=O padrão do nome é obrigatório +Hudson.JobNameConventionNotApplyed=‘{0}’ não atende ao padrão de nomenclatura {1} CLI.shutdown.shortDescription=Desliga o servidor imediatamente -IdStrategy.CaseSensitiveEmailAddress.DisplayName=Diferencia mai\u00FAsculas de min\u00FAsculas (endere\u00E7o de e-mail) -IdStrategy.CaseInsensitive.DisplayName=N\u00E3o diferencia mai\u00FAsculas de min\u00FAsculas -IdStrategy.CaseSensitive.DisplayName=Diferencia mai\u00FAsculas de min\u00FAsculas -PatternProjectNamingStrategy.NamePatternInvalidSyntax=A sintaxe da express\u00E3o regular \u00E9 inv\u00E1lida -DefaultProjectNamingStrategy.DisplayName=Padr\u00E3o -ParameterizedJobMixIn.build_with_parameters=Construir com par\u00E2metros +IdStrategy.CaseSensitiveEmailAddress.DisplayName=Diferencia maiúsculas de minúsculas (endereço de e-mail) +IdStrategy.CaseInsensitive.DisplayName=Não diferencia maiúsculas de minúsculas +IdStrategy.CaseSensitive.DisplayName=Diferencia maiúsculas de minúsculas +PatternProjectNamingStrategy.NamePatternInvalidSyntax=A sintaxe da expressão regular é inválida +DefaultProjectNamingStrategy.DisplayName=Padrão +ParameterizedJobMixIn.build_with_parameters=Construir com parâmetros ParameterizedJobMixIn.build_now=Construir agora -BlockedBecauseOfBuildInProgress.shortDescription=A constru\u00E7\u00E3o #{0} j\u00E1 est\u00E1 em progresso {1} -BlockedBecauseOfBuildInProgress.ETA=\ (Tempo estimado de t\u00E9rmino: {0}) -BuildDiscarderProperty.displayName=Descartar constru\u00E7\u00F5es antigas +BlockedBecauseOfBuildInProgress.shortDescription=A construção #{0} já está em progresso {1} +BlockedBecauseOfBuildInProgress.ETA=\ (Tempo estimado de término: {0}) +BuildDiscarderProperty.displayName=Descartar construções antigas CLI.disable-job.shortDescription=Desabilitar uma tarefa CLI.enable-job.shortDescription=Habilita uma tarefa -Mailer.NotHttp.Error=A URL \u00E9 inv\u00E1lida, por favor se certifique que voc\u00EA est\u00E1 usando http:// ou https:// com um dom\u00EDnio \ - v\u00E1lido. -Hudson.Computer.IncorrectNumberOfExecutors=Campo "N\u00FAmero de executores" incorreto. Ele precisa ser um n\u00FAmero n\u00E3o \ +Mailer.NotHttp.Error=A URL é inválida, por favor se certifique que você está usando http:// ou https:// com um domínio \ + válido. +Hudson.Computer.IncorrectNumberOfExecutors=Campo "Número de executores" incorreto. Ele precisa ser um número não \ negativo. -NewViewLink.NewView=Nova vis\u00E3o +NewViewLink.NewView=Nova visão EnforceSlaveAgentPortAdministrativeMonitor.displayName=Impor porta TCP para o agente -BuiltInNodeMigration.DisplayName=Nome do n\u00F3 embutido e migra\u00E7\u00E3o de r\u00F3tulo -SimpleGlobalBuildDiscarderStrategy.displayName=Descartador de constru\u00E7\u00E3o espec\u00EDfico +BuiltInNodeMigration.DisplayName=Nome do nó embutido e migração de rótulo +SimpleGlobalBuildDiscarderStrategy.displayName=Descartador de construção específico GlobalCloudConfiguration.DisplayName=Configurar nuvens -JobGlobalBuildDiscarderStrategy.displayName=Descartador de constru\u00E7\u00E3o do projeto -JenkinsLocationConfiguration.does_not_look_like_an_email_address=N\u00E3o se parece com um endere\u00E7o de correio eletr\u00F4nico +JobGlobalBuildDiscarderStrategy.displayName=Descartador de construção do projeto +JenkinsLocationConfiguration.does_not_look_like_an_email_address=Não se parece com um endereço de correio eletrônico diff --git a/core/src/main/resources/jenkins/model/Messages_pt_PT.properties b/core/src/main/resources/jenkins/model/Messages_pt_PT.properties index 02c7b5ce63b6..392451994d6a 100644 --- a/core/src/main/resources/jenkins/model/Messages_pt_PT.properties +++ b/core/src/main/resources/jenkins/model/Messages_pt_PT.properties @@ -1 +1 @@ -BuildDiscarderProperty.displayName=Descartar compila\u00E7\u00F5es antigas +BuildDiscarderProperty.displayName=Descartar compilações antigas diff --git a/core/src/main/resources/jenkins/model/Messages_ru.properties b/core/src/main/resources/jenkins/model/Messages_ru.properties index 255a60bca237..da2b98ea3eac 100644 --- a/core/src/main/resources/jenkins/model/Messages_ru.properties +++ b/core/src/main/resources/jenkins/model/Messages_ru.properties @@ -20,39 +20,39 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Hudson.BadPortNumber=\u041D\u0435\u043A\u043E\u0440\u0440\u0435\u043A\u0442\u043D\u044B\u0439 \u043D\u043E\u043C\u0435\u0440 \u043F\u043E\u0440\u0442\u0430: {0} -Hudson.Computer.Caption=\u041C\u0430\u0441\u0442\u0435\u0440 -Hudson.Computer.DisplayName=\u043C\u0430\u0441\u0442\u0435\u0440 -Hudson.ControlCodeNotAllowed=\u0423\u043F\u0440\u0430\u0432\u043B\u044F\u044E\u0449\u0438\u0439 \u043A\u043E\u0434 \u043D\u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043D: {0} +Hudson.BadPortNumber=Ðекорректный номер порта: {0} +Hudson.Computer.Caption=МаÑтер +Hudson.Computer.DisplayName=маÑтер +Hudson.ControlCodeNotAllowed=УправлÑющий код не разрешен: {0} Hudson.DisplayName=Jenkins -Hudson.JobAlreadyExists=\u0417\u0430\u0434\u0430\u0447\u0430 \u0441 \u0438\u043C\u0435\u043D\u0435\u043C ''{0}'' \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 -Hudson.NoJavaInPath=java \u043D\u0435 \u043D\u0430\u0439\u0434\u0435\u043D\u0430 \u0432 PATH. \u0412\u043E\u0437\u043C\u043E\u0436\u043D\u043E, \u0432\u0430\u043C \u043D\u0443\u0436\u043D\u043E \u0441\u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043E\u0432\u0430\u0442\u044C JDK? -Hudson.NoName=\u0418\u043C\u044F \u043D\u0435 \u0443\u043A\u0430\u0437\u0430\u043D\u043E -Hudson.UnsafeChar=''{0}'' \u043D\u0435\u0431\u0435\u0437\u043E\u043F\u0430\u0441\u043D\u044B\u0439 \u0441\u0438\u043C\u0432\u043E\u043B -Hudson.ViewName=\u0412\u0441\u0435 -ParameterizedJobMixIn.build_now=\u0421\u043E\u0431\u0440\u0430\u0442\u044C \u0441\u0435\u0439\u0447\u0430\u0441 -BlockedBecauseOfBuildInProgress.shortDescription=\u0421\u0431\u043E\u0440\u043A\u0430 #{0} \u0443\u0436\u0435 \u0432 \u043F\u0440\u043E\u0446\u0435\u0441\u0441\u0435 {1} -BlockedBecauseOfBuildInProgress.ETA=\ (\u043E\u0441\u0442\u0430\u043B\u043E\u0441\u044C: {0}) -BuildDiscarderProperty.displayName=\u0423\u0434\u0430\u043B\u044F\u0442\u044C \u0443\u0441\u0442\u0430\u0440\u0435\u0432\u0448\u0438\u0435 \u0441\u0431\u043E\u0440\u043A\u0438 -Hudson.NotUsesUTF8ToDecodeURL=\u0412\u0430\u0448 \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440 \u043D\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442 UTF-8 \u0434\u043B\u044F \u0434\u0435\u043A\u043E\u0434\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F URL-\u0430\u0434\u0440\u0435\u0441\u043E\u0432. \u0415\u0441\u043B\u0438 \u0432\u044B \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0435 \u043D\u0435-ASCII \u0441\u0438\u043C\u0432\u043E\u043B\u044B \u0432 \u043A\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u0438\u043C\u0435\u043D\u0438 \u0437\u0430\u0434\u0430\u0447\u0438 \u0438 \u0442.\u0434., \ -\u044D\u0442\u043E \u043C\u043E\u0436\u0435\u0442 \u0432\u044B\u0437\u0432\u0430\u0442\u044C \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u044B.\ -\u0414\u043B\u044F \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438 \u043F\u0435\u0440\u0435\u0439\u0434\u0438\u0442\u0435 \u0432 \u0440\u0430\u0437\u0434\u0435\u043B Tomcat i18n -CLI.restart.shortDescription=\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A Jenkins -CLI.safe-restart.shortDescription=\u0411\u0435\u0437\u043E\u043F\u0430\u0441\u043D\u044B\u0439 \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A Jenkins -CLI.keep-build.shortDescription=\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C \u044D\u0442\u0443 \u0441\u0431\u043E\u0440\u043A\u0443 \u043D\u0430\u0432\u0441\u0435\u0433\u0434\u0430 -CauseOfInterruption.ShortDescription=\u041F\u0440\u0435\u0440\u0432\u0430\u043D\u043E \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0435\u043C {0} -CLI.shutdown.shortDescription=\u041D\u0435\u043C\u0435\u0434\u043B\u0435\u043D\u043D\u043E\u0435 \u0432\u044B\u043A\u043B\u044E\u0447\u0435\u043D\u0438\u0435 Jenkins -CLI.safe-shutdown.shortDescription=\u041F\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438 Jenkins \u0432 "\u0442\u0438\u0445\u0438\u0439 \u0440\u0435\u0436\u0438\u043C" \u0438 \u0432\u044B\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u043F\u043E\u0441\u043B\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u0438\u044F \u0432\u0441\u0435\u0445 \u0437\u0430\u043F\u0443\u0449\u0435\u043D\u044B\u0445 \u0441\u0431\u043E\u0440\u043E\u043A. -DefaultProjectNamingStrategy.DisplayName=\u041F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E -IdStrategy.CaseInsensitive.DisplayName=\u0411\u0435\u0437 \u0443\u0447\u0435\u0442\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430 -IdStrategy.CaseSensitive.DisplayName=\u0421 \u0443\u0447\u0435\u0442\u043E\u043C \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430 -IdStrategy.CaseSensitiveEmailAddress.DisplayName=\u0421 \u0443\u0447\u0435\u0442\u043E\u043C \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430 (email address) -Mailer.Address.Not.Configured=\u0430\u0434\u0440\u0435\u0441 \u0435\u0449\u0435 \u043D\u0435 \u043D\u0430\u0441\u0442\u0440\u043E\u0435\u043D -Mailer.Localhost.Error=\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u0435 \u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u043E\u0435 \u0438\u043C\u044F \u0445\u043E\u0441\u0442\u0430, \u0430 \u043D\u0435 localhost -PatternProjectNamingStrategy.DisplayName=\u0428\u0430\u0431\u043B\u043E\u043D -PatternProjectNamingStrategy.NamePatternRequired=\u041D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C \u0448\u0430\u0431\u043B\u043E\u043D \u0434\u043B\u044F \u0438\u043C\u0435\u043D\u0438 -PatternProjectNamingStrategy.NamePatternInvalidSyntax=\u041D\u0435\u043A\u043E\u0440\u0440\u0435\u043A\u0442\u043D\u043E\u0435 \u0440\u0435\u0433\u0443\u043B\u044F\u0440\u043D\u043E\u0435 \u0432\u044B\u0440\u0430\u0436\u0435\u043D\u0438\u0435 -ParameterizedJobMixIn.build_with_parameters=\u0421\u043E\u0431\u0440\u0430\u0442\u044C \u0441 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0430\u043C\u0438 -CLI.disable-job.shortDescription=\u0417\u0430\u043F\u0440\u0435\u0442\u0438\u0442\u044C \u0437\u0430\u0434\u0430\u0447\u0443 -CLI.enable-job.shortDescription=\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044C \u0437\u0430\u0434\u0430\u0447\u0443 -NewViewLink.NewView=\u041d\u043e\u0432\u043e\u0435\u0020\u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \ No newline at end of file +Hudson.JobAlreadyExists=Задача Ñ Ð¸Ð¼ÐµÐ½ÐµÐ¼ ''{0}'' уже ÑущеÑтвует +Hudson.NoJavaInPath=java не найдена в PATH. Возможно, вам нужно Ñконфигурировать JDK? +Hudson.NoName=Ð˜Ð¼Ñ Ð½Ðµ указано +Hudson.UnsafeChar=''{0}'' небезопаÑный Ñимвол +Hudson.ViewName=Ð’Ñе +ParameterizedJobMixIn.build_now=Собрать ÑÐµÐ¹Ñ‡Ð°Ñ +BlockedBecauseOfBuildInProgress.shortDescription=Сборка #{0} уже в процеÑÑе {1} +BlockedBecauseOfBuildInProgress.ETA=\ (оÑталоÑÑŒ: {0}) +BuildDiscarderProperty.displayName=УдалÑÑ‚ÑŒ уÑтаревшие Ñборки +Hudson.NotUsesUTF8ToDecodeURL=Ваш контейнер не иÑпользует UTF-8 Ð´Ð»Ñ Ð´ÐµÐºÐ¾Ð´Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ URL-адреÑов. ЕÑли вы иÑпользуете не-ASCII Ñимволы в качеÑтве имени задачи и Ñ‚.д., \ +Ñто может вызвать проблемы.\ +Ð”Ð»Ñ Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð¾Ð¹ информации перейдите в раздел Tomcat i18n +CLI.restart.shortDescription=ПерезапуÑк Jenkins +CLI.safe-restart.shortDescription=БезопаÑный перезапуÑк Jenkins +CLI.keep-build.shortDescription=Сохранить Ñту Ñборку навÑегда +CauseOfInterruption.ShortDescription=Прервано пользователем {0} +CLI.shutdown.shortDescription=Ðемедленное выключение Jenkins +CLI.safe-shutdown.shortDescription=ПеревеÑти Jenkins в "тихий режим" и выключить поÑле Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¸Ñ Ð²Ñех запущеных Ñборок. +DefaultProjectNamingStrategy.DisplayName=По умолчанию +IdStrategy.CaseInsensitive.DisplayName=Без учета региÑтра +IdStrategy.CaseSensitive.DisplayName=С учетом региÑтра +IdStrategy.CaseSensitiveEmailAddress.DisplayName=С учетом региÑтра (email address) +Mailer.Address.Not.Configured=Ð°Ð´Ñ€ÐµÑ ÐµÑ‰Ðµ не наÑтроен +Mailer.Localhost.Error=ПожалуйÑта, уÑтановите допуÑтимое Ð¸Ð¼Ñ Ñ…Ð¾Ñта, а не localhost +PatternProjectNamingStrategy.DisplayName=Шаблон +PatternProjectNamingStrategy.NamePatternRequired=Ðеобходим шаблон Ð´Ð»Ñ Ð¸Ð¼ÐµÐ½Ð¸ +PatternProjectNamingStrategy.NamePatternInvalidSyntax=Ðекорректное регулÑрное выражение +ParameterizedJobMixIn.build_with_parameters=Собрать Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð°Ð¼Ð¸ +CLI.disable-job.shortDescription=Запретить задачу +CLI.enable-job.shortDescription=Разрешить задачу +NewViewLink.NewView=Ðовое предÑтавление \ No newline at end of file diff --git a/core/src/main/resources/jenkins/model/Messages_sk.properties b/core/src/main/resources/jenkins/model/Messages_sk.properties index 322f01deffd1..7c566f9165d0 100644 --- a/core/src/main/resources/jenkins/model/Messages_sk.properties +++ b/core/src/main/resources/jenkins/model/Messages_sk.properties @@ -1 +1 @@ -BuildDiscarderProperty.displayName=Vymazanie star\u00FDch zostaven\u00ED +BuildDiscarderProperty.displayName=Vymazanie starých zostavení diff --git a/core/src/main/resources/jenkins/model/Messages_sr.properties b/core/src/main/resources/jenkins/model/Messages_sr.properties index 84c151973336..3e2135c1f623 100644 --- a/core/src/main/resources/jenkins/model/Messages_sr.properties +++ b/core/src/main/resources/jenkins/model/Messages_sr.properties @@ -1,44 +1,44 @@ # This file is under the MIT License by authors -Hudson.BadPortNumber=\u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u0430\u043d \u0431\u0440\u043e\u0458 \u043f\u043e\u0440\u0442\u0430: {0} -Hudson.Computer.Caption=\u041c\u0430\u0441\u0442\u0435\u0440 -Hudson.ControlCodeNotAllowed=\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u0438 \u043a\u043e\u0434 \u043d\u0438\u0458\u0435 \u0434\u043e\u0437\u0432\u043e\u0459\u0435\u043d: {0} -Hudson.Computer.DisplayName=\u043c\u0430\u0441\u0442\u0435\u0440 +Hudson.BadPortNumber=Ðеправилан број порта: {0} +Hudson.Computer.Caption=МаÑтер +Hudson.ControlCodeNotAllowed=Контроли код није дозвољен: {0} +Hudson.Computer.DisplayName=маÑтер Hudson.DisplayName=Jenkins -Hudson.NoJavaInPath=java \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u0441\u0435 \u043d\u0435 \u043d\u0430\u043b\u0430\u0437\u0438 \u0443 \u0432\u0430\u0448\u043e\u0458 PATH \u043f\u0440\u043e\u043c\u0435\u043d\u0459\u0438\u0432\u0438. \u041c\u043e\u0436\u0434\u0430 \u0442\u0440\u0435\u0431\u0430\u0442\u0435 \u0434\u0430 \u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u0435 JDK-\u043e\u0432\u0435? -Hudson.NoName=\u0418\u043c\u0435 \u043d\u0438\u0458\u0435 \u043d\u0430\u0432\u0435\u0434\u0435\u043d\u043e -Hudson.NodeBeingRemoved=\u0423\u043a\u043b\u0430\u045a\u0430\u045a\u0435 \u043c\u0430\u0448\u0438\u043d\u0435 \u0458\u0435 \u0443 \u0442\u043e\u043a\u0443 -Hudson.UnsafeChar=\u041e\u043f\u0430\u0441\u043d\u043e \u0458\u0435 \u043a\u043e\u0440\u0438\u0441\u0438\u0442\u0438 \u0437\u043d\u0430\u043a\u043e\u0432\u0435 \u043a\u0430\u043e ''{0}'' -Hudson.JobNameConventionNotApplyed=\u2018{0}\u2019 \u043d\u0435 \u043e\u0434\u0433\u043e\u0432\u0430\u0440\u0430 \u0448\u0430\u0431\u043b\u043e\u043d\u0443 \u0437\u0430 \u0437\u0430\u0434\u0430\u0442\u043a\u0435 {1} -Hudson.ViewAlreadyExists=\u041f\u0440\u0435\u0433\u043b\u0435\u0434 \u0441\u0430 \u0438\u043c\u0435\u043d\u043e\u043c \u2018{0}\u2019 \u0432\u0435\u045b \u043f\u043e\u0441\u0442\u043e\u0458\u0438 -Hudson.JobAlreadyExists=\u0417\u0430\u0434\u0430\u0442\u0430\u043a \u0441\u0430 \u0438\u043c\u0435\u043d\u043e\u043c \u2018{0}\u2019 \u0432\u0435\u045b \u043f\u043e\u0441\u0442\u043e\u0458\u0438 -Hudson.ViewName=\u0421\u0432\u0435 -Hudson.NotUsesUTF8ToDecodeURL=\u0412\u0430\u0448 \u043a\u043e\u043d\u0442\u0435\u0458\u043d\u0435\u0440 \u043d\u0435 \u043a\u043e\u0440\u0438\u0441\u0442 UTF-8 \u0437\u0430 \u0434\u0435\u043a\u043e\u0434\u0438\u0440\u0430\u045a\u0435 URL-\u0430\u0434\u0440\u0435\u0441\u0435. \u0410\u043a\u043e \u043a\u043e\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u043a\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0435 \u0432\u0430\u043d ASCII \u043d\u0438\u0437\u0430 \u0443 \u0438\u043c\u0435\u043d\u0443 \u0437\u0430\u0434\u0430\u0442\u0430\u043a\u0430, \u0438\u0442\u0434, \u043c\u043e\u0436\u0435 \u0438\u0437\u0430\u0437\u0432\u0430\u0442\u0438 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0435. \u041e\u0442\u0438\u0452\u0438 \u0442\u0435 \u043d\u0430 \u041a\u043e\u043d\u0442\u0435\u0458\u043d\u0435\u0440\u0438 \u0438 \ - Tomcat i18n \u0437\u0430 \u0458\u043e\u0448 \u0434\u0435\u0442\u0430\u0459\u0430. -Hudson.NodeDescription=\u0433\u043b\u0430\u0432\u043d\u0430 Jenkins \u043c\u0430\u0448\u0438\u043d\u0430 -Hudson.NoParamsSpecified=\u041d\u0438\u0441\u0443 \u043d\u0430\u0432\u0435\u0434\u0435\u043d\u0438 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 \u0437\u0430 \u043e\u0432\u0430\u0458 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0434\u045a\u0435 -CLI.restart.shortDescription=\u041f\u043e\u043d\u043e\u0432\u043e \u043f\u043e\u043a\u0440\u0435\u043d\u0438 Jenkins -CLI.safe-restart.shortDescription=\u0411\u0435\u0437\u0432\u0435\u0434\u043d\u043e \u043f\u043e\u043d\u043e\u0432\u043e \u043f\u043e\u043a\u0440\u0435\u043d\u0438 Jenkins-\u0430 -CLI.keep-build.shortDescription=\u0417\u0430\u0434\u0440\u0436\u0438 \u0438\u0437\u0433\u0440\u0430\u0434\u045a\u0443 \u0437\u0430\u0443\u0432\u0435\u043a -CauseOfInterruption.ShortDescription=\u041e\u0434\u0443\u0441\u0442\u0430\u0432\u0459\u0435\u043d\u043e \u043e\u0434 \u0441\u0442\u0440\u0430\u043d\u0435 {0} -CLI.shutdown.shortDescription=\u041e\u0434\u043c\u0430\u0445 \u0437\u0430\u0443\u0441\u0442\u0430\u0432\u0438 Jenkins \u0441\u0435\u0440\u0432\u0435\u0440 -DefaultProjectNamingStrategy.DisplayName=\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0434\u043d\u043e +Hudson.NoJavaInPath=java команда Ñе не налази у вашој PATH променљиви. Можда требате да поÑтавите JDK-ове? +Hudson.NoName=Име није наведено +Hudson.NodeBeingRemoved=Уклањање машине је у току +Hudson.UnsafeChar=ОпаÑно је кориÑити знакове као ''{0}'' +Hudson.JobNameConventionNotApplyed=‘{0}’ не одговара шаблону за задатке {1} +Hudson.ViewAlreadyExists=Преглед Ñа именом ‘{0}’ већ поÑтоји +Hudson.JobAlreadyExists=Задатак Ñа именом ‘{0}’ већ поÑтоји +Hudson.ViewName=Све +Hudson.NotUsesUTF8ToDecodeURL=Ваш контејнер не кориÑÑ‚ UTF-8 за декодирање URL-адреÑе. Ðко кориÑтите карактере ван ASCII низа у имену задатака, итд, може изазвати проблеме. Отиђи те на Контејнери и \ + Tomcat i18n за још детаља. +Hudson.NodeDescription=главна Jenkins машина +Hudson.NoParamsSpecified=ÐиÑу наведени параметри за овај параметризовано изградње +CLI.restart.shortDescription=Поново покрени Jenkins +CLI.safe-restart.shortDescription=Безведно поново покрени Jenkins-а +CLI.keep-build.shortDescription=Задржи изградњу заувек +CauseOfInterruption.ShortDescription=ОдуÑтављено од Ñтране {0} +CLI.shutdown.shortDescription=Одмах зауÑтави Jenkins Ñервер +DefaultProjectNamingStrategy.DisplayName=Стандардно CLI.safe-shutdown.shortDescription=\ -\u041f\u0440\u0435\u0431\u0430\u0446\u0438 Jenkins \u0443 \u0442\u0438\u0445\u0438 \u0440\u0435\u0436\u0438\u043c, \u0447\u0435\u043a\u0430\u045b\u0435 \u0437\u0430\u0432\u0440\u0448\u045a\u0435\u0442\u0430\u043a \u0442\u0440\u0435\u043d\u0443\u0442\u043d\u0438\u0445 \u0438\u0437\u0433\u0440\u0430\u0434\u045a\u0430 \u0430 \u043e\u043d\u0434\u0430 \u045b\u0435 \u0443\u0433\u0430\u0441\u0438\u0442\u0438 Jenkins. -IdStrategy.CaseInsensitive.DisplayName=\u0411\u0435\u0437 \u0440\u0430\u0437\u043b\u0438\u043a\u0435 \u0438\u0437\u043c\u0435\u045b\u0443 \u0432\u0435\u043b\u0438\u043a\u0438\u043c \u0438 \u043c\u0430\u043b\u0438\u043c \u0441\u043b\u043e\u0432\u0438\u043c\u0430 -IdStrategy.CaseSensitive.DisplayName=\u0421\u0430 \u0440\u0430\u0437\u043b\u0438\u043a\u043e\u043c \u0438\u0437\u043c\u0435\u045b\u0443 \u0432\u0435\u043b\u0438\u043a\u0438\u043c \u0438 \u043c\u0430\u043b\u0438\u043c \u0441\u043b\u043e\u0432\u0438\u043c\u0430 -IdStrategy.CaseSensitiveEmailAddress.DisplayName=\u0421\u0430 \u0440\u0430\u0437\u043b\u0438\u043a\u043e\u043c \u0438\u0437\u043c\u0435\u045b\u0443 \u0432\u0435\u043b\u0438\u043a\u0438\u043c \u0438 \u043c\u0430\u043b\u0438\u043c \u0441\u043b\u043e\u0432\u0438\u043c\u0430 (\u0430\u0434\u0440\u0435\u0441\u0430 \u0435-\u043f\u043e\u0448\u0442\u0435) -Mailer.Address.Not.Configured=\u0430\u0434\u0440\u0435\u0441\u0430 \u043d\u0438\u0458\u0435 \u0458\u043e\u0448 \u043d\u0430\u0432\u0435\u0434\u0435\u043d\u0430 -Mailer.Localhost.Error=\u041d\u0430\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e \u0438\u043c\u0435 \u0437\u0430 \u0445\u043e\u0441\u0442, \u0430 \u043d\u0435 "localhost" -PatternProjectNamingStrategy.DisplayName=\u0428\u0430\u0431\u043b\u043e\u043d -PatternProjectNamingStrategy.NamePatternRequired=\u041d\u0430\u0432\u0435\u0434\u0438\u0442\u0435 \u0448\u0430\u0431\u043b\u043e\u043d \u0438\u043c\u0435\u043d\u0443 -PatternProjectNamingStrategy.NamePatternInvalidSyntax=\u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u0430\u043d \u0440\u0435\u0433\u0443\u043b\u0430\u0440\u043d\u0438 \u0438\u0437\u0440\u0430\u0437 -ParameterizedJobMixIn.build_with_parameters=\u0418\u0437\u0433\u0440\u0430\u0434\u0438 \u0441\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438\u043c\u0430 -ParameterizedJobMixIn.build_now=\u0418\u0437\u0433\u0440\u0430\u0434\u0438 \u0441\u0430\u0434\u0430 -BlockedBecauseOfBuildInProgress.shortDescription=\u0418\u0437\u0433\u0440\u0430\u0434\u045a\u0430 #{0} \u0458\u0435 \u0432\u0435\u045b \u0443 \u0442\u043e\u043a\u0443 {1} -BlockedBecauseOfBuildInProgress.ETA=\ (\u043e\u0441\u0442\u0430\u043b\u043e: {0}) -BuildDiscarderProperty.displayName=\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u0441\u0442\u0430\u0440\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045a\u0430 +Пребаци Jenkins у тихи режим, чекаће завршњетак тренутних изградња а онда ће угаÑити Jenkins. +IdStrategy.CaseInsensitive.DisplayName=Без разлике измећу великим и малим Ñловима +IdStrategy.CaseSensitive.DisplayName=Са разликом измећу великим и малим Ñловима +IdStrategy.CaseSensitiveEmailAddress.DisplayName=Са разликом измећу великим и малим Ñловима (адреÑа е-поште) +Mailer.Address.Not.Configured=адреÑа није још наведена +Mailer.Localhost.Error=Ðаведите друго име за хоÑÑ‚, а не "localhost" +PatternProjectNamingStrategy.DisplayName=Шаблон +PatternProjectNamingStrategy.NamePatternRequired=Ðаведите шаблон имену +PatternProjectNamingStrategy.NamePatternInvalidSyntax=Ðеправилан регуларни израз +ParameterizedJobMixIn.build_with_parameters=Изгради Ñа параметрима +ParameterizedJobMixIn.build_now=Изгради Ñада +BlockedBecauseOfBuildInProgress.shortDescription=Изградња #{0} је већ у току {1} +BlockedBecauseOfBuildInProgress.ETA=\ (оÑтало: {0}) +BuildDiscarderProperty.displayName=Избриши Ñтара изградња Din= vil= -CLI.disable-job.shortDescription=\u041f\u043e\u043d\u0438\u0448\u0442\u0438 \u0437\u0430\u0434\u0430\u0442\u0430\u043a -CLI.enable-job.shortDescription=\u0423\u043a\u0459\u0443\u0447\u0438 \u0437\u0430\u0434\u0430\u0442\u0430\u043a +CLI.disable-job.shortDescription=Поништи задатак +CLI.enable-job.shortDescription=Укључи задатак diff --git a/core/src/main/resources/jenkins/model/Messages_tr.properties b/core/src/main/resources/jenkins/model/Messages_tr.properties index 8b4662cf9251..e4634eb73d00 100644 --- a/core/src/main/resources/jenkins/model/Messages_tr.properties +++ b/core/src/main/resources/jenkins/model/Messages_tr.properties @@ -20,18 +20,18 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Hudson.BadPortNumber=Yanl\u0131\u015f Port Numaras\u0131 {0} +Hudson.BadPortNumber=Yanlış Port Numarası {0} Hudson.Computer.Caption=Master Hudson.Computer.DisplayName=master Hudson.ControlCodeNotAllowed=Kontrol koduna izin verilmiyor: {0} Hudson.DisplayName=Jenkins -Hudson.JobAlreadyExists=''{0}'' isminde bir i\u015f zaten mevcut -Hudson.NoJavaInPath=java, PATH i\u00e7erisinde de\u011fil. JDK konfig\u00fcrasyonunu d\u00fczeltmeniz gerekebilir? -Hudson.NoName=\u0130sim belirtilmedi -Hudson.UnsafeChar=''{0}'' g\u00fcvenli olmayan bir karakter +Hudson.JobAlreadyExists=''{0}'' isminde bir iÅŸ zaten mevcut +Hudson.NoJavaInPath=java, PATH içerisinde deÄŸil. JDK konfigürasyonunu düzeltmeniz gerekebilir? +Hudson.NoName=Ä°sim belirtilmedi +Hudson.UnsafeChar=''{0}'' güvenli olmayan bir karakter Hudson.ViewName=Hepsi -NewViewLink.NewView=Yeni G\u00f6r\u00fcn\u00fcm -ParameterizedJobMixIn.build_now=\u015eimdi Yap\u0131land\u0131r -BlockedBecauseOfBuildInProgress.shortDescription=Yap\u0131land\u0131rma #{0} zaten i\u015flemde {1} +NewViewLink.NewView=Yeni Görünüm +ParameterizedJobMixIn.build_now=Åžimdi Yapılandır +BlockedBecauseOfBuildInProgress.shortDescription=Yapılandırma #{0} zaten iÅŸlemde {1} BlockedBecauseOfBuildInProgress.ETA=\ (ETA: {0}) -BuildDiscarderProperty.displayName=Eski Yap\u0131land\u0131rmalardan Kurtul +BuildDiscarderProperty.displayName=Eski Yapılandırmalardan Kurtul diff --git a/core/src/main/resources/jenkins/model/Messages_uk.properties b/core/src/main/resources/jenkins/model/Messages_uk.properties index 28676a81108b..15df9b9ff3e8 100644 --- a/core/src/main/resources/jenkins/model/Messages_uk.properties +++ b/core/src/main/resources/jenkins/model/Messages_uk.properties @@ -1 +1 @@ -BuildDiscarderProperty.displayName=\u0421\u043A\u0430\u0441\u0443\u0432\u0430\u0442\u0438 \u0441\u0442\u0430\u0440\u0456 \u0431\u0456\u043B\u0434\u0438 +BuildDiscarderProperty.displayName=СкаÑувати Ñтарі білди diff --git a/core/src/main/resources/jenkins/model/Messages_zh_TW.properties b/core/src/main/resources/jenkins/model/Messages_zh_TW.properties index ed267d4ad044..b3a9630243dd 100644 --- a/core/src/main/resources/jenkins/model/Messages_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Messages_zh_TW.properties @@ -20,59 +20,59 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Hudson.BadPortNumber=\u9023\u63a5\u57e0\u865f {0} \u932f\u8aa4 -Hudson.Computer.Caption=\u5167\u5efa\u7bc0\u9ede -Hudson.Computer.DisplayName=\u5167\u5efa -Hudson.Computer.IncorrectNumberOfExecutors=\u300c\u57f7\u884c\u7a0b\u5f0f\u6578\u300d\u6b04\u4f4d\u7121\u6548\uff0c\u5b83\u5fc5\u9808\u662f\u6b63\u6574\u6578\u3002 -Hudson.ControlCodeNotAllowed=\u4e0d\u5141\u8a31\u63a7\u5236\u78bc\: {0} +Hudson.BadPortNumber=連接埠號 {0} 錯誤 +Hudson.Computer.Caption=內建節點 +Hudson.Computer.DisplayName=內建 +Hudson.Computer.IncorrectNumberOfExecutors=「執行程å¼æ•¸ã€æ¬„ä½ç„¡æ•ˆï¼Œå®ƒå¿…須是正整數。 +Hudson.ControlCodeNotAllowed=ä¸å…許控制碼\: {0} Hudson.DisplayName=Jenkins -Hudson.JobAlreadyExists=\u5df2\u7d93\u6709\u53eb\u505a ''{0}'' \u7684\u4f5c\u696d -Hudson.NoJavaInPath=java \u4e0d\u5728 PATH \u88e1\u3002\u8aaa\u4e0d\u5b9a\u60a8\u61c9\u8a72\u8a2d\u5b9a JDK\uff1f -Hudson.NoName=\u6c92\u6709\u6307\u5b9a\u540d\u7a31 -Hudson.NodeBeingRemoved=\u7bc0\u9ede\u6b63\u88ab\u79fb\u9664 -Hudson.UnsafeChar=\u300c{0}\u300d\u662f\u4e0d\u5b89\u5168\u7684\u5b57\u5143 -Hudson.JobNameConventionNotApplyed=\u300c{0}\u300d\u4e0d\u7b26\u5408\u4f5c\u696d\u547d\u540d\u6163\u4f8b\u7684\u6a23\u5f0f {1} -Hudson.ViewAlreadyExists=\u5df2\u7d93\u6709\u53eb\u505a\u300c{0}\u300d\u7684\u8996\u666f -Hudson.ViewName=\u5168\u90e8 -Hudson.NotUsesUTF8ToDecodeURL=\u60a8\u7684\u5bb9\u5668\u4e0d\u662f\u4f7f\u7528 UTF-8 \u89e3\u8b6f URL\u3002\u5982\u679c\u60a8\u5728\u4f5c\u696d\u7b49\u540d\u7a31\u4e2d\u4f7f\u7528\u4e86\u975e ASCII \u5b57\u5143\uff0c\u53ef\u80fd\u6703\u9020\u6210\u554f\u984c\u3002\u8acb\u53c3\u8003 Tomcat i18n \u4ee5\u4e86\u89e3\u8a73\u60c5\u3002 -Hudson.NodeDescription=\u8a72 Jenkins Controller \u7684\u5167\u5efa\u7bc0\u9ede +Hudson.JobAlreadyExists=已經有å«åš ''{0}'' 的作業 +Hudson.NoJavaInPath=java ä¸åœ¨ PATH 裡。說ä¸å®šæ‚¨æ‡‰è©²è¨­å®š JDK? +Hudson.NoName=沒有指定å稱 +Hudson.NodeBeingRemoved=節點正被移除 +Hudson.UnsafeChar=「{0}ã€æ˜¯ä¸å®‰å…¨çš„å­—å…ƒ +Hudson.JobNameConventionNotApplyed=「{0}ã€ä¸ç¬¦åˆä½œæ¥­å‘½åæ…£ä¾‹çš„æ¨£å¼ {1} +Hudson.ViewAlreadyExists=已經有å«åšã€Œ{0}ã€çš„視景 +Hudson.ViewName=全部 +Hudson.NotUsesUTF8ToDecodeURL=您的容器ä¸æ˜¯ä½¿ç”¨ UTF-8 解譯 URL。如果您在作業等åç¨±ä¸­ä½¿ç”¨äº†éž ASCII 字元,å¯èƒ½æœƒé€ æˆå•é¡Œã€‚è«‹åƒè€ƒ Tomcat i18n 以了解詳情。 +Hudson.NodeDescription=該 Jenkins Controller 的內建節點 -CLI.restart.shortDescription=\u91cd\u65b0\u555f\u52d5 Jenkins\u3002 -CLI.safe-restart.shortDescription=\u5b89\u5168\u5730\u91cd\u65b0\u555f\u52d5 Jenkins\u3002 -CLI.keep-build.shortDescription=\u6c38\u4e45\u4fdd\u5b58\u9019\u6b21\u5efa\u7f6e\u3002 -CauseOfInterruption.ShortDescription=\u7531 {0} \u4e2d\u6b62 -CLI.shutdown.shortDescription=\u7acb\u5373\u5c07 Jenkins \u4f3a\u670d\u5668\u505c\u6a5f -CLI.safe-shutdown.shortDescription=\u8b93 Jenkins \u9032\u5165\u975c\u5019\u6a21\u5f0f\uff0c\u7b49\u5230\u73fe\u6709\u4f5c\u696d\u90fd\u5b8c\u6210\u5f8c\u5c31\u5c07 Jenkins \u505c\u6a5f\u3002 +CLI.restart.shortDescription=é‡æ–°å•Ÿå‹• Jenkins。 +CLI.safe-restart.shortDescription=安全地é‡æ–°å•Ÿå‹• Jenkins。 +CLI.keep-build.shortDescription=永久ä¿å­˜é€™æ¬¡å»ºç½®ã€‚ +CauseOfInterruption.ShortDescription=ç”± {0} 中止 +CLI.shutdown.shortDescription=ç«‹å³å°‡ Jenkins 伺æœå™¨åœæ©Ÿ +CLI.safe-shutdown.shortDescription=讓 Jenkins 進入éœå€™æ¨¡å¼ï¼Œç­‰åˆ°ç¾æœ‰ä½œæ¥­éƒ½å®Œæˆå¾Œå°±å°‡ Jenkins åœæ©Ÿã€‚ -DefaultProjectNamingStrategy.DisplayName=\u9810\u8a2d +DefaultProjectNamingStrategy.DisplayName=é è¨­ -IdStrategy.CaseInsensitive.DisplayName=\u4e0d\u5340\u5206\u5927\u5c0f\u5beb -IdStrategy.CaseSensitive.DisplayName=\u5340\u5206\u5927\u5c0f\u5beb -IdStrategy.CaseSensitiveEmailAddress.DisplayName=\u5340\u5206\u5927\u5c0f\u5beb\uff08\u96fb\u5b50\u4fe1\u7bb1\u5730\u5740\uff09 +IdStrategy.CaseInsensitive.DisplayName=ä¸å€åˆ†å¤§å°å¯« +IdStrategy.CaseSensitive.DisplayName=å€åˆ†å¤§å°å¯« +IdStrategy.CaseSensitiveEmailAddress.DisplayName=å€åˆ†å¤§å°å¯«ï¼ˆé›»å­ä¿¡ç®±åœ°å€ï¼‰ -Mailer.Address.Not.Configured=\u9084\u6c92\u8a2d\u5b9a\u5730\u5740 -JenkinsLocationConfiguration.does_not_look_like_an_email_address=\u9019\u770b\u8d77\u4f86\u4e0d\u50cf\u96fb\u5b50\u4fe1\u7bb1\u5730\u5740 -Mailer.Localhost.Error=\u8acb\u8a2d\u5b9a\u6709\u6548\u7684\u4e3b\u6a5f\u540d\u7a31\uff0c\u4e0d\u8981\u7528 localhost -Mailer.NotHttp.Error=URL \u7121\u6548\uff0c\u8acb\u78ba\u4fdd\u60a8\u4f7f\u7528 http\:// \u6216 https\:// \u548c\u6709\u6548\u7684\u7db2\u57df\u540d\u7a31\u3002 +Mailer.Address.Not.Configured=é‚„æ²’è¨­å®šåœ°å€ +JenkinsLocationConfiguration.does_not_look_like_an_email_address=這看起來ä¸åƒé›»å­ä¿¡ç®±åœ°å€ +Mailer.Localhost.Error=請設定有效的主機å稱,ä¸è¦ç”¨ localhost +Mailer.NotHttp.Error=URL 無效,請確ä¿æ‚¨ä½¿ç”¨ http\:// 或 https\:// 和有效的網域å稱。 -NewViewLink.NewView=\u65b0\u589e\u8996\u666f +NewViewLink.NewView=新增視景 -PatternProjectNamingStrategy.DisplayName=\u6a23\u5f0f -PatternProjectNamingStrategy.NamePatternRequired=\u4e00\u5b9a\u8981\u8f38\u5165\u540d\u7a31\u6a23\u5f0f -PatternProjectNamingStrategy.NamePatternInvalidSyntax=\u6b63\u898f\u8868\u793a\u5f0f\u8a9e\u6cd5\u932f\u8aa4\u3002 -ParameterizedJobMixIn.build_with_parameters=\u5e36\u53c3\u6578\u5efa\u7f6e -ParameterizedJobMixIn.build_now=\u99ac\u4e0a\u5efa\u7f6e -BlockedBecauseOfBuildInProgress.shortDescription=\u5efa\u7f6e \#{0} \u5df2\u5728\u57f7\u884c\u4e2d{1} -BlockedBecauseOfBuildInProgress.ETA=\ (\u9810\u4f30\u6642\u9593\: {0}) -BuildDiscarderProperty.displayName=\u6368\u68c4\u820a\u5efa\u7f6e +PatternProjectNamingStrategy.DisplayName=æ¨£å¼ +PatternProjectNamingStrategy.NamePatternRequired=一定è¦è¼¸å…¥åç¨±æ¨£å¼ +PatternProjectNamingStrategy.NamePatternInvalidSyntax=æ­£è¦è¡¨ç¤ºå¼èªžæ³•éŒ¯èª¤ã€‚ +ParameterizedJobMixIn.build_with_parameters=帶åƒæ•¸å»ºç½® +ParameterizedJobMixIn.build_now=馬上建置 +BlockedBecauseOfBuildInProgress.shortDescription=建置 \#{0} 已在執行中{1} +BlockedBecauseOfBuildInProgress.ETA=\ (é ä¼°æ™‚é–“\: {0}) +BuildDiscarderProperty.displayName=æ¨æ£„舊建置 -EnforceSlaveAgentPortAdministrativeMonitor.displayName=\u5f37\u5236 TCP Agent \u9023\u63a5\u57e0 -CLI.disable-job.shortDescription=\u505c\u7528\u4f5c\u696d\u3002 -CLI.enable-job.shortDescription=\u555f\u7528\u4f5c\u696d\u3002 +EnforceSlaveAgentPortAdministrativeMonitor.displayName=強制 TCP Agent 連接埠 +CLI.disable-job.shortDescription=åœç”¨ä½œæ¥­ã€‚ +CLI.enable-job.shortDescription=啟用作業。 -GlobalCloudConfiguration.DisplayName=\u8a2d\u5b9a\u96f2\u7aef +GlobalCloudConfiguration.DisplayName=設定雲端 -BuiltInNodeMigration.DisplayName=\u9077\u79fb\u5167\u5efa\u7bc0\u9ede\u540d\u7a31\u548c\u6a19\u7c64 +BuiltInNodeMigration.DisplayName=é·ç§»å…§å»ºç¯€é»žå稱和標籤 -SimpleGlobalBuildDiscarderStrategy.displayName=\u6307\u5b9a\u5efa\u7f6e\u6368\u68c4\u5668 -JobGlobalBuildDiscarderStrategy.displayName=\u5c08\u6848\u5efa\u7f6e\u6368\u68c4\u5668 +SimpleGlobalBuildDiscarderStrategy.displayName=指定建置æ¨æ£„器 +JobGlobalBuildDiscarderStrategy.displayName=專案建置æ¨æ£„器 diff --git a/core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/config_de.properties b/core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/config_de.properties index d6a30a138a28..69d6bea5fa70 100644 --- a/core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/config_de.properties +++ b/core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/config_de.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -namePattern = Regul\u00E4rer Ausdruck +namePattern = Regulärer Ausdruck description = Beschreibung forceExistingJobs = auf bestehende Jobs anwenden diff --git a/core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/config_it.properties b/core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/config_it.properties index 432c4b42be80..27cb6bec0e3f 100644 --- a/core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/config_it.properties +++ b/core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/config_ja.properties b/core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/config_ja.properties index 544219184f55..1f203cfa4c71 100644 --- a/core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/config_ja.properties +++ b/core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/config_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -namePattern = \u30d1\u30bf\u30fc\u30f3 -forceExistingJobs = \u540d\u79f0\u5909\u66f4\u6642\u306b\u3082\u9069\u7528 +namePattern = パターン +forceExistingJobs = å称変更時ã«ã‚‚é©ç”¨ diff --git a/core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/config_sr.properties b/core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/config_sr.properties index 7afe0fe57481..90399147e2df 100644 --- a/core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/config_sr.properties +++ b/core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/config_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -namePattern=\u0428\u0430\u0431\u043B\u043E\u043D \u0438\u043C\u0435\u043D\u0430 -description=\u041E\u043F\u0438\u0441 -forceExistingJobs=\u0444\u043E\u0440\u0441\u0438\u0440\u0430\u0458 \u043F\u043E\u0441\u0442\u043E\u0458\u0435\u045B\u0435 \u0437\u0430\u0434\u0430\u0442\u043A\u0435 +namePattern=Шаблон имена +description=ÐžÐ¿Ð¸Ñ +forceExistingJobs=форÑирај поÑтојеће задатке diff --git a/core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/config_zh_TW.properties b/core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/config_zh_TW.properties index 0e2a35cf1c1e..358b494ca975 100644 --- a/core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/config_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/config_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -namePattern = \u540d\u7a31\u6a23\u5f0f -description = \u8aaa\u660e -forceExistingJobs = \u6eaf\u53ca\u65e2\u5f80 +namePattern = åç¨±æ¨£å¼ +description = 說明 +forceExistingJobs = 溯åŠæ—¢å¾€ diff --git a/core/src/main/resources/jenkins/model/RenameAction/action_it.properties b/core/src/main/resources/jenkins/model/RenameAction/action_it.properties index f1116ae99f15..1e25984446ae 100644 --- a/core/src/main/resources/jenkins/model/RenameAction/action_it.properties +++ b/core/src/main/resources/jenkins/model/RenameAction/action_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/RenameAction/action_ja.properties b/core/src/main/resources/jenkins/model/RenameAction/action_ja.properties index 6638103cf21b..bb467218c47e 100644 --- a/core/src/main/resources/jenkins/model/RenameAction/action_ja.properties +++ b/core/src/main/resources/jenkins/model/RenameAction/action_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Rename=\u540d\u524d\u306e\u5909\u66f4 +Rename=åå‰ã®å¤‰æ›´ diff --git a/core/src/main/resources/jenkins/model/RenameAction/action_pl.properties b/core/src/main/resources/jenkins/model/RenameAction/action_pl.properties index 50641f4479ba..f6bb99209a78 100644 --- a/core/src/main/resources/jenkins/model/RenameAction/action_pl.properties +++ b/core/src/main/resources/jenkins/model/RenameAction/action_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Rename=Zmie\u0144 nazw\u0119 +Rename=ZmieÅ„ nazwÄ™ diff --git a/core/src/main/resources/jenkins/model/RenameAction/action_zh_TW.properties b/core/src/main/resources/jenkins/model/RenameAction/action_zh_TW.properties index 6799eb5c6690..b55ac3a4e3ab 100644 --- a/core/src/main/resources/jenkins/model/RenameAction/action_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/RenameAction/action_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Rename=\u91cd\u65b0\u547d\u540d +Rename=é‡æ–°å‘½å diff --git a/core/src/main/resources/jenkins/model/RunIdMigrator/UnmigrationInstruction/index.jelly b/core/src/main/resources/jenkins/model/RunIdMigrator/UnmigrationInstruction/index.jelly index 2950f2714537..3da6a4710d39 100644 --- a/core/src/main/resources/jenkins/model/RunIdMigrator/UnmigrationInstruction/index.jelly +++ b/core/src/main/resources/jenkins/model/RunIdMigrator/UnmigrationInstruction/index.jelly @@ -38,7 +38,7 @@ THE SOFTWARE. - + diff --git a/core/src/main/resources/jenkins/model/RunIdMigrator/UnmigrationInstruction/index_bg.properties b/core/src/main/resources/jenkins/model/RunIdMigrator/UnmigrationInstruction/index_bg.properties index ac1e83ceaee8..52baaa4527fd 100644 --- a/core/src/main/resources/jenkins/model/RunIdMigrator/UnmigrationInstruction/index_bg.properties +++ b/core/src/main/resources/jenkins/model/RunIdMigrator/UnmigrationInstruction/index_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Copied=\ - \u041a\u043e\u043f\u0438\u0440\u0430\u043d\u043e + Копирано diff --git a/core/src/main/resources/jenkins/model/RunIdMigrator/UnmigrationInstruction/index_it.properties b/core/src/main/resources/jenkins/model/RunIdMigrator/UnmigrationInstruction/index_it.properties index 075a5be80a8f..d6d0da07d702 100644 --- a/core/src/main/resources/jenkins/model/RunIdMigrator/UnmigrationInstruction/index_it.properties +++ b/core/src/main/resources/jenkins/model/RunIdMigrator/UnmigrationInstruction/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/RunIdMigrator/UnmigrationInstruction/index_sr.properties b/core/src/main/resources/jenkins/model/RunIdMigrator/UnmigrationInstruction/index_sr.properties index 54c6d6564808..f89781ef9343 100644 --- a/core/src/main/resources/jenkins/model/RunIdMigrator/UnmigrationInstruction/index_sr.properties +++ b/core/src/main/resources/jenkins/model/RunIdMigrator/UnmigrationInstruction/index_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Copied=\u0418\u0441\u043A\u043E\u043F\u0438\u0440\u0430\u043D\u043E +Copied=ИÑкопирано diff --git a/core/src/main/resources/jenkins/model/RunIdMigrator/UnmigrationInstruction/index_zh_TW.properties b/core/src/main/resources/jenkins/model/RunIdMigrator/UnmigrationInstruction/index_zh_TW.properties index 17476491df5b..cc520866afef 100644 --- a/core/src/main/resources/jenkins/model/RunIdMigrator/UnmigrationInstruction/index_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/RunIdMigrator/UnmigrationInstruction/index_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Copied=\u5df2\u8907\u88fd +Copied=已複製 diff --git a/core/src/main/resources/jenkins/model/SimpleGlobalBuildDiscarderStrategy/config_it.properties b/core/src/main/resources/jenkins/model/SimpleGlobalBuildDiscarderStrategy/config_it.properties index 74b636fb625d..088dbb64cf9b 100644 --- a/core/src/main/resources/jenkins/model/SimpleGlobalBuildDiscarderStrategy/config_it.properties +++ b/core/src/main/resources/jenkins/model/SimpleGlobalBuildDiscarderStrategy/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,6 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Il componente di rimozione delle compilazioni selezionato sarà \ - applicato al termine delle compilazioni, nonché periodicamente. +blurb=Il componente di rimozione delle compilazioni selezionato sarà \ + applicato al termine delle compilazioni, nonché periodicamente. Strategy=Strategia diff --git a/core/src/main/resources/jenkins/model/SimpleGlobalBuildDiscarderStrategy/config_pt_BR.properties b/core/src/main/resources/jenkins/model/SimpleGlobalBuildDiscarderStrategy/config_pt_BR.properties index fdf9dd69e455..97730ed3db50 100644 --- a/core/src/main/resources/jenkins/model/SimpleGlobalBuildDiscarderStrategy/config_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/SimpleGlobalBuildDiscarderStrategy/config_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Strategy=Estrat\u00E9gia -blurb=O descartador de constru\u00E7\u00E3o ser\u00E1 aplicado depois que cada constru\u00E7\u00E3o terminar, assim como periodicamente. +Strategy=Estratégia +blurb=O descartador de construção será aplicado depois que cada construção terminar, assim como periodicamente. diff --git a/core/src/main/resources/jenkins/model/SimpleGlobalBuildDiscarderStrategy/config_zh_TW.properties b/core/src/main/resources/jenkins/model/SimpleGlobalBuildDiscarderStrategy/config_zh_TW.properties index 03bcd1eb202d..a4ed9c848a76 100644 --- a/core/src/main/resources/jenkins/model/SimpleGlobalBuildDiscarderStrategy/config_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/SimpleGlobalBuildDiscarderStrategy/config_zh_TW.properties @@ -1,2 +1,2 @@ -blurb=\u9078\u53d6\u7684\u5efa\u7f6e\u6368\u68c4\u5668\u6703\u5728\u6bcf\u6b21\u5efa\u7f6e\u5b8c\u6210\u5f8c\u57f7\u884c\u3001\u4e5f\u6703\u5b9a\u671f\u57f7\u884c\u3002 -Strategy=\u7b56\u7565 +blurb=é¸å–的建置æ¨æ£„器會在æ¯æ¬¡å»ºç½®å®Œæˆå¾ŒåŸ·è¡Œã€ä¹Ÿæœƒå®šæœŸåŸ·è¡Œã€‚ +Strategy=ç­–ç•¥ diff --git a/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_bg.properties b/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_bg.properties index 0dce3bcc38b5..3a90f3bd67b1 100644 --- a/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_bg.properties +++ b/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_bg.properties @@ -24,14 +24,14 @@ # The public key is published in the X-Instance-Identity header for web requests against the Jenkins UI. \ # You can also find the key and the fingerprint of the key on this page. blurb=\ - \u0412\u0441\u044f\u043a\u0430 \u0438\u043d\u0441\u0442\u0430\u043b\u0430\u0446\u0438\u044f \u043d\u0430 Jenkins \u0438\u043c\u0430 \u0434\u0432\u043e\u0439\u043a\u0430 \u043f\u0443\u0431\u043b\u0438\u0447\u0435\u043d \u0438 \u0447\u0430\u0441\u0442\u0435\u043d \u043a\u043b\u044e\u0447, \u043a\u043e\u0438\u0442\u043e \u0441\u0430\ - \u0443\u043d\u0438\u043a\u0430\u043b\u043d\u0438 \u0438 \u0441\u043b\u0443\u0436\u0430\u0442 \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f. \u041f\u0443\u0431\u043b\u0438\u0447\u043d\u0438\u044f\u0442 \u043a\u043b\u044e\u0447 \u0441\u0435 \u0438\u0437\u0432\u0435\u0436\u0434\u0430 \u0432 \u0437\u0430\u0433\u043b\u0430\u0432\u043d\u0430\u0442\u0430\ - \u0447\u0430\u0441\u0442 X-Instance-Identity \u043d\u0430 \u043e\u0442\u0433\u043e\u0432\u043e\u0440\u0430 \u043a\u044a\u043c \u0432\u0441\u044f\u043a\u0430 \u0437\u0430\u044f\u0432\u043a\u0430 \u043a\u044a\u043c \u0443\u0435\u0431\ - \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 \u043d\u0430 Jenkins. \u041a\u043b\u044e\u0447\u044a\u0442 \u0438 \u043d\u0435\u0433\u043e\u0432\u0438\u044f\u0442 \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u044a\u043a \u0441\u0430 \u0434\u0430\u0434\u0435\u043d\u0438 \u0438 \u043d\u0430 \u0442\u0435\u043a\u0443\u0449\u0430\u0442\u0430 \u0443\u0435\u0431\ - \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430. + Ð’ÑÑка инÑÑ‚Ð°Ð»Ð°Ñ†Ð¸Ñ Ð½Ð° Jenkins има двойка публичен и чаÑтен ключ, които Ñа\ + уникални и Ñлужат за идентификациÑ. ПубличниÑÑ‚ ключ Ñе извежда в заглавната\ + чаÑÑ‚ X-Instance-Identity на отговора към вÑÑка заÑвка към уеб\ + интерфейÑа на Jenkins. Ключът и неговиÑÑ‚ отпечатък Ñа дадени и на текущата уеб\ + Ñтраница. Public\ Key=\ - \u041f\u0443\u0431\u043b\u0438\u0447\u0435\u043d \u043a\u043b\u044e\u0447 + Публичен ключ Fingerprint=\ - \u041e\u0442\u043f\u0435\u0447\u0430\u0442\u044a\u043a + Отпечатък Instance\ Identity=\ - \u0418\u0434\u0435\u043d\u0442\u0438\u0447\u043d\u043e\u0441\u0442 \u043d\u0430 Jenkins + ИдентичноÑÑ‚ на Jenkins diff --git a/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_de.properties b/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_de.properties index 5d4c8fd9f81f..d3e5bcd0b8e6 100644 --- a/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_de.properties +++ b/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_de.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Fingerprint=Fingerabdruck -Public\ Key=\u00D6ffentlicher Schl\u00FCssel -blurb=Jede Jenkins-Instanz hat ein Schl\u00FCsselpaar, das diese Instanz identifiziert. \ - Der \u00F6ffentliche Schl\u00FCssel wird \u00FCber den HTTP-Header X-Instance-Identity in Antworten durch die Jenkins-Oberfl\u00E4che bereitgestellt. \ - Dieser Schl\u00FCssel und sein Fingerabdruck sind auch unten zu finden. -Instance\ Identity=Instanz-Identit\u00E4t +Public\ Key=Öffentlicher Schlüssel +blurb=Jede Jenkins-Instanz hat ein Schlüsselpaar, das diese Instanz identifiziert. \ + Der öffentliche Schlüssel wird über den HTTP-Header X-Instance-Identity in Antworten durch die Jenkins-Oberfläche bereitgestellt. \ + Dieser Schlüssel und sein Fingerabdruck sind auch unten zu finden. +Instance\ Identity=Instanz-Identität diff --git a/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_it.properties b/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_it.properties index e61eede94a11..2d9fb21ff0c6 100644 --- a/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_it.properties +++ b/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -23,10 +23,10 @@ blurb=Ogni istanza di Jenkins ha una coppia di chiavi pubblica e privata \ utilizzate per identificare univocamente tale istanza di Jenkins. La chiave \ - pubblica è pubblicata nell''intestazione X-Instance-Identity \ + pubblica è pubblicata nell''intestazione X-Instance-Identity \ presente nelle richieste Web effettuate all''interfaccia utente di Jenkins. \ - È inoltre possibile trovare la chiave e la sua impronta digitale su questa \ + È inoltre possibile trovare la chiave e la sua impronta digitale su questa \ pagina. Fingerprint=Impronta digitale -Instance\ Identity=Identità istanza +Instance\ Identity=Identità istanza Public\ Key=Chiave pubblica diff --git a/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_pt_BR.properties b/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_pt_BR.properties index 791630b82f2b..b3553c58e939 100644 --- a/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_pt_BR.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Public\ Key=Chave p\u00FAblica -Instance\ Identity=Inst\u00E2ncia de identidade +Public\ Key=Chave pública +Instance\ Identity=Instância de identidade Fingerprint=Assinaturas -blurb=Toda inst\u00E2ncia do Jenkins tem um par de chaves p\u00FAblica e privada utilizadas para identificar de forma un\u00EDvoca a mesma. \ -A chave p\u00FAblica \u00E9 publicada no cabe\u00E7alho X-Instance-Identity para requisi\u00E7\u00F5es web para a interface de usu\u00E1rio do Jenkins. \ -Voc\u00EA pode achar a chave e a assinatura da chave nesta p\u00E1gina. +blurb=Toda instância do Jenkins tem um par de chaves pública e privada utilizadas para identificar de forma unívoca a mesma. \ +A chave pública é publicada no cabeçalho X-Instance-Identity para requisições web para a interface de usuário do Jenkins. \ +Você pode achar a chave e a assinatura da chave nesta página. diff --git a/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_sr.properties b/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_sr.properties index 58733a6ee4db..79cdeee97196 100644 --- a/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_sr.properties +++ b/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_sr.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Instance\ Identity=\u0418\u0434\u0435\u043D\u0442\u0438\u0442\u0435\u0442 \u0438\u043D\u0441\u0442\u0430\u043D\u0446\u0435 -blurb=\u0421\u0432\u0430\u043A\u0430 \u0438\u043D\u0441\u0442\u0430\u043D\u0446\u0430 Jenkins-\u0430 \u0438\u043C\u0430 \u043F\u0430\u0440 \u043E\u0434 \u0458\u0430\u0432\u043D\u0435 \u0438 \u043F\u0440\u0438\u0432\u0430\u0442\u043D\u0435 \u043A\u0459\u0443\u0447\u0435\u0432\u0435 \u043A\u043E\u0458\u0435 \u0438\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0443\u0458\u0443 \u0442\u0443 \u043C\u0430\u0448\u0438\u043D\u0443. \ - \u0408\u0430\u0432\u043D\u0438 \u043A\u0459\u0443\u0447 \u0441\u0435 \u043F\u0440\u0438\u043A\u0430\u0437\u0443\u0458\u0435 X-Instance-Identity header \u043D\u0430 \u0432\u0435\u0431-\u0437\u0430\u0445\u0442\u0435\u0432\u0438\u043C\u0430 \u043F\u0440\u0435\u043C\u0430 Jenkins UI.\ - \u041C\u043E\u0436\u0435 \u0441\u0435 \u0438\u0441\u0442\u043E \u043D\u0430\u045B\u0438 \u043A\u0459\u0443\u0447 \u0438 \u0434\u0438\u0433\u0438\u0442\u0430\u043B\u0430\u043D \u043E\u0442\u0438\u0441\u0430\u043A \u043A\u0459\u0443\u0447\u0430 \u043D\u0430 \u043E\u0432\u043E\u0458 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0438. -Public\ Key=\u0408\u0430\u0432\u043D\u0438 \u043A\u0459\u0443\u0447 -Fingerprint=\u0414\u0438\u0433\u0438\u0442\u0430\u043B\u043D\u0438 \u043E\u0442\u0438\u0441\u0430\u043A +Instance\ Identity=Идентитет инÑтанце +blurb=Свака инÑтанца Jenkins-а има пар од јавне и приватне кључеве које идентификују ту машину. \ + Јавни кључ Ñе приказује X-Instance-Identity header на веб-захтевима према Jenkins UI.\ + Може Ñе иÑто наћи кључ и дигиталан отиÑак кључа на овој Ñтраници. +Public\ Key=Јавни кључ +Fingerprint=Дигитални отиÑак diff --git a/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_zh_TW.properties b/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_zh_TW.properties index 88492fe29bc9..3938bbe7b482 100644 --- a/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/identity/IdentityRootAction/index_zh_TW.properties @@ -1,4 +1,4 @@ -blurb=\u6bcf\u500b Jenkins \u57f7\u884c\u500b\u9ad4\u90fd\u6709\u4e00\u5c0d\u7528\u4f86\u8b58\u5225\u5b83\u7684\u7368\u7279\u516c\u9470\u548c\u79c1\u9470\u3002\u516c\u9470\u6703\u88ab\u653e\u5728 Jenkins UI \u7684 X-Instance-Identity \u6a19\u982d\u3002\u60a8\u4e5f\u53ef\u4ee5\u5728\u6b64\u9801\u9762\u4e0a\u627e\u5230\u8a72\u91d1\u9470\u548c\u5b83\u7684\u6307\u7d0b\u3002 -Fingerprint=\u6307\u7d0b -Public\ Key=\u516c\u958b\u91d1\u9470 -Instance\ Identity=\u57f7\u884c\u500b\u9ad4\u8b58\u5225 +blurb=æ¯å€‹ Jenkins 執行個體都有一å°ç”¨ä¾†è­˜åˆ¥å®ƒçš„ç¨ç‰¹å…¬é‘°å’Œç§é‘°ã€‚公鑰會被放在 Jenkins UI çš„ X-Instance-Identity 標頭。您也å¯ä»¥åœ¨æ­¤é é¢ä¸Šæ‰¾åˆ°è©²é‡‘鑰和它的指紋。 +Fingerprint=指紋 +Public\ Key=公開金鑰 +Instance\ Identity=執行個體識別 diff --git a/core/src/main/resources/jenkins/model/item_category/Messages_bg.properties b/core/src/main/resources/jenkins/model/item_category/Messages_bg.properties index 15af22fd7051..ec9d8cff9c73 100644 --- a/core/src/main/resources/jenkins/model/item_category/Messages_bg.properties +++ b/core/src/main/resources/jenkins/model/item_category/Messages_bg.properties @@ -22,21 +22,21 @@ # Create projects with a self-contained configuration and history. These projects can be at the top-level or grouped within folders. StandaloneProjects.Description=\ - \u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442 \u0441 \u043e\u0442\u0434\u0435\u043b\u043d\u0430 \u0438\u0441\u0442\u043e\u0440\u0438\u044f \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438. \u0422\u0435\u0437\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0438 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442\ - \u043d\u0430 \u043d\u0430\u0439-\u0433\u043e\u0440\u043d\u043e \u043d\u0438\u0432\u043e \u0438\u043b\u0438 \u0434\u0430 \u0441\u0430 \u0433\u0440\u0443\u043f\u0438\u0440\u0430\u043d\u0438 \u043f\u043e \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u0438. + Създаване на проект Ñ Ð¾Ñ‚Ð´ÐµÐ»Ð½Ð° иÑÑ‚Ð¾Ñ€Ð¸Ñ Ð¸ наÑтройки. Тези проекти могат да бъдат\ + на най-горно ниво или да Ñа групирани по директории. # Uncategorized Uncategorized.DisplayName=\ - \u0411\u0435\u0437 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f + Без ÐºÐ°Ñ‚ÐµÐ³Ð¾Ñ€Ð¸Ñ # Standalone Projects StandaloneProjects.DisplayName=\ - \u0421\u0430\u043c\u043e\u0441\u0442\u043e\u044f\u0442\u0435\u043b\u043d\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0438 + СамоÑтоÑтелни проекти # Nested Projects NestedProjects.DisplayName=\ - \u041f\u043e\u0434\u043f\u0440\u043e\u0435\u043a\u0442\u0438 + Подпроекти # Item types that have not yet been categorized by their plugin maintainer. Uncategorized.Description=\ - \u041f\u0440\u043e\u0435\u043a\u0442\u0438, \u043a\u043e\u0438\u0442\u043e \u043d\u0435 \u0441\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u043e\u0442 \u0441\u044a\u0437\u0434\u0430\u0442\u0435\u043b\u044f \u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430\u0442\u0430 \u0438\u043c. + Проекти, които не Ñа категоризирани от ÑÑŠÐ·Ð´Ð°Ñ‚ÐµÐ»Ñ Ð½Ð° приÑтавката им. # Create project categories or project hierarchies with folders. Folders can be created manually or automatically based on repositories. NestedProjects.Description=\ - \u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0438\u043b\u0438 \u0439\u0435\u0440\u0430\u0440\u0445\u0438\u044f \u043e\u0442 \u043f\u0430\u043f\u043a\u0438. \u041f\u0430\u043f\u043a\u0438\u0442\u0435 \u0441\u0435 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u0442 \u0440\u044a\u0447\u043d\u043e \u0438\u043b\u0438\ - \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0441\u043f\u043e\u0440\u0435\u0434 \u043f\u043e\u0434\u0440\u0435\u0434\u0431\u0430\u0442\u0430 \u043d\u0430 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435\u0442\u0430 \u0437\u0430 \u043a\u043e\u0434. + Създаване на категории или Ð¹ÐµÑ€Ð°Ñ€Ñ…Ð¸Ñ Ð¾Ñ‚ папки. Папките Ñе Ñъздават ръчно или\ + автоматично Ñпоред подредбата на хранилищета за код. diff --git a/core/src/main/resources/jenkins/model/item_category/Messages_de.properties b/core/src/main/resources/jenkins/model/item_category/Messages_de.properties index ab664bd15d8e..a5ad6965a621 100644 --- a/core/src/main/resources/jenkins/model/item_category/Messages_de.properties +++ b/core/src/main/resources/jenkins/model/item_category/Messages_de.properties @@ -23,6 +23,6 @@ Uncategorized.Description=Element-Typen die noch nicht einer Kategorie zugewiesen wurden. NestedProjects.DisplayName=Hierarchische Projekte StandaloneProjects.Description=Projekte mit in sich geschlossener Konfiguration und Build-Verlauf erstellen. -NestedProjects.Description=Projekt-Kategorien oder -Hierarchien erstellen. Ordner k\u00F6nnen je nach Implementierung manuell oder automatisch erzeugt werden. +NestedProjects.Description=Projekt-Kategorien oder -Hierarchien erstellen. Ordner können je nach Implementierung manuell oder automatisch erzeugt werden. Uncategorized.DisplayName=Unkategorisiert -StandaloneProjects.DisplayName=Eigenst\u00E4ndige Projekte +StandaloneProjects.DisplayName=Eigenständige Projekte diff --git a/core/src/main/resources/jenkins/model/item_category/Messages_it.properties b/core/src/main/resources/jenkins/model/item_category/Messages_it.properties index 6002a3fe678f..e83067c8f635 100644 --- a/core/src/main/resources/jenkins/model/item_category/Messages_it.properties +++ b/core/src/main/resources/jenkins/model/item_category/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/model/item_category/Messages_pt_BR.properties b/core/src/main/resources/jenkins/model/item_category/Messages_pt_BR.properties index 478321cfef92..dccf3e07d4be 100644 --- a/core/src/main/resources/jenkins/model/item_category/Messages_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/item_category/Messages_pt_BR.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Uncategorized.DisplayName=N\u00E3o categorizado -Uncategorized.Description=Tipos de \u00EDtens que ainda n\u00E3o foram categorizados pelo mantenedor da extens\u00E3o. +Uncategorized.DisplayName=Não categorizado +Uncategorized.Description=Tipos de ítens que ainda não foram categorizados pelo mantenedor da extensão. NestedProjects.DisplayName=Projetos aninhados -StandaloneProjects.Description=Cria projetos com uma configura\u00E7\u00E3o e hist\u00F3rico auto-contidos. Estes projetos pode estar no n\u00EDvel do topo ou agrupdo em pastas. -NestedProjects.Description=Criar categorias ou hierarquias de projetos com pastas. Pastas podem ser criadas manualmente ou automaticamente baseadas em reposit\u00F3rios. -StandaloneProjects.DisplayName=Projeto aut\u00F4nomo +StandaloneProjects.Description=Cria projetos com uma configuração e histórico auto-contidos. Estes projetos pode estar no nível do topo ou agrupdo em pastas. +NestedProjects.Description=Criar categorias ou hierarquias de projetos com pastas. Pastas podem ser criadas manualmente ou automaticamente baseadas em repositórios. +StandaloneProjects.DisplayName=Projeto autônomo diff --git a/core/src/main/resources/jenkins/model/item_category/Messages_sr.properties b/core/src/main/resources/jenkins/model/item_category/Messages_sr.properties index 78be22c9781c..bf904519777c 100644 --- a/core/src/main/resources/jenkins/model/item_category/Messages_sr.properties +++ b/core/src/main/resources/jenkins/model/item_category/Messages_sr.properties @@ -1,8 +1,8 @@ # This file is under the MIT License by authors -Uncategorized.DisplayName=\u041D\u0435\u043A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u0441\u0430\u043D\u043E -Uncategorized.Description=\u0412\u0440\u0441\u0442\u0435 \u0441\u0442\u0430\u0432\u043A\u0430 \u043A\u043E\u0458\u0435 \u043D\u0438\u0441\u0443 \u043A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u0441\u0430\u043D\u0438 \u043E\u0434 \u0441\u0442\u0440\u0430\u043D\u0435 \u043E\u0434\u0440\u0436\u0438\u0432\u0430\u0447\u0430 \u043C\u043E\u0434\u0443\u043B\u0435. -StandaloneProjects.DisplayName=\u0421\u0430\u043C\u043E\u0441\u0442\u0430\u043B\u043D\u0438 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0438 -StandaloneProjects.Description=\u041A\u0440\u0435\u0438\u0440\u0430\u0458\u0442\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0435 \u0441\u0430 \u0441\u0430\u043C\u043E\u0441\u0442\u0430\u043B\u043D\u0438\u043C \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0430\u043C\u0430 \u0438 \u0438\u0441\u0442\u043E\u0440\u0438\u0458\u043E\u043C. \u041E\u0432\u0430\u043A\u0432\u0438 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0438 \u043C\u043E\u0433\u0443 \u0431\u0438\u0442\u0438 \u043D\u0430 \u043D\u0430\u0458\u0432\u0438\u0448\u0435\u043C \u043D\u0438\u0432\u043E\u0443 \u0438\u043B\u0438 \u0433\u0440\u0443\u043F\u0438\u0441\u0430\u043D\u0438 \u0444\u043E\u043B\u0434\u0435\u0440\u0438\u043C\u0430. -NestedProjects.DisplayName=\u041F\u043E\u0434\u0440\u0435\u0452\u0435\u043D\u0438 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0438 -NestedProjects.Description=\u041A\u0440\u0435\u0438\u0440\u0430\u0458\u0442\u0435 \u043A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u0458\u0435 \u0438\u043B\u0438 \u0445\u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0458\u0435 \u043F\u043E\u043C\u043E\u045B\u0443 \u0444\u043E\u043B\u0434\u0435\u0440\u0438\u043C\u0430, \u043A\u043E\u0458\u0438 \u043C\u043E\u0433\u0443 \u0431\u0438\u0442\u0438 \u0440\u0443\u0447\u043D\u043E \u0438\u043B\u0438 \u0430\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u043E \u043A\u0440\u0435\u0438\u0440\u0430\u043D\u0438 \u043F\u0440\u0435\u043C\u0430 \u0441\u0430\u0447\u0443\u0432\u0430\u043D\u0438\u043C. +Uncategorized.DisplayName=ÐекатегориÑано +Uncategorized.Description=Ð’Ñ€Ñте Ñтавка које ниÑу категориÑани од Ñтране одрживача модуле. +StandaloneProjects.DisplayName=СамоÑтални пројекти +StandaloneProjects.Description=Креирајте пројекте Ñа ÑамоÑталним поÑтавкама и иÑторијом. Овакви пројекти могу бити на највишем нивоу или групиÑани фолдерима. +NestedProjects.DisplayName=Подређени пројекти +NestedProjects.Description=Креирајте категорије или хиерархије помоћу фолдерима, који могу бити ручно или аутоматÑко креирани према Ñачуваним. diff --git a/core/src/main/resources/jenkins/model/item_category/Messages_zh_TW.properties b/core/src/main/resources/jenkins/model/item_category/Messages_zh_TW.properties index 666be05fdec9..f96be241a60b 100644 --- a/core/src/main/resources/jenkins/model/item_category/Messages_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/item_category/Messages_zh_TW.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Uncategorized.DisplayName=\u672a\u5206\u985e -Uncategorized.Description=\u5916\u639b\u7dad\u8b77\u8005\u9084\u6c92\u6709\u5c07\u5b83\u5206\u985e\u3002 -StandaloneProjects.DisplayName=\u7368\u7acb\u5c08\u6848 -StandaloneProjects.Description=\u5efa\u7acb\u64c1\u6709\u81ea\u5df1\u7d44\u614b\u548c\u6b77\u7a0b\u7684\u5c08\u6848\u3002\u9019\u7a2e\u5c08\u6848\u53ef\u4f4d\u65bc\u8cc7\u6599\u593e\u7684\u6700\u4e0a\u5c64\u6216\u6574\u7406\u65bc\u8cc7\u6599\u593e\u4e2d\u3002 -NestedProjects.DisplayName=\u5de2\u72c0\u5c08\u6848 -NestedProjects.Description=\u5efa\u7acb\u5c08\u6848\u985e\u5225\u6216\u6709\u5305\u542b\u8cc7\u6599\u593e\u7d50\u69cb\u7684\u5c08\u6848\u3002\u8cc7\u6599\u593e\u53ef\u624b\u52d5\u6216\u81ea\u52d5\u57fa\u65bc\u5132\u5b58\u5eab\u5efa\u7acb\u3002 +Uncategorized.DisplayName=未分類 +Uncategorized.Description=外掛維護者還沒有將它分類。 +StandaloneProjects.DisplayName=ç¨ç«‹å°ˆæ¡ˆ +StandaloneProjects.Description=建立æ“有自己組態和歷程的專案。這種專案å¯ä½æ–¼è³‡æ–™å¤¾çš„最上層或整ç†æ–¼è³‡æ–™å¤¾ä¸­ã€‚ +NestedProjects.DisplayName=巢狀專案 +NestedProjects.Description=建立專案類別或有包å«è³‡æ–™å¤¾çµæ§‹çš„專案。資料夾å¯æ‰‹å‹•æˆ–自動基於儲存庫建立。 diff --git a/core/src/main/resources/jenkins/monitor/JavaVersionRecommendationAdminMonitor/description_pt_BR.properties b/core/src/main/resources/jenkins/monitor/JavaVersionRecommendationAdminMonitor/description_pt_BR.properties index 547fd8d7c1c5..1a1e3f070d5a 100644 --- a/core/src/main/resources/jenkins/monitor/JavaVersionRecommendationAdminMonitor/description_pt_BR.properties +++ b/core/src/main/resources/jenkins/monitor/JavaVersionRecommendationAdminMonitor/description_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Recomenda o Java 11 para executar o Jenkins se uma vers\u00E3o anterior est\u00E1 em uso. +blurb=Recomenda o Java 11 para executar o Jenkins se uma versão anterior está em uso. diff --git a/core/src/main/resources/jenkins/monitor/JavaVersionRecommendationAdminMonitor/description_zh_TW.properties b/core/src/main/resources/jenkins/monitor/JavaVersionRecommendationAdminMonitor/description_zh_TW.properties index 1e7223e3f4c3..2ed16e322ce4 100644 --- a/core/src/main/resources/jenkins/monitor/JavaVersionRecommendationAdminMonitor/description_zh_TW.properties +++ b/core/src/main/resources/jenkins/monitor/JavaVersionRecommendationAdminMonitor/description_zh_TW.properties @@ -1 +1 @@ -blurb=\u82e5\u60a8\u4f7f\u7528\u7684 Java \u7248\u672c\u4f4e\u65bc 11\uff0c\u63a8\u85a6\u60a8\u6539\u7528 Java 11 \u4f86\u57f7\u884c Jenkins\u3002 +blurb=若您使用的 Java 版本低於 11,推薦您改用 Java 11 來執行 Jenkins。 diff --git a/core/src/main/resources/jenkins/monitor/JavaVersionRecommendationAdminMonitor/message_pt_BR.properties b/core/src/main/resources/jenkins/monitor/JavaVersionRecommendationAdminMonitor/message_pt_BR.properties index cd2ea1228c1f..25c54f9c654a 100644 --- a/core/src/main/resources/jenkins/monitor/JavaVersionRecommendationAdminMonitor/message_pt_BR.properties +++ b/core/src/main/resources/jenkins/monitor/JavaVersionRecommendationAdminMonitor/message_pt_BR.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -More\ Info=Mais informa\u00E7\u00E3o +More\ Info=Mais informação Dismiss=Dispensar -Recommended_Java_Version=

Voc\u00EA est\u00E1 executando o Jenkins com o Java {0}, cujo \ - suporte ser\u00E1 encerrado em 21 de junho de 2022. Isto \u00E9 antes do que a data previamente anunciada.

\ -

A linha de suporte de longo per\u00EDodo (LTS) do Jenkins continuar\u00E1 a suportar esta \ - vers\u00E3o at\u00E9 setembro de 2022.

Por favor se refira a \ +Recommended_Java_Version=

Você está executando o Jenkins com o Java {0}, cujo \ + suporte será encerrado em 21 de junho de 2022. Isto é antes do que a data previamente anunciada.

\ +

A linha de suporte de longo período (LTS) do Jenkins continuará a suportar esta \ + versão até setembro de 2022.

Por favor se refira a \ \ - a documenta\u00E7\u00E3o para maiores detalhes sobre atualizar para o Java vers\u00E3o 11.

+ a documentação para maiores detalhes sobre atualizar para o Java versão 11.

Recommended_Java_Version_Heading=Fim de suporte ao Java {0} pelo Jenkins diff --git a/core/src/main/resources/jenkins/monitor/JavaVersionRecommendationAdminMonitor/message_ru.properties b/core/src/main/resources/jenkins/monitor/JavaVersionRecommendationAdminMonitor/message_ru.properties index 527a256d2e89..0759f08b675f 100644 --- a/core/src/main/resources/jenkins/monitor/JavaVersionRecommendationAdminMonitor/message_ru.properties +++ b/core/src/main/resources/jenkins/monitor/JavaVersionRecommendationAdminMonitor/message_ru.properties @@ -1,2 +1,2 @@ -More\ Info=\u041F\u043E\u0434\u0440\u043E\u0431\u043D\u0435\u0435 -Dismiss=\u0423\u0431\u0440\u0430\u0442\u044C +More\ Info=Подробнее +Dismiss=Убрать diff --git a/core/src/main/resources/jenkins/monitor/JavaVersionRecommendationAdminMonitor/message_zh_TW.properties b/core/src/main/resources/jenkins/monitor/JavaVersionRecommendationAdminMonitor/message_zh_TW.properties index be5859fd3440..baac090b0e82 100644 --- a/core/src/main/resources/jenkins/monitor/JavaVersionRecommendationAdminMonitor/message_zh_TW.properties +++ b/core/src/main/resources/jenkins/monitor/JavaVersionRecommendationAdminMonitor/message_zh_TW.properties @@ -1,2 +1,2 @@ -Dismiss=\u4e0d\u7ba1 -More\ Info=\u66f4\u591a\u8cc7\u8a0a +Dismiss=ä¸ç®¡ +More\ Info=更多資訊 diff --git a/core/src/main/resources/jenkins/monitor/Messages_pt_BR.properties b/core/src/main/resources/jenkins/monitor/Messages_pt_BR.properties index c77f954417ca..bd50ad686f16 100644 --- a/core/src/main/resources/jenkins/monitor/Messages_pt_BR.properties +++ b/core/src/main/resources/jenkins/monitor/Messages_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -JavaLevelAdminMonitor.DisplayName=Vers\u00E3o recomendada do Java +JavaLevelAdminMonitor.DisplayName=Versão recomendada do Java diff --git a/core/src/main/resources/jenkins/monitor/Messages_zh_TW.properties b/core/src/main/resources/jenkins/monitor/Messages_zh_TW.properties index 5667c44abffb..323325781448 100644 --- a/core/src/main/resources/jenkins/monitor/Messages_zh_TW.properties +++ b/core/src/main/resources/jenkins/monitor/Messages_zh_TW.properties @@ -1 +1 @@ -JavaLevelAdminMonitor.DisplayName=\u63a8\u85a6\u7684 Java \u7248\u672c +JavaLevelAdminMonitor.DisplayName=推薦的 Java 版本 diff --git a/core/src/main/resources/jenkins/mvn/FilePathGlobalSettingsProvider/config_bg.properties b/core/src/main/resources/jenkins/mvn/FilePathGlobalSettingsProvider/config_bg.properties index d9b80a4d5856..2e6d3390d03d 100644 --- a/core/src/main/resources/jenkins/mvn/FilePathGlobalSettingsProvider/config_bg.properties +++ b/core/src/main/resources/jenkins/mvn/FilePathGlobalSettingsProvider/config_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. File\ path=\ - \u041f\u044a\u0442 \u043a\u044a\u043c \u0444\u0430\u0439\u043b\u0430 + Път към файла diff --git a/core/src/main/resources/jenkins/mvn/FilePathGlobalSettingsProvider/config_it.properties b/core/src/main/resources/jenkins/mvn/FilePathGlobalSettingsProvider/config_it.properties index 52ed935b9510..64e5c4b0cfeb 100644 --- a/core/src/main/resources/jenkins/mvn/FilePathGlobalSettingsProvider/config_it.properties +++ b/core/src/main/resources/jenkins/mvn/FilePathGlobalSettingsProvider/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/mvn/FilePathGlobalSettingsProvider/config_ja.properties b/core/src/main/resources/jenkins/mvn/FilePathGlobalSettingsProvider/config_ja.properties index 7b415721fe08..d4816969ef6f 100644 --- a/core/src/main/resources/jenkins/mvn/FilePathGlobalSettingsProvider/config_ja.properties +++ b/core/src/main/resources/jenkins/mvn/FilePathGlobalSettingsProvider/config_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -File\ path=\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9 +File\ path=ファイルパス diff --git a/core/src/main/resources/jenkins/mvn/FilePathGlobalSettingsProvider/config_sr.properties b/core/src/main/resources/jenkins/mvn/FilePathGlobalSettingsProvider/config_sr.properties index 79580f19b164..00e4189be2b7 100644 --- a/core/src/main/resources/jenkins/mvn/FilePathGlobalSettingsProvider/config_sr.properties +++ b/core/src/main/resources/jenkins/mvn/FilePathGlobalSettingsProvider/config_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -File\ path=\u041F\u0443\u0442 \u0434\u043E \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435 +File\ path=Пут до датотеке diff --git a/core/src/main/resources/jenkins/mvn/FilePathGlobalSettingsProvider/config_zh_TW.properties b/core/src/main/resources/jenkins/mvn/FilePathGlobalSettingsProvider/config_zh_TW.properties index c8db1d67154e..abd9e1bf20f7 100644 --- a/core/src/main/resources/jenkins/mvn/FilePathGlobalSettingsProvider/config_zh_TW.properties +++ b/core/src/main/resources/jenkins/mvn/FilePathGlobalSettingsProvider/config_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -File\ path=\u6a94\u6848\u8def\u5f91 +File\ path=檔案路徑 diff --git a/core/src/main/resources/jenkins/mvn/FilePathSettingsProvider/config_bg.properties b/core/src/main/resources/jenkins/mvn/FilePathSettingsProvider/config_bg.properties index d9b80a4d5856..2e6d3390d03d 100644 --- a/core/src/main/resources/jenkins/mvn/FilePathSettingsProvider/config_bg.properties +++ b/core/src/main/resources/jenkins/mvn/FilePathSettingsProvider/config_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. File\ path=\ - \u041f\u044a\u0442 \u043a\u044a\u043c \u0444\u0430\u0439\u043b\u0430 + Път към файла diff --git a/core/src/main/resources/jenkins/mvn/FilePathSettingsProvider/config_it.properties b/core/src/main/resources/jenkins/mvn/FilePathSettingsProvider/config_it.properties index 52ed935b9510..64e5c4b0cfeb 100644 --- a/core/src/main/resources/jenkins/mvn/FilePathSettingsProvider/config_it.properties +++ b/core/src/main/resources/jenkins/mvn/FilePathSettingsProvider/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/mvn/FilePathSettingsProvider/config_ja.properties b/core/src/main/resources/jenkins/mvn/FilePathSettingsProvider/config_ja.properties index 7b415721fe08..d4816969ef6f 100644 --- a/core/src/main/resources/jenkins/mvn/FilePathSettingsProvider/config_ja.properties +++ b/core/src/main/resources/jenkins/mvn/FilePathSettingsProvider/config_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -File\ path=\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9 +File\ path=ファイルパス diff --git a/core/src/main/resources/jenkins/mvn/FilePathSettingsProvider/config_sr.properties b/core/src/main/resources/jenkins/mvn/FilePathSettingsProvider/config_sr.properties index 79580f19b164..00e4189be2b7 100644 --- a/core/src/main/resources/jenkins/mvn/FilePathSettingsProvider/config_sr.properties +++ b/core/src/main/resources/jenkins/mvn/FilePathSettingsProvider/config_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -File\ path=\u041F\u0443\u0442 \u0434\u043E \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435 +File\ path=Пут до датотеке diff --git a/core/src/main/resources/jenkins/mvn/FilePathSettingsProvider/config_zh_TW.properties b/core/src/main/resources/jenkins/mvn/FilePathSettingsProvider/config_zh_TW.properties index c8db1d67154e..abd9e1bf20f7 100644 --- a/core/src/main/resources/jenkins/mvn/FilePathSettingsProvider/config_zh_TW.properties +++ b/core/src/main/resources/jenkins/mvn/FilePathSettingsProvider/config_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -File\ path=\u6a94\u6848\u8def\u5f91 +File\ path=檔案路徑 diff --git a/core/src/main/resources/jenkins/mvn/GlobalMavenConfig/config_fr.properties b/core/src/main/resources/jenkins/mvn/GlobalMavenConfig/config_fr.properties index 927d5d3e236f..b3bce703940c 100644 --- a/core/src/main/resources/jenkins/mvn/GlobalMavenConfig/config_fr.properties +++ b/core/src/main/resources/jenkins/mvn/GlobalMavenConfig/config_fr.properties @@ -1,3 +1,3 @@ Maven\ Configuration=Configuration Maven -Default\ settings\ provider=Fournisseur de r\u00e9glages par d\u00e9faut -Default\ global\ settings\ provider=Fournisseur de r\u00e9glages globaux par d\u00e9faut +Default\ settings\ provider=Fournisseur de réglages par défaut +Default\ global\ settings\ provider=Fournisseur de réglages globaux par défaut diff --git a/core/src/main/resources/jenkins/mvn/GlobalMavenConfig/config_it.properties b/core/src/main/resources/jenkins/mvn/GlobalMavenConfig/config_it.properties index 5a0f80b556cf..a0b735b3ff05 100644 --- a/core/src/main/resources/jenkins/mvn/GlobalMavenConfig/config_it.properties +++ b/core/src/main/resources/jenkins/mvn/GlobalMavenConfig/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/mvn/GlobalMavenConfig/config_sr.properties b/core/src/main/resources/jenkins/mvn/GlobalMavenConfig/config_sr.properties index 04e1038ed5e8..fffab8447492 100644 --- a/core/src/main/resources/jenkins/mvn/GlobalMavenConfig/config_sr.properties +++ b/core/src/main/resources/jenkins/mvn/GlobalMavenConfig/config_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Maven\ Configuration=\u041F\u043E\u0441\u0442\u0430\u0432\u0438 Maven -Default\ settings\ provider=\u041F\u0440\u043E\u0432\u0430\u0458\u0434\u0435\u0440 \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u043D\u0438\u0445 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0438\u043C\u0430 -Default\ global\ settings\ provider=\u041F\u0440\u043E\u0432\u0430\u0458\u0434\u0435\u0440 \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u043D\u0438\u0445 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u0438\u043C \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0438\u043C\u0430 +Maven\ Configuration=ПоÑтави Maven +Default\ settings\ provider=Провајдер Ñтандардних подешавањима +Default\ global\ settings\ provider=Провајдер Ñтандардних глобалним подешавањима diff --git a/core/src/main/resources/jenkins/mvn/Messages_bg.properties b/core/src/main/resources/jenkins/mvn/Messages_bg.properties index be7a195a39f7..a5ed7c3c073b 100644 --- a/core/src/main/resources/jenkins/mvn/Messages_bg.properties +++ b/core/src/main/resources/jenkins/mvn/Messages_bg.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. DefaultSettingsProvider.DisplayName=\ - \u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 maven + Стандартни наÑтройки на maven DefaultGlobalSettingsProvider.DisplayName=\ - \u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438 \u0433\u043b\u043e\u0431\u0430\u043b\u043d\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 maven + Стандартни глобални наÑтройки на maven FilePathGlobalSettingsProvider.DisplayName=\ - \u0413\u043b\u043e\u0431\u0430\u043b\u043d\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043e\u0442 \u0444\u0430\u0439\u043b\u043e\u0432\u0430\u0442\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430 + Глобални наÑтройки от файловата ÑиÑтема FilePathSettingsProvider.DisplayName=\ - \u0424\u0430\u0439\u043b \u0441 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0432\u044a\u0432 \u0444\u0430\u0439\u043b\u043e\u0432\u0430\u0442\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430 + Файл Ñ Ð½Ð°Ñтройки във файловата ÑиÑтема diff --git a/core/src/main/resources/jenkins/mvn/Messages_fr.properties b/core/src/main/resources/jenkins/mvn/Messages_fr.properties index d48b601526dc..3018625761a8 100644 --- a/core/src/main/resources/jenkins/mvn/Messages_fr.properties +++ b/core/src/main/resources/jenkins/mvn/Messages_fr.properties @@ -1,4 +1,4 @@ -DefaultSettingsProvider.DisplayName=Utiliser les r\u00e9glages Maven par d\u00e9faut -DefaultGlobalSettingsProvider.DisplayName=Utiliser les r\u00e9glages globaux Maven par d\u00e9faut -FilePathGlobalSettingsProvider.DisplayName=Fichier de r\u00e9glages globaux Maven sur le syst\u00e8me de fichiers -FilePathSettingsProvider.DisplayName=Fichier de r\u00e9glages Maven sur le syst\u00e8me de fichiers +DefaultSettingsProvider.DisplayName=Utiliser les réglages Maven par défaut +DefaultGlobalSettingsProvider.DisplayName=Utiliser les réglages globaux Maven par défaut +FilePathGlobalSettingsProvider.DisplayName=Fichier de réglages globaux Maven sur le système de fichiers +FilePathSettingsProvider.DisplayName=Fichier de réglages Maven sur le système de fichiers diff --git a/core/src/main/resources/jenkins/mvn/Messages_it.properties b/core/src/main/resources/jenkins/mvn/Messages_it.properties index f6ae7441cbbe..75f78672305b 100644 --- a/core/src/main/resources/jenkins/mvn/Messages_it.properties +++ b/core/src/main/resources/jenkins/mvn/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/mvn/Messages_ja.properties b/core/src/main/resources/jenkins/mvn/Messages_ja.properties index b976815d9a3a..2bebe8e572c7 100644 --- a/core/src/main/resources/jenkins/mvn/Messages_ja.properties +++ b/core/src/main/resources/jenkins/mvn/Messages_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -DefaultSettingsProvider.DisplayName=\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8a2d\u5b9a -DefaultGlobalSettingsProvider.DisplayName=\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30b0\u30ed\u30fc\u30d0\u30eb\u8a2d\u5b9a -FilePathGlobalSettingsProvider.DisplayName=\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u4e0a\u306e\u30b0\u30ed\u30fc\u30d0\u30eb\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb -FilePathSettingsProvider.DisplayName=\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u4e0a\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb +DefaultSettingsProvider.DisplayName=デフォルトã®è¨­å®š +DefaultGlobalSettingsProvider.DisplayName=デフォルトã®ã‚°ãƒ­ãƒ¼ãƒãƒ«è¨­å®š +FilePathGlobalSettingsProvider.DisplayName=ファイルシステム上ã®ã‚°ãƒ­ãƒ¼ãƒãƒ«è¨­å®šãƒ•ã‚¡ã‚¤ãƒ« +FilePathSettingsProvider.DisplayName=ファイルシステム上ã®è¨­å®šãƒ•ã‚¡ã‚¤ãƒ« diff --git a/core/src/main/resources/jenkins/mvn/Messages_lt.properties b/core/src/main/resources/jenkins/mvn/Messages_lt.properties index bfe228203a98..af7f25e88a02 100644 --- a/core/src/main/resources/jenkins/mvn/Messages_lt.properties +++ b/core/src/main/resources/jenkins/mvn/Messages_lt.properties @@ -1,4 +1,4 @@ DefaultSettingsProvider.DisplayName=Naudoti numatytuosius maven nustatymus DefaultGlobalSettingsProvider.DisplayName=Naudoti numatytuosius maven globalius nustatymus -FilePathGlobalSettingsProvider.DisplayName=Galobali\u0173 nustatym\u0173 failas fail\u0173 sistemoje -FilePathSettingsProvider.DisplayName=Nustatym\u0173 failas fail\u0173 sistemoje +FilePathGlobalSettingsProvider.DisplayName=Galobalių nustatymų failas failų sistemoje +FilePathSettingsProvider.DisplayName=Nustatymų failas failų sistemoje diff --git a/core/src/main/resources/jenkins/mvn/Messages_pt_BR.properties b/core/src/main/resources/jenkins/mvn/Messages_pt_BR.properties index e6dccd126080..5c043cd6c847 100644 --- a/core/src/main/resources/jenkins/mvn/Messages_pt_BR.properties +++ b/core/src/main/resources/jenkins/mvn/Messages_pt_BR.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. # Use default maven settings -DefaultSettingsProvider.DisplayName=Usar as configura\u00E7\u00F5es padr\u00E3o do Maven +DefaultSettingsProvider.DisplayName=Usar as configurações padrão do Maven # Use default maven global settings -DefaultGlobalSettingsProvider.DisplayName=Usar as configura\u00E7\u00F5es globais padr\u00E3o do Maven +DefaultGlobalSettingsProvider.DisplayName=Usar as configurações globais padrão do Maven # Global settings file on filesystem -FilePathGlobalSettingsProvider.DisplayName=Arquivo de configura\u00E7\u00F5es globais no sistema de arquivos +FilePathGlobalSettingsProvider.DisplayName=Arquivo de configurações globais no sistema de arquivos # Settings file in filesystem -FilePathSettingsProvider.DisplayName=Arquivo de configura\u00E7\u00F5es no sistema de arquivos +FilePathSettingsProvider.DisplayName=Arquivo de configurações no sistema de arquivos diff --git a/core/src/main/resources/jenkins/mvn/Messages_sr.properties b/core/src/main/resources/jenkins/mvn/Messages_sr.properties index 20d33fc6688a..6caa58031c56 100644 --- a/core/src/main/resources/jenkins/mvn/Messages_sr.properties +++ b/core/src/main/resources/jenkins/mvn/Messages_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -DefaultSettingsProvider.DisplayName=\u041A\u043E\u0440\u0438\u0441\u0442\u0438 \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u043D\u0430 maven \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 -DefaultGlobalSettingsProvider.DisplayName=\u041A\u043E\u0440\u0438\u0441\u0442\u0438 \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u043D\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u0430 maven \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 -FilePathGlobalSettingsProvider.DisplayName=\u0414\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u0438\u043C \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0441\u0430 \u0434\u0438\u0441\u043A\u0430 -FilePathSettingsProvider.DisplayName=\u0414\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0441\u0430 \u0434\u0438\u0441\u043A\u0430 +DefaultSettingsProvider.DisplayName=КориÑти Ñтандардна maven подешавања +DefaultGlobalSettingsProvider.DisplayName=КориÑти Ñтандардна глобална maven подешавања +FilePathGlobalSettingsProvider.DisplayName=Датотека глобалним подешавања Ñа диÑка +FilePathSettingsProvider.DisplayName=Датотека подешавања Ñа диÑка diff --git a/core/src/main/resources/jenkins/mvn/Messages_zh_TW.properties b/core/src/main/resources/jenkins/mvn/Messages_zh_TW.properties index 0fc1b8ec88a9..dc4905bc0ae3 100644 --- a/core/src/main/resources/jenkins/mvn/Messages_zh_TW.properties +++ b/core/src/main/resources/jenkins/mvn/Messages_zh_TW.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -DefaultSettingsProvider.DisplayName=\u4f7f\u7528 Maven \u9810\u8a2d\u8a2d\u5b9a -DefaultGlobalSettingsProvider.DisplayName=\u4f7f\u7528 Maven \u9810\u8a2d\u5168\u57df\u8a2d\u5b9a -FilePathGlobalSettingsProvider.DisplayName=\u6a94\u6848\u7cfb\u7d71\u4e0a\u7684\u5168\u57df\u8a2d\u5b9a\u6a94 -FilePathSettingsProvider.DisplayName=\u6a94\u6848\u7cfb\u7d71\u4e0a\u7684\u8a2d\u5b9a\u6a94 +DefaultSettingsProvider.DisplayName=使用 Maven é è¨­è¨­å®š +DefaultGlobalSettingsProvider.DisplayName=使用 Maven é è¨­å…¨åŸŸè¨­å®š +FilePathGlobalSettingsProvider.DisplayName=檔案系統上的全域設定檔 +FilePathSettingsProvider.DisplayName=檔案系統上的設定檔 diff --git a/core/src/main/resources/jenkins/security/ApiTokenProperty/config.jelly b/core/src/main/resources/jenkins/security/ApiTokenProperty/config.jelly index 1d13a48262f3..9c9fda7fbb0a 100644 --- a/core/src/main/resources/jenkins/security/ApiTokenProperty/config.jelly +++ b/core/src/main/resources/jenkins/security/ApiTokenProperty/config.jelly @@ -27,13 +27,7 @@ THE SOFTWARE. - - ${attrs.title} - - - - - + @@ -115,7 +109,8 @@ THE SOFTWARE. - @@ -130,20 +125,23 @@ THE SOFTWARE. - - - +
${%TokenDisplayedOnce}
diff --git a/core/src/main/resources/jenkins/security/ApiTokenProperty/config_fr.properties b/core/src/main/resources/jenkins/security/ApiTokenProperty/config_fr.properties index 54b488f54912..2f8d14f747c0 100644 --- a/core/src/main/resources/jenkins/security/ApiTokenProperty/config_fr.properties +++ b/core/src/main/resources/jenkins/security/ApiTokenProperty/config_fr.properties @@ -1,24 +1,24 @@ -TokenDisplayedOnce=Copiez ce jeton maintenant, il ne pourra pas \u00eatre retrouv\u00e9 ult\u00e9rieurement. +TokenDisplayedOnce=Copiez ce jeton maintenant, il ne pourra pas être retrouvé ultérieurement. AddNewToken=Ajouter un jeton -GenerateNewToken=G\u00e9n\u00e9rer -RevokeToken=R\u00e9voquer ce jeton +GenerateNewToken=Générer +RevokeToken=Révoquer ce jeton CopyToken=Copier ce jeton -NoTokenYet=Il n''y a pas de jeton enregistr\u00e9 pour cet utilisateur. -TokenLastUse=Utilis\u00e9 {0} fois, le dernier usage date de {1} jours +NoTokenYet=Il n''y a pas de jeton enregistré pour cet utilisateur. +TokenLastUse=Utilisé {0} fois, le dernier usage date de {1} jours StatisticsDisabled=Pas de statistique disponible -StatisticsDisabled.Title=Les statistiques d''utilisation du jeton sont d\u00e9sactiv\u00e9es -TokenNeverUsed=Jamais utilis\u00e9 -TokenNeverUsedTooltip=Il n''y a pas de date de derni\u00e8re utilisation pour ce jeton -TokenNeverUsed.Title=Il est fortement recommand\u00e9 de supprimer les jetons qui ne sont pas utilis\u00e9s +StatisticsDisabled.Title=Les statistiques d''utilisation du jeton sont désactivées +TokenNeverUsed=Jamais utilisé +TokenNeverUsedTooltip=Il n''y a pas de date de dernière utilisation pour ce jeton +TokenNeverUsed.Title=Il est fortement recommandé de supprimer les jetons qui ne sont pas utilisés ConfirmRevokeSingle=Confirmez-vous la suppression de ce jeton ? Les applications l''utilisant ne pourront plus se \ connecter. CurrentTokens=Jeton(s) actuel(s) -TokenCreation=Cr\u00e9\u00e9 il y a {0} jours +TokenCreation=Créé il y a {0} jours RenameToken=Enregistrer le nouveau nom de jeton -LegacyToken=Nous recommandons de revoquer ce jeton obsol\u00e8te et de le remplacer par un nouveau jeton pour une \ - meilleure s\u00e9curit\u00e9. -NoLegacyToken=L''utilisateur n''as pas de jeton obsol\u00e8te -RevokedToken=Le jeton obsol\u00e8te a \u00e9t\u00e9 r\u00e9voqu\u00e9 -NoCreationDate=Il n''y a pas de date de cr\u00e9ation pour ce jeton +LegacyToken=Nous recommandons de revoquer ce jeton obsolète et de le remplacer par un nouveau jeton pour une \ + meilleure sécurité. +NoLegacyToken=L''utilisateur n''as pas de jeton obsolète +RevokedToken=Le jeton obsolète a été révoqué +NoCreationDate=Il n''y a pas de date de création pour ce jeton NoCreationDateValue=Inconnue -Default\ name=Nom par d\u00e9faut +Default\ name=Nom par défaut diff --git a/core/src/main/resources/jenkins/security/ApiTokenProperty/config_it.properties b/core/src/main/resources/jenkins/security/ApiTokenProperty/config_it.properties index 3b8cd806b070..762b39ed4478 100644 --- a/core/src/main/resources/jenkins/security/ApiTokenProperty/config_it.properties +++ b/core/src/main/resources/jenkins/security/ApiTokenProperty/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -25,7 +25,7 @@ AddNewToken=Aggiungi nuovo token Cancel=Annulla Change\ API\ Token=Modifica token API ConfirmRevokeSingle=Revocare questo token? Le applicazioni che lo stanno \ - utilizzando non saranno più in grado di connettersi. + utilizzando non saranno più in grado di connettersi. Copied=Copiato CopyToken=Copia questo token CurrentTokens=Token attuali @@ -37,16 +37,16 @@ LegacyToken=Consigliamo caldamente di revocare questo token legacy e di \ NoCreationDate=Per questo token non esiste una data di creazione NoCreationDateValue=Sconosciuta NoTokenYet=Per quest''utente non esistono token registrati. -RevokedToken=Il token legacy è stato revocato +RevokedToken=Il token legacy è stato revocato RevokeToken=Revoca questo token Show\ Legacy\ API\ Token=Visualizza token API legacy StatisticsDisabled=Statistiche non disponibili StatisticsDisabled.Title=Le statistiche di utilizzo dei token sono \ attualmente disabilitate TokenCreation=Creato {0} giorni fa -TokenDisplayedOnce=Si copi ora questo token perché non sarà possibile \ +TokenDisplayedOnce=Si copi ora questo token perché non sarà possibile \ recuperarlo in futuro. -TokenLastUse=Utilizzato {0} volte, l''ultima volta è stata {1} \ +TokenLastUse=Utilizzato {0} volte, l''ultima volta è stata {1} \ giorni fa TokenNeverUsed=Mai utilizzato TokenNeverUsed.Title=Consigliamo caldamente di revocare i token che non si \ diff --git a/core/src/main/resources/jenkins/security/ApiTokenProperty/config_ja.properties b/core/src/main/resources/jenkins/security/ApiTokenProperty/config_ja.properties index 1a241db0d717..cc1d4d679690 100644 --- a/core/src/main/resources/jenkins/security/ApiTokenProperty/config_ja.properties +++ b/core/src/main/resources/jenkins/security/ApiTokenProperty/config_ja.properties @@ -20,24 +20,24 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -TokenDisplayedOnce=\u3053\u306e\u30c8\u30fc\u30af\u30f3\u306f\u5c06\u6765\u56de\u5fa9\u3067\u304d\u306a\u3044\u305f\u3081\u3001\u4eca\u3059\u3050\u30b3\u30d4\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\u3002 -AddNewToken=\u30c8\u30fc\u30af\u30f3\u65b0\u898f\u8ffd\u52a0 -GenerateNewToken=\u751f\u6210 -RevokeToken=\u3053\u306e\u30c8\u30fc\u30af\u30f3\u3092\u7121\u52b9\u5316 -CopyToken=\u3053\u306e\u30c8\u30fc\u30af\u30f3\u3092\u30b3\u30d4\u30fc -NoTokenYet=\u3053\u306e\u30e6\u30fc\u30b6\u30fc\u306b\u767b\u9332\u3055\u308c\u305f\u30c8\u30fc\u30af\u30f3\u306f\u3042\u308a\u307e\u305b\u3093\u3002 -TokenLastUse={0} \u56de\u4f7f\u7528\u3001\u524d\u56de\u306f {1} \u65e5\u524d -StatisticsDisabled=\u7d71\u8a08\u30c7\u30fc\u30bf\u304c\u5229\u7528\u3067\u304d\u307e\u305b\u3093 -StatisticsDisabled.Title=\u30c8\u30fc\u30af\u30f3\u4f7f\u7528\u7d71\u8a08\u306f\u73fe\u5728\u7121\u52b9\u306b\u306a\u3063\u3066\u3044\u307e\u3059 -TokenNeverUsed=\u4f7f\u7528\u3055\u308c\u3066\u3044\u307e\u305b\u3093 -TokenNeverUsedTooltip=\u305d\u306e\u30c8\u30fc\u30af\u30f3\u306e\u524d\u56de\u4f7f\u7528\u65e5\u306f\u3042\u308a\u307e\u305b\u3093 -TokenNeverUsed.Title=\u4f7f\u7528\u3059\u308b\u4e88\u5b9a\u304c\u7121\u3044\u5834\u5408\u306f\u30c8\u30fc\u30af\u30f3\u3092\u7121\u52b9\u5316\u3059\u308b\u3053\u3068\u3092\u5f37\u304f\u63a8\u5968\u3057\u307e\u3059 -ConfirmRevokeSingle=\u3053\u306e\u30c8\u30fc\u30af\u30f3\u3092\u7121\u52b9\u5316\u3057\u307e\u3059\u304b\uff1f\u3053\u306e\u30c8\u30fc\u30af\u30f3\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306f\u63a5\u7d9a\u3067\u304d\u306a\u304f\u306a\u308a\u307e\u3059\u3002 -CurrentTokens=\u73fe\u5728\u306e\u30c8\u30fc\u30af\u30f3 -TokenCreation={0} \u65e5\u524d\u306b\u4f5c\u6210 -RenameToken=\u30c8\u30fc\u30af\u30f3\u306e\u65b0\u3057\u3044\u540d\u524d\u3092\u4fdd\u5b58 -LegacyToken=\u3053\u306e\u30ec\u30ac\u30b7\u30fc\u30c8\u30fc\u30af\u30f3\u3092\u7121\u52b9\u306b\u3057\u3066\u65b0\u898f\u306b\u751f\u6210\u3057\u305f\u30c8\u30fc\u30af\u30f3\u3067\u7f6e\u304d\u63db\u3048\u308b\u3053\u3068\u3092\u5f37\u304f\u63a8\u5968\u3057\u307e\u3059\u3002 -NoLegacyToken=\u30e6\u30fc\u30b6\u30fc\u306e\u30ec\u30ac\u30b7\u30fc\u30c8\u30fc\u30af\u30f3\u306f\u3042\u308a\u307e\u305b\u3093 -RevokedToken=\u30ec\u30ac\u30b7\u30fc\u30c8\u30fc\u30af\u30f3\u306f\u7121\u52b9\u306b\u3055\u308c\u307e\u3057\u305f -NoCreationDate=\u305d\u306e\u30c8\u30fc\u30af\u30f3\u306b\u306f\u4f5c\u6210\u65e5\u304c\u3042\u308a\u307e\u305b\u3093 -NoCreationDateValue=\u4e0d\u660e +TokenDisplayedOnce=ã“ã®ãƒˆãƒ¼ã‚¯ãƒ³ã¯å°†æ¥å›žå¾©ã§ããªã„ãŸã‚ã€ä»Šã™ãコピーã—ã¦ãã ã•ã„。 +AddNewToken=トークン新è¦è¿½åŠ  +GenerateNewToken=ç”Ÿæˆ +RevokeToken=ã“ã®ãƒˆãƒ¼ã‚¯ãƒ³ã‚’無効化 +CopyToken=ã“ã®ãƒˆãƒ¼ã‚¯ãƒ³ã‚’コピー +NoTokenYet=ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã«ç™»éŒ²ã•ã‚ŒãŸãƒˆãƒ¼ã‚¯ãƒ³ã¯ã‚ã‚Šã¾ã›ã‚“。 +TokenLastUse={0} 回使用ã€å‰å›žã¯ {1} æ—¥å‰ +StatisticsDisabled=統計データãŒåˆ©ç”¨ã§ãã¾ã›ã‚“ +StatisticsDisabled.Title=トークン使用統計ã¯ç¾åœ¨ç„¡åŠ¹ã«ãªã£ã¦ã„ã¾ã™ +TokenNeverUsed=使用ã•ã‚Œã¦ã„ã¾ã›ã‚“ +TokenNeverUsedTooltip=ãã®ãƒˆãƒ¼ã‚¯ãƒ³ã®å‰å›žä½¿ç”¨æ—¥ã¯ã‚ã‚Šã¾ã›ã‚“ +TokenNeverUsed.Title=使用ã™ã‚‹äºˆå®šãŒç„¡ã„å ´åˆã¯ãƒˆãƒ¼ã‚¯ãƒ³ã‚’無効化ã™ã‚‹ã“ã¨ã‚’å¼·ã推奨ã—ã¾ã™ +ConfirmRevokeSingle=ã“ã®ãƒˆãƒ¼ã‚¯ãƒ³ã‚’無効化ã—ã¾ã™ã‹ï¼Ÿã“ã®ãƒˆãƒ¼ã‚¯ãƒ³ã‚’使用ã—ã¦ã„るアプリケーションã¯æŽ¥ç¶šã§ããªããªã‚Šã¾ã™ã€‚ +CurrentTokens=ç¾åœ¨ã®ãƒˆãƒ¼ã‚¯ãƒ³ +TokenCreation={0} æ—¥å‰ã«ä½œæˆ +RenameToken=トークンã®æ–°ã—ã„åå‰ã‚’ä¿å­˜ +LegacyToken=ã“ã®ãƒ¬ã‚¬ã‚·ãƒ¼ãƒˆãƒ¼ã‚¯ãƒ³ã‚’無効ã«ã—ã¦æ–°è¦ã«ç”Ÿæˆã—ãŸãƒˆãƒ¼ã‚¯ãƒ³ã§ç½®ãæ›ãˆã‚‹ã“ã¨ã‚’å¼·ã推奨ã—ã¾ã™ã€‚ +NoLegacyToken=ユーザーã®ãƒ¬ã‚¬ã‚·ãƒ¼ãƒˆãƒ¼ã‚¯ãƒ³ã¯ã‚ã‚Šã¾ã›ã‚“ +RevokedToken=レガシートークンã¯ç„¡åŠ¹ã«ã•ã‚Œã¾ã—㟠+NoCreationDate=ãã®ãƒˆãƒ¼ã‚¯ãƒ³ã«ã¯ä½œæˆæ—¥ãŒã‚ã‚Šã¾ã›ã‚“ +NoCreationDateValue=ä¸æ˜Ž diff --git a/core/src/main/resources/jenkins/security/ApiTokenProperty/config_pl.properties b/core/src/main/resources/jenkins/security/ApiTokenProperty/config_pl.properties index 14b2752cda5e..62f1562a425a 100644 --- a/core/src/main/resources/jenkins/security/ApiTokenProperty/config_pl.properties +++ b/core/src/main/resources/jenkins/security/ApiTokenProperty/config_pl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NoTokenYet=Nie ma zarejestrowanych token\u00F3w dla tego u\u017Cytkownika +NoTokenYet=Nie ma zarejestrowanych tokenów dla tego użytkownika CurrentTokens=Aktualny token AddNewToken=Dodaj nowy token diff --git a/core/src/main/resources/jenkins/security/ApiTokenProperty/config_pt_BR.properties b/core/src/main/resources/jenkins/security/ApiTokenProperty/config_pt_BR.properties index b98197dffe2b..3b87ec3a0693 100644 --- a/core/src/main/resources/jenkins/security/ApiTokenProperty/config_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/ApiTokenProperty/config_pt_BR.properties @@ -21,27 +21,27 @@ # THE SOFTWARE. Show\ Legacy\ API\ Token=Mostrar\ Passe\ De\ API\ Legado -TokenDisplayedOnce=Copie este passe agora porque ele n\u00E3o poder\u00E1 ser recuperado no futuro. +TokenDisplayedOnce=Copie este passe agora porque ele não poderá ser recuperado no futuro. RevokedToken=O passe legado foi revogado CurrentTokens=Passe(s) atual(is) -LegacyToken=Recomendamos fortemente que voc\u00EA revogue este passe legado e o troque por um novo rec\u00E9m gerado para aumentar a seguran\u00E7a. -ConfirmRevokeSingle=Voc\u00EA tem certeza de que quer revogar este passe? Aplica\u00E7\u00F5es que o estejam usando n\u00E3o v\u00E3o conseguir se conectar mais. +LegacyToken=Recomendamos fortemente que você revogue este passe legado e o troque por um novo recém gerado para aumentar a segurança. +ConfirmRevokeSingle=Você tem certeza de que quer revogar este passe? Aplicações que o estejam usando não vão conseguir se conectar mais. Cancel=Cancelar -StatisticsDisabled.Title=Estat\u00EDsticas de use de passe est\u00E3o atualmente desabilitadas -TokenCreation=Criado {0} dia(s) atr\u00E1s +StatisticsDisabled.Title=Estatísticas de use de passe estão atualmente desabilitadas +TokenCreation=Criado {0} dia(s) atrás Legacy\ API\ Token=Passe\ de\ API\ legado -TokenNeverUsed.Title=Recomendamos fortemente que voc\u00EA revogue os passes que voc\u00EA n\u00E3o planeja utilizar -StatisticsDisabled=Nenhuma estat\u00EDstica dispon\u00EDvel -TokenNeverUsedTooltip=N\u00E3o h\u00E1 \u00FAltima data de uso para este passe +TokenNeverUsed.Title=Recomendamos fortemente que você revogue os passes que você não planeja utilizar +StatisticsDisabled=Nenhuma estatística disponível +TokenNeverUsedTooltip=Não há última data de uso para este passe Change\ API\ Token=Mudar\ passe\ de\ API AddNewToken=Adicionar novo passe GenerateNewToken=Gerar -Default\ name=Nome\ padr\u00E3o +Default\ name=Nome\ padrão CopyToken=Copiar este passe -TokenLastUse=Utilizado {0} vezes, \u00FAltima data de uso foi {1} dia(s) atr\u00E1s -NoTokenYet=N\u00E3o h\u00E1 passes registrados para este usu\u00E1rio. +TokenLastUse=Utilizado {0} vezes, última data de uso foi {1} dia(s) atrás +NoTokenYet=Não há passes registrados para este usuário. Copied=Copiado -NoCreationDate=N\u00E3o h\u00E1 data de cria\u00E7\u00E3o para este passe +NoCreationDate=Não há data de criação para este passe NoCreationDateValue=Desconhecido RevokeToken=Revogar este passe TokenNeverUsed=Nunca utilizado diff --git a/core/src/main/resources/jenkins/security/ApiTokenProperty/config_zh_TW.properties b/core/src/main/resources/jenkins/security/ApiTokenProperty/config_zh_TW.properties index 47e12a3d1cc9..b701ffdc772e 100644 --- a/core/src/main/resources/jenkins/security/ApiTokenProperty/config_zh_TW.properties +++ b/core/src/main/resources/jenkins/security/ApiTokenProperty/config_zh_TW.properties @@ -1,27 +1,27 @@ -TokenDisplayedOnce=\u8acb\u7acb\u5373\u8907\u88fd\u6b64 Token\uff0c\u56e0\u70ba\u4e4b\u5f8c\u7121\u6cd5\u518d\u6b21\u53d6\u5f97\u3002 -AddNewToken=\u65b0\u589e Token -GenerateNewToken=\u7522\u751f -RevokeToken=\u64a4\u92b7\u6b64 Token -CopyToken=\u8907\u88fd\u6b64 Token -NoTokenYet=\u6b64\u4f7f\u7528\u8005\u6c92\u6709\u5df2\u8a3b\u518a\u7684 Token\u3002 -TokenLastUse=\u5df2\u4f7f\u7528 {0} \u6b21\uff0c\u6700\u5f8c\u4f7f\u7528\u65bc {1} \u5929\u524d -StatisticsDisabled=\u6c92\u6709\u7d71\u8a08\u8cc7\u6599 -StatisticsDisabled.Title=\u76ee\u524d\u5df2\u505c\u7528 Token \u4f7f\u7528\u60c5\u5f62\u7d71\u8a08 -TokenNeverUsed=\u5f9e\u672a\u4f7f\u7528 -TokenNeverUsedTooltip=\u8a72 Token \u6c92\u6709\u6700\u5f8c\u4f7f\u7528\u65e5\u671f -TokenNeverUsed.Title=\u6211\u5011\u5f37\u70c8\u5efa\u8b70\u60a8\u64a4\u92b7\u4e0d\u6253\u7b97\u7e7c\u7e8c\u4f7f\u7528\u7684 Token -ConfirmRevokeSingle=\u60a8\u78ba\u5b9a\u8981\u64a4\u92b7\u6b64 Token\uff1f\u4f7f\u7528\u5b83\u7684\u61c9\u7528\u7a0b\u5f0f\u5c07\u7121\u6cd5\u518d\u9023\u7dda\u3002 -CurrentTokens=\u73fe\u6709\u7684 Token -TokenCreation=\u5efa\u7acb\u65bc {0} \u5929\u524d -RenameToken=\u5132\u5b58\u8a72 Token \u7684\u65b0\u540d\u7a31 -LegacyToken=\u6211\u5011\u5f37\u70c8\u5efa\u8b70\u60a8\u64a4\u92b7\u6b64 Legacy Token \u4e26\u4ee5\u7522\u751f\u65b0\u7684 Token \u53d6\u4ee3\u5b83\u4ee5\u589e\u52a0\u5b89\u5168\u6027\u3002 -NoLegacyToken=\u8a72\u4f7f\u7528\u8005\u6c92\u6709 Legacy Token -RevokedToken=\u5df2\u64a4\u92b7\u8a72 Legacy Token -NoCreationDate=\u8a72 Token \u6c92\u6709\u5efa\u7acb\u65e5\u671f -NoCreationDateValue=\u672a\u77e5 +TokenDisplayedOnce=è«‹ç«‹å³è¤‡è£½æ­¤ Token,因為之後無法å†æ¬¡å–得。 +AddNewToken=新增 Token +GenerateNewToken=產生 +RevokeToken=撤銷此 Token +CopyToken=複製此 Token +NoTokenYet=此使用者沒有已註冊的 Token。 +TokenLastUse=已使用 {0} 次,最後使用於 {1} å¤©å‰ +StatisticsDisabled=沒有統計資料 +StatisticsDisabled.Title=ç›®å‰å·²åœç”¨ Token 使用情形統計 +TokenNeverUsed=從未使用 +TokenNeverUsedTooltip=該 Token 沒有最後使用日期 +TokenNeverUsed.Title=我們強烈建議您撤銷ä¸æ‰“算繼續使用的 Token +ConfirmRevokeSingle=您確定è¦æ’¤éŠ·æ­¤ Token?使用它的應用程å¼å°‡ç„¡æ³•å†é€£ç·šã€‚ +CurrentTokens=ç¾æœ‰çš„ Token +TokenCreation=建立於 {0} å¤©å‰ +RenameToken=儲存該 Token çš„æ–°å稱 +LegacyToken=我們強烈建議您撤銷此 Legacy Token 並以產生新的 Token å–代它以增加安全性。 +NoLegacyToken=該使用者沒有 Legacy Token +RevokedToken=已撤銷該 Legacy Token +NoCreationDate=該 Token 沒有建立日期 +NoCreationDateValue=未知 Legacy\ API\ Token=Legacy API Token -Show\ Legacy\ API\ Token=\u986f\u793a Legacy API Token -Copied=\u5df2\u8907\u88fd -Cancel=\u53d6\u6d88 -Change\ API\ Token=\u8b8a\u66f4 API Token -Default\ name=\u9810\u8a2d\u540d\u7a31 +Show\ Legacy\ API\ Token=顯示 Legacy API Token +Copied=已複製 +Cancel=å–消 +Change\ API\ Token=變更 API Token +Default\ name=é è¨­å稱 diff --git a/core/src/main/resources/jenkins/security/ApiTokenProperty/resources.css b/core/src/main/resources/jenkins/security/ApiTokenProperty/resources.css index 631043e98ce8..cb88ea406a23 100644 --- a/core/src/main/resources/jenkins/security/ApiTokenProperty/resources.css +++ b/core/src/main/resources/jenkins/security/ApiTokenProperty/resources.css @@ -82,13 +82,6 @@ font-size: 0.75rem; color: #6d7680; } -.token-list .token-list-item .token-revoke{ - margin-left: 6px; -} -.token-list .token-list-new-item .token-revoke{ - float: right; - line-height: 32px; -} .token-list .token-list-new-item .token-revoke.hidden-button{ display: none; } @@ -99,31 +92,24 @@ vertical-align: baseline; } .token-list .token-list-new-item .token-name{ - width: 40%; + width: 40%; display: inline-block; } .token-list .token-list-new-item .new-token-value{ - width: 40%; display: none; font-family: monospace; - margin-right: 2px; + margin-right: 2px; font-size: 1em; } .token-list .token-list-new-item .new-token-value.visible{ display: inline-block; } -.token-list .token-list-new-item .copy-button{ - float: right; -} -.token-list .token-revoke svg { - width: 18px; - vertical-align: middle; -} -#jenkins .token-list .token-list-new-item .copy-button .yui-button{ - vertical-align: middle; -} -#jenkins .token-list .token-list-new-item .copy-button button{ - margin-left: 6px; +.token-list .token-list-new-item .controls-container { + display: flex; + align-items: center; + justify-content: center; + gap: 0.35rem; + float: right; } .token-list .token-list-new-item .display-after-generation{ margin-top: 5px; @@ -149,4 +135,4 @@ } .token-list .repeatable-add{ margin: 6px 6px 3px 6px; -} \ No newline at end of file +} diff --git a/core/src/main/resources/jenkins/security/ApiTokenProperty/resources.js b/core/src/main/resources/jenkins/security/ApiTokenProperty/resources.js index 3a80cb6590d3..8f5664040741 100644 --- a/core/src/main/resources/jenkins/security/ApiTokenProperty/resources.js +++ b/core/src/main/resources/jenkins/security/ApiTokenProperty/resources.js @@ -88,11 +88,10 @@ function saveApiToken(button){ tokenValueSpan.addClassName('visible'); // show the copy button - var tokenCopyButton = repeatedChunk.querySelector('.copy-button'); + var tokenCopyButton = repeatedChunk.querySelector('.jenkins-copy-button'); tokenCopyButton.setAttribute('text', tokenValue); - tokenCopyButton.removeClassName('invisible') - tokenCopyButton.addClassName('visible'); - + tokenCopyButton.removeClassName('jenkins-hidden') + var tokenUuid = json.data.tokenUuid; var uuidInput = repeatedChunk.querySelector('[name="tokenUuid"]'); uuidInput.value = tokenUuid; diff --git a/core/src/main/resources/jenkins/security/Messages_bg.properties b/core/src/main/resources/jenkins/security/Messages_bg.properties index d81b33152d17..97f31a122715 100644 --- a/core/src/main/resources/jenkins/security/Messages_bg.properties +++ b/core/src/main/resources/jenkins/security/Messages_bg.properties @@ -21,16 +21,16 @@ # THE SOFTWARE. ApiTokenProperty.DisplayName=\ - \u041d\u0438\u0437 \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u0437\u0430 API + Ðиз за Ð¸Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð·Ð° API ApiTokenProperty.ChangeToken.TokenIsHidden=\ - \u041d\u0438\u0437\u044a\u0442 \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u0435 \u0441\u043a\u0440\u0438\u0442 + Ðизът за Ð¸Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ðµ Ñкрит ApiTokenProperty.ChangeToken.Success=\ -
\u041f\u0440\u043e\u043c\u0435\u043d\u0435\u043d. \u041d\u043e\u0432\u0438\u044f\u0442 \u043d\u0438\u0437 \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u0435 \u0432 \u043f\u043e\u043b\u0435\u0442\u043e \u043e\u0442\u0433\u043e\u0440\u0435
+
Променен. ÐовиÑÑ‚ низ за Ð¸Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ðµ в полето отгоре
ApiTokenProperty.ChangeToken.SuccessHidden=\ -
\u041f\u0440\u043e\u043c\u0435\u043d\u0435\u043d. \u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0432\u043b\u0435\u0437\u0435\u0442\u0435 \u043a\u0430\u0442\u043e \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f, \u0437\u0430 \u0434\u0430 \u0432\u0438\u0434\u0438\u0442\u0435 \u043d\u0438\u0437\u0430 \u0437\u0430\ - \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f
+
Променен. ТрÑбва да влезете като потребителÑ, за да видите низа за\ + идентификациÑ
RekeySecretAdminMonitor.DisplayName=\ - \u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u043e\u0432 \u043a\u043b\u044e\u0447 + Създаване на нов ключ # Update Site Warnings UpdateSiteWarningsMonitor.DisplayName=\ - \u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u044f \u043e\u0442 \u0441\u0430\u0439\u0442\u043e\u0432\u0435\u0442\u0435 \u0437\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f + ÐŸÑ€ÐµÐ´ÑƒÐ¿Ñ€ÐµÐ¶Ð´ÐµÐ½Ð¸Ñ Ð¾Ñ‚ Ñайтовете за Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ diff --git a/core/src/main/resources/jenkins/security/Messages_de.properties b/core/src/main/resources/jenkins/security/Messages_de.properties index 371d8ee5aa08..8c4c52875098 100644 --- a/core/src/main/resources/jenkins/security/Messages_de.properties +++ b/core/src/main/resources/jenkins/security/Messages_de.properties @@ -22,7 +22,7 @@ UpdateSiteWarningsMonitor.DisplayName=Warnungen des Update-Centers ApiTokenProperty.DisplayName=API-Token -RekeySecretAdminMonitor.DisplayName=Erneute Verschl\u00FCsselung +RekeySecretAdminMonitor.DisplayName=Erneute Verschlüsselung ApiTokenProperty.ChangeToken.TokenIsHidden=Token wird nicht angezeigt ApiTokenProperty.ChangeToken.Success=
Aktualisiert. Der Token wird oben angezeigt.
ApiTokenProperty.ChangeToken.SuccessHidden=
Aktualisiert. Der Token wird nur dem Nutzer angezeigt.
diff --git a/core/src/main/resources/jenkins/security/Messages_it.properties b/core/src/main/resources/jenkins/security/Messages_it.properties index af6e589b8fb9..5a6f6c985e22 100644 --- a/core/src/main/resources/jenkins/security/Messages_it.properties +++ b/core/src/main/resources/jenkins/security/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,12 +21,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ApiTokenProperty.ChangeToken.CapabilityNotAllowed=
La funzionalità per \ - generare un token legacy se non ve ne è uno esistente è attualmente \ +ApiTokenProperty.ChangeToken.CapabilityNotAllowed=
La funzionalità per \ + generare un token legacy se non ve ne è uno esistente è attualmente \ disabilitata nella configurazione della sicurezza
-ApiTokenProperty.ChangeToken.Success=
Aggiornato. Il nuovo token è \ +ApiTokenProperty.ChangeToken.Success=
Aggiornato. Il nuovo token è \ riportato nel campo soprastante
-ApiTokenProperty.ChangeToken.SuccessHidden=
Aggiornato. È necessario \ +ApiTokenProperty.ChangeToken.SuccessHidden=
Aggiornato. È necessario \ accedere con le credenziali dell'utente specificato per visualizzare il \ token
ApiTokenProperty.ChangeToken.TokenIsHidden=Token nascosto @@ -40,17 +40,17 @@ ResourceDomainConfiguration.DisplayName=Raccomandazione dominio risorse ResourceDomainConfiguration.Empty=Senza un URL radice risorse, le risorse \ saranno servite dal dominio principale con l''intestazione \ Content-Security-Policy impostata. -ResourceDomainConfiguration.Exception=Si è verificata un''eccezione durante \ +ResourceDomainConfiguration.Exception=Si è verificata un''eccezione durante \ il recupero dell''URL {0} -ResourceDomainConfiguration.FailedIdentityCheck=Si è verificato un errore \ - durante il controllo dell''identità dell''istanza all''URL specificato: \ +ResourceDomainConfiguration.FailedIdentityCheck=Si è verificato un errore \ + durante il controllo dell''identità dell''istanza all''URL specificato: \ {0} {1} ResourceDomainConfiguration.Invalid=URL non valido. -ResourceDomainConfiguration.InvalidRootURL=L''URL radice di Jenkins è \ +ResourceDomainConfiguration.InvalidRootURL=L''URL radice di Jenkins è \ impostato a un valore non valido, segnalare il bug: {0} ResourceDomainConfiguration.IOException=Connessione non riuscita: {0} -ResourceDomainConfiguration.NeedsRootURL=È possibile impostare l''URL radice \ - risorse solo se è stato impostato l''URL radice normale. +ResourceDomainConfiguration.NeedsRootURL=È possibile impostare l''URL radice \ + risorse solo se è stato impostato l''URL radice normale. ResourceDomainConfiguration.NotJenkins=Sembra che l''URL specificato non \ punti a un''istanza di Jenkins. ResourceDomainConfiguration.OtherJenkins=L''URL specificato punta a \ @@ -60,13 +60,13 @@ ResourceDomainConfiguration.ResourceResponse=L''URL specificato punta a un \ ResourceDomainConfiguration.SameAsCurrent=Attualmente si sta accedendo a \ Jenkins con un URL simile all''URL radice risorse proposto. Salvare \ quest''URL potrebbe impedire l''accesso a Jenkins. -ResourceDomainConfiguration.SameAsJenkinsRoot=Non è possibile utilizzare lo \ +ResourceDomainConfiguration.SameAsJenkinsRoot=Non è possibile utilizzare lo \ stesso nome host sia per l''URL radice di Jenkins, sia per l''URL radice \ risorse. ResourceDomainConfiguration.SomeJenkins=L''URL specificato punta a \ - un''istanza di Jenkins, ma non è possibile determinare se si tratta di \ + un''istanza di Jenkins, ma non è possibile determinare se si tratta di \ questa o di un''altra istanza. -ResourceDomainConfiguration.ThisJenkins=L''URL specificato è un candidato URL \ +ResourceDomainConfiguration.ThisJenkins=L''URL specificato è un candidato URL \ radice risorse valido. Token.Created.on=Token creato il {0} UpdateSiteWarningsMonitor.DisplayName=Avvisi sito di aggiornamento diff --git a/core/src/main/resources/jenkins/security/Messages_ja.properties b/core/src/main/resources/jenkins/security/Messages_ja.properties index 97b9d6c1ffa5..f958d55bf9a0 100644 --- a/core/src/main/resources/jenkins/security/Messages_ja.properties +++ b/core/src/main/resources/jenkins/security/Messages_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ApiTokenProperty.DisplayName=API\u30c8\u30fc\u30af\u30f3 -ApiTokenProperty.ChangeToken.Success=
\u66f4\u65b0\u3057\u307e\u3057\u305f
-RekeySecretAdminMonitor.DisplayName=\u30ad\u30fc\u306e\u518d\u751f\u6210 -Token.Created.on={0}\u306b\u4f5c\u6210\u3055\u308c\u305f\u30c8\u30fc\u30af\u30f3 +ApiTokenProperty.DisplayName=APIトークン +ApiTokenProperty.ChangeToken.Success=
æ›´æ–°ã—ã¾ã—ãŸ
+RekeySecretAdminMonitor.DisplayName=キーã®å†ç”Ÿæˆ +Token.Created.on={0}ã«ä½œæˆã•ã‚ŒãŸãƒˆãƒ¼ã‚¯ãƒ³ diff --git a/core/src/main/resources/jenkins/security/Messages_pt_BR.properties b/core/src/main/resources/jenkins/security/Messages_pt_BR.properties index 8443f871b0b8..beb5e0fc0106 100644 --- a/core/src/main/resources/jenkins/security/Messages_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/Messages_pt_BR.properties @@ -24,35 +24,35 @@ RekeySecretAdminMonitor.DisplayName=Rechaveamento ApiTokenProperty.ChangeToken.Success=
Atualizado
ApiTokenProperty.DisplayName=Passe de API -ResourceDomainConfiguration.NeedsRootURL=S\u00F3 \u00E9 poss\u00EDvel configurar a URL raiz do recurso se a URL do Jenkins estiver \ +ResourceDomainConfiguration.NeedsRootURL=Só é possível configurar a URL raiz do recurso se a URL do Jenkins estiver \ configurada. -ResourceDomainConfiguration.Empty=Sem uma URL raiz de recurso, recursos ser\u00E3o servidos da URL do Jenkins com \ +ResourceDomainConfiguration.Empty=Sem uma URL raiz de recurso, recursos serão servidos da URL do Jenkins com \ Content-Security-Policy configurado. -ResourceDomainConfiguration.SomeJenkins=A URL especificada aponta para uma inst\u00E2ncia do Jenkins mas n\u00E3o pode \ - determinar se \u00E9 esta mesmo ou outra inst\u00E2ncia. -ResourceDomainConfiguration.NotJenkins=A URL espeficicada n\u00E3o parece apontar para uma inst\u00E2ncia do Jenkins. -ApiTokenProperty.ChangeToken.TokenIsHidden=O passe est\u00E1 oculto -UpdateSiteWarningsMonitor.DisplayName=Atualizar avisos do s\u00EDtio -ResourceDomainConfiguration.Invalid=N\u00E3o \u00E9 uma URL v\u00E1lida. +ResourceDomainConfiguration.SomeJenkins=A URL especificada aponta para uma instância do Jenkins mas não pode \ + determinar se é esta mesmo ou outra instância. +ResourceDomainConfiguration.NotJenkins=A URL espeficicada não parece apontar para uma instância do Jenkins. +ApiTokenProperty.ChangeToken.TokenIsHidden=O passe está oculto +UpdateSiteWarningsMonitor.DisplayName=Atualizar avisos do sítio +ResourceDomainConfiguration.Invalid=Não é uma URL válida. Token.Created.on=Passe criado em {0} ResourceDomainConfiguration.IOException=Falha para conectar: {0} -ResourceDomainConfiguration.FailedIdentityCheck=Um erro ocorreu quando verificando a identidade de uma inst\u00E2ncia \ +ResourceDomainConfiguration.FailedIdentityCheck=Um erro ocorreu quando verificando a identidade de uma instância \ localiza naquela URL: {0} {1} -ResourceDomainConfiguration.SameAsJenkinsRoot=N\u00E3o pode usar o mesmo nome de hospedeiro e para a URL do Jenkins e para \ +ResourceDomainConfiguration.SameAsJenkinsRoot=Não pode usar o mesmo nome de hospedeiro e para a URL do Jenkins e para \ a URL raiz de recurso. -ResourceDomainConfiguration.SameAsCurrent=Voc\u00EA est\u00E1 atualmente acessando o Jenkins atrav\u00E9s de uma URL similar a URL \ - raiz de recurso proposta. Salvar esta URL poder\u00E1 remover seu acesso ao Jenkins. -ApiTokenProperty.ChangeToken.SuccessHidden=
Atualizado. Voc\u00EA precisa fazer a entrada com o usu\u00E1rio para ser o \ +ResourceDomainConfiguration.SameAsCurrent=Você está atualmente acessando o Jenkins através de uma URL similar a URL \ + raiz de recurso proposta. Salvar esta URL poderá remover seu acesso ao Jenkins. +ApiTokenProperty.ChangeToken.SuccessHidden=
Atualizado. Você precisa fazer a entrada com o usuário para ser o \ passe
-ResourceDomainConfiguration.DisplayName=Recomenda\u00E7\u00E3o de dom\u00EDnio de recurso -ApiTokenProperty.ChangeToken.CapabilityNotAllowed=
Capacidade de gerar um passe legado sem a exist\u00EAncia de um \ - pr\u00E9vio est\u00E1 atualmente desabilitada pela configura\u00E7\u00E3o de seguran\u00E7a
+ResourceDomainConfiguration.DisplayName=Recomendação de domínio de recurso +ApiTokenProperty.ChangeToken.CapabilityNotAllowed=
Capacidade de gerar um passe legado sem a existência de um \ + prévio está atualmente desabilitada pela configuração de segurança
ApiTokenProperty.LegacyTokenName=Passe legado -ResourceDomainConfiguration.Exception=Uma exce\u00E7\u00E3o ocorreu com a URL: {0} -ApiTokenProperty.NoLegacyToken=Este usu\u00E1rio atualmente n\u00E3o tem um passe legado -ResourceDomainConfiguration.ThisJenkins=A URL especificada \u00E9 um candidato v\u00E1lido para URL raiz de recurso. -ResourceDomainConfiguration.InvalidRootURL=A URL do Jenkins est\u00E1 configurada para um valor inv\u00E1lido, por favor relate \ +ResourceDomainConfiguration.Exception=Uma exceção ocorreu com a URL: {0} +ApiTokenProperty.NoLegacyToken=Este usuário atualmente não tem um passe legado +ResourceDomainConfiguration.ThisJenkins=A URL especificada é um candidato válido para URL raiz de recurso. +ResourceDomainConfiguration.InvalidRootURL=A URL do Jenkins está configurada para um valor inválido, por favor relate \ uma falha: {0} -ResourceDomainConfiguration.OtherJenkins=A URL especificada aponta para uma inst\u00E2ncia Jenkins diferente. +ResourceDomainConfiguration.OtherJenkins=A URL especificada aponta para uma instância Jenkins diferente. ResourceDomainConfiguration.ResourceResponse=A URL especifica aponta para uma URL raiz de recurso previamente \ configurada. diff --git a/core/src/main/resources/jenkins/security/Messages_sr.properties b/core/src/main/resources/jenkins/security/Messages_sr.properties index b5304f6aa5c0..0f698a102773 100644 --- a/core/src/main/resources/jenkins/security/Messages_sr.properties +++ b/core/src/main/resources/jenkins/security/Messages_sr.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -ApiTokenProperty.DisplayName=\u0422\u043E\u043A\u0435\u043D \u0437\u0430 \u0410\u041F\u0418 -ApiTokenProperty.ChangeToken.TokenIsHidden=\u0422\u043E\u043A\u0435\u043D \u0458\u0435 \u0441\u0430\u043A\u0440\u0438\u0432\u0435\u043D -ApiTokenProperty.ChangeToken.Success=
\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u043D\u043E. \u041F\u0440\u043E\u0432\u0435\u0440\u0438\u0442\u0435 \u043D\u043E\u0432\u0438 \u0442\u043E\u043A\u0435\u043D \u043F\u0440\u0438\u043A\u0430\u0437\u0430\u043D \u0438\u0437\u043D\u0430\u0434.
-ApiTokenProperty.ChangeToken.SuccessHidden=
\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u043D\u043E. \u041C\u043E\u0440\u0430\u0442\u0435 \u0441\u0435 \u043F\u0440\u0438\u0458\u0430\u0432\u0438\u0442\u0438 \u043A\u0430\u043E \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A \u0434\u0430 \u0431\u0438 \u043C\u043E\u0433\u043B\u0438 \u043F\u0440\u043E\u0432\u0435\u0440\u0438\u0442\u0438 \u0442\u043E\u043A\u0435\u043D.
-RekeySecretAdminMonitor.DisplayName=\u041F\u043E\u043D\u043E\u0432\u043E \u0445\u0435\u0448\u0438\u0440\u0430\u045A\u0435 +ApiTokenProperty.DisplayName=Токен за ÐПИ +ApiTokenProperty.ChangeToken.TokenIsHidden=Токен је Ñакривен +ApiTokenProperty.ChangeToken.Success=
Ðжурирано. Проверите нови токен приказан изнад.
+ApiTokenProperty.ChangeToken.SuccessHidden=
Ðжурирано. Морате Ñе пријавити као кориÑник да би могли проверити токен.
+RekeySecretAdminMonitor.DisplayName=Поново хеширање diff --git a/core/src/main/resources/jenkins/security/Messages_zh_TW.properties b/core/src/main/resources/jenkins/security/Messages_zh_TW.properties index 825a64b9f694..4a65b17bc563 100644 --- a/core/src/main/resources/jenkins/security/Messages_zh_TW.properties +++ b/core/src/main/resources/jenkins/security/Messages_zh_TW.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. ApiTokenProperty.DisplayName=API Token -ApiTokenProperty.ChangeToken.Success=
\u5DF2\u66F4\u65B0
-RekeySecretAdminMonitor.DisplayName=\u91D1\u9470\u91CD\u5957 +ApiTokenProperty.ChangeToken.Success=
已更新
+RekeySecretAdminMonitor.DisplayName=金鑰é‡å¥— diff --git a/core/src/main/resources/jenkins/security/QueueItemAuthenticatorConfiguration/config_it.properties b/core/src/main/resources/jenkins/security/QueueItemAuthenticatorConfiguration/config_it.properties index 1c53a9417f12..f4d6edf8cc5c 100644 --- a/core/src/main/resources/jenkins/security/QueueItemAuthenticatorConfiguration/config_it.properties +++ b/core/src/main/resources/jenkins/security/QueueItemAuthenticatorConfiguration/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/security/QueueItemAuthenticatorMonitor/description_pt_BR.properties b/core/src/main/resources/jenkins/security/QueueItemAuthenticatorMonitor/description_pt_BR.properties index fb32fa853151..e4e6b30c3141 100644 --- a/core/src/main/resources/jenkins/security/QueueItemAuthenticatorMonitor/description_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/QueueItemAuthenticatorMonitor/description_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Se o controle de acesso para constru\u00E7\u00F5es n\u00E3o estiver configurado, mostre este aviso explicando o problema. +blurb=Se o controle de acesso para construções não estiver configurado, mostre este aviso explicando o problema. diff --git a/core/src/main/resources/jenkins/security/QueueItemAuthenticatorMonitor/message_it.properties b/core/src/main/resources/jenkins/security/QueueItemAuthenticatorMonitor/message_it.properties index c2d6983ac76c..2f9ed4d3bc73 100644 --- a/core/src/main/resources/jenkins/security/QueueItemAuthenticatorMonitor/message_it.properties +++ b/core/src/main/resources/jenkins/security/QueueItemAuthenticatorMonitor/message_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,37 +21,37 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -anyBuildLaunchedAsSystem=\u274c Alcune compilazioni sono state avviate con le \ +anyBuildLaunchedAsSystem=⌠Alcune compilazioni sono state avviate con le \ credenziali dell''utente interno SYSTEM nonostante sia stato configurato il \ - controllo degli accessi per le compilazioni. È consigliato \ + controllo degli accessi per le compilazioni. È consigliato \ rivedere la configurazione del controllo \ accessi per le compilazioni per assicurarsi che le compilazioni, in \ generale, non siano eseguite con le credenziali dell''utente SYSTEM. blurb=In Jenkins, per impostazione predefinita, le compilazioni sono eseguite \ con le credenziali dell''utente Jenkins virtuale SYSTEM che dispone del \ - controllo completo su Jenkins. Ciò può essere un problema se alcuni utenti \ + controllo completo su Jenkins. Ciò può essere un problema se alcuni utenti \ hanno un accesso limitato o non hanno accesso ad alcuni processi, ma \ - possono configurarne altri. Se questo è il caso, è consigliato installare \ + possono configurarne altri. Se questo è il caso, è consigliato installare \ un componente aggiuntivo che implementi l''autenticazione per le \ compilazioni ed eseguire l''override di quest''impostazione predefinita. Dismiss=Nascondi Learn\ more...=Ulteriori informazioni... -noQueueItemAuthenticatorConfigured=\u274c È possibile operare il controllo \ - accessi per le compilazioni, ma tale funzionalità non è configurata. \ +noQueueItemAuthenticatorConfigured=⌠È possibile operare il controllo \ + accessi per le compilazioni, ma tale funzionalità non è configurata. \ Configurarla nella configurazione globale \ della sicurezza. -noQueueItemAuthenticatorPresent=\u274c Non è presente alcun''implementazione \ - del controllo accessi per le compilazioni. È consigliato installare il \ componente aggiuntivo Autorizza progetto o un altro componente \ aggiuntivo che implementi il punto estensione QueueItemAuthenticator. -notAnyBuildLaunchedAsSystem=\u2705 Non sono state avviate compilazioni con le \ +notAnyBuildLaunchedAsSystem=✅ Non sono state avviate compilazioni con le \ credenziali dell''utente interno SYSTEM, il che indica che la \ - configurazione è completa. -queueItemAuthenticatorConfigured=\u2705 Il controllo accessi per le \ - compilazioni è configurato. -queueItemAuthenticatorPresent=\u2705 È presente un''implementazione del \ + configurazione è completa. +queueItemAuthenticatorConfigured=✅ Il controllo accessi per le \ + compilazioni è configurato. +queueItemAuthenticatorPresent=✅ È presente un''implementazione del \ controllo accessi per le compilazioni. Reset=Reimposta diff --git a/core/src/main/resources/jenkins/security/RekeySecretAdminMonitor/description_pt_BR.properties b/core/src/main/resources/jenkins/security/RekeySecretAdminMonitor/description_pt_BR.properties index 4180276fdcd7..9ff0f6b07610 100644 --- a/core/src/main/resources/jenkins/security/RekeySecretAdminMonitor/description_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/RekeySecretAdminMonitor/description_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Informa sobre a necessidade de recriar o chaveamento de segredo devido a vulnerabilidade de seguran\u00E7a corrigida em 2013. +blurb=Informa sobre a necessidade de recriar o chaveamento de segredo devido a vulnerabilidade de segurança corrigida em 2013. diff --git a/core/src/main/resources/jenkins/security/RekeySecretAdminMonitor/message_it.properties b/core/src/main/resources/jenkins/security/RekeySecretAdminMonitor/message_it.properties index 748fc1fd18fa..bdf1de25cd69 100644 --- a/core/src/main/resources/jenkins/security/RekeySecretAdminMonitor/message_it.properties +++ b/core/src/main/resources/jenkins/security/RekeySecretAdminMonitor/message_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -23,25 +23,25 @@ Dismiss=Nascondi pleaseRekeyAsap=A causa di una vulnerabilità di sicurezza scoperta in precedenza, \ - è necessario modificare la chiave crittografica utilizzata per proteggere i \ + rel="noopener noreferrer" target="_blank">una vulnerabilità di sicurezza scoperta in precedenza, \ + è necessario modificare la chiave crittografica utilizzata per proteggere i \ segreti salvati nei file di configurazione su disco. Questa procedura \ esegue la scansione della maggior parte della directory \ $JENKINS_HOME ({0}), trova i dati crittografati e \ li cripta nuovamente con la nuova chiave; tutte queste operazioni \ richiedono del tempo. Si veda questo documento per le implicazioni derivanti dallo \ - scegliere una modalità anziché un''altra (o dal non eseguire \ - quest''operazione). Quest''operazione può essere eseguita in secondo piano \ - in modo sicuro, ma gli utenti più prudenti potrebbero voler eseguire delle \ + scegliere una modalità anziché un''altra (o dal non eseguire \ + quest''operazione). Quest''operazione può essere eseguita in secondo piano \ + in modo sicuro, ma gli utenti più prudenti potrebbero voler eseguire delle \ copie di backup. Re-key\ in\ background\ now=Cripta ora tutti i dati con una nuova chiave in \ secondo piano Re-keying\ currently\ scheduled\ during\ the\ next\ startup=La modifica \ - della chiave è attualmente pianificata al prossimo avvio -rekeyHadProblems=La modifica della chiave è stata completata, ma si sono \ + della chiave è attualmente pianificata al prossimo avvio +rekeyHadProblems=La modifica della chiave è stata completata, ma si sono \ verificati dei problemi. Controllare il log. -rekeyInProgress=La modifica della chiave è in corso. È \ +rekeyInProgress=La modifica della chiave è in corso. È \ possibile controllare il log. rekeySuccessful=I segreti salvati nella directory $JENKINS_HOME \ sono stati criptati con successo con la nuova chiave. \ diff --git a/core/src/main/resources/jenkins/security/RekeySecretAdminMonitor/message_sr.properties b/core/src/main/resources/jenkins/security/RekeySecretAdminMonitor/message_sr.properties index 2e4c2213a36e..0f3190504f6c 100644 --- a/core/src/main/resources/jenkins/security/RekeySecretAdminMonitor/message_sr.properties +++ b/core/src/main/resources/jenkins/security/RekeySecretAdminMonitor/message_sr.properties @@ -1,19 +1,19 @@ # This file is under the MIT License by authors pleaseRekeyAsap=\ - \u0417\u0431\u043E\u0433 \u043E\u0442\u0440\u0438\u0432\u0435\u043D\u0435 \u0440\u0430\u045A\u0438\u0432\u043E\u0441\u0442\u0438, \u043C\u043E\u0440\u0430\u043C\u043E \ - \u043F\u0440\u043E\u043C\u0435\u043D\u0438\u0442\u0438 \u043A\u0459\u0443\u0447 \u0437\u0430 \u0448\u0438\u0444\u0440\u043E\u0432\u0430\u045A\u0435 \u0442\u0430\u0458\u043D\u0438 \u0434\u0430 \u0434\u0438\u0441\u043A\u0443. \ - \u0422\u0430\u0458 \u043F\u0440\u043E\u0446\u0435\u0441 \u043F\u0440\u0435\u0442\u0440\u0430\u0436\u0438 \u0432\u0435\u043B\u0438\u043A\u0438 \u0434\u0435\u043E \u0432\u0430\u0448\u0435\u0433 $JENKINS_HOME ({0}) \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C\u0430, \ - \u0438 \u043F\u043E\u043D\u043E\u0432\u043E \u0438\u0437\u0433\u0440\u0430\u0447\u0443\u043D\u0430 \u0445\u0435\u0448 \u0437\u0430 \u043F\u0440\u043E\u043D\u0430\u0452\u0435\u043D\u0435 \u043F\u043E\u0434\u0430\u0442\u043A\u0435, \u0448\u0442\u043E \u043C\u043E\u0436\u0435 \u043F\u0440\u0438\u043B\u0438\u0447\u043D\u043E \u0434\u0443\u0433\u043E \u0442\u0440\u0430\u0458\u0430\u0442\u0438. \ - \u041F\u0440\u043E\u0447\u0438\u0442\u0430\u0458\u0442\u0435 \u043E\u0432\u0430\u0458 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442 \u0433\u0434\u0435 \u0441\u0435 \u043F\u0438\u0448\u0435 \u043E \u0432\u0438\u0448\u0435 \u0438\u043C\u043F\u043B\u0438\u043A\u0430\u0446\u0438\u0458\u0430 \u0438 \u0434\u0440\u0443\u0433\u0430\u0447\u0438\u0458\u0435 \u043D\u0430\u0447\u0438\u043D\u0435 \ - \u041E\u0432\u0430 \u043E\u043F\u0435\u0440\u0430\u0446\u0438\u0458\u0430 \u0441\u0435 \u043C\u043E\u0436\u0435 \u0431\u0435\u0437\u0431\u0435\u0434\u043D\u043E \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0438 \u0443 \u043F\u043E\u0437\u0430\u0434\u0438\u043D\u0438, \u043C\u0435\u0452\u0443\u0442\u0438\u043C \u043E\u0431\u0430\u0437\u0440\u0438\u0432\u0438 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438 \ - \u0431\u0438 \u043C\u043E\u0433\u043B\u0438 \u043D\u0430\u043F\u0440\u0430\u0432\u0438\u0442\u0438 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u0435 \u043A\u043E\u043F\u0438\u0458\u0435 \u043F\u043E\u0434\u0430\u0446\u0438\u043C\u0430. + Због отривене рањивоÑти, морамо \ + променити кључ за шифровање тајни да диÑку. \ + Тај Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð¿Ñ€ÐµÑ‚Ñ€Ð°Ð¶Ð¸ велики део вашег $JENKINS_HOME ({0}) директоријума, \ + и поново изграчуна хеш за пронађене податке, што може прилично дуго трајати. \ + Прочитајте овај документ где Ñе пише о више импликација и другачије начине \ + Ова операција Ñе може безбедно извршити у позадини, међутим обазриви кориÑници \ + би могли направити резервне копије подацима. -rekeyInProgress=\u041F\u043E\u043D\u043E\u0432\u043E \u0445\u0435\u0448\u0438\u0440\u0430\u045A\u0435 \u0458\u0435 \u0443 \u0442\u043E\u043A\u0443. \u041C\u043E\u0436\u0435\u0442\u0435 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0438 \u0436\u0443\u0440\u043D\u0430\u043B. +rekeyInProgress=Поново хеширање је у току. Можете прегледајти журнал. rekeySuccessful=\ - Secrets in your $JENKINS_HOME \u0458\u0435 \u0443\u0441\u043F\u0435\u0448\u043D\u043E \u0438\u0437\u0445\u0435\u0448\u0438\u0440\u0430\u043D\u043E. \ - \u041C\u043E\u043B\u0438\u043C\u043E \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 \u0436\u0443\u0440\u043D\u0430\u043B, \u043F\u043E\u0442\u0432\u0440\u0434\u0438\u0442\u0435, \u0438 \u043D\u0430\u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u0438\u043B\u0438 \u043F\u043E\u043D\u043E\u0432\u043E \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435. + Secrets in your $JENKINS_HOME је уÑпешно изхеширано. \ + Молимо прегледајте журнал, потврдите, и наÑтавите или поново извршите. rekeyHadProblems=\ - \u041F\u043E\u043D\u043E\u0432\u043E \u0445\u0435\u0448\u0438\u0440\u0430\u045A\u0435 \u0458\u0435 \u0433\u043E\u0442\u043E\u0432\u043E, \u043C\u0435\u0452\u0443\u0442\u0438\u043C \u0431\u0438\u043B\u043E \u0458\u0435 \u0433\u0440\u0435\u0448\u0430\u043A\u0430. \u041C\u043E\u043B\u0438\u043C\u043E \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 \u0436\u0443\u0440\u043D\u0430\u043B. + Поново хеширање је готово, међутим било је грешака. Молимо прегледајте журнал. diff --git a/core/src/main/resources/jenkins/security/RekeySecretAdminMonitor/message_zh_TW.properties b/core/src/main/resources/jenkins/security/RekeySecretAdminMonitor/message_zh_TW.properties index bcc681e1754d..0a5da78c915d 100644 --- a/core/src/main/resources/jenkins/security/RekeySecretAdminMonitor/message_zh_TW.properties +++ b/core/src/main/resources/jenkins/security/RekeySecretAdminMonitor/message_zh_TW.properties @@ -21,22 +21,22 @@ # THE SOFTWARE. pleaseRekeyAsap=\ - \u70ba\u4e86\u4fee\u6b63\u5148\u524d\u767c\u73fe\u7684\u5b89\u5168\u6027\u5f31\u9ede\uff0c\ - \u7528\u4f86\u4fdd\u8b77\u78c1\u789f\u4e0a\u542b\u6a5f\u654f\u8a2d\u5b9a\u6a94\u7684\u52a0\u5bc6\u91d1\u9470\u4e00\u5b9a\u8981\u66f4\u6539\u3002\ - \u6574\u500b\u7a0b\u5e8f\u6703\u6383\u63cf\u60a8 $JENKINS_HOME ({0}) \u4e2d\u7684\u5927\u90e8\u5206\u6a94\u6848\uff0c\u627e\u51fa\u52a0\u5bc6\u7684\u8cc7\u6599\u91cd\u5957\u91d1\u9470\uff0c\u53ef\u80fd\u8981\u82b1\u4e0a\u4e0d\u5c11\u6642\u9593\u3002\ - \u9019\u4efd\u6587\u4ef6\u8aaa\u660e\u4e86\u5be6\u65bd (\u6216\u4ec0\u9ebc\u4e8b\u90fd\u4e0d\u505a) \u9019\u9805\u63aa\u65bd\u7684\u65b9\u6cd5\u53ca\u5f71\u97ff\u3002\ - \u9019\u9805\u4f5c\u696d\u53ef\u4ee5\u5b89\u5168\u7684\u5728\u80cc\u666f\u57f7\u884c\uff0c\u4e0d\u904e\u5982\u679c\u60a8\u5f88\u8b39\u614e\uff0c\u5efa\u8b70\u60a8\u5148\u505a\u597d\u5099\u4efd\u3002 + 為了修正先å‰ç™¼ç¾çš„安全性弱點,\ + 用來ä¿è­·ç£ç¢Ÿä¸Šå«æ©Ÿæ•è¨­å®šæª”的加密金鑰一定è¦æ›´æ”¹ã€‚\ + 整個程åºæœƒæŽƒæ您 $JENKINS_HOME ({0}) 中的大部分檔案,找出加密的資料é‡å¥—金鑰,å¯èƒ½è¦èŠ±ä¸Šä¸å°‘時間。\ + 這份文件說明了實施 (或什麼事都ä¸åš) 這項措施的方法åŠå½±éŸ¿ã€‚\ + 這項作業å¯ä»¥å®‰å…¨çš„在背景執行,ä¸éŽå¦‚果您很謹慎,建議您先åšå¥½å‚™ä»½ã€‚ -rekeyInProgress=\u91d1\u9470\u91cd\u5957\u4e2d\u3002\u60a8\u53ef\u4ee5\u67e5\u770b\u8a18\u9304\u3002 +rekeyInProgress=金鑰é‡å¥—中。您å¯ä»¥æŸ¥çœ‹è¨˜éŒ„。 rekeySuccessful=\ - \u60a8 $JENKINS_HOME \u4e2d\u7684\u6a5f\u654f\u6a94\u6848\u91cd\u5957\u91d1\u9470\u6210\u529f\u3002\ - \u8acb\u67e5\u770b\u8a18\u9304\uff0c\u78ba\u8a8d\u662f\u5426\u771f\u7684\u6210\u529f\uff0c\u518d\u6c7a\u5b9a\u8981\u7565\u904e\u6216\u662f\u91cd\u8dd1\u4e00\u6b21\u3002 + 您 $JENKINS_HOME 中的機æ•æª”案é‡å¥—金鑰æˆåŠŸã€‚\ + 請查看記錄,確èªæ˜¯å¦çœŸçš„æˆåŠŸï¼Œå†æ±ºå®šè¦ç•¥éŽæˆ–是é‡è·‘一次。 rekeyHadProblems=\ - \u91d1\u9470\u91cd\u5957\u5b8c\u6210\uff0c\u4f46\u662f\u9047\u5230\u4e00\u4e9b\u554f\u984c\u3002\u8acb\u67e5\u770b\u8a18\u9304\u3002 + 金鑰é‡å¥—完æˆï¼Œä½†æ˜¯é‡åˆ°ä¸€äº›å•é¡Œã€‚請查看記錄。 -Re-key\ in\ background\ now=\u99ac\u4e0a\u5728\u80cc\u666f\u91cd\u5957\u91d1\u9470 -Re-keying\ currently\ scheduled\ during\ the\ next\ startup=\u5df2\u7d93\u6392\u5b9a\u5728\u4e0b\u6b21\u555f\u52d5\u5f8c\u91cd\u5957\u91d1\u9470 -Schedule\ a\ re-key\ during\ the\ next\ startup=\u6392\u7a0b\u5728\u4e0b\u6b21\u555f\u52d5\u5f8c\u91cd\u5957\u91d1\u9470 -Dismiss\ this\ message=\u5ffd\u7565\u9019\u500b\u8a0a\u606f +Re-key\ in\ background\ now=馬上在背景é‡å¥—金鑰 +Re-keying\ currently\ scheduled\ during\ the\ next\ startup=已經排定在下次啟動後é‡å¥—金鑰 +Schedule\ a\ re-key\ during\ the\ next\ startup=排程在下次啟動後é‡å¥—金鑰 +Dismiss\ this\ message=å¿½ç•¥é€™å€‹è¨Šæ¯ diff --git a/core/src/main/resources/jenkins/security/ResourceDomainConfiguration/config_it.properties b/core/src/main/resources/jenkins/security/ResourceDomainConfiguration/config_it.properties index 534ba6887b31..2aed907f20a6 100644 --- a/core/src/main/resources/jenkins/security/ResourceDomainConfiguration/config_it.properties +++ b/core/src/main/resources/jenkins/security/ResourceDomainConfiguration/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/security/ResourceDomainConfiguration/config_pt_BR.properties b/core/src/main/resources/jenkins/security/ResourceDomainConfiguration/config_pt_BR.properties index 7e5c2dde4721..6341d92d06f1 100644 --- a/core/src/main/resources/jenkins/security/ResourceDomainConfiguration/config_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/ResourceDomainConfiguration/config_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Resource\ Root\ URL=URL\ do\ recurso\ ra\u00EDz -Serve\ resource\ files\ from\ another\ domain=Serve\ arquivos\ de\ recurso\ de\ outro\ dom\u00EDnio +Resource\ Root\ URL=URL\ do\ recurso\ raíz +Serve\ resource\ files\ from\ another\ domain=Serve\ arquivos\ de\ recurso\ de\ outro\ domínio diff --git a/core/src/main/resources/jenkins/security/ResourceDomainRecommendation/description_pt_BR.properties b/core/src/main/resources/jenkins/security/ResourceDomainRecommendation/description_pt_BR.properties index a25e4682f3bf..a8c753535747 100644 --- a/core/src/main/resources/jenkins/security/ResourceDomainRecommendation/description_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/ResourceDomainRecommendation/description_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Informa sobre a URL do recurso ra\u00EDz se o cabe\u00E7alho HTTP Content-Security-Policy para recursos controlados pelo usu\u00E1rio servidos pelo Jenkins tem um valor customizado. +blurb=Informa sobre a URL do recurso raíz se o cabeçalho HTTP Content-Security-Policy para recursos controlados pelo usuário servidos pelo Jenkins tem um valor customizado. diff --git a/core/src/main/resources/jenkins/security/ResourceDomainRecommendation/message_it.properties b/core/src/main/resources/jenkins/security/ResourceDomainRecommendation/message_it.properties index 7e1f7d0b1c54..f115186d93c6 100644 --- a/core/src/main/resources/jenkins/security/ResourceDomainRecommendation/message_it.properties +++ b/core/src/main/resources/jenkins/security/ResourceDomainRecommendation/message_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,12 +21,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=La Content-Security-Policy predefinita attualmente è sottoposta a \ - override tramite la proprietà di sistema \ +blurb=La Content-Security-Policy predefinita attualmente è sottoposta a \ + override tramite la proprietà di sistema \ hudson.model.DirectoryBrowserSupport.CSP, il che costituisce \ un potenziale problema di sicurezza quando si sfogliano file non \ - attendibili. Come alternativa, è possibile impostare un''URL radice \ - risorse che Jenkins utilizzerà per servire dei file statici senza \ + attendibili. Come alternativa, è possibile impostare un''URL radice \ + risorse che Jenkins utilizzerà per servire dei file statici senza \ aggiungere intestazioni Content-Security-Policy. Dismiss=Nascondi Go\ to\ resource\ root\ URL\ configuration=Vai alla configurazione dell''URL \ diff --git a/core/src/main/resources/jenkins/security/UpdateSiteWarningsConfiguration/config.properties b/core/src/main/resources/jenkins/security/UpdateSiteWarningsConfiguration/config.properties index 9ea3caaae17d..5ce323f12f4e 100644 --- a/core/src/main/resources/jenkins/security/UpdateSiteWarningsConfiguration/config.properties +++ b/core/src/main/resources/jenkins/security/UpdateSiteWarningsConfiguration/config.properties @@ -24,6 +24,6 @@ warning.core = Jenkins core: {0} warning.plugin = {0}: {1} blurb = This section allows you to suppress warnings, applicable to your Jenkins \ - configuration, provided by the updates sites. If you do, they won\u2019t be shown by \ + configuration, provided by the updates sites. If you do, they won’t be shown by \ the Update Site Warnings administrative monitor. \ Checked warnings are reported (the default), unchecked warnings are hidden. diff --git a/core/src/main/resources/jenkins/security/UpdateSiteWarningsConfiguration/config_it.properties b/core/src/main/resources/jenkins/security/UpdateSiteWarningsConfiguration/config_it.properties index b04a8c685316..226ae5089704 100644 --- a/core/src/main/resources/jenkins/security/UpdateSiteWarningsConfiguration/config_it.properties +++ b/core/src/main/resources/jenkins/security/UpdateSiteWarningsConfiguration/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/description_pt_BR.properties b/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/description_pt_BR.properties index 7b4294e98d78..f6c4374262eb 100644 --- a/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/description_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/description_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Este aviso informa administradores sobre avisos de seguran\u00E7a ativos sobre vers\u00F5es do Jenkins core ou complementos. \ - Ao inv\u00E9s de desabilitar este aviso completamente (incluindo quaisquers problemas futuros), considere desabilitar mensagens espec\u00EDficas na configura\u00E7\u00E3o global de seguran\u00E7a. +blurb=Este aviso informa administradores sobre avisos de segurança ativos sobre versões do Jenkins core ou complementos. \ + Ao invés de desabilitar este aviso completamente (incluindo quaisquers problemas futuros), considere desabilitar mensagens específicas na configuração global de segurança. diff --git a/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/message_es.properties b/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/message_es.properties index 36aa8960d4ca..f3f0a2c63c63 100644 --- a/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/message_es.properties +++ b/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/message_es.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. pluginTitle = {0} {1} -coreTitle = Jenkins {0} programa y librer\u00edas +coreTitle = Jenkins {0} programa y librerías blurb = Advertencias publicadas para los siguientes componentes instalados: -more = Advertencias adicionales ocultas debido a la configuraci\u00f3n de seguridad actual +more = Advertencias adicionales ocultas debido a la configuración de seguridad actual pluginManager.link = Ir al gestor de plugins diff --git a/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/message_fr.properties b/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/message_fr.properties index 420ec0748090..461674462b7e 100644 --- a/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/message_fr.properties +++ b/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/message_fr.properties @@ -23,9 +23,9 @@ pluginTitle = {0} {1} coreTitle = Jenkins {0} logiciel et librairies -blurb = Des avertissements ont été publiés pour ces composants installés : -more = D'autres avertissements sont cachés en raison de la configuration actuelle de sécurité. +blurb = Des avertissements ont été publiés pour ces composants installés : +more = D'autres avertissements sont cachés en raison de la configuration actuelle de sécurité. -pluginManager.link = Aller à la gestion des plugins -configureSecurity.link = Configurer les avertissements affichés +pluginManager.link = Aller à la gestion des plugins +configureSecurity.link = Configurer les avertissements affichés diff --git a/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/message_it.properties b/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/message_it.properties index 98bb2fd84d73..2eaf5780fc14 100644 --- a/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/message_it.properties +++ b/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/message_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/message_ko.properties b/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/message_ko.properties index 8bc95d658530..8e4033c54fbc 100644 --- a/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/message_ko.properties +++ b/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/message_ko.properties @@ -23,9 +23,9 @@ pluginTitle = {0} {1} coreTitle = Jenkins {0} core and libraries -blurb = \uD604\uC7AC \uC124\uCE58\uB41C \uB2E4\uC74C \uAD6C\uC131 \uC694\uC18C\uC5D0 \uB300\uD55C \uACBD\uACE0\uAC00 \uAC8C\uC2DC\uB418\uC5C8\uC2B5\uB2C8\uB2E4: -more = \uD604\uC7AC \uBCF4\uC548 \uAD6C\uC131\uC5D0 \uC758\uD574 \uCD94\uAC00\uC801\uC778 \uACBD\uACE0\uAC00 \uC228\uACA8\uC84C\uC2B5\uB2C8\uB2E4 +blurb = 현재 ì„¤ì¹˜ëœ ë‹¤ìŒ êµ¬ì„± ìš”ì†Œì— ëŒ€í•œ 경고가 게시ë˜ì—ˆìŠµë‹ˆë‹¤: +more = 현재 보안 êµ¬ì„±ì— ì˜í•´ 추가ì ì¸ 경고가 숨겨졌습니다 -pluginManager.link = \uD50C\uB7EC\uADF8\uC778 \uB9E4\uB2C8\uC800\uB85C \uC774\uB3D9 -configureSecurity.link = \uB2E4\uC74C \uACBD\uACE0 \uC911 \uD45C\uC2DC\uD560 \uACBD\uACE0 \uAD6C\uC131 +pluginManager.link = í”ŒëŸ¬ê·¸ì¸ ë§¤ë‹ˆì €ë¡œ ì´ë™ +configureSecurity.link = ë‹¤ìŒ ê²½ê³  중 표시할 경고 구성 diff --git a/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/message_pl.properties b/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/message_pl.properties index 3e6ce7eddf7e..7217fe00bb03 100644 --- a/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/message_pl.properties +++ b/core/src/main/resources/jenkins/security/UpdateSiteWarningsMonitor/message_pl.properties @@ -23,8 +23,8 @@ pluginTitle={0} {1}: coreTitle=Jenkins {0} i kluczowe biblioteki: -blurb=Zosta\u0142y opublikowane ostrze\u017Cenia dla aktualnie zainstalowanych komponent\u00F3w: -more=Pozosta\u0142e ostrze\u017Cenia zosta\u0142y ukryte ze wzgl\u0119du na u\u017Cywan\u0105 konfiguracje bezpiecze\u0144stwa. +blurb=ZostaÅ‚y opublikowane ostrzeżenia dla aktualnie zainstalowanych komponentów: +more=PozostaÅ‚e ostrzeżenia zostaÅ‚y ukryte ze wzglÄ™du na używanÄ… konfiguracje bezpieczeÅ„stwa. -pluginManager.link=Przejd\u017A do managera wtyczek -configureSecurity.link=Skonfiguruj, kt\u00F3re z ostrze\u017Ce\u0144 b\u0119d\u0105 wy\u015Bwietlane +pluginManager.link=Przejdź do managera wtyczek +configureSecurity.link=Skonfiguruj, które z ostrzeżeÅ„ bÄ™dÄ… wyÅ›wietlane diff --git a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyConfiguration/config_it.properties b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyConfiguration/config_it.properties index fd021a7399bf..89a795d82c91 100644 --- a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyConfiguration/config_it.properties +++ b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyConfiguration/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyConfiguration/config_pt_BR.properties b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyConfiguration/config_pt_BR.properties index d53e184e3390..e71dba3c7c08 100644 --- a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyConfiguration/config_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyConfiguration/config_pt_BR.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -creationOfLegacyTokenEnabled=Permite usu\u00E1rios criarem manualmente um passe de API legado (n\u00E3o recomendado) +creationOfLegacyTokenEnabled=Permite usuários criarem manualmente um passe de API legado (não recomendado) API\ Token=Passe\ de\ API -tokenGenerationOnCreationEnabled=Cria um novo passe de API para cada novo usu\u00E1rio criado (n\u00E3o recomendado) -usageStatisticsEnabled=Habilita as estat\u00EDsticas de uso de passe de API +tokenGenerationOnCreationEnabled=Cria um novo passe de API para cada novo usuário criado (não recomendado) +usageStatisticsEnabled=Habilita as estatísticas de uso de passe de API diff --git a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyConfiguration/config_zh_TW.properties b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyConfiguration/config_zh_TW.properties index ace14f4f7312..9e4e39fdde06 100644 --- a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyConfiguration/config_zh_TW.properties +++ b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyConfiguration/config_zh_TW.properties @@ -1,4 +1,4 @@ -tokenGenerationOnCreationEnabled=\u70ba\u6240\u6709\u65b0\u5efa\u7acb\u7684\u4f7f\u7528\u8005\u7522\u751f Legacy API Token\uff08\u4e0d\u5efa\u8b70\uff09 -creationOfLegacyTokenEnabled=\u5141\u8a31\u4f7f\u7528\u8005\u624b\u52d5\u5efa\u7acb Legacy API Token\uff08\u4e0d\u5efa\u8b70\uff09 -usageStatisticsEnabled=\u555f\u7528 API Token \u4f7f\u7528\u60c5\u5f62\u7d71\u8a08 +tokenGenerationOnCreationEnabled=為所有新建立的使用者產生 Legacy API Token(ä¸å»ºè­°ï¼‰ +creationOfLegacyTokenEnabled=å…許使用者手動建立 Legacy API Token(ä¸å»ºè­°ï¼‰ +usageStatisticsEnabled=啟用 API Token 使用情形統計 API\ Token=API Token diff --git a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyDisabledDefaultAdministrativeMonitor/description_pt_BR.properties b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyDisabledDefaultAdministrativeMonitor/description_pt_BR.properties index 81aa87ff5d46..b06e9f490fff 100644 --- a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyDisabledDefaultAdministrativeMonitor/description_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyDisabledDefaultAdministrativeMonitor/description_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Avisa administradores sobre o compartamento legado de gera\u00E7\u00E3o de passes de API para novos usu\u00E1rios. +blurb=Avisa administradores sobre o compartamento legado de geração de passes de API para novos usuários. diff --git a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyDisabledDefaultAdministrativeMonitor/description_zh_TW.properties b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyDisabledDefaultAdministrativeMonitor/description_zh_TW.properties index 688df886e4eb..fe3307908cd4 100644 --- a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyDisabledDefaultAdministrativeMonitor/description_zh_TW.properties +++ b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyDisabledDefaultAdministrativeMonitor/description_zh_TW.properties @@ -1 +1 @@ -blurb=\u8b66\u544a\u7ba1\u7406\u54e1\u6709\u95dc\u820a\u7248\u884c\u70ba\uff1a\u81ea\u52d5\u70ba\u65b0\u4f7f\u7528\u8005\u7522\u751f API Token\u3002 +blurb=警告管ç†å“¡æœ‰é—œèˆŠç‰ˆè¡Œç‚ºï¼šè‡ªå‹•ç‚ºæ–°ä½¿ç”¨è€…產生 API Token。 diff --git a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyDisabledDefaultAdministrativeMonitor/message_it.properties b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyDisabledDefaultAdministrativeMonitor/message_it.properties index c62b30bbc182..141aba575f80 100644 --- a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyDisabledDefaultAdministrativeMonitor/message_it.properties +++ b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyDisabledDefaultAdministrativeMonitor/message_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -24,9 +24,9 @@ Disable\ automatic\ generation\ of\ legacy\ API\ tokens=Disabilita \ generazione automatica dei token API legacy Dismiss=Nascondi -warningMessage=Per gli utenti di nuova creazione verrà generato \ - automaticamente un token API legacy.
Questo comportamento è supportato \ - per motivi di retrocompatibilità, ma i token API legacy sono deprecati e \ +warningMessage=Per gli utenti di nuova creazione verrà generato \ + automaticamente un token API legacy.
Questo comportamento è supportato \ + per motivi di retrocompatibilità, ma i token API legacy sono deprecati e \ non sono raccomandati per un utilizzo a lungo termine.
Gli utenti \ dovrebbero generare token API su richiesta dalla pagina di configurazione \ utente. diff --git a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyDisabledDefaultAdministrativeMonitor/message_pt_BR.properties b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyDisabledDefaultAdministrativeMonitor/message_pt_BR.properties index 76c468d81c49..2d529c5c8cd1 100644 --- a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyDisabledDefaultAdministrativeMonitor/message_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyDisabledDefaultAdministrativeMonitor/message_pt_BR.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -warningMessage=Um passe de API legado ser\u00E1 gerado automaticamente para novos usu\u00E1rios criados.
\ - Este comportamento \u00E9 suportado por raz\u00F5es de compatibilidade retroativa mas os passes de API legados est\u00E3o descontinuados e\ - n\u00E3o s\u00E3o recomendados para uso de longo termo.
\ - Usu\u00E1rios deveriam gerar novos passes de API conforme necess\u00E1rio a partir da p\u00E1gina de configura\u00E7\u00E3o de usu\u00E1rio. +warningMessage=Um passe de API legado será gerado automaticamente para novos usuários criados.
\ + Este comportamento é suportado por razões de compatibilidade retroativa mas os passes de API legados estão descontinuados e\ + não são recomendados para uso de longo termo.
\ + Usuários deveriam gerar novos passes de API conforme necessário a partir da página de configuração de usuário. Dismiss=Dispensar -Disable\ automatic\ generation\ of\ legacy\ API\ tokens=Disabilitar\ gera\u00E7\u00E3o\ autom\u00E1tica\ de\ passes\ de\ API\ legados +Disable\ automatic\ generation\ of\ legacy\ API\ tokens=Disabilitar\ geração\ automática\ de\ passes\ de\ API\ legados diff --git a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyDisabledDefaultAdministrativeMonitor/message_zh_TW.properties b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyDisabledDefaultAdministrativeMonitor/message_zh_TW.properties index e73c9d78a6c3..a287b1718783 100644 --- a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyDisabledDefaultAdministrativeMonitor/message_zh_TW.properties +++ b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyDisabledDefaultAdministrativeMonitor/message_zh_TW.properties @@ -1,3 +1,3 @@ -warningMessage=\u5c07\u6703\u81ea\u52d5\u70ba\u65b0\u5efa\u7acb\u7684\u4f7f\u7528\u8005\u7522\u751f Legacy API Token\u3002
\u6b64\u884c\u70ba\u662f\u70ba\u4e86\u652f\u63f4\u5411\u4e0b\u76f8\u5bb9\uff0c\u4f46 Legacy API Token \u5df2\u88ab\u6368\u68c4\u4e14\u4e0d\u5efa\u8b70\u9577\u671f\u4f7f\u7528\u3002
\u4f7f\u7528\u8005\u61c9\u8a72\u6539\u70ba\u6309\u9700\u7522\u751f\uff0c\u5230\u4f7f\u7528\u8005\u8a2d\u5b9a\u9801\u9762\u7522\u751f API Token\u3002 -Disable\ automatic\ generation\ of\ legacy\ API\ tokens=\u505c\u7528\u81ea\u52d5\u7522\u751f Legacy API Token -Dismiss=\u4e0d\u7ba1 +warningMessage=將會自動為新建立的使用者產生 Legacy API Token。
此行為是為了支æ´å‘下相容,但 Legacy API Token 已被æ¨æ£„且ä¸å»ºè­°é•·æœŸä½¿ç”¨ã€‚
使用者應該改為按需產生,到使用者設定é é¢ç”¢ç”Ÿ API Token。 +Disable\ automatic\ generation\ of\ legacy\ API\ tokens=åœç”¨è‡ªå‹•ç”¢ç”Ÿ Legacy API Token +Dismiss=ä¸ç®¡ diff --git a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor/description_pt_BR.properties b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor/description_pt_BR.properties index 9d570f54609a..e4da9433556d 100644 --- a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor/description_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor/description_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb = Avisa administradores sobre o comportamento legado de permitir usu\u00E1rios de gerar novos passes de API legados. +blurb = Avisa administradores sobre o comportamento legado de permitir usuários de gerar novos passes de API legados. diff --git a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor/description_zh_TW.properties b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor/description_zh_TW.properties index 7734f8d7c4be..7f7bf855afaf 100644 --- a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor/description_zh_TW.properties +++ b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor/description_zh_TW.properties @@ -1 +1 @@ -blurb=\u8b66\u544a\u7ba1\u7406\u54e1\u6709\u95dc\u820a\u7248\u884c\u70ba\uff1a\u5141\u8a31\u4f7f\u7528\u8005\u5efa\u7acb Legacy API Token\u3002 +blurb=警告管ç†å“¡æœ‰é—œèˆŠç‰ˆè¡Œç‚ºï¼šå…許使用者建立 Legacy API Token。 diff --git a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor/message_it.properties b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor/message_it.properties index 6be503b36091..3737dda4cc6f 100644 --- a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor/message_it.properties +++ b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor/message_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -25,7 +25,7 @@ Dismiss=Nascondi Prevent\ users\ from\ manually\ creating\ legacy\ API\ tokens=Impedisci agli \ utenti di creare manualmente token API legacy warningMessage=Gli utenti senza token API legacy sono in grado di generare un \ - nuovo token legacy.
Questo comportamento è supportato per motivi di \ - retrocompatibilità, ma i token API legacy sono deprecati e non sono \ + nuovo token legacy.
Questo comportamento è supportato per motivi di \ + retrocompatibilità, ma i token API legacy sono deprecati e non sono \ raccomandati per un utilizzo a lungo termine.
Gli utenti dovrebbero \ generare token API su richiesta dalla pagina di configurazione utente. diff --git a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor/message_pt_BR.properties b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor/message_pt_BR.properties index 9dfdafb8d8f7..14b78b7d1ae9 100644 --- a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor/message_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor/message_pt_BR.properties @@ -19,9 +19,9 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -warningMessage=Usu\u00E1rios sem passes de API legados podem gerar um novo passe legado.
\ -Este comportamento \u00E9 suportado por compatibilidade retroativa, mas os passes de API legados est\u00E3o descontinuados e \ -n\u00E3o s\u00E3o recomendados para uso de longo termo.
\ -Usu\u00E1rios deveriam, pelo contr\u00E1rio, gerar passes de API conforme necess\u00E1rio da p\u00E1gina de configura\u00E7\u00E3o do usu\u00E1rio. +warningMessage=Usuários sem passes de API legados podem gerar um novo passe legado.
\ +Este comportamento é suportado por compatibilidade retroativa, mas os passes de API legados estão descontinuados e \ +não são recomendados para uso de longo termo.
\ +Usuários deveriam, pelo contrário, gerar passes de API conforme necessário da página de configuração do usuário. Dismiss=Dispensar -Prevent\ users\ from\ manually\ creating\ legacy\ API\ tokens=Previne\ usu\u00E1rios\ de\ manualmente\ criar\ passes\ de\ API\ legados +Prevent\ users\ from\ manually\ creating\ legacy\ API\ tokens=Previne\ usuários\ de\ manualmente\ criar\ passes\ de\ API\ legados diff --git a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor/message_zh_TW.properties b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor/message_zh_TW.properties index 391d7f79d235..e1acde20089e 100644 --- a/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor/message_zh_TW.properties +++ b/core/src/main/resources/jenkins/security/apitoken/ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor/message_zh_TW.properties @@ -1,3 +1,3 @@ -warningMessage=\u6c92\u6709 Legacy API Token \u7684\u4f7f\u7528\u8005\u53ef\u4ee5\u7522\u751f\u65b0 Legacy Token\u3002
\u6b64\u884c\u70ba\u662f\u70ba\u4e86\u652f\u63f4\u5411\u4e0b\u76f8\u5bb9\uff0c\u4f46 Legacy API Token \u5df2\u88ab\u6368\u68c4\u4e14\u4e0d\u5efa\u8b70\u9577\u671f\u4f7f\u7528\u3002
\u4f7f\u7528\u8005\u61c9\u8a72\u6539\u70ba\u6309\u9700\u7522\u751f\uff0c\u5230\u4f7f\u7528\u8005\u8a2d\u5b9a\u9801\u9762\u7522\u751f API Token\u3002 -Prevent\ users\ from\ manually\ creating\ legacy\ API\ tokens=\u9632\u6b62\u4f7f\u7528\u8005\u624b\u52d5\u5efa\u7acb Legacy API Token -Dismiss=\u4e0d\u7ba1 +warningMessage=沒有 Legacy API Token 的使用者å¯ä»¥ç”¢ç”Ÿæ–° Legacy Token。
此行為是為了支æ´å‘下相容,但 Legacy API Token 已被æ¨æ£„且ä¸å»ºè­°é•·æœŸä½¿ç”¨ã€‚
使用者應該改為按需產生,到使用者設定é é¢ç”¢ç”Ÿ API Token。 +Prevent\ users\ from\ manually\ creating\ legacy\ API\ tokens=防止使用者手動建立 Legacy API Token +Dismiss=ä¸ç®¡ diff --git a/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/description_pt_BR.properties b/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/description_pt_BR.properties index 03f18529ac2e..359c83bcf383 100644 --- a/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/description_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/description_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Avisa administradores sobre a presen\u00E7a de passes de API legados na configura\u00E7\u00E3o de alguns usu\u00E1rios. +blurb=Avisa administradores sobre a presença de passes de API legados na configuração de alguns usuários. diff --git a/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/description_zh_TW.properties b/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/description_zh_TW.properties index 977c57954827..f79aecab9ff0 100644 --- a/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/description_zh_TW.properties +++ b/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/description_zh_TW.properties @@ -1 +1 @@ -blurb=\u8b66\u544a\u7ba1\u7406\u54e1\u6709\u95dc\u67d0\u4e9b\u4f7f\u7528\u8005\u555f\u7528\u4e86 Legacy API Token\u3002 +blurb=警告管ç†å“¡æœ‰é—œæŸäº›ä½¿ç”¨è€…啟用了 Legacy API Token。 diff --git a/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/manage_it.properties b/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/manage_it.properties index d17ed1f191c2..f7ae23dd45b1 100644 --- a/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/manage_it.properties +++ b/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/manage_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -32,16 +32,16 @@ contextMessage=I seguenti utenti hanno un token API legacy. Dal momento che i \ Fresh\ token=Token aggiornato HasFreshToken=Token aggiornato? HasFreshToken_ok_tooltip=Per quest''utente esiste un token aggiornato -HasFreshToken_tooltip=Un token aggiornato è uno che è stato creato \ - utilizzando il nuovo sistema dopo l''utilizzo più recente del token legacy \ +HasFreshToken_tooltip=Un token aggiornato è uno che è stato creato \ + utilizzando il nuovo sistema dopo l''utilizzo più recente del token legacy \ dell''utente.\nNota: a ogni riavvio di Jenkins le date di creazione dei \ token legacy sono reimpostate, il che significa che le date per tali token \ non saranno accurate. HasFreshToken_warning_tooltip=Per quest''utente non esistono token aggiornati HasMoreRecentlyUsedToken=Token recente? HasMoreRecentlyUsedToken_ok_tooltip=Per quest''utente esiste un token recente -HasMoreRecentlyUsedToken_tooltip=Un token utilizzato di recente è un token \ - che è stato creato utilizzando il nuovo sistema e utilizzato più di recente \ +HasMoreRecentlyUsedToken_tooltip=Un token utilizzato di recente è un token \ + che è stato creato utilizzando il nuovo sistema e utilizzato più di recente \ rispetto al token legacy dell''utente.\nNota: a ogni riavvio di Jenkins le \ date di creazione dei token legacy che non sono mai stati utilizzati sono \ reimpostate, il che significa che la data potrebbe non essere accurata. diff --git a/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/manage_pt_BR.properties b/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/manage_pt_BR.properties index 596656b60557..bf85dbaea9b2 100644 --- a/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/manage_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/manage_pt_BR.properties @@ -21,49 +21,49 @@ # THE SOFTWARE. Recently\ used\ token=Passe recentemente usado -NoLastUse=N\u00E3o h\u00E1 uma data de \u00FAltimo uso para este passe +NoLastUse=Não há uma data de último uso para este passe RevokeAllSelected=Revogar o(s) passe(s) selecionados -HasMoreRecentlyUsedToken_warning_tooltip=Nenhum passe recente existe para este usu\u00E1rio -HasFreshToken=O passe \u00E9 recente? +HasMoreRecentlyUsedToken_warning_tooltip=Nenhum passe recente existe para este usuário +HasFreshToken=O passe é recente? No\ recently\ used\ token=Nenhum passe recentemente usado -RevokeAllSelected_nothing=Nenhum passe est\u00E1 selecionado, por favor selecione pelo menos um para revogar -HasFreshToken_warning_tooltip=Nenhum passe recente existe para este usu\u00E1rio -RevokeAllSelected_confirm=Voc\u00EA tem certeza que quer revogar todos os %num% passes selecionado(s) -UserFullName=Nome completo do usu\u00E1rio +RevokeAllSelected_nothing=Nenhum passe está selecionado, por favor selecione pelo menos um para revogar +HasFreshToken_warning_tooltip=Nenhum passe recente existe para este usuário +RevokeAllSelected_confirm=Você tem certeza que quer revogar todos os %num% passes selecionado(s) +UserFullName=Nome completo do usuário only\ recent=somente recentes Fresh\ token=Atualizar passe all=tudo -UserId=ID do usu\u00E1rio +UserId=ID do usuário Select=Selecionar HasMoreRecentlyUsedToken_tooltip=Um passe recentemente usado foi criado usando o novo sistema \ -e usado mais recentemente que o passe legado do usu\u00e1rio. \n\ -Nota: a data da cria\u00E7\u00E3o do passe legado que nunca foram usuados s\u00E3o toda vez que o Jenkins \u00E9 reiniciado, \ -o que significa que a data pode n\u00e3o ser precisa. +e usado mais recentemente que o passe legado do usuário. \n\ +Nota: a data da criação do passe legado que nunca foram usuados são toda vez que o Jenkins é reiniciado, \ +o que significa que a data pode não ser precisa. title=Gerenciar uso de passes de API legados -NoImpactedUser=N\u00E3o h\u00E1 usu\u00E1rios com passes legados +NoImpactedUser=Não há usuários com passes legados TokenName=Nome do passe No\ fresh\ token=Nenhum passe recente -HasMoreRecentlyUsedToken=H\u00E1 passe mais recente? -HasFreshToken_ok_tooltip=Um passe recente existe para este usu\u00E1rio -HasMoreRecentlyUsedToken_ok_tooltip=Um passe mais recente existe para este usu\u00E1rio +HasMoreRecentlyUsedToken=Há passe mais recente? +HasFreshToken_ok_tooltip=Um passe recente existe para este usuário +HasMoreRecentlyUsedToken_ok_tooltip=Um passe mais recente existe para este usuário NumOfUse=# de usos -NoCreationDate=N\u00E3o h\u00E1 data de cria\u00E7\u00E3o para este passe +NoCreationDate=Não há data de criação para este passe NoCreationDateValue=Desconhecido -recommendationMessage=Por tais raz\u00F5es, n\u00F3s recomendados a voc\u00EA: \ +recommendationMessage=Por tais razões, nós recomendados a você: \
    \
  • revogar os passes que nunca foram usados
  • \ -
  • pe\u00E7a aos usu\u00E1rios que est\u00E3o usando passes legados para gerarem um passe usando o novo sistema e revogar seus passes legados
  • \ +
  • peça aos usuários que estão usando passes legados para gerarem um passe usando o novo sistema e revogar seus passes legados
  • \
NoLastUseValue=Nunca usado only\ fresh=somente\ recente -contextMessage=Os seguintes usu\u00E1rios tem um passe legado. \ -Uma vez que passes legados s\u00E3o armazenados em um formato recuper\u00E1vel, n\u00F3s recomendados migrar para o novo sistema de passes de API. \ -Adicionalmente, em vers\u00F5es anteriores do Jenkins, passes de API vers\u00F5es automaticamente criados para cada novo usu\u00E1rio. \ -Frequentemente, esses usu\u00E1rios n\u00E3o usam o passe, resultando em uma larga superf\u00EDcie de ataque que o necess\u00E1rio. \ -A cria\u00E7\u00E3o autom\u00e1tica de passes precisa ser habilitada explicitamente. -NumDaysSinceLastUse=Dias desde o \u00FAltimo uso -HasFreshToken_tooltip=Um passe recente \u00E9 um que foi criado com o novo sistema \ -depois do uso recente de um passe legado do usu\u00E1rio. \n\ -Nota: toda vez que o Jenkins \u00E9 reiniciado as datas de cria\u00E7\u00E3o the passes n\u00E3o utilizados s\u00E3o reiniciados \ -o que significa que as datas desses passes n\u00E3o precisas. -NumDaysSinceCreation=Dias desde a cria\u00E7\u00E3o +contextMessage=Os seguintes usuários tem um passe legado. \ +Uma vez que passes legados são armazenados em um formato recuperável, nós recomendados migrar para o novo sistema de passes de API. \ +Adicionalmente, em versões anteriores do Jenkins, passes de API versões automaticamente criados para cada novo usuário. \ +Frequentemente, esses usuários não usam o passe, resultando em uma larga superfície de ataque que o necessário. \ +A criação automática de passes precisa ser habilitada explicitamente. +NumDaysSinceLastUse=Dias desde o último uso +HasFreshToken_tooltip=Um passe recente é um que foi criado com o novo sistema \ +depois do uso recente de um passe legado do usuário. \n\ +Nota: toda vez que o Jenkins é reiniciado as datas de criação the passes não utilizados são reiniciados \ +o que significa que as datas desses passes não precisas. +NumDaysSinceCreation=Dias desde a criação diff --git a/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/manage_zh_TW.properties b/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/manage_zh_TW.properties index b4618c740ecf..a03b703a011f 100644 --- a/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/manage_zh_TW.properties +++ b/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/manage_zh_TW.properties @@ -1,35 +1,35 @@ -title=\u7ba1\u7406 Legacy API Token \u4f7f\u7528\u60c5\u5f62 -contextMessage=\u4e0b\u5217\u4f7f\u7528\u8005\u64c1\u6709 Legacy API Token\u3002\u56e0\u70ba Legacy API Token \u5b58\u653e\u65bc\u53ef\u9084\u539f\u7684\u683c\u5f0f\uff0c\u6211\u5011\u5efa\u8b70\u9077\u79fb\u5230\u65b0 API Token \u7cfb\u7d71\u3002\u9644\u52a0\u8aaa\u660e\uff1a\u820a\u7248\u7684 Jenkins \u6703\u81ea\u52d5\u70ba\u6240\u6709\u65b0\u4f7f\u7528\u8005\u7522\u751f API Token\u3002\u4f7f\u7528\u8005\u901a\u5e38\u4e0d\u6703\u4f7f\u7528\u8a72 Token\uff0c\u9019\u7522\u751f\u4e86\u4e0d\u5fc5\u8981\u7684\u5de8\u5927\u653b\u64ca\u9762\u3002\u73fe\u5728\u5fc5\u9808\u660e\u78ba\u7684\u555f\u7528\u81ea\u52d5\u7522\u751f Token\u3002 -recommendationMessage=\u57fa\u65bc\u4e0a\u8ff0\u7406\u7531\uff0c\u6211\u5011\u5efa\u8b70\u60a8\uff1a
  • \u64a4\u92b7\u5f9e\u672a\u4f7f\u7528\u7684 Token
  • \u8981\u6c42\u6b63\u5728\u4f7f\u7528 Legacy Token \u7684\u4f7f\u7528\u8005\u4ee5\u65b0\u7cfb\u7d71\u7522\u751f Token \u4e26\u64a4\u92b7\u4ed6\u5011\u7684 Legacy Token
-UserId=\u4f7f\u7528\u8005 ID -UserFullName=\u4f7f\u7528\u8005\u5168\u540d -TokenName=Token \u540d\u7a31 -NumDaysSinceCreation=\u5efa\u7acb\u5929\u6578 -NumOfUse=\u4f7f\u7528\u6b21\u6578 -NumDaysSinceLastUse=\u8ddd\u6700\u5f8c\u4f7f\u7528\u5929\u6578 -HasFreshToken=\u65b0\u9bae\u7684 Token? -HasFreshToken_tooltip=\u65b0\u9bae\u7684 Token \u662f\u6307\uff1a\u4ee5\u65b0\u7cfb\u7d71\u5efa\u7acb\u7684\uff0c\u4e14\u7522\u751f\u65bc\u4f7f\u7528\u8005\u6700\u8fd1\u4f7f\u7528\u7684 Legacy Token \u4e4b\u5f8c\u3002\n\ -\u5099\u8a3b\uff1aJenkins \u6bcf\u6b21\u91cd\u65b0\u555f\u52d5\u5f8c\uff0c\u672a\u4f7f\u7528\u7684 Legacy Token \u7684\u5efa\u7acb\u65e5\u671f\u6703\u88ab\u91cd\u8a2d\uff0c\u9019\u8868\u793a\u90a3\u4e9b Token \u7684\u5efa\u7acb\u65e5\u671f\u662f\u4e0d\u6e96\u78ba\u7684\u3002 -HasFreshToken_ok_tooltip=\u8a72\u4f7f\u7528\u8005\u6709\u65b0\u9bae\u7684 Token -HasFreshToken_warning_tooltip=\u8a72\u4f7f\u7528\u8005\u6c92\u6709\u65b0\u9bae\u7684 Token -HasMoreRecentlyUsedToken=\u6700\u8fd1\u7684 Token\uff1f -HasMoreRecentlyUsedToken_tooltip=\u6700\u8fd1\u4f7f\u7528\u7684 Token \u662f\u6307\uff1a\u4ee5\u65b0\u7cfb\u7d71\u5efa\u7acb\u7684\uff0c\u4e14\u6bd4\u4f7f\u7528\u8005\u7684\u6700\u8fd1\u4f7f\u7528\u7684 Legacy Token \u9084\u8981\u665a\u6709\u4f7f\u7528\u904e\u7684\u3002\n\ -\u5099\u8a3b\uff1aJenkins \u6bcf\u6b21\u91cd\u65b0\u555f\u52d5\u5f8c\uff0c\u672a\u4f7f\u7528\u7684 Legacy Token \u7684\u5efa\u7acb\u65e5\u671f\u6703\u88ab\u91cd\u8a2d\uff0c\u9019\u8868\u793a\u90a3\u4e9b Token \u7684\u5efa\u7acb\u65e5\u671f\u662f\u4e0d\u6e96\u78ba\u7684\u3002 -HasMoreRecentlyUsedToken_ok_tooltip=\u8a72\u4f7f\u7528\u8005\u6709\u6700\u8fd1\u7528\u904e\u7684 Token -HasMoreRecentlyUsedToken_warning_tooltip=\u8a72\u4f7f\u7528\u8005\u6c92\u6709\u6700\u8fd1\u7528\u904e\u7684 Token -NoImpactedUser=\u6c92\u6709\u4f7f\u7528\u8005\u6709 Legacy Token -NoCreationDate=\u8a72 Token \u6c92\u6709\u5efa\u7acb\u65e5\u671f -NoCreationDateValue=\u672a\u77e5 -NoLastUse=\u8a72 Token \u6c92\u6709\u6700\u5f8c\u4f7f\u7528\u65e5\u671f -NoLastUseValue=\u5f9e\u672a\u4f7f\u7528 -RevokeAllSelected=\u64a4\u92b7\u9078\u53d6\u7684 Token -RevokeAllSelected_confirm=\u60a8\u78ba\u5b9a\u8981\u64a4\u92b7\u9078\u53d6\u7684 %num% \u500b Token \u55ce -RevokeAllSelected_nothing=\u672a\u9078\u53d6 Token\uff0c\u8acb\u9078\u53d6\u81f3\u5c11\u4e00\u500b Token \u4f86\u64a4\u92b7 -Fresh\ token=\u65b0\u9bae\u7684 Token -all=\u5168\u90e8 -Recently\ used\ token=\u6700\u8fd1\u7528\u904e\u7684 Token -No\ fresh\ token=\u6c92\u6709\u65b0\u9bae\u7684 Token -only\ recent=\u53ea\u9078\u6700\u8fd1 -only\ fresh=\u53ea\u9078\u65b0\u9bae -Select=\u9078\u53d6 -No\ recently\ used\ token=\u6c92\u6709\u6700\u8fd1\u7528\u904e\u7684 Token +title=ç®¡ç† Legacy API Token 使用情形 +contextMessage=下列使用者æ“有 Legacy API Token。因為 Legacy API Token 存放於å¯é‚„原的格å¼ï¼Œæˆ‘們建議é·ç§»åˆ°æ–° API Token 系統。附加說明:舊版的 Jenkins 會自動為所有新使用者產生 API Token。使用者通常ä¸æœƒä½¿ç”¨è©² Token,這產生了ä¸å¿…è¦çš„巨大攻擊é¢ã€‚ç¾åœ¨å¿…須明確的啟用自動產生 Token。 +recommendationMessage=基於上述ç†ç”±ï¼Œæˆ‘們建議您:
  • 撤銷從未使用的 Token
  • è¦æ±‚正在使用 Legacy Token 的使用者以新系統產生 Token 並撤銷他們的 Legacy Token
+UserId=使用者 ID +UserFullName=使用者全å +TokenName=Token å稱 +NumDaysSinceCreation=建立天數 +NumOfUse=使用次數 +NumDaysSinceLastUse=è·æœ€å¾Œä½¿ç”¨å¤©æ•¸ +HasFreshToken=新鮮的 Token? +HasFreshToken_tooltip=新鮮的 Token 是指:以新系統建立的,且產生於使用者最近使用的 Legacy Token 之後。\n\ +備註:Jenkins æ¯æ¬¡é‡æ–°å•Ÿå‹•å¾Œï¼Œæœªä½¿ç”¨çš„ Legacy Token 的建立日期會被é‡è¨­ï¼Œé€™è¡¨ç¤ºé‚£äº› Token 的建立日期是ä¸æº–確的。 +HasFreshToken_ok_tooltip=該使用者有新鮮的 Token +HasFreshToken_warning_tooltip=該使用者沒有新鮮的 Token +HasMoreRecentlyUsedToken=最近的 Token? +HasMoreRecentlyUsedToken_tooltip=最近使用的 Token 是指:以新系統建立的,且比使用者的最近使用的 Legacy Token é‚„è¦æ™šæœ‰ä½¿ç”¨éŽçš„。\n\ +備註:Jenkins æ¯æ¬¡é‡æ–°å•Ÿå‹•å¾Œï¼Œæœªä½¿ç”¨çš„ Legacy Token 的建立日期會被é‡è¨­ï¼Œé€™è¡¨ç¤ºé‚£äº› Token 的建立日期是ä¸æº–確的。 +HasMoreRecentlyUsedToken_ok_tooltip=該使用者有最近用éŽçš„ Token +HasMoreRecentlyUsedToken_warning_tooltip=該使用者沒有最近用éŽçš„ Token +NoImpactedUser=沒有使用者有 Legacy Token +NoCreationDate=該 Token 沒有建立日期 +NoCreationDateValue=未知 +NoLastUse=該 Token 沒有最後使用日期 +NoLastUseValue=從未使用 +RevokeAllSelected=撤銷é¸å–çš„ Token +RevokeAllSelected_confirm=您確定è¦æ’¤éŠ·é¸å–çš„ %num% 個 Token å—Ž +RevokeAllSelected_nothing=未é¸å– Token,請é¸å–至少一個 Token 來撤銷 +Fresh\ token=新鮮的 Token +all=全部 +Recently\ used\ token=最近用éŽçš„ Token +No\ fresh\ token=沒有新鮮的 Token +only\ recent=åªé¸æœ€è¿‘ +only\ fresh=åªé¸æ–°é®® +Select=é¸å– +No\ recently\ used\ token=沒有最近用éŽçš„ Token diff --git a/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/message_it.properties b/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/message_it.properties index e990bbda177f..548a0c3e3ae7 100644 --- a/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/message_it.properties +++ b/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/message_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,6 +22,6 @@ # THE SOFTWARE. warningMessage=Esistono utenti che stanno ancora utilizzando un token API \ - legacy. Tale sistema non è sicuro come quello nuovo perché salva il token \ + legacy. Tale sistema non è sicuro come quello nuovo perché salva il token \ su disco in un formato ripristinabile.
Si veda \ l''elenco degli utenti affetti dal problema. diff --git a/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/message_pt_BR.properties b/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/message_pt_BR.properties index e66b83d243be..23fe38c00188 100644 --- a/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/message_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/message_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -warningMessage=Ainda existem usu\u00E1rios que est\u00E3o usando os passes de API legados. \ - Este sistema n\u00E3o \u00E9 t\u00E3o seguro quanto o novo porque ele armazena o passe em disco de uma forma recuper\u00E1vel.
\ - Veja a lista de usu\u00E1rios impactados. +warningMessage=Ainda existem usuários que estão usando os passes de API legados. \ + Este sistema não é tão seguro quanto o novo porque ele armazena o passe em disco de uma forma recuperável.
\ + Veja a lista de usuários impactados. diff --git a/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/message_zh_TW.properties b/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/message_zh_TW.properties index efc884e860f7..61b08187efac 100644 --- a/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/message_zh_TW.properties +++ b/core/src/main/resources/jenkins/security/apitoken/LegacyApiTokenAdministrativeMonitor/message_zh_TW.properties @@ -1 +1 @@ -warningMessage=\u6709\u4f7f\u7528\u8005\u9084\u5728\u7528 Legacy API Token\u3002\u8a72\u7cfb\u7d71\u4e0d\u82e5\u65b0\u7684\u5b89\u5168\uff0c\u56e0\u70ba\u5b83\u5c07 Token \u4ee5\u53ef\u9084\u539f\u7684\u65b9\u5f0f\u5b58\u653e\u78c1\u789f\u4e0a\u3002
\u8acb\u53c3\u898b\u53d7\u5f71\u97ff\u7684\u4f7f\u7528\u8005\u6e05\u55ae\u3002 +warningMessage=有使用者還在用 Legacy API Token。該系統ä¸è‹¥æ–°çš„安全,因為它將 Token 以å¯é‚„原的方å¼å­˜æ”¾ç£ç¢Ÿä¸Šã€‚
è«‹åƒè¦‹å—影響的使用者清單。 diff --git a/core/src/main/resources/jenkins/security/apitoken/Messages_it.properties b/core/src/main/resources/jenkins/security/apitoken/Messages_it.properties index 118108f9abb4..1f5f2aba4977 100644 --- a/core/src/main/resources/jenkins/security/apitoken/Messages_it.properties +++ b/core/src/main/resources/jenkins/security/apitoken/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -23,6 +23,6 @@ ApiTokenPropertyDisabledDefaultAdministrativeMonitor.displayName=Token API \ legacy non generato per impostazione predefinita -ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor.displayName=È possibile \ +ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor.displayName=È possibile \ creare un token API legacy anche se non ne esiste uno LegacyApiTokenAdministrativeMonitor.displayName=Utilizzo token API legacy diff --git a/core/src/main/resources/jenkins/security/apitoken/Messages_pt_BR.properties b/core/src/main/resources/jenkins/security/apitoken/Messages_pt_BR.properties index 544c53eeaeec..9662f49d14a1 100644 --- a/core/src/main/resources/jenkins/security/apitoken/Messages_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/apitoken/Messages_pt_BR.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. LegacyApiTokenAdministrativeMonitor.displayName=Uso de passe de API legado -ApiTokenPropertyDisabledDefaultAdministrativeMonitor.displayName=Passe de API legado n\u00E3o \u00E9 gerado por padr\u00E3o -ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor.displayName=Passe de API legado pode ser criado ainda que n\u00E3o exista +ApiTokenPropertyDisabledDefaultAdministrativeMonitor.displayName=Passe de API legado não é gerado por padrão +ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor.displayName=Passe de API legado pode ser criado ainda que não exista diff --git a/core/src/main/resources/jenkins/security/apitoken/Messages_zh_TW.properties b/core/src/main/resources/jenkins/security/apitoken/Messages_zh_TW.properties index 578238a87288..fb706a21606f 100644 --- a/core/src/main/resources/jenkins/security/apitoken/Messages_zh_TW.properties +++ b/core/src/main/resources/jenkins/security/apitoken/Messages_zh_TW.properties @@ -19,6 +19,6 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ApiTokenPropertyDisabledDefaultAdministrativeMonitor.displayName=\u9810\u8a2d\u4e0d\u6703\u7522\u751f Legacy API Token -ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor.displayName=\u5373\u4f7f Legacy API Token \u4e0d\u5b58\u5728\u4e5f\u53ef\u4ee5\u5efa\u7acb -LegacyApiTokenAdministrativeMonitor.displayName=Legacy API Token \u4f7f\u7528\u60c5\u5f62 +ApiTokenPropertyDisabledDefaultAdministrativeMonitor.displayName=é è¨­ä¸æœƒç”¢ç”Ÿ Legacy API Token +ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor.displayName=å³ä½¿ Legacy API Token ä¸å­˜åœ¨ä¹Ÿå¯ä»¥å»ºç«‹ +LegacyApiTokenAdministrativeMonitor.displayName=Legacy API Token 使用情形 diff --git a/core/src/main/resources/jenkins/security/csrf/CSRFAdministrativeMonitor/description_pt_BR.properties b/core/src/main/resources/jenkins/security/csrf/CSRFAdministrativeMonitor/description_pt_BR.properties index f1248d2b8cd1..b748efb1b299 100644 --- a/core/src/main/resources/jenkins/security/csrf/CSRFAdministrativeMonitor/description_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/csrf/CSRFAdministrativeMonitor/description_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Avisa sobre desabilitar aprote\u00E7\u00E3o de CSRF. +blurb=Avisa sobre desabilitar aproteção de CSRF. diff --git a/core/src/main/resources/jenkins/security/csrf/CSRFAdministrativeMonitor/description_zh_TW.properties b/core/src/main/resources/jenkins/security/csrf/CSRFAdministrativeMonitor/description_zh_TW.properties index b4dc9311c64b..0b18829144cd 100644 --- a/core/src/main/resources/jenkins/security/csrf/CSRFAdministrativeMonitor/description_zh_TW.properties +++ b/core/src/main/resources/jenkins/security/csrf/CSRFAdministrativeMonitor/description_zh_TW.properties @@ -1 +1 @@ -blurb=\u8b66\u544a\u95dc\u65bc\u505c\u7528 CSRF \u9632\u8b77\u3002 +blurb=警告關於åœç”¨ CSRF 防護。 diff --git a/core/src/main/resources/jenkins/security/csrf/CSRFAdministrativeMonitor/message_it.properties b/core/src/main/resources/jenkins/security/csrf/CSRFAdministrativeMonitor/message_it.properties index 773946f56c7c..c838cb65d3ca 100644 --- a/core/src/main/resources/jenkins/security/csrf/CSRFAdministrativeMonitor/message_it.properties +++ b/core/src/main/resources/jenkins/security/csrf/CSRFAdministrativeMonitor/message_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,11 +21,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -actionMessage=È possibile modificare la configurazione corrente tramite {0} \ +actionMessage=È possibile modificare la configurazione corrente tramite {0} \ nella sezione Sicurezza. actionUrlContent=Protezione CSRF Dismiss=Nascondi referenceUrlContent=questa pagina -warningMessage=Il componente di emissione CSRF non è stato configurato. Ciò \ +warningMessage=Il componente di emissione CSRF non è stato configurato. Ciò \ potrebbe rappresentare un problema di sicurezza. Per ulteriori \ informazioni, si faccia riferimento a {0}. diff --git a/core/src/main/resources/jenkins/security/csrf/CSRFAdministrativeMonitor/message_pt_BR.properties b/core/src/main/resources/jenkins/security/csrf/CSRFAdministrativeMonitor/message_pt_BR.properties index 2ac25244d08f..f5e830ce57f9 100644 --- a/core/src/main/resources/jenkins/security/csrf/CSRFAdministrativeMonitor/message_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/csrf/CSRFAdministrativeMonitor/message_pt_BR.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -warningMessage=Voc\u00EA n\u00E3o configurou um emissor CSRF. Isto pode ser um problema de seguran\u00E7a. \ -Para mais informa\u00E7\u00F5es, por favor refira-se a {0}. -actionMessage=Voc\u00EA pode mudar a configura\u00E7\u00E3o atual usando a se\u00E7\u00E3o de Seguran\u00E7a {0}. -referenceUrlContent=esta p\u00E1gina -actionUrlContent=Prote\u00E7\u00E3o de CSRF +warningMessage=Você não configurou um emissor CSRF. Isto pode ser um problema de segurança. \ +Para mais informações, por favor refira-se a {0}. +actionMessage=Você pode mudar a configuração atual usando a seção de Segurança {0}. +referenceUrlContent=esta página +actionUrlContent=Proteção de CSRF Dismiss=Dispensar diff --git a/core/src/main/resources/jenkins/security/csrf/CSRFAdministrativeMonitor/message_zh_TW.properties b/core/src/main/resources/jenkins/security/csrf/CSRFAdministrativeMonitor/message_zh_TW.properties index d4b41a63bf6e..3377b3bb7581 100644 --- a/core/src/main/resources/jenkins/security/csrf/CSRFAdministrativeMonitor/message_zh_TW.properties +++ b/core/src/main/resources/jenkins/security/csrf/CSRFAdministrativeMonitor/message_zh_TW.properties @@ -1,5 +1,5 @@ -warningMessage=\u60a8\u5c1a\u672a\u8a2d\u5b9a CSRF \u7c3d\u767c\u8005\u3002\u9019\u53ef\u80fd\u9020\u6210\u5b89\u5168\u6027\u554f\u984c\u3002\u66f4\u591a\u8cc7\u8a0a\u8acb\u53c3\u8003{0}\u3002 -actionMessage=\u60a8\u53ef\u4ee5\u5230\u5b89\u5168\u6027\u8a2d\u5b9a {0}\u8b8a\u66f4\u76ee\u524d\u7684\u8a2d\u5b9a\u3002 -referenceUrlContent=\u6b64\u9801\u9762 -actionUrlContent=CSRF \u9632\u8b77 -Dismiss=\u4e0d\u7ba1 +warningMessage=您尚未設定 CSRF 簽發者。這å¯èƒ½é€ æˆå®‰å…¨æ€§å•é¡Œã€‚更多資訊請åƒè€ƒ{0}。 +actionMessage=您å¯ä»¥åˆ°å®‰å…¨æ€§è¨­å®š {0}變更目å‰çš„設定。 +referenceUrlContent=æ­¤é é¢ +actionUrlContent=CSRF 防護 +Dismiss=ä¸ç®¡ diff --git a/core/src/main/resources/jenkins/security/csrf/Messages_it.properties b/core/src/main/resources/jenkins/security/csrf/Messages_it.properties index 762ac58fdebb..91c028535740 100644 --- a/core/src/main/resources/jenkins/security/csrf/Messages_it.properties +++ b/core/src/main/resources/jenkins/security/csrf/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/security/csrf/Messages_pt_BR.properties b/core/src/main/resources/jenkins/security/csrf/Messages_pt_BR.properties index d9cfa3e97be0..41928c7a3dea 100644 --- a/core/src/main/resources/jenkins/security/csrf/Messages_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/csrf/Messages_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -CSRFAdministrativeMonitor.displayName=Monitor de prote\u00E7\u00E3o de CSRF +CSRFAdministrativeMonitor.displayName=Monitor de proteção de CSRF diff --git a/core/src/main/resources/jenkins/security/csrf/Messages_zh_TW.properties b/core/src/main/resources/jenkins/security/csrf/Messages_zh_TW.properties index 042ec3cb009d..accf54e05bd9 100644 --- a/core/src/main/resources/jenkins/security/csrf/Messages_zh_TW.properties +++ b/core/src/main/resources/jenkins/security/csrf/Messages_zh_TW.properties @@ -1 +1 @@ -CSRFAdministrativeMonitor.displayName=CSRF \u9632\u8b77\u76e3\u8996\u5668 +CSRFAdministrativeMonitor.displayName=CSRF 防護監視器 diff --git a/core/src/main/resources/jenkins/security/s2m/AdminCallableMonitor/description_pt_BR.properties b/core/src/main/resources/jenkins/security/s2m/AdminCallableMonitor/description_pt_BR.properties index 7dacaf9399c8..4e2358e75eb8 100644 --- a/core/src/main/resources/jenkins/security/s2m/AdminCallableMonitor/description_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/s2m/AdminCallableMonitor/description_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Um agente tentou enviar uma mensagem para o controlador em execu\u00E7\u00E3o, mas o controle de acesso do agente para o controlador rejeitou-a. \ +blurb=Um agente tentou enviar uma mensagem para o controlador em execução, mas o controle de acesso do agente para o controlador rejeitou-a. \ Isto permite que os administradores revisem o tipo de mensagem e aprovem-a. diff --git a/core/src/main/resources/jenkins/security/s2m/MasterKillSwitchWarning/description_pt_BR.properties b/core/src/main/resources/jenkins/security/s2m/MasterKillSwitchWarning/description_pt_BR.properties index 1ae0ab54f2af..822f0540f500 100644 --- a/core/src/main/resources/jenkins/security/s2m/MasterKillSwitchWarning/description_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/s2m/MasterKillSwitchWarning/description_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Quando o controle de acesso do agente para o controlador est\u00e1 desabilitado, isto avisa os administradores. +blurb=Quando o controle de acesso do agente para o controlador está desabilitado, isto avisa os administradores. diff --git a/core/src/main/resources/jenkins/security/seed/Messages_it.properties b/core/src/main/resources/jenkins/security/seed/Messages_it.properties index 85f82e031a55..ad74f7633576 100644 --- a/core/src/main/resources/jenkins/security/seed/Messages_it.properties +++ b/core/src/main/resources/jenkins/security/seed/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/security/seed/Messages_ja.properties b/core/src/main/resources/jenkins/security/seed/Messages_ja.properties index 347af3b38535..a78ed2f73216 100644 --- a/core/src/main/resources/jenkins/security/seed/Messages_ja.properties +++ b/core/src/main/resources/jenkins/security/seed/Messages_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -UserSeedProperty.DisplayName=\u30bb\u30c3\u30b7\u30e7\u30f3\u306e\u7d42\u4e86 +UserSeedProperty.DisplayName=セッションã®çµ‚了 diff --git a/core/src/main/resources/jenkins/security/seed/Messages_pt_BR.properties b/core/src/main/resources/jenkins/security/seed/Messages_pt_BR.properties index 85b3350ef2ab..061e8e474720 100644 --- a/core/src/main/resources/jenkins/security/seed/Messages_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/seed/Messages_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -UserSeedProperty.DisplayName=Encerramento de sess\u00E3o +UserSeedProperty.DisplayName=Encerramento de sessão diff --git a/core/src/main/resources/jenkins/security/seed/UserSeedProperty/config_it.properties b/core/src/main/resources/jenkins/security/seed/UserSeedProperty/config_it.properties index b04dcc48bef5..96375fabf320 100644 --- a/core/src/main/resources/jenkins/security/seed/UserSeedProperty/config_it.properties +++ b/core/src/main/resources/jenkins/security/seed/UserSeedProperty/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -25,5 +25,5 @@ resetSeed.button=Termina tutte le sessioni resetSeed.result=Operazione conclusa con successo. Tutte le sessioni sono \ state terminate. resetSeed.confirmation=Tutte le sessioni aperte di quest''utente saranno \ - terminate.\nAll''utente sarà richiesto di eseguire nuovamente l''accesso.\n\ + terminate.\nAll''utente sarà richiesto di eseguire nuovamente l''accesso.\n\ Procedere? diff --git a/core/src/main/resources/jenkins/security/seed/UserSeedProperty/config_ja.properties b/core/src/main/resources/jenkins/security/seed/UserSeedProperty/config_ja.properties index 172bcef1477d..ed476b1a8553 100644 --- a/core/src/main/resources/jenkins/security/seed/UserSeedProperty/config_ja.properties +++ b/core/src/main/resources/jenkins/security/seed/UserSeedProperty/config_ja.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -resetSeed.button=\u5168\u30bb\u30c3\u30b7\u30e7\u30f3\u7d42\u4e86 -resetSeed.result=\u6210\u529f\u3002\u5168\u3066\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u304c\u7d42\u4e86\u3055\u308c\u307e\u3057\u305f\u3002 -resetSeed.confirmation=\u30e6\u30fc\u30b6\u30fc\u304c\u63a5\u7d9a\u3057\u3066\u3044\u308b\u5168\u3066\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059\u3002\n\ - \u305d\u306e\u5f8c\u306f\u518d\u5ea6\u30ed\u30b0\u30a4\u30f3\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\n\ - \u3088\u308d\u3057\u3044\u3067\u3059\u304b\uff1f +resetSeed.button=全セッション終了 +resetSeed.result=æˆåŠŸã€‚å…¨ã¦ã®ã‚»ãƒƒã‚·ãƒ§ãƒ³ãŒçµ‚了ã•ã‚Œã¾ã—ãŸã€‚ +resetSeed.confirmation=ユーザーãŒæŽ¥ç¶šã—ã¦ã„ã‚‹å…¨ã¦ã®ã‚»ãƒƒã‚·ãƒ§ãƒ³ã‚’終了ã—ã¾ã™ã€‚\n\ + ãã®å¾Œã¯å†åº¦ãƒ­ã‚°ã‚¤ãƒ³ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚\n\ + よã‚ã—ã„ã§ã™ã‹ï¼Ÿ diff --git a/core/src/main/resources/jenkins/security/seed/UserSeedProperty/config_pl.properties b/core/src/main/resources/jenkins/security/seed/UserSeedProperty/config_pl.properties index 4374a9b0d84e..cbd2033be3e1 100644 --- a/core/src/main/resources/jenkins/security/seed/UserSeedProperty/config_pl.properties +++ b/core/src/main/resources/jenkins/security/seed/UserSeedProperty/config_pl.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -resetSeed.button=Zako\u0144cz wszystkie sesje -resetSeed.result=Operacja zako\u0144czona pomy\u015Blnie. Wszystkie sesje zako\u0144czone. -resetSeed.confirmation=Wszystkie aktywne sesje zostan\u0105 zako\u0144czone. \n\ -B\u0119dzie wymagane ponowne zalogowanie si\u0119. \n\ -Czy kontynuowa\u0107? +resetSeed.button=ZakoÅ„cz wszystkie sesje +resetSeed.result=Operacja zakoÅ„czona pomyÅ›lnie. Wszystkie sesje zakoÅ„czone. +resetSeed.confirmation=Wszystkie aktywne sesje zostanÄ… zakoÅ„czone. \n\ +BÄ™dzie wymagane ponowne zalogowanie siÄ™. \n\ +Czy kontynuować? diff --git a/core/src/main/resources/jenkins/security/seed/UserSeedProperty/config_pt_BR.properties b/core/src/main/resources/jenkins/security/seed/UserSeedProperty/config_pt_BR.properties index cb650e4e48d5..534f7954dcc0 100644 --- a/core/src/main/resources/jenkins/security/seed/UserSeedProperty/config_pt_BR.properties +++ b/core/src/main/resources/jenkins/security/seed/UserSeedProperty/config_pt_BR.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -resetSeed.confirmation=Todas as sess\u00F5es conectadas para este usu\u00E1rio ser\u00E3o finalizadas. \n\ -Ele(a) ter\u00E1 que refazer o processo de entrada. \n\ -Voc\u00EA tem certeza? -resetSeed.button=Finalizar todas as sess\u00F5es -resetSeed.result=A opera\u00E7\u00E3o foi um sucesso. Todas as sess\u00F5es foram encerradas. +resetSeed.confirmation=Todas as sessões conectadas para este usuário serão finalizadas. \n\ +Ele(a) terá que refazer o processo de entrada. \n\ +Você tem certeza? +resetSeed.button=Finalizar todas as sessões +resetSeed.result=A operação foi um sucesso. Todas as sessões foram encerradas. diff --git a/core/src/main/resources/jenkins/security/whitelisted-classes.txt b/core/src/main/resources/jenkins/security/whitelisted-classes.txt index fbcdc1a9de01..c2f974a7ef9f 100644 --- a/core/src/main/resources/jenkins/security/whitelisted-classes.txt +++ b/core/src/main/resources/jenkins/security/whitelisted-classes.txt @@ -58,6 +58,7 @@ java.time.Ser java.util.ArrayDeque java.util.ArrayList java.util.Arrays$ArrayList +java.util.CollSer java.util.Collections$AsLIFOQueue java.util.Collections$CheckedCollection java.util.Collections$CheckedList @@ -103,6 +104,7 @@ java.util.GregorianCalendar java.util.HashMap java.util.HashSet java.util.Hashtable +java.util.ImmutableCollections$List12 java.util.LinkedHashMap java.util.LinkedHashSet java.util.LinkedList diff --git a/core/src/main/resources/jenkins/slaves/JnlpSlaveAgentProtocol4/description_bg.properties b/core/src/main/resources/jenkins/slaves/JnlpSlaveAgentProtocol4/description_bg.properties index 350451e3d3e9..4d13804ebdad 100644 --- a/core/src/main/resources/jenkins/slaves/JnlpSlaveAgentProtocol4/description_bg.properties +++ b/core/src/main/resources/jenkins/slaves/JnlpSlaveAgentProtocol4/description_bg.properties @@ -22,5 +22,5 @@ # A TLS secured connection between the master and the agent performed by TLS upgrade of the socket. summary=\ - \u0417\u0430\u0449\u0438\u0442\u0435\u043d\u0430 \u0432\u0440\u044a\u0437\u043a\u0430 \u043c\u0435\u0436\u0434\u0443 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0432\u0430\u0449\u0438\u044f \u0438 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u0438\u044f \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440 \u0447\u0440\u0435\u0437 \u043f\u0440\u0435\u043c\u0438\u043d\u0430\u0432\u0430\u043d\u0435 \u043a\u044a\u043c\ - TLS \u043f\u043e \u0433\u043d\u0435\u0437\u0434\u043e\u0442\u043e. + Защитена връзка между управлÑÐ²Ð°Ñ‰Ð¸Ñ Ð¸ Ð¿Ð¾Ð´Ñ‡Ð¸Ð½ÐµÐ½Ð¸Ñ ÐºÐ¾Ð¼Ð¿ÑŽÑ‚ÑŠÑ€ чрез преминаване към\ + TLS по гнездото. diff --git a/core/src/main/resources/jenkins/slaves/JnlpSlaveAgentProtocol4/description_de.properties b/core/src/main/resources/jenkins/slaves/JnlpSlaveAgentProtocol4/description_de.properties index 1a2bc4afc3c7..77064f1441ee 100644 --- a/core/src/main/resources/jenkins/slaves/JnlpSlaveAgentProtocol4/description_de.properties +++ b/core/src/main/resources/jenkins/slaves/JnlpSlaveAgentProtocol4/description_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -summary=Eine TLS-gesicherte Verbindung zwischen Master-Knoten und Agenten \u00FCber TLS-Upgrade des Sockets. +summary=Eine TLS-gesicherte Verbindung zwischen Master-Knoten und Agenten über TLS-Upgrade des Sockets. diff --git a/core/src/main/resources/jenkins/slaves/JnlpSlaveAgentProtocol4/description_it.properties b/core/src/main/resources/jenkins/slaves/JnlpSlaveAgentProtocol4/description_it.properties index 776fead7bce7..2d9452d7f068 100644 --- a/core/src/main/resources/jenkins/slaves/JnlpSlaveAgentProtocol4/description_it.properties +++ b/core/src/main/resources/jenkins/slaves/JnlpSlaveAgentProtocol4/description_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/slaves/JnlpSlaveAgentProtocol4/description_pt_BR.properties b/core/src/main/resources/jenkins/slaves/JnlpSlaveAgentProtocol4/description_pt_BR.properties index 9304467aad16..74e67bc910b6 100644 --- a/core/src/main/resources/jenkins/slaves/JnlpSlaveAgentProtocol4/description_pt_BR.properties +++ b/core/src/main/resources/jenkins/slaves/JnlpSlaveAgentProtocol4/description_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -summary=Uma conex\u00E3o segura via TLS entre o controlador e o agente realizada por uma atualiza\u00e7\u00e3o de TLS no soquete. +summary=Uma conexão segura via TLS entre o controlador e o agente realizada por uma atualização de TLS no soquete. diff --git a/core/src/main/resources/jenkins/slaves/JnlpSlaveAgentProtocol4/description_zh_TW.properties b/core/src/main/resources/jenkins/slaves/JnlpSlaveAgentProtocol4/description_zh_TW.properties index db3f8cd6b6d6..949804a0f146 100644 --- a/core/src/main/resources/jenkins/slaves/JnlpSlaveAgentProtocol4/description_zh_TW.properties +++ b/core/src/main/resources/jenkins/slaves/JnlpSlaveAgentProtocol4/description_zh_TW.properties @@ -1 +1 @@ -summary=\u900f\u904e TLS \u901a\u8a0a\u7aef\u5347\u7d1a Controller \u548c Agent \u9593\u7684 TLS \u5b89\u5168\u9023\u7dda\u3002 +summary=é€éŽ TLS 通訊端å‡ç´š Controller å’Œ Agent é–“çš„ TLS 安全連線。 diff --git a/core/src/main/resources/jenkins/slaves/Messages_bg.properties b/core/src/main/resources/jenkins/slaves/Messages_bg.properties index be906db5a655..459672fa3c3d 100644 --- a/core/src/main/resources/jenkins/slaves/Messages_bg.properties +++ b/core/src/main/resources/jenkins/slaves/Messages_bg.properties @@ -22,16 +22,16 @@ # Java Web Start Agent Protocol/3 JnlpSlaveAgentProtocol3.displayName=\ - \u041f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u0437\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442\u0430 \u0437\u0430 Java \u043f\u0440\u0435\u0437 \u0443e\u0431, \u0432\u0435\u0440\u0441\u0438\u044f 3 + Протокол за Ñтартиране на агента за Java през уeб, верÑÐ¸Ñ 3 # Java Web Start Agent Protocol/1 JnlpSlaveAgentProtocol.displayName=\ - \u041f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u0437\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442\u0430 \u0437\u0430 Java \u043f\u0440\u0435\u0437 \u0443e\u0431, \u0432\u0435\u0440\u0441\u0438\u044f 1 + Протокол за Ñтартиране на агента за Java през уeб, верÑÐ¸Ñ 1 # Java Web Start Agent Protocol/2 JnlpSlaveAgentProtocol2.displayName=\ - \u041f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u0437\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442\u0430 \u0437\u0430 Java \u043f\u0440\u0435\u0437 \u0443e\u0431, \u0432\u0435\u0440\u0441\u0438\u044f 2 + Протокол за Ñтартиране на агента за Java през уeб, верÑÐ¸Ñ 2 # Java Web Start Agent Protocol/4 (TLS encryption) JnlpSlaveAgentProtocol4.displayName=\ - \u041f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u0437\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442\u0430 \u0437\u0430 Java \u043f\u0440\u0435\u0437 \u0443e\u0431, \u0432\u0435\u0440\u0441\u0438\u044f 4 (\u0448\u0438\u0444\u0440\u0438\u0440\u0430\u043d\u0435 \u0441 TLS) + Протокол за Ñтартиране на агента за Java през уeб, верÑÐ¸Ñ 4 (шифриране Ñ TLS) # Deprecated Agent Protocol Monitor DeprecatedAgentProtocolMonitor.displayName=\ - \u0414\u0430\u0442\u0447\u0438\u043a \u0437\u0430 \u043e\u0441\u0442\u0430\u0440\u0435\u043b\u0438 \u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b\u0438 \u0437\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442\u0430 \u0437\u0430 Java \u043f\u0440\u0435\u0437 \u0443e\u0431 + Датчик за оÑтарели протоколи за Ñтартиране на агента за Java през уeб diff --git a/core/src/main/resources/jenkins/slaves/Messages_de.properties b/core/src/main/resources/jenkins/slaves/Messages_de.properties index 7f40698e9bd1..cceceebe685f 100644 --- a/core/src/main/resources/jenkins/slaves/Messages_de.properties +++ b/core/src/main/resources/jenkins/slaves/Messages_de.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. # Java Web Start Agent Protocol/4 (TLS encryption) -JnlpSlaveAgentProtocol4.displayName=Java-Web-Start-Agentenprotokoll Version 4 (TLS-Verschl\u00FCsselung) -JnlpSlaveAgentProtocol2.displayName=Java-Web-Start-Agentenprotokoll Version 2 (unverschl\u00FCsselt) -JnlpSlaveAgentProtocol.displayName=Java-Web-Start-Agentenprotokoll Version 1 (unverschl\u00FCsselt) -JnlpSlaveAgentProtocol3.displayName=Java-Web-Start-Agentenprotokoll Version 3 (einfache Verschl\u00FCsselung) +JnlpSlaveAgentProtocol4.displayName=Java-Web-Start-Agentenprotokoll Version 4 (TLS-Verschlüsselung) +JnlpSlaveAgentProtocol2.displayName=Java-Web-Start-Agentenprotokoll Version 2 (unverschlüsselt) +JnlpSlaveAgentProtocol.displayName=Java-Web-Start-Agentenprotokoll Version 1 (unverschlüsselt) +JnlpSlaveAgentProtocol3.displayName=Java-Web-Start-Agentenprotokoll Version 3 (einfache Verschlüsselung) diff --git a/core/src/main/resources/jenkins/slaves/Messages_it.properties b/core/src/main/resources/jenkins/slaves/Messages_it.properties index c68ccafc3ce1..15a4fd1854fa 100644 --- a/core/src/main/resources/jenkins/slaves/Messages_it.properties +++ b/core/src/main/resources/jenkins/slaves/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/slaves/Messages_pt_BR.properties b/core/src/main/resources/jenkins/slaves/Messages_pt_BR.properties index 786179ae1159..c185388bf156 100644 --- a/core/src/main/resources/jenkins/slaves/Messages_pt_BR.properties +++ b/core/src/main/resources/jenkins/slaves/Messages_pt_BR.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. DeprecatedAgentProtocolMonitor.displayName=Monitor de protocolo de agente descontinuado -JnlpSlaveAgentProtocol3.displayName=Protocolo de agente TCP de entrada/3 (descontinuado, criptografia b\u00e1sica) +JnlpSlaveAgentProtocol3.displayName=Protocolo de agente TCP de entrada/3 (descontinuado, criptografia básica) JnlpSlaveAgentProtocol2.displayName=Protocolo de agente TCP de entrada/2 (descontinuado, sem criptografia) JnlpSlaveAgentProtocol.displayName=Protocolo de agente TCP de entrada/1 (descontinuado, sem criptografia) JnlpSlaveAgentProtocol4.displayName=Protocolo de agente TCP de entrada/4 (criptografia via TLS) diff --git a/core/src/main/resources/jenkins/slaves/Messages_zh_TW.properties b/core/src/main/resources/jenkins/slaves/Messages_zh_TW.properties index bc737ecb933d..830e59610c15 100644 --- a/core/src/main/resources/jenkins/slaves/Messages_zh_TW.properties +++ b/core/src/main/resources/jenkins/slaves/Messages_zh_TW.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -JnlpSlaveAgentProtocol.displayName=\u9023\u5165 TCP Agent \u901a\u8a0a\u5354\u5b9a/1 (\u68c4\u7528\u3001\u672a\u52a0\u5bc6) -JnlpSlaveAgentProtocol2.displayName=\u9023\u5165 TCP Agent \u901a\u8a0a\u5354\u5b9a/2 (\u68c4\u7528\u3001\u672a\u52a0\u5bc6) -JnlpSlaveAgentProtocol3.displayName=\u9023\u5165 TCP Agent \u901a\u8a0a\u5354\u5b9a/3 (\u68c4\u7528\u3001\u57fa\u672c\u52a0\u5bc6) -JnlpSlaveAgentProtocol4.displayName=\u9023\u5165 TCP Agent \u901a\u8a0a\u5354\u5b9a/4 (TLS \u52a0\u5bc6) -DeprecatedAgentProtocolMonitor.displayName=\u5df2\u68c4\u7528\u7684 Agent \u901a\u8a0a\u5354\u5b9a\u76e3\u8996\u5668 +JnlpSlaveAgentProtocol.displayName=連入 TCP Agent 通訊å”定/1 (棄用ã€æœªåŠ å¯†) +JnlpSlaveAgentProtocol2.displayName=連入 TCP Agent 通訊å”定/2 (棄用ã€æœªåŠ å¯†) +JnlpSlaveAgentProtocol3.displayName=連入 TCP Agent 通訊å”定/3 (棄用ã€åŸºæœ¬åŠ å¯†) +JnlpSlaveAgentProtocol4.displayName=連入 TCP Agent 通訊å”定/4 (TLS 加密) +DeprecatedAgentProtocolMonitor.displayName=已棄用的 Agent 通訊å”定監視器 diff --git a/core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/config_bg.properties b/core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/config_bg.properties index ea519d6f69d2..b5aa2c6084d1 100644 --- a/core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/config_bg.properties +++ b/core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/config_bg.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Disable\ WorkDir=\ - \u0418\u0437\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u043d\u0430\u0442\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f + Изключване на работната Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Fail\ if\ workspace\ is\ missing=\ - \u0421\u0438\u0433\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043e\u0442\u0441\u044a\u0441\u0442\u0432\u0438\u0435\u0442\u043e \u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u043d\u0430\u0442\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u0441 \u0433\u0440\u0435\u0448\u043a\u0430 + Сигнализиране на отÑÑŠÑтвието на работната Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ñ Ð³Ñ€ÐµÑˆÐºÐ° Internal\ data\ directory=\ - \u0412\u044a\u0442\u0440\u0435\u0448\u043d\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u0437\u0430 \u0434\u0430\u043d\u043d\u0438 + Вътрешна Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð·Ð° данни Custom\ WorkDir\ path=\ - \u0421\u043f\u0435\u0446\u0438\u0430\u043b\u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u043d\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f + Специална работна Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ diff --git a/core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/config_it.properties b/core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/config_it.properties index 01249e124db0..316155b63877 100644 --- a/core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/config_it.properties +++ b/core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -23,5 +23,5 @@ Custom\ WorkDir\ path=Percorso directory di lavoro personalizzata Disable\ WorkDir=Disabilita directory di lavoro -Fail\ if\ workspace\ is\ missing=Fallisci se lo spazio di lavoro è mancante +Fail\ if\ workspace\ is\ missing=Fallisci se lo spazio di lavoro è mancante Internal\ data\ directory=Directory dati interna diff --git a/core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/config_pt_BR.properties b/core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/config_pt_BR.properties index c60bfe20d6bc..e400a0941bcb 100644 --- a/core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/config_pt_BR.properties +++ b/core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/config_pt_BR.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Fail\ if\ workspace\ is\ missing=Falhar se o espa\u00E7o de trabalho estiver faltando -Disable\ WorkDir=Desabilitar diret\u00F3rio de trabalho -Internal\ data\ directory=Diret\u00F3rio de dados internos -Custom\ WorkDir\ path=Caminho customizado para diret\u00F3rio de trabalho +Fail\ if\ workspace\ is\ missing=Falhar se o espaço de trabalho estiver faltando +Disable\ WorkDir=Desabilitar diretório de trabalho +Internal\ data\ directory=Diretório de dados internos +Custom\ WorkDir\ path=Caminho customizado para diretório de trabalho diff --git a/core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/config_zh_TW.properties b/core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/config_zh_TW.properties index ba794523380b..242137167839 100644 --- a/core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/config_zh_TW.properties +++ b/core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/config_zh_TW.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Custom\ WorkDir\ path=\u81ea\u8a02 WorkDir \u8def\u5f91 -Fail\ if\ workspace\ is\ missing=\u907a\u5931\u5de5\u4f5c\u5340\u6642\u5931\u6548 -Disable\ WorkDir=\u505c\u7528 WorkDir -Internal\ data\ directory=\u5167\u90e8\u8cc7\u6599\u76ee\u9304 +Custom\ WorkDir\ path=自訂 WorkDir 路徑 +Fail\ if\ workspace\ is\ missing=éºå¤±å·¥ä½œå€æ™‚失效 +Disable\ WorkDir=åœç”¨ WorkDir +Internal\ data\ directory=內部資料目錄 diff --git a/core/src/main/resources/jenkins/slaves/systemInfo/ClassLoaderStatisticsSlaveInfo/systemInfo_it.properties b/core/src/main/resources/jenkins/slaves/systemInfo/ClassLoaderStatisticsSlaveInfo/systemInfo_it.properties index 459832c78261..cd599c63e9ea 100644 --- a/core/src/main/resources/jenkins/slaves/systemInfo/ClassLoaderStatisticsSlaveInfo/systemInfo_it.properties +++ b/core/src/main/resources/jenkins/slaves/systemInfo/ClassLoaderStatisticsSlaveInfo/systemInfo_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_bg.properties b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_bg.properties index 6c477fbf3eef..b325a69f4401 100644 --- a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_bg.properties +++ b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_bg.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. SystemPropertySlaveInfo.DisplayName=\ - \u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430 + Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° ÑиÑтемата EnvVarsSlaveInfo.DisplayName=\ - \u041f\u0440\u043e\u043c\u0435\u043d\u043b\u0438\u0432\u0438 \u043d\u0430 \u0441\u0440\u0435\u0434\u0430\u0442\u0430 + Променливи на Ñредата ThreadDumpSlaveInfo.DisplayName=\ - \u0421\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0438 \u0441\u0442\u0435\u043a\u043e\u0432\u0435 \u043d\u0430 \u043d\u0438\u0448\u043a\u0438\u0442\u0435 + СъÑтоÑние и Ñтекове на нишките ClassLoaderStatisticsSlaveInfo.DisplayName=\ - \u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u043d\u0430 \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u043e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d\u0438 \u043a\u043b\u0430\u0441\u043e\u0432\u0435 + СтатиÑтика на зареждането на отдалечени клаÑове diff --git a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_da.properties b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_da.properties index 3cc28a21bc7d..f421fc7471d1 100644 --- a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_da.properties +++ b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_da.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. SystemPropertySlaveInfo.DisplayName=Systemegenskaber -EnvVarsSlaveInfo.DisplayName=Milj\u00f8variable -ThreadDumpSlaveInfo.DisplayName=Tr\u00e5ddump +EnvVarsSlaveInfo.DisplayName=Miljøvariable +ThreadDumpSlaveInfo.DisplayName=TrÃ¥ddump diff --git a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_fr.properties b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_fr.properties index 0e67a29f3d55..d9d90bc0aaab 100644 --- a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_fr.properties +++ b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_fr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -SystemPropertySlaveInfo.DisplayName=Propri\u00e9t\u00e9s du syst\u00e8me +SystemPropertySlaveInfo.DisplayName=Propriétés du système EnvVarsSlaveInfo.DisplayName=Variables d''environnement ThreadDumpSlaveInfo.DisplayName=Dump du thread diff --git a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_it.properties b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_it.properties index fbaef0806378..6e80c2de578a 100644 --- a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_it.properties +++ b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -23,5 +23,5 @@ ClassLoaderStatisticsSlaveInfo.DisplayName=Statistiche classloader remoto EnvVarsSlaveInfo.DisplayName=Variabili d''ambiente -SystemPropertySlaveInfo.DisplayName=Proprietà di sistema +SystemPropertySlaveInfo.DisplayName=Proprietà di sistema ThreadDumpSlaveInfo.DisplayName=Dump thread diff --git a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_ja.properties b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_ja.properties index ae77c87ea446..bf0330576930 100644 --- a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_ja.properties +++ b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -SystemPropertySlaveInfo.DisplayName=\u30B7\u30B9\u30C6\u30E0\u30D7\u30ED\u30D1\u30C6\u30A3 -EnvVarsSlaveInfo.DisplayName=\u74B0\u5883\u5909\u6570 -ThreadDumpSlaveInfo.DisplayName=\u30B9\u30EC\u30C3\u30C9\u30C0\u30F3\u30D7 +SystemPropertySlaveInfo.DisplayName=システムプロパティ +EnvVarsSlaveInfo.DisplayName=環境変数 +ThreadDumpSlaveInfo.DisplayName=スレッドダンプ diff --git a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_lt.properties b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_lt.properties index 2cc8fdaef191..e8b1b7952c69 100644 --- a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_lt.properties +++ b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_lt.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -ClassLoaderStatisticsSlaveInfo.DisplayName = Nutolusio klasi\u0173 \u012Fk\u0117l\u0117jo statistika +ClassLoaderStatisticsSlaveInfo.DisplayName = Nutolusio klasių įkÄ—lÄ—jo statistika EnvVarsSlaveInfo.DisplayName = Aplinkos kintamieji -SystemPropertySlaveInfo.DisplayName = Sistemos savyb\u0117s +SystemPropertySlaveInfo.DisplayName = Sistemos savybÄ—s ThreadDumpSlaveInfo.DisplayName = Gijos informacija diff --git a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_lv.properties b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_lv.properties index f64d3d48b663..75ee2da01eac 100644 --- a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_lv.properties +++ b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_lv.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -EnvVarsSlaveInfo.DisplayName=Vides main\u012Bgie -SystemPropertySlaveInfo.DisplayName=Sist\u0113mas parametri +EnvVarsSlaveInfo.DisplayName=Vides mainÄ«gie +SystemPropertySlaveInfo.DisplayName=SistÄ“mas parametri diff --git a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_pt_BR.properties b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_pt_BR.properties index 0eca0cd16166..d900cee0ce08 100644 --- a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_pt_BR.properties +++ b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_pt_BR.properties @@ -22,6 +22,6 @@ SystemPropertySlaveInfo.DisplayName=Propriedades do sistema ThreadDumpSlaveInfo.DisplayName=Limpar Threads -EnvVarsSlaveInfo.DisplayName=Vari\u00e1veis de ambiente +EnvVarsSlaveInfo.DisplayName=Variáveis de ambiente # Remote Class Loader Statistics -ClassLoaderStatisticsSlaveInfo.DisplayName=Estat\u00edsticas do ClassLoader remoto +ClassLoaderStatisticsSlaveInfo.DisplayName=Estatísticas do ClassLoader remoto diff --git a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_ru.properties b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_ru.properties index c623831dd27d..378ce6331f65 100644 --- a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_ru.properties +++ b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -EnvVarsSlaveInfo.DisplayName=\u041f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u0441\u0440\u0435\u0434\u044b -SystemPropertySlaveInfo.DisplayName=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u044b -ThreadDumpSlaveInfo.DisplayName=\u0414\u0430\u043c\u043f \u043f\u043e\u0442\u043e\u043a\u0430 -ClassLoaderStatisticsSlaveInfo.DisplayName=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0433\u043e Class Loader'\u0430 +EnvVarsSlaveInfo.DisplayName=Переменные Ñреды +SystemPropertySlaveInfo.DisplayName=СвойÑтва ÑиÑтемы +ThreadDumpSlaveInfo.DisplayName=Дамп потока +ClassLoaderStatisticsSlaveInfo.DisplayName=СтатиÑтика удалённого Class Loader'а diff --git a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_sr.properties b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_sr.properties index e6738c3bfc37..570aab8f6dfb 100644 --- a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_sr.properties +++ b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -SystemPropertySlaveInfo.DisplayName=\u0421\u0438\u0441\u0442\u0435\u043C\u0441\u0435 \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0435 -EnvVarsSlaveInfo.DisplayName=\u041F\u0440\u043E\u043C\u0435\u043D\u0459\u0438\u0432\u0435 \u043E\u043A\u043E\u043B\u0438\u043D\u0435 -ThreadDumpSlaveInfo.DisplayName=\u0414\u0435\u043F\u043E\u043D\u0438\u0458a \u043D\u0438\u0442\u043E\u0432\u0430 -ClassLoaderStatisticsSlaveInfo.DisplayName=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0435 \u0443\u0447\u0438\u0442\u0430\u045A\u0435 \u043A\u043B\u0430\u0441\u043E\u0432\u0430 \u0441\u0430 \u0434\u0430\u043B\u0435\u043A\u0430 +SystemPropertySlaveInfo.DisplayName=СиÑтемÑе поÑтавке +EnvVarsSlaveInfo.DisplayName=Променљиве околине +ThreadDumpSlaveInfo.DisplayName=Депонијa нитова +ClassLoaderStatisticsSlaveInfo.DisplayName=СтатиÑтике учитање клаÑова Ñа далека diff --git a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_sv_SE.properties b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_sv_SE.properties index 5d665ef07636..d3a169a0adee 100644 --- a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_sv_SE.properties +++ b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_sv_SE.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -EnvVarsSlaveInfo.DisplayName=Milj\u00F6variabler +EnvVarsSlaveInfo.DisplayName=Miljövariabler SystemPropertySlaveInfo.DisplayName=Systemegenskaper -ThreadDumpSlaveInfo.DisplayName=Tr\u00E5dutskrift +ThreadDumpSlaveInfo.DisplayName=TrÃ¥dutskrift diff --git a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_zh_TW.properties b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_zh_TW.properties index ddfa10fe1595..623bff8b3e07 100644 --- a/core/src/main/resources/jenkins/slaves/systemInfo/Messages_zh_TW.properties +++ b/core/src/main/resources/jenkins/slaves/systemInfo/Messages_zh_TW.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -SystemPropertySlaveInfo.DisplayName=\u7cfb\u7d71\u5c6c\u6027 -EnvVarsSlaveInfo.DisplayName=\u74b0\u5883\u8b8a\u6578 -ThreadDumpSlaveInfo.DisplayName=\u57f7\u884c\u7dd2\u50be\u5370 -ClassLoaderStatisticsSlaveInfo.DisplayName=\u9060\u7aef Class Loader \u7d71\u8a08\u8cc7\u6599 +SystemPropertySlaveInfo.DisplayName=系統屬性 +EnvVarsSlaveInfo.DisplayName=環境變數 +ThreadDumpSlaveInfo.DisplayName=åŸ·è¡Œç·’å‚¾å° +ClassLoaderStatisticsSlaveInfo.DisplayName=é ç«¯ Class Loader 統計資料 diff --git a/core/src/main/resources/jenkins/split-plugin-cycles.txt b/core/src/main/resources/jenkins/split-plugin-cycles.txt index 848ede384feb..5fbea9ed30f2 100644 --- a/core/src/main/resources/jenkins/split-plugin-cycles.txt +++ b/core/src/main/resources/jenkins/split-plugin-cycles.txt @@ -36,3 +36,9 @@ jdk-tool jaxb javax-activation-api javax-mail-api javax-activation-api sshd javax-mail-api sshd + +# JENKINS-55582 +bouncycastle-api instance-identity +bouncycastle-api sshd +javax-activation-api instance-identity +javax-mail-api instance-identity diff --git a/core/src/main/resources/jenkins/split-plugins.txt b/core/src/main/resources/jenkins/split-plugins.txt index 95aac78d69a5..83688518c7c9 100644 --- a/core/src/main/resources/jenkins/split-plugins.txt +++ b/core/src/main/resources/jenkins/split-plugins.txt @@ -33,7 +33,10 @@ jaxb 2.163 2.3.0 trilead-api 2.184 1.0.4 # JENKINS-64107 -sshd 2.281 3.0.1 +sshd 2.281 3.236.ved5e1b_cb_50b_2 javax-activation-api 2.330 1.2.0-2 javax-mail-api 2.330 1.6.2-5 + +# JENKINS-55582 +instance-identity 2.356 3.1 diff --git a/core/src/main/resources/jenkins/tasks/filters/EnvVarsFilterGlobalConfiguration/config_pt_BR.properties b/core/src/main/resources/jenkins/tasks/filters/EnvVarsFilterGlobalConfiguration/config_pt_BR.properties index 12551b32c618..386e7c0648b8 100644 --- a/core/src/main/resources/jenkins/tasks/filters/EnvVarsFilterGlobalConfiguration/config_pt_BR.properties +++ b/core/src/main/resources/jenkins/tasks/filters/EnvVarsFilterGlobalConfiguration/config_pt_BR.properties @@ -23,4 +23,4 @@ showGlobalRules=Mostrar regras de filtros globais globalRules=Regras de filtro globais addRule=Adicionar regra de filtro -jobEnvironmentVariableFilters=Filtrar vari\u00E1veis de ambiente do passo de constru\u00E7\u00E3o +jobEnvironmentVariableFilters=Filtrar variáveis de ambiente do passo de construção diff --git a/core/src/main/resources/jenkins/tasks/filters/EnvVarsFilterGlobalConfiguration/config_zh_TW.properties b/core/src/main/resources/jenkins/tasks/filters/EnvVarsFilterGlobalConfiguration/config_zh_TW.properties index 6f120e9ac05b..1d7719bb97b3 100644 --- a/core/src/main/resources/jenkins/tasks/filters/EnvVarsFilterGlobalConfiguration/config_zh_TW.properties +++ b/core/src/main/resources/jenkins/tasks/filters/EnvVarsFilterGlobalConfiguration/config_zh_TW.properties @@ -19,7 +19,7 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -jobEnvironmentVariableFilters=\u7be9\u9078\u5efa\u7f6e\u968e\u6bb5\u74b0\u5883\u8b8a\u6578 -globalRules=\u5168\u57df\u7be9\u9078\u898f\u5247 -showGlobalRules=\u986f\u793a\u5168\u57df\u7be9\u9078\u898f\u5247 -addRule=\u52a0\u5165\u7be9\u9078\u898f\u5247 +jobEnvironmentVariableFilters=篩é¸å»ºç½®éšŽæ®µç’°å¢ƒè®Šæ•¸ +globalRules=全域篩é¸è¦å‰‡ +showGlobalRules=顯示全域篩é¸è¦å‰‡ +addRule=加入篩é¸è¦å‰‡ diff --git a/core/src/main/resources/jenkins/tasks/filters/impl/Messages_pt_BR.properties b/core/src/main/resources/jenkins/tasks/filters/impl/Messages_pt_BR.properties index fe014b82d0fe..0cd2b5f19c7e 100644 --- a/core/src/main/resources/jenkins/tasks/filters/impl/Messages_pt_BR.properties +++ b/core/src/main/resources/jenkins/tasks/filters/impl/Messages_pt_BR.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -RetainVariablesLocalRule.CharacteristicEnvVarsFormValidationWarning=\u00C9 recomendado reter vari\u00E1veis de ambiente caracter\u00EDsticas porque o Jenkins as usa para identificar e matar processos fora de controle quando uma constru\u00E7\u00E3o \u00C9 feita. -RetainVariablesLocalRule_RESET_DisplayName=Reiniciar para o valor padr\u00E3o -RetainVariablesLocalRule.CharacteristicEnvVarsFormValidationOK=Em adi\u00E7\u00E3o a qualquer vari\u00E1vel de ambiente listada acima, o Jenkins ir\u00e1 reter vari\u00E1veis de ambiente que ele precisa para identificar e matar processos fora de controle quando uma constru\u00E7\u00E3o \u00C9 feita. -RetainVariablesLocalRule.DisplayName=Manter apenas as vari\u00E1vel de ambiente especificadas. +RetainVariablesLocalRule.CharacteristicEnvVarsFormValidationWarning=É recomendado reter variáveis de ambiente características porque o Jenkins as usa para identificar e matar processos fora de controle quando uma construção É feita. +RetainVariablesLocalRule_RESET_DisplayName=Reiniciar para o valor padrão +RetainVariablesLocalRule.CharacteristicEnvVarsFormValidationOK=Em adição a qualquer variável de ambiente listada acima, o Jenkins irá reter variáveis de ambiente que ele precisa para identificar e matar processos fora de controle quando uma construção É feita. +RetainVariablesLocalRule.DisplayName=Manter apenas as variável de ambiente especificadas. RetainVariablesLocalRule_REMOVE_DisplayName=Remover do ambiente -RetainVariablesLocalRule.ResetMessage=As seguintes vari\u00E1vel de ambiente foram reiniciadas para seus valores padr\u00e3o de sistema por ''{0}'': {1} -RetainVariablesLocalRule.RemovalMessage=As seguintes vari\u00E1vel de ambiente foram removidas por ''{0}'': {1} +RetainVariablesLocalRule.ResetMessage=As seguintes variável de ambiente foram reiniciadas para seus valores padrão de sistema por ''{0}'': {1} +RetainVariablesLocalRule.RemovalMessage=As seguintes variável de ambiente foram removidas por ''{0}'': {1} diff --git a/core/src/main/resources/jenkins/tasks/filters/impl/Messages_zh_TW.properties b/core/src/main/resources/jenkins/tasks/filters/impl/Messages_zh_TW.properties index 184c8c5eead0..9da06cb41c2c 100644 --- a/core/src/main/resources/jenkins/tasks/filters/impl/Messages_zh_TW.properties +++ b/core/src/main/resources/jenkins/tasks/filters/impl/Messages_zh_TW.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -RetainVariablesLocalRule.DisplayName=\u53ea\u4fdd\u7559\u7279\u5b9a\u7684\u74b0\u5883\u8b8a\u6578 -RetainVariablesLocalRule_RESET_DisplayName=\u91cd\u8a2d\u70ba\u9810\u8a2d\u503c -RetainVariablesLocalRule_REMOVE_DisplayName=\u5f9e\u74b0\u5883\u79fb\u9664 -RetainVariablesLocalRule.RemovalMessage=\u4e0b\u5217\u74b0\u5883\u8b8a\u6578\u5df2\u7531\u300c{0}\u300d\u79fb\u9664\: {1} -RetainVariablesLocalRule.ResetMessage=\u4e0b\u5217\u74b0\u5883\u8b8a\u6578\u5df2\u7531\u300c{0}\u300d\u91cd\u8a2d\u70ba\u7cfb\u7d71\u9810\u8a2d\u503c\: {1} -RetainVariablesLocalRule.CharacteristicEnvVarsFormValidationWarning=\u5efa\u8b70\u4fdd\u7559\u7279\u6027\u74b0\u5883\u8b8a\u6578\uff0c\u56e0\u70ba Jenkins \u6703\u5728\u5efa\u7f6e\u5b8c\u6210\u5f8c\u4f7f\u7528\u5b83\u5011\u4f86\u8b58\u5225\u4e26\u7d42\u6b62\u5931\u63a7\u7684\u57f7\u884c\u5e8f\u3002 -RetainVariablesLocalRule.CharacteristicEnvVarsFormValidationOK=\u9664\u4e86\u4e0a\u5217\u7684\u74b0\u5883\u8b8a\u6578\uff0cJenkins \u4e5f\u6703\u4fdd\u7559\u5b83\u8981\u7528\u4f86\u8b58\u5225\u4e26\u7d42\u6b62\u5931\u63a7\u57f7\u884c\u5e8f\u7684\u74b0\u5883\u8b8a\u6578\u3002 +RetainVariablesLocalRule.DisplayName=åªä¿ç•™ç‰¹å®šçš„環境變數 +RetainVariablesLocalRule_RESET_DisplayName=é‡è¨­ç‚ºé è¨­å€¼ +RetainVariablesLocalRule_REMOVE_DisplayName=從環境移除 +RetainVariablesLocalRule.RemovalMessage=下列環境變數已由「{0}ã€ç§»é™¤\: {1} +RetainVariablesLocalRule.ResetMessage=下列環境變數已由「{0}ã€é‡è¨­ç‚ºç³»çµ±é è¨­å€¼\: {1} +RetainVariablesLocalRule.CharacteristicEnvVarsFormValidationWarning=建議ä¿ç•™ç‰¹æ€§ç’°å¢ƒè®Šæ•¸ï¼Œå› ç‚º Jenkins 會在建置完æˆå¾Œä½¿ç”¨å®ƒå€‘來識別並終止失控的執行åºã€‚ +RetainVariablesLocalRule.CharacteristicEnvVarsFormValidationOK=除了上列的環境變數,Jenkins 也會ä¿ç•™å®ƒè¦ç”¨ä¾†è­˜åˆ¥ä¸¦çµ‚止失控執行åºçš„環境變數。 diff --git a/core/src/main/resources/jenkins/tasks/filters/impl/RetainVariablesLocalRule/config_pt_BR.properties b/core/src/main/resources/jenkins/tasks/filters/impl/RetainVariablesLocalRule/config_pt_BR.properties index 9da92ff81171..316a442ed216 100644 --- a/core/src/main/resources/jenkins/tasks/filters/impl/RetainVariablesLocalRule/config_pt_BR.properties +++ b/core/src/main/resources/jenkins/tasks/filters/impl/RetainVariablesLocalRule/config_pt_BR.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -retainCharacteristicEnvVarsLabel=Reter vari\u00E1veis de ambiente caracter\u00EDsticas -variablesDescription=Todos as outras vari\u00E1veis de ambiente providas pelo Jenkins ser\u00E3o removidas. \ -Vari\u00E1veis de ambiente definidas fora do Jenkins ser\u00E3o reiniciadas para seus valores padr\u00E3o ou removidas, dependendo da op\u00E7\u00E3o ''Processar manuseio de vari\u00E1veis de ambiente'', exceto se especificado aqui. -retainProcessVariablesLabel=Processar manuseio de vari\u00E1veis de ambiente -variablesLabel=Vari\u00E1veis de ambiente para reter +retainCharacteristicEnvVarsLabel=Reter variáveis de ambiente características +variablesDescription=Todos as outras variáveis de ambiente providas pelo Jenkins serão removidas. \ +Variáveis de ambiente definidas fora do Jenkins serão reiniciadas para seus valores padrão ou removidas, dependendo da opção ''Processar manuseio de variáveis de ambiente'', exceto se especificado aqui. +retainProcessVariablesLabel=Processar manuseio de variáveis de ambiente +variablesLabel=Variáveis de ambiente para reter diff --git a/core/src/main/resources/jenkins/tasks/filters/impl/RetainVariablesLocalRule/config_zh_TW.properties b/core/src/main/resources/jenkins/tasks/filters/impl/RetainVariablesLocalRule/config_zh_TW.properties index 7217772b9c22..b9c22d9d8064 100644 --- a/core/src/main/resources/jenkins/tasks/filters/impl/RetainVariablesLocalRule/config_zh_TW.properties +++ b/core/src/main/resources/jenkins/tasks/filters/impl/RetainVariablesLocalRule/config_zh_TW.properties @@ -19,7 +19,7 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -variablesLabel=\u8981\u4fdd\u7559\u74b0\u5883\u8b8a\u6578 -variablesDescription=\u6240\u6709\u5176\u4ed6 Jenkins \u63d0\u4f9b\u7684\u74b0\u5883\u8b8a\u6578\u90fd\u5c07\u88ab\u79fb\u9664\u3002\u5728 Jenkins \u4e4b\u5916\u5b9a\u7fa9\u7684\u74b0\u5883\u8b8a\u6578\u90fd\u5c07\u88ab\u91cd\u8a2d\u70ba\u9810\u8a2d\u503c\u6216\u79fb\u9664\uff0c\u9664\u975e\u5728\u6b64\u6307\u5b9a\uff0c\u5426\u5247\u5c07\u4f9d\u64da\u300c\u57f7\u884c\u5e8f\u74b0\u5883\u8b8a\u6578\u8655\u7406\u300d\u7684\u9078\u9805\u3002 -retainCharacteristicEnvVarsLabel=\u4fdd\u7559\u7279\u6027\u74b0\u5883\u8b8a\u6578 -retainProcessVariablesLabel=\u57f7\u884c\u5e8f\u74b0\u5883\u8b8a\u6578\u8655\u7406 +variablesLabel=è¦ä¿ç•™ç’°å¢ƒè®Šæ•¸ +variablesDescription=所有其他 Jenkins æ供的環境變數都將被移除。在 Jenkins 之外定義的環境變數都將被é‡è¨­ç‚ºé è¨­å€¼æˆ–移除,除éžåœ¨æ­¤æŒ‡å®šï¼Œå¦å‰‡å°‡ä¾æ“šã€ŒåŸ·è¡Œåºç’°å¢ƒè®Šæ•¸è™•ç†ã€çš„é¸é …。 +retainCharacteristicEnvVarsLabel=ä¿ç•™ç‰¹æ€§ç’°å¢ƒè®Šæ•¸ +retainProcessVariablesLabel=執行åºç’°å¢ƒè®Šæ•¸è™•ç† diff --git a/core/src/main/resources/jenkins/tools/GlobalToolConfiguration/index_it.properties b/core/src/main/resources/jenkins/tools/GlobalToolConfiguration/index_it.properties index a157f9d0ad3d..7931e55b27d9 100644 --- a/core/src/main/resources/jenkins/tools/GlobalToolConfiguration/index_it.properties +++ b/core/src/main/resources/jenkins/tools/GlobalToolConfiguration/index_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/tools/GlobalToolConfiguration/index_sr.properties b/core/src/main/resources/jenkins/tools/GlobalToolConfiguration/index_sr.properties index 055450a8e202..a1c32313e5d6 100644 --- a/core/src/main/resources/jenkins/tools/GlobalToolConfiguration/index_sr.properties +++ b/core/src/main/resources/jenkins/tools/GlobalToolConfiguration/index_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Back\ to\ Dashboard=\u041D\u0430\u0437\u0430\u0434 \u043A\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043D\u0443 \u043F\u0430\u043D\u0435\u043B\u0443 -Manage\ Jenkins=\u0423\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 Jenkins-\u043E\u043C -Save=\u0421\u0430\u0447\u0443\u0432\u0430\u0458 -Apply=\u041F\u0440\u0438\u043C\u0435\u043D\u0438 +Back\ to\ Dashboard=Ðазад ка контролну панелу +Manage\ Jenkins=Управљање Jenkins-ом +Save=Сачувај +Apply=Примени diff --git a/core/src/main/resources/jenkins/tools/GlobalToolConfiguration/index_zh_TW.properties b/core/src/main/resources/jenkins/tools/GlobalToolConfiguration/index_zh_TW.properties index 9fb0edb3d77c..adf88698cade 100644 --- a/core/src/main/resources/jenkins/tools/GlobalToolConfiguration/index_zh_TW.properties +++ b/core/src/main/resources/jenkins/tools/GlobalToolConfiguration/index_zh_TW.properties @@ -1,2 +1,2 @@ -Back\ to\ Dashboard=\u8fd4\u56de\u8cc7\u8a0a\u4e3b\u9801 -Manage\ Jenkins=\u7ba1\u7406 Jenkins +Back\ to\ Dashboard=è¿”å›žè³‡è¨Šä¸»é  +Manage\ Jenkins=ç®¡ç† Jenkins diff --git a/core/src/main/resources/jenkins/triggers/Messages_bg.properties b/core/src/main/resources/jenkins/triggers/Messages_bg.properties index 1fb7250fa1c3..d28ed63916d8 100644 --- a/core/src/main/resources/jenkins/triggers/Messages_bg.properties +++ b/core/src/main/resources/jenkins/triggers/Messages_bg.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. ReverseBuildTrigger.build_after_other_projects_are_built=\ - \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0441\u043b\u0435\u0434 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0434\u0440\u0443\u0433\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0438. + Изграждане Ñлед изграждането на други проекти. ReverseBuildTrigger.running_as_cannot_even_see_for_trigger_f=\ - \u041f\u0440\u043e\u0446\u0435\u0441, \u0440\u0430\u0431\u043e\u0442\u0435\u0449 \u0441 \u043f\u0440\u0430\u0432\u0430\u0442\u0430 \u043d\u0430 \u201e{0}\u201c \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0432\u0438\u0434\u0438 \u0437\u0430\u0434\u0430\u0447\u0430\u0442\u0430 \u201e{1}\u201c \u043e\u0442\ - \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e\u0442\u043e \u0438\u0437\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u201e{2}\u201c. + ПроцеÑ, работещ Ñ Ð¿Ñ€Ð°Ð²Ð°Ñ‚Ð° на „{0}“ не може да види задачата „{1}“ от\ + автоматичното изпълнение на „{2}“. # SCM polling vetoed by {0} SCMTriggerItem.PollingVetoed=\ - \u0417\u0430\u044f\u0432\u043a\u0438\u0442\u0435 \u043a\u044a\u043c \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430 \u0437\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b \u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435 \u0441\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0441\u043f\u0440\u0435\u043d\u0438 \u043e\u0442 {0}. + ЗаÑвките към ÑиÑтемата за контрол на верÑиите Ñа временно Ñпрени от {0}. diff --git a/core/src/main/resources/jenkins/triggers/Messages_de.properties b/core/src/main/resources/jenkins/triggers/Messages_de.properties index c096c59303f5..90e6a8e245b0 100644 --- a/core/src/main/resources/jenkins/triggers/Messages_de.properties +++ b/core/src/main/resources/jenkins/triggers/Messages_de.properties @@ -22,4 +22,4 @@ ReverseBuildTrigger.build_after_other_projects_are_built=Starte Build, nachdem andere Projekte gebaut wurden SCMTriggerItem.PollingVetoed=SCM-Polling wurde von {0} untersagt -ReverseBuildTrigger.running_as_cannot_even_see_for_trigger_f=Builds von {2} werden als {0} ausgef\u00FChrt und k\u00F6nnen daher {1} nicht sehen. +ReverseBuildTrigger.running_as_cannot_even_see_for_trigger_f=Builds von {2} werden als {0} ausgeführt und können daher {1} nicht sehen. diff --git a/core/src/main/resources/jenkins/triggers/Messages_fr.properties b/core/src/main/resources/jenkins/triggers/Messages_fr.properties index 726d530fc946..dd6d3bf1b3f0 100644 --- a/core/src/main/resources/jenkins/triggers/Messages_fr.properties +++ b/core/src/main/resources/jenkins/triggers/Messages_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ReverseBuildTrigger.build_after_other_projects_are_built=Construire apr\u00e8s le build sur d''autres projets +ReverseBuildTrigger.build_after_other_projects_are_built=Construire après le build sur d''autres projets diff --git a/core/src/main/resources/jenkins/triggers/Messages_it.properties b/core/src/main/resources/jenkins/triggers/Messages_it.properties index 540de398ebe5..f2bbfc45e5d4 100644 --- a/core/src/main/resources/jenkins/triggers/Messages_it.properties +++ b/core/src/main/resources/jenkins/triggers/Messages_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -24,7 +24,7 @@ ReverseBuildTrigger.build_after_other_projects_are_built=Esegui la \ compilazione dopo aver compilato gli altri progetti ReverseBuildTrigger.running_as_cannot_even_see_for_trigger_f=Eseguendo la \ - compilazione con le credenziali dell''utente {0} non è possibile nemmeno \ + compilazione con le credenziali dell''utente {0} non è possibile nemmeno \ visualizzare {1} per richiamare il trigger da {2} SCMTriggerItem.PollingVetoed=Polling del sistema di gestione del codice \ sorgente vietato da {0} diff --git a/core/src/main/resources/jenkins/triggers/Messages_ja.properties b/core/src/main/resources/jenkins/triggers/Messages_ja.properties index 24f8bce1822f..11c68d68643b 100644 --- a/core/src/main/resources/jenkins/triggers/Messages_ja.properties +++ b/core/src/main/resources/jenkins/triggers/Messages_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ReverseBuildTrigger.build_after_other_projects_are_built=\u4ed6\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u5f8c\u306b\u30d3\u30eb\u30c9 +ReverseBuildTrigger.build_after_other_projects_are_built=他プロジェクトã®å¾Œã«ãƒ“ルド ReverseBuildTrigger.running_as_cannot_even_see_for_trigger_f=Running as {0} cannot even see {1} for trigger from {2} diff --git a/core/src/main/resources/jenkins/triggers/Messages_lt.properties b/core/src/main/resources/jenkins/triggers/Messages_lt.properties index ca27c3e1f2b0..748287d9aa71 100644 --- a/core/src/main/resources/jenkins/triggers/Messages_lt.properties +++ b/core/src/main/resources/jenkins/triggers/Messages_lt.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors ReverseBuildTrigger.build_after_other_projects_are_built=Vykdyti pabaigus kitus projektus -ReverseBuildTrigger.running_as_cannot_even_see_for_trigger_f=Vykdomas kaip {0} net negali matyti {1} trigeriui i\u0161 {2} +ReverseBuildTrigger.running_as_cannot_even_see_for_trigger_f=Vykdomas kaip {0} net negali matyti {1} trigeriui iÅ¡ {2} diff --git a/core/src/main/resources/jenkins/triggers/Messages_pl.properties b/core/src/main/resources/jenkins/triggers/Messages_pl.properties index 68d7ca29cb31..4442e3c1706d 100644 --- a/core/src/main/resources/jenkins/triggers/Messages_pl.properties +++ b/core/src/main/resources/jenkins/triggers/Messages_pl.properties @@ -19,4 +19,4 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ReverseBuildTrigger.build_after_other_projects_are_built=Uruchamiaj, gdy inne zadania zostan\u0105 zako\u0144czone +ReverseBuildTrigger.build_after_other_projects_are_built=Uruchamiaj, gdy inne zadania zostanÄ… zakoÅ„czone diff --git a/core/src/main/resources/jenkins/triggers/Messages_pt_BR.properties b/core/src/main/resources/jenkins/triggers/Messages_pt_BR.properties index 19f242c17c7a..503facb528d5 100644 --- a/core/src/main/resources/jenkins/triggers/Messages_pt_BR.properties +++ b/core/src/main/resources/jenkins/triggers/Messages_pt_BR.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ReverseBuildTrigger.running_as_cannot_even_see_for_trigger_f=Executando como {0} n\u00E3o \u00E9 poss\u00EDvel sequer ver {1} para \ +ReverseBuildTrigger.running_as_cannot_even_see_for_trigger_f=Executando como {0} não é possível sequer ver {1} para \ disparar de {2} -ReverseBuildTrigger.build_after_other_projects_are_built=Construir ap\u00F3s a constru\u00E7\u00E3o de outros projetos +ReverseBuildTrigger.build_after_other_projects_are_built=Construir após a construção de outros projetos SCMTriggerItem.PollingVetoed=Sondagem do SCM vetada por {0} diff --git a/core/src/main/resources/jenkins/triggers/Messages_sr.properties b/core/src/main/resources/jenkins/triggers/Messages_sr.properties index 01c6e553f887..574682571c48 100644 --- a/core/src/main/resources/jenkins/triggers/Messages_sr.properties +++ b/core/src/main/resources/jenkins/triggers/Messages_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -ReverseBuildTrigger.build_after_other_projects_are_built=\u0418\u0437\u0433\u0440\u0430\u0434\u0438 \u043F\u043E\u0441\u043B\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 \u0434\u0440\u0443\u0433\u0438\u0445 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 -SCMTriggerItem.PollingVetoed=\u0417\u0430\u0445\u0442\u0435\u0432\u0438 \u043F\u0440\u0435\u043C\u0430 \u0441\u0438\u0441\u0442\u0435\u043C\u0443 \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0430 \u0438\u0437\u0432\u043E\u0440\u043D\u043E\u0433 \u043A\u043E\u0434\u0430 \u0441\u0443 \u043F\u0440\u0438\u0432\u0440\u0435\u043C\u0435\u043D\u043E \u0441\u0443\u0441\u043F\u0435\u043D\u0434\u043E\u0432\u0430\u043D\u0438 \u043E\u0434 \u0441\u0442\u0440\u0430\u043D\u0435 {0}. -ReverseBuildTrigger.running_as_cannot_even_see_for_trigger_f=\u0418\u0437\u0431\u0440\u0448\u0430\u0432\u0430\u045A\u0435 \u043A\u0430\u043E {0} \u043D\u0435\u043C\u043E\u0436\u0435 \u043F\u0440\u0438\u0441\u0442\u0443\u043F\u0438\u0442\u0438 \u043D\u0438 {1} \u0437\u0430 \u0438\u0437\u0430\u0437\u0438\u0432\u0430\u045A\u0435 \u043E\u0434 {2} +ReverseBuildTrigger.build_after_other_projects_are_built=Изгради поÑле изградње других пројекта +SCMTriggerItem.PollingVetoed=Захтеви према ÑиÑтему управљања изворног кода Ñу привремено ÑуÑпендовани од Ñтране {0}. +ReverseBuildTrigger.running_as_cannot_even_see_for_trigger_f=Избршавање као {0} неможе приÑтупити ни {1} за изазивање од {2} diff --git a/core/src/main/resources/jenkins/triggers/Messages_zh_TW.properties b/core/src/main/resources/jenkins/triggers/Messages_zh_TW.properties index e1eb8e339ac9..17e5f37f3b6b 100644 --- a/core/src/main/resources/jenkins/triggers/Messages_zh_TW.properties +++ b/core/src/main/resources/jenkins/triggers/Messages_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ReverseBuildTrigger.build_after_other_projects_are_built=\u5728\u5176\u4ed6\u5c08\u6848\u5efa\u7f6e\u5b8c\u6210\u5f8c\u5efa\u7f6e -ReverseBuildTrigger.running_as_cannot_even_see_for_trigger_f=\u4ee5 {0} \u8eab\u5206\u57f7\u884c\u7121\u6cd5\u5f9e {2} \u76e3\u63a7 {1} \u4f5c\u70ba\u89f8\u767c\u7a0b\u5e8f -SCMTriggerItem.PollingVetoed=SCM \u8f2a\u8a62\u88ab {0} \u7981\u6b62 +ReverseBuildTrigger.build_after_other_projects_are_built=在其他專案建置完æˆå¾Œå»ºç½® +ReverseBuildTrigger.running_as_cannot_even_see_for_trigger_f=以 {0} 身分執行無法從 {2} 監控 {1} ä½œç‚ºè§¸ç™¼ç¨‹åº +SCMTriggerItem.PollingVetoed=SCM 輪詢被 {0} ç¦æ­¢ diff --git a/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_bg.properties b/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_bg.properties index 434c506bfeeb..44b7e319e985 100644 --- a/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_bg.properties +++ b/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_bg.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Trigger\ even\ if\ the\ build\ is\ unstable=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u0434\u043e\u0440\u0438 \u0438 \u043f\u0440\u0438 \u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u0435\u043d \u043f\u0440\u043e\u0435\u043a\u0442 + Стартиране дори и при неÑтабилен проект Projects\ to\ watch=\ - \u041f\u0440\u043e\u0435\u043a\u0442\u0438 \u0437\u0430 \u043d\u0430\u0431\u043b\u044e\u0434\u0435\u043d\u0438\u0435 + Проекти за наблюдение Trigger\ only\ if\ build\ is\ stable=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u0441\u0430\u043c\u043e \u043f\u0440\u0438 \u0441\u0442\u0430\u0431\u0438\u043b\u0435\u043d \u043f\u0440\u043e\u0435\u043a\u0442 + Стартиране Ñамо при Ñтабилен проект Trigger\ even\ if\ the\ build\ fails=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u0438 \u043f\u0440\u0438 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0434\u0435\u043d \u043f\u0440\u043e\u0435\u043a\u0442 + Стартиране и при неуÑпешно изграден проект diff --git a/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_de.properties b/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_de.properties index 620aa850570b..a6854dad9d9d 100644 --- a/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_de.properties +++ b/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_de.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Projects\ to\ watch=Zu überwachende Projekte -Trigger\ only\ if\ build\ is\ stable=Nur auslösen, wenn der Build stabil ist -Trigger\ even\ if\ the\ build\ is\ unstable=Auslösen, selbst wenn der Build instabil ist -Trigger\ even\ if\ the\ build\ fails=Auslösen, selbst wenn der Build fehlschlägt +Projects\ to\ watch=Zu überwachende Projekte +Trigger\ only\ if\ build\ is\ stable=Nur auslösen, wenn der Build stabil ist +Trigger\ even\ if\ the\ build\ is\ unstable=Auslösen, selbst wenn der Build instabil ist +Trigger\ even\ if\ the\ build\ fails=Auslösen, selbst wenn der Build fehlschlägt diff --git a/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_fr.properties b/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_fr.properties index 22314b1499c4..05034a7a0780 100644 --- a/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_fr.properties +++ b/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_fr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Projects\ to\ watch=Projet \u00e0 surveiller -Trigger\ only\ if\ build\ is\ stable=D\u00e9clencher que si la construction est stable -Trigger\ even\ if\ the\ build\ is\ unstable=D\u00e9clencher m\u00eame si la construction est instable -Trigger\ even\ if\ the\ build\ fails=D\u00e9clencher m\u00eame si la construction \u00e9choue +Projects\ to\ watch=Projet à surveiller +Trigger\ only\ if\ build\ is\ stable=Déclencher que si la construction est stable +Trigger\ even\ if\ the\ build\ is\ unstable=Déclencher même si la construction est instable +Trigger\ even\ if\ the\ build\ fails=Déclencher même si la construction échoue diff --git a/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_it.properties b/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_it.properties index 35534ad2137e..eebf8a26b048 100644 --- a/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_it.properties +++ b/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -23,8 +23,8 @@ Projects\ to\ watch=Progetti da seguire Trigger\ only\ if\ build\ is\ stable=Richiama il trigger solo se la \ - compilazione è stabile + compilazione è stabile Trigger\ even\ if\ the\ build\ fails=Richiama il trigger anche quando la \ compilazione non riesce Trigger\ even\ if\ the\ build\ is\ unstable=Richiama il trigger anche quando \ - la compilazione non è stabile + la compilazione non è stabile diff --git a/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_ja.properties b/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_ja.properties index 377a8abc436e..3f69655051c1 100644 --- a/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_ja.properties +++ b/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Projects\ to\ watch=\u5bfe\u8c61\u30d7\u30ed\u30b8\u30a7\u30af\u30c8 -Trigger\ only\ if\ build\ is\ stable=\u5b89\u5b9a\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u8d77\u52d5 -Trigger\ even\ if\ the\ build\ is\ unstable=\u4e0d\u5b89\u5b9a\u3067\u3082\u8d77\u52d5 -Trigger\ even\ if\ the\ build\ fails=\u5931\u6557\u3057\u305f\u5834\u5408\u3067\u3082\u8d77\u52d5 +Projects\ to\ watch=対象プロジェクト +Trigger\ only\ if\ build\ is\ stable=安定ã—ã¦ã„ã‚‹å ´åˆã®ã¿èµ·å‹• +Trigger\ even\ if\ the\ build\ is\ unstable=ä¸å®‰å®šã§ã‚‚èµ·å‹• +Trigger\ even\ if\ the\ build\ fails=失敗ã—ãŸå ´åˆã§ã‚‚èµ·å‹• diff --git a/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_lt.properties b/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_lt.properties index fecbec18c40c..ddeeec5e9548 100644 --- a/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_lt.properties +++ b/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_lt.properties @@ -1,4 +1,4 @@ -Projects\ to\ watch=Steb\u0117ti projektus +Projects\ to\ watch=StebÄ—ti projektus Trigger\ only\ if\ build\ is\ stable=Paleisti, tik jei vykdymas stabilus Trigger\ even\ if\ the\ build\ is\ unstable=Paleisti, net jei vykdymas nestabilus Trigger\ even\ if\ the\ build\ fails=Paleisti, net jei vykdymas nepavyko diff --git a/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_pl.properties b/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_pl.properties index 1dc6324ab486..80764b92f5b1 100644 --- a/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_pl.properties +++ b/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_pl.properties @@ -19,7 +19,7 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Trigger\ only\ if\ build\ is\ stable=Uruchamiaj tylko, je\u015Bli zadanie by\u0142o stabilne -Trigger\ even\ if\ the\ build\ is\ unstable=Uruchamiaj nawet, je\u015Bli zadanie by\u0142o niestabilne +Trigger\ only\ if\ build\ is\ stable=Uruchamiaj tylko, jeÅ›li zadanie byÅ‚o stabilne +Trigger\ even\ if\ the\ build\ is\ unstable=Uruchamiaj nawet, jeÅ›li zadanie byÅ‚o niestabilne Projects\ to\ watch=Obserwowane projekty -Trigger\ even\ if\ the\ build\ fails=Uruchamiaj nawet, je\u015Bli zadanie nie powiod\u0142o si\u0119 +Trigger\ even\ if\ the\ build\ fails=Uruchamiaj nawet, jeÅ›li zadanie nie powiodÅ‚o siÄ™ diff --git a/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_pt_BR.properties b/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_pt_BR.properties index fd371a92b1b8..5d6b62d3bdc3 100644 --- a/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_pt_BR.properties +++ b/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_pt_BR.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Trigger\ only\ if\ build\ is\ stable=Disparar apenas se a constru\u00E7\u00E3o estiver est\u00E1vel -Trigger\ even\ if\ the\ build\ is\ unstable=Disparar mesmo se a constru\u00E7\u00E3o estiver inst\u00E1vel -Trigger\ even\ if\ the\ build\ fails=Disparar mesmo se a constru\u00E7\u00E3o falhar +Trigger\ only\ if\ build\ is\ stable=Disparar apenas se a construção estiver estável +Trigger\ even\ if\ the\ build\ is\ unstable=Disparar mesmo se a construção estiver instável +Trigger\ even\ if\ the\ build\ fails=Disparar mesmo se a construção falhar Projects\ to\ watch=Projetos observados -Always\ trigger,\ even\ if\ the\ build\ is\ aborted=Sempre disparar, mesmo que a constru\u00E7\u00E3o seja abortada +Always\ trigger,\ even\ if\ the\ build\ is\ aborted=Sempre disparar, mesmo que a construção seja abortada diff --git a/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_sr.properties b/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_sr.properties index 37827874c808..9a3f4727ff32 100644 --- a/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_sr.properties +++ b/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Trigger\ only\ if\ build\ is\ stable=\u041F\u043E\u043A\u0440\u0435\u043D\u0438 \u0441\u0430\u043C\u043E \u0430\u043A\u043E \u0458\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0441\u0442\u0430\u0431\u0438\u043B\u043D\u0430 -Trigger\ even\ if\ the\ build\ is\ unstable=\u041F\u043E\u043A\u0440\u0435\u043D\u0438 \u0438 \u0430\u043A\u043E \u0458\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u043D\u0435\u0441\u0442\u0430\u0431\u0438\u043B\u043D\u0430 -Trigger\ even\ if\ the\ build\ fails=\u041F\u043E\u043A\u0440\u0435\u043D\u0438 \u0438 \u0430\u043A\u043E \u0458\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0430 -Projects\ to\ watch=\u041F\u0440\u043E\u0458\u0435\u043A\u0442\u0435 \u043A\u043E\u0458\u0435 \u043F\u0440\u0430\u0442\u0438\u0442\u0435 +Trigger\ only\ if\ build\ is\ stable=Покрени Ñамо ако је изградња Ñтабилна +Trigger\ even\ if\ the\ build\ is\ unstable=Покрени и ако је изградња неÑтабилна +Trigger\ even\ if\ the\ build\ fails=Покрени и ако је изградња неуÑпешна +Projects\ to\ watch=Пројекте које пратите diff --git a/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_zh_TW.properties b/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_zh_TW.properties index d035a6f9d982..9b2ed29d8509 100644 --- a/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_zh_TW.properties +++ b/core/src/main/resources/jenkins/triggers/ReverseBuildTrigger/config_zh_TW.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Trigger\ even\ if\ the\ build\ is\ unstable=\u5c31\u7b97\u5efa\u7f6e\u4e0d\u7a69\u5b9a\u4e5f\u8981\u89f8\u767c -Trigger\ even\ if\ the\ build\ fails=\u5c31\u7b97\u5efa\u7f6e\u5931\u6557\u4e5f\u8981\u89f8\u767c -Trigger\ only\ if\ build\ is\ stable=\u53ea\u5728\u5efa\u7f6e\u7a69\u5b9a\u6642\u89f8\u767c -Projects\ to\ watch=\u8981\u76e3\u63a7\u7684\u5c08\u6848 -Always\ trigger,\ even\ if\ the\ build\ is\ aborted=\u7e3d\u662f\u89f8\u767c\uff0c\u5373\u4f7f\u5efa\u7f6e\u5df2\u4e2d\u6b62 +Trigger\ even\ if\ the\ build\ is\ unstable=就算建置ä¸ç©©å®šä¹Ÿè¦è§¸ç™¼ +Trigger\ even\ if\ the\ build\ fails=就算建置失敗也è¦è§¸ç™¼ +Trigger\ only\ if\ build\ is\ stable=åªåœ¨å»ºç½®ç©©å®šæ™‚觸發 +Projects\ to\ watch=è¦ç›£æŽ§çš„專案 +Always\ trigger,\ even\ if\ the\ build\ is\ aborted=總是觸發,å³ä½¿å»ºç½®å·²ä¸­æ­¢ diff --git a/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_bg.properties b/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_bg.properties index 962329a96be6..d75db4e34c26 100644 --- a/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_bg.properties +++ b/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. pending=\ - \u043f\u0440\u0435\u0434\u0441\u0442\u043e\u0438 + предÑтои cancel\ this\ build=\ - \u043e\u0442\u043c\u044f\u043d\u0430 \u043d\u0430 \u0442\u043e\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + отмÑна на това изграждане Expected\ build\ number=\ - \u041e\u0447\u0430\u043a\u0432\u0430\u043d \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + Очакван номер на изграждане diff --git a/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_it.properties b/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_it.properties index b045ff0bb9ec..c2d2ad03ff30 100644 --- a/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_it.properties +++ b/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_lt.properties b/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_lt.properties index 09e8130a80e1..915fb4d07af9 100644 --- a/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_lt.properties +++ b/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_lt.properties @@ -1,3 +1,3 @@ -cancel\ this\ build=nutraukti \u0161\u012f vykdym\u0105 -Expected\ build\ number=Tik\u0117tinas vykdymo numeris +cancel\ this\ build=nutraukti šį vykdymÄ… +Expected\ build\ number=TikÄ—tinas vykdymo numeris pending=laukiama diff --git a/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_pt_BR.properties b/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_pt_BR.properties index 46eb0d7b01fb..fabdc009bbae 100644 --- a/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_pt_BR.properties +++ b/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Expected\ build\ number=N\u00FAmero da constru\u00E7\u00E3o esperado +Expected\ build\ number=Número da construção esperado pending=pendente -cancel\ this\ build=cancelar esta constru\u00E7\u00E3o +cancel\ this\ build=cancelar esta construção diff --git a/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_sr.properties b/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_sr.properties index fc95a97d1218..29ad765a10c1 100644 --- a/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_sr.properties +++ b/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Expected\ build\ number=\u041E\u0447\u0435\u043A\u0438\u0432\u0430\u043D \u0431\u0440\u043E\u0458 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -pending=\u0447\u0435\u043A\u0430\u045A\u0435 -cancel\ this\ build=\u043E\u0442\u043A\u0430\u0436\u0438 \u043E\u0432\u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 +Expected\ build\ number=Очекиван број изградње +pending=чекање +cancel\ this\ build=откажи ову изградњу diff --git a/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_zh_TW.properties b/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_zh_TW.properties index 58debc67d3c8..81e754fe3033 100644 --- a/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_zh_TW.properties +++ b/core/src/main/resources/jenkins/widgets/HistoryPageFilter/queue-items_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -pending=\u64f1\u7f6e -cancel\ this\ build=\u53d6\u6d88\u6b64\u5efa\u7f6e -Expected\ build\ number=\u9810\u671f\u7684\u5efa\u7f6e\u7de8\u865f +pending=擱置 +cancel\ this\ build=å–消此建置 +Expected\ build\ number=é æœŸçš„建置編號 diff --git a/core/src/main/resources/lib/form/advanced_bg.properties b/core/src/main/resources/lib/form/advanced_bg.properties index 73e08e7b8d13..e9fa8e429732 100644 --- a/core/src/main/resources/lib/form/advanced_bg.properties +++ b/core/src/main/resources/lib/form/advanced_bg.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Advanced=\ - \u0417\u0430 \u043d\u0430\u043f\u0440\u0435\u0434\u043d\u0430\u043b\u0438 + За напреднали # One or more fields in this block have been edited. customizedFields=\ - \u041f\u043e\u043d\u0435 \u0435\u0434\u043d\u043e \u043f\u043e\u043b\u0435 \u0432 \u0442\u0430\u0437\u0438 \u0441\u0435\u043a\u0446\u0438\u044f \u0435 \u043f\u0440\u043e\u043c\u0435\u043d\u0435\u043d\u043e. + Поне едно поле в тази ÑÐµÐºÑ†Ð¸Ñ Ðµ променено. diff --git a/core/src/main/resources/lib/form/advanced_ca.properties b/core/src/main/resources/lib/form/advanced_ca.properties index 3c013edcec0a..8be75f864a80 100644 --- a/core/src/main/resources/lib/form/advanced_ca.properties +++ b/core/src/main/resources/lib/form/advanced_ca.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Advanced=Avan\u00E7at +Advanced=Avançat diff --git a/core/src/main/resources/lib/form/advanced_cs.properties b/core/src/main/resources/lib/form/advanced_cs.properties index b9c4217af85c..78a4b17c5696 100644 --- a/core/src/main/resources/lib/form/advanced_cs.properties +++ b/core/src/main/resources/lib/form/advanced_cs.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Advanced=Roz\u0161\u00ED\u0159en\u00E9 nastaven\u00ED +Advanced=Rozšířené nastavení diff --git a/core/src/main/resources/lib/form/advanced_et.properties b/core/src/main/resources/lib/form/advanced_et.properties index 2c5985055d7e..92a1dab9120d 100644 --- a/core/src/main/resources/lib/form/advanced_et.properties +++ b/core/src/main/resources/lib/form/advanced_et.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Advanced=Edasij\u00F5udnutele +Advanced=Edasijõudnutele diff --git a/core/src/main/resources/lib/form/advanced_fr.properties b/core/src/main/resources/lib/form/advanced_fr.properties index c998a30a8443..d107e8921e57 100644 --- a/core/src/main/resources/lib/form/advanced_fr.properties +++ b/core/src/main/resources/lib/form/advanced_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Advanced=Avanc\u00E9 -customizedFields=Un ou plusieurs champs de ce bloc ont \u00E9t\u00E9 \u00E9dit\u00E9s. +Advanced=Avancé +customizedFields=Un ou plusieurs champs de ce bloc ont été édités. diff --git a/core/src/main/resources/lib/form/advanced_he.properties b/core/src/main/resources/lib/form/advanced_he.properties index 521f566dcda2..65fd89adc453 100644 --- a/core/src/main/resources/lib/form/advanced_he.properties +++ b/core/src/main/resources/lib/form/advanced_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Advanced=\u05DE\u05EA\u05E7\u05D3\u05DD +Advanced=×ž×ª×§×“× diff --git a/core/src/main/resources/lib/form/advanced_hu.properties b/core/src/main/resources/lib/form/advanced_hu.properties index 8c5f404c892f..194f4dbca163 100644 --- a/core/src/main/resources/lib/form/advanced_hu.properties +++ b/core/src/main/resources/lib/form/advanced_hu.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Advanced=Halad\u00F3 +Advanced=Haladó diff --git a/core/src/main/resources/lib/form/advanced_it.properties b/core/src/main/resources/lib/form/advanced_it.properties index 885ec703f065..fe05fa7cbc20 100644 --- a/core/src/main/resources/lib/form/advanced_it.properties +++ b/core/src/main/resources/lib/form/advanced_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,4 +22,4 @@ # THE SOFTWARE. Advanced=Avanzate -customizedFields=Uno o più campi in questo blocco sono stati modificati. +customizedFields=Uno o più campi in questo blocco sono stati modificati. diff --git a/core/src/main/resources/lib/form/advanced_ja.properties b/core/src/main/resources/lib/form/advanced_ja.properties index 70fd1f0f81e7..9734442d10a6 100644 --- a/core/src/main/resources/lib/form/advanced_ja.properties +++ b/core/src/main/resources/lib/form/advanced_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Advanced=\u9ad8\u5ea6\u306a\u8a2d\u5b9a -customizedFields=\u3053\u306e\u30d6\u30ed\u30c3\u30af\u306e1\u3064\u4ee5\u4e0a\u306e\u9805\u76ee\u304c\u7de8\u96c6\u3055\u308c\u3066\u3044\u307e\u3059\u3002 +Advanced=高度ãªè¨­å®š +customizedFields=ã“ã®ãƒ–ロックã®1ã¤ä»¥ä¸Šã®é …ç›®ãŒç·¨é›†ã•ã‚Œã¦ã„ã¾ã™ã€‚ diff --git a/core/src/main/resources/lib/form/advanced_ko.properties b/core/src/main/resources/lib/form/advanced_ko.properties index c0d604ea2251..3ca5cd594cd4 100644 --- a/core/src/main/resources/lib/form/advanced_ko.properties +++ b/core/src/main/resources/lib/form/advanced_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Advanced=\uACE0\uAE09 +Advanced=고급 diff --git a/core/src/main/resources/lib/form/advanced_lt.properties b/core/src/main/resources/lib/form/advanced_lt.properties index 1178839d1bf2..59b052c8349a 100644 --- a/core/src/main/resources/lib/form/advanced_lt.properties +++ b/core/src/main/resources/lib/form/advanced_lt.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Advanced=Sud\u0117tingesni +Advanced=SudÄ—tingesni diff --git a/core/src/main/resources/lib/form/advanced_pl.properties b/core/src/main/resources/lib/form/advanced_pl.properties index d0bbf08b26ae..548d8be80384 100644 --- a/core/src/main/resources/lib/form/advanced_pl.properties +++ b/core/src/main/resources/lib/form/advanced_pl.properties @@ -22,4 +22,4 @@ Advanced=Zaawansowane # One or more fields in this block have been edited. -customizedFields=Co najmniej jedno pole w tym bloku zosta\u0142o zmodyfikowane +customizedFields=Co najmniej jedno pole w tym bloku zostaÅ‚o zmodyfikowane diff --git a/core/src/main/resources/lib/form/advanced_pt_BR.properties b/core/src/main/resources/lib/form/advanced_pt_BR.properties index 622714f9b0cf..6e2b7d8d40e9 100644 --- a/core/src/main/resources/lib/form/advanced_pt_BR.properties +++ b/core/src/main/resources/lib/form/advanced_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Advanced=Avan\u00e7ado +Advanced=Avançado customizedFields=Um ou mais campos neste bloco foi editado. diff --git a/core/src/main/resources/lib/form/advanced_pt_PT.properties b/core/src/main/resources/lib/form/advanced_pt_PT.properties index 076d763bf539..45545669914a 100644 --- a/core/src/main/resources/lib/form/advanced_pt_PT.properties +++ b/core/src/main/resources/lib/form/advanced_pt_PT.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Advanced=Avan\u00E7adas +Advanced=Avançadas diff --git a/core/src/main/resources/lib/form/advanced_ru.properties b/core/src/main/resources/lib/form/advanced_ru.properties index d421b5e54d13..b31797ba8b6e 100644 --- a/core/src/main/resources/lib/form/advanced_ru.properties +++ b/core/src/main/resources/lib/form/advanced_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Advanced=\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0435 -customizedFields=\u041E\u0434\u043D\u043E \u0438\u043B\u0438 \u0431\u043E\u043B\u044C\u0448\u0435 \u043F\u043E\u043B\u0435\u0439 \u0432 \u044D\u0442\u043E\u043C \u0431\u043B\u043E\u043A\u0435 \u0431\u044B\u043B\u0438 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u044B +Advanced=РаÑширенные +customizedFields=Одно или больше полей в Ñтом блоке были изменены diff --git a/core/src/main/resources/lib/form/advanced_sk.properties b/core/src/main/resources/lib/form/advanced_sk.properties index 3ec115413044..a5adeb221949 100644 --- a/core/src/main/resources/lib/form/advanced_sk.properties +++ b/core/src/main/resources/lib/form/advanced_sk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Advanced=Pokro\u010Dil\u00E9 -customizedFields=Jeden alebo viac pol\u00ED v tomto bloku bolo zmenen\u00FDch. +Advanced=PokroÄilé +customizedFields=Jeden alebo viac polí v tomto bloku bolo zmenených. diff --git a/core/src/main/resources/lib/form/advanced_sr.properties b/core/src/main/resources/lib/form/advanced_sr.properties index a30766522dca..4d2379bb2d7e 100644 --- a/core/src/main/resources/lib/form/advanced_sr.properties +++ b/core/src/main/resources/lib/form/advanced_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Advanced=\u041D\u0430\u043F\u0440\u0435\u0434\u043D\u043E -customizedFields=\u0408\u0435\u0434\u043D\u043E \u0438\u043B\u0438 \u0432\u0438\u0448\u0435 \u043F\u043E\u0459\u0430 \u0443 \u043E\u0432\u043E\u0458 \u0458\u0435\u0434\u0438\u043D\u0438\u0446\u0438 \u0441\u0443 \u043F\u0440\u043E\u043C\u0435\u045A\u0435\u043D\u0430 +Advanced=Ðапредно +customizedFields=Једно или више поља у овој јединици Ñу промењена diff --git a/core/src/main/resources/lib/form/advanced_tr.properties b/core/src/main/resources/lib/form/advanced_tr.properties index b7746e389a37..b3a0eebf8383 100644 --- a/core/src/main/resources/lib/form/advanced_tr.properties +++ b/core/src/main/resources/lib/form/advanced_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Advanced=Geli\u015fmi\u015f +Advanced=GeliÅŸmiÅŸ diff --git a/core/src/main/resources/lib/form/advanced_uk.properties b/core/src/main/resources/lib/form/advanced_uk.properties index 4a398efe2f27..a13207e6e438 100644 --- a/core/src/main/resources/lib/form/advanced_uk.properties +++ b/core/src/main/resources/lib/form/advanced_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Advanced=\u0414\u043E\u0434\u0430\u0442\u043A\u043E\u0432\u0456 +Advanced=Додаткові diff --git a/core/src/main/resources/lib/form/advanced_zh_TW.properties b/core/src/main/resources/lib/form/advanced_zh_TW.properties index 8167620d17ee..aa9eaae69ec5 100644 --- a/core/src/main/resources/lib/form/advanced_zh_TW.properties +++ b/core/src/main/resources/lib/form/advanced_zh_TW.properties @@ -19,5 +19,5 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -customizedFields=\u672c\u5340\u584a\u7684\u67d0\u4e9b\u6b04\u4f4d\u5df2\u88ab\u7de8\u8f2f\u3002 -Advanced=\u9032\u968e +customizedFields=本å€å¡Šçš„æŸäº›æ¬„ä½å·²è¢«ç·¨è¼¯ã€‚ +Advanced=進階 diff --git a/core/src/main/resources/lib/form/apply_bg.properties b/core/src/main/resources/lib/form/apply_bg.properties index 348a9c1d7fea..223d7e293b25 100644 --- a/core/src/main/resources/lib/form/apply_bg.properties +++ b/core/src/main/resources/lib/form/apply_bg.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Apply=\u041f\u0440\u0438\u043b\u0430\u0433\u0430\u043d\u0435 +Apply=Прилагане diff --git a/core/src/main/resources/lib/form/apply_de.properties b/core/src/main/resources/lib/form/apply_de.properties index f99838fceaa5..57866b582ea6 100644 --- a/core/src/main/resources/lib/form/apply_de.properties +++ b/core/src/main/resources/lib/form/apply_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Apply=\u00DCbernehmen +Apply=Ãœbernehmen diff --git a/core/src/main/resources/lib/form/apply_it.properties b/core/src/main/resources/lib/form/apply_it.properties index 27ad0eb42ccc..b21d6b2f1867 100644 --- a/core/src/main/resources/lib/form/apply_it.properties +++ b/core/src/main/resources/lib/form/apply_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/form/apply_ru.properties b/core/src/main/resources/lib/form/apply_ru.properties index 10e61d18825f..1a9d8b79996e 100644 --- a/core/src/main/resources/lib/form/apply_ru.properties +++ b/core/src/main/resources/lib/form/apply_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Apply=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c +Apply=Применить diff --git a/core/src/main/resources/lib/form/apply_sr.properties b/core/src/main/resources/lib/form/apply_sr.properties index 0456d1517b8d..fb13ea161f21 100644 --- a/core/src/main/resources/lib/form/apply_sr.properties +++ b/core/src/main/resources/lib/form/apply_sr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Apply=\u041F\u0440\u0438\u043C\u0435\u043D\u0438 +Apply=Примени diff --git a/core/src/main/resources/lib/form/apply_zh_TW.properties b/core/src/main/resources/lib/form/apply_zh_TW.properties index c1d47cf93eea..7e3c76046647 100644 --- a/core/src/main/resources/lib/form/apply_zh_TW.properties +++ b/core/src/main/resources/lib/form/apply_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Apply=\u5957\u7528 +Apply=套用 diff --git a/core/src/main/resources/lib/form/booleanRadio_bg.properties b/core/src/main/resources/lib/form/booleanRadio_bg.properties index 9794be3509e9..63b517445bc4 100644 --- a/core/src/main/resources/lib/form/booleanRadio_bg.properties +++ b/core/src/main/resources/lib/form/booleanRadio_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Yes=\ - \u0414\u0430 + Да No=\ - \u041d\u0435 + Ðе diff --git a/core/src/main/resources/lib/form/booleanRadio_es.properties b/core/src/main/resources/lib/form/booleanRadio_es.properties index f640084696f8..a313970c2c39 100644 --- a/core/src/main/resources/lib/form/booleanRadio_es.properties +++ b/core/src/main/resources/lib/form/booleanRadio_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Yes=Sí +Yes=Sí No=No diff --git a/core/src/main/resources/lib/form/booleanRadio_it.properties b/core/src/main/resources/lib/form/booleanRadio_it.properties index 50ca3c3a4a8c..5b711d405a6e 100644 --- a/core/src/main/resources/lib/form/booleanRadio_it.properties +++ b/core/src/main/resources/lib/form/booleanRadio_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,4 +22,4 @@ # THE SOFTWARE. No=No -Yes=Sì +Yes=Sì diff --git a/core/src/main/resources/lib/form/booleanRadio_ja.properties b/core/src/main/resources/lib/form/booleanRadio_ja.properties index 1f2f7f5db7e4..2339e5d94891 100644 --- a/core/src/main/resources/lib/form/booleanRadio_ja.properties +++ b/core/src/main/resources/lib/form/booleanRadio_ja.properties @@ -19,5 +19,5 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Yes=\u306F\u3044 -No=\u3044\u3044\u3048 +Yes=ã¯ã„ +No=ã„ã„㈠diff --git a/core/src/main/resources/lib/form/booleanRadio_pt_BR.properties b/core/src/main/resources/lib/form/booleanRadio_pt_BR.properties index 4dc058c3e051..d784f5dbf210 100644 --- a/core/src/main/resources/lib/form/booleanRadio_pt_BR.properties +++ b/core/src/main/resources/lib/form/booleanRadio_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Yes=Sim -No=N\u00e3o +No=Não diff --git a/core/src/main/resources/lib/form/booleanRadio_ru.properties b/core/src/main/resources/lib/form/booleanRadio_ru.properties index 09666a329a84..c920e08df79e 100644 --- a/core/src/main/resources/lib/form/booleanRadio_ru.properties +++ b/core/src/main/resources/lib/form/booleanRadio_ru.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -No=\u041D\u0435\u0442 -Yes=\u0414\u0430 +No=Ðет +Yes=Да diff --git a/core/src/main/resources/lib/form/booleanRadio_sr.properties b/core/src/main/resources/lib/form/booleanRadio_sr.properties index a5a8a51739e1..d87fa5c659f0 100644 --- a/core/src/main/resources/lib/form/booleanRadio_sr.properties +++ b/core/src/main/resources/lib/form/booleanRadio_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Yes=\u0414\u0430 -No=\u041D\u0435 +Yes=Да +No=Ðе diff --git a/core/src/main/resources/lib/form/booleanRadio_zh_TW.properties b/core/src/main/resources/lib/form/booleanRadio_zh_TW.properties index f89933237c81..4439d64bebc2 100644 --- a/core/src/main/resources/lib/form/booleanRadio_zh_TW.properties +++ b/core/src/main/resources/lib/form/booleanRadio_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Yes=\u662f -No=\u5426 +Yes=是 +No=å¦ diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_bg.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_bg.properties index 64afa8914f75..82736df62f78 100644 --- a/core/src/main/resources/lib/form/breadcrumb-config-outline_bg.properties +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. configuration=\ - \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 + ÐаÑтройки diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_ca.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_ca.properties index bf5dfa209289..a5c4bb5d8fd4 100644 --- a/core/src/main/resources/lib/form/breadcrumb-config-outline_ca.properties +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_ca.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -configuration=configuraci\u00F3 +configuration=configuració diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_cs.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_cs.properties index e115040e147f..78abbddcc69e 100644 --- a/core/src/main/resources/lib/form/breadcrumb-config-outline_cs.properties +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_cs.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -configuration=nastaven\u00ED +configuration=nastavení diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_es.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_es.properties index 63bb5b8b3d64..d92bd438b7f8 100644 --- a/core/src/main/resources/lib/form/breadcrumb-config-outline_es.properties +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -configuration=Configuraci\u00F3n +configuration=Configuración diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_es_AR.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_es_AR.properties index 66894e732397..b31f607e9444 100644 --- a/core/src/main/resources/lib/form/breadcrumb-config-outline_es_AR.properties +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_es_AR.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -configuration=configuraci\u00F3n +configuration=configuración diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_he.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_he.properties index cb92787b3fa5..9211d9c1d61f 100644 --- a/core/src/main/resources/lib/form/breadcrumb-config-outline_he.properties +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -configuration=\u05E7\u05D5\u05E0\u05E4\u05D9\u05D2\u05D5\u05E8\u05E6\u05D9\u05D4 +configuration=קונפיגורציה diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_hu.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_hu.properties index fa616a665351..0170f3fdc44d 100644 --- a/core/src/main/resources/lib/form/breadcrumb-config-outline_hu.properties +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_hu.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -configuration=konfigur\u00E1ci\u00F3 +configuration=konfiguráció diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_it.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_it.properties index 82f454e98600..00492b7f28df 100644 --- a/core/src/main/resources/lib/form/breadcrumb-config-outline_it.properties +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_ja.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_ja.properties index 1e29f277e95b..70d078ce2bc8 100644 --- a/core/src/main/resources/lib/form/breadcrumb-config-outline_ja.properties +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -configuration=\u8a2d\u5b9a +configuration=設定 diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_ko.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_ko.properties index 1ccf4fdeadcb..448dafd522ab 100644 --- a/core/src/main/resources/lib/form/breadcrumb-config-outline_ko.properties +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_ko.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -configuration=\uD658\uACBD\uC124\uC815 +configuration=환경설정 diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_lv.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_lv.properties index ecc5f3efe43d..72652272dd36 100644 --- a/core/src/main/resources/lib/form/breadcrumb-config-outline_lv.properties +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_lv.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -configuration=konfigur\u0101cijas +configuration=konfigurÄcijas diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_pt_BR.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_pt_BR.properties index 01cf570ef4d7..5367e6d3901b 100644 --- a/core/src/main/resources/lib/form/breadcrumb-config-outline_pt_BR.properties +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_pt_BR.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors, Fernando Boaglio -configuration=configura\u00E7\u00E3o +configuration=configuração diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_pt_PT.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_pt_PT.properties index 8d7ad50496d6..81c58369f56e 100644 --- a/core/src/main/resources/lib/form/breadcrumb-config-outline_pt_PT.properties +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_pt_PT.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -configuration=configura\u00E7\u00E3o +configuration=configuração diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_ru.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_ru.properties index f62ec9943d62..912fff3a3c43 100644 --- a/core/src/main/resources/lib/form/breadcrumb-config-outline_ru.properties +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_ru.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -configuration=\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 +configuration=ÐаÑтройка diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_sk.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_sk.properties index c4d671cb6826..1089409ab417 100644 --- a/core/src/main/resources/lib/form/breadcrumb-config-outline_sk.properties +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_sk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -configuration=Konfigur\u00E1cia +configuration=Konfigurácia diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_sr.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_sr.properties index 4e198232c753..c97a08f62e4b 100644 --- a/core/src/main/resources/lib/form/breadcrumb-config-outline_sr.properties +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -configuration=\u041F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 +configuration=Подешавања diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_uk.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_uk.properties index 7f76b7502e69..4215d334c17e 100644 --- a/core/src/main/resources/lib/form/breadcrumb-config-outline_uk.properties +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -configuration=\u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F +configuration=Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_zh_TW.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_zh_TW.properties index ce53d5cd2d0d..4a9bdcaa4038 100644 --- a/core/src/main/resources/lib/form/breadcrumb-config-outline_zh_TW.properties +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -configuration=\u7D44\u614B\u8A2D\u5B9A +configuration=組態設定 diff --git a/core/src/main/resources/lib/form/entry.jelly b/core/src/main/resources/lib/form/entry.jelly index 6799771ed99b..f8e631265294 100644 --- a/core/src/main/resources/lib/form/entry.jelly +++ b/core/src/main/resources/lib/form/entry.jelly @@ -84,13 +84,12 @@ THE SOFTWARE. -
- -
+
+ +
@@ -109,8 +108,9 @@ THE SOFTWARE.
- -
+
+ +
diff --git a/core/src/main/resources/lib/form/expandableTextbox_bg.properties b/core/src/main/resources/lib/form/expandableTextbox_bg.properties index 562299a2edf3..7e74c80720fd 100644 --- a/core/src/main/resources/lib/form/expandableTextbox_bg.properties +++ b/core/src/main/resources/lib/form/expandableTextbox_bg.properties @@ -24,6 +24,6 @@ # Click to expand to multiple lines
where you can use new lines instead of space.
\ # To revert back to single line, write everything in one line then submit. tooltip=\ - \u041d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 \u0441 \u043c\u0438\u0448\u043a\u0430\u0442\u0430 \u0438 \u043f\u043e\u043b\u0435\u0442\u043e \u0449\u0435 \u0441\u0435 \u0440\u0430\u0437\u0448\u0438\u0440\u0438.
\ - \u0429\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u0438 \u043d\u043e\u0432\u0438 \u0440\u0435\u0434\u043e\u0432\u0435, \u0438 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0438.
\ - \u041f\u043e\u043c\u0435\u0441\u0442\u0435\u0442\u0435 \u0432\u0441\u0438\u0447\u043a\u043e \u043d\u0430 \u0435\u0434\u0438\u043d \u0440\u0435\u0434, \u043f\u043e\u0434\u0430\u0439\u0442\u0435 \u0438 \u0449\u0435 \u0441\u0435 \u0432\u044a\u0440\u043d\u0435\u0442\u0435 \u043a\u044a\u043c \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438\u044f \u0432\u0430\u0440\u0438\u0430\u043d\u0442. + ÐатиÑнете Ñ Ð¼Ð¸ÑˆÐºÐ°Ñ‚Ð° и полето ще Ñе разшири.
\ + Ще може да ползвате и нови редове, и интервали.
\ + ПомеÑтете вÑичко на един ред, подайте и ще Ñе върнете към ÑÑ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚Ð½Ð¸Ñ Ð²Ð°Ñ€Ð¸Ð°Ð½Ñ‚. diff --git a/core/src/main/resources/lib/form/expandableTextbox_da.properties b/core/src/main/resources/lib/form/expandableTextbox_da.properties index 7a0d627e5560..9eb81b5cca05 100644 --- a/core/src/main/resources/lib/form/expandableTextbox_da.properties +++ b/core/src/main/resources/lib/form/expandableTextbox_da.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. tooltip=Klik for at udvide til flere linjer
hvor du kan bruge nye linjer i stedet for mellemrum.
\ -For at skifte tilbage til en linje skriv alt p\u00e5 en linje og gem. +For at skifte tilbage til en linje skriv alt pÃ¥ en linje og gem. diff --git a/core/src/main/resources/lib/form/expandableTextbox_de.properties b/core/src/main/resources/lib/form/expandableTextbox_de.properties index 3e6e014f56a9..9bd37b124a54 100644 --- a/core/src/main/resources/lib/form/expandableTextbox_de.properties +++ b/core/src/main/resources/lib/form/expandableTextbox_de.properties @@ -1,6 +1,6 @@ tooltip=\ - Klicken Sie hier für ein größeres Texteingabefeld,
\ - in dem Sie Zeilenvorschübe statt Leerzeichen
\ - verwenden können. Um wieder zu einer Textzeile
\ - zurückzukehren, schreiben Sie alles in eine Zeile,
\ - bevor Sie Ihre Änderungen übernehmen. + Klicken Sie hier für ein größeres Texteingabefeld,
\ + in dem Sie Zeilenvorschübe statt Leerzeichen
\ + verwenden können. Um wieder zu einer Textzeile
\ + zurückzukehren, schreiben Sie alles in eine Zeile,
\ + bevor Sie Ihre Änderungen übernehmen. diff --git a/core/src/main/resources/lib/form/expandableTextbox_es.properties b/core/src/main/resources/lib/form/expandableTextbox_es.properties index 6f1e5674a436..64ff2b2439ff 100644 --- a/core/src/main/resources/lib/form/expandableTextbox_es.properties +++ b/core/src/main/resources/lib/form/expandableTextbox_es.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. tooltip=\ - Pulse para usar múltiples líneas
y usar así ''nuevas lineas'' en lugar de ''espacios''.
\ - Para volver a usar sólo una línea, escribe todo en una línea y después envía. + Pulse para usar múltiples líneas
y usar así ''nuevas lineas'' en lugar de ''espacios''.
\ + Para volver a usar sólo una línea, escribe todo en una línea y después envía. diff --git a/core/src/main/resources/lib/form/expandableTextbox_fr.properties b/core/src/main/resources/lib/form/expandableTextbox_fr.properties index 81407b108366..c6cd3d244b2d 100644 --- a/core/src/main/resources/lib/form/expandableTextbox_fr.properties +++ b/core/src/main/resources/lib/form/expandableTextbox_fr.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. tooltip=\ - Cliquez pour obtenir des lignes multiples
et pouvoir utiliser des nouvelles lignes plutôt que des espaces.
\ - Pour retourner sur une ligne unique, écrivez tout sur une seule ligne et envoyez vos changements. + Cliquez pour obtenir des lignes multiples
et pouvoir utiliser des nouvelles lignes plutôt que des espaces.
\ + Pour retourner sur une ligne unique, écrivez tout sur une seule ligne et envoyez vos changements. diff --git a/core/src/main/resources/lib/form/expandableTextbox_it.properties b/core/src/main/resources/lib/form/expandableTextbox_it.properties index e6593b2a7afd..af11de687905 100644 --- a/core/src/main/resources/lib/form/expandableTextbox_it.properties +++ b/core/src/main/resources/lib/form/expandableTextbox_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/form/expandableTextbox_ja.properties b/core/src/main/resources/lib/form/expandableTextbox_ja.properties index 0fa1642fc72b..77f20d77972b 100644 --- a/core/src/main/resources/lib/form/expandableTextbox_ja.properties +++ b/core/src/main/resources/lib/form/expandableTextbox_ja.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. tooltip=\ - \u30AF\u30EA\u30C3\u30AF\u3059\u308B\u3068\u8907\u6570\u884C\u306B\u62E1\u5F35\u3057\u307E\u3059\u3002
\u30B9\u30DA\u30FC\u30B9\u306E\u4EE3\u308F\u308A\u306B\u6539\u884C\u3092\u4F7F\u7528\u3059\u308B\u3053\u3068\u304C\u3067\u304D\u307E\u3059\u3002
\ - 1\u884C\u306B\u623B\u3059\u306B\u306F\u30011\u884C\u306B\u3059\u3079\u3066\u3092\u8A18\u8FF0\u3057\u3066\u9001\u4FE1\u3057\u3066\u304F\u3060\u3055\u3044\u3002 + クリックã™ã‚‹ã¨è¤‡æ•°è¡Œã«æ‹¡å¼µã—ã¾ã™ã€‚
スペースã®ä»£ã‚ã‚Šã«æ”¹è¡Œã‚’使用ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚
\ + 1è¡Œã«æˆ»ã™ã«ã¯ã€1è¡Œã«ã™ã¹ã¦ã‚’記述ã—ã¦é€ä¿¡ã—ã¦ãã ã•ã„。 diff --git a/core/src/main/resources/lib/form/expandableTextbox_pl.properties b/core/src/main/resources/lib/form/expandableTextbox_pl.properties index b44bd1942952..7403b1b0d378 100644 --- a/core/src/main/resources/lib/form/expandableTextbox_pl.properties +++ b/core/src/main/resources/lib/form/expandableTextbox_pl.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -tooltip=Kliknij by rozwin\u0105\u0107 do wielu linii gdzie mo\u017Cesz u\u017Cywa\u0107 nowych linii zamiast spacji.
By powr\u00F3ci\u0107 do pojedynczej linii zapisz wszystko w jednej linii i zachowaj zmiany. +tooltip=Kliknij by rozwinąć do wielu linii gdzie możesz używać nowych linii zamiast spacji.
By powrócić do pojedynczej linii zapisz wszystko w jednej linii i zachowaj zmiany. diff --git a/core/src/main/resources/lib/form/expandableTextbox_pt_BR.properties b/core/src/main/resources/lib/form/expandableTextbox_pt_BR.properties index ddb2ef68b832..3a9c5450fd7e 100644 --- a/core/src/main/resources/lib/form/expandableTextbox_pt_BR.properties +++ b/core/src/main/resources/lib/form/expandableTextbox_pt_BR.properties @@ -23,5 +23,5 @@ # \ # Click to expand to multiple lineswhere you can use new lines instead of space # To revert back to single line, write everything in one line then submit. -tooltip=Clique para expandir para v\u00E1rias linhas
onde voc\u00EA pode usar novas linhas em vez de espa\u00E7os.
Para reverter em uma \u00FAnica linha, escrever tudo em uma \u00FAnica linha, em seguida, submeta.
\ -Para reverter de volta em uma linha, escreva tudo em uma linha ent\u00e3o envie. +tooltip=Clique para expandir para várias linhas
onde você pode usar novas linhas em vez de espaços.
Para reverter em uma única linha, escrever tudo em uma única linha, em seguida, submeta.
\ +Para reverter de volta em uma linha, escreva tudo em uma linha então envie. diff --git a/core/src/main/resources/lib/form/expandableTextbox_ru.properties b/core/src/main/resources/lib/form/expandableTextbox_ru.properties index fffd070ee161..206ebe3a083f 100644 --- a/core/src/main/resources/lib/form/expandableTextbox_ru.properties +++ b/core/src/main/resources/lib/form/expandableTextbox_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -tooltip=\u041A\u043B\u0438\u043A\u043D\u0438\u0442\u0435, \u0447\u0442\u043E\u0431\u044B \u0440\u0430\u0441\u043A\u0440\u044B\u0442\u044C \u043D\u0430 \u043D\u0435\u0441\u043A\u043E\u043B\u044C\u043A\u043E \u0441\u0442\u0440\u043E\u043A
, \u0447\u0442\u043E\u0431\u044B \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u043F\u0435\u0440\u0435\u0432\u043E\u0434 \u0441\u0442\u0440\u043E\u043A\u0438 \u0432\u043C\u0435\u0441\u0442\u043E \u043F\u0440\u043E\u0431\u0435\u043B\u0430.
\u0414\u043B\u044F \u0432\u043E\u0437\u0432\u0440\u0430\u0442\u0430 \u043A \u043E\u0434\u043D\u043E\u0441\u0442\u0440\u043E\u043A\u043E\u0432\u043E\u0439 \u043E\u0431\u043B\u0430\u0441\u0442\u0438, \u043F\u0438\u0448\u0438\u0442\u0435 \u0432\u0441\u0451, \u0447\u0442\u043E \u0443\u0433\u043E\u0434\u043D\u043E \u0431\u0435\u0437 \u043F\u0435\u0440\u0435\u0432\u043E\u0434\u043E\u0432 \u0441\u0442\u0440\u043E\u043A\u0438 \u0438 submit''\u0442\u0435. +tooltip=Кликните, чтобы раÑкрыть на неÑколько Ñтрок
, чтобы иÑпользовать перевод Ñтроки вмеÑто пробела.
Ð”Ð»Ñ Ð²Ð¾Ð·Ð²Ñ€Ð°Ñ‚Ð° к одноÑтроковой облаÑти, пишите вÑÑ‘, что угодно без переводов Ñтроки и submit''те. diff --git a/core/src/main/resources/lib/form/expandableTextbox_sr.properties b/core/src/main/resources/lib/form/expandableTextbox_sr.properties index 6fd13550bc7b..6c6fe8531414 100644 --- a/core/src/main/resources/lib/form/expandableTextbox_sr.properties +++ b/core/src/main/resources/lib/form/expandableTextbox_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors tooltip=\ - \u041A\u043B\u0438\u043A\u043D\u0438\u0442\u0435 \u0434\u0430 \u0440\u0430\u0448\u0438\u0440\u0438\u0442\u0435 \u043D\u0435\u043A\u043E\u043B\u0438\u043A\u043E \u0440\u0435\u0434\u043E\u0432\u0430
\u0433\u0434\u0435 \u043C\u043E\u0436\u0435\u0442\u0435 \u043A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0438 \u043D\u043E\u0432\u0435 \u0440\u0435\u0434\u043E\u0432\u0435 \u0443\u043C\u0435\u0441\u0442\u043E \u043F\u0440\u0430\u0437\u043D\u043E\u0433 \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0430.
\ - \u0414\u0430 \u0432\u0440\u0430\u0442\u0438\u0442\u0435 \u043D\u0430\u0437\u0430\u0434 \u043D\u0430 \u0458\u0435\u0434\u0430\u043D \u0440\u0435\u0434, \u043D\u0430\u043F\u0438\u0448\u0438\u0442\u0435 \u0441\u0432\u0435 \u0443 \u0458\u0435\u0434\u043D\u043E\u043C \u0440\u0435\u0434\u0443 \u0438 \u0441\u0430\u0447\u0443\u0432\u0430\u0458\u0442\u0435. + Кликните да раширите неколико редова
где можете кориÑтити нове редове умеÑто празног проÑтора.
\ + Да вратите назад на један ред, напишите Ñве у једном реду и Ñачувајте. diff --git a/core/src/main/resources/lib/form/expandableTextbox_zh_TW.properties b/core/src/main/resources/lib/form/expandableTextbox_zh_TW.properties index d88daff22ce7..7d6772c4a46f 100644 --- a/core/src/main/resources/lib/form/expandableTextbox_zh_TW.properties +++ b/core/src/main/resources/lib/form/expandableTextbox_zh_TW.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. tooltip=\ - \u6309\u4e00\u4e0b\u5c55\u958b\u6210\u591a\u884c\u6a21\u5f0f
\u8a72\u6a21\u5f0f\u4e0b\u60a8\u53ef\u4ee5\u76f4\u63a5\u63db\u884c\u800c\u4e0d\u662f\u7528\u7a7a\u767d\u9694\u958b\u3002
\ - \u586b\u5165\u4efb\u4f55\u55ae\u884c\u7684\u6771\u897f\u518d\u9001\u51fa\u53ef\u5207\u63db\u56de\u55ae\u884c\u6a21\u5f0f\u3002 + 按一下展開æˆå¤šè¡Œæ¨¡å¼
該模å¼ä¸‹æ‚¨å¯ä»¥ç›´æŽ¥æ›è¡Œè€Œä¸æ˜¯ç”¨ç©ºç™½éš”開。
\ + 填入任何單行的æ±è¥¿å†é€å‡ºå¯åˆ‡æ›å›žå–®è¡Œæ¨¡å¼ã€‚ diff --git a/core/src/main/resources/lib/form/helpArea_bg.properties b/core/src/main/resources/lib/form/helpArea_bg.properties index 8c0fcfb5787c..1a0a44f61daf 100644 --- a/core/src/main/resources/lib/form/helpArea_bg.properties +++ b/core/src/main/resources/lib/form/helpArea_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Loading...=\ - \u0417\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435\u2026 + Зареждане… diff --git a/core/src/main/resources/lib/form/helpArea_da.properties b/core/src/main/resources/lib/form/helpArea_da.properties index d0ca7425ec58..d9d29248e745 100644 --- a/core/src/main/resources/lib/form/helpArea_da.properties +++ b/core/src/main/resources/lib/form/helpArea_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Loading...=Indl\u00e6ser... +Loading...=Indlæser... diff --git a/core/src/main/resources/lib/form/helpArea_he.properties b/core/src/main/resources/lib/form/helpArea_he.properties index a68c20a26a38..902357be7021 100644 --- a/core/src/main/resources/lib/form/helpArea_he.properties +++ b/core/src/main/resources/lib/form/helpArea_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Loading...=\u05D8\u05D5\u05E2\u05DF... +Loading...=טוען... diff --git a/core/src/main/resources/lib/form/helpArea_hu.properties b/core/src/main/resources/lib/form/helpArea_hu.properties index 6abcfc46d980..9d9360737e3e 100644 --- a/core/src/main/resources/lib/form/helpArea_hu.properties +++ b/core/src/main/resources/lib/form/helpArea_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Loading...=Bet\u00F6lt\u00E9s... +Loading...=Betöltés... diff --git a/core/src/main/resources/lib/form/helpArea_it.properties b/core/src/main/resources/lib/form/helpArea_it.properties index 9d9ac6560b05..a9dc1880d11e 100644 --- a/core/src/main/resources/lib/form/helpArea_it.properties +++ b/core/src/main/resources/lib/form/helpArea_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/form/helpArea_ja.properties b/core/src/main/resources/lib/form/helpArea_ja.properties index 2aa08576e941..071eb8c75f07 100644 --- a/core/src/main/resources/lib/form/helpArea_ja.properties +++ b/core/src/main/resources/lib/form/helpArea_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Loading...=\u30ED\u30FC\u30C9\u4E2D +Loading...=ロード中 diff --git a/core/src/main/resources/lib/form/helpArea_ko.properties b/core/src/main/resources/lib/form/helpArea_ko.properties index cadfc8a8c5e5..8561141c6838 100644 --- a/core/src/main/resources/lib/form/helpArea_ko.properties +++ b/core/src/main/resources/lib/form/helpArea_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Loading...=\uBD88\uB7EC\uC624\uB294 \uC911... +Loading...=불러오는 중... diff --git a/core/src/main/resources/lib/form/helpArea_lv.properties b/core/src/main/resources/lib/form/helpArea_lv.properties index bfb601f8df63..3ab55660f68c 100644 --- a/core/src/main/resources/lib/form/helpArea_lv.properties +++ b/core/src/main/resources/lib/form/helpArea_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Loading...=Iel\u0101d\u0113... +Loading...=IelÄdÄ“... diff --git a/core/src/main/resources/lib/form/helpArea_pl.properties b/core/src/main/resources/lib/form/helpArea_pl.properties index 501d441202c2..822dd0957122 100644 --- a/core/src/main/resources/lib/form/helpArea_pl.properties +++ b/core/src/main/resources/lib/form/helpArea_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Loading...=\u0141adowanie... +Loading...=Åadowanie... diff --git a/core/src/main/resources/lib/form/helpArea_ru.properties b/core/src/main/resources/lib/form/helpArea_ru.properties index 25bbb16f8371..bf0a6982bffb 100644 --- a/core/src/main/resources/lib/form/helpArea_ru.properties +++ b/core/src/main/resources/lib/form/helpArea_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Loading...=\u0417\u0430\u0433\u0440\u0443\u0437\u043A\u0430... +Loading...=Загрузка... diff --git a/core/src/main/resources/lib/form/helpArea_sk.properties b/core/src/main/resources/lib/form/helpArea_sk.properties index 77c114d92f5c..4bf01ce5f84b 100644 --- a/core/src/main/resources/lib/form/helpArea_sk.properties +++ b/core/src/main/resources/lib/form/helpArea_sk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Loading...=Nahr\u00E1vanie ... +Loading...=Nahrávanie ... diff --git a/core/src/main/resources/lib/form/helpArea_sr.properties b/core/src/main/resources/lib/form/helpArea_sr.properties index 14d2e9f9bbdd..ea48bf6ae6a4 100644 --- a/core/src/main/resources/lib/form/helpArea_sr.properties +++ b/core/src/main/resources/lib/form/helpArea_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Loading...=\u0423\u0447\u0438\u0442\u0430\u0432\u0430\u045A\u0435... +Loading...=Учитавање... diff --git a/core/src/main/resources/lib/form/helpArea_tr.properties b/core/src/main/resources/lib/form/helpArea_tr.properties index 8c0a3609d6bd..084bf3cadef0 100644 --- a/core/src/main/resources/lib/form/helpArea_tr.properties +++ b/core/src/main/resources/lib/form/helpArea_tr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Loading...=Y\u00FCkleniyor... +Loading...=Yükleniyor... diff --git a/core/src/main/resources/lib/form/helpArea_zh_TW.properties b/core/src/main/resources/lib/form/helpArea_zh_TW.properties index afa57c125d06..0390fa681656 100644 --- a/core/src/main/resources/lib/form/helpArea_zh_TW.properties +++ b/core/src/main/resources/lib/form/helpArea_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Loading...=\u8F09\u5165\u4E2D... +Loading...=載入中... diff --git a/core/src/main/resources/lib/form/helpLink.jelly b/core/src/main/resources/lib/form/helpLink.jelly index 0c1ab38aa7eb..dcf279ed6585 100644 --- a/core/src/main/resources/lib/form/helpLink.jelly +++ b/core/src/main/resources/lib/form/helpLink.jelly @@ -53,7 +53,7 @@ THE SOFTWARE. - + ? diff --git a/core/src/main/resources/lib/form/helpLink_bg.properties b/core/src/main/resources/lib/form/helpLink_bg.properties index 20c25b28b50c..4b00e0a1d3dd 100644 --- a/core/src/main/resources/lib/form/helpLink_bg.properties +++ b/core/src/main/resources/lib/form/helpLink_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Help\ for\ feature\:=\ - \u041f\u043e\u043c\u043e\u0449 \u0437\u0430: + Помощ за: diff --git a/core/src/main/resources/lib/form/helpLink_de.properties b/core/src/main/resources/lib/form/helpLink_de.properties index 132392a17cf4..472c6b88324b 100644 --- a/core/src/main/resources/lib/form/helpLink_de.properties +++ b/core/src/main/resources/lib/form/helpLink_de.properties @@ -1 +1 @@ -Help\ for\ feature\:=Hilfe f\u00FCr\: +Help\ for\ feature\:=Hilfe für\: diff --git a/core/src/main/resources/lib/form/helpLink_it.properties b/core/src/main/resources/lib/form/helpLink_it.properties index ee84e225fe96..3521515cfee9 100644 --- a/core/src/main/resources/lib/form/helpLink_it.properties +++ b/core/src/main/resources/lib/form/helpLink_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,4 +22,4 @@ # THE SOFTWARE. [Help]=Guida -Help\ for\ feature\:=Guida per la funzionalità: +Help\ for\ feature\:=Guida per la funzionalità: diff --git a/core/src/main/resources/lib/form/helpLink_ru.properties b/core/src/main/resources/lib/form/helpLink_ru.properties index a33225846a28..bf9323b335f4 100644 --- a/core/src/main/resources/lib/form/helpLink_ru.properties +++ b/core/src/main/resources/lib/form/helpLink_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Help\ for\ feature\:=\u041f\u043e\u043c\u043e\u0449\u044c \u0434\u043b\u044f: +Help\ for\ feature\:=Помощь длÑ: diff --git a/core/src/main/resources/lib/form/helpLink_sr.properties b/core/src/main/resources/lib/form/helpLink_sr.properties index b0c8861c7db8..3bf8260e7a10 100644 --- a/core/src/main/resources/lib/form/helpLink_sr.properties +++ b/core/src/main/resources/lib/form/helpLink_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Help\ for\ feature\:=\u041F\u043E\u043C\u043E\u045B \u043E\u043A\u043E \u043E\u0434\u043B\u0438\u043A\u0435: +Help\ for\ feature\:=Помоћ око одлике: diff --git a/core/src/main/resources/lib/form/helpLink_zh_TW.properties b/core/src/main/resources/lib/form/helpLink_zh_TW.properties index 8cd5f5a7005f..d0e9b8eb2e8a 100644 --- a/core/src/main/resources/lib/form/helpLink_zh_TW.properties +++ b/core/src/main/resources/lib/form/helpLink_zh_TW.properties @@ -1 +1 @@ -Help\ for\ feature\:=\u529f\u80fd\u8aaa\u660e\: +Help\ for\ feature\:=功能說明\: diff --git a/core/src/main/resources/lib/form/hetero-list_bg.properties b/core/src/main/resources/lib/form/hetero-list_bg.properties index 563a90bfc34e..def91d34f47a 100644 --- a/core/src/main/resources/lib/form/hetero-list_bg.properties +++ b/core/src/main/resources/lib/form/hetero-list_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Add=\ - \u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 + ДобавÑне diff --git a/core/src/main/resources/lib/form/hetero-list_da.properties b/core/src/main/resources/lib/form/hetero-list_da.properties index a2c107841e4c..4c3bd3e6027c 100644 --- a/core/src/main/resources/lib/form/hetero-list_da.properties +++ b/core/src/main/resources/lib/form/hetero-list_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add=Tilf\u00f8j +Add=Tilføj diff --git a/core/src/main/resources/lib/form/hetero-list_de.properties b/core/src/main/resources/lib/form/hetero-list_de.properties index 4dc144df4570..7fce308cc58b 100644 --- a/core/src/main/resources/lib/form/hetero-list_de.properties +++ b/core/src/main/resources/lib/form/hetero-list_de.properties @@ -1 +1 @@ -Add=Hinzufügen +Add=Hinzufügen diff --git a/core/src/main/resources/lib/form/hetero-list_es.properties b/core/src/main/resources/lib/form/hetero-list_es.properties index 9f535b58ecce..42e6fb06234e 100644 --- a/core/src/main/resources/lib/form/hetero-list_es.properties +++ b/core/src/main/resources/lib/form/hetero-list_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add=Añadir +Add=Añadir diff --git a/core/src/main/resources/lib/form/hetero-list_it.properties b/core/src/main/resources/lib/form/hetero-list_it.properties index 97fc906255cb..3870c26b6d8a 100644 --- a/core/src/main/resources/lib/form/hetero-list_it.properties +++ b/core/src/main/resources/lib/form/hetero-list_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/form/hetero-list_ja.properties b/core/src/main/resources/lib/form/hetero-list_ja.properties index 1fa4c4a2c051..53c10ce4504e 100644 --- a/core/src/main/resources/lib/form/hetero-list_ja.properties +++ b/core/src/main/resources/lib/form/hetero-list_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add=\u8FFD\u52A0 +Add=追加 diff --git a/core/src/main/resources/lib/form/hetero-list_ru.properties b/core/src/main/resources/lib/form/hetero-list_ru.properties index 2f9be65f0e00..858bc733468e 100644 --- a/core/src/main/resources/lib/form/hetero-list_ru.properties +++ b/core/src/main/resources/lib/form/hetero-list_ru.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Add=\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C +Add=Добавить diff --git a/core/src/main/resources/lib/form/hetero-list_sr.properties b/core/src/main/resources/lib/form/hetero-list_sr.properties index 2ab9ef08a9f1..8e74cad66cdc 100644 --- a/core/src/main/resources/lib/form/hetero-list_sr.properties +++ b/core/src/main/resources/lib/form/hetero-list_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Add=\u0414\u043E\u0434\u0430\u0458 +Add=Додај diff --git a/core/src/main/resources/lib/form/hetero-list_zh_TW.properties b/core/src/main/resources/lib/form/hetero-list_zh_TW.properties index f5733ee16ced..80be8da558f3 100644 --- a/core/src/main/resources/lib/form/hetero-list_zh_TW.properties +++ b/core/src/main/resources/lib/form/hetero-list_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add=\u65B0\u589E +Add=新增 diff --git a/core/src/main/resources/lib/form/optionalProperty.jelly b/core/src/main/resources/lib/form/optionalProperty.jelly index 1afe8e5f538b..5d646235fdef 100644 --- a/core/src/main/resources/lib/form/optionalProperty.jelly +++ b/core/src/main/resources/lib/form/optionalProperty.jelly @@ -33,12 +33,13 @@ THE SOFTWARE. and the presence of the value. + - + diff --git a/core/src/main/resources/lib/form/password_it.properties b/core/src/main/resources/lib/form/password_it.properties index 07b775e1358e..aee8befd927a 100644 --- a/core/src/main/resources/lib/form/password_it.properties +++ b/core/src/main/resources/lib/form/password_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/form/password_zh_TW.properties b/core/src/main/resources/lib/form/password_zh_TW.properties index fdfd0e16ebed..3ce2c99d3202 100644 --- a/core/src/main/resources/lib/form/password_zh_TW.properties +++ b/core/src/main/resources/lib/form/password_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Concealed=\u96b1\u85cf -Change\ Password=\u4fee\u6539\u5bc6\u78bc +Concealed=éš±è— +Change\ Password=修改密碼 diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_bg.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_bg.properties index fd4cf636f2df..2ddc97fa9a4a 100644 --- a/core/src/main/resources/lib/form/repeatableDeleteButton_bg.properties +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Delete=\ - \u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 + Изтриване diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_de.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_de.properties index 9b8cd2ffd494..4313f818045c 100644 --- a/core/src/main/resources/lib/form/repeatableDeleteButton_de.properties +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete=Löschen +Delete=Löschen diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_he.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_he.properties index d201e4b1f15d..a778487ae8a8 100644 --- a/core/src/main/resources/lib/form/repeatableDeleteButton_he.properties +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_he.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete=\u05DE\u05D7\u05E7 +Delete=מחק diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_hu.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_hu.properties index a029a6336b9e..734d548ad0b0 100644 --- a/core/src/main/resources/lib/form/repeatableDeleteButton_hu.properties +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete=T\u00F6rl\u00E9s +Delete=Törlés diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_it.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_it.properties index 677f1141a764..c28b5a220712 100644 --- a/core/src/main/resources/lib/form/repeatableDeleteButton_it.properties +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_ja.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_ja.properties index 00cf846d5396..b608ef28aa54 100644 --- a/core/src/main/resources/lib/form/repeatableDeleteButton_ja.properties +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete=\u524a\u9664 +Delete=削除 diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_ko.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_ko.properties index 0bbe35a0b2e5..77e63cb51ded 100644 --- a/core/src/main/resources/lib/form/repeatableDeleteButton_ko.properties +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_ko.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Delete=\uC0AD\uC81C +Delete=ì‚­ì œ diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_lt.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_lt.properties index 8eba309c1b4d..c55c05637420 100644 --- a/core/src/main/resources/lib/form/repeatableDeleteButton_lt.properties +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_lt.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Delete=I\u0161trinti +Delete=IÅ¡trinti diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_lv.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_lv.properties index b3662101df9a..1194709f271e 100644 --- a/core/src/main/resources/lib/form/repeatableDeleteButton_lv.properties +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete=Dz\u0113st +Delete=DzÄ“st diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_pl.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_pl.properties index 8ca3b71b5a1e..a71831a38cf5 100644 --- a/core/src/main/resources/lib/form/repeatableDeleteButton_pl.properties +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete=Usu\u0144 +Delete=UsuÅ„ diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_ru.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_ru.properties index a228d7ad010b..7507a9568aae 100644 --- a/core/src/main/resources/lib/form/repeatableDeleteButton_ru.properties +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete=\u0423\u0434\u0430\u043b\u0438\u0442\u044c +Delete=Удалить diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_sk.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_sk.properties index b11aae47837c..2a6fb6c3f166 100644 --- a/core/src/main/resources/lib/form/repeatableDeleteButton_sk.properties +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_sk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete=Vyma\u017E +Delete=Vymaž diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_sr.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_sr.properties index 0038ea61baf3..59f304aa9824 100644 --- a/core/src/main/resources/lib/form/repeatableDeleteButton_sr.properties +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Delete=\u0423\u043A\u043B\u043E\u043D\u0438 +Delete=Уклони diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_uk.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_uk.properties index ca852839f9b6..46f45dcf02fe 100644 --- a/core/src/main/resources/lib/form/repeatableDeleteButton_uk.properties +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Delete=\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438 +Delete=Видалити diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_zh_TW.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_zh_TW.properties index 4cb1a95bbcdf..f3349884e5b9 100644 --- a/core/src/main/resources/lib/form/repeatableDeleteButton_zh_TW.properties +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete=\u522A\u9664 +Delete=刪除 diff --git a/core/src/main/resources/lib/form/repeatable_bg.properties b/core/src/main/resources/lib/form/repeatable_bg.properties index 563a90bfc34e..def91d34f47a 100644 --- a/core/src/main/resources/lib/form/repeatable_bg.properties +++ b/core/src/main/resources/lib/form/repeatable_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Add=\ - \u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 + ДобавÑне diff --git a/core/src/main/resources/lib/form/repeatable_da.properties b/core/src/main/resources/lib/form/repeatable_da.properties index a2c107841e4c..4c3bd3e6027c 100644 --- a/core/src/main/resources/lib/form/repeatable_da.properties +++ b/core/src/main/resources/lib/form/repeatable_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add=Tilf\u00f8j +Add=Tilføj diff --git a/core/src/main/resources/lib/form/repeatable_de.properties b/core/src/main/resources/lib/form/repeatable_de.properties index aee52a293228..aa3f3e054c06 100644 --- a/core/src/main/resources/lib/form/repeatable_de.properties +++ b/core/src/main/resources/lib/form/repeatable_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add=Hinzufügen +Add=Hinzufügen diff --git a/core/src/main/resources/lib/form/repeatable_es.properties b/core/src/main/resources/lib/form/repeatable_es.properties index 9f535b58ecce..42e6fb06234e 100644 --- a/core/src/main/resources/lib/form/repeatable_es.properties +++ b/core/src/main/resources/lib/form/repeatable_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add=Añadir +Add=Añadir diff --git a/core/src/main/resources/lib/form/repeatable_fi.properties b/core/src/main/resources/lib/form/repeatable_fi.properties index 7f8903f47332..e46dd4be1832 100644 --- a/core/src/main/resources/lib/form/repeatable_fi.properties +++ b/core/src/main/resources/lib/form/repeatable_fi.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add=Lis\u00E4\u00E4 +Add=Lisää diff --git a/core/src/main/resources/lib/form/repeatable_he.properties b/core/src/main/resources/lib/form/repeatable_he.properties index 8e430de7eb1c..91be4d0a4093 100644 --- a/core/src/main/resources/lib/form/repeatable_he.properties +++ b/core/src/main/resources/lib/form/repeatable_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Add=\u05D4\u05D5\u05E1\u05E3 +Add=הוסף diff --git a/core/src/main/resources/lib/form/repeatable_it.properties b/core/src/main/resources/lib/form/repeatable_it.properties index 97fc906255cb..3870c26b6d8a 100644 --- a/core/src/main/resources/lib/form/repeatable_it.properties +++ b/core/src/main/resources/lib/form/repeatable_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/form/repeatable_ja.properties b/core/src/main/resources/lib/form/repeatable_ja.properties index 972b81206367..50feeb1956e8 100644 --- a/core/src/main/resources/lib/form/repeatable_ja.properties +++ b/core/src/main/resources/lib/form/repeatable_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add=\u8ffd\u52a0 +Add=追加 diff --git a/core/src/main/resources/lib/form/repeatable_ko.properties b/core/src/main/resources/lib/form/repeatable_ko.properties index 90bb0b349ca9..bf31ace887db 100644 --- a/core/src/main/resources/lib/form/repeatable_ko.properties +++ b/core/src/main/resources/lib/form/repeatable_ko.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Add=\uCD94\uAC00 +Add=추가 diff --git a/core/src/main/resources/lib/form/repeatable_lt.properties b/core/src/main/resources/lib/form/repeatable_lt.properties index e86820212e8f..93d60c83c77b 100644 --- a/core/src/main/resources/lib/form/repeatable_lt.properties +++ b/core/src/main/resources/lib/form/repeatable_lt.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Add=Prid\u0117ti +Add=PridÄ—ti diff --git a/core/src/main/resources/lib/form/repeatable_ru.properties b/core/src/main/resources/lib/form/repeatable_ru.properties index 8cf6aba04c1e..d30e226be00c 100644 --- a/core/src/main/resources/lib/form/repeatable_ru.properties +++ b/core/src/main/resources/lib/form/repeatable_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c +Add=Добавить diff --git a/core/src/main/resources/lib/form/repeatable_sr.properties b/core/src/main/resources/lib/form/repeatable_sr.properties index 2ab9ef08a9f1..8e74cad66cdc 100644 --- a/core/src/main/resources/lib/form/repeatable_sr.properties +++ b/core/src/main/resources/lib/form/repeatable_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Add=\u0414\u043E\u0434\u0430\u0458 +Add=Додај diff --git a/core/src/main/resources/lib/form/repeatable_sv_SE.properties b/core/src/main/resources/lib/form/repeatable_sv_SE.properties index b504d4872b85..a204c08b81a4 100644 --- a/core/src/main/resources/lib/form/repeatable_sv_SE.properties +++ b/core/src/main/resources/lib/form/repeatable_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add=L\u00E4gg till +Add=Lägg till diff --git a/core/src/main/resources/lib/form/repeatable_zh_TW.properties b/core/src/main/resources/lib/form/repeatable_zh_TW.properties index f5733ee16ced..80be8da558f3 100644 --- a/core/src/main/resources/lib/form/repeatable_zh_TW.properties +++ b/core/src/main/resources/lib/form/repeatable_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add=\u65B0\u589E +Add=新增 diff --git a/core/src/main/resources/lib/form/richtextarea.jelly b/core/src/main/resources/lib/form/richtextarea.jelly deleted file mode 100644 index 00ee41bce4ac..000000000000 --- a/core/src/main/resources/lib/form/richtextarea.jelly +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - Rich HTML editor from http://developer.yahoo.com/yui/editor/ - All the attributes are those of the <textarea> tag. - - - - - - - - \ No newline at end of file diff --git a/core/src/main/resources/lib/form/rowSet.jelly b/core/src/main/resources/lib/form/rowSet.jelly index 2ede2c842d40..5d42569b6f4e 100644 --- a/core/src/main/resources/lib/form/rowSet.jelly +++ b/core/src/main/resources/lib/form/rowSet.jelly @@ -43,17 +43,22 @@ THE SOFTWARE. + + + + - - + -
- - -
-
+ +
+ + +
+
+
diff --git a/core/src/main/resources/lib/form/secretTextarea_it.properties b/core/src/main/resources/lib/form/secretTextarea_it.properties index 890420a1dc7a..85abbfc4ba0c 100644 --- a/core/src/main/resources/lib/form/secretTextarea_it.properties +++ b/core/src/main/resources/lib/form/secretTextarea_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,7 +22,7 @@ # THE SOFTWARE. Add=Aggiungi -Concealed=Nascosto per motivi di confidenzialità +Concealed=Nascosto per motivi di confidenzialità EnterSecret=Immettere il nuovo segreto nel campo sottostante NoStoredValue=Nessun valore salvato Replace=Sostituisci diff --git a/core/src/main/resources/lib/form/secretTextarea_zh_TW.properties b/core/src/main/resources/lib/form/secretTextarea_zh_TW.properties index f99a878934e0..ee82c816209e 100644 --- a/core/src/main/resources/lib/form/secretTextarea_zh_TW.properties +++ b/core/src/main/resources/lib/form/secretTextarea_zh_TW.properties @@ -21,8 +21,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. # -Add=\u52a0\u5165 -Replace=\u53d6\u4ee3 -EnterSecret=\u5728\u4e0b\u65b9\u8f38\u5165\u65b0 Secret -Concealed=\u70ba\u4fdd\u5bc6\u800c\u96b1\u85cf -NoStoredValue=\u6c92\u6709\u5df2\u5132\u5b58\u7684\u503c +Add=加入 +Replace=å–代 +EnterSecret=在下方輸入新 Secret +Concealed=為ä¿å¯†è€Œéš±è— +NoStoredValue=沒有已儲存的值 diff --git a/core/src/main/resources/lib/form/select/select.js b/core/src/main/resources/lib/form/select/select.js index 09a4bc385ac7..5e6eeb123f15 100644 --- a/core/src/main/resources/lib/form/select/select.js +++ b/core/src/main/resources/lib/form/select/select.js @@ -11,12 +11,12 @@ function updateListBox(listBox,url,config) { // form entry using tables-to-divs markup. function getStatusElement() { function getStatusForTabularForms() { - return findFollowingTR(listBox, "validation-error-area").firstElementChild.nextSibling; + return listBox.parentNode.querySelector(".validation-error-area"); } function getStatusForDivBasedForms() { var settingMain = listBox.closest('.setting-main') if (!settingMain) { - console.warn("Couldn't find the expected parent element (.setting-main) for element", listBox) + console.warn("Couldn't find the expected validation element (.validation-error-area) for element", listBox.parentNode) return; } diff --git a/core/src/main/resources/lib/form/serverTcpPort_da.properties b/core/src/main/resources/lib/form/serverTcpPort_da.properties index f242acdc3ff2..e0d27ebc35ff 100644 --- a/core/src/main/resources/lib/form/serverTcpPort_da.properties +++ b/core/src/main/resources/lib/form/serverTcpPort_da.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Fixed=Rettet -Random=Vilk\u00e5rlig -Disable=Sl\u00e5 fra +Random=VilkÃ¥rlig +Disable=SlÃ¥ fra diff --git a/core/src/main/resources/lib/form/serverTcpPort_de.properties b/core/src/main/resources/lib/form/serverTcpPort_de.properties index 2d61687dc1ae..7a024c58c388 100644 --- a/core/src/main/resources/lib/form/serverTcpPort_de.properties +++ b/core/src/main/resources/lib/form/serverTcpPort_de.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Fixed=Statisch -Random=Zuf\u00E4llig +Random=Zufällig Disable=Deaktivieren diff --git a/core/src/main/resources/lib/form/serverTcpPort_fi.properties b/core/src/main/resources/lib/form/serverTcpPort_fi.properties index f6d65f81c730..a5530ce60d5b 100644 --- a/core/src/main/resources/lib/form/serverTcpPort_fi.properties +++ b/core/src/main/resources/lib/form/serverTcpPort_fi.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Fixed=Kiinte\u00E4 +Fixed=Kiinteä Random=Satunnainen -Disable=Ei k\u00E4yt\u00F6ss\u00E4 +Disable=Ei käytössä diff --git a/core/src/main/resources/lib/form/serverTcpPort_fr.properties b/core/src/main/resources/lib/form/serverTcpPort_fr.properties index 7377f1f124a7..c4e7a3986f85 100644 --- a/core/src/main/resources/lib/form/serverTcpPort_fr.properties +++ b/core/src/main/resources/lib/form/serverTcpPort_fr.properties @@ -22,4 +22,4 @@ Fixed=Fixe Random=Au hasard -Disable=D\u00E9sactiv\u00E9 +Disable=Désactivé diff --git a/core/src/main/resources/lib/form/serverTcpPort_it.properties b/core/src/main/resources/lib/form/serverTcpPort_it.properties index 689f2d1125fb..1151eb3a6573 100644 --- a/core/src/main/resources/lib/form/serverTcpPort_it.properties +++ b/core/src/main/resources/lib/form/serverTcpPort_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/form/serverTcpPort_ja.properties b/core/src/main/resources/lib/form/serverTcpPort_ja.properties index ff9e3b96d79d..0cac7bf31ef5 100644 --- a/core/src/main/resources/lib/form/serverTcpPort_ja.properties +++ b/core/src/main/resources/lib/form/serverTcpPort_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Fixed=\u56fa\u5b9a -Random=\u30e9\u30f3\u30c0\u30e0 -Disable=\u7121\u52b9 +Fixed=固定 +Random=ランダム +Disable=無効 diff --git a/core/src/main/resources/lib/form/serverTcpPort_pt_BR.properties b/core/src/main/resources/lib/form/serverTcpPort_pt_BR.properties index 5e961b481891..828586dda46d 100644 --- a/core/src/main/resources/lib/form/serverTcpPort_pt_BR.properties +++ b/core/src/main/resources/lib/form/serverTcpPort_pt_BR.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Fixed=Fixo -Random=Rand\u00f5mico +Random=Randõmico Disable=Desabilitar diff --git a/core/src/main/resources/lib/form/serverTcpPort_ru.properties b/core/src/main/resources/lib/form/serverTcpPort_ru.properties index d58418a242ce..3bbe778e2e8a 100644 --- a/core/src/main/resources/lib/form/serverTcpPort_ru.properties +++ b/core/src/main/resources/lib/form/serverTcpPort_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Fixed=\u0421\u0442\u0430\u0442\u0438\u0447\u043d\u044b\u0439 -Random=\u0421\u043b\u0443\u0447\u0430\u0439\u043d\u044b\u0439 -Disable=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d +Fixed=Статичный +Random=Случайный +Disable=Заблокирован diff --git a/core/src/main/resources/lib/form/serverTcpPort_sr.properties b/core/src/main/resources/lib/form/serverTcpPort_sr.properties index 0da4c13e548f..8521f0479648 100644 --- a/core/src/main/resources/lib/form/serverTcpPort_sr.properties +++ b/core/src/main/resources/lib/form/serverTcpPort_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Fixed=\u0421\u0442\u0430\u0442\u0438\u0447\u043A\u0438 -Random=\u0421\u043B\u0443\u0447\u0430\u0458\u043Do -Disable=\u041E\u043D\u0435\u043C\u043E\u0433\u0443\u045B\u0438 +Fixed=Статички +Random=Случајнo +Disable=Онемогући diff --git a/core/src/main/resources/lib/form/serverTcpPort_tr.properties b/core/src/main/resources/lib/form/serverTcpPort_tr.properties index 84b96756e1df..9df3fddf50dd 100644 --- a/core/src/main/resources/lib/form/serverTcpPort_tr.properties +++ b/core/src/main/resources/lib/form/serverTcpPort_tr.properties @@ -22,4 +22,4 @@ Fixed=Sabit Random=Rastgele -Disable=Devre d\u0131\u015f\u0131 b\u0131rak +Disable=Devre dışı bırak diff --git a/core/src/main/resources/lib/form/serverTcpPort_zh_TW.properties b/core/src/main/resources/lib/form/serverTcpPort_zh_TW.properties index 86a9091096ee..f0d80d79ae77 100644 --- a/core/src/main/resources/lib/form/serverTcpPort_zh_TW.properties +++ b/core/src/main/resources/lib/form/serverTcpPort_zh_TW.properties @@ -21,6 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Fixed=\u56fa\u5b9a -Random=\u96a8\u6a5f -Disable=\u505c\u7528 +Fixed=固定 +Random=隨機 +Disable=åœç”¨ diff --git a/core/src/main/resources/lib/form/slave-mode_bg.properties b/core/src/main/resources/lib/form/slave-mode_bg.properties index fe5c92d5b682..d98be3c3b376 100644 --- a/core/src/main/resources/lib/form/slave-mode_bg.properties +++ b/core/src/main/resources/lib/form/slave-mode_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Usage=\ - \u0423\u043f\u043e\u0442\u0440\u0435\u0431\u0430 + Употреба diff --git a/core/src/main/resources/lib/form/slave-mode_cs.properties b/core/src/main/resources/lib/form/slave-mode_cs.properties index 6f015c27920c..948c85f87df6 100644 --- a/core/src/main/resources/lib/form/slave-mode_cs.properties +++ b/core/src/main/resources/lib/form/slave-mode_cs.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Usage=Pou\u017Eit\u00ED +Usage=Použití diff --git a/core/src/main/resources/lib/form/slave-mode_hu.properties b/core/src/main/resources/lib/form/slave-mode_hu.properties index e606cd0764c1..fabbbb5cce40 100644 --- a/core/src/main/resources/lib/form/slave-mode_hu.properties +++ b/core/src/main/resources/lib/form/slave-mode_hu.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Usage=Haszn\u00E1lat +Usage=Használat diff --git a/core/src/main/resources/lib/form/slave-mode_it.properties b/core/src/main/resources/lib/form/slave-mode_it.properties index 36ca60818b1e..7ac00acd734f 100644 --- a/core/src/main/resources/lib/form/slave-mode_it.properties +++ b/core/src/main/resources/lib/form/slave-mode_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/form/slave-mode_ja.properties b/core/src/main/resources/lib/form/slave-mode_ja.properties index fb473c920b23..6beea03ea097 100644 --- a/core/src/main/resources/lib/form/slave-mode_ja.properties +++ b/core/src/main/resources/lib/form/slave-mode_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Usage=\u7528\u9014 +Usage=用途 diff --git a/core/src/main/resources/lib/form/slave-mode_ru.properties b/core/src/main/resources/lib/form/slave-mode_ru.properties index 1cb7a54179d7..3165ae71ab99 100644 --- a/core/src/main/resources/lib/form/slave-mode_ru.properties +++ b/core/src/main/resources/lib/form/slave-mode_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Usage=\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u0435 +Usage=ИÑпользование diff --git a/core/src/main/resources/lib/form/slave-mode_sk.properties b/core/src/main/resources/lib/form/slave-mode_sk.properties index c2a99f7c2386..54717e2e8769 100644 --- a/core/src/main/resources/lib/form/slave-mode_sk.properties +++ b/core/src/main/resources/lib/form/slave-mode_sk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Usage=Pou\u017Eitie +Usage=Použitie diff --git a/core/src/main/resources/lib/form/slave-mode_sr.properties b/core/src/main/resources/lib/form/slave-mode_sr.properties index 4ed411d3065a..4ae69c1bc9fd 100644 --- a/core/src/main/resources/lib/form/slave-mode_sr.properties +++ b/core/src/main/resources/lib/form/slave-mode_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Usage=\u0423\u043F\u043E\u0442\u0440\u0435\u0431\u0430 +Usage=Употреба diff --git a/core/src/main/resources/lib/form/slave-mode_sv_SE.properties b/core/src/main/resources/lib/form/slave-mode_sv_SE.properties index 80962fc1b841..3e7f50e5e9b2 100644 --- a/core/src/main/resources/lib/form/slave-mode_sv_SE.properties +++ b/core/src/main/resources/lib/form/slave-mode_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Usage=Anv\u00E4ndande +Usage=Användande diff --git a/core/src/main/resources/lib/form/slave-mode_uk.properties b/core/src/main/resources/lib/form/slave-mode_uk.properties index e6fffdce3477..b87d7a593ff6 100644 --- a/core/src/main/resources/lib/form/slave-mode_uk.properties +++ b/core/src/main/resources/lib/form/slave-mode_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Usage=\u0412\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F +Usage=ВикориÑÑ‚Ð°Ð½Ð½Ñ diff --git a/core/src/main/resources/lib/form/slave-mode_zh_TW.properties b/core/src/main/resources/lib/form/slave-mode_zh_TW.properties index 0ca877e691f8..96a3d9a9dbb2 100644 --- a/core/src/main/resources/lib/form/slave-mode_zh_TW.properties +++ b/core/src/main/resources/lib/form/slave-mode_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Usage=\u4f7f\u7528\u65b9\u5f0f +Usage=ä½¿ç”¨æ–¹å¼ diff --git a/core/src/main/resources/lib/form/submit_bg.properties b/core/src/main/resources/lib/form/submit_bg.properties index ce43fb6569ee..e3cda1cb3f73 100644 --- a/core/src/main/resources/lib/form/submit_bg.properties +++ b/core/src/main/resources/lib/form/submit_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Submit=\ - \u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 + Запазване diff --git a/core/src/main/resources/lib/form/submit_de.properties b/core/src/main/resources/lib/form/submit_de.properties index be6f61244fa9..aadb027f4c31 100644 --- a/core/src/main/resources/lib/form/submit_de.properties +++ b/core/src/main/resources/lib/form/submit_de.properties @@ -1,2 +1,2 @@ -Submit=Übernehmen +Submit=Ãœbernehmen diff --git a/core/src/main/resources/lib/form/submit_it.properties b/core/src/main/resources/lib/form/submit_it.properties index 8c9d13bc25a4..f3bf1ce8aab0 100644 --- a/core/src/main/resources/lib/form/submit_it.properties +++ b/core/src/main/resources/lib/form/submit_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/form/submit_ja.properties b/core/src/main/resources/lib/form/submit_ja.properties index 71ba9fccbb70..7865a6c82207 100644 --- a/core/src/main/resources/lib/form/submit_ja.properties +++ b/core/src/main/resources/lib/form/submit_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Submit=\u4fdd\u5b58 +Submit=ä¿å­˜ diff --git a/core/src/main/resources/lib/form/submit_sr.properties b/core/src/main/resources/lib/form/submit_sr.properties index c8e10fc8ec69..fb2ef23b98d2 100644 --- a/core/src/main/resources/lib/form/submit_sr.properties +++ b/core/src/main/resources/lib/form/submit_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Submit=\u041F\u043E\u0434\u043D\u0435\u0441\u0438 +Submit=ПоднеÑи diff --git a/core/src/main/resources/lib/form/submit_tr.properties b/core/src/main/resources/lib/form/submit_tr.properties index 9bbde4124937..872af2ee2a9a 100644 --- a/core/src/main/resources/lib/form/submit_tr.properties +++ b/core/src/main/resources/lib/form/submit_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Submit=G\u00f6nder +Submit=Gönder diff --git a/core/src/main/resources/lib/form/submit_zh_TW.properties b/core/src/main/resources/lib/form/submit_zh_TW.properties index b93603b37ce9..b348abbbfee4 100644 --- a/core/src/main/resources/lib/form/submit_zh_TW.properties +++ b/core/src/main/resources/lib/form/submit_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Submit=\u9001\u51fa +Submit=é€å‡º diff --git a/core/src/main/resources/lib/form/textarea.jelly b/core/src/main/resources/lib/form/textarea.jelly index d6fa4e02aa83..f0b234ebcb7c 100644 --- a/core/src/main/resources/lib/form/textarea.jelly +++ b/core/src/main/resources/lib/form/textarea.jelly @@ -102,8 +102,6 @@ THE SOFTWARE. ${customizedFields.add(name)} - -
diff --git a/core/src/main/resources/lib/form/textarea/textarea.js b/core/src/main/resources/lib/form/textarea/textarea.js index a859c37b047d..eb21c82ee5b0 100644 --- a/core/src/main/resources/lib/form/textarea/textarea.js +++ b/core/src/main/resources/lib/form/textarea/textarea.js @@ -27,7 +27,7 @@ Behaviour.specify("TEXTAREA.codemirror", 'textarea', 0, function(e) { }; } var scroller = codemirror.getScrollerElement(); - scroller.setAttribute("style","border:1px solid black;"); + scroller.setAttribute("style","border:none;"); scroller.style.height = h+"px"; // the form needs to be populated before the "Apply" button diff --git a/core/src/main/resources/lib/form/textarea_bg.properties b/core/src/main/resources/lib/form/textarea_bg.properties index 3bee23c929c0..2e1fabece031 100644 --- a/core/src/main/resources/lib/form/textarea_bg.properties +++ b/core/src/main/resources/lib/form/textarea_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Hide\ preview=\ - \u0421\u043a\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430 + Скриване на прегледа Preview=\ - \u041f\u0440\u0435\u0433\u043b\u0435\u0434 + Преглед diff --git a/core/src/main/resources/lib/form/textarea_ca.properties b/core/src/main/resources/lib/form/textarea_ca.properties index f8cafbcc5106..0829fd126a7c 100644 --- a/core/src/main/resources/lib/form/textarea_ca.properties +++ b/core/src/main/resources/lib/form/textarea_ca.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Hide\ preview=Amaga previsualitzaci\u00F3 +Hide\ preview=Amaga previsualització Preview=Previsualitzar diff --git a/core/src/main/resources/lib/form/textarea_cs.properties b/core/src/main/resources/lib/form/textarea_cs.properties index 7962ca7adc65..bfb47cd7ea78 100644 --- a/core/src/main/resources/lib/form/textarea_cs.properties +++ b/core/src/main/resources/lib/form/textarea_cs.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Hide\ preview=Skr\u00FDt n\u00E1hled -Preview=N\u00E1hled +Hide\ preview=Skrýt náhled +Preview=Náhled diff --git a/core/src/main/resources/lib/form/textarea_el.properties b/core/src/main/resources/lib/form/textarea_el.properties index d046263e73fd..54dc9d48700f 100644 --- a/core/src/main/resources/lib/form/textarea_el.properties +++ b/core/src/main/resources/lib/form/textarea_el.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Hide\ preview=\u039A\u03C1\u03CD\u03C8\u03B9\u03BC\u03BF \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7\u03C2 -Preview=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7 +Hide\ preview=ΚÏÏψιμο Ï€Ïοεπισκόπησης +Preview=ΠÏοεπισκόπηση diff --git a/core/src/main/resources/lib/form/textarea_es.properties b/core/src/main/resources/lib/form/textarea_es.properties index f54fd0fa76ac..27f3ca755c1d 100644 --- a/core/src/main/resources/lib/form/textarea_es.properties +++ b/core/src/main/resources/lib/form/textarea_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Hide\ preview=Ocultar Visualizaci\u00F3n +Hide\ preview=Ocultar Visualización Preview=Visualizar diff --git a/core/src/main/resources/lib/form/textarea_es_AR.properties b/core/src/main/resources/lib/form/textarea_es_AR.properties index 842e8afcad1a..e34acb2a018a 100644 --- a/core/src/main/resources/lib/form/textarea_es_AR.properties +++ b/core/src/main/resources/lib/form/textarea_es_AR.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Hide\ preview=Ocultar previsualizaci\u00F3n -Preview=Previsualizaci\u00F3n +Hide\ preview=Ocultar previsualización +Preview=Previsualización diff --git a/core/src/main/resources/lib/form/textarea_fr.properties b/core/src/main/resources/lib/form/textarea_fr.properties index 0304f29d9205..1835648b6ad7 100644 --- a/core/src/main/resources/lib/form/textarea_fr.properties +++ b/core/src/main/resources/lib/form/textarea_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Hide\ preview=Masquer la pr\u00E9visualisation -Preview=Pr\u00E9visualisation +Hide\ preview=Masquer la prévisualisation +Preview=Prévisualisation diff --git a/core/src/main/resources/lib/form/textarea_he.properties b/core/src/main/resources/lib/form/textarea_he.properties index c9e34d24d82e..89f5c18659d3 100644 --- a/core/src/main/resources/lib/form/textarea_he.properties +++ b/core/src/main/resources/lib/form/textarea_he.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Hide\ preview=\u05D4\u05E1\u05EA\u05E8 \u05EA\u05E6\u05D5\u05D2\u05D4 \u05DE\u05E7\u05D3\u05D9\u05DE\u05D4 -Preview=\u05EA\u05E6\u05D5\u05D2\u05D4 \u05DE\u05E7\u05D3\u05D9\u05DE\u05D4 +Hide\ preview=הסתר תצוגה מקדימה +Preview=תצוגה מקדימה diff --git a/core/src/main/resources/lib/form/textarea_hu.properties b/core/src/main/resources/lib/form/textarea_hu.properties index d843ac2b05b7..3afdbfcafeb5 100644 --- a/core/src/main/resources/lib/form/textarea_hu.properties +++ b/core/src/main/resources/lib/form/textarea_hu.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Hide\ preview=El\u0151n\u00E9zet elrejt\u00E9se -Preview=El\u0151n\u00E9zet +Hide\ preview=ElÅ‘nézet elrejtése +Preview=ElÅ‘nézet diff --git a/core/src/main/resources/lib/form/textarea_it.properties b/core/src/main/resources/lib/form/textarea_it.properties index 670ed5e6bc6a..e0fc14ed1183 100644 --- a/core/src/main/resources/lib/form/textarea_it.properties +++ b/core/src/main/resources/lib/form/textarea_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/form/textarea_ja.properties b/core/src/main/resources/lib/form/textarea_ja.properties index 1ff4dd741063..c23b17f435a4 100644 --- a/core/src/main/resources/lib/form/textarea_ja.properties +++ b/core/src/main/resources/lib/form/textarea_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preview=\u30d7\u30ec\u30d3\u30e5\u30fc -Hide\ preview=\u9589\u3058\u308b +Preview=プレビュー +Hide\ preview=é–‰ã˜ã‚‹ diff --git a/core/src/main/resources/lib/form/textarea_ko.properties b/core/src/main/resources/lib/form/textarea_ko.properties index 969924775570..b99cb1c14064 100644 --- a/core/src/main/resources/lib/form/textarea_ko.properties +++ b/core/src/main/resources/lib/form/textarea_ko.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Hide\ preview=\uBBF8\uB9AC\uBCF4\uAE30 \uC228\uAE30\uAE30 -Preview=\uBBF8\uB9AC\uBCF4\uAE30 +Hide\ preview=미리보기 숨기기 +Preview=미리보기 diff --git a/core/src/main/resources/lib/form/textarea_lt.properties b/core/src/main/resources/lib/form/textarea_lt.properties index 86c88885efce..cafbd01ce6b0 100644 --- a/core/src/main/resources/lib/form/textarea_lt.properties +++ b/core/src/main/resources/lib/form/textarea_lt.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Hide\ preview=I\u0161jungti per\u017Ei\u016Br\u0105 -Preview=Per\u017Ei\u016Bra +Hide\ preview=IÅ¡jungti peržiÅ«rÄ… +Preview=PeržiÅ«ra diff --git a/core/src/main/resources/lib/form/textarea_lv.properties b/core/src/main/resources/lib/form/textarea_lv.properties index f106b2e1dd5e..256291acd378 100644 --- a/core/src/main/resources/lib/form/textarea_lv.properties +++ b/core/src/main/resources/lib/form/textarea_lv.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Hide\ preview=Sl\u0113pt priek\u0161skatu -Preview=Priek\u0161skat\u012Bt +Hide\ preview=SlÄ“pt priekÅ¡skatu +Preview=PriekÅ¡skatÄ«t diff --git a/core/src/main/resources/lib/form/textarea_nb_NO.properties b/core/src/main/resources/lib/form/textarea_nb_NO.properties index b18a7822455e..e6ba43dda80c 100644 --- a/core/src/main/resources/lib/form/textarea_nb_NO.properties +++ b/core/src/main/resources/lib/form/textarea_nb_NO.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Hide\ preview=Skjul forh\u00E5ndsvisning -Preview=Forh\u00E5ndsvis +Hide\ preview=Skjul forhÃ¥ndsvisning +Preview=ForhÃ¥ndsvis diff --git a/core/src/main/resources/lib/form/textarea_pl.properties b/core/src/main/resources/lib/form/textarea_pl.properties index ff2fef6c1780..cd9341674a87 100644 --- a/core/src/main/resources/lib/form/textarea_pl.properties +++ b/core/src/main/resources/lib/form/textarea_pl.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Hide\ preview=Ukryj podgl\u0105d -Preview=Podgl\u0105d +Hide\ preview=Ukryj podglÄ…d +Preview=PodglÄ…d diff --git a/core/src/main/resources/lib/form/textarea_pt_BR.properties b/core/src/main/resources/lib/form/textarea_pt_BR.properties index f48a8b76e109..854edbdb2479 100644 --- a/core/src/main/resources/lib/form/textarea_pt_BR.properties +++ b/core/src/main/resources/lib/form/textarea_pt_BR.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Hide\ preview=Ocultar visualiza\u00E7\u00E3o +Hide\ preview=Ocultar visualização Preview=Visualizar diff --git a/core/src/main/resources/lib/form/textarea_pt_PT.properties b/core/src/main/resources/lib/form/textarea_pt_PT.properties index 8c6a41af1b1c..dbaa0588dc07 100644 --- a/core/src/main/resources/lib/form/textarea_pt_PT.properties +++ b/core/src/main/resources/lib/form/textarea_pt_PT.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Hide\ preview=Esconder pr\u00E9-visualiza\u00E7\u00E3o -Preview=Pr\u00E9-visualiza\u00E7\u00E3o +Hide\ preview=Esconder pré-visualização +Preview=Pré-visualização diff --git a/core/src/main/resources/lib/form/textarea_ru.properties b/core/src/main/resources/lib/form/textarea_ru.properties index dbb0ce37db3d..a6429c51d034 100644 --- a/core/src/main/resources/lib/form/textarea_ru.properties +++ b/core/src/main/resources/lib/form/textarea_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Hide\ preview=\u0421\u043A\u0440\u044B\u0442\u044C \u043F\u0440\u0435\u0434\u043F\u0440\u043E\u0441\u043C\u043E\u0442\u0440 -Preview=\u041F\u0440\u0435\u0434\u043F\u0440\u043E\u0441\u043C\u043E\u0442\u0440 +Hide\ preview=Скрыть предпроÑмотр +Preview=ПредпроÑмотр diff --git a/core/src/main/resources/lib/form/textarea_sr.properties b/core/src/main/resources/lib/form/textarea_sr.properties index 632e5095701c..d2df4188db75 100644 --- a/core/src/main/resources/lib/form/textarea_sr.properties +++ b/core/src/main/resources/lib/form/textarea_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Preview=\u041F\u0440\u0435\u0433\u043B\u0435\u0434 -Hide\ preview=\u0421\u043A\u043B\u043E\u043D\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 +Preview=Преглед +Hide\ preview=Склони преглед diff --git a/core/src/main/resources/lib/form/textarea_sv_SE.properties b/core/src/main/resources/lib/form/textarea_sv_SE.properties index a72311713d5b..f7b34117da45 100644 --- a/core/src/main/resources/lib/form/textarea_sv_SE.properties +++ b/core/src/main/resources/lib/form/textarea_sv_SE.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Hide\ preview=D\u00F6lj f\u00F6rhandsgransning -Preview=F\u00F6rhandsgranska +Hide\ preview=Dölj förhandsgransning +Preview=Förhandsgranska diff --git a/core/src/main/resources/lib/form/textarea_tr.properties b/core/src/main/resources/lib/form/textarea_tr.properties index 6377fb39ee8a..5dad4419c923 100644 --- a/core/src/main/resources/lib/form/textarea_tr.properties +++ b/core/src/main/resources/lib/form/textarea_tr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Hide\ preview=\u00D6nizlemeyi gizle -Preview=\u00D6nizleme +Hide\ preview=Önizlemeyi gizle +Preview=Önizleme diff --git a/core/src/main/resources/lib/form/textarea_uk.properties b/core/src/main/resources/lib/form/textarea_uk.properties index 6bce5f47f8f0..37843d1677d3 100644 --- a/core/src/main/resources/lib/form/textarea_uk.properties +++ b/core/src/main/resources/lib/form/textarea_uk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Hide\ preview=\u0421\u0445\u043E\u0432\u0430\u0442\u0438 \u043F\u043E\u043F\u0435\u0440\u0435\u0434\u043D\u0456\u0439 \u043F\u0435\u0440\u0435\u0433\u043B\u044F\u0434 -Preview=\u041F\u043E\u043F\u0435\u0440\u0435\u0434\u043D\u0456\u0439 \u043F\u0435\u0440\u0435\u0433\u043B\u044F\u0434 +Hide\ preview=Сховати попередній переглÑд +Preview=Попередній переглÑд diff --git a/core/src/main/resources/lib/form/textarea_zh_TW.properties b/core/src/main/resources/lib/form/textarea_zh_TW.properties index 8aa3cffed568..6bd704ed8739 100644 --- a/core/src/main/resources/lib/form/textarea_zh_TW.properties +++ b/core/src/main/resources/lib/form/textarea_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preview=\u9810\u89BD -Hide\ preview=\u96B1\u85CF\u9810\u89BD +Preview=é è¦½ +Hide\ preview=éš±è—é è¦½ diff --git a/core/src/main/resources/lib/form/validateButton.jelly b/core/src/main/resources/lib/form/validateButton.jelly index ba8f19252703..ff98731b5d48 100644 --- a/core/src/main/resources/lib/form/validateButton.jelly +++ b/core/src/main/resources/lib/form/validateButton.jelly @@ -51,16 +51,18 @@ THE SOFTWARE. -
+
+
+ +
+
+ +
-
- -
-
diff --git a/core/src/main/resources/lib/hudson/artifactList_bg.properties b/core/src/main/resources/lib/hudson/artifactList_bg.properties index 4b4d734c1d11..7f5da7c3b9ba 100644 --- a/core/src/main/resources/lib/hudson/artifactList_bg.properties +++ b/core/src/main/resources/lib/hudson/artifactList_bg.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. view=\ - \u041f\u0440\u0435\u0433\u043b\u0435\u0434 + Преглед Expand\ all=\ - \u0420\u0430\u0437\u0448\u0438\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u043e + РазширÑване на вÑичко Collapse\ all=\ - \u0421\u0432\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u043e + Свиване на вÑичко View=\ - \u041f\u0440\u0435\u0433\u043b\u0435\u0434 + Преглед diff --git a/core/src/main/resources/lib/hudson/artifactList_it.properties b/core/src/main/resources/lib/hudson/artifactList_it.properties index 13d282ae7c7d..a2c6a495448c 100644 --- a/core/src/main/resources/lib/hudson/artifactList_it.properties +++ b/core/src/main/resources/lib/hudson/artifactList_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/artifactList_ja.properties b/core/src/main/resources/lib/hudson/artifactList_ja.properties index 42f4729826c8..8113696270ee 100644 --- a/core/src/main/resources/lib/hudson/artifactList_ja.properties +++ b/core/src/main/resources/lib/hudson/artifactList_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -view=\u53c2\u7167 -View=\u53c2\u7167 -Expand\ all=\u5c55\u958b -Collapse\ all=\u9589\u3058\u308b +view=å‚ç…§ +View=å‚ç…§ +Expand\ all=展開 +Collapse\ all=é–‰ã˜ã‚‹ diff --git a/core/src/main/resources/lib/hudson/artifactList_pl.properties b/core/src/main/resources/lib/hudson/artifactList_pl.properties index bd873feafb36..2379f5f59e61 100644 --- a/core/src/main/resources/lib/hudson/artifactList_pl.properties +++ b/core/src/main/resources/lib/hudson/artifactList_pl.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -View=Rozwi\u0144 +View=RozwiÅ„ diff --git a/core/src/main/resources/lib/hudson/artifactList_pt_BR.properties b/core/src/main/resources/lib/hudson/artifactList_pt_BR.properties index 81ef7fa46417..cd63f7f00af8 100644 --- a/core/src/main/resources/lib/hudson/artifactList_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/artifactList_pt_BR.properties @@ -25,5 +25,5 @@ view=exibir Expand\ all=Expandir todos Collapse\ all=Ocultar todos building=\ - A constru\u00E7\u00E3o ainda est\u00E1 em progresso. Alguns artefatos est\u00E3o presentes, mas a lista pode estar incompleta. Artefatos \ + A construção ainda está em progresso. Alguns artefatos estão presentes, mas a lista pode estar incompleta. Artefatos \ em processo de escrita podem ser corrompidos. diff --git a/core/src/main/resources/lib/hudson/artifactList_ru.properties b/core/src/main/resources/lib/hudson/artifactList_ru.properties index 10dcc10084a5..59a81fe4f22e 100644 --- a/core/src/main/resources/lib/hudson/artifactList_ru.properties +++ b/core/src/main/resources/lib/hudson/artifactList_ru.properties @@ -1,4 +1,4 @@ -Collapse\ all=\u0421\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0432\u0441\u0451 -Expand\ all=\u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0432\u0441\u0451 -View=\u041f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c -view=\u043f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c +Collapse\ all=Свернуть вÑÑ‘ +Expand\ all=Развернуть вÑÑ‘ +View=ПоÑмотреть +view=поÑмотреть diff --git a/core/src/main/resources/lib/hudson/artifactList_sr.properties b/core/src/main/resources/lib/hudson/artifactList_sr.properties index 2d329d4e8898..d1bc1b739525 100644 --- a/core/src/main/resources/lib/hudson/artifactList_sr.properties +++ b/core/src/main/resources/lib/hudson/artifactList_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -view=\u043F\u0440\u0435\u0433\u043B\u0435\u0434 -Expand\ all=\u0420\u0430\u0448\u0438\u0440\u0438 \u0441\u0432\u0435 -Collapse\ all=\u0421\u043C\u0430\u045A\u0438 \u0441\u0432\u0435 -View=\u041F\u0440\u0435\u0433\u043B\u0435\u0434 +view=преглед +Expand\ all=Рашири Ñве +Collapse\ all=Смањи Ñве +View=Преглед diff --git a/core/src/main/resources/lib/hudson/artifactList_zh_TW.properties b/core/src/main/resources/lib/hudson/artifactList_zh_TW.properties index 22c23ff47bfe..fd34e9b903dd 100644 --- a/core/src/main/resources/lib/hudson/artifactList_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/artifactList_zh_TW.properties @@ -19,7 +19,7 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -building=\u6b64\u5efa\u7f6e\u9084\u5728\u57f7\u884c\u4e2d\u3002\u5df2\u5217\u51fa\u4e00\u4e9b\u6210\u54c1\u4f46\u6e05\u55ae\u53ef\u80fd\u9084\u4e0d\u5b8c\u6574\uff0c\u6210\u54c1\u53ef\u80fd\u662f\u640d\u58de\u7684\u56e0\u70ba\u9084\u5728\u6301\u7e8c\u5beb\u5165\u3002 -View=\u6aa2\u8996 -Expand\ all=\u5168\u90e8\u5c55\u958b -Collapse\ all=\u5168\u90e8\u6536\u5408 +building=此建置還在執行中。已列出一些æˆå“但清單å¯èƒ½é‚„ä¸å®Œæ•´ï¼Œæˆå“å¯èƒ½æ˜¯æ壞的因為還在æŒçºŒå¯«å…¥ã€‚ +View=檢視 +Expand\ all=全部展開 +Collapse\ all=å…¨éƒ¨æ”¶åˆ diff --git a/core/src/main/resources/lib/hudson/buildCaption_bg.properties b/core/src/main/resources/lib/hudson/buildCaption_bg.properties index 47274fcd4aef..a39e22cf8959 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_bg.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_bg.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. Progress=\ - \u041d\u0430\u043f\u0440\u0435\u0434\u044a\u043a + Ðапредък cancel=\ - \u041e\u0442\u043c\u044f\u043d\u0430 + ОтмÑна # Are you sure you want to abort {0}? confirm=\ - \u0421\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u043f\u0440\u0435\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 {0}? + Сигурни ли Ñте, че иÑкате да преуÑтановите {0}? diff --git a/core/src/main/resources/lib/hudson/buildCaption_ca.properties b/core/src/main/resources/lib/hudson/buildCaption_ca.properties index fd1d3aabd9be..9e4d1377068f 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_ca.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_ca.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Progress=Progr\u00E9s -cancel=cancel\u00B7lar +Progress=Progrés +cancel=cancel·lar diff --git a/core/src/main/resources/lib/hudson/buildCaption_cs.properties b/core/src/main/resources/lib/hudson/buildCaption_cs.properties index f6ff2dac6019..97a5c246fedb 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_cs.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_cs.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Progress=Postup -cancel=Zru\u0161it +cancel=ZruÅ¡it diff --git a/core/src/main/resources/lib/hudson/buildCaption_de.properties b/core/src/main/resources/lib/hudson/buildCaption_de.properties index 82f1c447a099..28420718549d 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_de.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_de.properties @@ -22,4 +22,4 @@ Progress=Fortschritt cancel=Abbrechen -confirm=M\u00F6chten Sie {0} wirklich abbrechen? +confirm=Möchten Sie {0} wirklich abbrechen? diff --git a/core/src/main/resources/lib/hudson/buildCaption_el.properties b/core/src/main/resources/lib/hudson/buildCaption_el.properties index 99ffd2e96b99..d77b1f457305 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_el.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_el.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Progress=\u03A0\u03C1\u03CC\u03BF\u03B4\u03BF\u03C2 -cancel=\u03B1\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7 +Progress=ΠÏόοδος +cancel=ακÏÏωση diff --git a/core/src/main/resources/lib/hudson/buildCaption_he.properties b/core/src/main/resources/lib/hudson/buildCaption_he.properties index e4aa62fbf17a..c25f11f042eb 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_he.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_he.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Progress=\u05D4\u05EA\u05E7\u05D3\u05DE\u05D5\u05EA -cancel=\u05D1\u05D8\u05DC +Progress=התקדמות +cancel=בטל diff --git a/core/src/main/resources/lib/hudson/buildCaption_hu.properties b/core/src/main/resources/lib/hudson/buildCaption_hu.properties index 85f5c277beaf..b590fdf626e3 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_hu.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_hu.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Progress=El\u0151rehalad\u00E1s -cancel=m\u00E9gse +Progress=ElÅ‘rehaladás +cancel=mégse diff --git a/core/src/main/resources/lib/hudson/buildCaption_it.properties b/core/src/main/resources/lib/hudson/buildCaption_it.properties index 66bffeac4d59..43acb646a03e 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_it.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/buildCaption_ja.properties b/core/src/main/resources/lib/hudson/buildCaption_ja.properties index c9d67d65c9be..8d193928bb70 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_ja.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Progress=\u7d4c\u904e -cancel=\u4e2d\u6b62 +Progress=çµŒéŽ +cancel=中止 diff --git a/core/src/main/resources/lib/hudson/buildCaption_ko.properties b/core/src/main/resources/lib/hudson/buildCaption_ko.properties index aa099b25ed1a..c5f97cfc9f37 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_ko.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_ko.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Progress=\uC9C4\uD589 -cancel=\uCDE8\uC18C +Progress=진행 +cancel=취소 diff --git a/core/src/main/resources/lib/hudson/buildCaption_lt.properties b/core/src/main/resources/lib/hudson/buildCaption_lt.properties index 4ba54cb257d9..92233efc459a 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_lt.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_lt.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Progress=Progresas -cancel=at\u0161aukti +cancel=atÅ¡aukti diff --git a/core/src/main/resources/lib/hudson/buildCaption_pl.properties b/core/src/main/resources/lib/hudson/buildCaption_pl.properties index 67f0ee4fae4b..f33a4b245cc1 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_pl.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_pl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Progress=Post\u0119p +Progress=PostÄ™p cancel=anuluj diff --git a/core/src/main/resources/lib/hudson/buildCaption_ru.properties b/core/src/main/resources/lib/hudson/buildCaption_ru.properties index 08d40362eb63..41d2b030f5e8 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_ru.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Progress=\u041f\u0440\u043e\u0433\u0440\u0435\u0441\u0441 -cancel=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c +Progress=ПрогреÑÑ +cancel=Отменить # Are you sure you want to abort {0}? -confirm=\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c +confirm=Подтвердить diff --git a/core/src/main/resources/lib/hudson/buildCaption_sk.properties b/core/src/main/resources/lib/hudson/buildCaption_sk.properties index c8ed53c417fc..4a610c552cd5 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_sk.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_sk.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Progress=Priebeh -cancel=zru\u0161i\u0165 +cancel=zruÅ¡iÅ¥ diff --git a/core/src/main/resources/lib/hudson/buildCaption_sl.properties b/core/src/main/resources/lib/hudson/buildCaption_sl.properties index c9b8cbfc590b..9ce3032ae783 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_sl.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_sl.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors Progress=Napredek -cancel=prekli\u010Di +cancel=prekliÄi diff --git a/core/src/main/resources/lib/hudson/buildCaption_sr.properties b/core/src/main/resources/lib/hudson/buildCaption_sr.properties index a702f8f59f52..72f34c9f889c 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_sr.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Progress=\u041F\u0440\u043E\u0433\u0440\u0435\u0441 -cancel=\u041E\u0442\u043A\u0430\u0436\u0438 -confirm=\u0414\u0430 \u043B\u0438 \u0441\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043D\u0438 \u0434\u0430 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u043E\u0434\u043A\u0430\u0436\u0435\u0442\u0435 {0}? +Progress=ÐŸÑ€Ð¾Ð³Ñ€ÐµÑ +cancel=Откажи +confirm=Да ли Ñте Ñигурни да желите да одкажете {0}? diff --git a/core/src/main/resources/lib/hudson/buildCaption_tr.properties b/core/src/main/resources/lib/hudson/buildCaption_tr.properties index 368cbab3553d..8b66cc017af9 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_tr.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Progress=\u0130lerleme -cancel=\u0130ptal +Progress=Ä°lerleme +cancel=Ä°ptal diff --git a/core/src/main/resources/lib/hudson/buildCaption_uk.properties b/core/src/main/resources/lib/hudson/buildCaption_uk.properties index d97987bc3462..b6d9ca848075 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_uk.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_uk.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Progress=\u041F\u0440\u043E\u0433\u0440\u0435\u0441 -cancel=\u0432\u0456\u0434\u043C\u0456\u043D\u0438\u0442\u0438 +Progress=ÐŸÑ€Ð¾Ð³Ñ€ÐµÑ +cancel=відмінити diff --git a/core/src/main/resources/lib/hudson/buildCaption_zh_TW.properties b/core/src/main/resources/lib/hudson/buildCaption_zh_TW.properties index 10c7ab9dc883..91fa40d2615e 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_zh_TW.properties @@ -1,3 +1,3 @@ -confirm=\u60a8\u78ba\u5b9a\u8981\u4e2d\u6b62 {0} \u55ce\uff1f -Progress=\u9032\u5ea6 -cancel=\u53d6\u6d88 +confirm=您確定è¦ä¸­æ­¢ {0} 嗎? +Progress=進度 +cancel=å–消 diff --git a/core/src/main/resources/lib/hudson/buildHealth_bg.properties b/core/src/main/resources/lib/hudson/buildHealth_bg.properties index eb308c8baf77..1c0fcf4cbd48 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_bg.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Description=\ - \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 + ОпиÑание diff --git a/core/src/main/resources/lib/hudson/buildHealth_ca.properties b/core/src/main/resources/lib/hudson/buildHealth_ca.properties index 3e588504ddcf..00aa89624ea2 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_ca.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_ca.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=Descripci\u00F3 +Description=Descripció diff --git a/core/src/main/resources/lib/hudson/buildHealth_el.properties b/core/src/main/resources/lib/hudson/buildHealth_el.properties index 89629ae86134..58c3482b93e2 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_el.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_el.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=\u03A0\u03B5\u03C1\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE +Description=ΠεÏιγÏαφή diff --git a/core/src/main/resources/lib/hudson/buildHealth_es.properties b/core/src/main/resources/lib/hudson/buildHealth_es.properties index ef8962d8fdba..ebfdf0f82582 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_es.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=Descripci\u00F3n +Description=Descripción diff --git a/core/src/main/resources/lib/hudson/buildHealth_es_AR.properties b/core/src/main/resources/lib/hudson/buildHealth_es_AR.properties index 8075962e5f38..e3ccb9f9e483 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_es_AR.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_es_AR.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Description=Descripci\u00F3n +Description=Descripción diff --git a/core/src/main/resources/lib/hudson/buildHealth_he.properties b/core/src/main/resources/lib/hudson/buildHealth_he.properties index b20e795bde05..bcf614aa7ac9 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_he.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_he.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=\u05EA\u05D9\u05D0\u05D5\u05E8 +Description=תי×ור diff --git a/core/src/main/resources/lib/hudson/buildHealth_hu.properties b/core/src/main/resources/lib/hudson/buildHealth_hu.properties index 4f1e782a9e00..703eb0fb09a5 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_hu.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=Le\u00EDr\u00E1s +Description=Leírás diff --git a/core/src/main/resources/lib/hudson/buildHealth_it.properties b/core/src/main/resources/lib/hudson/buildHealth_it.properties index 7fc9c5d58f08..d6c843bd2d1a 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_it.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/buildHealth_ja.properties b/core/src/main/resources/lib/hudson/buildHealth_ja.properties index d8af5dd77548..1f5ab17b1374 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_ja.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=\u8AAC\u660E +Description=説明 diff --git a/core/src/main/resources/lib/hudson/buildHealth_ko.properties b/core/src/main/resources/lib/hudson/buildHealth_ko.properties index 6d64ddc2b5aa..0fe397e2d6f4 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_ko.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=\uC124\uBA85 +Description=설명 diff --git a/core/src/main/resources/lib/hudson/buildHealth_lt.properties b/core/src/main/resources/lib/hudson/buildHealth_lt.properties index d05375c1da68..28723037b88d 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_lt.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_lt.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=Apra\u0161ymas +Description=ApraÅ¡ymas diff --git a/core/src/main/resources/lib/hudson/buildHealth_pt_BR.properties b/core/src/main/resources/lib/hudson/buildHealth_pt_BR.properties index 4327d8a55863..3a0efaa24a85 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=Descri\u00E7\u00E3o +Description=Descrição diff --git a/core/src/main/resources/lib/hudson/buildHealth_pt_PT.properties b/core/src/main/resources/lib/hudson/buildHealth_pt_PT.properties index a4439b655fb1..6276b6c24d38 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_pt_PT.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_pt_PT.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=Descri\u00E7\u00E3o +Description=Descrição diff --git a/core/src/main/resources/lib/hudson/buildHealth_ru.properties b/core/src/main/resources/lib/hudson/buildHealth_ru.properties index 3f37f58d3676..ab242ac3eeb3 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_ru.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435. +Description=ОпиÑание. diff --git a/core/src/main/resources/lib/hudson/buildHealth_sr.properties b/core/src/main/resources/lib/hudson/buildHealth_sr.properties index c55807b8b0ec..b1b3dc51d584 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_sr.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Description=\u041E\u043F\u0438\u0441 +Description=ÐžÐ¿Ð¸Ñ diff --git a/core/src/main/resources/lib/hudson/buildHealth_tr.properties b/core/src/main/resources/lib/hudson/buildHealth_tr.properties index dc1972cd9eb8..6c3bd944aa97 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_tr.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=Tan\u0131m +Description=Tanım diff --git a/core/src/main/resources/lib/hudson/buildHealth_uk.properties b/core/src/main/resources/lib/hudson/buildHealth_uk.properties index cf0bdd20175f..5d727a799d40 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_uk.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=\u041E\u043F\u0438\u0441 +Description=ÐžÐ¿Ð¸Ñ diff --git a/core/src/main/resources/lib/hudson/buildHealth_zh_TW.properties b/core/src/main/resources/lib/hudson/buildHealth_zh_TW.properties index 19d0abd81b9a..00325482b452 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_zh_TW.properties @@ -21,4 +21,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=\u8aaa\u660e +Description=說明 diff --git a/core/src/main/resources/lib/hudson/buildLink.jelly b/core/src/main/resources/lib/hudson/buildLink.jelly index 61bcf8ff481b..18ccfc1ec675 100644 --- a/core/src/main/resources/lib/hudson/buildLink.jelly +++ b/core/src/main/resources/lib/hudson/buildLink.jelly @@ -52,7 +52,7 @@ THE SOFTWARE.
- ${jobName_}#${number} + ${jobName_}#${number} diff --git a/core/src/main/resources/lib/hudson/buildListTable_bg.properties b/core/src/main/resources/lib/hudson/buildListTable_bg.properties index b55179e6f1b7..6dcd8eaf24fe 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_bg.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_bg.properties @@ -21,13 +21,13 @@ # THE SOFTWARE. Build=\ - \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + Изграждане Click\ to\ center\ timeline\ on\ event=\ - \u041c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430 \u0441\u0435 \u043f\u0440\u0438\u0434\u0432\u0438\u0436\u0438\u0442\u0435 \u043a\u044a\u043c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d \u043c\u043e\u043c\u0435\u043d\u0442 \u043a\u0430\u0442\u043e \u0433\u043e \u043d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 \u0441 \u0431\u0443\u0442\u043e\u043d\u0430 \u043d\u0430\ - \u043c\u0438\u0448\u043a\u0430\u0442\u0430 + Можете да Ñе придвижите към определен момент като го натиÑнете Ñ Ð±ÑƒÑ‚Ð¾Ð½Ð° на\ + мишката Console\ output=\ - \u0418\u0437\u0445\u043e\u0434 \u043d\u0430 \u043a\u043e\u043d\u0437\u043e\u043b\u0430\u0442\u0430 + Изход на конзолата Status=\ - \u0421\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435 + СъÑтоÑние Time\ Since=\ - \u0412\u0440\u0435\u043c\u0435 \u043e\u0442 + Време от diff --git a/core/src/main/resources/lib/hudson/buildListTable_cs.properties b/core/src/main/resources/lib/hudson/buildListTable_cs.properties index 822100a0b8a6..4277169e6667 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_cs.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_cs.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Sestaven\u00ED -Click\ to\ center\ timeline\ on\ event=Klik pro vyst\u0159ed\u011Bn\u00ED \u010Dasov\u00E9 osy na ud\u00E1lost. -Console\ output=V\u00FDstup (konzole) +Build=Sestavení +Click\ to\ center\ timeline\ on\ event=Klik pro vystÅ™edÄ›ní Äasové osy na událost. +Console\ output=Výstup (konzole) Status=Stav -Time\ Since=Dokon\u010Deno p\u0159ed +Time\ Since=DokonÄeno pÅ™ed diff --git a/core/src/main/resources/lib/hudson/buildListTable_el.properties b/core/src/main/resources/lib/hudson/buildListTable_el.properties index 5587cbb85486..0919621b175d 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_el.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_el.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Build=Build -Console\ output=\u0391\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u039A\u03BF\u03BD\u03C3\u03CC\u03BB\u03B1\u03C2 -Status=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 -Time\ Since=\u03A0\u03C1\u03B9\u03BD \u03B1\u03C0\u03CC +Console\ output=ΑναφοÏά Κονσόλας +Status=Κατάσταση +Time\ Since=ΠÏιν από diff --git a/core/src/main/resources/lib/hudson/buildListTable_es.properties b/core/src/main/resources/lib/hudson/buildListTable_es.properties index 53fba8871b2d..e590d4d98b90 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_es.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_es.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Ejecución +Build=Ejecución Time\ Since=Tiempo desde Status=Estado Console\ output=Salida de consola -Click\ to\ center\ timeline\ on\ event=Click para centrar la linea cronol\u00F3gica en el evento +Click\ to\ center\ timeline\ on\ event=Click para centrar la linea cronológica en el evento diff --git a/core/src/main/resources/lib/hudson/buildListTable_et.properties b/core/src/main/resources/lib/hudson/buildListTable_et.properties index ccba4794d8c0..3c2afc597628 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_et.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_et.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -Build=J\u00E4rk -Click\ to\ center\ timeline\ on\ event=Kl\u00F5psa s\u00FCndmusel selleks et see ajajoonel keskele tuua -Console\ output=Konsooli v\u00E4ljund +Build=Järk +Click\ to\ center\ timeline\ on\ event=Klõpsa sündmusel selleks et see ajajoonel keskele tuua +Console\ output=Konsooli väljund Status=Staatus -Time\ Since=M\u00F6\u00F6dunud Aeg +Time\ Since=Möödunud Aeg diff --git a/core/src/main/resources/lib/hudson/buildListTable_fi.properties b/core/src/main/resources/lib/hudson/buildListTable_fi.properties index f79f70381bd7..225405883f03 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_fi.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_fi.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=K\u00E4\u00E4nn\u00F6s -Click\ to\ center\ timeline\ on\ event=Klikkaa keskitt\u00E4\u00E4ksesi tapahtuma aikajanalle +Build=Käännös +Click\ to\ center\ timeline\ on\ event=Klikkaa keskittääksesi tapahtuma aikajanalle Console\ output=Konsolituloste Status=Status Time\ Since=Aika alkaen diff --git a/core/src/main/resources/lib/hudson/buildListTable_fr.properties b/core/src/main/resources/lib/hudson/buildListTable_fr.properties index 6144fb032d0e..a7728fe246ac 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_fr.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_fr.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Time\ Since=Temps \u00E9coul\u00E9 -Status=\u00C9tat +Time\ Since=Temps écoulé +Status=État Build=Construction -Click\ to\ center\ timeline\ on\ event=Cliquer pour centrer la frise sur cet \u00E9v\u00E8nement +Click\ to\ center\ timeline\ on\ event=Cliquer pour centrer la frise sur cet évènement Console\ output=Sortie console diff --git a/core/src/main/resources/lib/hudson/buildListTable_he.properties b/core/src/main/resources/lib/hudson/buildListTable_he.properties index 618217b3654d..203088aa0504 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_he.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_he.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -Build=\u05D1\u05E0\u05D9\u05D4 -Click\ to\ center\ timeline\ on\ event=\u05DC\u05D7\u05E5 \u05DC\u05DE\u05E8\u05DB\u05D5\u05D6 \u05DC\u05D5\u05D7 \u05D4\u05D6\u05DE\u05DF \u05E2\u05DC \u05D0\u05D9\u05E8\u05D5\u05E2 -Console\ output=\u05E4\u05DC\u05D8 \u05DE\u05E1\u05D5\u05E3 -Status=\u05E1\u05D8\u05D8\u05D5\u05E1 -Time\ Since=\u05D6\u05DE\u05DF \u05E9\u05E2\u05D1\u05E8 +Build=בניה +Click\ to\ center\ timeline\ on\ event=לחץ למרכוז לוח הזמן על ×ירוע +Console\ output=פלט מסוף +Status=סטטוס +Time\ Since=זמן שעבר diff --git a/core/src/main/resources/lib/hudson/buildListTable_hu.properties b/core/src/main/resources/lib/hudson/buildListTable_hu.properties index 5bdc2d65bbcc..04062c3a2153 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_hu.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_hu.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=\u00C9p\u00EDt\u00E9s -Click\ to\ center\ timeline\ on\ event=Klikkel\u00E9sre az id\u0151vonal k\u00F6z\u00E9ppontja az esem\u00E9ny lesz +Build=Építés +Click\ to\ center\ timeline\ on\ event=Klikkelésre az idÅ‘vonal középpontja az esemény lesz Console\ output=Konzol kimenet -Status=St\u00E1tusz -Time\ Since=Eltelt id\u0151 +Status=Státusz +Time\ Since=Eltelt idÅ‘ diff --git a/core/src/main/resources/lib/hudson/buildListTable_it.properties b/core/src/main/resources/lib/hudson/buildListTable_it.properties index 3c4af37447f1..be74abcd42f3 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_it.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/buildListTable_ja.properties b/core/src/main/resources/lib/hudson/buildListTable_ja.properties index 9f0f760505d9..a638670170ae 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_ja.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_ja.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=\u30d3\u30eb\u30c9 -Time\ Since=\u6642\u671f -Status=\u72b6\u614b -Console\ output=\u30b3\u30f3\u30bd\u30fc\u30eb\u51fa\u529b -Click\ to\ center\ timeline\ on\ event=\u30af\u30ea\u30c3\u30af\u3067\u3001\u3053\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u30bf\u30a4\u30e0\u30e9\u30a4\u30f3\u306e\u4e2d\u5fc3\u306b +Build=ビルド +Time\ Since=時期 +Status=状態 +Console\ output=コンソール出力 +Click\ to\ center\ timeline\ on\ event=クリックã§ã€ã“ã®ã‚¤ãƒ™ãƒ³ãƒˆã‚’タイムラインã®ä¸­å¿ƒã« diff --git a/core/src/main/resources/lib/hudson/buildListTable_ko.properties b/core/src/main/resources/lib/hudson/buildListTable_ko.properties index a2c51011b4f5..9759bf280da2 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_ko.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_ko.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=\uBE4C\uB4DC -Click\ to\ center\ timeline\ on\ event=\uD074\uB9AD \uC2DC \uD574\uB2F9 \uC774\uBCA4\uD2B8\uC758 \uD0C0\uC784\uB77C\uC778\uC744 \uBCF4\uC5EC\uC90D\uB2C8\uB2E4. -Console\ output=\uCF58\uC194 \uCD9C\uB825 -Time\ Since=\uACBD\uACFC\uC2DC\uAC04 -Status=\uC0C1\uD0DC +Build=빌드 +Click\ to\ center\ timeline\ on\ event=í´ë¦­ ì‹œ 해당 ì´ë²¤íŠ¸ì˜ 타임ë¼ì¸ì„ ë³´ì—¬ì¤ë‹ˆë‹¤. +Console\ output=콘솔 출력 +Time\ Since=경과시간 +Status=ìƒíƒœ diff --git a/core/src/main/resources/lib/hudson/buildListTable_lt.properties b/core/src/main/resources/lib/hudson/buildListTable_lt.properties index c5543640293d..24096328eae2 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_lt.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_lt.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors Build=Surinkimas -Console\ output=Konsol\u0117s i\u0161vestis +Console\ output=KonsolÄ—s iÅ¡vestis Status=Statusas Time\ Since=Laiko nuo diff --git a/core/src/main/resources/lib/hudson/buildListTable_lv.properties b/core/src/main/resources/lib/hudson/buildListTable_lv.properties index 69ff60cc0dd3..3d5675b6572e 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_lv.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_lv.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=B\u016Bv\u0113jums -Click\ to\ center\ timeline\ on\ event=Nokliks\u0137ini, lai centr\u0113tu laika nogriezni uz notikuma +Build=BÅ«vÄ“jums +Click\ to\ center\ timeline\ on\ event=NokliksÄ·ini, lai centrÄ“tu laika nogriezni uz notikuma Console\ output=Konsoles izvaddati -Status=St\u0101voklis -Time\ Since=Laiks kop\u0161 +Status=StÄvoklis +Time\ Since=Laiks kopÅ¡ diff --git a/core/src/main/resources/lib/hudson/buildListTable_pl.properties b/core/src/main/resources/lib/hudson/buildListTable_pl.properties index dc0a5f6c9725..3216cb076fc6 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_pl.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_pl.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Build=Zadanie -Click\ to\ center\ timeline\ on\ event=Kliknij aby wycentrowa\u0107 o\u015B czasu na zdarzeniu +Click\ to\ center\ timeline\ on\ event=Kliknij aby wycentrować oÅ› czasu na zdarzeniu Console\ output=Logi konsoli Time\ Since=Data Status=Status diff --git a/core/src/main/resources/lib/hudson/buildListTable_pt_BR.properties b/core/src/main/resources/lib/hudson/buildListTable_pt_BR.properties index 6a3925f88215..b99113db5cd9 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_pt_BR.properties @@ -24,5 +24,5 @@ Time\ Since=Tempo desde Status=Estado Build=Construir Click\ to\ center\ timeline\ on\ event=Clique para centralizar a linha do tempo no evento -Console\ output=Sa\u00EDda do console +Console\ output=Saída do console S=S diff --git a/core/src/main/resources/lib/hudson/buildListTable_pt_PT.properties b/core/src/main/resources/lib/hudson/buildListTable_pt_PT.properties index 85464dc4ce65..7adbb99f11cb 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_pt_PT.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_pt_PT.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Build=Compila\u00E7\u00E3o +Build=Compilação Click\ to\ center\ timeline\ on\ event=Clicke para centrar a timeline neste evento Console\ output=Output da consola Status=Estado diff --git a/core/src/main/resources/lib/hudson/buildListTable_ru.properties b/core/src/main/resources/lib/hudson/buildListTable_ru.properties index b5e8809ec985..825b2d16f09b 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_ru.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_ru.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=\u0421\u0431\u043e\u0440\u043a\u0430 -Click\ to\ center\ timeline\ on\ event=\u041D\u0430\u0436\u043C\u0438\u0442\u0435 \u0434\u043B\u044F \u0446\u0435\u043D\u0442\u0440\u043E\u0432\u043A\u0438 \u043D\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u0438 -Console\ output=\u041A\u043E\u043D\u0441\u043E\u043B\u044C\u043D\u044B\u0439 \u0432\u044B\u0432\u043E\u0434 -Time\ Since=\u041F\u0440\u043E\u0448\u043B\u043E -Status=\u0421\u0442\u0430\u0442\u0443\u0441 +Build=Сборка +Click\ to\ center\ timeline\ on\ event=Ðажмите Ð´Ð»Ñ Ñ†ÐµÐ½Ñ‚Ñ€Ð¾Ð²ÐºÐ¸ на Ñобытии +Console\ output=КонÑольный вывод +Time\ Since=Прошло +Status=Ð¡Ñ‚Ð°Ñ‚ÑƒÑ diff --git a/core/src/main/resources/lib/hudson/buildListTable_sk.properties b/core/src/main/resources/lib/hudson/buildListTable_sk.properties index 5a093658b73f..96d73522c37f 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_sk.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_sk.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors Build=Zostavenie -Click\ to\ center\ timeline\ on\ event=Vycentruj \u010Dasov\u00FA os na zostavenie -Console\ output=V\u00FDstup konzoly +Click\ to\ center\ timeline\ on\ event=Vycentruj Äasovú os na zostavenie +Console\ output=Výstup konzoly Status=Stav -Time\ Since=\u010Cas od zostavenia +Time\ Since=ÄŒas od zostavenia diff --git a/core/src/main/resources/lib/hudson/buildListTable_sr.properties b/core/src/main/resources/lib/hudson/buildListTable_sr.properties index afee06dcd514..80b91e07b8ab 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_sr.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_sr.properties @@ -1,7 +1,7 @@ # This file is under the MIT License by authors -Click\ to\ center\ timeline\ on\ event=\u041A\u043B\u0438\u043A\u043D\u0438\u0442\u0435 \u0434\u0430 \u0446\u0435\u043D\u0442\u0440\u0438\u0440\u0430\u0442\u0435 \u0432\u0440\u0435\u043C\u0435\u043D\u0441\u043A\u0443 \u0442\u0440\u0430\u043A\u0443 \u043D\u0430 \u043E\u0434\u0440\u0435\u0452\u0435\u043D\u0438 \u0434\u043E\u0433\u0430\u0452\u0430\u0458. -Console\ output=\u0418\u0441\u0445\u043E\u0434 \u0438\u0437 \u043A\u043E\u043D\u0437\u043E\u043B\u0435 -Build=\u0418\u0437\u0433\u0440\u0430\u0434\u045A\u0430 -Time\ Since=\u0412\u0440\u0435\u043C\u0435 \u043E\u0434 -Status=\u0421\u0442\u0430\u045A\u0435 +Click\ to\ center\ timeline\ on\ event=Кликните да центрирате временÑку траку на одређени догађај. +Console\ output=ИÑход из конзоле +Build=Изградња +Time\ Since=Време од +Status=Стање diff --git a/core/src/main/resources/lib/hudson/buildListTable_sv_SE.properties b/core/src/main/resources/lib/hudson/buildListTable_sv_SE.properties index 2e46e9f75d92..a9c4c983c84c 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_sv_SE.properties @@ -22,6 +22,6 @@ Build=Bygge Time\ Since=Tid sedan -Click\ to\ center\ timeline\ on\ event=Klicka f\u00F6r att centrera tidslinjen p\u00E5 h\u00E4ndelsen +Click\ to\ center\ timeline\ on\ event=Klicka för att centrera tidslinjen pÃ¥ händelsen Console\ output=Realtidslog Status=Status diff --git a/core/src/main/resources/lib/hudson/buildListTable_tr.properties b/core/src/main/resources/lib/hudson/buildListTable_tr.properties index b5783d2814c8..d062bc3d84d4 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_tr.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_tr.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Time\ Since=Tarih -Console\ output=Komut sat\u0131r\u0131 \u00E7\u0131kt\u0131s\u0131 +Console\ output=Komut satırı çıktısı Status=Durum -Build=Yap\u0131land\u0131rma +Build=Yapılandırma diff --git a/core/src/main/resources/lib/hudson/buildListTable_uk.properties b/core/src/main/resources/lib/hudson/buildListTable_uk.properties index c9834a22a711..97af42d4832f 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_uk.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_uk.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=\u0411\u0456\u043B\u0434 -Click\ to\ center\ timeline\ on\ event=\u0414\u043B\u044F \u0446\u0435\u043D\u0442\u0440\u0443\u0432\u0430\u043D\u043D\u044F \u043B\u0456\u043D\u0456\u0439\u043A\u0438 \u043A\u043B\u0430\u0446\u043D\u0456\u0442\u044C \u043D\u0430 \u043F\u043E\u0434\u0456\u0457 -Console\ output=\u0412\u0438\u0432\u0456\u0434 \u043A\u043E\u043D\u0441\u043E\u043B\u0456 -Status=\u0421\u0442\u0430\u0442\u0443\u0441 -Time\ Since=\u041F\u0440\u043E\u0439\u0448\u043B\u043E \u0447\u0430\u0441\u0443 +Build=Білд +Click\ to\ center\ timeline\ on\ event=Ð”Ð»Ñ Ñ†ÐµÐ½Ñ‚Ñ€ÑƒÐ²Ð°Ð½Ð½Ñ Ð»Ñ–Ð½Ñ–Ð¹ÐºÐ¸ клацніть на події +Console\ output=Вивід конÑолі +Status=Ð¡Ñ‚Ð°Ñ‚ÑƒÑ +Time\ Since=Пройшло чаÑу diff --git a/core/src/main/resources/lib/hudson/buildListTable_zh_TW.properties b/core/src/main/resources/lib/hudson/buildListTable_zh_TW.properties index ba43e929c7a8..c0a838900bfa 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_zh_TW.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=\u5efa\u7f6e -Time\ Since=\u8ddd\u958b\u59cb\u6642\u9593 -Status=\u72c0\u614b -Click\ to\ center\ timeline\ on\ event=\u6309\u4e00\u4e0b\u8b93\u4e8b\u4ef6\u986f\u793a\u5728\u6642\u9593\u8ef8\u4e2d\u592e -Console\ output=\u4e3b\u63a7\u53f0\u8f38\u51fa +Build=建置 +Time\ Since=è·é–‹å§‹æ™‚é–“ +Status=狀態 +Click\ to\ center\ timeline\ on\ event=按一下讓事件顯示在時間軸中央 +Console\ output=主控å°è¼¸å‡º diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_bg.properties b/core/src/main/resources/lib/hudson/buildProgressBar_bg.properties index 4a96c80da8b2..7c32cd9eb7e7 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_bg.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. text=\ - \u041d\u0430\u0447\u0430\u043b\u043e \u043f\u0440\u0435\u0434\u0438 {0}
\u041e\u0441\u0442\u0430\u0432\u0430\u0449\u043e \u0432\u0440\u0435\u043c\u0435: {1} + Ðачало преди {0}
ОÑтаващо време: {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_cs.properties b/core/src/main/resources/lib/hudson/buildProgressBar_cs.properties index 7533bf3ba118..5d0f9f6348bb 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_cs.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Za\u010Dalo p\u0159ed {0}
P\u0159edpokl\u00E1d\u00E1n\u00FD zb\u00FDvaj\u00EDc\u00ED \u010Das: {1} +text=ZaÄalo pÅ™ed {0}
PÅ™edpokládáný zbývající Äas: {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_de.properties b/core/src/main/resources/lib/hudson/buildProgressBar_de.properties index 268a3a8d99c7..b892d9503052 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_de.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Gestartet vor {0}
Ungef\u00E4hr verbleibende Zeit: {1} +text=Gestartet vor {0}
Ungefähr verbleibende Zeit: {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_el.properties b/core/src/main/resources/lib/hudson/buildProgressBar_el.properties index f318d7879d78..8960c7257449 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_el.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_el.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=\u0386\u03C1\u03C7\u03B9\u03C3\u03B5 \u03C0\u03C1\u03B9\u03BD \u03B1\u03C0\u03CC {0}
\u0395\u03BA\u03C4\u03B9\u03BC\u03CE\u03BC\u03B5\u03BD\u03BF\u03C2 \u03C7\u03C1\u03CC\u03BD\u03BF\u03C2: {1} +text=ΆÏχισε Ï€Ïιν από {0}
Εκτιμώμενος χÏόνος: {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_es.properties b/core/src/main/resources/lib/hudson/buildProgressBar_es.properties index e20b39ccf0f7..d73107b5e146 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_es.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Comenz\u00F3 hace {0}
Tiempo restante estimado: {1} +text=Comenzó hace {0}
Tiempo restante estimado: {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_et.properties b/core/src/main/resources/lib/hudson/buildProgressBar_et.properties index e7910ad3f051..e4562ec799e3 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_et.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_et.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -text=Alustas {0} tagasi
Arvatavasti l\u00F5petab kell {1} +text=Alustas {0} tagasi
Arvatavasti lõpetab kell {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_fr.properties b/core/src/main/resources/lib/hudson/buildProgressBar_fr.properties index 37e5f76d225c..9b2e0020badf 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_fr.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=D\u00E9marr\u00E9 il y a {0}
Temps restant estim\u00E9\u00A0: {1} +text=Démarré il y a {0}
Temps restant estimé : {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_he.properties b/core/src/main/resources/lib/hudson/buildProgressBar_he.properties index 6902fdc0a311..244a58b2a86f 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_he.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_he.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=\u05D4\u05EA\u05D7\u05D9\u05DC \u05DC\u05E4\u05E0\u05D9 {0}
\u05D6\u05DE\u05DF \u05DE\u05D5\u05E2\u05E8\u05DA \u05DC\u05E1\u05D9\u05D5\u05DD: {1} +text=התחיל לפני {0}
זמן מוערך לסיו×: {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_hu.properties b/core/src/main/resources/lib/hudson/buildProgressBar_hu.properties index 93c6781d9142..667355a9082a 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_hu.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text={0} \u00F3ta fut.
K\u00F6r\u00FClbel\u00FCl {1} van h\u00E1tra. +text={0} óta fut.
Körülbelül {1} van hátra. diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_it.properties b/core/src/main/resources/lib/hudson/buildProgressBar_it.properties index e6c9d9f246dd..71c9f95eee49 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_it.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_ja.properties b/core/src/main/resources/lib/hudson/buildProgressBar_ja.properties index 54ca62ad758e..005ff3ce7314 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_ja.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=\u958B\u59CB\u6642\u9593: {0}
\u4E88\u60F3\u6B8B\u308A\u6642\u9593: {1} +text=開始時間: {0}
予想残り時間: {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_ko.properties b/core/src/main/resources/lib/hudson/buildProgressBar_ko.properties index 134c24582d65..57b3efb2627e 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_ko.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text="{0} \uC804\uC5D0 \uC2DC\uC791
\uC608\uC0C1 \uC794\uC5EC \uC2DC\uAC04: {1}" +text="{0} ì „ì— ì‹œìž‘
ì˜ˆìƒ ìž”ì—¬ 시간: {1}" diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_lt.properties b/core/src/main/resources/lib/hudson/buildProgressBar_lt.properties index 57281b2c7124..71923e22a813 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_lt.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_lt.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Prad\u0117ta prie\u0161 {0}
Numatoma, kad liko: {1} +text=Pradėta prieš {0}
Numatoma, kad liko: {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_lv.properties b/core/src/main/resources/lib/hudson/buildProgressBar_lv.properties index 0837487eca60..ae687f204415 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_lv.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=S\u0101ka pirms {0}
Palicis aptuveni: {1} +text=SÄka pirms {0}
Palicis aptuveni: {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_nb_NO.properties b/core/src/main/resources/lib/hudson/buildProgressBar_nb_NO.properties index e86e353f4c36..4f290df312dd 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_nb_NO.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Startet for {0} siden
Ansl\u00E5tt gjenst\u00E5ende tid: {1} +text=Startet for {0} siden
Anslått gjenstående tid: {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_pl.properties b/core/src/main/resources/lib/hudson/buildProgressBar_pl.properties index 02ca1c30725e..e8fa04a17af4 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_pl.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Zacz\u0119to {0} ago
spodziewany czas do ko\u0144ca {1} +text=Zaczęto {0} ago
spodziewany czas do końca {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_pt_BR.properties b/core/src/main/resources/lib/hudson/buildProgressBar_pt_BR.properties index a44412357dcd..31773c0704c0 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Iniciado {0} atr\u00E1s
Tempo estimado restante: {1} +text=Iniciado {0} atrás
Tempo estimado restante: {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_pt_PT.properties b/core/src/main/resources/lib/hudson/buildProgressBar_pt_PT.properties index e35b51ca12b5..ccd4635ee3db 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_pt_PT.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_pt_PT.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Come\u00E7ou {0} atr\u00E1s
Tempo que falta (estimativa): {1} +text=Começou {0} atrás
Tempo que falta (estimativa): {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_ro.properties b/core/src/main/resources/lib/hudson/buildProgressBar_ro.properties index 46d44c508c6c..f9de9a4114f0 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_ro.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_ro.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=\u00CEnceput {0} in urma
Timp r\u0103mas estimat: {1} +text=ÃŽnceput {0} in urma
Timp rămas estimat: {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_ru.properties b/core/src/main/resources/lib/hudson/buildProgressBar_ru.properties index 3a5cef566912..48db34192769 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_ru.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=\u0417\u0430\u043f\u0443\u0449\u0435\u043d\u043e {0}
\u041f\u0440\u0438\u0431\u043b\u0438\u0437\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f: {1} +text=Запущено {0}
Приблизительное Ð²Ñ€ÐµÐ¼Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¸Ñ: {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_sk.properties b/core/src/main/resources/lib/hudson/buildProgressBar_sk.properties index c754fff7fff8..276494a2c086 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_sk.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_sk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Spusten\u00E9 pred {0}
Predpokladan\u00FD zost\u00E1vaj\u00FAci \u010Das: {1} +text=Spustené pred {0}
Predpokladaný zostávajúci Äas: {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_sl.properties b/core/src/main/resources/lib/hudson/buildProgressBar_sl.properties index bab5dd206e41..83dc1e3b3f4c 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_sl.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_sl.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -text=Startan pred {0}
Predviden preostali \u010Das: {1} +text=Startan pred {0}
Predviden preostali Äas: {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_sr.properties b/core/src/main/resources/lib/hudson/buildProgressBar_sr.properties index 6b7288eb4b2e..d7577b0f4bb9 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_sr.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -text=\u0417\u0430\u043F\u043E\u0447\u0435\u0442\u043E \u043F\u0440\u0435 {0}
\u041E\u0447\u0435\u043A\u0438\u0432\u0430\u043D\u043E \u043F\u0440\u0435\u043E\u0441\u0442\u0430\u043B\u043E \u0432\u0440\u0435\u043C\u0435: {1} +text=Започето пре {0}
Очекивано преоÑтало време: {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_sv_SE.properties b/core/src/main/resources/lib/hudson/buildProgressBar_sv_SE.properties index 6b581d70b157..d3f29fbb3c26 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Startade f\u00F6r {0} sedan
Ber\u00E4knad \u00E5terst\u00E5ende tid: {1} +text=Startade för {0} sedan
Beräknad återstående tid: {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_tr.properties b/core/src/main/resources/lib/hudson/buildProgressBar_tr.properties index 71e1f8ec2fa0..115f0c6d225c 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_tr.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text="{0} \u00F6nce ba\u015Flad\u0131
Kalan tahmini s\u00FCre: {1}" +text="{0} önce başladı
Kalan tahmini süre: {1}" diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_uk.properties b/core/src/main/resources/lib/hudson/buildProgressBar_uk.properties index 2ab0838f8c09..d4ba923ab160 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_uk.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=\u0420\u043E\u0437\u043F\u043E\u0447\u0430\u0442\u043E {0} \u0442\u043E\u043C\u0443 \u041B\u0438\u0448\u0438\u043B\u043E\u0441\u044F \u043F\u0440\u0438\u0431\u043B\u0438\u0437\u043D\u043E {1} +text=Розпочато {0} тому ЛишилоÑÑ Ð¿Ñ€Ð¸Ð±Ð»Ð¸Ð·Ð½Ð¾ {1} diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_zh_TW.properties b/core/src/main/resources/lib/hudson/buildProgressBar_zh_TW.properties index e09b3df59937..6e460654d1e0 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_zh_TW.properties @@ -21,4 +21,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text={0}\u524d\u958b\u59cb
\u9810\u8a08\u9084\u8981: {1} +text={0}å‰é–‹å§‹
é è¨ˆé‚„è¦: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_bg.properties b/core/src/main/resources/lib/hudson/editableDescription_bg.properties index 80fb8041a574..299b224c1079 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_bg.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. add\ description=\ - \u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 + ДобавÑне на опиÑание edit\ description=\ - \u041f\u0440\u043e\u043c\u044f\u043d\u0430 \u043d\u0430 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 + ПромÑна на опиÑание diff --git a/core/src/main/resources/lib/hudson/editableDescription_ca.properties b/core/src/main/resources/lib/hudson/editableDescription_ca.properties index 62f8fc3965d8..fdd55ff8a9f0 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_ca.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_ca.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=Afegeix una descripci\u00F3 -edit\ description=Editar descripci\u00F3 +add\ description=Afegeix una descripció +edit\ description=Editar descripció diff --git a/core/src/main/resources/lib/hudson/editableDescription_cs.properties b/core/src/main/resources/lib/hudson/editableDescription_cs.properties index a2c62546a5ef..46e7afcf1730 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_cs.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_cs.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=p\u0159idat popis +add\ description=pÅ™idat popis edit\ description=upravit popis diff --git a/core/src/main/resources/lib/hudson/editableDescription_da.properties b/core/src/main/resources/lib/hudson/editableDescription_da.properties index 1975928c33a6..c2983df11bd6 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_da.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_da.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=tilf\u00f8j beskrivelse -edit\ description=redig\u00E9r beskrivelse +add\ description=tilføj beskrivelse +edit\ description=redigér beskrivelse diff --git a/core/src/main/resources/lib/hudson/editableDescription_de.properties b/core/src/main/resources/lib/hudson/editableDescription_de.properties index 58353b2ccb0a..6ca7d9ce3723 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_de.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_de.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=Beschreibung hinzufügen +add\ description=Beschreibung hinzufügen edit\ description=Beschreibung bearbeiten diff --git a/core/src/main/resources/lib/hudson/editableDescription_el.properties b/core/src/main/resources/lib/hudson/editableDescription_el.properties index 2255f7ae5348..22fd763c45f2 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_el.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_el.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE\u03C2 -edit\ description=\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE\u03C2 +add\ description=ΠÏοσθήκη πεÏιγÏαφής +edit\ description=αλλαγή πεÏιγÏαφής diff --git a/core/src/main/resources/lib/hudson/editableDescription_es.properties b/core/src/main/resources/lib/hudson/editableDescription_es.properties index c1878306e4f7..0f1f2efddde1 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_es.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=a\u00F1adir descripci\u00F3n -edit\ description=editar descripción +add\ description=añadir descripción +edit\ description=editar descripción diff --git a/core/src/main/resources/lib/hudson/editableDescription_es_AR.properties b/core/src/main/resources/lib/hudson/editableDescription_es_AR.properties index 121839d538f3..35ff7c853946 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_es_AR.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_es_AR.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -add\ description=a\u00F1adir descripci\u00F3n -edit\ description=Editar descripci\u00F3n +add\ description=añadir descripción +edit\ description=Editar descripción diff --git a/core/src/main/resources/lib/hudson/editableDescription_fi.properties b/core/src/main/resources/lib/hudson/editableDescription_fi.properties index e07d681c9794..a055c9eef78a 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_fi.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_fi.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=Lis\u00E4\u00E4 kuvaus +add\ description=Lisää kuvaus edit\ description=Muokkaa kuvausta diff --git a/core/src/main/resources/lib/hudson/editableDescription_he.properties b/core/src/main/resources/lib/hudson/editableDescription_he.properties index 4a8ae2e647eb..2d12714ca4fd 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_he.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_he.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=\u05D4\u05D5\u05E1\u05E3 \u05EA\u05D9\u05D0\u05D5\u05E8 -edit\ description=\u05E2\u05E8\u05D5\u05DA \u05EA\u05D9\u05D0\u05D5\u05E8 +add\ description=הוסף תי×ור +edit\ description=ערוך תי×ור diff --git a/core/src/main/resources/lib/hudson/editableDescription_hu.properties b/core/src/main/resources/lib/hudson/editableDescription_hu.properties index ed35ceb848be..addda87395bc 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_hu.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_hu.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=le\u00EDr\u00E1s hozz\u00E1ad\u00E1sa -edit\ description=le\u00EDr\u00E1s szerkeszt\u00E9se +add\ description=leírás hozzáadása +edit\ description=leírás szerkesztése diff --git a/core/src/main/resources/lib/hudson/editableDescription_it.properties b/core/src/main/resources/lib/hudson/editableDescription_it.properties index 33d26f5342dd..f6fcd30a437a 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_it.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/editableDescription_ja.properties b/core/src/main/resources/lib/hudson/editableDescription_ja.properties index fd3ccd5dbf1c..21ebc16620cf 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_ja.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=\u8aac\u660e\u3092\u8a18\u5165 -edit\ description=\u8AAC\u660E\u306E\u7DE8\u96C6 +add\ description=説明を記入 +edit\ description=説明ã®ç·¨é›† diff --git a/core/src/main/resources/lib/hudson/editableDescription_ko.properties b/core/src/main/resources/lib/hudson/editableDescription_ko.properties index 270f4ce98539..aad7518157a8 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_ko.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_ko.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=\uC0C1\uC138 \uB0B4\uC6A9 \uC785\uB825 -edit\ description=\uB0B4\uC6A9 \uC218\uC815 +add\ description=ìƒì„¸ ë‚´ìš© ìž…ë ¥ +edit\ description=ë‚´ìš© 수정 diff --git a/core/src/main/resources/lib/hudson/editableDescription_lt.properties b/core/src/main/resources/lib/hudson/editableDescription_lt.properties index 725ae79ef43a..1434da751e1a 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_lt.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_lt.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=prid\u0117ti apra\u0161ym\u0105 -edit\ description=keisti apra\u0161ym\u0105 +add\ description=pridÄ—ti apraÅ¡ymÄ… +edit\ description=keisti apraÅ¡ymÄ… diff --git a/core/src/main/resources/lib/hudson/editableDescription_lv.properties b/core/src/main/resources/lib/hudson/editableDescription_lv.properties index d48f05b7234d..a22398186f32 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_lv.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_lv.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. add\ description=Pievienot aprakstu -edit\ description=redi\u0123\u0113t aprakstu +edit\ description=rediģēt aprakstu diff --git a/core/src/main/resources/lib/hudson/editableDescription_pt_BR.properties b/core/src/main/resources/lib/hudson/editableDescription_pt_BR.properties index 8d538bb2e91d..61cc550903af 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=Adicionar descri\u00E7\u00E3o -edit\ description=editar descri\u00e7\u00e3o +add\ description=Adicionar descrição +edit\ description=editar descrição diff --git a/core/src/main/resources/lib/hudson/editableDescription_pt_PT.properties b/core/src/main/resources/lib/hudson/editableDescription_pt_PT.properties index cbd4644572d4..f7f8e5eec1e0 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_pt_PT.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_pt_PT.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=acrescentar descri\u00E7\u00E3o -edit\ description=editar a descri\u00E7\u00E3o +add\ description=acrescentar descrição +edit\ description=editar a descrição diff --git a/core/src/main/resources/lib/hudson/editableDescription_ro.properties b/core/src/main/resources/lib/hudson/editableDescription_ro.properties index 0d4f4def1c90..676e7d6bbecc 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_ro.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_ro.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=adaug\u0103 descriere +add\ description=adaugă descriere edit\ description=schimba descriere diff --git a/core/src/main/resources/lib/hudson/editableDescription_ru.properties b/core/src/main/resources/lib/hudson/editableDescription_ru.properties index ae13a45b0892..a990691ecf08 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_ru.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=\u0434\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 -edit\ description=\u0438\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u043E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 +add\ description=добавить опиÑание +edit\ description=изменить опиÑание diff --git a/core/src/main/resources/lib/hudson/editableDescription_sk.properties b/core/src/main/resources/lib/hudson/editableDescription_sk.properties index 9f467cfd44f6..4b299209e3b4 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_sk.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_sk.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=prida\u0165 popis -edit\ description=upravi\u0165 popis +add\ description=pridaÅ¥ popis +edit\ description=upraviÅ¥ popis diff --git a/core/src/main/resources/lib/hudson/editableDescription_sr.properties b/core/src/main/resources/lib/hudson/editableDescription_sr.properties index 75a9a5080e84..28e95d79edc2 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_sr.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -add\ description=\u0434\u043E\u0434\u0430\u0458 \u043E\u043F\u0438\u0441 -edit\ description=\u0443\u0440\u0435\u0434\u0438 \u043E\u043F\u0438\u0441 +add\ description=додај Ð¾Ð¿Ð¸Ñ +edit\ description=уреди Ð¾Ð¿Ð¸Ñ diff --git a/core/src/main/resources/lib/hudson/editableDescription_sv_SE.properties b/core/src/main/resources/lib/hudson/editableDescription_sv_SE.properties index 858e34897281..d4910bc6c029 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_sv_SE.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=l\u00E4gg till beskrivning +add\ description=lägg till beskrivning edit\ description=redigera beskrivning diff --git a/core/src/main/resources/lib/hudson/editableDescription_tr.properties b/core/src/main/resources/lib/hudson/editableDescription_tr.properties index 83698abe4220..bb46e65adc99 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_tr.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=a\u00E7\u0131klama ekle -edit\ description=a\u00e7\u0131klamay\u0131 de\u011fi\u015ftir +add\ description=açıklama ekle +edit\ description=açıklamayı deÄŸiÅŸtir diff --git a/core/src/main/resources/lib/hudson/editableDescription_uk.properties b/core/src/main/resources/lib/hudson/editableDescription_uk.properties index f04cb77e6c46..15e4bd80037c 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_uk.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_uk.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=\u0434\u043E\u0434\u0430\u0442\u0438 \u043E\u043F\u0438\u0441 -edit\ description=\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043E\u043F\u0438\u0441 +add\ description=додати Ð¾Ð¿Ð¸Ñ +edit\ description=редагувати Ð¾Ð¿Ð¸Ñ diff --git a/core/src/main/resources/lib/hudson/editableDescription_zh_TW.properties b/core/src/main/resources/lib/hudson/editableDescription_zh_TW.properties index 3cc4592677ea..9743617d7600 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_zh_TW.properties @@ -19,5 +19,5 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=\u65b0\u589e\u8aaa\u660e -edit\ description=\u7de8\u8f2f\u8aaa\u660e +add\ description=新增說明 +edit\ description=編輯說明 diff --git a/core/src/main/resources/lib/hudson/executors_bg.properties b/core/src/main/resources/lib/hudson/executors_bg.properties index 07ed67592be2..0229f63f4229 100644 --- a/core/src/main/resources/lib/hudson/executors_bg.properties +++ b/core/src/main/resources/lib/hudson/executors_bg.properties @@ -21,26 +21,26 @@ # THE SOFTWARE. Build\ Executor\ Status=\ - \u0421\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043d\u0430 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u0430 + СъÑтоÑние на компютъра Idle=\ - \u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d + Свободен offline=\ - \u0418\u0437\u0432\u044a\u043d \u043b\u0438\u043d\u0438\u044f + Извън Ð»Ð¸Ð½Ð¸Ñ terminate\ this\ build=\ - \u0421\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e + Спиране на изграждането Pending=\ - \u041f\u0440\u0435\u0434\u0441\u0442\u043e\u0438 + ПредÑтои suspended=\ - \u041d\u0430 \u043f\u0430\u0443\u0437\u0430 + Ðа пауза Dead=\ - \u0423\u043c\u0440\u044f\u043b + УмрÑл Unknown\ Task=\ - \u041d\u0435\u043f\u043e\u0437\u043d\u0430\u0442\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 + Ðепозната задача Offline=\ - \u0418\u0437\u0432\u044a\u043d \u043b\u0438\u043d\u0438\u044f + Извън Ð»Ð¸Ð½Ð¸Ñ # master{0,choice,0#|1# + {0,number} computer ({1} of {2} executors)|1< + {0,number} computers ({1} of {2} executors)} Computers=\ - \u043e\u0441\u043d\u043e\u0432\u0435\u043d{0,choice,0#|1# + {0,number} \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440 ({1} \u043e\u0442 {2} \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u0438)|1< + {0,number} \u043a\u043e\u043c\u043f\u044e\u0442\u0440\u0438 ({1} \u043e\u0442 {2} \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u0438)} + оÑновен{0,choice,0#|1# + {0,number} компютър ({1} от {2} подчинени)|1< + {0,number} компютри ({1} от {2} подчинени)} # Are you sure you want to abort {0}? confirm=\ - \u0421\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u043f\u0440\u0435\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 {0}? + Сигурни ли Ñте, че иÑкате да преуÑтановите {0}? diff --git a/core/src/main/resources/lib/hudson/executors_ca.properties b/core/src/main/resources/lib/hudson/executors_ca.properties index 6b616699dd93..059d0e7fd2ee 100644 --- a/core/src/main/resources/lib/hudson/executors_ca.properties +++ b/core/src/main/resources/lib/hudson/executors_ca.properties @@ -25,5 +25,5 @@ Building=Construint Idle=Inactiu Master=Master Status=Estat -offline=Fora de l\u00EDnia +offline=Fora de línia terminate\ this\ build=finalitza aquest build diff --git a/core/src/main/resources/lib/hudson/executors_cs.properties b/core/src/main/resources/lib/hudson/executors_cs.properties index f4f4877df3ac..7631ecea66d6 100644 --- a/core/src/main/resources/lib/hudson/executors_cs.properties +++ b/core/src/main/resources/lib/hudson/executors_cs.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Stav build\u016F -Building=Prob\u00EDh\u00E1 sestaven\u00ED -Idle=Ne\u010Dinn\u00FD -Master=Hlavn\u00ED uzel +Build\ Executor\ Status=Stav buildů +Building=Probíhá sestavení +Idle=NeÄinný +Master=Hlavní uzel Status=Stav -Unknown\ Task=Nezn\u00E1m\u00FD \u00FAkol -offline=nedostupn\u00FD -terminate\ this\ build=ukon\u010Dit toto sestaven\u00ED +Unknown\ Task=Neznámý úkol +offline=nedostupný +terminate\ this\ build=ukonÄit toto sestavení diff --git a/core/src/main/resources/lib/hudson/executors_da.properties b/core/src/main/resources/lib/hudson/executors_da.properties index a111fed7c4ef..3107295abda7 100644 --- a/core/src/main/resources/lib/hudson/executors_da.properties +++ b/core/src/main/resources/lib/hudson/executors_da.properties @@ -22,7 +22,7 @@ terminate\ this\ build=annuller dette byg Building=Bygger -Dead=D\u00f8dt +Dead=Dødt suspended=suspenderet Offline=Offline Status=Status diff --git a/core/src/main/resources/lib/hudson/executors_de.properties b/core/src/main/resources/lib/hudson/executors_de.properties index a4f0f4de84b6..2e501efc27d5 100644 --- a/core/src/main/resources/lib/hudson/executors_de.properties +++ b/core/src/main/resources/lib/hudson/executors_de.properties @@ -29,4 +29,4 @@ Offline=Offline Unknown\ Task=Unbekannter Task Pending=Wartend Computers=Master{0,choice,0#|1# + {0,number} Agent ({1} von {2} Build-Prozessoren)|1< + {0,number} Agenten ({1} von {2} Build-Prozessoren)} -confirm=M\u00F6chten Sie {0} wirklich abbrechen? +confirm=Möchten Sie {0} wirklich abbrechen? diff --git a/core/src/main/resources/lib/hudson/executors_el.properties b/core/src/main/resources/lib/hudson/executors_el.properties index d9fbd1a557b1..0887e75412f8 100644 --- a/core/src/main/resources/lib/hudson/executors_el.properties +++ b/core/src/main/resources/lib/hudson/executors_el.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7\u03C2 \u03B4\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03B9\u03CE\u03BD -Building=\u03A7\u03C4\u03AF\u03B6\u03C9 -Idle=\u0391\u03BD\u03B5\u03BD\u03B5\u03C1\u03B3\u03CC -Status=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 -terminate\ this\ build=\u03A3\u03C4\u03B1\u03BC\u03AC\u03C4\u03B7\u03C3\u03B5 \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03C7\u03C4\u03AF\u03C3\u03B9\u03BC\u03BF +Build\ Executor\ Status=Κατάσταση εκτέλεσης διεÏγασιών +Building=Χτίζω +Idle=ΑνενεÏγό +Status=Κατάσταση +terminate\ this\ build=Σταμάτησε αυτό το χτίσιμο diff --git a/core/src/main/resources/lib/hudson/executors_es.properties b/core/src/main/resources/lib/hudson/executors_es.properties index 80ffe160faa1..4cb5064f1cd5 100644 --- a/core/src/main/resources/lib/hudson/executors_es.properties +++ b/core/src/main/resources/lib/hudson/executors_es.properties @@ -26,9 +26,9 @@ suspended=suspendido Dead=Colgado Offline=Fuera de linea Idle=Inactivo -Building=Ejecutándose +Building=Ejecutándose Unknown\ Task=Tarea desconocida -terminate\ this\ build=Terminar esta ejecuci\u00F3n +terminate\ this\ build=Terminar esta ejecución Build\ Executor\ Status=Estado del ejecutor de construcciones Status=Estado Master=Principal diff --git a/core/src/main/resources/lib/hudson/executors_et.properties b/core/src/main/resources/lib/hudson/executors_et.properties index 0285e8487989..25b78256e313 100644 --- a/core/src/main/resources/lib/hudson/executors_et.properties +++ b/core/src/main/resources/lib/hudson/executors_et.properties @@ -1,9 +1,9 @@ # This file is under the MIT License by authors -Build\ Executor\ Status=Ehituste k\u00E4ivitaja olek +Build\ Executor\ Status=Ehituste käivitaja olek Building=Ehitab -Idle=J\u00F5ude -Master=\u00DClem +Idle=Jõude +Master=Ãœlem Status=Olek offline=offlain terminate\ this\ build=katkesta see ehitamine diff --git a/core/src/main/resources/lib/hudson/executors_fi.properties b/core/src/main/resources/lib/hudson/executors_fi.properties index f13404a5681f..35dbc649f8f6 100644 --- a/core/src/main/resources/lib/hudson/executors_fi.properties +++ b/core/src/main/resources/lib/hudson/executors_fi.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Build\ Executor\ Status=Suorittajien tila -Building=K\u00E4\u00E4nnet\u00E4\u00E4n +Building=Käännetään Idle=Joutilas -Master=P\u00E4\u00E4llikk\u00F6 -Offline=ei yhteytt\u00E4 +Master=Päällikkö +Offline=ei yhteyttä Status=Tila -offline=ei yhteytt\u00E4 -terminate\ this\ build=Keskeyt\u00E4 k\u00E4\u00E4nt\u00E4minen +offline=ei yhteyttä +terminate\ this\ build=Keskeytä kääntäminen diff --git a/core/src/main/resources/lib/hudson/executors_fr.properties b/core/src/main/resources/lib/hudson/executors_fr.properties index beef1cb88f74..72caa8d6f61d 100644 --- a/core/src/main/resources/lib/hudson/executors_fr.properties +++ b/core/src/main/resources/lib/hudson/executors_fr.properties @@ -20,14 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=\u00C9tat du lanceur de compilations -Status=\u00C9tat -Master=Maître -Unknown\ Task=T\u00E2che inconnue -offline=d\u00E9connect\u00E9 +Build\ Executor\ Status=État du lanceur de compilations +Status=État +Master=Maître +Unknown\ Task=Tâche inconnue +offline=déconnecté Dead=Hors service Idle=Au repos -Building=En cours d\u2019ex\u00E9cution -terminate\ this\ build=arr\u00EAter cette construction +Building=En cours d’exécution +terminate\ this\ build=arrêter cette construction suspended=suspendu -Offline=Déconnecté +Offline=Déconnecté diff --git a/core/src/main/resources/lib/hudson/executors_he.properties b/core/src/main/resources/lib/hudson/executors_he.properties index 5f19f2938670..385e4da03e4f 100644 --- a/core/src/main/resources/lib/hudson/executors_he.properties +++ b/core/src/main/resources/lib/hudson/executors_he.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=\u05DE\u05E6\u05D1 \u05DE\u05E8\u05D9\u05E5 \u05D4\u05D1\u05E0\u05D9\u05D5\u05EA -Building=\u05D1\u05D5\u05E0\u05D4 -Idle=\u05DC\u05D0 \u05E4\u05E2\u05D9\u05DC -Master=\u05DE\u05D0\u05E1\u05D8\u05E8 -Status=\u05DE\u05E6\u05D1 -offline=\u05DC\u05D0 \u05DE\u05E7\u05D5\u05D5\u05DF -terminate\ this\ build=\u05D1\u05D8\u05DC \u05D1\u05E0\u05D9\u05D4 \u05D6\u05D0\u05EA +Build\ Executor\ Status=מצב מריץ הבניות +Building=בונה +Idle=×œ× ×¤×¢×™×œ +Master=מ×סטר +Status=מצב +offline=×œ× ×ž×§×•×•×Ÿ +terminate\ this\ build=בטל בניה ×–×ת diff --git a/core/src/main/resources/lib/hudson/executors_hu.properties b/core/src/main/resources/lib/hudson/executors_hu.properties index 3de15065d1a4..0f737553a090 100644 --- a/core/src/main/resources/lib/hudson/executors_hu.properties +++ b/core/src/main/resources/lib/hudson/executors_hu.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Buildfuttat\u00F3 \u00E1llapota -Building=Buildel\u00E9s +Build\ Executor\ Status=Buildfuttató állapota +Building=Buildelés Dead=Halott -Idle=\u00DCres +Idle=Ãœres Master=Mester -Status=St\u00E1tusz -offline=kapcsolat n\u00E9lk\u00FCl -terminate\ this\ build=Build megszak\u00EDt\u00E1sa +Status=Státusz +offline=kapcsolat nélkül +terminate\ this\ build=Build megszakítása diff --git a/core/src/main/resources/lib/hudson/executors_it.properties b/core/src/main/resources/lib/hudson/executors_it.properties index 315717f328c4..db35b320c940 100644 --- a/core/src/main/resources/lib/hudson/executors_it.properties +++ b/core/src/main/resources/lib/hudson/executors_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -32,4 +32,4 @@ Offline=Non in linea Pending=In attesa suspended=sospeso terminate\ this\ build=Termina questa compilazione -Unknown\ Task=Attività sconosciuta +Unknown\ Task=Attività sconosciuta diff --git a/core/src/main/resources/lib/hudson/executors_ja.properties b/core/src/main/resources/lib/hudson/executors_ja.properties index 878ff595bc7f..2be4b6edf107 100644 --- a/core/src/main/resources/lib/hudson/executors_ja.properties +++ b/core/src/main/resources/lib/hudson/executors_ja.properties @@ -21,12 +21,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=\u30d3\u30eb\u30c9\u5b9f\u884c\u72b6\u614b -Idle=\u5f85\u6a5f\u4e2d -terminate\ this\ build=\u30d3\u30eb\u30c9\u7d42\u4e86 -offline=\u30aa\u30d5\u30e9\u30a4\u30f3 -Offline=\u30aa\u30d5\u30e9\u30a4\u30f3 -Dead=\u6b7b\u4ea1 -suspended=\u4e00\u6642\u4e2d\u6b62 -Unknown\ Task=\u672a\u77e5\u306e\u30bf\u30b9\u30af +Build\ Executor\ Status=ビルド実行状態 +Idle=待機中 +terminate\ this\ build=ビルド終了 +offline=オフライン +Offline=オフライン +Dead=死亡 +suspended=一時中止 +Unknown\ Task=未知ã®ã‚¿ã‚¹ã‚¯ Computers=master{0,choice,0#|1# + {0,number} computer ({1} of {2} executors)|1< + {0,number} computers ({1} of {2} executors)} diff --git a/core/src/main/resources/lib/hudson/executors_ko.properties b/core/src/main/resources/lib/hudson/executors_ko.properties index f20ae2e63cd4..66773994bf70 100644 --- a/core/src/main/resources/lib/hudson/executors_ko.properties +++ b/core/src/main/resources/lib/hudson/executors_ko.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=\uBE4C\uB4DC \uC2E4\uD589 \uC0C1\uD0DC -Status=\uC0C1\uD0DC -Master=\uB9C8\uC2A4\uD130 -Unknown\ Task=\uC54C \uC218 \uC5C6\uB294 \uC791\uC5C5 -offline=\uC624\uD504\uB77C\uC778 -suspended=\uC77C\uC2DC \uC911\uC9C0 -Dead=\uBE44\uC815\uC0C1 \uC885\uB8CC -Idle=\uB300\uAE30 \uC911 -Building=\uBE4C\uB4DC \uC911 -terminate\ this\ build=\uBE4C\uB4DC \uC885\uB8CC +Build\ Executor\ Status=빌드 실행 ìƒíƒœ +Status=ìƒíƒœ +Master=마스터 +Unknown\ Task=ì•Œ 수 없는 ìž‘ì—… +offline=오프ë¼ì¸ +suspended=ì¼ì‹œ 중지 +Dead=ë¹„ì •ìƒ ì¢…ë£Œ +Idle=대기 중 +Building=빌드 중 +terminate\ this\ build=빌드 종료 diff --git a/core/src/main/resources/lib/hudson/executors_lt.properties b/core/src/main/resources/lib/hudson/executors_lt.properties index f0a8baff5832..a597578857c0 100644 --- a/core/src/main/resources/lib/hudson/executors_lt.properties +++ b/core/src/main/resources/lib/hudson/executors_lt.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=U\u017Eduoties vykdytojo b\u016Bsena +Build\ Executor\ Status=Užduoties vykdytojo bÅ«sena Building=Vykdomas Idle=Nenaudojamas Master=Pagrindinis Offline=Nepasiekiamas -Status=B\u016Bsena +Status=BÅ«sena offline=nepasiekiamas -terminate\ this\ build=sustabdyti \u0161i\u0105 u\u017Eduot\u012F +terminate\ this\ build=sustabdyti Å¡iÄ… užduotį diff --git a/core/src/main/resources/lib/hudson/executors_lv.properties b/core/src/main/resources/lib/hudson/executors_lv.properties index 7daa529fe311..5000fac552c9 100644 --- a/core/src/main/resources/lib/hudson/executors_lv.properties +++ b/core/src/main/resources/lib/hudson/executors_lv.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=B\u016Bv\u0113jumu izpildes statuss -Building=B\u016Bv\u0113ju -Idle=D\u012Bkst\u0101ve +Build\ Executor\ Status=BÅ«vÄ“jumu izpildes statuss +Building=BÅ«vÄ“ju +Idle=DÄ«kstÄve Master=Galvenais Status=Statuss -offline=bezsait\u0113 -terminate\ this\ build=p\u0101rtraukt \u0161o b\u016Bv\u0113jumu +offline=bezsaitÄ“ +terminate\ this\ build=pÄrtraukt Å¡o bÅ«vÄ“jumu diff --git a/core/src/main/resources/lib/hudson/executors_pl.properties b/core/src/main/resources/lib/hudson/executors_pl.properties index 019f15b550ad..99888e795faa 100644 --- a/core/src/main/resources/lib/hudson/executors_pl.properties +++ b/core/src/main/resources/lib/hudson/executors_pl.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Status wykonawc\u00F3w zada\u0144 +Build\ Executor\ Status=Status wykonawców zadaÅ„ Idle=Bezczynny Unknown\ Task=Nieznane zadanie -offline=roz\u0142\u0105czony +offline=rozÅ‚Ä…czony terminate\ this\ build=przerwij to zadanie diff --git a/core/src/main/resources/lib/hudson/executors_pt_BR.properties b/core/src/main/resources/lib/hudson/executors_pt_BR.properties index 3a756496f98a..f3dabbc1a965 100644 --- a/core/src/main/resources/lib/hudson/executors_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/executors_pt_BR.properties @@ -21,15 +21,15 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Estado do executor de constru\u00E7\u00F5es +Build\ Executor\ Status=Estado do executor de construções offline=desconectado Idle=Parado -terminate\ this\ build=terminar esta constru\u00E7\u00E3o -Unknown\ Task=Tarefa n\u00E3o localizada +terminate\ this\ build=terminar esta construção +Unknown\ Task=Tarefa não localizada suspended=suspenso Offline=desconectado Computers=mestre{0,choice,0#|1# + {0,number} computador ({1} de {2} executores)|1< + {0,number} computadores ({1} de \ {2} executores)} -confirm=Voc\u00EA tem certeza de que quer abortar {0}? -launching=lan\u00E7ando... +confirm=Você tem certeza de que quer abortar {0}? +launching=lançando... Pending=Pendente diff --git a/core/src/main/resources/lib/hudson/executors_pt_PT.properties b/core/src/main/resources/lib/hudson/executors_pt_PT.properties index 3a3a104e18cf..d243a28fa722 100644 --- a/core/src/main/resources/lib/hudson/executors_pt_PT.properties +++ b/core/src/main/resources/lib/hudson/executors_pt_PT.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Estado de execu\u00E7\u00E3o de builds +Build\ Executor\ Status=Estado de execução de builds Building=A compilar Idle=Parado Status=Estado offline=Desligado -terminate\ this\ build=parar esta compila\u00E7\u00E3o +terminate\ this\ build=parar esta compilação diff --git a/core/src/main/resources/lib/hudson/executors_ro.properties b/core/src/main/resources/lib/hudson/executors_ro.properties index 452240522a8f..b7b50dac8b68 100644 --- a/core/src/main/resources/lib/hudson/executors_ro.properties +++ b/core/src/main/resources/lib/hudson/executors_ro.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Build\ Executor\ Status=Starea builder-ului Executant -Idle=\u00CEn a\u0219teptare +Idle=ÃŽn aÈ™teptare # (need to specify the context) Status=Stare offline=oprit diff --git a/core/src/main/resources/lib/hudson/executors_ru.properties b/core/src/main/resources/lib/hudson/executors_ru.properties index 1b4283f45e91..f62679447cc2 100644 --- a/core/src/main/resources/lib/hudson/executors_ru.properties +++ b/core/src/main/resources/lib/hudson/executors_ru.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0441\u0431\u043e\u0440\u0449\u0438\u043a\u043e\u0432 -Computers=\u041a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u044b -confirm=\u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c -Offline=\u0412\u044b\u043a\u043b\u044e\u0447\u0435\u043d -Pending=\u0412 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 -suspended=\u043f\u0440\u0438\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d -Unknown\ Task=\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430\u044f \u0437\u0430\u0434\u0430\u0447\u0430 -offline=\u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d -Idle=\u0412 \u043e\u0436\u0438\u0434\u0430\u043d\u0438\u0438 -terminate\ this\ build=\u043f\u0440\u0435\u0440\u0432\u0430\u0442\u044c \u0442\u0435\u043a\u0443\u0449\u0443\u044e \u0441\u0431\u043e\u0440\u043a\u0443 +Build\ Executor\ Status=СоÑтоÑние Ñборщиков +Computers=Компьютеры +confirm=подтвердить +Offline=Выключен +Pending=Ð’ процеÑÑе +suspended=приоÑтановлен +Unknown\ Task=ÐеизвеÑÑ‚Ð½Ð°Ñ Ð·Ð°Ð´Ð°Ñ‡Ð° +offline=выключен +Idle=Ð’ ожидании +terminate\ this\ build=прервать текущую Ñборку diff --git a/core/src/main/resources/lib/hudson/executors_sk.properties b/core/src/main/resources/lib/hudson/executors_sk.properties index f06e075455c6..7fbec08ec058 100644 --- a/core/src/main/resources/lib/hudson/executors_sk.properties +++ b/core/src/main/resources/lib/hudson/executors_sk.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Stav vykon\u00E1vate\u013Eov -Building=Vykon\u00E1vam -Idle=Ne\u010Dinn\u00FD -Master=Velite\u013E +Build\ Executor\ Status=Stav vykonávateľov +Building=Vykonávam +Idle=NeÄinný +Master=Veliteľ Status=Stav -terminate\ this\ build=preru\u0161i\u0165 tento beh +terminate\ this\ build=preruÅ¡iÅ¥ tento beh diff --git a/core/src/main/resources/lib/hudson/executors_sl.properties b/core/src/main/resources/lib/hudson/executors_sl.properties index 5418df4e6af8..b0cb31090558 100644 --- a/core/src/main/resources/lib/hudson/executors_sl.properties +++ b/core/src/main/resources/lib/hudson/executors_sl.properties @@ -24,4 +24,4 @@ Build\ Executor\ Status=Stanje izvajalcev buildov Building=Prevajam Idle=Nedejavno Status=Stanje -terminate\ this\ build=prekli\u010Di ta build +terminate\ this\ build=prekliÄi ta build diff --git a/core/src/main/resources/lib/hudson/executors_sr.properties b/core/src/main/resources/lib/hudson/executors_sr.properties index c59e49e58107..d9442f66389f 100644 --- a/core/src/main/resources/lib/hudson/executors_sr.properties +++ b/core/src/main/resources/lib/hudson/executors_sr.properties @@ -20,18 +20,18 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=\u0421\u0442\u0430\u045A\u0435 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -Building=\u0418\u0437\u0433\u0440\u0430\u0434\u045A\u0430 -Idle=\u0421\u043B\u043E\u0432\u043E\u0434\u043D\u043E -Status=\u0421\u0442\u0430\u045A\u0435 -terminate\ this\ build=\u041E\u043A\u043E\u043D\u0447\u0430\u0458 \u043E\u0432\u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 -offline=\u0412\u0430\u043D \u043C\u0440\u0435\u0436\u0435 -suspended=\u0441\u0443\u0441\u043F\u0435\u043D\u0434\u043E\u0432\u0430\u043D -Offline=\u0412\u0430\u043D \u043C\u0440\u0435\u0436\u0435 -Pending=\u0427\u0435\u043A\u0430\u045A\u0435 -Unknown\ Task=\u041D\u0435\u043F\u043E\u0437\u043D\u0430\u0442\u0438 \u0437\u0430\u0434\u0430\u0442\u0430\u043A -confirm=\u0414\u0430 \u043B\u0438 \u0441\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043D\u0438 \u0434\u0430 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u043E\u0442\u043A\u0430\u0436\u0435\u0442\u0435 {0}? +Build\ Executor\ Status=Стање извршитеља изградње +Building=Изградња +Idle=Словодно +Status=Стање +terminate\ this\ build=Окончај ову изградњу +offline=Ван мреже +suspended=ÑуÑпендован +Offline=Ван мреже +Pending=Чекање +Unknown\ Task=Ðепознати задатак +confirm=Да ли Ñте Ñигурни да желите да откажете {0}? Computers=\ - \u043E\u0441\u043D\u043E\u0432\u043D\u043E{0,choice,0#|1# + {0,number} \u0440\u0430\u0447\u0443\u043D\u0430\u0440 ({1} \u043E\u0434 {2} \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430)|1< + {0,number} \u0440\u0430\u0447\u0443\u043D\u0430\u0440\u0430 ({1} \u043E\u0434 {2} \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430)} + оÑновно{0,choice,0#|1# + {0,number} рачунар ({1} од {2} извршитеља)|1< + {0,number} рачунара ({1} од {2} извршитеља)} Master= -Dead=\u041C\u0440\u0442\u0432\u043E +Dead=Мртво diff --git a/core/src/main/resources/lib/hudson/executors_sv_SE.properties b/core/src/main/resources/lib/hudson/executors_sv_SE.properties index ff930c402cc7..5c23a3ca4c56 100644 --- a/core/src/main/resources/lib/hudson/executors_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/executors_sv_SE.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Status f\u00F6r Byggare +Build\ Executor\ Status=Status för Byggare Building=Bygger -Idle=V\u00E4ntande +Idle=Väntande Offline=Offline -Unknown\ Task=Ok\u00E4nd uppgift -offline=ej tillg\u00E4nglig +Unknown\ Task=Okänd uppgift +offline=ej tillgänglig terminate\ this\ build=avbryt detta bygge diff --git a/core/src/main/resources/lib/hudson/executors_tr.properties b/core/src/main/resources/lib/hudson/executors_tr.properties index 7b0b90de3ddb..7fa756e6a3a5 100644 --- a/core/src/main/resources/lib/hudson/executors_tr.properties +++ b/core/src/main/resources/lib/hudson/executors_tr.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Yap\u0131land\u0131r\u0131c\u0131 Durumu +Build\ Executor\ Status=Yapılandırıcı Durumu Status=Durum Master=Ana -offline=\u00e7evrim d\u0131\u015f\u0131 -Dead=\u00d6l\u00fc +offline=çevrim dışı +Dead=Ölü Idle=Beklemede -Building=Yap\u0131land\u0131r\u0131yor -terminate\ this\ build=Bu yap\u0131land\u0131rmay\u0131 durdur -suspended=durdurulmu\u015f +Building=Yapılandırıyor +terminate\ this\ build=Bu yapılandırmayı durdur +suspended=durdurulmuÅŸ diff --git a/core/src/main/resources/lib/hudson/executors_uk.properties b/core/src/main/resources/lib/hudson/executors_uk.properties index 9169ce8a4e60..834e376106a6 100644 --- a/core/src/main/resources/lib/hudson/executors_uk.properties +++ b/core/src/main/resources/lib/hudson/executors_uk.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=\u0421\u0442\u0430\u0442\u0443\u0441 \u0432\u0438\u043A\u043E\u043D\u0430\u0432\u0446\u0456\u0432 \u043F\u043E\u0431\u0443\u0434\u043E\u0432 -Building=\u041A\u043E\u043C\u043F\u0456\u043B\u044E\u0454\u0442\u044C\u0441\u044F -Idle=\u0412\u0456\u043B\u044C\u043D\u043E -Master=\u041E\u0441\u043D\u043E\u0432\u043D\u0438\u0439 -Status=\u0421\u0442\u0430\u0442\u0443\u0441 -Unknown\ Task=\u041D\u0435\u0432\u0456\u0434\u043E\u043C\u0435 \u0417\u0430\u0432\u0434\u0430\u043D\u043D\u044F -offline=\u043F\u043E\u0437\u0430 \u043C\u0435\u0440\u0435\u0436\u0435\u044E -suspended=\u043F\u0440\u0438\u0437\u0443\u043F\u0438\u043D\u0435\u043D\u043E -terminate\ this\ build=\u0412\u0456\u0434\u043C\u0456\u043D\u0438\u0442\u0438 \u0446\u0435\u0439 \u0431\u0456\u043B\u0434 +Build\ Executor\ Status=Ð¡Ñ‚Ð°Ñ‚ÑƒÑ Ð²Ð¸ÐºÐ¾Ð½Ð°Ð²Ñ†Ñ–Ð² побудов +Building=КомпілюєтьÑÑ +Idle=Вільно +Master=ОÑновний +Status=Ð¡Ñ‚Ð°Ñ‚ÑƒÑ +Unknown\ Task=Ðевідоме Ð—Ð°Ð²Ð´Ð°Ð½Ð½Ñ +offline=поза мережею +suspended=призупинено +terminate\ this\ build=Відмінити цей білд diff --git a/core/src/main/resources/lib/hudson/executors_zh_TW.properties b/core/src/main/resources/lib/hudson/executors_zh_TW.properties index 4ef40ee7278c..b68673bc7710 100644 --- a/core/src/main/resources/lib/hudson/executors_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/executors_zh_TW.properties @@ -1,15 +1,15 @@ # TODO This label should distinguish between having and not having executors on the built-in node -Computers=\u5167\u5efa\u7bc0\u9ede{0,choice,0\# ({1} / {2} \u57f7\u884c\u7a0b\u5f0f\u5fd9\u788c)|1\# + {0,number} Agent ({1} / {2} \u57f7\u884c\u7a0b\u5f0f\u5fd9\u788c)|1< + {0,number} Agent ({1} / {2} \u57f7\u884c\u7a0b\u5f0f\u5fd9\u788c)} -confirm=\u60a8\u78ba\u5b9a\u8981\u4e2d\u6b62 {0} \u55ce\uff1f -launching=\u6b63\u5728\u555f\u52d5... -offline=\u96e2\u7dda -suspended=\u66ab\u505c -Dead=\u6b7b\u6389 -Idle=\u9592\u7f6e -Building=\u5efa\u7f6e\u4e2d -Unknown\ Task=\u4e0d\u660e\u7684\u4f5c\u696d -terminate\ this\ build=\u4e2d\u65b7\u9019\u6b21\u5efa\u7f6e\u4f5c\u696d -Build\ Executor\ Status=\u5efa\u7f6e\u57f7\u884c\u7a0b\u5f0f\u72c0\u614b -Status=\u72c0\u614b -Master=\u4e3b\u7bc0\u9ede -Pending=\u64f1\u7f6e +Computers=內建節點{0,choice,0\# ({1} / {2} 執行程å¼å¿™ç¢Œ)|1\# + {0,number} Agent ({1} / {2} 執行程å¼å¿™ç¢Œ)|1< + {0,number} Agent ({1} / {2} 執行程å¼å¿™ç¢Œ)} +confirm=您確定è¦ä¸­æ­¢ {0} 嗎? +launching=正在啟動... +offline=離線 +suspended=æš«åœ +Dead=死掉 +Idle=é–’ç½® +Building=建置中 +Unknown\ Task=ä¸æ˜Žçš„作業 +terminate\ this\ build=中斷這次建置作業 +Build\ Executor\ Status=建置執行程å¼ç‹€æ…‹ +Status=狀態 +Master=主節點 +Pending=擱置 diff --git a/core/src/main/resources/lib/hudson/iconSize_bg.properties b/core/src/main/resources/lib/hudson/iconSize_bg.properties index 1632b3c40cbd..cc0027a13f1e 100644 --- a/core/src/main/resources/lib/hudson/iconSize_bg.properties +++ b/core/src/main/resources/lib/hudson/iconSize_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Icon=\ - \u0418\u043a\u043e\u043d\u0430 + Икона diff --git a/core/src/main/resources/lib/hudson/iconSize_el.properties b/core/src/main/resources/lib/hudson/iconSize_el.properties index 33c5158012a8..467e2c6c51e9 100644 --- a/core/src/main/resources/lib/hudson/iconSize_el.properties +++ b/core/src/main/resources/lib/hudson/iconSize_el.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF +Icon=Εικονίδιο diff --git a/core/src/main/resources/lib/hudson/iconSize_fr.properties b/core/src/main/resources/lib/hudson/iconSize_fr.properties index 957287968508..29d5d58ee46a 100644 --- a/core/src/main/resources/lib/hudson/iconSize_fr.properties +++ b/core/src/main/resources/lib/hudson/iconSize_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=Ic\u00F4ne +Icon=Icône diff --git a/core/src/main/resources/lib/hudson/iconSize_he.properties b/core/src/main/resources/lib/hudson/iconSize_he.properties index 3cfdfaa78022..44d039f71fc1 100644 --- a/core/src/main/resources/lib/hudson/iconSize_he.properties +++ b/core/src/main/resources/lib/hudson/iconSize_he.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=\u05EA\u05DE\u05D5\u05E0\u05D4 +Icon=תמונה diff --git a/core/src/main/resources/lib/hudson/iconSize_hu.properties b/core/src/main/resources/lib/hudson/iconSize_hu.properties index 6c2ae6cfc29d..1c98a6082e66 100644 --- a/core/src/main/resources/lib/hudson/iconSize_hu.properties +++ b/core/src/main/resources/lib/hudson/iconSize_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=Ikon m\u00E9rete +Icon=Ikon mérete diff --git a/core/src/main/resources/lib/hudson/iconSize_it.properties b/core/src/main/resources/lib/hudson/iconSize_it.properties index b2cbca9088f3..1f27b7e63c72 100644 --- a/core/src/main/resources/lib/hudson/iconSize_it.properties +++ b/core/src/main/resources/lib/hudson/iconSize_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/iconSize_ja.properties b/core/src/main/resources/lib/hudson/iconSize_ja.properties index 4ad65986b8c2..7e23541ff701 100644 --- a/core/src/main/resources/lib/hudson/iconSize_ja.properties +++ b/core/src/main/resources/lib/hudson/iconSize_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=\u30a2\u30a4\u30b3\u30f3 +Icon=アイコン diff --git a/core/src/main/resources/lib/hudson/iconSize_ko.properties b/core/src/main/resources/lib/hudson/iconSize_ko.properties index 166be095ef59..bf225ebf4332 100644 --- a/core/src/main/resources/lib/hudson/iconSize_ko.properties +++ b/core/src/main/resources/lib/hudson/iconSize_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=\uC544\uC774\uCF58 +Icon=ì•„ì´ì½˜ diff --git a/core/src/main/resources/lib/hudson/iconSize_lt.properties b/core/src/main/resources/lib/hudson/iconSize_lt.properties index 6abb048a9ab3..774110f03d10 100644 --- a/core/src/main/resources/lib/hudson/iconSize_lt.properties +++ b/core/src/main/resources/lib/hudson/iconSize_lt.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=Paveiksl\u0117lis +Icon=PaveikslÄ—lis diff --git a/core/src/main/resources/lib/hudson/iconSize_pl.properties b/core/src/main/resources/lib/hudson/iconSize_pl.properties index 55098a9a4118..5c973c5998d2 100644 --- a/core/src/main/resources/lib/hudson/iconSize_pl.properties +++ b/core/src/main/resources/lib/hudson/iconSize_pl.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Icon=Ikona -S=Ma\u0142a -M=\u015Arednia -L=Du\u017Ca +S=MaÅ‚a +M=Åšrednia +L=Duża diff --git a/core/src/main/resources/lib/hudson/iconSize_pt_BR.properties b/core/src/main/resources/lib/hudson/iconSize_pt_BR.properties index d6d6791340b9..26553ffdc286 100644 --- a/core/src/main/resources/lib/hudson/iconSize_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/iconSize_pt_BR.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=\u00CDcone +Icon=Ãcone L=L S=S M=M diff --git a/core/src/main/resources/lib/hudson/iconSize_pt_PT.properties b/core/src/main/resources/lib/hudson/iconSize_pt_PT.properties index 53fa506f2a39..4f36818173cd 100644 --- a/core/src/main/resources/lib/hudson/iconSize_pt_PT.properties +++ b/core/src/main/resources/lib/hudson/iconSize_pt_PT.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=\u00CDcone +Icon=Ãcone diff --git a/core/src/main/resources/lib/hudson/iconSize_ru.properties b/core/src/main/resources/lib/hudson/iconSize_ru.properties index 81ab7a1d8041..86bd931a4661 100644 --- a/core/src/main/resources/lib/hudson/iconSize_ru.properties +++ b/core/src/main/resources/lib/hudson/iconSize_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=\u0417\u043D\u0430\u0447\u043E\u043A +Icon=Значок diff --git a/core/src/main/resources/lib/hudson/iconSize_sr.properties b/core/src/main/resources/lib/hudson/iconSize_sr.properties index 45ad05ff2e3e..be14bd34db1b 100644 --- a/core/src/main/resources/lib/hudson/iconSize_sr.properties +++ b/core/src/main/resources/lib/hudson/iconSize_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Icon=\u0418\u043A\u043E\u043D\u0438\u0446\u0430 +Icon=Иконица diff --git a/core/src/main/resources/lib/hudson/iconSize_tr.properties b/core/src/main/resources/lib/hudson/iconSize_tr.properties index 07a84b7f357c..ae1d57888c65 100644 --- a/core/src/main/resources/lib/hudson/iconSize_tr.properties +++ b/core/src/main/resources/lib/hudson/iconSize_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=\u0130kon +Icon=Ä°kon diff --git a/core/src/main/resources/lib/hudson/iconSize_uk.properties b/core/src/main/resources/lib/hudson/iconSize_uk.properties index 01d1fd8059e0..8675ed46893e 100644 --- a/core/src/main/resources/lib/hudson/iconSize_uk.properties +++ b/core/src/main/resources/lib/hudson/iconSize_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=\u0417\u043D\u0430\u0447\u043E\u043A +Icon=Значок diff --git a/core/src/main/resources/lib/hudson/iconSize_zh_TW.properties b/core/src/main/resources/lib/hudson/iconSize_zh_TW.properties index f445f25b30d6..53845f706d5a 100644 --- a/core/src/main/resources/lib/hudson/iconSize_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/iconSize_zh_TW.properties @@ -19,7 +19,7 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=\u5716\u793a -S=\u5c0f -M=\u4e2d -L=\u5927 +Icon=圖示 +S=å° +M=中 +L=大 diff --git a/core/src/main/resources/lib/hudson/listScmBrowsers_bg.properties b/core/src/main/resources/lib/hudson/listScmBrowsers_bg.properties index 6c9dcba31018..431267c25b9b 100644 --- a/core/src/main/resources/lib/hudson/listScmBrowsers_bg.properties +++ b/core/src/main/resources/lib/hudson/listScmBrowsers_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Repository\ browser=\ - \u0420\u0430\u0437\u0433\u043b\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 + Разглеждане на хранилище Auto=\ - \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e + Ðвтоматично diff --git a/core/src/main/resources/lib/hudson/listScmBrowsers_it.properties b/core/src/main/resources/lib/hudson/listScmBrowsers_it.properties index 9e3453d98771..cc2f5ceb63dd 100644 --- a/core/src/main/resources/lib/hudson/listScmBrowsers_it.properties +++ b/core/src/main/resources/lib/hudson/listScmBrowsers_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/listScmBrowsers_ja.properties b/core/src/main/resources/lib/hudson/listScmBrowsers_ja.properties index c91186fbfddf..ca64b3d85ccc 100644 --- a/core/src/main/resources/lib/hudson/listScmBrowsers_ja.properties +++ b/core/src/main/resources/lib/hudson/listScmBrowsers_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Repository\ browser=\u30ea\u30dd\u30b8\u30c8\u30ea\u30fb\u30d6\u30e9\u30a6\u30b6 -Auto=\u81ea\u52d5 +Repository\ browser=リãƒã‚¸ãƒˆãƒªãƒ»ãƒ–ラウザ +Auto=自動 diff --git a/core/src/main/resources/lib/hudson/listScmBrowsers_ko.properties b/core/src/main/resources/lib/hudson/listScmBrowsers_ko.properties index 73d77fd6b934..445fc2069f9b 100644 --- a/core/src/main/resources/lib/hudson/listScmBrowsers_ko.properties +++ b/core/src/main/resources/lib/hudson/listScmBrowsers_ko.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Auto=\uC790\uB3D9 +Auto=ìžë™ diff --git a/core/src/main/resources/lib/hudson/listScmBrowsers_pt_BR.properties b/core/src/main/resources/lib/hudson/listScmBrowsers_pt_BR.properties index 50091e47c7ff..732254266807 100644 --- a/core/src/main/resources/lib/hudson/listScmBrowsers_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/listScmBrowsers_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Repository\ browser=Navegar no reposit\u00f3rio +Repository\ browser=Navegar no repositório Auto=Auto diff --git a/core/src/main/resources/lib/hudson/listScmBrowsers_ru.properties b/core/src/main/resources/lib/hudson/listScmBrowsers_ru.properties index 13419b534f5e..376a8843ade1 100644 --- a/core/src/main/resources/lib/hudson/listScmBrowsers_ru.properties +++ b/core/src/main/resources/lib/hudson/listScmBrowsers_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Repository\ browser=\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0449\u0438\u043a \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f -Auto=\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 +Repository\ browser=ПроÑмотрщик Ñ€ÐµÐ¿Ð¾Ð·Ð¸Ñ‚Ð¾Ñ€Ð¸Ñ +Auto=ÐвтоматичеÑки diff --git a/core/src/main/resources/lib/hudson/listScmBrowsers_sr.properties b/core/src/main/resources/lib/hudson/listScmBrowsers_sr.properties index 1ab483f63439..025cedd3c032 100644 --- a/core/src/main/resources/lib/hudson/listScmBrowsers_sr.properties +++ b/core/src/main/resources/lib/hudson/listScmBrowsers_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Repository\ browser=\u041F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0447 \u0441\u043F\u0440\u0435\u043C\u0438\u0448\u0442\u0430 -Auto=\u0410\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0438 +Repository\ browser=Прегледач Ñпремишта +Auto=ÐутоматÑки diff --git a/core/src/main/resources/lib/hudson/listScmBrowsers_tr.properties b/core/src/main/resources/lib/hudson/listScmBrowsers_tr.properties index 6a8cc4d06152..f3f461853fb4 100644 --- a/core/src/main/resources/lib/hudson/listScmBrowsers_tr.properties +++ b/core/src/main/resources/lib/hudson/listScmBrowsers_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Repository\ browser=Repository taray\u0131c\u0131s\u0131 +Repository\ browser=Repository tarayıcısı Auto=Otomatik diff --git a/core/src/main/resources/lib/hudson/listScmBrowsers_zh_TW.properties b/core/src/main/resources/lib/hudson/listScmBrowsers_zh_TW.properties index f4c284b5dbd0..c60197aa2781 100644 --- a/core/src/main/resources/lib/hudson/listScmBrowsers_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/listScmBrowsers_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Auto=\u81ea\u52d5 -Repository\ browser=\u5132\u5b58\u5eab\u700f\u89bd\u5668 +Auto=自動 +Repository\ browser=儲存庫ç€è¦½å™¨ diff --git a/core/src/main/resources/lib/hudson/newFromList/form_bg.properties b/core/src/main/resources/lib/hudson/newFromList/form_bg.properties index e1bef9291048..de6c8661d575 100644 --- a/core/src/main/resources/lib/hudson/newFromList/form_bg.properties +++ b/core/src/main/resources/lib/hudson/newFromList/form_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Copy\ from=\ - \u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435 \u043e\u0442 + Копиране от diff --git a/core/src/main/resources/lib/hudson/newFromList/form_cs.properties b/core/src/main/resources/lib/hudson/newFromList/form_cs.properties index 9c3d05c4808e..5491869f26c7 100644 --- a/core/src/main/resources/lib/hudson/newFromList/form_cs.properties +++ b/core/src/main/resources/lib/hudson/newFromList/form_cs.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Copy\ from=Zkop\u00EDrovat z +Copy\ from=Zkopírovat z diff --git a/core/src/main/resources/lib/hudson/newFromList/form_el.properties b/core/src/main/resources/lib/hudson/newFromList/form_el.properties index 2622c6565ef0..c31f53387329 100644 --- a/core/src/main/resources/lib/hudson/newFromList/form_el.properties +++ b/core/src/main/resources/lib/hudson/newFromList/form_el.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Copy\ from=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u03B1\u03C0\u03CC +Copy\ from=ΑντιγÏαφή από diff --git a/core/src/main/resources/lib/hudson/newFromList/form_et.properties b/core/src/main/resources/lib/hudson/newFromList/form_et.properties index afeeb404051a..34482c51fd7e 100644 --- a/core/src/main/resources/lib/hudson/newFromList/form_et.properties +++ b/core/src/main/resources/lib/hudson/newFromList/form_et.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Copy\ from=Kopeeritava t\u00F6\u00F6 nimi +Copy\ from=Kopeeritava töö nimi diff --git a/core/src/main/resources/lib/hudson/newFromList/form_fr.properties b/core/src/main/resources/lib/hudson/newFromList/form_fr.properties index f8c2fe146e8e..7ab1f875648f 100644 --- a/core/src/main/resources/lib/hudson/newFromList/form_fr.properties +++ b/core/src/main/resources/lib/hudson/newFromList/form_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Copy\ from=Copier à partir de +Copy\ from=Copier à partir de diff --git a/core/src/main/resources/lib/hudson/newFromList/form_hu.properties b/core/src/main/resources/lib/hudson/newFromList/form_hu.properties index c2f57d55796a..c7024b1209c0 100644 --- a/core/src/main/resources/lib/hudson/newFromList/form_hu.properties +++ b/core/src/main/resources/lib/hudson/newFromList/form_hu.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Copy\ from=M\u00E1sol\u00E1s a k\u00F6vetkez\u0151r\u0151l: +Copy\ from=Másolás a következÅ‘rÅ‘l: diff --git a/core/src/main/resources/lib/hudson/newFromList/form_it.properties b/core/src/main/resources/lib/hudson/newFromList/form_it.properties index 5ed914751d65..629964853e73 100644 --- a/core/src/main/resources/lib/hudson/newFromList/form_it.properties +++ b/core/src/main/resources/lib/hudson/newFromList/form_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/newFromList/form_ja.properties b/core/src/main/resources/lib/hudson/newFromList/form_ja.properties index dadef36156c1..d94021f76a04 100644 --- a/core/src/main/resources/lib/hudson/newFromList/form_ja.properties +++ b/core/src/main/resources/lib/hudson/newFromList/form_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Copy\ from=\u30B3\u30D4\u30FC\u5143 +Copy\ from=コピー元 diff --git a/core/src/main/resources/lib/hudson/newFromList/form_ko.properties b/core/src/main/resources/lib/hudson/newFromList/form_ko.properties index 9b6c014a2ced..ea47370703ce 100644 --- a/core/src/main/resources/lib/hudson/newFromList/form_ko.properties +++ b/core/src/main/resources/lib/hudson/newFromList/form_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Copy\ from=\uBCF5\uC0AC\uD558\uB824\uB294 \uB300\uC0C1 +Copy\ from=복사하려는 ëŒ€ìƒ diff --git a/core/src/main/resources/lib/hudson/newFromList/form_lv.properties b/core/src/main/resources/lib/hudson/newFromList/form_lv.properties index 77938ed5ac30..a82a8dc0adaf 100644 --- a/core/src/main/resources/lib/hudson/newFromList/form_lv.properties +++ b/core/src/main/resources/lib/hudson/newFromList/form_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Copy\ from=Kop\u0113 no +Copy\ from=KopÄ“ no diff --git a/core/src/main/resources/lib/hudson/newFromList/form_nl.properties b/core/src/main/resources/lib/hudson/newFromList/form_nl.properties index bef27ebd0127..b260582717f4 100644 --- a/core/src/main/resources/lib/hudson/newFromList/form_nl.properties +++ b/core/src/main/resources/lib/hudson/newFromList/form_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Copy\ from=Kopi\u00EBer van +Copy\ from=Kopiëer van diff --git a/core/src/main/resources/lib/hudson/newFromList/form_pt_BR.properties b/core/src/main/resources/lib/hudson/newFromList/form_pt_BR.properties index ab1ba3e093a7..838c1b57738d 100644 --- a/core/src/main/resources/lib/hudson/newFromList/form_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/newFromList/form_pt_BR.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Create=Criar -Type\ for\ suggestions=Digite\ para\ sugest\u00F5es +Type\ for\ suggestions=Digite\ para\ sugestões View\ type=Tipo diff --git a/core/src/main/resources/lib/hudson/newFromList/form_ru.properties b/core/src/main/resources/lib/hudson/newFromList/form_ru.properties index ca18871d5ac0..fa87cbb8fe96 100644 --- a/core/src/main/resources/lib/hudson/newFromList/form_ru.properties +++ b/core/src/main/resources/lib/hudson/newFromList/form_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Copy\ from=\u041A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0438\u0437 +Copy\ from=Копировать из diff --git a/core/src/main/resources/lib/hudson/newFromList/form_sk.properties b/core/src/main/resources/lib/hudson/newFromList/form_sk.properties index 6f9a4250f90a..4669ce64916d 100644 --- a/core/src/main/resources/lib/hudson/newFromList/form_sk.properties +++ b/core/src/main/resources/lib/hudson/newFromList/form_sk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Copy\ from=Skop\u00EDrova\u0165 z +Copy\ from=SkopírovaÅ¥ z diff --git a/core/src/main/resources/lib/hudson/newFromList/form_sr.properties b/core/src/main/resources/lib/hudson/newFromList/form_sr.properties index 6190adbdbb8f..82210d26cf60 100644 --- a/core/src/main/resources/lib/hudson/newFromList/form_sr.properties +++ b/core/src/main/resources/lib/hudson/newFromList/form_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Copy\ from=\u0418\u0437\u043A\u043E\u043F\u0438\u0440\u0430\u0458 \u043E\u0434 +Copy\ from=Изкопирај од diff --git a/core/src/main/resources/lib/hudson/newFromList/form_sv_SE.properties b/core/src/main/resources/lib/hudson/newFromList/form_sv_SE.properties index 8e97e8855346..47d612714123 100644 --- a/core/src/main/resources/lib/hudson/newFromList/form_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/newFromList/form_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Copy\ from=Kopiera fr\u00E5n +Copy\ from=Kopiera frÃ¥n diff --git a/core/src/main/resources/lib/hudson/newFromList/form_uk.properties b/core/src/main/resources/lib/hudson/newFromList/form_uk.properties index c024ba0c9bc6..b21d1357cffd 100644 --- a/core/src/main/resources/lib/hudson/newFromList/form_uk.properties +++ b/core/src/main/resources/lib/hudson/newFromList/form_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Copy\ from=\u0421\u043A\u043E\u043F\u0456\u044E\u0432\u0430\u0442\u0438 \u0437 +Copy\ from=Скопіювати з diff --git a/core/src/main/resources/lib/hudson/newFromList/form_zh_TW.properties b/core/src/main/resources/lib/hudson/newFromList/form_zh_TW.properties index 8261520a0014..9f30d3da0f70 100644 --- a/core/src/main/resources/lib/hudson/newFromList/form_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/newFromList/form_zh_TW.properties @@ -1,4 +1,4 @@ -View\ type=\u985e\u578b -Create=\u5efa\u7acb -Copy\ from=\u8907\u88fd\u81ea -Type\ for\ suggestions=\u8f38\u5165\u4ee5\u986f\u793a\u5efa\u8b70 +View\ type=é¡žåž‹ +Create=建立 +Copy\ from=複製自 +Type\ for\ suggestions=輸入以顯示建議 diff --git a/core/src/main/resources/lib/hudson/node_zh_TW.properties b/core/src/main/resources/lib/hudson/node_zh_TW.properties index a27a40b55dfc..94c138f1d119 100644 --- a/core/src/main/resources/lib/hudson/node_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/node_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -builtin=\u5167\u5efa +builtin=內建 diff --git a/core/src/main/resources/lib/hudson/project/build-permalink_bg.properties b/core/src/main/resources/lib/hudson/project/build-permalink_bg.properties index 35b83c4de8b8..4c390688a520 100644 --- a/core/src/main/resources/lib/hudson/project/build-permalink_bg.properties +++ b/core/src/main/resources/lib/hudson/project/build-permalink_bg.properties @@ -22,4 +22,4 @@ # {0} (#{1}), {2} ago format=\ - {0} (\u2116\u200a{1}), \u043f\u0440\u0435\u0434\u0438 {2} + {0} (№ {1}), преди {2} diff --git a/core/src/main/resources/lib/hudson/project/build-permalink_it.properties b/core/src/main/resources/lib/hudson/project/build-permalink_it.properties index 1bc32d96c026..3eaa58b6f45d 100644 --- a/core/src/main/resources/lib/hudson/project/build-permalink_it.properties +++ b/core/src/main/resources/lib/hudson/project/build-permalink_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/project/build-permalink_lt.properties b/core/src/main/resources/lib/hudson/project/build-permalink_lt.properties index 0a3cb61fa532..bf1cb776ce05 100644 --- a/core/src/main/resources/lib/hudson/project/build-permalink_lt.properties +++ b/core/src/main/resources/lib/hudson/project/build-permalink_lt.properties @@ -1 +1 @@ -format={0} (#{1}), prie\u0161 {2} +format={0} (#{1}), prieÅ¡ {2} diff --git a/core/src/main/resources/lib/hudson/project/build-permalink_pt_BR.properties b/core/src/main/resources/lib/hudson/project/build-permalink_pt_BR.properties index 04cf51366fdf..dfcd0a0062ab 100644 --- a/core/src/main/resources/lib/hudson/project/build-permalink_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/project/build-permalink_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -format={0} (#{1}), {2} atr\u00e1s +format={0} (#{1}), {2} atrás diff --git a/core/src/main/resources/lib/hudson/project/build-permalink_ru.properties b/core/src/main/resources/lib/hudson/project/build-permalink_ru.properties index 293fc39d888e..0c9151ac4faf 100644 --- a/core/src/main/resources/lib/hudson/project/build-permalink_ru.properties +++ b/core/src/main/resources/lib/hudson/project/build-permalink_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -format={0} (#{1}), {2} \u043d\u0430\u0437\u0430\u0434 +format={0} (#{1}), {2} назад diff --git a/core/src/main/resources/lib/hudson/project/build-permalink_sr.properties b/core/src/main/resources/lib/hudson/project/build-permalink_sr.properties index 05a61a106e17..5e9572c01b7d 100644 --- a/core/src/main/resources/lib/hudson/project/build-permalink_sr.properties +++ b/core/src/main/resources/lib/hudson/project/build-permalink_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -format={0} (#{1}), \u043F\u0440\u0435 {2} +format={0} (#{1}), пре {2} diff --git a/core/src/main/resources/lib/hudson/project/build-permalink_tr.properties b/core/src/main/resources/lib/hudson/project/build-permalink_tr.properties index a13741571231..e13a821dab1a 100644 --- a/core/src/main/resources/lib/hudson/project/build-permalink_tr.properties +++ b/core/src/main/resources/lib/hudson/project/build-permalink_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -format={0} (#{1}), {2} \u00f6nce +format={0} (#{1}), {2} önce diff --git a/core/src/main/resources/lib/hudson/project/build-permalink_zh_TW.properties b/core/src/main/resources/lib/hudson/project/build-permalink_zh_TW.properties index 4fb4889fc1bf..fd898285adb5 100644 --- a/core/src/main/resources/lib/hudson/project/build-permalink_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/build-permalink_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -format={0} (#{1})\uff0c{2}\u4ee5\u524d +format={0} (#{1}),{2}ä»¥å‰ diff --git a/core/src/main/resources/lib/hudson/project/config-assignedLabel_bg.properties b/core/src/main/resources/lib/hudson/project/config-assignedLabel_bg.properties index 3506632465f1..0c9a6f739637 100644 --- a/core/src/main/resources/lib/hudson/project/config-assignedLabel_bg.properties +++ b/core/src/main/resources/lib/hudson/project/config-assignedLabel_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Restrict\ where\ this\ project\ can\ be\ run=\ - \u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0430\u0432\u0430\u043d\u0435 \u043a\u044a\u0434\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 + Ограничаване къде да Ñе изпълнÑва проекта Label\ Expression=\ - \u0418\u0437\u0440\u0430\u0437 \u0441 \u0435\u0442\u0438\u043a\u0435\u0442\u0438 + Израз Ñ ÐµÑ‚Ð¸ÐºÐµÑ‚Ð¸ diff --git a/core/src/main/resources/lib/hudson/project/config-assignedLabel_da.properties b/core/src/main/resources/lib/hudson/project/config-assignedLabel_da.properties index ff4b4ded1872..5745796771bf 100644 --- a/core/src/main/resources/lib/hudson/project/config-assignedLabel_da.properties +++ b/core/src/main/resources/lib/hudson/project/config-assignedLabel_da.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Label\ Expression=Etiketudtryk -Restrict\ where\ this\ project\ can\ be\ run=Begr\u00E6ns hvor dette projekt kan k\u00F8res +Restrict\ where\ this\ project\ can\ be\ run=Begræns hvor dette projekt kan køres diff --git a/core/src/main/resources/lib/hudson/project/config-assignedLabel_de.properties b/core/src/main/resources/lib/hudson/project/config-assignedLabel_de.properties index 884ba844e72b..624550330145 100644 --- a/core/src/main/resources/lib/hudson/project/config-assignedLabel_de.properties +++ b/core/src/main/resources/lib/hudson/project/config-assignedLabel_de.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restrict\ where\ this\ project\ can\ be\ run=Beschr\u00E4nke, wo dieses Projekt ausgef\u00FChrt werden darf +Restrict\ where\ this\ project\ can\ be\ run=Beschränke, wo dieses Projekt ausgeführt werden darf Label\ Expression=Label-Ausdruck diff --git a/core/src/main/resources/lib/hudson/project/config-assignedLabel_es.properties b/core/src/main/resources/lib/hudson/project/config-assignedLabel_es.properties index aa9ec09eb480..c32267c0664a 100644 --- a/core/src/main/resources/lib/hudson/project/config-assignedLabel_es.properties +++ b/core/src/main/resources/lib/hudson/project/config-assignedLabel_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Label\ Expression=Expresi\u00F3n -Restrict\ where\ this\ project\ can\ be\ run=Restringir d\u00F3nde se puede ejecutar este proyecto. +Label\ Expression=Expresión +Restrict\ where\ this\ project\ can\ be\ run=Restringir dónde se puede ejecutar este proyecto. diff --git a/core/src/main/resources/lib/hudson/project/config-assignedLabel_fr.properties b/core/src/main/resources/lib/hudson/project/config-assignedLabel_fr.properties index c0ec0f1dc0b9..6c6bdfff02b4 100644 --- a/core/src/main/resources/lib/hudson/project/config-assignedLabel_fr.properties +++ b/core/src/main/resources/lib/hudson/project/config-assignedLabel_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restrict\ where\ this\ project\ can\ be\ run=Restreindre o\u00F9 le projet peut \u00EAtre ex\u00E9cut\u00E9 +Restrict\ where\ this\ project\ can\ be\ run=Restreindre où le projet peut être exécuté Label\ Expression=Expression diff --git a/core/src/main/resources/lib/hudson/project/config-assignedLabel_it.properties b/core/src/main/resources/lib/hudson/project/config-assignedLabel_it.properties index 0088c1905890..2355347c21f8 100644 --- a/core/src/main/resources/lib/hudson/project/config-assignedLabel_it.properties +++ b/core/src/main/resources/lib/hudson/project/config-assignedLabel_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -23,4 +23,4 @@ Label\ Expression=Espressione etichetta Restrict\ where\ this\ project\ can\ be\ run=Restringi gli agenti sui quali \ - può essere compilato questo progetto + può essere compilato questo progetto diff --git a/core/src/main/resources/lib/hudson/project/config-assignedLabel_ja.properties b/core/src/main/resources/lib/hudson/project/config-assignedLabel_ja.properties index 0849e9df6b56..959336e254dc 100644 --- a/core/src/main/resources/lib/hudson/project/config-assignedLabel_ja.properties +++ b/core/src/main/resources/lib/hudson/project/config-assignedLabel_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restrict\ where\ this\ project\ can\ be\ run=\u5B9F\u884C\u3059\u308B\u30CE\u30FC\u30C9\u3092\u5236\u9650 -Label\ Expression=\u30E9\u30D9\u30EB\u5F0F +Restrict\ where\ this\ project\ can\ be\ run=実行ã™ã‚‹ãƒŽãƒ¼ãƒ‰ã‚’åˆ¶é™ +Label\ Expression=ãƒ©ãƒ™ãƒ«å¼ diff --git a/core/src/main/resources/lib/hudson/project/config-assignedLabel_lt.properties b/core/src/main/resources/lib/hudson/project/config-assignedLabel_lt.properties index 8c4ddda52c8a..a99b888ac363 100644 --- a/core/src/main/resources/lib/hudson/project/config-assignedLabel_lt.properties +++ b/core/src/main/resources/lib/hudson/project/config-assignedLabel_lt.properties @@ -1 +1 @@ -Restrict\ where\ this\ project\ can\ be\ run=Apriboti, kur gali b\u016bti vykdomas \u0161is darbas +Restrict\ where\ this\ project\ can\ be\ run=Apriboti, kur gali bÅ«ti vykdomas Å¡is darbas diff --git a/core/src/main/resources/lib/hudson/project/config-assignedLabel_lv.properties b/core/src/main/resources/lib/hudson/project/config-assignedLabel_lv.properties index 3e3ad397fd24..142e5b0f7e0c 100644 --- a/core/src/main/resources/lib/hudson/project/config-assignedLabel_lv.properties +++ b/core/src/main/resources/lib/hudson/project/config-assignedLabel_lv.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Restrict\ where\ this\ project\ can\ be\ run=Ierobe\u017Eot, kur \u0161is projekts var b\u016Bt izpild\u0101ms +Restrict\ where\ this\ project\ can\ be\ run=Ierobežot, kur Å¡is projekts var bÅ«t izpildÄms diff --git a/core/src/main/resources/lib/hudson/project/config-assignedLabel_pt_BR.properties b/core/src/main/resources/lib/hudson/project/config-assignedLabel_pt_BR.properties index 02e2548741f0..18ebff47dd22 100644 --- a/core/src/main/resources/lib/hudson/project/config-assignedLabel_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/project/config-assignedLabel_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Label\ Expression=Express\u00e3o de r\u00f3tulo +Label\ Expression=Expressão de rótulo Restrict\ where\ this\ project\ can\ be\ run=Restringe onde este projeto pode ser executado diff --git a/core/src/main/resources/lib/hudson/project/config-assignedLabel_ru.properties b/core/src/main/resources/lib/hudson/project/config-assignedLabel_ru.properties index afa44a1e0c85..0369c7a35d26 100644 --- a/core/src/main/resources/lib/hudson/project/config-assignedLabel_ru.properties +++ b/core/src/main/resources/lib/hudson/project/config-assignedLabel_ru.properties @@ -1 +1 @@ -Restrict\ where\ this\ project\ can\ be\ run=\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0438\u0442\u044c \u043b\u0435\u0439\u0431\u043b\u044b \u0441\u0431\u043e\u0440\u0449\u0438\u043a\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u043d\u044f\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u0437\u0430\u0434\u0430\u0447\u0443 +Restrict\ where\ this\ project\ can\ be\ run=Ограничить лейблы Ñборщиков, которые могут иÑполнÑÑ‚ÑŒ данную задачу diff --git a/core/src/main/resources/lib/hudson/project/config-assignedLabel_sk.properties b/core/src/main/resources/lib/hudson/project/config-assignedLabel_sk.properties index 445141b3ad58..209a1027f02e 100644 --- a/core/src/main/resources/lib/hudson/project/config-assignedLabel_sk.properties +++ b/core/src/main/resources/lib/hudson/project/config-assignedLabel_sk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Label\ Expression=V\u00FDraz zo zna\u010Diek -Restrict\ where\ this\ project\ can\ be\ run=Ohrani\u010D, kde m\u00F4\u017Ee by\u0165 tento projekt spusten\u00FD +Label\ Expression=Výraz zo znaÄiek +Restrict\ where\ this\ project\ can\ be\ run=OhraniÄ, kde môže byÅ¥ tento projekt spustený diff --git a/core/src/main/resources/lib/hudson/project/config-assignedLabel_sr.properties b/core/src/main/resources/lib/hudson/project/config-assignedLabel_sr.properties index 5325e0a53ac5..69124f3789b1 100644 --- a/core/src/main/resources/lib/hudson/project/config-assignedLabel_sr.properties +++ b/core/src/main/resources/lib/hudson/project/config-assignedLabel_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Restrict\ where\ this\ project\ can\ be\ run=\u041E\u0433\u0440\u0430\u043D\u0438\u0447\u0438 \u0433\u0434\u0435 \u0441\u0435 \u043C\u043E\u0436\u0435 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0438 \u043E\u0432\u0430\u0458 \u043F\u0440\u043E\u0458\u043A\u0430\u0442 -Label\ Expression=\u0418\u0437\u0440\u0430\u0437 \u043D\u0430 \u043B\u0430\u0431\u0435\u043B\u0438 -Tie\ this\ project\ to\ a\ node=\u041F\u043E\u0432\u0435\u0436\u0438 \u043E\u0432\u0430\u0458 \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 \u0441\u0430 \u043C\u0430\u0448\u0438\u043D\u043E\u043C +Restrict\ where\ this\ project\ can\ be\ run=Ограничи где Ñе може извршити овај пројкат +Label\ Expression=Израз на лабели +Tie\ this\ project\ to\ a\ node=Повежи овај пројекат Ñа машином diff --git a/core/src/main/resources/lib/hudson/project/config-assignedLabel_tr.properties b/core/src/main/resources/lib/hudson/project/config-assignedLabel_tr.properties index 7a60a3cff957..5d3bac2a2fbd 100644 --- a/core/src/main/resources/lib/hudson/project/config-assignedLabel_tr.properties +++ b/core/src/main/resources/lib/hudson/project/config-assignedLabel_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Tie\ this\ project\ to\ a\ node=Bu projeyi bir noda ba\u011Fla +Tie\ this\ project\ to\ a\ node=Bu projeyi bir noda baÄŸla diff --git a/core/src/main/resources/lib/hudson/project/config-assignedLabel_zh_TW.properties b/core/src/main/resources/lib/hudson/project/config-assignedLabel_zh_TW.properties index 7b99a7fbafca..0afd48e39de0 100644 --- a/core/src/main/resources/lib/hudson/project/config-assignedLabel_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/config-assignedLabel_zh_TW.properties @@ -21,5 +21,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restrict\ where\ this\ project\ can\ be\ run=\u9650\u5236\u5C08\u6848\u57F7\u884C\u7BC0\u9EDE -Label\ Expression=\u6A19\u7C64\u8868\u793A\u5F0F +Restrict\ where\ this\ project\ can\ be\ run=é™åˆ¶å°ˆæ¡ˆåŸ·è¡Œç¯€é»ž +Label\ Expression=æ¨™ç±¤è¡¨ç¤ºå¼ diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_bg.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_bg.properties index dcfe14f9f217..5a37519781ee 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_bg.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Block\ build\ when\ downstream\ project\ is\ building=\ - \u041d\u0435\u0434\u043e\u043f\u0443\u0441\u043a\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043f\u0440\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0441\u043b\u0435\u0434\u0432\u0430\u0449 \u043f\u0440\u043e\u0435\u043a\u0442 + ÐедопуÑкане на изграждане при изграждане на Ñледващ проект diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_es.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_es.properties index 591ebf64459c..f1c537f1d70c 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_es.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Block\ build\ when\ downstream\ project\ is\ building=Bloquear la ejecución cuando un projecto relacionado está en ejecución +Block\ build\ when\ downstream\ project\ is\ building=Bloquear la ejecución cuando un projecto relacionado está en ejecución diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_fr.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_fr.properties index d4a68f134edc..3f5638d6f564 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_fr.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Block\ build\ when\ downstream\ project\ is\ building=Emp\u00EAcher le build quand un projet en aval est en cours de build +Block\ build\ when\ downstream\ project\ is\ building=Empêcher le build quand un projet en aval est en cours de build diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_he.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_he.properties index 611220520a9e..3155f59e3e2d 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_he.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Block\ build\ when\ downstream\ project\ is\ building=\u05D7\u05E1\u05D5\u05DD \u05D1\u05E0\u05D9\u05D4 \u05DB\u05D0\u05E9\u05E8 \u05E4\u05E8\u05D5\u05D9\u05E7\u05D8 \u05D1\u05DF \u05E0\u05D1\u05E0\u05D4 +Block\ build\ when\ downstream\ project\ is\ building=×—×¡×•× ×‘× ×™×” ×›×שר פרויקט בן נבנה diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_it.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_it.properties index e741cef9b48b..7f29c549b0f3 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_it.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,4 +22,4 @@ # THE SOFTWARE. Block\ build\ when\ downstream\ project\ is\ building=Blocca la compilazione \ - quando un progetto downstream è in fase di compilazione + quando un progetto downstream è in fase di compilazione diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_ja.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_ja.properties index 4d3a8a2e3ca9..febf46d7b498 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_ja.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_ja.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Block\ build\ when\ downstream\ project\ is\ building=\ - \u4e0b\u6d41\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u304c\u30d3\u30eb\u30c9\u4e2d\u306e\u5834\u5408\u306f\u30d3\u30eb\u30c9\u3057\u306a\u3044 + 下æµãƒ—ロジェクトãŒãƒ“ルド中ã®å ´åˆã¯ãƒ“ルドã—ãªã„ diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_ko.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_ko.properties index ad1923dcf379..a10afeac69da 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_ko.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_ko.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Block\ build\ when\ downstream\ project\ is\ building=\uB2E4\uC6B4\uC2A4\uD2B8\uB9BC \uD504\uB85C\uC81D\uD2B8\uAC00 \uBE4C\uB4DC\uD558\uB294 \uB3D9\uC548 \uBE4C\uB4DC \uBA48\uCDA4 +Block\ build\ when\ downstream\ project\ is\ building=다운스트림 프로ì íŠ¸ê°€ 빌드하는 ë™ì•ˆ 빌드 멈춤 diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_lt.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_lt.properties index 08882e2118ac..4c84fe707f89 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_lt.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_lt.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Block\ build\ when\ downstream\ project\ is\ building=Blokuoti darb\u0105, kai vykdomas tolimesnis darbas +Block\ build\ when\ downstream\ project\ is\ building=Blokuoti darbÄ…, kai vykdomas tolimesnis darbas diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_nb_NO.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_nb_NO.properties index 3a469490e6f0..57a5b1e61756 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_nb_NO.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Block\ build\ when\ downstream\ project\ is\ building=Blokk\u00E9r build n\u00E5r downstream prosjekt bygges +Block\ build\ when\ downstream\ project\ is\ building=Blokkér build nÃ¥r downstream prosjekt bygges diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_pt_BR.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_pt_BR.properties index 2d678269b6c4..d306320ab49e 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Block\ build\ when\ downstream\ project\ is\ building=Bloquear constru\u00E7\u00F5es quando o projeto corrente estiver construindo +Block\ build\ when\ downstream\ project\ is\ building=Bloquear construções quando o projeto corrente estiver construindo diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_ru.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_ru.properties index b7268d054ab9..1654806baffb 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_ru.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_ru.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Block\ build\ when\ downstream\ project\ is\ building=\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0431\u043e\u0440\u043a\u0443, \u043f\u043e\u043a\u0430 \u0432\u044b\u0437\u0432\u0430\u043d\u043d\u0430\u044f \u0437\u0430\u0434\u0430\u0447\u0430 \u043d\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430 +Block\ build\ when\ downstream\ project\ is\ building=Блокировать Ñборку, пока Ð²Ñ‹Ð·Ð²Ð°Ð½Ð½Ð°Ñ Ð·Ð°Ð´Ð°Ñ‡Ð° не завершена diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_sk.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_sk.properties index 90f71fc0ee46..1fa9ca100cc6 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_sk.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_sk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Block\ build\ when\ downstream\ project\ is\ building=Zablokuj zostavenie, k\u00FDm sa zostavuje downstream projekt +Block\ build\ when\ downstream\ project\ is\ building=Zablokuj zostavenie, kým sa zostavuje downstream projekt diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_sr.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_sr.properties index 467994cca7bf..e14985af7903 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_sr.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Block\ build\ when\ downstream\ project\ is\ building=\u0417\u0430\u0431\u043B\u043E\u043A\u0438\u0440\u0430\u0458 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 \u0434\u043E\u043A \u0441\u0435 \u0433\u0440\u0430\u0434\u0438 \u0437\u0430\u0432\u0438\u0441\u043D\u0438 \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 +Block\ build\ when\ downstream\ project\ is\ building=Заблокирај изградњу док Ñе гради завиÑни пројекат diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_sv_SE.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_sv_SE.properties index ccfcd6a7ee07..52ee69f2f555 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_sv_SE.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Block\ build\ when\ downstream\ project\ is\ building=Blockera bygge n\u00E4r nedstr\u00F6msprojekt bygger +Block\ build\ when\ downstream\ project\ is\ building=Blockera bygge när nedströmsprojekt bygger diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_uk.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_uk.properties index b2b0333d4780..1ba59bd9e20e 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_uk.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Block\ build\ when\ downstream\ project\ is\ building=\u0411\u043B\u043E\u043A\u0443\u0432\u0430\u0442\u0438 \u0437\u0431\u0456\u0440\u043A\u0438, \u0434\u043E\u043A\u0438 \u043F\u043E\u043F\u0435\u0440\u0435\u0434\u043D\u0456\u0439 \u043F\u0440\u043E\u0435\u043A\u0442 \u0437\u0431\u0438\u0440\u0430\u0454\u0442\u044C\u0441\u044F +Block\ build\ when\ downstream\ project\ is\ building=Блокувати збірки, доки попередній проект збираєтьÑÑ diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_zh_TW.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_zh_TW.properties index 1310a4e0523c..b428119f4140 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Block\ build\ when\ downstream\ project\ is\ building=\u4e0b\u6e38\u5c08\u6848\u5efa\u7f6e\u6642\u5c01\u9396\u5efa\u7f6e +Block\ build\ when\ downstream\ project\ is\ building=下游專案建置時å°éŽ–建置 diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_bg.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_bg.properties index 8bdeebb48e4b..0f440840f610 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_bg.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Block\ build\ when\ upstream\ project\ is\ building=\ - \u041d\u0435\u0434\u043e\u043f\u0443\u0441\u043a\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043f\u0440\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0435\u0434\u0448\u0435\u0441\u0442\u0432\u0430\u0449 \u043f\u0440\u043e\u0435\u043a\u0442 + ÐедопуÑкане на изграждане при изграждане на предшеÑтващ проект diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_da.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_da.properties index 1d02b516348a..c91e9d2e67bb 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_da.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Block\ build\ when\ upstream\ project\ is\ building=Blocker byg n\u00e5r upstream projektet bygger +Block\ build\ when\ upstream\ project\ is\ building=Blocker byg nÃ¥r upstream projektet bygger diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_es.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_es.properties index d0d17455bc29..7debc88b1239 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_es.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Block\ build\ when\ upstream\ project\ is\ building=Congelar el lanzamiento cuando haya un proyecto padre ejecutándose +Block\ build\ when\ upstream\ project\ is\ building=Congelar el lanzamiento cuando haya un proyecto padre ejecutándose diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_fr.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_fr.properties index 486597112869..cb5d3a28d0ee 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_fr.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Block\ build\ when\ upstream\ project\ is\ building=Emp\u00EAcher le build quand un projet en amont est en cours de build +Block\ build\ when\ upstream\ project\ is\ building=Empêcher le build quand un projet en amont est en cours de build diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_he.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_he.properties index 92a5edea70e8..abe8faa00f4c 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_he.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Block\ build\ when\ upstream\ project\ is\ building=\u05D7\u05E1\u05D5\u05DD \u05D1\u05E0\u05D9\u05D4 \u05DB\u05D0\u05E9\u05E8 \u05E4\u05E8\u05D5\u05D9\u05E7\u05D8 \u05D0\u05D1 \u05E0\u05D1\u05E0\u05D4 +Block\ build\ when\ upstream\ project\ is\ building=×—×¡×•× ×‘× ×™×” ×›×שר פרויקט ×ב נבנה diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_it.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_it.properties index 8c01365051f0..61b25d6f2a89 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_it.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,4 +22,4 @@ # THE SOFTWARE. Block\ build\ when\ upstream\ project\ is\ building=Blocca la compilazione \ - quando un progetto upstream è in fase di compilazione + quando un progetto upstream è in fase di compilazione diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_ja.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_ja.properties index c36d95e5dc23..7b17d484e1d3 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_ja.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_ja.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Block\ build\ when\ upstream\ project\ is\ building=\ - \u4e0a\u6d41\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u304c\u30d3\u30eb\u30c9\u4e2d\u306e\u5834\u5408\u306f\u30d3\u30eb\u30c9\u3057\u306a\u3044 + 上æµãƒ—ロジェクトãŒãƒ“ルド中ã®å ´åˆã¯ãƒ“ルドã—ãªã„ diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_ko.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_ko.properties index 7ca6348c22e9..e548c91d1aa9 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_ko.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_ko.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Block\ build\ when\ upstream\ project\ is\ building=\uC5C5\uC2A4\uD2B8\uB9BC \uD504\uB85C\uC81D\uD2B8\uAC00 \uBE4C\uB4DC\uD558\uB294 \uB3D9\uC548 \uBE4C\uB4DC \uBA48\uCDA4 +Block\ build\ when\ upstream\ project\ is\ building=업스트림 프로ì íŠ¸ê°€ 빌드하는 ë™ì•ˆ 빌드 멈춤 diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_lt.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_lt.properties index 61411b42e817..481333e3231f 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_lt.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_lt.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Block\ build\ when\ upstream\ project\ is\ building=Blokuoti darb\u0105, kai vykdomas ankstesnis darbas +Block\ build\ when\ upstream\ project\ is\ building=Blokuoti darbÄ…, kai vykdomas ankstesnis darbas diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_nb_NO.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_nb_NO.properties index 4c2c25f94726..2887059b456c 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_nb_NO.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Block\ build\ when\ upstream\ project\ is\ building=Blokk\u00E9r build n\u00E5r upstream prosjekt bygges +Block\ build\ when\ upstream\ project\ is\ building=Blokkér build nÃ¥r upstream prosjekt bygges diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_pt_BR.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_pt_BR.properties index 64657b7ce460..d6b59fb57d21 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Block\ build\ when\ upstream\ project\ is\ building=Bloquear as constru\u00E7\u00F5es enquanto o projeto pai estiver construindo. +Block\ build\ when\ upstream\ project\ is\ building=Bloquear as construções enquanto o projeto pai estiver construindo. diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_ru.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_ru.properties index eee4aeb1684f..52dd9fca5e36 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_ru.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_ru.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Block\ build\ when\ upstream\ project\ is\ building=\u0411\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0441\u0431\u043E\u0440\u043A\u0443, \u043A\u043E\u0433\u0434\u0430 \u043F\u0435\u0440\u0432\u0438\u0447\u043D\u044B\u0439 \u043F\u0440\u043E\u0435\u043A\u0442 \u0441\u043E\u0431\u0438\u0440\u0430\u0435\u0442\u0441\u044F +Block\ build\ when\ upstream\ project\ is\ building=Блокировать Ñборку, когда первичный проект ÑобираетÑÑ diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_sk.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_sk.properties index 14bb7b0a6da1..0dd47967b61f 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_sk.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_sk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Block\ build\ when\ upstream\ project\ is\ building=Zablokuj zostavenie, k\u00FDm sa zostavuje upstream projekt +Block\ build\ when\ upstream\ project\ is\ building=Zablokuj zostavenie, kým sa zostavuje upstream projekt diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_sr.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_sr.properties index 07c76a702ce3..cd4555fb5ca8 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_sr.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Block\ build\ when\ upstream\ project\ is\ building=\u0417\u0430\u0431\u043B\u043E\u043A\u0438\u0440\u0430\u0458 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 \u0434\u043E\u043A \u0441\u0435 \u0433\u0440\u0430\u0434\u0438 upstream \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 +Block\ build\ when\ upstream\ project\ is\ building=Заблокирај изградњу док Ñе гради upstream пројекат diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_sv_SE.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_sv_SE.properties index 2f593f8b9159..8f9bb65e73ee 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_sv_SE.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Block\ build\ when\ upstream\ project\ is\ building=Blockera bygge n\u00E4r uppstr\u00F6msprojekt bygger +Block\ build\ when\ upstream\ project\ is\ building=Blockera bygge när uppströmsprojekt bygger diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_uk.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_uk.properties index 26f55c0978d7..c0fb91417a0a 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_uk.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Block\ build\ when\ upstream\ project\ is\ building=\u0411\u043B\u043E\u043A\u0443\u0432\u0430\u0442\u0438 \u0437\u0431\u0456\u0440\u043A\u0443, \u0434\u043E\u043A\u0438 \u043D\u0430\u0441\u0442\u0443\u043F\u043D\u0438\u0439 \u043F\u0440\u043E\u0435\u043A\u0442 \u0437\u0431\u0438\u0440\u0430\u0454\u0442\u044C\u0441\u044F +Block\ build\ when\ upstream\ project\ is\ building=Блокувати збірку, доки наÑтупний проект збираєтьÑÑ diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_zh_TW.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_zh_TW.properties index 1046a5cad2db..2ef8edbb1496 100644 --- a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Block\ build\ when\ upstream\ project\ is\ building=\u4e0a\u6e38\u5c08\u6848\u5efa\u7f6e\u6642\u5c01\u9396\u5efa\u7f6e +Block\ build\ when\ upstream\ project\ is\ building=上游專案建置時å°éŽ–建置 diff --git a/core/src/main/resources/lib/hudson/project/config-buildWrappers_bg.properties b/core/src/main/resources/lib/hudson/project/config-buildWrappers_bg.properties index 5747360b5271..acd9b6695681 100644 --- a/core/src/main/resources/lib/hudson/project/config-buildWrappers_bg.properties +++ b/core/src/main/resources/lib/hudson/project/config-buildWrappers_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Build\ Environment=\ - \u0421\u0440\u0435\u0434\u0430 \u043f\u0440\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + Среда при изграждане diff --git a/core/src/main/resources/lib/hudson/project/config-buildWrappers_da.properties b/core/src/main/resources/lib/hudson/project/config-buildWrappers_da.properties index e80a83b92d43..a7b8aeed62da 100644 --- a/core/src/main/resources/lib/hudson/project/config-buildWrappers_da.properties +++ b/core/src/main/resources/lib/hudson/project/config-buildWrappers_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Environment=Bygge Milj\u00f8 +Build\ Environment=Bygge Miljø diff --git a/core/src/main/resources/lib/hudson/project/config-buildWrappers_es.properties b/core/src/main/resources/lib/hudson/project/config-buildWrappers_es.properties index 25dc2380539c..9e82674830d3 100644 --- a/core/src/main/resources/lib/hudson/project/config-buildWrappers_es.properties +++ b/core/src/main/resources/lib/hudson/project/config-buildWrappers_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Environment=Entorno de ejecución +Build\ Environment=Entorno de ejecución diff --git a/core/src/main/resources/lib/hudson/project/config-buildWrappers_it.properties b/core/src/main/resources/lib/hudson/project/config-buildWrappers_it.properties index b1c2529c3ba1..f90df1e01c2c 100644 --- a/core/src/main/resources/lib/hudson/project/config-buildWrappers_it.properties +++ b/core/src/main/resources/lib/hudson/project/config-buildWrappers_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/project/config-buildWrappers_ja.properties b/core/src/main/resources/lib/hudson/project/config-buildWrappers_ja.properties index f978bb4e4971..4fcd6fd89caf 100644 --- a/core/src/main/resources/lib/hudson/project/config-buildWrappers_ja.properties +++ b/core/src/main/resources/lib/hudson/project/config-buildWrappers_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Environment=\u30d3\u30eb\u30c9\u74b0\u5883 +Build\ Environment=ビルド環境 diff --git a/core/src/main/resources/lib/hudson/project/config-buildWrappers_ko.properties b/core/src/main/resources/lib/hudson/project/config-buildWrappers_ko.properties index bc78b489aca0..d0891d22e6bf 100644 --- a/core/src/main/resources/lib/hudson/project/config-buildWrappers_ko.properties +++ b/core/src/main/resources/lib/hudson/project/config-buildWrappers_ko.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Build\ Environment=\uBE4C\uB4DC \uD658\uACBD +Build\ Environment=빌드 환경 diff --git a/core/src/main/resources/lib/hudson/project/config-buildWrappers_lv.properties b/core/src/main/resources/lib/hudson/project/config-buildWrappers_lv.properties index 60fba7cbbeba..83076f6f4cb2 100644 --- a/core/src/main/resources/lib/hudson/project/config-buildWrappers_lv.properties +++ b/core/src/main/resources/lib/hudson/project/config-buildWrappers_lv.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Build\ Environment=B\u016Bv\u0113juma vide +Build\ Environment=BÅ«vÄ“juma vide diff --git a/core/src/main/resources/lib/hudson/project/config-buildWrappers_pl.properties b/core/src/main/resources/lib/hudson/project/config-buildWrappers_pl.properties index 790e7ac441c7..6710d4017613 100644 --- a/core/src/main/resources/lib/hudson/project/config-buildWrappers_pl.properties +++ b/core/src/main/resources/lib/hudson/project/config-buildWrappers_pl.properties @@ -19,4 +19,4 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Environment=\u015Arodowisko do uruchomienia +Build\ Environment=Åšrodowisko do uruchomienia diff --git a/core/src/main/resources/lib/hudson/project/config-buildWrappers_pt_BR.properties b/core/src/main/resources/lib/hudson/project/config-buildWrappers_pt_BR.properties index c163eae387be..abaf8b467f3c 100644 --- a/core/src/main/resources/lib/hudson/project/config-buildWrappers_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/project/config-buildWrappers_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Environment=Ambiente de constru\u00E7\u00E3o +Build\ Environment=Ambiente de construção diff --git a/core/src/main/resources/lib/hudson/project/config-buildWrappers_ru.properties b/core/src/main/resources/lib/hudson/project/config-buildWrappers_ru.properties index 50da4a9faf31..396c99fd3ca8 100644 --- a/core/src/main/resources/lib/hudson/project/config-buildWrappers_ru.properties +++ b/core/src/main/resources/lib/hudson/project/config-buildWrappers_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Environment=\u0421\u0440\u0435\u0434\u0430 \u0441\u0431\u043e\u0440\u043a\u0438 +Build\ Environment=Среда Ñборки diff --git a/core/src/main/resources/lib/hudson/project/config-buildWrappers_sr.properties b/core/src/main/resources/lib/hudson/project/config-buildWrappers_sr.properties index 4a8151f6f405..d0da0f1f1603 100644 --- a/core/src/main/resources/lib/hudson/project/config-buildWrappers_sr.properties +++ b/core/src/main/resources/lib/hudson/project/config-buildWrappers_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Build\ Environment=\u041E\u043A\u043E\u043B\u0438\u043D\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 +Build\ Environment=Околина изградње diff --git a/core/src/main/resources/lib/hudson/project/config-buildWrappers_sv_SE.properties b/core/src/main/resources/lib/hudson/project/config-buildWrappers_sv_SE.properties index f54d32b1498f..ac8b0b7fda53 100644 --- a/core/src/main/resources/lib/hudson/project/config-buildWrappers_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/project/config-buildWrappers_sv_SE.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Build\ Environment=Byggmilj\u00F6 +Build\ Environment=Byggmiljö diff --git a/core/src/main/resources/lib/hudson/project/config-buildWrappers_tr.properties b/core/src/main/resources/lib/hudson/project/config-buildWrappers_tr.properties index 782baa273a86..8e6ce91d7db9 100644 --- a/core/src/main/resources/lib/hudson/project/config-buildWrappers_tr.properties +++ b/core/src/main/resources/lib/hudson/project/config-buildWrappers_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Environment=Yap\u0131land\u0131rma Ortam\u0131 +Build\ Environment=Yapılandırma Ortamı diff --git a/core/src/main/resources/lib/hudson/project/config-buildWrappers_zh_TW.properties b/core/src/main/resources/lib/hudson/project/config-buildWrappers_zh_TW.properties index 3cb5b4c1defe..8ba76f906d52 100644 --- a/core/src/main/resources/lib/hudson/project/config-buildWrappers_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/config-buildWrappers_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Environment=\u5efa\u7f6e\u74b0\u5883 +Build\ Environment=建置環境 diff --git a/core/src/main/resources/lib/hudson/project/config-builders_bg.properties b/core/src/main/resources/lib/hudson/project/config-builders_bg.properties index 28548758230c..a8ca6851523e 100644 --- a/core/src/main/resources/lib/hudson/project/config-builders_bg.properties +++ b/core/src/main/resources/lib/hudson/project/config-builders_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Add\ build\ step=\ - \u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0441\u0442\u044a\u043f\u043a\u0430 \u043f\u0440\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + ДобавÑне на Ñтъпка при изграждане Build=\ - \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + Изграждане diff --git a/core/src/main/resources/lib/hudson/project/config-builders_da.properties b/core/src/main/resources/lib/hudson/project/config-builders_da.properties index f810680311e9..8e72c1f32b5b 100644 --- a/core/src/main/resources/lib/hudson/project/config-builders_da.properties +++ b/core/src/main/resources/lib/hudson/project/config-builders_da.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ build\ step=Tilf\u00f8j byggetrin +Add\ build\ step=Tilføj byggetrin Build=Byg diff --git a/core/src/main/resources/lib/hudson/project/config-builders_de.properties b/core/src/main/resources/lib/hudson/project/config-builders_de.properties index 7457549ebdbb..d9466cfec983 100644 --- a/core/src/main/resources/lib/hudson/project/config-builders_de.properties +++ b/core/src/main/resources/lib/hudson/project/config-builders_de.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Build=Buildverfahren -Add\ build\ step=Build-Schritt hinzufügen +Add\ build\ step=Build-Schritt hinzufügen diff --git a/core/src/main/resources/lib/hudson/project/config-builders_es.properties b/core/src/main/resources/lib/hudson/project/config-builders_es.properties index 5c6ed34fc6c2..e95eabec7feb 100644 --- a/core/src/main/resources/lib/hudson/project/config-builders_es.properties +++ b/core/src/main/resources/lib/hudson/project/config-builders_es.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Build=Ejecutar -Add\ build\ step=Añadir un nuevo paso +Add\ build\ step=Añadir un nuevo paso diff --git a/core/src/main/resources/lib/hudson/project/config-builders_fr.properties b/core/src/main/resources/lib/hudson/project/config-builders_fr.properties index 422f450047e5..83ad69e8de0f 100644 --- a/core/src/main/resources/lib/hudson/project/config-builders_fr.properties +++ b/core/src/main/resources/lib/hudson/project/config-builders_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ build\ step=Ajouter une étape au build +Add\ build\ step=Ajouter une étape au build diff --git a/core/src/main/resources/lib/hudson/project/config-builders_it.properties b/core/src/main/resources/lib/hudson/project/config-builders_it.properties index 118a4500fc11..ea7d03ee113c 100644 --- a/core/src/main/resources/lib/hudson/project/config-builders_it.properties +++ b/core/src/main/resources/lib/hudson/project/config-builders_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/project/config-builders_ja.properties b/core/src/main/resources/lib/hudson/project/config-builders_ja.properties index d022e87af065..f47865e4e0d8 100644 --- a/core/src/main/resources/lib/hudson/project/config-builders_ja.properties +++ b/core/src/main/resources/lib/hudson/project/config-builders_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ build\ step=\u30d3\u30eb\u30c9\u624b\u9806\u306e\u8ffd\u52a0 -Build=\u30d3\u30eb\u30c9 +Add\ build\ step=ビルド手順ã®è¿½åŠ  +Build=ビルド diff --git a/core/src/main/resources/lib/hudson/project/config-builders_lt.properties b/core/src/main/resources/lib/hudson/project/config-builders_lt.properties index 0f98a172042e..a2bda6e44790 100644 --- a/core/src/main/resources/lib/hudson/project/config-builders_lt.properties +++ b/core/src/main/resources/lib/hudson/project/config-builders_lt.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Add\ build\ step=Prid\u0117ti darbo \u017Eingsn\u012F +Add\ build\ step=PridÄ—ti darbo žingsnį Build=Darbas diff --git a/core/src/main/resources/lib/hudson/project/config-builders_lv.properties b/core/src/main/resources/lib/hudson/project/config-builders_lv.properties index d4d7c1fe73c9..c95977186a1f 100644 --- a/core/src/main/resources/lib/hudson/project/config-builders_lv.properties +++ b/core/src/main/resources/lib/hudson/project/config-builders_lv.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Add\ build\ step=Pievienot b\u016Bv\u0113juma soli -Build=B\u016Bv\u0113jums +Add\ build\ step=Pievienot bÅ«vÄ“juma soli +Build=BÅ«vÄ“jums diff --git a/core/src/main/resources/lib/hudson/project/config-builders_pt_BR.properties b/core/src/main/resources/lib/hudson/project/config-builders_pt_BR.properties index 99e345a5b26b..9521a169df00 100644 --- a/core/src/main/resources/lib/hudson/project/config-builders_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/project/config-builders_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Build=Construir -Add\ build\ step=Adicionar passo na constru\u00E7\u00E3o +Add\ build\ step=Adicionar passo na construção diff --git a/core/src/main/resources/lib/hudson/project/config-builders_ru.properties b/core/src/main/resources/lib/hudson/project/config-builders_ru.properties index ba33f19c313b..e6aed12eaf77 100644 --- a/core/src/main/resources/lib/hudson/project/config-builders_ru.properties +++ b/core/src/main/resources/lib/hudson/project/config-builders_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=\u0421\u0431\u043e\u0440\u043a\u0430 -Add\ build\ step=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0448\u0430\u0433 \u0441\u0431\u043e\u0440\u043a\u0438 +Build=Сборка +Add\ build\ step=Добавить шаг Ñборки diff --git a/core/src/main/resources/lib/hudson/project/config-builders_sr.properties b/core/src/main/resources/lib/hudson/project/config-builders_sr.properties index 1d0c2302bcdd..6cc1fe0d64eb 100644 --- a/core/src/main/resources/lib/hudson/project/config-builders_sr.properties +++ b/core/src/main/resources/lib/hudson/project/config-builders_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Build=\u0418\u0437\u0433\u0440\u0430\u0434\u045A\u0430 -Add\ build\ step=\u0414\u043E\u0434\u0430\u0458 \u043A\u043E\u0440\u0430\u043A \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0438 +Build=Изградња +Add\ build\ step=Додај корак изградњи diff --git a/core/src/main/resources/lib/hudson/project/config-builders_sv_SE.properties b/core/src/main/resources/lib/hudson/project/config-builders_sv_SE.properties index 68596139a345..df9d703333ed 100644 --- a/core/src/main/resources/lib/hudson/project/config-builders_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/project/config-builders_sv_SE.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Add\ build\ step=L\u00E4gg till bygg-steg +Add\ build\ step=Lägg till bygg-steg Build=Bygge diff --git a/core/src/main/resources/lib/hudson/project/config-builders_tr.properties b/core/src/main/resources/lib/hudson/project/config-builders_tr.properties index c564107081e8..4a9473f35148 100644 --- a/core/src/main/resources/lib/hudson/project/config-builders_tr.properties +++ b/core/src/main/resources/lib/hudson/project/config-builders_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Yap\u0131land\u0131rma -Add\ build\ step=Yap\u0131land\u0131rma ad\u0131m\u0131 ekle +Build=Yapılandırma +Add\ build\ step=Yapılandırma adımı ekle diff --git a/core/src/main/resources/lib/hudson/project/config-builders_zh_TW.properties b/core/src/main/resources/lib/hudson/project/config-builders_zh_TW.properties index 70afc0423a82..44b6d4ac9907 100644 --- a/core/src/main/resources/lib/hudson/project/config-builders_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/config-builders_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ build\ step=\u65b0\u589e\u5efa\u7f6e\u6b65\u9a5f -Build=\u5EFA\u7F6E +Add\ build\ step=新增建置步驟 +Build=建置 diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_bg.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_bg.properties index 560514668689..4edfb334c721 100644 --- a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_bg.properties +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_bg.properties @@ -22,4 +22,4 @@ # Execute concurrent builds if necessary title.concurrentbuilds=\ - \u041f\u0440\u0438 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430\u0442 \u0435\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u043d\u044f\u043a\u043e\u043b\u043a\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f + При необходимоÑÑ‚ да Ñе изпълнÑват едновременно нÑколко Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_da.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_da.properties index 87a59af54bb0..c0276e6ab124 100644 --- a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_da.properties +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title.concurrentbuilds=K\u00f8r parallelle byg om n\u00f8dvendigt +title.concurrentbuilds=Kør parallelle byg om nødvendigt diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_de.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_de.properties index c41ee68f1c59..61011381c5dd 100644 --- a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_de.properties +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title.concurrentbuilds=Parallele Builds ausführen, wenn notwendig +title.concurrentbuilds=Parallele Builds ausführen, wenn notwendig diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_fr.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_fr.properties index dfc65cfb96af..eed7103c54c9 100644 --- a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_fr.properties +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title.concurrentbuilds=Ex\u00E9cuter des builds simultan\u00E9ment si n\u00E9cessaire +title.concurrentbuilds=Exécuter des builds simultanément si nécessaire diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_it.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_it.properties index 5e86d30f56fe..7a0e071f5b0e 100644 --- a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_it.properties +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_ja.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_ja.properties index be4b78061703..25ae201885ad 100644 --- a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_ja.properties +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title.concurrentbuilds=\u30d3\u30eb\u30c9\u3092\u4e26\u884c\u5b9f\u884c +title.concurrentbuilds=ビルドを並行実行 diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_ko.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_ko.properties index 57ae1adf7df6..57bcec3c963b 100644 --- a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_ko.properties +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_ko.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -title.concurrentbuilds=\uD544\uC694\uD55C \uACBD\uC6B0 concurrent \uBE4C\uB4DC \uC2E4\uD589 +title.concurrentbuilds=필요한 경우 concurrent 빌드 실행 diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_pl.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_pl.properties index 408c25f9e59d..9aa395682c93 100644 --- a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_pl.properties +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_pl.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -title.concurrentbuilds=Wykonuj zadania wsp\u00F3\u0142bie\u017Cnie, je\u015Bli zajdzie potrzeba +title.concurrentbuilds=Wykonuj zadania współbieżnie, jeÅ›li zajdzie potrzeba diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_pt_BR.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_pt_BR.properties index f971367116dc..3d8a82725fc0 100644 --- a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title.concurrentbuilds=Execute as constru\u00E7\u00F5es se necess\u00E1rio +title.concurrentbuilds=Execute as construções se necessário diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_ru.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_ru.properties index c9cc4a6658a5..9844b5349552 100644 --- a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_ru.properties +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_ru.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -title.concurrentbuilds=\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u043f\u0430\u0440\u0430\u043b\u043b\u0435\u043b\u044c\u043d\u044b\u0439 \u0437\u0430\u043f\u0443\u0441\u043a \u0437\u0430\u0434\u0430\u0447\u0438 +title.concurrentbuilds=Разрешить параллельный запуÑк задачи diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_sk.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_sk.properties index a4454ed23989..2caecfc0603c 100644 --- a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_sk.properties +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_sk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -title.concurrentbuilds=Spusti paralen\u00E9 zostavenia, ak je potrebn\u00E9 +title.concurrentbuilds=Spusti paralené zostavenia, ak je potrebné diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_sr.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_sr.properties index 7a677c66de69..0919201f2f8e 100644 --- a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_sr.properties +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -title.concurrentbuilds=\u0418\u0437\u0432\u0440\u045A\u0438 \u043F\u0430\u0440\u0430\u043B\u0435\u043B\u043D\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 \u0430\u043A\u043E \u0431\u0443\u0434\u0435 \u0431\u0438\u043B\u043E \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E +title.concurrentbuilds=Изврњи паралелно изградње ако буде било потребно diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_sv_SE.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_sv_SE.properties index 1c6e2044a8c7..b5e608f1bad2 100644 --- a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_sv_SE.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -title.concurrentbuilds=K\u00F6r parallella byggen om n\u00F6dv\u00E4ndigt +title.concurrentbuilds=Kör parallella byggen om nödvändigt diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_tr.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_tr.properties index 549c2c16fcbf..9f65dcded217 100644 --- a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_tr.properties +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_tr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -title.concurrentbuilds=E\u011Fer gerekliyse e\u015F zamanl\u0131 yapland\u0131rmalar\u0131 \u00E7al\u0131\u015Ft\u0131r +title.concurrentbuilds=EÄŸer gerekliyse eÅŸ zamanlı yaplandırmaları çalıştır diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_uk.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_uk.properties index 8ac424f74863..94d31c98fd40 100644 --- a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_uk.properties +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -title.concurrentbuilds=\u0412\u0438\u043A\u043E\u043D\u0430\u0442\u0438 \u043F\u0430\u0440\u0430\u043B\u0435\u043B\u044C\u043D\u0456 \u0437\u0431\u0456\u0440\u043A\u0438 \u0432 \u0440\u0430\u0437\u0456 \u043D\u0435\u043E\u0431\u0445\u0456\u0434\u043D\u043E\u0441\u0442\u0456 +title.concurrentbuilds=Виконати паралельні збірки в разі необхідноÑÑ‚Ñ– diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_zh_TW.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_zh_TW.properties index 019ac84fa6d3..426a1fe55e99 100644 --- a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_zh_TW.properties @@ -19,4 +19,4 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title.concurrentbuilds=\u5fc5\u8981\u6642\u540c\u6642\u57f7\u884c\u591a\u500b\u5efa\u7f6e +title.concurrentbuilds=å¿…è¦æ™‚åŒæ™‚執行多個建置 diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_bg.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_bg.properties index 118aec86f5ec..40ae16e4f87e 100644 --- a/core/src/main/resources/lib/hudson/project/config-customWorkspace_bg.properties +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Directory=\ - \u0414\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f + Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Use\ custom\ workspace=\ - \u0414\u0440\u0443\u0433\u0430 \u0440\u0430\u0431\u043e\u0442\u043d\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f + Друга работна Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_da.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_da.properties index 4008cecd0602..b5354eeb31ed 100644 --- a/core/src/main/resources/lib/hudson/project/config-customWorkspace_da.properties +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_da.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Use\ custom\ workspace=Benyt s\u00e6rligt arbejdsomr\u00e5de +Use\ custom\ workspace=Benyt særligt arbejdsomrÃ¥de Directory=Direktorie diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_fr.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_fr.properties index 88362840f2a7..972f4520dae3 100644 --- a/core/src/main/resources/lib/hudson/project/config-customWorkspace_fr.properties +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Use\ custom\ workspace=Utiliser un répertoire de travail spécifique -Directory=Répertoire +Use\ custom\ workspace=Utiliser un répertoire de travail spécifique +Directory=Répertoire diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_he.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_he.properties index 4ff50119a236..15686cc4d33e 100644 --- a/core/src/main/resources/lib/hudson/project/config-customWorkspace_he.properties +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_he.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Directory=\u05EA\u05D9\u05E7\u05D9\u05D4 -Use\ custom\ workspace=\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05DE\u05E9\u05D8\u05D7 \u05E2\u05D1\u05D5\u05D3\u05D4 \u05DE\u05D5\u05EA\u05D0\u05DD \u05D0\u05D9\u05E9\u05D9\u05EA +Directory=תיקיה +Use\ custom\ workspace=השתמש במשטח עבודה מות×× ×ישית diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_hu.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_hu.properties index 5cfbec05e4d6..9f178e75ba9c 100644 --- a/core/src/main/resources/lib/hudson/project/config-customWorkspace_hu.properties +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_hu.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Directory=K\u00F6nyvt\u00E1r -Use\ custom\ workspace=Saj\u00E1t workspace haszn\u00E1lata +Directory=Könyvtár +Use\ custom\ workspace=Saját workspace használata diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_it.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_it.properties index 73f48c64e542..575079ef127f 100644 --- a/core/src/main/resources/lib/hudson/project/config-customWorkspace_it.properties +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_ja.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_ja.properties index 7efce546a8bc..1d6a2c73aff8 100644 --- a/core/src/main/resources/lib/hudson/project/config-customWorkspace_ja.properties +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Use\ custom\ workspace=\u30ab\u30b9\u30bf\u30e0\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9\u3092\u4f7f\u7528 -Directory=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea +Use\ custom\ workspace=カスタムワークスペースを使用 +Directory=ディレクトリ diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_ko.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_ko.properties index d4d1ebf64ab6..5c62274a70ae 100644 --- a/core/src/main/resources/lib/hudson/project/config-customWorkspace_ko.properties +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_ko.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Directory=\uB514\uB809\uD130\uB9AC -Use\ custom\ workspace=\uC0AC\uC6A9\uC790 \uBE4C\uB4DC \uACBD\uB85C \uC0AC\uC6A9 +Directory=디렉터리 +Use\ custom\ workspace=ì‚¬ìš©ìž ë¹Œë“œ 경로 사용 diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_lt.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_lt.properties index 246e175955d3..32d673ca015d 100644 --- a/core/src/main/resources/lib/hudson/project/config-customWorkspace_lt.properties +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_lt.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Use\ custom\ workspace=Naudoti savo darbo aplink\u0105 +Use\ custom\ workspace=Naudoti savo darbo aplinkÄ… Directory=Aplankas diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_pt_BR.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_pt_BR.properties index 34a550a13881..d8d372b230ff 100644 --- a/core/src/main/resources/lib/hudson/project/config-customWorkspace_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Use\ custom\ workspace=Usar workspace customizado -Directory=Diret\u00f3rio +Directory=Diretório diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_pt_PT.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_pt_PT.properties index 4aa8af459452..8cbffa057e72 100644 --- a/core/src/main/resources/lib/hudson/project/config-customWorkspace_pt_PT.properties +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_pt_PT.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Directory=Diret\u00F3rio +Directory=Diretório diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_ru.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_ru.properties index 55133377260f..e206ccbbd2a1 100644 --- a/core/src/main/resources/lib/hudson/project/config-customWorkspace_ru.properties +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Use\ custom\ workspace=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0434\u0440\u0443\u0433\u0443\u044e \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044e -Directory=\u0414\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f +Use\ custom\ workspace=ИÑпользовать другую директорию +Directory=Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_sk.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_sk.properties index 69e47bad8646..6bfb50e1160f 100644 --- a/core/src/main/resources/lib/hudson/project/config-customWorkspace_sk.properties +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_sk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Directory=Adres\u00E1r -Use\ custom\ workspace=Pou\u017Ei vlastn\u00FD pracovn\u00FD priestor +Directory=Adresár +Use\ custom\ workspace=Použi vlastný pracovný priestor diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_sr.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_sr.properties index f5857ad05b57..abe913fc4297 100644 --- a/core/src/main/resources/lib/hudson/project/config-customWorkspace_sr.properties +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Use\ custom\ workspace=\u041A\u043E\u0440\u0438\u0441\u0442\u0438 \u043F\u043E\u0440\u0443\u0447\u0435\u043D\u0438 \u0440\u0430\u0434\u043D\u0438 \u043F\u0440\u043E\u0441\u0442\u043E\u0440 -Directory=\u0414\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C +Use\ custom\ workspace=КориÑти поручени радни проÑтор +Directory=Директоријум diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_tr.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_tr.properties index 23ee276e4968..b5d88885e9b3 100644 --- a/core/src/main/resources/lib/hudson/project/config-customWorkspace_tr.properties +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Use\ custom\ workspace=\u00d6zel \u00e7al\u0131\u015fma alan\u0131n\u0131 kullan +Use\ custom\ workspace=Özel çalışma alanını kullan Directory=Dizin diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_uk.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_uk.properties index 485885f692e3..d9e2230b2716 100644 --- a/core/src/main/resources/lib/hudson/project/config-customWorkspace_uk.properties +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_uk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Directory=\u0414\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0456\u044F -Use\ custom\ workspace=\u0412\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u0441\u0432\u0456\u0439 \u0440\u043E\u0431\u043E\u0447\u0438\u0439 \u043F\u0440\u043E\u0441\u0442\u0456\u0440 +Directory=Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ñ–Ñ +Use\ custom\ workspace=ВикориÑтовувати Ñвій робочий проÑÑ‚Ñ–Ñ€ diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_zh_TW.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_zh_TW.properties index c9ed81793eda..85488e63716a 100644 --- a/core/src/main/resources/lib/hudson/project/config-customWorkspace_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_zh_TW.properties @@ -21,5 +21,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Directory=\u76ee\u9304 -Use\ custom\ workspace=\u4f7f\u7528\u81ea\u8a02\u5de5\u4f5c\u5340 +Directory=目錄 +Use\ custom\ workspace=ä½¿ç”¨è‡ªè¨‚å·¥ä½œå€ diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_bg.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_bg.properties index d640e48256c6..694c726c53ca 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_bg.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Disable\ this\ project=\ - \u0418\u0437\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u043e\u0437\u0438 \u043f\u0440\u043e\u0435\u043a\u0442 + Изключване на този проект Disable\ Build=\ - \u0421\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e + Спиране на изграждането No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=\ - \u0414\u043e \u0432\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043d\u044f\u043c\u0430 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430\u0442 \u043d\u043e\u0432\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f. + До включването на проекта нÑма да Ñе изпълнÑват нови изгражданиÑ. diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_da.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_da.properties index 66d121002c8f..b6fe2f7f998e 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_da.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_da.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ this\ project=Sl\u00e5 Byg Fra -No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Der vil ikke blive udf\u00f8rt flere byg f\u00f8r projektet bliver sl\u00e5et til igen. +Disable\ this\ project=SlÃ¥ Byg Fra +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Der vil ikke blive udført flere byg før projektet bliver slÃ¥et til igen. diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_es.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_es.properties index 5e658f9de1e4..049a3a487cb6 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_es.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ this\ project=Desactivar la ejecución -No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=No se ejecutará nuevamente hasta que el proyecto sea reactivado. +Disable\ this\ project=Desactivar la ejecución +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=No se ejecutará nuevamente hasta que el proyecto sea reactivado. diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_fr.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_fr.properties index 11facdcf214c..77855e156551 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_fr.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ this\ project=D\u00e9sactiver le projet -No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Aucun nouveau build ne sera ex\u00e9cut\u00e9 jusqu''\u00e0 ce que le projet soit r\u00e9activ\u00e9. +Disable\ this\ project=Désactiver le projet +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Aucun nouveau build ne sera exécuté jusqu''à ce que le projet soit réactivé. diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_he.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_he.properties index 0abc35b1bd68..9a8ce742f861 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_he.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_he.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Disable\ this\ project=\u05E9\u05EA\u05E7 \u05D1\u05E0\u05D9\u05D4 -No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=\u05D1\u05E0\u05D9\u05D5\u05EA \u05D7\u05D3\u05E9\u05D5\u05EA \u05DC\u05D0 \u05D9\u05D5\u05E4\u05E2\u05DC\u05D5 \u05E2\u05D3 \u05E9\u05D1\u05E0\u05D9\u05D4 \u05D6\u05D5 \u05EA\u05D0\u05D5\u05E4\u05E9\u05E8 \u05D1\u05E9\u05E0\u05D9\u05EA +Disable\ this\ project=שתק בניה +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=בניות חדשות ×œ× ×™×•×¤×¢×œ×• עד שבניה זו ת×ופשר בשנית diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_hu.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_hu.properties index 57047b4d70e1..b476208f57d6 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_hu.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_hu.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Disable\ this\ project=\u00C9p\u00EDt\u00E9s tilt\u00E1sa -No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=A projekt \u00FAjraenged\u00E9lyez\u00E9s\u00E9ig nem lesz \u00FAj ford\u00EDt\u00E1s elind\u00EDtva. +Disable\ this\ project=Építés tiltása +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=A projekt újraengedélyezéséig nem lesz új fordítás elindítva. diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_it.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_it.properties index aebd26143bc5..0412a8f5ecd0 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_it.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_ja.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_ja.properties index c04759fdc00d..6610e7fad5f2 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_ja.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ this\ project=\u30d3\u30eb\u30c9\u7121\u52b9\u5316 -No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u304c\u518d\u3073\u6709\u52b9\u5316\u3055\u308c\u308b\u307e\u3067\u65b0\u3057\u3044\u30d3\u30eb\u30c9\u306f\u884c\u308f\u308c\u306a\u304f\u306a\u308a\u307e\u3059 +Disable\ this\ project=ビルド無効化 +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=プロジェクトãŒå†ã³æœ‰åŠ¹åŒ–ã•ã‚Œã‚‹ã¾ã§æ–°ã—ã„ビルドã¯è¡Œã‚ã‚Œãªããªã‚Šã¾ã™ diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_ko.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_ko.properties index 355ef2daeaa2..5e8d354f0614 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_ko.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_ko.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ this\ project=\uBE4C\uB4DC \uC548\uD568 -No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=\uD504\uB85C\uC81D\uD2B8\uAC00 \uB2E4\uC2DC \uBE4C\uB4DC\uB97C \uD560 \uB54C\uAE4C\uC9C0 \uC0C8\uB85C\uC6B4 \uBE4C\uB4DC\uAC00 \uC2E4\uD589\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4. +Disable\ this\ project=빌드 안함 +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=프로ì íŠ¸ê°€ 다시 빌드를 í•  때까지 새로운 빌드가 실행ë˜ì§€ 않습니다. diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_lt.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_lt.properties index d75e08fca739..9b3f482f1d9e 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_lt.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_lt.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Darbas nebus vykdomas, kol nebus v\u0117l \u012fjungtas. -Disable\ this\ project=I\u0161jungti darb\u0105 +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Darbas nebus vykdomas, kol nebus vÄ—l įjungtas. +Disable\ this\ project=IÅ¡jungti darbÄ… diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_lv.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_lv.properties index 5251258cf72e..9a8f2f055bfb 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_lv.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_lv.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Jauni b\u016Bv\u0113jumi netiks veikti l\u012Bdz projekts netiks iesp\u0113jots +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Jauni bÅ«vÄ“jumi netiks veikti lÄ«dz projekts netiks iespÄ“jots diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_nb_NO.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_nb_NO.properties index 05e1045842d0..0fcee838f575 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_nb_NO.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Disable\ this\ project=Deaktiver bygg -No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Ingen nye builds blir utf\u00F8rt f\u00F8r prosjektet er reaktivert. +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Ingen nye builds blir utført før prosjektet er reaktivert. diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_pt_BR.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_pt_BR.properties index 60ac430747ba..5e318aca88ff 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ this\ project=Desabilitar as constru\u00E7\u00F5es +Disable\ this\ project=Desabilitar as construções diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_ru.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_ru.properties index cdba0f675250..833af488ee19 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_ru.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ this\ project=\u041f\u0440\u0438\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u0431\u043e\u0440\u043a\u0438 +Disable\ this\ project=ПриоÑтановить Ñборки diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_sk.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_sk.properties index 315b7a2623a9..b1bd5e0240c5 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_sk.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_sk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Disable\ this\ project=Zak\u00E1\u017E zostavenie -No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Nebud\u00FA sa da\u0165 sp\u00FA\u0161\u0165a\u0165 nov\u00E9 zostavenia, k\u00FDm sa projekt znova nepovol\u00ED. +Disable\ this\ project=Zakáž zostavenie +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Nebudú sa daÅ¥ spúšťaÅ¥ nové zostavenia, kým sa projekt znova nepovolí. diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_sr.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_sr.properties index a1eb33cb22c9..7f24179d0ea0 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_sr.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Disable\ this\ project=\u041E\u043D\u0435\u043C\u043E\u0433\u0443\u045B\u0438 \u043E\u0432\u0430\u0458 \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 -Disable\ Build=\u041E\u043D\u0435\u043C\u043E\u0433\u0443\u045B\u0438 \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 -No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=\u041D\u043E\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u043D\u0435\u045B\u0435 \u0431\u0438\u0442\u0438 \u0438\u0437\u0432\u0440\u0448\u0438\u0432\u0430\u043D\u0430 \u0434\u043E\u043A \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 \u043D\u0438\u0458\u0435 \u043F\u043E\u043D\u043E\u0432\u043E \u043E\u043C\u043E\u0433\u0443\u045B\u0435\u043D. +Disable\ this\ project=Онемогући овај пројекат +Disable\ Build=Онемогући пројекат +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Ðова изградња неће бити извршивана док пројекат није поново омогућен. diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_sv_SE.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_sv_SE.properties index dbe3eaddafcb..2738afb6e103 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_sv_SE.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Disable\ this\ project=Inaktivera bygge -No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Inga nya byggen utf\u00F6rs f\u00F6rr\u00E4n projektet aktiveras igen. +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Inga nya byggen utförs förrän projektet aktiveras igen. diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_tr.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_tr.properties index 15a58e51c62a..7503a2947110 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_tr.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ this\ project=Yap\u0131land\u0131rmay\u0131 devre d\u0131\u015f\u0131 b\u0131rak -No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Proje yeniden devreye al\u0131nana kadar yeni yap\u0131land\u0131rma \u00e7al\u0131\u015ft\u0131r\u0131lmayacakt\u0131r. +Disable\ this\ project=Yapılandırmayı devre dışı bırak +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Proje yeniden devreye alınana kadar yeni yapılandırma çalıştırılmayacaktır. diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_uk.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_uk.properties index 7e01441537a6..cfc71f0b928c 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_uk.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_uk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Disable\ this\ project=\u0414\u0435\u0430\u043A\u0442\u0438\u0432\u0443\u0432\u0430\u0442\u0438 \u0431\u0456\u043B\u0434 -No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=\u041D\u0435 \u0431\u0443\u0434\u0443\u0432\u0430\u0442\u0438 \u0434\u043E\u043A\u0438 \u043F\u0440\u043E\u0435\u043A\u0442 \u043D\u0435 \u0434\u043E\u0437\u0432\u043E\u043B\u044F\u0442\u044C +Disable\ this\ project=Деактивувати білд +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Ðе будувати доки проект не дозволÑÑ‚ÑŒ diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_zh_TW.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_zh_TW.properties index de744a52bf3c..40ca0826a548 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ this\ project=\u505c\u7528\u6b64\u5c08\u6848 -No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=\u5728\u5c08\u6848\u88ab\u91cd\u65b0\u555f\u7528\u524d\u5c07\u4e0d\u518d\u57f7\u884c\u65b0\u7684\u5efa\u7f6e +Disable\ this\ project=åœç”¨æ­¤å°ˆæ¡ˆ +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=在專案被é‡æ–°å•Ÿç”¨å‰å°‡ä¸å†åŸ·è¡Œæ–°çš„建置 diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_bg.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_bg.properties index 72e7b5b91e54..497270900cdf 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers2_bg.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Add\ post-build\ action=\ - \u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0441\u043b\u0435\u0434 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + ДобавÑне на дейÑтвие Ñлед изграждане Post-build\ Actions=\ - \u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441\u043b\u0435\u0434 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + ДейÑÑ‚Ð²Ð¸Ñ Ñлед изграждане diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_de.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_de.properties index 0fbb6ddfcd59..d85f16f907f9 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers2_de.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_de.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ post-build\ action=Post-Build-Aktion hinzuf\u00FCgen +Add\ post-build\ action=Post-Build-Aktion hinzufügen Post-build\ Actions=Post-Build-Aktionen diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_es.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_es.properties index db5bdafd55b4..9971afb64b37 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers2_es.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Post-build\ Actions=Acciones para ejecutar después. -Add\ post-build\ action=Añadir una acción +Post-build\ Actions=Acciones para ejecutar después. +Add\ post-build\ action=Añadir una acción diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_fr.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_fr.properties index acc46768bbce..39ccaefffed1 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers2_fr.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ post-build\ action=Ajouter une action apr\u00E8s le build -Post-build\ Actions=Actions à la suite du build +Add\ post-build\ action=Ajouter une action après le build +Post-build\ Actions=Actions à la suite du build diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_it.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_it.properties index f407d6bfc83f..1675e48d9833 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers2_it.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_ja.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_ja.properties index 394caab4b878..6a76b88e249a 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers2_ja.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Post-build\ Actions=\u30d3\u30eb\u30c9\u5f8c\u306e\u51e6\u7406 -Add\ post-build\ action=\u30d3\u30eb\u30c9\u5f8c\u306e\u51e6\u7406\u306e\u8ffd\u52a0 +Post-build\ Actions=ビルド後ã®å‡¦ç† +Add\ post-build\ action=ビルド後ã®å‡¦ç†ã®è¿½åŠ  diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_ko.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_ko.properties index 29c22b11b5db..c307fddf5bf2 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers2_ko.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_ko.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Add\ post-build\ action=\uBE4C\uB4DC \uD6C4 \uC870\uCE58 \uCD94\uAC00 -Post-build\ Actions=\uBE4C\uB4DC \uD6C4 \uC870\uCE58 +Add\ post-build\ action=빌드 후 조치 추가 +Post-build\ Actions=빌드 후 조치 diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_lt.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_lt.properties index 22b5c33476c1..c422403c5660 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers2_lt.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_lt.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Add\ post-build\ action=Prid\u0117ti veiksm\u0105 po darbo +Add\ post-build\ action=PridÄ—ti veiksmÄ… po darbo Post-build\ Actions=Veiksmai po darbo diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_lv.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_lv.properties index 0a3620f283c0..53db9fd78a55 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers2_lv.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_lv.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Add\ post-build\ action=Pievienot p\u0113c-b\u016Bv\u0113juma darb\u012Bbas -Post-build\ Actions=P\u0113c-b\u016Bv\u0113juma darb\u012Bbas +Add\ post-build\ action=Pievienot pÄ“c-bÅ«vÄ“juma darbÄ«bas +Post-build\ Actions=PÄ“c-bÅ«vÄ“juma darbÄ«bas diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_pt_BR.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_pt_BR.properties index 1f5304b02872..044d88fbf164 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers2_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Post-build\ Actions=A\u00E7\u00F5es de p\u00F3s-constru\u00E7\u00E3o -Add\ post-build\ action=Adicionar a\u00E7\u00E3o de p\u00F3s-constru\u00E7\u00E3o +Post-build\ Actions=Ações de pós-construção +Add\ post-build\ action=Adicionar ação de pós-construção diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_ru.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_ru.properties index 97ed35911207..41627daa0aa0 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers2_ru.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ post-build\ action=\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0448\u0430\u0433 \u043F\u043E\u0441\u043B\u0435 \u0441\u0431\u043E\u0440\u043A\u0438 -Post-build\ Actions=\u041f\u043e\u0441\u043b\u0435\u0441\u0431\u043e\u0440\u043e\u0447\u043d\u044b\u0435 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 +Add\ post-build\ action=Добавить шаг поÑле Ñборки +Post-build\ Actions=ПоÑлеÑборочные операции diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_sr.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_sr.properties index fb799a8a9e13..5062fb9ca223 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers2_sr.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Post-build\ Actions=\u0410\u043A\u0446\u0438\u0458\u0435 \u043F\u043E\u0441\u043B\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 -Add\ post-build\ action=\u0414\u043E\u0434\u0430\u0458 \u0430\u043A\u0446\u0438\u0458\u0443 \u043F\u043E\u0441\u043B\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 +Post-build\ Actions=Ðкције поÑле изградње +Add\ post-build\ action=Додај акцију поÑле изградње diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_tr.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_tr.properties index f9d9ee22f07e..62d71e587eb2 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers2_tr.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Post-build\ Actions=Yap\u0131land\u0131rma-sonras\u0131 Aksiyonlar +Post-build\ Actions=Yapılandırma-sonrası Aksiyonlar diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_zh_TW.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_zh_TW.properties index 583f37c52b55..ebb0faec4574 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers2_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ post-build\ action=\u65b0\u589e\u5efa\u7f6e\u5f8c\u52d5\u4f5c -Post-build\ Actions=\u5efa\u7f6e\u5f8c\u52d5\u4f5c +Add\ post-build\ action=新增建置後動作 +Post-build\ Actions=建置後動作 diff --git a/core/src/main/resources/lib/hudson/project/config-publishers_bg.properties b/core/src/main/resources/lib/hudson/project/config-publishers_bg.properties index c2c5d3727292..35096f7059e1 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers_bg.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Post-build\ Actions=\ - \u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441\u043b\u0435\u0434 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + ДейÑÑ‚Ð²Ð¸Ñ Ñлед изграждане diff --git a/core/src/main/resources/lib/hudson/project/config-publishers_es.properties b/core/src/main/resources/lib/hudson/project/config-publishers_es.properties index a7f21c53e6fc..4e0499dedcbd 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers_es.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Post-build\ Actions=Acciones para ejecutar después. +Post-build\ Actions=Acciones para ejecutar después. diff --git a/core/src/main/resources/lib/hudson/project/config-publishers_fr.properties b/core/src/main/resources/lib/hudson/project/config-publishers_fr.properties index 644e8793c013..3e07c482a2fd 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers_fr.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Post-build\ Actions=Actions à la suite du build +Post-build\ Actions=Actions à la suite du build diff --git a/core/src/main/resources/lib/hudson/project/config-publishers_it.properties b/core/src/main/resources/lib/hudson/project/config-publishers_it.properties index 19e903417647..56161fc999d3 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers_it.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/project/config-publishers_ja.properties b/core/src/main/resources/lib/hudson/project/config-publishers_ja.properties index 136ffc852bd8..19555eb34718 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers_ja.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Post-build\ Actions=\u30d3\u30eb\u30c9\u5f8c\u306e\u51e6\u7406 +Post-build\ Actions=ビルド後ã®å‡¦ç† diff --git a/core/src/main/resources/lib/hudson/project/config-publishers_pt_BR.properties b/core/src/main/resources/lib/hudson/project/config-publishers_pt_BR.properties index 17fdee36fffe..40ab58d98228 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Post-build\ Actions=A\u00E7\u00F5es de p\u00F3s-constru\u00E7\u00E3o +Post-build\ Actions=Ações de pós-construção diff --git a/core/src/main/resources/lib/hudson/project/config-publishers_ru.properties b/core/src/main/resources/lib/hudson/project/config-publishers_ru.properties index 13b9fcd8a0f2..30cc78fbecfe 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers_ru.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Post-build\ Actions=\u041f\u043e\u0441\u043b\u0435\u0441\u0431\u043e\u0440\u043e\u0447\u043d\u044b\u0435 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 +Post-build\ Actions=ПоÑлеÑборочные операции diff --git a/core/src/main/resources/lib/hudson/project/config-publishers_sr.properties b/core/src/main/resources/lib/hudson/project/config-publishers_sr.properties index 4d777bfe2cb6..bac56faa1bfc 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers_sr.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Post-build\ Actions=\u0410\u043A\u0446\u0438\u0458\u0435 \u043F\u043E\u0441\u043B\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 +Post-build\ Actions=Ðкције поÑле изградње diff --git a/core/src/main/resources/lib/hudson/project/config-publishers_tr.properties b/core/src/main/resources/lib/hudson/project/config-publishers_tr.properties index f9d9ee22f07e..62d71e587eb2 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers_tr.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Post-build\ Actions=Yap\u0131land\u0131rma-sonras\u0131 Aksiyonlar +Post-build\ Actions=Yapılandırma-sonrası Aksiyonlar diff --git a/core/src/main/resources/lib/hudson/project/config-publishers_zh_TW.properties b/core/src/main/resources/lib/hudson/project/config-publishers_zh_TW.properties index 06aac4d4c4b8..fc7a0b8c3d3d 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Post-build\ Actions=\u5efa\u7f6e\u5f8c\u52d5\u4f5c +Post-build\ Actions=建置後動作 diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_bg.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_bg.properties index e9307063ae08..8fb8ad895f8d 100644 --- a/core/src/main/resources/lib/hudson/project/config-quietPeriod_bg.properties +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Quiet\ period=\ - \u0422\u0438\u0445 \u043f\u0435\u0440\u0438\u043e\u0434 + Тих период Number\ of\ seconds=\ - \u0421\u0435\u043a\u0443\u043d\u0434\u0438 + Секунди diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_ca.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_ca.properties index 42ec01919bdb..806f94cd68a9 100644 --- a/core/src/main/resources/lib/hudson/project/config-quietPeriod_ca.properties +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_ca.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Number\ of\ seconds=N\u00FAmero de segons +Number\ of\ seconds=Número de segons diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_fr.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_fr.properties index a2ce5efd2652..69db495c5f57 100644 --- a/core/src/main/resources/lib/hudson/project/config-quietPeriod_fr.properties +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Quiet\ period=Période d''attente +Quiet\ period=Période d''attente Number\ of\ seconds=Nombre de secondes diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_he.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_he.properties index 9f2136365a87..e7e6d0ceb64c 100644 --- a/core/src/main/resources/lib/hudson/project/config-quietPeriod_he.properties +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_he.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Number\ of\ seconds=\u05DE\u05E1\u05E4\u05E8 \u05E9\u05E0\u05D9\u05D5\u05EA -Quiet\ period=\u05EA\u05E7\u05D5\u05E4\u05EA \u05E9\u05E7\u05D8 +Number\ of\ seconds=מספר שניות +Quiet\ period=תקופת שקט diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_hu.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_hu.properties index c26bf4f8eaeb..bedbe2d5aa10 100644 --- a/core/src/main/resources/lib/hudson/project/config-quietPeriod_hu.properties +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_hu.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Number\ of\ seconds=M\u00E1sodpercek sz\u00E1ma +Number\ of\ seconds=Másodpercek száma diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_it.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_it.properties index 2fc28a468287..92eeb327f3f4 100644 --- a/core/src/main/resources/lib/hudson/project/config-quietPeriod_it.properties +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_ja.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_ja.properties index caf46e985546..64da564bb655 100644 --- a/core/src/main/resources/lib/hudson/project/config-quietPeriod_ja.properties +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Quiet\ period=\u5f85\u6a5f\u6642\u9593 -Number\ of\ seconds=\u79d2\u6570 +Quiet\ period=待機時間 +Number\ of\ seconds=秒数 diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_ko.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_ko.properties index 51446a3d982c..d2ff29d8448b 100644 --- a/core/src/main/resources/lib/hudson/project/config-quietPeriod_ko.properties +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_ko.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Number\ of\ seconds=\uCD08 +Number\ of\ seconds=ì´ˆ diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_lt.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_lt.properties index faa706773ff6..c07cf0f15fba 100644 --- a/core/src/main/resources/lib/hudson/project/config-quietPeriod_lt.properties +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_lt.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Number\ of\ seconds=Sekund\u017Ei\u0173 skai\u010Dius +Number\ of\ seconds=Sekundžių skaiÄius diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_pt_BR.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_pt_BR.properties index 554e7e4ff855..ae53cee6ca72 100644 --- a/core/src/main/resources/lib/hudson/project/config-quietPeriod_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Number\ of\ seconds=N\u00famero de segundos -Quiet\ period=Per\u00edodo de sil\u00eancio +Number\ of\ seconds=Número de segundos +Quiet\ period=Período de silêncio diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_ru.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_ru.properties index 947647b44f86..69d305698cbc 100644 --- a/core/src/main/resources/lib/hudson/project/config-quietPeriod_ru.properties +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Quiet\ period=\u041f\u0430\u0443\u0437\u0430 \u043f\u0435\u0440\u0435\u0434 \u0441\u0431\u043e\u0440\u043a\u043e\u0439 -Number\ of\ seconds=\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u0435\u043a\u0443\u043d\u0434 +Quiet\ period=Пауза перед Ñборкой +Number\ of\ seconds=КоличеÑтво Ñекунд diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_sk.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_sk.properties index 0867313bbd99..f3afdc8ebc14 100644 --- a/core/src/main/resources/lib/hudson/project/config-quietPeriod_sk.properties +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_sk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Number\ of\ seconds=Po\u010Det sek\u00FAnd -Quiet\ period=Doba ne\u010Dinnosti +Number\ of\ seconds=PoÄet sekúnd +Quiet\ period=Doba neÄinnosti diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_sr.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_sr.properties index d48d4a3d1c4a..3110f00673e0 100644 --- a/core/src/main/resources/lib/hudson/project/config-quietPeriod_sr.properties +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Number\ of\ seconds=\u0412\u0440\u043E\u0458 \u0441\u0435\u043A\u0443\u043D\u0434\u0438 -Quiet\ period=\u041F\u0435\u0440\u0438\u043E\u0434 \u0442\u0438\u0448\u0438\u043D\u0435 +Number\ of\ seconds=Врој Ñекунди +Quiet\ period=Период тишине diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_tr.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_tr.properties index 23bd1f4b89fb..98afdcc5494a 100644 --- a/core/src/main/resources/lib/hudson/project/config-quietPeriod_tr.properties +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_tr.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Quiet\ period=Sessiz periyot -Number\ of\ seconds=Ka\u00e7 saniye +Number\ of\ seconds=Kaç saniye diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_uk.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_uk.properties index e0cad26eaa0f..a725a072c38b 100644 --- a/core/src/main/resources/lib/hudson/project/config-quietPeriod_uk.properties +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_uk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Number\ of\ seconds=\u0421\u0435\u043A\u0443\u043D\u0434 -Quiet\ period=\u041F\u0435\u0440\u0456\u043E\u0434 \u0442\u0438\u0448\u0438\u043D\u0438 +Number\ of\ seconds=Секунд +Quiet\ period=Період тишини diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_zh_TW.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_zh_TW.properties index 12d7eb30be46..348bef2ada3a 100644 --- a/core/src/main/resources/lib/hudson/project/config-quietPeriod_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Quiet\ period=\u975c\u5019\u6642\u9593 -Number\ of\ seconds=\u79d2\u6578 +Quiet\ period=éœå€™æ™‚é–“ +Number\ of\ seconds=秒數 diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_bg.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_bg.properties index 22c0ea5f8dee..d3dc01831c4d 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_bg.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Retry\ Count=\ - \u0411\u0440\u043e\u0439 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u0438 \u043e\u043f\u0438\u0442\u0438 + Брой повторни опити SCM\ checkout\ retry\ count=\ - \u0411\u0440\u043e\u0439 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u0438 \u043e\u043f\u0438\u0442\u0438 \u0437\u0430 \u0438\u0437\u0442\u0435\u0433\u043b\u044f\u043d\u0435 \u043e\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430 \u0437\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435 + Брой повторни опити за изтеглÑне от ÑиÑтемата за управление на верÑиите diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_ca.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_ca.properties index ed603805b83f..7f18d56d994e 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_ca.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_ca.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Retry\ Count=N\u00FAmero de reintents +Retry\ Count=Número de reintents diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_da.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_da.properties index 7634c486c0ba..0763be8da47f 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_da.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_da.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Retry\ Count=Fors\u00f8g igen t\u00e6ller -SCM\ checkout\ retry\ count=Antal SCM checkout fors\u00f8g +Retry\ Count=Forsøg igen tæller +SCM\ checkout\ retry\ count=Antal SCM checkout forsøg diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_fr.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_fr.properties index bcc43951d3f3..7a23ee15e166 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_fr.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_fr.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. -Retry\ Count=Nombre de r\u00E9-essais +Retry\ Count=Nombre de ré-essais SCM\ checkout\ retry\ count=Nombre de retentatives de checkout du SCM diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_he.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_he.properties index 43895475ca71..62ac9e4e7df6 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_he.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_he.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Retry\ Count=\u05DE\u05E1\u05E4\u05E8 \u05E0\u05D9\u05E1\u05D9\u05D5\u05E0\u05D5\u05EA \u05D7\u05D5\u05D6\u05E8\u05D9\u05DD -SCM\ checkout\ retry\ count=\u05DE\u05E1\u05E4\u05E8 \u05E0\u05D9\u05E1\u05D9\u05D5\u05E0\u05D5\u05EA \u05DC\u05D0\u05D7\u05D6\u05D5\u05E8 \u05DE\u05DE\u05E2\u05E8\u05DB\u05EA \u05E0\u05D9\u05D4\u05D5\u05DC \u05D4\u05DE\u05E7\u05D5\u05E8 +Retry\ Count=מספר ניסיונות ×—×•×–×¨×™× +SCM\ checkout\ retry\ count=מספר ניסיונות ל×חזור ממערכת ניהול המקור diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_hu.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_hu.properties index f569a4382fc7..466ced25b12f 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_hu.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_hu.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Retry\ Count=Ism\u00E9tl\u00E9sek sz\u00E1ma +Retry\ Count=Ismétlések száma diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_it.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_it.properties index bc016f7583b3..9741ad05e58a 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_it.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_ja.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_ja.properties index 137d55e9ff58..46824ff5d7a7 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_ja.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Retry\ Count=\u30EA\u30C8\u30E9\u30A4\u6570 -SCM\ checkout\ retry\ count=SCM\u30C1\u30A7\u30C3\u30AF\u30A2\u30A6\u30C8 \u30EA\u30C8\u30E9\u30A4\u6570 +Retry\ Count=リトライ数 +SCM\ checkout\ retry\ count=SCMãƒã‚§ãƒƒã‚¯ã‚¢ã‚¦ãƒˆ リトライ数 diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_ko.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_ko.properties index bcc9f3d8b229..e9657f6f4b84 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_ko.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_ko.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Retry\ Count=\uC7AC\uC2DC\uB3C4 \uD69F\uC218 -SCM\ checkout\ retry\ count=\uC18C\uC2A4\uCF54\uB4DC \uD615\uC0C1\uAD00\uB9AC \uCCB4\uD06C\uC544\uC6C3 \uBC18\uBCF5 \uD68C\uC218 +Retry\ Count=ìž¬ì‹œë„ íšŸìˆ˜ +SCM\ checkout\ retry\ count=소스코드 형ìƒê´€ë¦¬ ì²´í¬ì•„웃 반복 회수 diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_lt.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_lt.properties index bf22b6ed09ed..e541d0ec158f 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_lt.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_lt.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -SCM\ checkout\ retry\ count=SCM i\u0161traukimo pakartojim\u0173 skai\u010dius -Retry\ Count=Pakartojim\u0173 skai\u010dius +SCM\ checkout\ retry\ count=SCM iÅ¡traukimo pakartojimų skaiÄius +Retry\ Count=Pakartojimų skaiÄius diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_nb_NO.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_nb_NO.properties index fadca4113c24..81cf0d4023a8 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_nb_NO.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Retry\ Count=antall fors\u00F8k -SCM\ checkout\ retry\ count=Antall fors\u00F8k for SCM checkout +Retry\ Count=antall forsøk +SCM\ checkout\ retry\ count=Antall forsøk for SCM checkout diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_pl.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_pl.properties index 447c8f00dfa7..020d95bf2cc6 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_pl.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_pl.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Retry\ Count=Liczba ponowie\u0144 -SCM\ checkout\ retry\ count=Ilo\u015B\u0107 ponowie\u0144 pobrania kodu z repozytorium +Retry\ Count=Liczba ponowieÅ„ +SCM\ checkout\ retry\ count=Ilość ponowieÅ„ pobrania kodu z repozytorium diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_pt_BR.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_pt_BR.properties index ea9cd50e7a03..e2ef7aa3bad7 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_pt_BR.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. -Retry\ Count=N\u00FAmero de tentativas -SCM\ checkout\ retry\ count=N\u00famero de tentativas de checkout +Retry\ Count=Número de tentativas +SCM\ checkout\ retry\ count=Número de tentativas de checkout diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_ru.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_ru.properties index 918e79216edf..36ef9f2a42e1 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_ru.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_ru.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Retry\ Count=\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u043f\u044b\u0442\u043e\u043a -SCM\ checkout\ retry\ count=\u0427\u0438\u0441\u043b\u043e \u043f\u043e\u043f\u044b\u0442\u043e\u043a \u043f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 \u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u0437 SCM +Retry\ Count=КоличеÑтво попыток +SCM\ checkout\ retry\ count=ЧиÑло попыток при загрузке данных из SCM diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_sk.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_sk.properties index 649deaaa035a..7324040a782e 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_sk.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_sk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Retry\ Count=Po\u010Det opakovan\u00ED -SCM\ checkout\ retry\ count=Po\u010Det opakovan\u00ED SCM checkoutov +Retry\ Count=PoÄet opakovaní +SCM\ checkout\ retry\ count=PoÄet opakovaní SCM checkoutov diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_sr.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_sr.properties index b4f7670b626e..7f42f5af48de 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_sr.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -SCM\ checkout\ retry\ count=\u0411\u0440\u043E\u0458 \u043F\u043E\u043A\u0443\u0448\u0430\u0458\u0430 \u043F\u0440\u0435\u0443\u0437\u0438\u043C\u0430\u045A\u0435 \u0438\u0437\u0432\u043E\u0440\u043D\u043E\u0433 \u043A\u043E\u0434\u0430 -Retry\ Count=\u0411\u0440\u043E\u0458 \u043F\u043E\u043A\u0443\u0448\u0430\u0458\u0430 +SCM\ checkout\ retry\ count=Број покушаја преузимање изворног кода +Retry\ Count=Број покушаја diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_sv_SE.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_sv_SE.properties index 9d4683f5565f..9bdfc7499b75 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_sv_SE.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Retry\ Count=F\u00F6rs\u00F6k igen -SCM\ checkout\ retry\ count=Antal f\u00F6rs\u00F6k att h\u00E4mta koden igen +Retry\ Count=Försök igen +SCM\ checkout\ retry\ count=Antal försök att hämta koden igen diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_tr.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_tr.properties index 977130910fe7..496aedbe409a 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_tr.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_tr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Retry\ Count=Tekrar deneme say\u0131s\u0131 +Retry\ Count=Tekrar deneme sayısı diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_uk.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_uk.properties index 04e0501596fd..abff97cc6d66 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_uk.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_uk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Retry\ Count=\u041A\u0456\u043B\u044C\u043A\u0456\u0441\u0442\u044C \u043F\u043E\u0432\u0442\u043E\u0440\u043D\u0438\u0445 \u0441\u043F\u0440\u043E\u0431 -SCM\ checkout\ retry\ count=\u041A\u0456\u043B\u044C\u043A\u0456\u0441\u0442\u044C \u0441\u043F\u0440\u043E\u0431 \u043E\u0442\u0440\u0438\u043C\u0430\u043D\u043D\u044F \u043A\u043E\u0434\u0443 \u0437 \u0421\u041A\u0412 +Retry\ Count=КількіÑÑ‚ÑŒ повторних Ñпроб +SCM\ checkout\ retry\ count=КількіÑÑ‚ÑŒ Ñпроб Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ð½Ð½Ñ ÐºÐ¾Ð´Ñƒ з СКВ diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_zh_TW.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_zh_TW.properties index 1846d766693e..71336e4cde35 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Retry\ Count=\u91CD\u8A66\u6B21\u6578 -SCM\ checkout\ retry\ count=SCM Checkout \u91cd\u8a66\u6b21\u6578 +Retry\ Count=é‡è©¦æ¬¡æ•¸ +SCM\ checkout\ retry\ count=SCM Checkout é‡è©¦æ¬¡æ•¸ diff --git a/core/src/main/resources/lib/hudson/project/config-scm_bg.properties b/core/src/main/resources/lib/hudson/project/config-scm_bg.properties index e642c0123d8f..a684bb01b923 100644 --- a/core/src/main/resources/lib/hudson/project/config-scm_bg.properties +++ b/core/src/main/resources/lib/hudson/project/config-scm_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. SCM\ Checkout\ Strategy=\ - \u041a\u043e\u043c\u0430\u043d\u0434\u0430 \u0437\u0430 \u0438\u0437\u0442\u0435\u0433\u043b\u044f\u043d\u0435 \u043d\u0430 \u043a\u043e\u0434\u0430 \u043e\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430 \u0437\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b \u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435 + Команда за изтеглÑне на кода от ÑиÑтемата за контрол на верÑиите Advanced\ Source\ Code\ Management=\ - \u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0437\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0430 \u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435 \u043d\u0430 \u043a\u043e\u0434\u0430 + Допълнителни наÑтройки за контрола на верÑиите на кода Source\ Code\ Management=\ - \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0430 \u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435 \u043d\u0430 \u043a\u043e\u0434\u0430 + Управление на контрола на верÑиите на кода diff --git a/core/src/main/resources/lib/hudson/project/config-scm_es.properties b/core/src/main/resources/lib/hudson/project/config-scm_es.properties index aa217507f683..eef33008f965 100644 --- a/core/src/main/resources/lib/hudson/project/config-scm_es.properties +++ b/core/src/main/resources/lib/hudson/project/config-scm_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Source\ Code\ Management=Configurar el origen del código fuente +Source\ Code\ Management=Configurar el origen del código fuente diff --git a/core/src/main/resources/lib/hudson/project/config-scm_he.properties b/core/src/main/resources/lib/hudson/project/config-scm_he.properties index 36874984b445..779d21f203d8 100644 --- a/core/src/main/resources/lib/hudson/project/config-scm_he.properties +++ b/core/src/main/resources/lib/hudson/project/config-scm_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Source\ Code\ Management=\u05DE\u05E2\u05E8\u05DB\u05EA \u05E0\u05D9\u05D4\u05D5\u05DC \u05E7\u05D5\u05D3 \u05DE\u05E7\u05D5\u05E8 +Source\ Code\ Management=מערכת ניהול קוד מקור diff --git a/core/src/main/resources/lib/hudson/project/config-scm_hu.properties b/core/src/main/resources/lib/hudson/project/config-scm_hu.properties index 2fb69fa139bd..91bdf32349c8 100644 --- a/core/src/main/resources/lib/hudson/project/config-scm_hu.properties +++ b/core/src/main/resources/lib/hudson/project/config-scm_hu.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Source\ Code\ Management=Verzi\u00F3kezel\u0151 rendszer +Source\ Code\ Management=VerziókezelÅ‘ rendszer diff --git a/core/src/main/resources/lib/hudson/project/config-scm_it.properties b/core/src/main/resources/lib/hudson/project/config-scm_it.properties index 008606f3a2cc..47b5c5ac55d3 100644 --- a/core/src/main/resources/lib/hudson/project/config-scm_it.properties +++ b/core/src/main/resources/lib/hudson/project/config-scm_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/project/config-scm_ja.properties b/core/src/main/resources/lib/hudson/project/config-scm_ja.properties index 6451f3e5afcd..83fca4982510 100644 --- a/core/src/main/resources/lib/hudson/project/config-scm_ja.properties +++ b/core/src/main/resources/lib/hudson/project/config-scm_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Source\ Code\ Management=\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u7ba1\u7406 -Advanced\ Source\ Code\ Management=\u9ad8\u5ea6\u306a\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u7ba1\u7406 -SCM\ Checkout\ Strategy=SCM\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8\u65b9\u6cd5 +Source\ Code\ Management=ã‚½ãƒ¼ã‚¹ã‚³ãƒ¼ãƒ‰ç®¡ç† +Advanced\ Source\ Code\ Management=高度ãªã‚½ãƒ¼ã‚¹ã‚³ãƒ¼ãƒ‰ç®¡ç† +SCM\ Checkout\ Strategy=SCMãƒã‚§ãƒƒã‚¯ã‚¢ã‚¦ãƒˆæ–¹æ³• diff --git a/core/src/main/resources/lib/hudson/project/config-scm_ko.properties b/core/src/main/resources/lib/hudson/project/config-scm_ko.properties index 45540c0aee6f..bec6083ee892 100644 --- a/core/src/main/resources/lib/hudson/project/config-scm_ko.properties +++ b/core/src/main/resources/lib/hudson/project/config-scm_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Source\ Code\ Management=\uC18C\uC2A4 \uCF54\uB4DC \uAD00\uB9AC +Source\ Code\ Management=소스 코드 관리 diff --git a/core/src/main/resources/lib/hudson/project/config-scm_lt.properties b/core/src/main/resources/lib/hudson/project/config-scm_lt.properties index 9b13803f1d30..b8fb3d4ff33b 100644 --- a/core/src/main/resources/lib/hudson/project/config-scm_lt.properties +++ b/core/src/main/resources/lib/hudson/project/config-scm_lt.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Source\ Code\ Management=I\u0161eities kodo valdymas +Source\ Code\ Management=IÅ¡eities kodo valdymas diff --git a/core/src/main/resources/lib/hudson/project/config-scm_nb_NO.properties b/core/src/main/resources/lib/hudson/project/config-scm_nb_NO.properties index 56243c010929..b9ed11c5ae40 100644 --- a/core/src/main/resources/lib/hudson/project/config-scm_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/project/config-scm_nb_NO.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Source\ Code\ Management=Kildekodeh\u00E5ndtering +Source\ Code\ Management=KildekodehÃ¥ndtering diff --git a/core/src/main/resources/lib/hudson/project/config-scm_pt_BR.properties b/core/src/main/resources/lib/hudson/project/config-scm_pt_BR.properties index 440ecb0ec13c..51be7ac7fefc 100644 --- a/core/src/main/resources/lib/hudson/project/config-scm_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/project/config-scm_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Source\ Code\ Management=Gerenciamento de c\u00f3digo fonte -Advanced\ Source\ Code\ Management=Gerenciamento de c\u00f3digo fonte avan\u00e7ado -SCM\ Checkout\ Strategy=Estrat\u00e9gia de checkout +Source\ Code\ Management=Gerenciamento de código fonte +Advanced\ Source\ Code\ Management=Gerenciamento de código fonte avançado +SCM\ Checkout\ Strategy=Estratégia de checkout diff --git a/core/src/main/resources/lib/hudson/project/config-scm_ru.properties b/core/src/main/resources/lib/hudson/project/config-scm_ru.properties index 4957219706fe..383e29e72ded 100644 --- a/core/src/main/resources/lib/hudson/project/config-scm_ru.properties +++ b/core/src/main/resources/lib/hudson/project/config-scm_ru.properties @@ -1,3 +1,3 @@ -Advanced\ Source\ Code\ Management=\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0438\u0441\u0445\u043e\u0434\u043d\u044b\u043c \u043a\u043e\u0434\u043e\u043c -SCM\ Checkout\ Strategy=\u0421\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f checkout'\u0430 \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0433\u043e \u043a\u043e\u0434\u0430 -Source\ Code\ Management=\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0438\u0441\u0445\u043e\u0434\u043d\u044b\u043c \u043a\u043e\u0434\u043e\u043c +Advanced\ Source\ Code\ Management=РаÑширенное управление иÑходным кодом +SCM\ Checkout\ Strategy=Ð¡Ñ‚Ñ€Ð°Ñ‚ÐµÐ³Ð¸Ñ checkout'а иÑходного кода +Source\ Code\ Management=Управление иÑходным кодом diff --git a/core/src/main/resources/lib/hudson/project/config-scm_sr.properties b/core/src/main/resources/lib/hudson/project/config-scm_sr.properties index 4d1d943b752c..1836ce2c28ad 100644 --- a/core/src/main/resources/lib/hudson/project/config-scm_sr.properties +++ b/core/src/main/resources/lib/hudson/project/config-scm_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Advanced\ Source\ Code\ Management=\u041D\u0430\u043F\u0440\u0435\u0434\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 \u0438\u0437\u0432\u043E\u0440\u043D\u0438\u043C \u043A\u043E\u0434\u043E\u043C -SCM\ Checkout\ Strategy=\u0428\u0430\u0431\u043B\u043E\u043D \u043F\u0440\u0435\u0434\u0443\u0437\u0438\u043C\u0430\u045A\u0430 \u0438\u0437\u0432\u043E\u0440\u043D\u043E\u0433 \u043A\u043E\u0434\u0430 -Source\ Code\ Management=\u0421\u0438\u0441\u0442\u0435\u043C \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0430 \u0438\u0437\u0432\u043E\u0440\u043D\u043E\u0433 \u043A\u043E\u0434\u0430 +Advanced\ Source\ Code\ Management=Ðапредно управљање изворним кодом +SCM\ Checkout\ Strategy=Шаблон предузимања изворног кода +Source\ Code\ Management=СиÑтем управљања изворног кода diff --git a/core/src/main/resources/lib/hudson/project/config-scm_sv_SE.properties b/core/src/main/resources/lib/hudson/project/config-scm_sv_SE.properties index 4da39bb90aa8..c4c95aff341c 100644 --- a/core/src/main/resources/lib/hudson/project/config-scm_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/project/config-scm_sv_SE.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Source\ Code\ Management=K\u00E4llkodshantering +Source\ Code\ Management=Källkodshantering diff --git a/core/src/main/resources/lib/hudson/project/config-scm_tr.properties b/core/src/main/resources/lib/hudson/project/config-scm_tr.properties index 964c308907dd..57e1d31c4418 100644 --- a/core/src/main/resources/lib/hudson/project/config-scm_tr.properties +++ b/core/src/main/resources/lib/hudson/project/config-scm_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Source\ Code\ Management=Kaynak Kodu Y\u00f6netimi +Source\ Code\ Management=Kaynak Kodu Yönetimi diff --git a/core/src/main/resources/lib/hudson/project/config-scm_uk.properties b/core/src/main/resources/lib/hudson/project/config-scm_uk.properties index 917007ee69d9..2c530ad9db04 100644 --- a/core/src/main/resources/lib/hudson/project/config-scm_uk.properties +++ b/core/src/main/resources/lib/hudson/project/config-scm_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Source\ Code\ Management=\u0423\u043F\u0440\u0430\u0432\u043B\u0456\u043D\u043D\u044F \u0432\u0438\u0445\u0456\u0434\u043D\u0438\u043C \u043A\u043E\u0434\u043E\u043C +Source\ Code\ Management=Ð£Ð¿Ñ€Ð°Ð²Ð»Ñ–Ð½Ð½Ñ Ð²Ð¸Ñ…Ñ–Ð´Ð½Ð¸Ð¼ кодом diff --git a/core/src/main/resources/lib/hudson/project/config-scm_zh_TW.properties b/core/src/main/resources/lib/hudson/project/config-scm_zh_TW.properties index df347f851b79..9f0d4ca49867 100644 --- a/core/src/main/resources/lib/hudson/project/config-scm_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/config-scm_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Source\ Code\ Management=\u539F\u59CB\u78BC\u7BA1\u7406 -SCM\ Checkout\ Strategy=SCM Checkout \u7b56\u7565 -Advanced\ Source\ Code\ Management=\u9032\u968e\u539f\u59cb\u78bc\u7ba1\u7406 +Source\ Code\ Management=åŽŸå§‹ç¢¼ç®¡ç† +SCM\ Checkout\ Strategy=SCM Checkout ç­–ç•¥ +Advanced\ Source\ Code\ Management=é€²éšŽåŽŸå§‹ç¢¼ç®¡ç† diff --git a/core/src/main/resources/lib/hudson/project/config-trigger_bg.properties b/core/src/main/resources/lib/hudson/project/config-trigger_bg.properties index 85105bf429c7..a08b8fe0ddc0 100644 --- a/core/src/main/resources/lib/hudson/project/config-trigger_bg.properties +++ b/core/src/main/resources/lib/hudson/project/config-trigger_bg.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Build\ Triggers=\ - \u0421\u043f\u0443\u0441\u044a\u0446\u0438 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f\u0442\u0430 + СпуÑъци на изгражданиÑта diff --git a/core/src/main/resources/lib/hudson/project/config-trigger_de.properties b/core/src/main/resources/lib/hudson/project/config-trigger_de.properties index 8ebc9ddd91bf..87e5b79b7f4e 100644 --- a/core/src/main/resources/lib/hudson/project/config-trigger_de.properties +++ b/core/src/main/resources/lib/hudson/project/config-trigger_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Triggers=Build-Ausl\u00F6ser +Build\ Triggers=Build-Auslöser diff --git a/core/src/main/resources/lib/hudson/project/config-trigger_fr.properties b/core/src/main/resources/lib/hudson/project/config-trigger_fr.properties index bf6d9a61aadc..1c7013383286 100644 --- a/core/src/main/resources/lib/hudson/project/config-trigger_fr.properties +++ b/core/src/main/resources/lib/hudson/project/config-trigger_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Triggers=Ce qui déclenche le build +Build\ Triggers=Ce qui déclenche le build diff --git a/core/src/main/resources/lib/hudson/project/config-trigger_it.properties b/core/src/main/resources/lib/hudson/project/config-trigger_it.properties index ac2c84c1086e..db4a21b6d1de 100644 --- a/core/src/main/resources/lib/hudson/project/config-trigger_it.properties +++ b/core/src/main/resources/lib/hudson/project/config-trigger_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/project/config-trigger_ja.properties b/core/src/main/resources/lib/hudson/project/config-trigger_ja.properties index 4527c2305433..d27c25f1f729 100644 --- a/core/src/main/resources/lib/hudson/project/config-trigger_ja.properties +++ b/core/src/main/resources/lib/hudson/project/config-trigger_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Triggers=\u30d3\u30eb\u30c9\u30fb\u30c8\u30ea\u30ac +Build\ Triggers=ビルド・トリガ diff --git a/core/src/main/resources/lib/hudson/project/config-trigger_ko.properties b/core/src/main/resources/lib/hudson/project/config-trigger_ko.properties index 774ef9ebedaa..7a65e031ce9e 100644 --- a/core/src/main/resources/lib/hudson/project/config-trigger_ko.properties +++ b/core/src/main/resources/lib/hudson/project/config-trigger_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Triggers=\uBE4C\uB4DC \uC720\uBC1C +Build\ Triggers=빌드 유발 diff --git a/core/src/main/resources/lib/hudson/project/config-trigger_lt.properties b/core/src/main/resources/lib/hudson/project/config-trigger_lt.properties index 8f00928b46ff..6f36910cc639 100644 --- a/core/src/main/resources/lib/hudson/project/config-trigger_lt.properties +++ b/core/src/main/resources/lib/hudson/project/config-trigger_lt.properties @@ -1 +1 @@ -Build\ Triggers=K\u016brimo i\u0161\u0161auk\u0117jai +Build\ Triggers=KÅ«rimo iÅ¡Å¡aukÄ—jai diff --git a/core/src/main/resources/lib/hudson/project/config-trigger_pt_BR.properties b/core/src/main/resources/lib/hudson/project/config-trigger_pt_BR.properties index 86d0a4224f2a..0492d0ede31a 100644 --- a/core/src/main/resources/lib/hudson/project/config-trigger_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/project/config-trigger_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Triggers=Gatilho de disparo para constru\u00E7\u00F5es +Build\ Triggers=Gatilho de disparo para construções diff --git a/core/src/main/resources/lib/hudson/project/config-trigger_ru.properties b/core/src/main/resources/lib/hudson/project/config-trigger_ru.properties index e0dd5d0d8927..367afd232d29 100644 --- a/core/src/main/resources/lib/hudson/project/config-trigger_ru.properties +++ b/core/src/main/resources/lib/hudson/project/config-trigger_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Triggers=\u0422\u0440\u0438\u0433\u0433\u0435\u0440\u044b \u0441\u0431\u043e\u0440\u043a\u0438 +Build\ Triggers=Триггеры Ñборки diff --git a/core/src/main/resources/lib/hudson/project/config-trigger_sr.properties b/core/src/main/resources/lib/hudson/project/config-trigger_sr.properties index aae2ee44edae..59fe9b13ecea 100644 --- a/core/src/main/resources/lib/hudson/project/config-trigger_sr.properties +++ b/core/src/main/resources/lib/hudson/project/config-trigger_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Build\ Triggers=\u041F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 +Build\ Triggers=Покретања изградње diff --git a/core/src/main/resources/lib/hudson/project/config-trigger_tr.properties b/core/src/main/resources/lib/hudson/project/config-trigger_tr.properties index 2e342e64e80d..fa0818df1f0a 100644 --- a/core/src/main/resources/lib/hudson/project/config-trigger_tr.properties +++ b/core/src/main/resources/lib/hudson/project/config-trigger_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Triggers=Yap\u0131land\u0131rma Tetikleyiciler +Build\ Triggers=Yapılandırma Tetikleyiciler diff --git a/core/src/main/resources/lib/hudson/project/config-trigger_zh_TW.properties b/core/src/main/resources/lib/hudson/project/config-trigger_zh_TW.properties index 869ab5c515cf..5c71cdf3b60e 100644 --- a/core/src/main/resources/lib/hudson/project/config-trigger_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/config-trigger_zh_TW.properties @@ -21,4 +21,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Triggers=\u5efa\u7f6e\u89f8\u767c\u7a0b\u5e8f +Build\ Triggers=å»ºç½®è§¸ç™¼ç¨‹åº diff --git a/core/src/main/resources/lib/hudson/project/configurable.properties b/core/src/main/resources/lib/hudson/project/configurable.properties index e065337826f5..b47b64121055 100644 --- a/core/src/main/resources/lib/hudson/project/configurable.properties +++ b/core/src/main/resources/lib/hudson/project/configurable.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. delete=Delete {0} -delete.confirm=Delete the {0} \u2018{1}\u2019? +delete.confirm=Delete the {0} ‘{1}’? diff --git a/core/src/main/resources/lib/hudson/project/configurable_bg.properties b/core/src/main/resources/lib/hudson/project/configurable_bg.properties index 8ee8ca8a7f00..d9603bfb71fb 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_bg.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_bg.properties @@ -21,12 +21,12 @@ # THE SOFTWARE. Build\ scheduled=\ - \u041d\u0430\u0441\u0440\u043e\u0447\u0435\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + ÐаÑрочено изграждане Configure=\ - \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u0432\u0430\u043d\u0435 + ÐаÑтройване delete=\ - \u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u201e{0}\u201c + Изтриване на „{0}“ delete.confirm=\ - \u0421\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u0438\u0437\u0442\u0440\u0438\u0435\u0442\u0435 {0} \u201e{1}\u201c? + Сигурни ли Ñте, че иÑкате да изтриете {0} „{1}“? View\ Configuration=\ - \u041f\u0440\u0435\u0433\u043b\u0435\u0434 \u043d\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435 + Преглед на наÑтройките diff --git a/core/src/main/resources/lib/hudson/project/configurable_ca.properties b/core/src/main/resources/lib/hudson/project/configurable_ca.properties index c7e45e429b95..c3ae6aa7687e 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_ca.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_ca.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ scheduled=Construcci\u00f3 programada +Build\ scheduled=Construcció programada Configure=Configura delete=Suprimeix {0} -delete.confirm=Est\u00e0s segur que vols esborrar {0} \u2018{1}\u2019? +delete.confirm=Estàs segur que vols esborrar {0} ‘{1}’? diff --git a/core/src/main/resources/lib/hudson/project/configurable_cs.properties b/core/src/main/resources/lib/hudson/project/configurable_cs.properties index 0d2302428860..03d00ead28a7 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_cs.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_cs.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ scheduled=Sestaven\u00ed napl\u00e1nov\u00e1no +Build\ scheduled=Sestavení naplánováno Configure=Nastavit delete=Smazat {0} -delete.confirm=Jste si jisti, \u017ee chcete smazat {0} \u2018{1}\u2019? +delete.confirm=Jste si jisti, že chcete smazat {0} ‘{1}’? diff --git a/core/src/main/resources/lib/hudson/project/configurable_da.properties b/core/src/main/resources/lib/hudson/project/configurable_da.properties index 47bf0e6ac13f..fab23b1c2eb7 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_da.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_da.properties @@ -24,4 +24,4 @@ delete=Slet {0} Configure=Konfigurer Build\ scheduled=Byg planlagt View\ Configuration=Vis konfiguration -delete.confirm=Er du sikker p\u00e5 at du vil slette {0} ''{1}''? +delete.confirm=Er du sikker pÃ¥ at du vil slette {0} ''{1}''? diff --git a/core/src/main/resources/lib/hudson/project/configurable_de.properties b/core/src/main/resources/lib/hudson/project/configurable_de.properties index 11f98e048f17..a58882512116 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_de.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_de.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -delete={0} l\u00f6schen +delete={0} löschen Configure=Konfigurieren View\ Configuration=Konfiguration anzeigen Build\ scheduled=Build geplant -delete.confirm=Sind Sie sicher, dass Sie das {0} \u2018{1}\u2019 l\u00f6schen m\u00f6chten? +delete.confirm=Sind Sie sicher, dass Sie das {0} ‘{1}’ löschen möchten? diff --git a/core/src/main/resources/lib/hudson/project/configurable_el.properties b/core/src/main/resources/lib/hudson/project/configurable_el.properties index 78e4ad51a4d4..85f0f9ff3e7a 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_el.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_el.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ scheduled=\u03a4\u03bf build \u03c0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 -Configure=\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 -delete=\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae +Build\ scheduled=Το build Ï€ÏογÏαμματίστηκε +Configure=Ρυθμίσεις +delete=ΔιαγÏαφή diff --git a/core/src/main/resources/lib/hudson/project/configurable_es.properties b/core/src/main/resources/lib/hudson/project/configurable_es.properties index 0270695a2dc6..3a8eb7e8a2da 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_es.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_es.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ scheduled=Ejecuci\u00f3n planificada +Build\ scheduled=Ejecución planificada Configure=Configurar delete=Borrar {0} -View\ Configuration=Ver Configuraci\u00f3n -delete.confirm=Est\u00e1s seguro de querer borrar el {0} `{1}\u00b4 +View\ Configuration=Ver Configuración +delete.confirm=Estás seguro de querer borrar el {0} `{1}´ diff --git a/core/src/main/resources/lib/hudson/project/configurable_es_AR.properties b/core/src/main/resources/lib/hudson/project/configurable_es_AR.properties index 4d931e0c1700..edd701bc2601 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_es_AR.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_es_AR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ scheduled=Construcci\u00f3n agendada +Build\ scheduled=Construcción agendada Configure=Configurar delete=Eliminar {0} diff --git a/core/src/main/resources/lib/hudson/project/configurable_et.properties b/core/src/main/resources/lib/hudson/project/configurable_et.properties index 58f9930e2a7e..f3a65460069e 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_et.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_et.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ scheduled=T\u00f6\u00f6 on tellitud +Build\ scheduled=Töö on tellitud Configure=Seadista delete=Kustuta {0} -delete.confirm=Oled sa ikka kindel et soovid kustutada {0} \u2018{1}\u2019? +delete.confirm=Oled sa ikka kindel et soovid kustutada {0} ‘{1}’? diff --git a/core/src/main/resources/lib/hudson/project/configurable_fi.properties b/core/src/main/resources/lib/hudson/project/configurable_fi.properties index 9201a690c6c2..a16e85e5f09d 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_fi.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_fi.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ scheduled=K\u00e4\u00e4nn\u00f6s on jonossa +Build\ scheduled=Käännös on jonossa Configure=Muokkaa delete=Poista projekti -delete.confirm=Oletko varmna ett\u00e4 {0} ''{1}'' poistetaan ? +delete.confirm=Oletko varmna että {0} ''{1}'' poistetaan ? diff --git a/core/src/main/resources/lib/hudson/project/configurable_fr.properties b/core/src/main/resources/lib/hudson/project/configurable_fr.properties index 2b90f0495bc7..2f1a02494d44 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_fr.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_fr.properties @@ -22,6 +22,6 @@ delete=Supprimer {0} Configure=Configurer -Build\ scheduled=Build programm\u00e9 +Build\ scheduled=Build programmé View\ Configuration=Voir la configuration -delete.confirm=\u00cates-vous s\u00fbr de vouloir supprimer le {0} \u2018{1}\u2019? +delete.confirm=Êtes-vous sûr de vouloir supprimer le {0} ‘{1}’? diff --git a/core/src/main/resources/lib/hudson/project/configurable_he.properties b/core/src/main/resources/lib/hudson/project/configurable_he.properties index 4e6a524313fb..683b42c81bef 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_he.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_he.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ scheduled=\u05ea\u05d6\u05de\u05d5\u05df \u05d1\u05e0\u05d9\u05d9\u05d4 -Configure=\u05d4\u05d2\u05d3\u05e8\u05d4 -delete={0} \u05de\u05d7\u05e7 -delete.confirm=\u05d4\u05d0\u05dd \u05d0\u05ea\u05d4 \u05d1\u05d8\u05d5\u05d7 \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea {0} ''{1}''? +Build\ scheduled=תזמון בנייה +Configure=הגדרה +delete={0} מחק +delete.confirm=×”×× ×תה בטוח שברצונך למחוק ×ת {0} ''{1}''? diff --git a/core/src/main/resources/lib/hudson/project/configurable_hu.properties b/core/src/main/resources/lib/hudson/project/configurable_hu.properties index 10dfd54360db..5ff113fb63a8 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_hu.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_hu.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ scheduled=\u00c9p\u00edt\u00e9s be\u00fctemez\u00e9se -Configure=Be\u00e1ll\u00edt\u00e1sok -delete={0} t\u00f6rl\u00e9se -delete.confirm=Biztosan t\u00f6rli a {0} \u2018{1}\u2019? +Build\ scheduled=Építés beütemezése +Configure=Beállítások +delete={0} törlése +delete.confirm=Biztosan törli a {0} ‘{1}’? diff --git a/core/src/main/resources/lib/hudson/project/configurable_it.properties b/core/src/main/resources/lib/hudson/project/configurable_it.properties index 17fc062321b2..c89f9cd70520 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_it.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/project/configurable_ja.properties b/core/src/main/resources/lib/hudson/project/configurable_ja.properties index 14e2fb5d5d20..c57c85c73e88 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_ja.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_ja.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -delete={0}\u306e\u524a\u9664 -Configure=\u8a2d\u5b9a -Build\ scheduled=\u30d3\u30eb\u30c9\u304c\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3055\u308c\u307e\u3057\u305f -View\ Configuration=\u8a2d\u5b9a\u306e\u53c2\u7167 -delete.confirm={0} "{1}"\u3092\u524a\u9664\u3057\u3066\u3082\u3088\u308d\u3057\u3044\u3067\u3059\u304b? +delete={0}ã®å‰Šé™¤ +Configure=設定 +Build\ scheduled=ビルドãŒã‚¹ã‚±ã‚¸ãƒ¥ãƒ¼ãƒ«ã•ã‚Œã¾ã—㟠+View\ Configuration=設定ã®å‚ç…§ +delete.confirm={0} "{1}"を削除ã—ã¦ã‚‚よã‚ã—ã„ã§ã™ã‹? diff --git a/core/src/main/resources/lib/hudson/project/configurable_ko.properties b/core/src/main/resources/lib/hudson/project/configurable_ko.properties index 23b90346c6a7..85d2908f4518 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_ko.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_ko.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ scheduled=\uacc4\ud68d\ub41c \ube4c\ub4dc -Configure=\uad6c\uc131 -delete={0} \uc0ad\uc81c -delete.confirm={0} \uc744 \uc0ad\uc81c\ud558\ub294\uac70\uc5d0 \ub300\ud574 \ub3d9\uc758\ud558\uc2ed\ub2c8\uae4c? ''{1}'' +Build\ scheduled=계íšëœ 빌드 +Configure=구성 +delete={0} ì‚­ì œ +delete.confirm={0} ì„ ì‚­ì œí•˜ëŠ”ê±°ì— ëŒ€í•´ ë™ì˜í•˜ì‹­ë‹ˆê¹Œ? ''{1}'' diff --git a/core/src/main/resources/lib/hudson/project/configurable_lt.properties b/core/src/main/resources/lib/hudson/project/configurable_lt.properties index cf01c535e534..3508d01f7de5 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_lt.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_lt.properties @@ -22,5 +22,5 @@ Build\ scheduled=Konstrukcija suplanuota Configure=Nustatyti -delete=I\u0161trinti {0} -delete.confirm=Ar j\u016bs tikri, kad norite i\u0161trinti {0} "{1}"? +delete=IÅ¡trinti {0} +delete.confirm=Ar jÅ«s tikri, kad norite iÅ¡trinti {0} "{1}"? diff --git a/core/src/main/resources/lib/hudson/project/configurable_lv.properties b/core/src/main/resources/lib/hudson/project/configurable_lv.properties index f4c3deec4c05..4bc72a96b25d 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_lv.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_lv.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ scheduled=B\u016bv\u0113jums iepl\u0101nots -Configure=Konfigur\u0113t -delete=Dz\u0113st {0} -delete.confirm=Vai tie\u0161\u0101m dz\u0113st {0}, \u2018{1}\u2019? +Build\ scheduled=BÅ«vÄ“jums ieplÄnots +Configure=KonfigurÄ“t +delete=DzÄ“st {0} +delete.confirm=Vai tieÅ¡Äm dzÄ“st {0}, ‘{1}’? diff --git a/core/src/main/resources/lib/hudson/project/configurable_nb_NO.properties b/core/src/main/resources/lib/hudson/project/configurable_nb_NO.properties index f00f9588d9be..ed777821f3d7 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_nb_NO.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ scheduled=Versjonssteg lagt i k\u00f8 -Configure=Konfigur\u00e9r +Build\ scheduled=Versjonssteg lagt i kø +Configure=Konfigurér View\ Configuration=Vis konfigurasjon delete=Slett {0} -delete.confirm=Er du sikker p\u00e5 at du vil slette {0} \u2018{1}\u2019? +delete.confirm=Er du sikker pÃ¥ at du vil slette {0} ‘{1}’? diff --git a/core/src/main/resources/lib/hudson/project/configurable_pl.properties b/core/src/main/resources/lib/hudson/project/configurable_pl.properties index 1e4c17522cdb..3bdcbb84ecae 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_pl.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_pl.properties @@ -22,6 +22,6 @@ Build\ scheduled=Zadanie zaplanowano Configure=Konfiguruj -View\ Configuration=Podgl\u0105d konfiguracji -delete=Usu\u0144 {0} -delete.confirm=Czy na pewno usun\u0105\u0107 {0} \u2018{1}\u2019? +View\ Configuration=PodglÄ…d konfiguracji +delete=UsuÅ„ {0} +delete.confirm=Czy na pewno usunąć {0} ‘{1}’? diff --git a/core/src/main/resources/lib/hudson/project/configurable_pt_BR.properties b/core/src/main/resources/lib/hudson/project/configurable_pt_BR.properties index e5891393b8dc..447b219cd13e 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_pt_BR.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ scheduled=constru\u00E7\u00E3o agendada +Build\ scheduled=construção agendada delete=Excluir {0} Configure=Configurar -View\ Configuration= Configurar a vis\u00E3o +View\ Configuration= Configurar a visão delete.confirm=Quer mesmo remover {0} ''{1}''? diff --git a/core/src/main/resources/lib/hudson/project/configurable_pt_PT.properties b/core/src/main/resources/lib/hudson/project/configurable_pt_PT.properties index fb39e8562b27..d3e106987e28 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_pt_PT.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_pt_PT.properties @@ -23,4 +23,4 @@ Build\ scheduled=Build Agendado Configure=Configurar delete=Eliminar {0} -delete.confirm=Voc\u00ea tem certeza sobre a exclus\u00e3o do {0} {1} ''? +delete.confirm=Você tem certeza sobre a exclusão do {0} {1} ''? diff --git a/core/src/main/resources/lib/hudson/project/configurable_ro.properties b/core/src/main/resources/lib/hudson/project/configurable_ro.properties index 8f4d4dab6b3c..90752b102777 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_ro.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_ro.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Build\ scheduled=Build programat -Configure=Configureaz\u0103 -delete=\u0218terge {0} -delete.confirm=E\u0219ti sigur c\u0103 vrei s\u0103 \u0219tergi {0} \u2018{1}\u2019? +Configure=Configurează +delete=Șterge {0} +delete.confirm=EÈ™ti sigur că vrei să È™tergi {0} ‘{1}’? diff --git a/core/src/main/resources/lib/hudson/project/configurable_ru.properties b/core/src/main/resources/lib/hudson/project/configurable_ru.properties index 9f9d1c1d12a2..75a1e8b0b246 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_ru.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_ru.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -View\ Configuration=\u0421\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044e -delete=\u0423\u0434\u0430\u043b\u0438\u0442\u044c {0} -Configure=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 -Build\ scheduled=\u0421\u0431\u043e\u0440\u043a\u0430 \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0430 -delete.confirm=\u0412\u044b \u0442\u043e\u0447\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c {0} \u2018{1}\u2019? +View\ Configuration=Смотреть конфигурацию +delete=Удалить {0} +Configure=ÐаÑтройки +Build\ scheduled=Сборка запланирована +delete.confirm=Ð’Ñ‹ точно хотите удалить {0} ‘{1}’? diff --git a/core/src/main/resources/lib/hudson/project/configurable_sk.properties b/core/src/main/resources/lib/hudson/project/configurable_sk.properties index 7f14c934cd02..9915ce9fe4b5 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_sk.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_sk.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ scheduled=Zostavenie napl\u00e1novan\u00e9 +Build\ scheduled=Zostavenie naplánované Configure=Nastav -delete=Odstr\u00e1ni\u0165 -delete.confirm=Si si ist\u00fd vymazan\u00edm {0} ''{1}''? +delete=OdstrániÅ¥ +delete.confirm=Si si istý vymazaním {0} ''{1}''? diff --git a/core/src/main/resources/lib/hudson/project/configurable_sl.properties b/core/src/main/resources/lib/hudson/project/configurable_sl.properties index 7ed175f8b00c..f8d0ebbdb271 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_sl.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_sl.properties @@ -22,5 +22,5 @@ Build\ scheduled=Buildaj po umiku Configure=Nastavitve -delete=Izbri\u0161i -delete.confirm=Ali ste prepri\u010dana o izbrisanju ? +delete=IzbriÅ¡i +delete.confirm=Ali ste prepriÄana o izbrisanju ? diff --git a/core/src/main/resources/lib/hudson/project/configurable_sr.properties b/core/src/main/resources/lib/hudson/project/configurable_sr.properties index 436d9791d655..a24719090d95 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_sr.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_sr.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ scheduled=\u0418\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0437\u0430\u043A\u0430\u0437\u0430\u043D\u0430 -Configure=\u041F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 -delete=\u0423\u043A\u043B\u043E\u043D\u0438 {0} -delete.confirm=\u0414\u0430 \u043B\u0438 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u0443\u043A\u043B\u043E\u043D\u0438\u0442\u0435 {0} \u2018{1}\u2019? -View\ Configuration=\u041F\u0440\u0435\u0433\u043B\u0435\u0434 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 +Build\ scheduled=Изградња заказана +Configure=Подешавања +delete=Уклони {0} +delete.confirm=Да ли желите да уклоните {0} ‘{1}’? +View\ Configuration=Преглед подешавања diff --git a/core/src/main/resources/lib/hudson/project/configurable_sv_SE.properties b/core/src/main/resources/lib/hudson/project/configurable_sv_SE.properties index ba0fcb2de5f5..59b3495517f6 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_sv_SE.properties @@ -23,4 +23,4 @@ Build\ scheduled=Jobbet schemalagt Configure=Konfigurera delete=Ta bort {0} -delete.confirm=\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort {0} \u2018{1}\u2019? +delete.confirm=Är du säker pÃ¥ att du vill ta bort {0} ‘{1}’? diff --git a/core/src/main/resources/lib/hudson/project/configurable_tr.properties b/core/src/main/resources/lib/hudson/project/configurable_tr.properties index f89453dcb61c..ff7ac2a2bcb0 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_tr.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_tr.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. delete={0} sil -Configure=Konfig\u00fcrasyonu D\u00fczenle -Build\ scheduled=Yap\u0131land\u0131rma planland\u0131 -delete.confirm=Silmek istedi\u011finizden emin misiniz: {0} ''{1}''? +Configure=Konfigürasyonu Düzenle +Build\ scheduled=Yapılandırma planlandı +delete.confirm=Silmek istediÄŸinizden emin misiniz: {0} ''{1}''? diff --git a/core/src/main/resources/lib/hudson/project/configurable_uk.properties b/core/src/main/resources/lib/hudson/project/configurable_uk.properties index 7f51c3bde549..1db7dfe8b020 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_uk.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_uk.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ scheduled=\u0417\u0430\u043f\u043b\u0430\u043d\u043e\u0432\u0430\u043d\u0456 \u0437\u0431\u0456\u0440\u043a\u0438 -delete=\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 {0} -delete.confirm=\u0412\u0438 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u0456, \u0449\u043e \u0445\u043e\u0447\u0435\u0442\u0435 \u0432\u0438\u0434\u0430\u043b\u0438\u0442\u0438 {0} \u2018{1}\u2019? -Configure=\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f +Build\ scheduled=Заплановані збірки +delete=Видалити {0} +delete.confirm=Ви впевнені, що хочете видалити {0} ‘{1}’? +Configure=ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ diff --git a/core/src/main/resources/lib/hudson/project/configurable_zh_TW.properties b/core/src/main/resources/lib/hudson/project/configurable_zh_TW.properties index 2416889e1af2..ba20b9e5d12f 100644 --- a/core/src/main/resources/lib/hudson/project/configurable_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/configurable_zh_TW.properties @@ -19,8 +19,8 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -delete=\u522a\u9664 {0} -delete.confirm=\u60a8\u78ba\u5b9a\u8981\u522a\u9664 {0} \u2018{1}\u2019 \u55ce\uff1f -Build\ scheduled=\u5df2\u6392\u5165\u5efa\u7f6e -Configure=\u7d44\u614b -View\ Configuration=\u6aa2\u8996\u7d44\u614b +delete=刪除 {0} +delete.confirm=您確定è¦åˆªé™¤ {0} ‘{1}’ 嗎? +Build\ scheduled=已排入建置 +Configure=組態 +View\ Configuration=檢視組態 diff --git a/core/src/main/resources/lib/hudson/project/console-link_bg.properties b/core/src/main/resources/lib/hudson/project/console-link_bg.properties index aa1d9fee7ffe..e84f0e32565a 100644 --- a/core/src/main/resources/lib/hudson/project/console-link_bg.properties +++ b/core/src/main/resources/lib/hudson/project/console-link_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Console\ Output=\ - \u0418\u0437\u0445\u043e\u0434 \u043d\u0430 \u043a\u043e\u043d\u0437\u043e\u043b\u0430\u0442\u0430 + Изход на конзолата View\ as\ plain\ text=\ - \u0422\u0435\u043a\u0441\u0442\u043e\u0432 \u0444\u043e\u0440\u043c\u0430\u0442 + ТекÑтов формат diff --git a/core/src/main/resources/lib/hudson/project/console-link_it.properties b/core/src/main/resources/lib/hudson/project/console-link_it.properties index d6e97f733e06..68a2e81f6fc2 100644 --- a/core/src/main/resources/lib/hudson/project/console-link_it.properties +++ b/core/src/main/resources/lib/hudson/project/console-link_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/project/console-link_ja.properties b/core/src/main/resources/lib/hudson/project/console-link_ja.properties index c186b6f27e6e..8cfcf07d81fe 100644 --- a/core/src/main/resources/lib/hudson/project/console-link_ja.properties +++ b/core/src/main/resources/lib/hudson/project/console-link_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -View\ as\ plain\ text=\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u8868\u793a -Console\ Output=\u30b3\u30f3\u30bd\u30fc\u30eb\u51fa\u529b +View\ as\ plain\ text=プレーンテキスト表示 +Console\ Output=コンソール出力 diff --git a/core/src/main/resources/lib/hudson/project/console-link_pt_BR.properties b/core/src/main/resources/lib/hudson/project/console-link_pt_BR.properties index b726a424ba8b..7d589776af3c 100644 --- a/core/src/main/resources/lib/hudson/project/console-link_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/project/console-link_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. View\ as\ plain\ text=Exibir como texto puro -Console\ Output=Sa\u00edda do console +Console\ Output=Saída do console diff --git a/core/src/main/resources/lib/hudson/project/console-link_ru.properties b/core/src/main/resources/lib/hudson/project/console-link_ru.properties index d255d9cba2a6..a0b44b0965fc 100644 --- a/core/src/main/resources/lib/hudson/project/console-link_ru.properties +++ b/core/src/main/resources/lib/hudson/project/console-link_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u0412\u044B\u0432\u043E\u0434 \u043A\u043E\u043D\u0441\u043E\u043B\u0438 -View\ as\ plain\ text=\u041F\u0440\u043E\u0441\u043C\u043E\u0442\u0440\u0435\u0442\u044C \u043A\u0430\u043A \u043D\u0435\u0444\u043E\u0440\u043C\u0430\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0439 \u0442\u0435\u043A\u0441\u0442 +Console\ Output=Вывод конÑоли +View\ as\ plain\ text=ПроÑмотреть как неформатированный текÑÑ‚ diff --git a/core/src/main/resources/lib/hudson/project/console-link_sr.properties b/core/src/main/resources/lib/hudson/project/console-link_sr.properties index a58b54d29de3..c14f3af9e2b5 100644 --- a/core/src/main/resources/lib/hudson/project/console-link_sr.properties +++ b/core/src/main/resources/lib/hudson/project/console-link_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -View\ as\ plain\ text=\u041F\u0440\u0435\u0433\u043B\u0435\u0434 \u043E\u0431\u0438\u0447\u043D\u043E\u0433 \u0442\u0435\u043A\u0441\u0442\u0430 -Console\ Output=\u0418\u0441\u0445\u043E\u0434 \u0438\u0437 \u043A\u043E\u043D\u0437\u043E\u043B\u0435 +View\ as\ plain\ text=Преглед обичног текÑта +Console\ Output=ИÑход из конзоле diff --git a/core/src/main/resources/lib/hudson/project/console-link_zh_TW.properties b/core/src/main/resources/lib/hudson/project/console-link_zh_TW.properties index 5b1bcede0235..f476b67c0e9e 100644 --- a/core/src/main/resources/lib/hudson/project/console-link_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/console-link_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u4e3b\u63a7\u53f0\u8f38\u51fa -View\ as\ plain\ text=\u4ee5\u7d14\u6587\u5b57\u6aa2\u8996 +Console\ Output=主控å°è¼¸å‡º +View\ as\ plain\ text=以純文字檢視 diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_bg.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_bg.properties index e7cae3eb5616..0e17db2fae10 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_bg.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Disable\ Project=\ - \u0418\u0437\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442 + Изключване на проект Enable=\ - \u0412\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 + Включване This\ project\ is\ currently\ disabled=\ - \u041f\u0440\u043e\u0435\u043a\u0442\u044a\u0442 \u0432 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0435 \u0438\u0437\u043a\u043b\u044e\u0447\u0435\u043d + Проектът в момента е изключен diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_da.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_da.properties index 5c88b9a3c8ca..c955f1cc2d23 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_da.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_da.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Sl\u00E5 projektet fra -Enable=Sl\u00e5 til -This\ project\ is\ currently\ disabled=Dette projekt er for nuv\u00e6rende sl\u00e5et fra +Disable\ Project=SlÃ¥ projektet fra +Enable=SlÃ¥ til +This\ project\ is\ currently\ disabled=Dette projekt er for nuværende slÃ¥et fra diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_es.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_es.properties index 0ad86a2ffa22..20578c1d5cea 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_es.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_es.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -This\ project\ is\ currently\ disabled=Este projecto est\u00e1 desactivado actualmente +This\ project\ is\ currently\ disabled=Este projecto está desactivado actualmente Enable=Activar Disable\ Project=Desactivar el Proyecto diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_fi.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_fi.properties index a79ddf7f6018..d3be37fc9ca1 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_fi.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_fi.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Kytke pois p\u00E4\u00E4lt\u00E4 +Disable\ Project=Kytke pois päältä diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_fr.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_fr.properties index 7e38ff3fa024..9a13e716e487 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_fr.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_fr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -This\ project\ is\ currently\ disabled=Ce projet est actuellement désactivé -Disable\ Project=D\u00E9sactiver le projet +This\ project\ is\ currently\ disabled=Ce projet est actuellement désactivé +Disable\ Project=Désactiver le projet Enable=Activer diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_he.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_he.properties index 066e73a7d3c4..bf2e1c04f506 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_he.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_he.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Disable\ Project=\u05DB\u05D1\u05D4 \u05E4\u05E8\u05D5\u05D9\u05E7\u05D8 +Disable\ Project=כבה פרויקט diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_hu.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_hu.properties index 8af3b4e4d523..9f9665b76962 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_hu.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Projekt Letilt\u00E1sa +Disable\ Project=Projekt Letiltása diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_it.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_it.properties index b078e130c112..43236939d04e 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_it.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -23,5 +23,5 @@ Disable\ Project=Disabilita progetto Enable=Abilita -This\ project\ is\ currently\ disabled=Questo progetto è attualmente \ +This\ project\ is\ currently\ disabled=Questo progetto è attualmente \ disabilitato diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_ja.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_ja.properties index aa39005c601d..006c9792c1ea 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_ja.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -This\ project\ is\ currently\ disabled=\u73fe\u5728\u3001\u3053\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306f\u7121\u52b9\u3067\u3059\u3002 -Enable=\u6709\u52b9\u5316 -Disable\ Project=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u7121\u52b9\u5316 +This\ project\ is\ currently\ disabled=ç¾åœ¨ã€ã“ã®ãƒ—ロジェクトã¯ç„¡åŠ¹ã§ã™ã€‚ +Enable=有効化 +Disable\ Project=プロジェクトã®ç„¡åŠ¹åŒ– diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_ko.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_ko.properties index 2dd607537e62..0e5180625958 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_ko.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_ko.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=\uD504\uB85C\uC81D\uD2B8 \uC911\uC9C0\uD558\uAE30 -Enable=\uD65C\uC131 -This\ project\ is\ currently\ disabled=\uC774 \uD504\uB85C\uC81D\uD2B8\uB294 \uD604\uC7AC \uBE44\uD65C\uC131 \uC0C1\uD0DC\uC785\uB2C8\uB2E4 +Disable\ Project=프로ì íŠ¸ 중지하기 +Enable=활성 +This\ project\ is\ currently\ disabled=ì´ í”„ë¡œì íŠ¸ëŠ” 현재 비활성 ìƒíƒœìž…니다 diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_lt.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_lt.properties index f4732ee85e2a..7ddd986ec645 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_lt.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_lt.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Disable\ Project=I\u0161jungti projekt\u0105 +Disable\ Project=IÅ¡jungti projektÄ… diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_lv.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_lv.properties index f4d919062842..16ea3dd469f4 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_lv.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_lv.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Atsp\u0113jot projektu -Enable=Iesp\u0113jot -This\ project\ is\ currently\ disabled=\u0160is projekts pa\u0161reiz ir atsp\u0113jots +Disable\ Project=AtspÄ“jot projektu +Enable=IespÄ“jot +This\ project\ is\ currently\ disabled=Å is projekts paÅ¡reiz ir atspÄ“jots diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_pl.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_pl.properties index 1890a5ee682f..67ed9cb5874d 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_pl.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_pl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Wy\u0142\u0105cz projekt -Enable=W\u0142\u0105cz -This\ project\ is\ currently\ disabled=Ten projekt jest teraz wy\u0142\u0105czony +Disable\ Project=WyÅ‚Ä…cz projekt +Enable=WÅ‚Ä…cz +This\ project\ is\ currently\ disabled=Ten projekt jest teraz wyÅ‚Ä…czony diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_pt_BR.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_pt_BR.properties index 63a0f3bc8f35..160f6396b0c1 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_pt_BR.properties @@ -22,4 +22,4 @@ Disable\ Project=Desabilitar projeto Enable=Habilitar -This\ project\ is\ currently\ disabled=Este projeto est\u00e1 atualmente desabilitado. +This\ project\ is\ currently\ disabled=Este projeto está atualmente desabilitado. diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_ru.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_ru.properties index c29639a04f17..2ea073fa4f4f 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_ru.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=\u0412\u044b\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442 -Enable=\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c -This\ project\ is\ currently\ disabled=\u042d\u0442\u043e\u0442 \u043f\u0440\u043e\u0435\u043a\u0442 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d +Disable\ Project=Выключить проект +Enable=Включить +This\ project\ is\ currently\ disabled=Этот проект временно выключен diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_sk.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_sk.properties index ea8e0f779022..6d8e4224e8f1 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_sk.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_sk.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Zak\u00E1\u017E projekt -Enable=Povo\u013E -This\ project\ is\ currently\ disabled=Tento projekt je zak\u00E1zan\u00FD +Disable\ Project=Zakáž projekt +Enable=Povoľ +This\ project\ is\ currently\ disabled=Tento projekt je zakázaný diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_sl.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_sl.properties index 595431e4e63f..32f1cc58ae8d 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_sl.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_sl.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Disable\ Project=Izklju\u010Di projekt +Disable\ Project=IzkljuÄi projekt diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_sr.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_sr.properties index ccf1bf9b675d..edae4a98a8aa 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_sr.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -This\ project\ is\ currently\ disabled=\u041E\u0432\u0430\u0458 \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 \u0458\u0435 \u0442\u0440\u0435\u043D\u0443\u0442\u043D\u043E \u043E\u043D\u0435\u043C\u043E\u0433\u0443\u045B\u0435\u043D -Enable=\u041E\u043C\u043E\u0433\u0443\u045B\u0438 -Disable\ Project=\u041E\u043D\u0435\u043C\u043E\u0433\u0443\u045B\u0438 \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 +This\ project\ is\ currently\ disabled=Овај пројекат је тренутно онемогућен +Enable=Омогући +Disable\ Project=Онемогући пројекат diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_sv_SE.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_sv_SE.properties index 069a7dbd2f3b..f3fbbd877917 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_sv_SE.properties @@ -22,4 +22,4 @@ Disable\ Project=Inaktivera Projekt Enable=Aktivera -This\ project\ is\ currently\ disabled=Detta projekt \u00E4r f\u00F6r n\u00E4rvarande inaktiverat +This\ project\ is\ currently\ disabled=Detta projekt är för närvarande inaktiverat diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_tr.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_tr.properties index 83169532a394..12685be25f23 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_tr.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Projeyi devre d\u0131\u015f\u0131 b\u0131rak -This\ project\ is\ currently\ disabled=Bu proje \u015fimdilik devre d\u0131\u015f\u0131 +Disable\ Project=Projeyi devre dışı bırak +This\ project\ is\ currently\ disabled=Bu proje ÅŸimdilik devre dışı diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_uk.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_uk.properties index acec5b9f2d62..edf665cdf81e 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_uk.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_uk.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Disable\ Project=\u0412\u0438\u043C\u043A\u043D\u0443\u0442\u0438 \u043F\u0440\u043E\u0435\u043A\u0442 +Disable\ Project=Вимкнути проект diff --git a/core/src/main/resources/lib/hudson/project/makeDisabled_zh_TW.properties b/core/src/main/resources/lib/hudson/project/makeDisabled_zh_TW.properties index d2e7c5a85553..2996f11a2b6c 100644 --- a/core/src/main/resources/lib/hudson/project/makeDisabled_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/makeDisabled_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -This\ project\ is\ currently\ disabled=\u9019\u500b\u5c08\u6848\u5df2\u505c\u7528 -Enable=\u555f\u7528 -Disable\ Project=\u505c\u7528\u5c08\u6848 +This\ project\ is\ currently\ disabled=這個專案已åœç”¨ +Enable=啟用 +Disable\ Project=åœç”¨å°ˆæ¡ˆ diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_bg.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_bg.properties index 2151947350f5..01534a869aa2 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_bg.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Downstream\ Projects=\ - \u041f\u043e\u0441\u043b\u0435\u0434\u0432\u0430\u0449\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0438 + ПоÑледващи проекти Upstream\ Projects=\ - \u041f\u0440\u0435\u0434\u0448\u0435\u0441\u0442\u0432\u0430\u0449\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0438 + ПредшеÑтващи проекти diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_cs.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_cs.properties index 288993f7106d..67794ac549e9 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_cs.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_cs.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Downstream\ Projects=Navazuj\u00EDc\u00ED projekty +Downstream\ Projects=Navazující projekty Upstream\ Projects= diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_el.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_el.properties index 9d1b0e6d3d97..74d463b932c6 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_el.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_el.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Downstream\ Projects=\u03A0\u03C1\u03CC\u03C4\u03B6\u03B5\u03BA\u03C4 \u039A\u03B1\u03C4\u03B5\u03B2\u03B1\u03C3\u03BC\u03AC\u03C4\u03C9\u03BD -Upstream\ Projects=\u03A0\u03C1\u03CC\u03C4\u03B6\u03B5\u03BA\u03C4 \u0391\u03BD\u03B5\u03B2\u03B1\u03C3\u03BC\u03AC\u03C4\u03C9\u03BD +Downstream\ Projects=ΠÏότζεκτ Κατεβασμάτων +Upstream\ Projects=ΠÏότζεκτ Ανεβασμάτων diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_et.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_et.properties index f507948b5248..c3101196175c 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_et.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_et.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Downstream\ Projects=S\u00F5ltuvad projektid -Upstream\ Projects=Projekti s\u00F5ltuvused +Downstream\ Projects=Sõltuvad projektid +Upstream\ Projects=Projekti sõltuvused diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_fi.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_fi.properties index 184b2600bee1..63b891fb5051 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_fi.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_fi.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Downstream\ Projects=Alavirran projektit -Upstream\ Projects=Yl\u00E4virran projektit +Upstream\ Projects=Ylävirran projektit diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_he.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_he.properties index 5f10b12d9fb2..96066ea4c6c7 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_he.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_he.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Downstream\ Projects=\u05E4\u05E8\u05D5\u05D9\u05D9\u05E7\u05D8\u05D9\u05DD \u05D4\u05D1\u05D0\u05D9\u05DD \u05D1\u05EA\u05D4\u05DC\u05D9\u05DA -Upstream\ Projects=\u05E4\u05E8\u05D5\u05D9\u05D9\u05E7\u05D8\u05D9\u05DD \u05E7\u05D5\u05D3\u05DE\u05D9\u05DD \u05D1\u05EA\u05D4\u05DC\u05D9\u05DA +Downstream\ Projects=×¤×¨×•×™×™×§×˜×™× ×”×‘××™× ×‘×ª×”×œ×™×š +Upstream\ Projects=×¤×¨×•×™×™×§×˜×™× ×§×•×“×ž×™× ×‘×ª×”×œ×™×š diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_hu.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_hu.properties index 6d0f1c946787..f3b8c2c670c6 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_hu.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_hu.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Downstream\ Projects=Ut\u00E1na K\u00F6vetkez\u0151 Projektek -Upstream\ Projects=Megel\u0151z\u0151 Projektek +Downstream\ Projects=Utána KövetkezÅ‘ Projektek +Upstream\ Projects=MegelÅ‘zÅ‘ Projektek diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_it.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_it.properties index 8a30747a515a..266373d6445b 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_it.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_ja.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_ja.properties index 6022f72a23a0..dd0dfddc2902 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_ja.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Upstream\ Projects=\u4e0a\u6d41\u30d7\u30ed\u30b8\u30a7\u30af\u30c8 -Downstream\ Projects=\u4e0b\u6d41\u30d7\u30ed\u30b8\u30a7\u30af\u30c8 +Upstream\ Projects=上æµãƒ—ロジェクト +Downstream\ Projects=下æµãƒ—ロジェクト diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_ko.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_ko.properties index 9dc36b621de6..c642a81cab6a 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_ko.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_ko.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Downstream\ Projects=\uD558\uC704 \uD504\uB85C\uC81D\uD2B8 -Upstream\ Projects=\uC0C1\uC704 \uD504\uB85C\uC81D\uD2B8 +Downstream\ Projects=하위 프로ì íŠ¸ +Upstream\ Projects=ìƒìœ„ 프로ì íŠ¸ diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_lt.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_lt.properties index 2b92bc40d41e..ee1f08be3d55 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_lt.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_lt.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Downstream\ Projects=\u017Demesni projektai -Upstream\ Projects=Auk\u0161tesni projektai +Downstream\ Projects=Žemesni projektai +Upstream\ Projects=AukÅ¡tesni projektai diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_lv.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_lv.properties index 0c9baf5d72df..41d79da6c078 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_lv.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_lv.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Downstream\ Projects=Sekojo\u0161ie projekti -Upstream\ Projects=Iepriek\u0161\u0113jie projekti +Downstream\ Projects=SekojoÅ¡ie projekti +Upstream\ Projects=IepriekÅ¡Ä“jie projekti diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_nb_NO.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_nb_NO.properties index 8389d9ab73af..436f342f0068 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_nb_NO.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Downstream\ Projects=Nedstr\u00F8ms prosjekter -Upstream\ Projects=Oppstr\u00F8ms prosjekter +Downstream\ Projects=Nedstrøms prosjekter +Upstream\ Projects=Oppstrøms prosjekter diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_pl.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_pl.properties index f995f201826c..efeb3a994c9f 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_pl.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_pl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Downstream\ Projects=Nast\u0119pne zale\u017Cne projekty -Upstream\ Projects=Poprzednie zale\u017Cne projekty +Downstream\ Projects=NastÄ™pne zależne projekty +Upstream\ Projects=Poprzednie zależne projekty diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_ru.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_ru.properties index d1d46927be11..ea59d6e40235 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_ru.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Upstream\ Projects=\u0412\u043e\u0441\u0445\u043e\u0434\u044f\u0449\u0438\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u044b -Downstream\ Projects=\u041d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0438\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u044b +Upstream\ Projects=ВоÑходÑщие проекты +Downstream\ Projects=ÐиÑходÑщие проекты diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_sr.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_sr.properties index 68afeebabd42..b53fbbfacd4a 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_sr.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Downstream\ Projects=Downstream \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0438 -Upstream\ Projects=Upstream \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0438 +Downstream\ Projects=Downstream пројекти +Upstream\ Projects=Upstream пројекти diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_sv_SE.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_sv_SE.properties index 4bf9f924398a..f4b58a3df6b0 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_sv_SE.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Downstream\ Projects=Underordnade jobb -Upstream\ Projects=\u00D6verordnade jobb +Upstream\ Projects=Överordnade jobb diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_uk.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_uk.properties index 1792e9b72067..374f02acf015 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_uk.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_uk.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Downstream\ Projects=\u041D\u0438\u0436\u0447\u0456 \u043F\u0440\u043E\u0435\u043A\u0442\u0438 -Upstream\ Projects=\u0412\u0438\u0449\u0456 \u041F\u0440\u043E\u0435\u043A\u0442\u0438 +Downstream\ Projects=Ðижчі проекти +Upstream\ Projects=Вищі Проекти diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_zh_TW.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_zh_TW.properties index d047443e8258..9ca163e02a74 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Downstream\ Projects=\u4E0B\u6E38\u5C08\u6848 -Upstream\ Projects=\u4E0A\u6E38\u5C08\u6848 +Downstream\ Projects=下游專案 +Upstream\ Projects=上游專案 diff --git a/core/src/main/resources/lib/hudson/propertyTable_bg.properties b/core/src/main/resources/lib/hudson/propertyTable_bg.properties index b8665be7b30a..0a9eab247e13 100644 --- a/core/src/main/resources/lib/hudson/propertyTable_bg.properties +++ b/core/src/main/resources/lib/hudson/propertyTable_bg.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Name=\ - \u0418\u043c\u0435 + Име Value=\ - \u0421\u0442\u043e\u0439\u043d\u043e\u0441\u0442 + СтойноÑÑ‚ diff --git a/core/src/main/resources/lib/hudson/propertyTable_cs.properties b/core/src/main/resources/lib/hudson/propertyTable_cs.properties index 45027813efb5..a32fbefc62d7 100644 --- a/core/src/main/resources/lib/hudson/propertyTable_cs.properties +++ b/core/src/main/resources/lib/hudson/propertyTable_cs.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=Jm\u00E9no +Name=Jméno Value=Hodnota diff --git a/core/src/main/resources/lib/hudson/propertyTable_da.properties b/core/src/main/resources/lib/hudson/propertyTable_da.properties index 2f5ed39b698f..41484a2a46d5 100644 --- a/core/src/main/resources/lib/hudson/propertyTable_da.properties +++ b/core/src/main/resources/lib/hudson/propertyTable_da.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Value=V\u00e6rdi +Value=Værdi Name=Navn diff --git a/core/src/main/resources/lib/hudson/propertyTable_el.properties b/core/src/main/resources/lib/hudson/propertyTable_el.properties index be1ae0bbb240..5061b5f66f29 100644 --- a/core/src/main/resources/lib/hudson/propertyTable_el.properties +++ b/core/src/main/resources/lib/hudson/propertyTable_el.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Name=\u038C\u03BD\u03BF\u03BC\u03B1 -Value=\u03A4\u03B9\u03BC\u03AE +Name=Όνομα +Value=Τιμή diff --git a/core/src/main/resources/lib/hudson/propertyTable_hu.properties b/core/src/main/resources/lib/hudson/propertyTable_hu.properties index 221b04fec8dd..4fc62c8cff29 100644 --- a/core/src/main/resources/lib/hudson/propertyTable_hu.properties +++ b/core/src/main/resources/lib/hudson/propertyTable_hu.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Name=N\u00E9v -Value=\u00C9rt\u00E9k +Name=Név +Value=Érték diff --git a/core/src/main/resources/lib/hudson/propertyTable_it.properties b/core/src/main/resources/lib/hudson/propertyTable_it.properties index 8a46969183b9..daa10f8838e0 100644 --- a/core/src/main/resources/lib/hudson/propertyTable_it.properties +++ b/core/src/main/resources/lib/hudson/propertyTable_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/propertyTable_ja.properties b/core/src/main/resources/lib/hudson/propertyTable_ja.properties index 0ed9fc83dcd6..76bfb8807e86 100644 --- a/core/src/main/resources/lib/hudson/propertyTable_ja.properties +++ b/core/src/main/resources/lib/hudson/propertyTable_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540d\u524d -Value=\u5024 +Name=åå‰ +Value=値 diff --git a/core/src/main/resources/lib/hudson/propertyTable_ko.properties b/core/src/main/resources/lib/hudson/propertyTable_ko.properties index 14e62a0ef9a8..e9a2b2ad5199 100644 --- a/core/src/main/resources/lib/hudson/propertyTable_ko.properties +++ b/core/src/main/resources/lib/hudson/propertyTable_ko.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\uC774\uB984 -Value=\uAC12 +Name=ì´ë¦„ +Value=ê°’ diff --git a/core/src/main/resources/lib/hudson/propertyTable_lt.properties b/core/src/main/resources/lib/hudson/propertyTable_lt.properties index b5aa8899d7ad..d02b8621c475 100644 --- a/core/src/main/resources/lib/hudson/propertyTable_lt.properties +++ b/core/src/main/resources/lib/hudson/propertyTable_lt.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors Name=Pavadinimas -Value=Reik\u0161m\u0117 +Value=ReikÅ¡mÄ— diff --git a/core/src/main/resources/lib/hudson/propertyTable_lv.properties b/core/src/main/resources/lib/hudson/propertyTable_lv.properties index d7d9e66e13a0..5f3c1d919dbf 100644 --- a/core/src/main/resources/lib/hudson/propertyTable_lv.properties +++ b/core/src/main/resources/lib/hudson/propertyTable_lv.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors Name=Nosaukums -Value=V\u0113rt\u012Bba +Value=VÄ“rtÄ«ba diff --git a/core/src/main/resources/lib/hudson/propertyTable_pl.properties b/core/src/main/resources/lib/hudson/propertyTable_pl.properties index c2c03aa55a4b..636724099310 100644 --- a/core/src/main/resources/lib/hudson/propertyTable_pl.properties +++ b/core/src/main/resources/lib/hudson/propertyTable_pl.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors Name=Nazwa -Value=Warto\u015B\u0107 +Value=Wartość diff --git a/core/src/main/resources/lib/hudson/propertyTable_ru.properties b/core/src/main/resources/lib/hudson/propertyTable_ru.properties index 12415be261a4..00b5c771d79c 100644 --- a/core/src/main/resources/lib/hudson/propertyTable_ru.properties +++ b/core/src/main/resources/lib/hudson/propertyTable_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u0418\u043c\u044f -Value=\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 +Name=Ð˜Ð¼Ñ +Value=Значение diff --git a/core/src/main/resources/lib/hudson/propertyTable_sr.properties b/core/src/main/resources/lib/hudson/propertyTable_sr.properties index 77ff4ea72af1..5496d7932cd7 100644 --- a/core/src/main/resources/lib/hudson/propertyTable_sr.properties +++ b/core/src/main/resources/lib/hudson/propertyTable_sr.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Name=\u0418\u043C\u0435 -Value=\u0412\u0440\u0435\u0434\u043D\u043E\u0441\u0442 +Name=Име +Value=ВредноÑÑ‚ diff --git a/core/src/main/resources/lib/hudson/propertyTable_sv_SE.properties b/core/src/main/resources/lib/hudson/propertyTable_sv_SE.properties index 34d3ee4d4b96..3e4394db8a74 100644 --- a/core/src/main/resources/lib/hudson/propertyTable_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/propertyTable_sv_SE.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Name=Namn -Value=V\u00E4rde +Value=Värde diff --git a/core/src/main/resources/lib/hudson/propertyTable_tr.properties b/core/src/main/resources/lib/hudson/propertyTable_tr.properties index 578415754000..45dc38ae9957 100644 --- a/core/src/main/resources/lib/hudson/propertyTable_tr.properties +++ b/core/src/main/resources/lib/hudson/propertyTable_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u0130sim -Value=De\u011fer +Name=Ä°sim +Value=DeÄŸer diff --git a/core/src/main/resources/lib/hudson/propertyTable_uk.properties b/core/src/main/resources/lib/hudson/propertyTable_uk.properties index 46d49bbdacad..b7d582408e65 100644 --- a/core/src/main/resources/lib/hudson/propertyTable_uk.properties +++ b/core/src/main/resources/lib/hudson/propertyTable_uk.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Name=\u041D\u0430\u0437\u0432\u0430 -Value=\u0417\u043D\u0430\u0447\u0435\u043D\u043D\u044F +Name=Ðазва +Value=Ð—Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ diff --git a/core/src/main/resources/lib/hudson/propertyTable_zh_TW.properties b/core/src/main/resources/lib/hudson/propertyTable_zh_TW.properties index 08a23e7d1596..8dc0fb3ab2db 100644 --- a/core/src/main/resources/lib/hudson/propertyTable_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/propertyTable_zh_TW.properties @@ -21,5 +21,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540d\u7a31 -Value=\u503c +Name=å稱 +Value=值 diff --git a/core/src/main/resources/lib/hudson/queue_bg.properties b/core/src/main/resources/lib/hudson/queue_bg.properties index 4bb629b69f2a..c578707564e5 100644 --- a/core/src/main/resources/lib/hudson/queue_bg.properties +++ b/core/src/main/resources/lib/hudson/queue_bg.properties @@ -21,19 +21,19 @@ # THE SOFTWARE. Build\ Queue=\ - \u041e\u043f\u0430\u0448\u043a\u0430 \u0437\u0430 \u0438\u0437\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u0435{0,choice,0#|0< ({0,number})} + Опашка за изпълнение{0,choice,0#|0< ({0,number})} Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=\ - Jenkins \u0449\u0435 \u0441\u0435 \u0438\u0437\u043a\u043b\u044e\u0447\u0438. \u041d\u044f\u043c\u0430 \u0434\u0430 \u0441\u0435 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0442 \u043d\u043e\u0432\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f. + Jenkins ще Ñе изключи. ÐÑма да Ñе Ñтартират нови изгражданиÑ. No\ builds\ in\ the\ queue.=\ - \u041d\u044f\u043c\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f \u0432 \u043e\u043f\u0430\u0448\u043a\u0430\u0442\u0430. + ÐÑма Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ Ð² опашката. cancel=\ - \u041e\u0442\u043c\u044f\u043d\u0430 + ОтмÑна Unknown\ Task=\ - \u041d\u0435\u043f\u043e\u0437\u043d\u0430\u0442\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 + Ðепозната задача WaitingFor=\ - \u0418\u0437\u0447\u0430\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 {0} + Изчакване на {0} Filtered\ Build\ Queue=\ - \u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u0430 \u043e\u043f\u0430\u0448\u043a\u0430 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f {0,choice,0#|0< ({0,number})} + Филтрирана опашка за Ð¸Ð·Ð³Ñ€Ð°Ð¶Ð´Ð°Ð½Ð¸Ñ {0,choice,0#|0< ({0,number})} # Are you sure you want to cancel the queued run of {0}? confirm=\ - \u0421\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u0435 \u0437\u0430\u043f\u043b\u0430\u043d\u0443\u0432\u0430\u043d\u043e\u0442\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 {0}? + Сигурни ли Ñте, че иÑкате да отмените заплануваното изграждане на {0}? diff --git a/core/src/main/resources/lib/hudson/queue_cs.properties b/core/src/main/resources/lib/hudson/queue_cs.properties index eb4339219ed5..4a98db085887 100644 --- a/core/src/main/resources/lib/hudson/queue_cs.properties +++ b/core/src/main/resources/lib/hudson/queue_cs.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Fronta \u010Dekaj\u00EDc\u00EDch build\u016F{0,choice,0#|0< ({0,number})} -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins bude brzy vypnut. \u017D\u00E1dn\u00E9 dal\u0161\u00ED \u00FAlohy nebudou provedeny. -No\ builds\ in\ the\ queue.=\u017D\u00E1dn\u00E1 sestaven\u00ED ve front\u011B. -WaitingFor=\u010Cek\u00E1 na {0} -cancel=zru\u0161it +Build\ Queue=Fronta Äekajících buildů{0,choice,0#|0< ({0,number})} +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins bude brzy vypnut. Žádné další úlohy nebudou provedeny. +No\ builds\ in\ the\ queue.=Žádná sestavení ve frontÄ›. +WaitingFor=ÄŒeká na {0} +cancel=zruÅ¡it diff --git a/core/src/main/resources/lib/hudson/queue_da.properties b/core/src/main/resources/lib/hudson/queue_da.properties index eb9ba8aac5a7..50e25d772a90 100644 --- a/core/src/main/resources/lib/hudson/queue_da.properties +++ b/core/src/main/resources/lib/hudson/queue_da.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Unknown\ Task=Ukendt Opgave -No\ builds\ in\ the\ queue.=Ingen job i k\u00F8en. -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins vil lukke ned, der vil ikke blive udf\u00f8rt flere byg. +No\ builds\ in\ the\ queue.=Ingen job i køen. +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins vil lukke ned, der vil ikke blive udført flere byg. WaitingFor=afventer {0} cancel=annuller -Build\ Queue=Job-k\u00F8{0,choice,0#|0< ({0,number})} +Build\ Queue=Job-kø{0,choice,0#|0< ({0,number})} diff --git a/core/src/main/resources/lib/hudson/queue_de.properties b/core/src/main/resources/lib/hudson/queue_de.properties index 04012d429160..b389a0419c76 100644 --- a/core/src/main/resources/lib/hudson/queue_de.properties +++ b/core/src/main/resources/lib/hudson/queue_de.properties @@ -22,9 +22,9 @@ Build\ Queue=Build-Warteschlange{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=Keine Builds geplant -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins f\u00E4hrt gerade herunter. Es werden keine weiteren Builds ausgef\u00FChrt. +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins fährt gerade herunter. Es werden keine weiteren Builds ausgeführt. cancel=Abbrechen Unknown\ Task=Unbekannter Task WaitingFor=Wartet seit {0} -confirm=M\u00F6chten Sie wirklich die geplante Ausf\u00FChrung von {0} stornieren? +confirm=Möchten Sie wirklich die geplante Ausführung von {0} stornieren? Filtered\ Build\ Queue=Gefilterte Build-Warteschlange{0,choice,0#|0< ({0,number})} diff --git a/core/src/main/resources/lib/hudson/queue_el.properties b/core/src/main/resources/lib/hudson/queue_el.properties index 3c73eb156cfd..5dce98d02a92 100644 --- a/core/src/main/resources/lib/hudson/queue_el.properties +++ b/core/src/main/resources/lib/hudson/queue_el.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u039F\u03C5\u03C1\u03AC \u03B4\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03B9\u03CE\u03BD{0,choice,0#|0< ({0,number})} -No\ builds\ in\ the\ queue.=\u0394\u03B5\u03BD \u03C5\u03C0\u03AC\u03C1\u03C7\u03BF\u03C5\u03BD \u03B4\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B5\u03C2 \u03B5\u03BD \u03B1\u03BD\u03B1\u03BC\u03BF\u03BD\u03AE -WaitingFor=\u0391\u03BD\u03B1\u03BC\u03BF\u03BD\u03AE \u03B3\u03B9\u03B1 {0} +Build\ Queue=ΟυÏά διεÏγασιών{0,choice,0#|0< ({0,number})} +No\ builds\ in\ the\ queue.=Δεν υπάÏχουν διεÏγασίες εν αναμονή +WaitingFor=Αναμονή για {0} diff --git a/core/src/main/resources/lib/hudson/queue_es.properties b/core/src/main/resources/lib/hudson/queue_es.properties index ed4816bebc63..8756e2f6eb26 100644 --- a/core/src/main/resources/lib/hudson/queue_es.properties +++ b/core/src/main/resources/lib/hudson/queue_es.properties @@ -22,7 +22,7 @@ # THE SOFTWARE. Build\ Queue=Trabajos en la cola{0,choice,0#|0< ({0,number})} -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins va a ser apagado. No se procesarán nuevas tareas. +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins va a ser apagado. No se procesarán nuevas tareas. cancel=cancelar No\ builds\ in\ the\ queue.=No hay trabajos en la cola Unknown\ Task=Tarea desconocida diff --git a/core/src/main/resources/lib/hudson/queue_et.properties b/core/src/main/resources/lib/hudson/queue_et.properties index 1c3c795c46d4..071c386d1b94 100644 --- a/core/src/main/resources/lib/hudson/queue_et.properties +++ b/core/src/main/resources/lib/hudson/queue_et.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Build\ Queue=Ehitus j\u00E4rjekord{0,choice,0#|0< ({0,number})} -No\ builds\ in\ the\ queue.=Ehitamisi pole j\u00E4rjekorras +Build\ Queue=Ehitus järjekord{0,choice,0#|0< ({0,number})} +No\ builds\ in\ the\ queue.=Ehitamisi pole järjekorras WaitingFor=Ootan {0} diff --git a/core/src/main/resources/lib/hudson/queue_fi.properties b/core/src/main/resources/lib/hudson/queue_fi.properties index b87665dbd305..129835fee2c1 100644 --- a/core/src/main/resources/lib/hudson/queue_fi.properties +++ b/core/src/main/resources/lib/hudson/queue_fi.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=K\u00E4\u00E4nn\u00F6sjono{0,choice,0#|0< ({0,number})} -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkinsin alasajo alkaa pian. Enempi\u00E4 k\u00E4\u00E4nn\u00F6ksi\u00E4 ei nyt aloiteta. -No\ builds\ in\ the\ queue.=Ei k\u00E4\u00E4nn\u00F6ksi\u00E4 jonossa. +Build\ Queue=Käännösjono{0,choice,0#|0< ({0,number})} +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkinsin alasajo alkaa pian. Enempiä käännöksiä ei nyt aloiteta. +No\ builds\ in\ the\ queue.=Ei käännöksiä jonossa. WaitingFor=Odottaa {0} -cancel=keskeyt\u00E4 +cancel=keskeytä diff --git a/core/src/main/resources/lib/hudson/queue_fr.properties b/core/src/main/resources/lib/hudson/queue_fr.properties index d058ec58a10f..0c64eb7c11c0 100644 --- a/core/src/main/resources/lib/hudson/queue_fr.properties +++ b/core/src/main/resources/lib/hudson/queue_fr.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=File d\u2019attente des constructions{0,choice,0#|0< ({0,number})} -No\ builds\ in\ the\ queue.=File d\u2019attente des constructions vide -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins est en cours de fermeture. Aucun nouveau build ne sera lancé. +Build\ Queue=File d’attente des constructions{0,choice,0#|0< ({0,number})} +No\ builds\ in\ the\ queue.=File d’attente des constructions vide +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins est en cours de fermeture. Aucun nouveau build ne sera lancé. cancel=Annuler WaitingFor=En attente {0} WaitingSince=En attente depuis {0} -appears\ to\ be\ stuck=semble être bloqué +appears\ to\ be\ stuck=semble être bloqué diff --git a/core/src/main/resources/lib/hudson/queue_he.properties b/core/src/main/resources/lib/hudson/queue_he.properties index b93d32060672..f5434b73249a 100644 --- a/core/src/main/resources/lib/hudson/queue_he.properties +++ b/core/src/main/resources/lib/hudson/queue_he.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u05EA\u05D5\u05E8 \u05D1\u05E0\u05D9\u05D5\u05EA{0,choice,0#|0< ({0,number})} -No\ builds\ in\ the\ queue.=\u05D0\u05D9\u05DF \u05D1\u05E0\u05D9\u05D5\u05EA \u05DE\u05DE\u05EA\u05D9\u05E0\u05D5\u05EA \u05D1\u05EA\u05D5\u05E8. -WaitingFor=\u05DE\u05D7\u05DB\u05D4 \u05DC - {0} -WaitingSince=\u05DE\u05DE\u05EA\u05D9\u05DF \u05DE\u05D0\u05D6 {0} -cancel=\u05D1\u05D8\u05DC +Build\ Queue=תור בניות{0,choice,0#|0< ({0,number})} +No\ builds\ in\ the\ queue.=×ין בניות ממתינות בתור. +WaitingFor=מחכה ל - {0} +WaitingSince=ממתין מ××– {0} +cancel=בטל diff --git a/core/src/main/resources/lib/hudson/queue_hu.properties b/core/src/main/resources/lib/hudson/queue_hu.properties index 8373c53bad53..688b86fec19a 100644 --- a/core/src/main/resources/lib/hudson/queue_hu.properties +++ b/core/src/main/resources/lib/hudson/queue_hu.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u00C9p\u00EDt\u00E9si Sor{0,choice,0#|0< ({0,number})} -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=A Jenkins le\u00E1ll. Nem hajt v\u00E9gre t\u00F6bb build-et. -No\ builds\ in\ the\ queue.=Nincs \u00FCtemezett build a sorban -WaitingFor=V\u00E1rakoz\u00E1s {0} -cancel=m\u00E9gse +Build\ Queue=Építési Sor{0,choice,0#|0< ({0,number})} +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=A Jenkins leáll. Nem hajt végre több build-et. +No\ builds\ in\ the\ queue.=Nincs ütemezett build a sorban +WaitingFor=Várakozás {0} +cancel=mégse diff --git a/core/src/main/resources/lib/hudson/queue_it.properties b/core/src/main/resources/lib/hudson/queue_it.properties index 19862cce36d8..1513bb8ca55b 100644 --- a/core/src/main/resources/lib/hudson/queue_it.properties +++ b/core/src/main/resources/lib/hudson/queue_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -27,7 +27,7 @@ cancel\ this\ build=Annulla questa compilazione confirm=Annullare l''esecuzione in coda di {0}? Filtered\ Build\ Queue=Coda compilazioni filtrata{0,choice,0#|0< ({0,number})} Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=\ - Jenkins sarà arrestato a breve. Non saranno eseguite altre compilazioni. + Jenkins sarà arrestato a breve. Non saranno eseguite altre compilazioni. No\ builds\ in\ the\ queue.=Nessuna compilazione in coda. -Unknown\ Task=Attività sconosciuta +Unknown\ Task=Attività sconosciuta WaitingFor=In attesa di {0} diff --git a/core/src/main/resources/lib/hudson/queue_ja.properties b/core/src/main/resources/lib/hudson/queue_ja.properties index 1a154f8b62b5..02f6923bcff5 100644 --- a/core/src/main/resources/lib/hudson/queue_ja.properties +++ b/core/src/main/resources/lib/hudson/queue_ja.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u30d3\u30eb\u30c9\u30ad\u30e5\u30fc{0,choice,0#|0< ({0,number})} -No\ builds\ in\ the\ queue.=\u30d3\u30eb\u30c9\u5f85\u3061 +Build\ Queue=ビルドキュー{0,choice,0#|0< ({0,number})} +No\ builds\ in\ the\ queue.=ビルド待㡠Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=\ - Jenkins\u306f\u7d42\u4e86\u6e96\u5099\u4e2d\u306e\u305f\u3081\u30d3\u30eb\u30c9\u306f\u5b9f\u884c\u3055\u308c\u307e\u305b\u3093\u3002 -cancel=\u30ad\u30e3\u30f3\u30bb\u30eb -Unknown\ Task=\u672a\u77e5\u306e\u30bf\u30b9\u30af -WaitingFor={0} \u5f85\u6a5f\u3057\u3066\u3044\u307e\u3059 + Jenkinsã¯çµ‚了準備中ã®ãŸã‚ビルドã¯å®Ÿè¡Œã•ã‚Œã¾ã›ã‚“。 +cancel=キャンセル +Unknown\ Task=未知ã®ã‚¿ã‚¹ã‚¯ +WaitingFor={0} å¾…æ©Ÿã—ã¦ã„ã¾ã™ diff --git a/core/src/main/resources/lib/hudson/queue_ko.properties b/core/src/main/resources/lib/hudson/queue_ko.properties index 894f85b6df34..8d139837ff6d 100644 --- a/core/src/main/resources/lib/hudson/queue_ko.properties +++ b/core/src/main/resources/lib/hudson/queue_ko.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\uBE4C\uB4DC \uB300\uAE30 \uBAA9\uB85D{0,choice,0#|0< ({0,number})} +Build\ Queue=빌드 대기 목ë¡{0,choice,0#|0< ({0,number})} Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=\ - Jenkins\uC774 \uC885\uB8CC \uC900\uBE44\uC911\uC774\uAE30 \uB54C\uBB38\uC5D0 \uBE4C\uB4DC\uB97C \uC2E4\uD589\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4. -WaitingFor={0} \uAE30\uB2E4\uB9AC\uB294 \uC911 -cancel=\uCDE8\uC18C -No\ builds\ in\ the\ queue.=\uBE4C\uB4DC \uB300\uAE30 \uD56D\uBAA9\uC774 \uC5C6\uC2B5\uB2C8\uB2E4. + Jenkinsì´ ì¢…ë£Œ 준비중ì´ê¸° ë•Œë¬¸ì— ë¹Œë“œë¥¼ 실행하지 않습니다. +WaitingFor={0} 기다리는 중 +cancel=취소 +No\ builds\ in\ the\ queue.=빌드 대기 í•­ëª©ì´ ì—†ìŠµë‹ˆë‹¤. diff --git a/core/src/main/resources/lib/hudson/queue_lt.properties b/core/src/main/resources/lib/hudson/queue_lt.properties index 52e0d29ca909..6f772a8799b9 100644 --- a/core/src/main/resources/lib/hudson/queue_lt.properties +++ b/core/src/main/resources/lib/hudson/queue_lt.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=U\u017Eduo\u010Di\u0173 eil\u0117{0,choice,0#|0< ({0,number})} -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkinsas ruo\u0161iasi i\u0161jungimui. Nebus vykdomi jokie darbai. -No\ builds\ in\ the\ queue.=U\u017Eduo\u010Di\u0173 eil\u0117 tu\u0161\u010Dia. +Build\ Queue=UžduoÄių eilÄ—{0,choice,0#|0< ({0,number})} +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkinsas ruoÅ¡iasi iÅ¡jungimui. Nebus vykdomi jokie darbai. +No\ builds\ in\ the\ queue.=UžduoÄių eilÄ— tuÅ¡Äia. cancel=nutraukti diff --git a/core/src/main/resources/lib/hudson/queue_lv.properties b/core/src/main/resources/lib/hudson/queue_lv.properties index 25278b34db83..086f751bc6bb 100644 --- a/core/src/main/resources/lib/hudson/queue_lv.properties +++ b/core/src/main/resources/lib/hudson/queue_lv.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=B\u016Bv\u0113jumu rinda{0,choice,0#|0< ({0,number})} -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins tiks izsl\u0113gts. Turpm\u0101ki b\u016Bv\u0113jumi netiks izpild\u012Bti. -No\ builds\ in\ the\ queue.=Rind\u0101 nav b\u016Bv\u0113jumu +Build\ Queue=BÅ«vÄ“jumu rinda{0,choice,0#|0< ({0,number})} +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins tiks izslÄ“gts. TurpmÄki bÅ«vÄ“jumi netiks izpildÄ«ti. +No\ builds\ in\ the\ queue.=RindÄ nav bÅ«vÄ“jumu WaitingFor=Gaidu uz {0} -WaitingSince=Gaidu kop\u0161 {0} +WaitingSince=Gaidu kopÅ¡ {0} cancel=Atsaukt diff --git a/core/src/main/resources/lib/hudson/queue_nb_NO.properties b/core/src/main/resources/lib/hudson/queue_nb_NO.properties index d1401ce41456..382fe90a82c4 100644 --- a/core/src/main/resources/lib/hudson/queue_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/queue_nb_NO.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Byggek\u00F8{0,choice,0#|0< ({0,number})} -No\ builds\ in\ the\ queue.=Ingen bygg i k\u00F8en. -WaitingFor=Venter p\u00E5 {0} +Build\ Queue=Byggekø{0,choice,0#|0< ({0,number})} +No\ builds\ in\ the\ queue.=Ingen bygg i køen. +WaitingFor=Venter pÃ¥ {0} cancel=avbryt diff --git a/core/src/main/resources/lib/hudson/queue_pl.properties b/core/src/main/resources/lib/hudson/queue_pl.properties index a6716f8f888f..d453e499812f 100644 --- a/core/src/main/resources/lib/hudson/queue_pl.properties +++ b/core/src/main/resources/lib/hudson/queue_pl.properties @@ -19,10 +19,10 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Kolejka zada\u0144{0,choice,0#|0< ({0,number})} -Filtered\ Build\ Queue=Odfiltrowana kolejka zada\u0144{0,choice,0#|0< ({0,number})} -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins przygotowuje si\u0119 do wy\u0142\u0105czenia. Uruchamianie nast\u0119pnych kompilacji zosta\u0142o wstrzymane. -No\ builds\ in\ the\ queue.=Nie ma zada\u0144 w kolejce +Build\ Queue=Kolejka zadaÅ„{0,choice,0#|0< ({0,number})} +Filtered\ Build\ Queue=Odfiltrowana kolejka zadaÅ„{0,choice,0#|0< ({0,number})} +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins przygotowuje siÄ™ do wyÅ‚Ä…czenia. Uruchamianie nastÄ™pnych kompilacji zostaÅ‚o wstrzymane. +No\ builds\ in\ the\ queue.=Nie ma zadaÅ„ w kolejce WaitingFor=Czeka od {0} cancel=anuluj -confirm=Na pewno chcesz usun\u0105\u0107 z kolejki zadanie {0}? +confirm=Na pewno chcesz usunąć z kolejki zadanie {0}? diff --git a/core/src/main/resources/lib/hudson/queue_pt_BR.properties b/core/src/main/resources/lib/hudson/queue_pt_BR.properties index e6ee8c1d8933..add8cb96db82 100644 --- a/core/src/main/resources/lib/hudson/queue_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/queue_pt_BR.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Fila de constru\u00E7\u00F5es{0,choice,0#|0< ({0,number})} -No\ builds\ in\ the\ queue.=Nenhuma constru\u00E7\u00E3o na fila. -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=O Jenkins est\u00E1 desligando. Nenhuma \ - constru\u00E7\u00E3o futura ser\u00E1 executada. +Build\ Queue=Fila de construções{0,choice,0#|0< ({0,number})} +No\ builds\ in\ the\ queue.=Nenhuma construção na fila. +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=O Jenkins está desligando. Nenhuma \ + construção futura será executada. WaitingFor=Aguardando por {0} cancel=cancelar -Unknown\ Task=Tarefa n\u00E3o localizada -Filtered\ Build\ Queue=Fila de constru\u00E7\u00F5es filtrada{0,choice,0#|0< ({0,number})} -cancel\ this\ build=cancelar esta constru\u00E7\u00E3o -confirm=Voc\u00EA tem certeza de que quer cancelar a execu\u00E7\u00E3o enfileirada de {0}? +Unknown\ Task=Tarefa não localizada +Filtered\ Build\ Queue=Fila de construções filtrada{0,choice,0#|0< ({0,number})} +cancel\ this\ build=cancelar esta construção +confirm=Você tem certeza de que quer cancelar a execução enfileirada de {0}? diff --git a/core/src/main/resources/lib/hudson/queue_pt_PT.properties b/core/src/main/resources/lib/hudson/queue_pt_PT.properties index a50c319f20c7..90e096c9e7fc 100644 --- a/core/src/main/resources/lib/hudson/queue_pt_PT.properties +++ b/core/src/main/resources/lib/hudson/queue_pt_PT.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Fila de Compila\u00E7\u00F5es{0,choice,0#|0< ({0,number})} -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=O Jenkins vai encerrar. Nenhum outro build ser\u00E1 levado a cabo. +Build\ Queue=Fila de Compilações{0,choice,0#|0< ({0,number})} +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=O Jenkins vai encerrar. Nenhum outro build será levado a cabo. No\ builds\ in\ the\ queue.=Sem builds em espera. -WaitingFor=\u00C0 espera de {0} +WaitingFor=À espera de {0} cancel=cancelar diff --git a/core/src/main/resources/lib/hudson/queue_ro.properties b/core/src/main/resources/lib/hudson/queue_ro.properties index fc2ab92ef282..3e219309e450 100644 --- a/core/src/main/resources/lib/hudson/queue_ro.properties +++ b/core/src/main/resources/lib/hudson/queue_ro.properties @@ -24,4 +24,4 @@ Build\ Queue=Lista de asteptare{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=Nu sunt build-uri in lista de asteptare WaitingFor=Astept {0} WaitingSince=Asteapta de -cancel=anuleaz\u0103 +cancel=anulează diff --git a/core/src/main/resources/lib/hudson/queue_ru.properties b/core/src/main/resources/lib/hudson/queue_ru.properties index f61eeee667d9..ebfb5aaa7842 100644 --- a/core/src/main/resources/lib/hudson/queue_ru.properties +++ b/core/src/main/resources/lib/hudson/queue_ru.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u041e\u0447\u0435\u0440\u0435\u0434\u044c \u0441\u0431\u043e\u0440\u043e\u043a{0,choice,0#|0< ({0,number})} -confirm=\u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c -Filtered\ Build\ Queue=\u041e\u0442\u0444\u0438\u043b\u044c\u0442\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u043e\u0447\u0435\u0440\u0435\u0434\u044c \u0441\u0431\u043e\u0440\u043e\u043a -No\ builds\ in\ the\ queue.=\u041e\u0447\u0435\u0440\u0435\u0434\u044c \u0441\u0431\u043e\u0440\u043e\u043a \u043f\u0443\u0441\u0442\u0430 -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins \u0433\u043e\u0442\u043e\u0432\u0438\u0442\u0441\u044f \u043a \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044e. \u0421\u0431\u043e\u0440\u043a\u0438 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c\u0441\u044f \u043d\u0435 \u0431\u0443\u0434\u0443\u0442. -Unknown\ Task=\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430\u044f \u0437\u0430\u0434\u0430\u0447\u0430 -WaitingFor=\u0416\u0434\u0451\u0442 {0} -cancel=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c +Build\ Queue=Очередь Ñборок{0,choice,0#|0< ({0,number})} +confirm=подтвердить +Filtered\ Build\ Queue=ÐžÑ‚Ñ„Ð¸Ð»ÑŒÑ‚Ñ€Ð¾Ð²Ð°Ð½Ð½Ð°Ñ Ð¾Ñ‡ÐµÑ€ÐµÐ´ÑŒ Ñборок +No\ builds\ in\ the\ queue.=Очередь Ñборок пуÑта +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins готовитÑÑ Ðº выключению. Сборки выполнÑÑ‚ÑŒÑÑ Ð½Ðµ будут. +Unknown\ Task=ÐеизвеÑÑ‚Ð½Ð°Ñ Ð·Ð°Ð´Ð°Ñ‡Ð° +WaitingFor=Ждёт {0} +cancel=Отменить diff --git a/core/src/main/resources/lib/hudson/queue_sk.properties b/core/src/main/resources/lib/hudson/queue_sk.properties index 20753630a290..928d61b2e6a2 100644 --- a/core/src/main/resources/lib/hudson/queue_sk.properties +++ b/core/src/main/resources/lib/hudson/queue_sk.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Build\ Queue=Rad behov{0,choice,0#|0< ({0,number})} -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins bude vypnut\u00FD. \u017Diadne \u010Fal\u0161ie zostavenia sa nevykonaj\u00FA. -No\ builds\ in\ the\ queue.=\u017Diadne zostavenia v rade. -WaitingFor=\u010Cak\u00E1 sa na {0} -cancel=zru\u0161 +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins bude vypnutý. Žiadne ÄalÅ¡ie zostavenia sa nevykonajú. +No\ builds\ in\ the\ queue.=Žiadne zostavenia v rade. +WaitingFor=ÄŒaká sa na {0} +cancel=zruÅ¡ diff --git a/core/src/main/resources/lib/hudson/queue_sl.properties b/core/src/main/resources/lib/hudson/queue_sl.properties index d6cabf9b46f5..e7f931eed6b6 100644 --- a/core/src/main/resources/lib/hudson/queue_sl.properties +++ b/core/src/main/resources/lib/hudson/queue_sl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u010Cakalna vrsta{0,choice,0#|0< ({0,number})} -No\ builds\ in\ the\ queue.=\u010Cakalna vrsta je prazna -WaitingFor=\u010Cakam na +Build\ Queue=ÄŒakalna vrsta{0,choice,0#|0< ({0,number})} +No\ builds\ in\ the\ queue.=ÄŒakalna vrsta je prazna +WaitingFor=ÄŒakam na diff --git a/core/src/main/resources/lib/hudson/queue_sr.properties b/core/src/main/resources/lib/hudson/queue_sr.properties index e9d9219566b5..d53a60b8cb84 100644 --- a/core/src/main/resources/lib/hudson/queue_sr.properties +++ b/core/src/main/resources/lib/hudson/queue_sr.properties @@ -1,13 +1,13 @@ # This file is under the MIT License by authors Build\ Queue= -No\ builds\ in\ the\ queue.=\u041D\u0435\u043C\u0430 \u0437\u0430\u043A\u0430\u0437\u0430\u043D\u0438\u0445 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 -WaitingFor=\u0427\u0435\u043A\u0430 \u0441\u0435 {0} -WaitingSince=\u0427\u0435\u043A\u0430 \u043E\u0434 {0} -Filtered\ Build\ Queue=\u041F\u0440\u043E\u0444\u0438\u043B\u0442\u0440\u0438\u0440\u0430\u043D \u0440\u0435\u0434 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins \u045B\u0435 \u0431\u0438\u0442\u0438 \u0443\u0433\u0430\u0448\u0435\u043D. \u0414\u043E\u0434\u0430\u0442\u043D\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 \u0441\u0435 \u043D\u0435\u045B\u0435 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0438. -cancel=\u043E\u0442\u043A\u0430\u0436\u0438 -Unknown\ Task=\u041D\u0435\u043F\u043E\u0437\u043D\u0430\u0442\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 -confirm=\u0414\u0430 \u043B\u0438 \u0441\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043D\u0438 \u0434\u0430 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u043E\u0442\u043A\u0430\u0436\u0435\u0442\u0435 \u0437\u0430\u043A\u0430\u0442\u0430\u043D\u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 {0}?\ +No\ builds\ in\ the\ queue.=Ðема заказаних изградња +WaitingFor=Чека Ñе {0} +WaitingSince=Чека од {0} +Filtered\ Build\ Queue=Профилтриран ред изградња +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins ће бити угашен. Додатне изградње Ñе неће извршити. +cancel=откажи +Unknown\ Task=Ðепозната изградња +confirm=Да ли Ñте Ñигурни да желите да откажете закатану изградњу {0}?\ Are you sure you want to cancel the queued run of {0}? -appears\ to\ be\ stuck=\u0458\u0435 \u0437\u0430\u0433\u043B\u0430\u0432\u0459\u0435\u043D\u043E +appears\ to\ be\ stuck=је заглављено diff --git a/core/src/main/resources/lib/hudson/queue_sv_SE.properties b/core/src/main/resources/lib/hudson/queue_sv_SE.properties index 55c9f582a467..8fc46e133c2f 100644 --- a/core/src/main/resources/lib/hudson/queue_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/queue_sv_SE.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Jobbk\u00F6{0,choice,0#|0< ({0,number})} -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins h\u00E5ller p\u00E5 att avslutas. Inga nya byggen kommer att utf\u00F6ras. -No\ builds\ in\ the\ queue.=Inga k\u00F6ade byggen. -Unknown\ Task=Ok\u00E4nd uppgift -WaitingFor=V\u00E4ntar p\u00E5 {0} -WaitingSince=V\u00E4ntar {0} +Build\ Queue=Jobbkö{0,choice,0#|0< ({0,number})} +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins hÃ¥ller pÃ¥ att avslutas. Inga nya byggen kommer att utföras. +No\ builds\ in\ the\ queue.=Inga köade byggen. +Unknown\ Task=Okänd uppgift +WaitingFor=Väntar pÃ¥ {0} +WaitingSince=Väntar {0} cancel=avbryt diff --git a/core/src/main/resources/lib/hudson/queue_tr.properties b/core/src/main/resources/lib/hudson/queue_tr.properties index b3abee66be76..740287de49d2 100644 --- a/core/src/main/resources/lib/hudson/queue_tr.properties +++ b/core/src/main/resources/lib/hudson/queue_tr.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Yap\u0131land\u0131rma Listesi{0,choice,0#|0< ({0,number})} -No\ builds\ in\ the\ queue.=S\u0131rada bekleyen yap\u0131land\u0131rma yok. -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins kapat\u0131lacakt\u0131r. Bundan sonra ba\u015fka yap\u0131land\u0131rma ba\u015flat\u0131lmayacakt\u0131r. +Build\ Queue=Yapılandırma Listesi{0,choice,0#|0< ({0,number})} +No\ builds\ in\ the\ queue.=Sırada bekleyen yapılandırma yok. +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins kapatılacaktır. Bundan sonra baÅŸka yapılandırma baÅŸlatılmayacaktır. WaitingFor={0} bekleniyor cancel=iptal diff --git a/core/src/main/resources/lib/hudson/queue_uk.properties b/core/src/main/resources/lib/hudson/queue_uk.properties index 597c021d0f95..531d8967dec3 100644 --- a/core/src/main/resources/lib/hudson/queue_uk.properties +++ b/core/src/main/resources/lib/hudson/queue_uk.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u0427\u0435\u0440\u0433\u0430 \u043F\u043E\u0431\u0443\u0434\u043E\u0432{0,choice,0#|0< ({0,number})} -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=\u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441 \u0437\u0431\u0438\u0440\u0430\u0454\u0442\u044C\u0441\u044F \u0437\u0443\u043F\u0438\u043D\u044F\u0442\u0438\u0441\u044C. \u0414\u043E\u0434\u0430\u0442\u043A\u043E\u0432\u0456 \u0437\u0431\u0456\u0440\u043A\u0438 \u0437\u0430\u043F\u0443\u0441\u043A\u0430\u0442\u0438\u0441\u044F \u043D\u0435 \u0431\u0443\u0434\u0443\u0442\u044C. -No\ builds\ in\ the\ queue.=\u041D\u0435\u043C\u0430\u0454 \u0437\u0431\u0456\u0440\u043E\u043A \u0443 \u0447\u0435\u0440\u0437\u0456 -WaitingFor=\u041E\u0447\u0456\u043A\u0443\u0454 \u043D\u0430 {0} -WaitingSince=\u041E\u0447\u0456\u043A\u0443\u0454 \u0437 {0} -cancel=\u0432\u0456\u0434\u043C\u0456\u043D\u0438\u0442\u0438 +Build\ Queue=Черга побудов{0,choice,0#|0< ({0,number})} +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Ð”Ð¶ÐµÐ½ÐºÑ–Ð½Ñ Ð·Ð±Ð¸Ñ€Ð°Ñ”Ñ‚ÑŒÑÑ Ð·ÑƒÐ¿Ð¸Ð½ÑтиÑÑŒ. Додаткові збірки запуÑкатиÑÑ Ð½Ðµ будуть. +No\ builds\ in\ the\ queue.=Ðемає збірок у черзі +WaitingFor=Очікує на {0} +WaitingSince=Очікує з {0} +cancel=відмінити diff --git a/core/src/main/resources/lib/hudson/queue_zh_TW.properties b/core/src/main/resources/lib/hudson/queue_zh_TW.properties index 4c4d29132ed1..f9ac38cce867 100644 --- a/core/src/main/resources/lib/hudson/queue_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/queue_zh_TW.properties @@ -1,9 +1,9 @@ -Build\ Queue=\u5efa\u7f6e\u4f47\u5217{0,choice,0\#|0< ({0,number})} -Filtered\ Build\ Queue=\u7be9\u9078\u7684\u5efa\u7f6e\u4f47\u5217{0,choice,0\#|0< ({0,number})} -WaitingFor=\u6b63\u5728\u7b49\u5f85 {0} -confirm=\u60a8\u78ba\u5b9a\u8981\u53d6\u6d88 {0} \u7684\u4f47\u5217\u55ce\uff1f -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins \u5373\u5c07\u505c\u6a5f\uff0c\u4e0d\u6703\u518d\u57f7\u884c\u4efb\u4f55\u65b0\u7684\u5efa\u7f6e\u4f5c\u696d\u3002 -No\ builds\ in\ the\ queue.=\u4f47\u5217\u4e2d\u6c92\u6709\u5efa\u7f6e\u4f5c\u696d\u3002 -cancel=\u53d6\u6d88 -Unknown\ Task=\u4e0d\u660e\u7684\u4f5c\u696d -cancel\ this\ build=\u53d6\u6d88\u6b64\u5efa\u7f6e +Build\ Queue=建置佇列{0,choice,0\#|0< ({0,number})} +Filtered\ Build\ Queue=篩é¸çš„建置佇列{0,choice,0\#|0< ({0,number})} +WaitingFor=正在等待 {0} +confirm=您確定è¦å–消 {0} 的佇列嗎? +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins å³å°‡åœæ©Ÿï¼Œä¸æœƒå†åŸ·è¡Œä»»ä½•æ–°çš„建置作業。 +No\ builds\ in\ the\ queue.=佇列中沒有建置作業。 +cancel=å–消 +Unknown\ Task=ä¸æ˜Žçš„作業 +cancel\ this\ build=å–消此建置 diff --git a/core/src/main/resources/lib/hudson/rssBar_bg.properties b/core/src/main/resources/lib/hudson/rssBar_bg.properties index 1682c0cf4c5b..d2acf5589e42 100644 --- a/core/src/main/resources/lib/hudson/rssBar_bg.properties +++ b/core/src/main/resources/lib/hudson/rssBar_bg.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Legend=\ - \u041b\u0435\u0433\u0435\u043d\u0434\u0430 + Легенда for\ all=\ - \u0417\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 + За вÑички for\ failures=\ - \u0417\u0430 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u0438\u0442\u0435 + За неуÑпешните for\ just\ latest\ builds=\ - \u0421\u0430\u043c\u043e \u0437\u0430 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0442\u0435 + Само за поÑледните diff --git a/core/src/main/resources/lib/hudson/rssBar_ca.properties b/core/src/main/resources/lib/hudson/rssBar_ca.properties index 8d369d922a2a..44d2b5a26598 100644 --- a/core/src/main/resources/lib/hudson/rssBar_ca.properties +++ b/core/src/main/resources/lib/hudson/rssBar_ca.properties @@ -23,4 +23,4 @@ Legend=Llegenda for\ all=per a tot for\ failures=per a les fallades -for\ just\ latest\ builds=nom\u00E9s per als darrers muntatges +for\ just\ latest\ builds=només per als darrers muntatges diff --git a/core/src/main/resources/lib/hudson/rssBar_cs.properties b/core/src/main/resources/lib/hudson/rssBar_cs.properties index b3ab64456e8c..101f9b160643 100644 --- a/core/src/main/resources/lib/hudson/rssBar_cs.properties +++ b/core/src/main/resources/lib/hudson/rssBar_cs.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=Vysv\u011Btlivky -for\ all=pro v\u0161e -for\ failures=pro ne\u00FAsp\u011B\u0161n\u00E9 -for\ just\ latest\ builds=pro posledn\u00ED buildy +Legend=VysvÄ›tlivky +for\ all=pro vÅ¡e +for\ failures=pro neúspěšné +for\ just\ latest\ builds=pro poslední buildy diff --git a/core/src/main/resources/lib/hudson/rssBar_de.properties b/core/src/main/resources/lib/hudson/rssBar_de.properties index 01ba56a370f2..c77ea2b2a07d 100644 --- a/core/src/main/resources/lib/hudson/rssBar_de.properties +++ b/core/src/main/resources/lib/hudson/rssBar_de.properties @@ -22,5 +22,5 @@ Legend=Legende for\ all=Alle Builds -for\ failures=Nur Fehlschläge +for\ failures=Nur Fehlschläge for\ just\ latest\ builds=Nur jeweils letzter Build diff --git a/core/src/main/resources/lib/hudson/rssBar_el.properties b/core/src/main/resources/lib/hudson/rssBar_el.properties index 538db6d7f1f0..703cd4e835e0 100644 --- a/core/src/main/resources/lib/hudson/rssBar_el.properties +++ b/core/src/main/resources/lib/hudson/rssBar_el.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=\u03A5\u03C0\u03CC\u03BC\u03BD\u03B7\u03BC\u03B1 -for\ all=\u03B3\u03B9\u03B1 \u03CC\u03BB\u03B1 -for\ failures=\u03B3\u03B9\u03B1 \u03C4\u03B9\u03C2 \u03B1\u03C0\u03BF\u03C4\u03C5\u03C7\u03AF\u03B5\u03C2 -for\ just\ latest\ builds=\u03BC\u03BF\u03BD\u03BF \u03B3\u03B9\u03B1 \u03C4\u03B9\u03C2 \u03C0\u03C1\u03CC\u03C3\u03C6\u03B1\u03C4\u03B5\u03C2 \u03B4\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B5\u03C2 +Legend=Υπόμνημα +for\ all=για όλα +for\ failures=για τις αποτυχίες +for\ just\ latest\ builds=μονο για τις Ï€Ïόσφατες διεÏγασίες diff --git a/core/src/main/resources/lib/hudson/rssBar_es.properties b/core/src/main/resources/lib/hudson/rssBar_es.properties index b12af51e4be4..a745347ca8c6 100644 --- a/core/src/main/resources/lib/hudson/rssBar_es.properties +++ b/core/src/main/resources/lib/hudson/rssBar_es.properties @@ -21,8 +21,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=Gu\u00EDa de iconos +Legend=Guía de iconos for\ all=para todos for\ failures=para fallas -for\ just\ latest\ builds=para los m\u00E1s recientes +for\ just\ latest\ builds=para los más recientes diff --git a/core/src/main/resources/lib/hudson/rssBar_es_AR.properties b/core/src/main/resources/lib/hudson/rssBar_es_AR.properties index 03bdae3a1f5c..f4b11417dbdb 100644 --- a/core/src/main/resources/lib/hudson/rssBar_es_AR.properties +++ b/core/src/main/resources/lib/hudson/rssBar_es_AR.properties @@ -3,4 +3,4 @@ Legend=Leyenda for\ all=para todos for\ failures=para las fallas -for\ just\ latest\ builds=s\u00F3lo para los \u00FAltimos trabajos +for\ just\ latest\ builds=sólo para los últimos trabajos diff --git a/core/src/main/resources/lib/hudson/rssBar_et.properties b/core/src/main/resources/lib/hudson/rssBar_et.properties index 51be6beccd34..4d91225a5b88 100644 --- a/core/src/main/resources/lib/hudson/rssBar_et.properties +++ b/core/src/main/resources/lib/hudson/rssBar_et.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -for\ all=k\u00F5igi kohta +for\ all=kõigi kohta for\ failures=vigaste ehituste kohta for\ just\ latest\ builds=ainult uuemate ehituste kohta diff --git a/core/src/main/resources/lib/hudson/rssBar_fi.properties b/core/src/main/resources/lib/hudson/rssBar_fi.properties index 404ea7c75031..0c7efc2c05f5 100644 --- a/core/src/main/resources/lib/hudson/rssBar_fi.properties +++ b/core/src/main/resources/lib/hudson/rssBar_fi.properties @@ -22,5 +22,5 @@ Legend=Selite for\ all=kaikista -for\ failures=ep\u00E4onnistuneista -for\ just\ latest\ builds=vain viimeisimmist\u00E4 +for\ failures=epäonnistuneista +for\ just\ latest\ builds=vain viimeisimmistä diff --git a/core/src/main/resources/lib/hudson/rssBar_fr.properties b/core/src/main/resources/lib/hudson/rssBar_fr.properties index 7264973731c9..6e04cdb103ab 100644 --- a/core/src/main/resources/lib/hudson/rssBar_fr.properties +++ b/core/src/main/resources/lib/hudson/rssBar_fr.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=L\u00E9gende +Legend=Légende for\ all=pour tout -for\ failures=de tous les \u00E9checs -for\ just\ latest\ builds=juste pour les derni\u00E8res compilations +for\ failures=de tous les échecs +for\ just\ latest\ builds=juste pour les dernières compilations diff --git a/core/src/main/resources/lib/hudson/rssBar_he.properties b/core/src/main/resources/lib/hudson/rssBar_he.properties index 9a99f67b8315..ca0e0fec4e7c 100644 --- a/core/src/main/resources/lib/hudson/rssBar_he.properties +++ b/core/src/main/resources/lib/hudson/rssBar_he.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=\u05EA\u05D9\u05D0\u05D5\u05E8 -for\ all=\u05E2\u05D1\u05D5\u05E8 \u05DB\u05D5\u05DC\u05DD -for\ failures=\u05E2\u05D1\u05D5\u05E8 \u05DB\u05E9\u05DC\u05D5\u05E0\u05D5\u05EA -for\ just\ latest\ builds=\u05E8\u05E7 \u05E2\u05D1\u05D5\u05E8 \u05D4\u05D1\u05E0\u05D9\u05D5\u05EA \u05D4\u05D0\u05D7\u05E8\u05D5\u05E0\u05D5\u05EA +Legend=תי×ור +for\ all=עבור ×›×•×œ× +for\ failures=עבור כשלונות +for\ just\ latest\ builds=רק עבור הבניות ×”×חרונות diff --git a/core/src/main/resources/lib/hudson/rssBar_hu.properties b/core/src/main/resources/lib/hudson/rssBar_hu.properties index fd49156b8af9..ffffe7b02b42 100644 --- a/core/src/main/resources/lib/hudson/rssBar_hu.properties +++ b/core/src/main/resources/lib/hudson/rssBar_hu.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=Jelmagyar\u00E1zat +Legend=Jelmagyarázat for\ all=mindegyikre for\ failures=sikertelenekre -for\ just\ latest\ builds=csak a legut\u00F3bbi \u00E9p\u00EDt\u00E9sekre +for\ just\ latest\ builds=csak a legutóbbi építésekre diff --git a/core/src/main/resources/lib/hudson/rssBar_it.properties b/core/src/main/resources/lib/hudson/rssBar_it.properties index 7a975f7dbe92..9312009708a3 100644 --- a/core/src/main/resources/lib/hudson/rssBar_it.properties +++ b/core/src/main/resources/lib/hudson/rssBar_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/rssBar_ja.properties b/core/src/main/resources/lib/hudson/rssBar_ja.properties index e5a1f7f7a17b..d2e87294ef68 100644 --- a/core/src/main/resources/lib/hudson/rssBar_ja.properties +++ b/core/src/main/resources/lib/hudson/rssBar_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=\u51E1\u4F8B -for\ all=\u5168\u30D3\u30EB\u30C9 -for\ failures=\u5931\u6557\u30D3\u30EB\u30C9 -for\ just\ latest\ builds=\u6700\u65B0\u30D3\u30EB\u30C9\u306E\u307F +Legend=凡例 +for\ all=全ビルド +for\ failures=失敗ビルド +for\ just\ latest\ builds=最新ビルドã®ã¿ diff --git a/core/src/main/resources/lib/hudson/rssBar_ko.properties b/core/src/main/resources/lib/hudson/rssBar_ko.properties index 45029f5c077c..80a52768bf53 100644 --- a/core/src/main/resources/lib/hudson/rssBar_ko.properties +++ b/core/src/main/resources/lib/hudson/rssBar_ko.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Legend= -for\ all=\uBAA8\uB450 -for\ failures=\uC2E4\uD328 -for\ just\ latest\ builds=\uCD5C\uADFC \uBE4C\uB4DC +for\ all=ëª¨ë‘ +for\ failures=실패 +for\ just\ latest\ builds=최근 빌드 diff --git a/core/src/main/resources/lib/hudson/rssBar_lt.properties b/core/src/main/resources/lib/hudson/rssBar_lt.properties index 9a403f40467b..d2bf6944ad10 100644 --- a/core/src/main/resources/lib/hudson/rssBar_lt.properties +++ b/core/src/main/resources/lib/hudson/rssBar_lt.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=Apra\u0161ymas +Legend=ApraÅ¡ymas for\ all=visiems -for\ failures=nepavykusios u\u017Eduotims -for\ just\ latest\ builds=tik paskutin\u0117ms u\u017Eduotims +for\ failures=nepavykusios užduotims +for\ just\ latest\ builds=tik paskutinÄ—ms užduotims diff --git a/core/src/main/resources/lib/hudson/rssBar_lv.properties b/core/src/main/resources/lib/hudson/rssBar_lv.properties index ff74dbcf20c7..1d72251147fb 100644 --- a/core/src/main/resources/lib/hudson/rssBar_lv.properties +++ b/core/src/main/resources/lib/hudson/rssBar_lv.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=Le\u0123enda +Legend=LeÄ£enda for\ all=visiem -for\ failures=k\u013C\u016Bm\u0113m -for\ just\ latest\ builds=p\u0113d\u0113jiem b\u016Bv\u0113jumiem +for\ failures=kļūmÄ“m +for\ just\ latest\ builds=pÄ“dÄ“jiem bÅ«vÄ“jumiem diff --git a/core/src/main/resources/lib/hudson/rssBar_pt_BR.properties b/core/src/main/resources/lib/hudson/rssBar_pt_BR.properties index ead4d1726fe0..a97c487fc9cb 100644 --- a/core/src/main/resources/lib/hudson/rssBar_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/rssBar_pt_BR.properties @@ -23,4 +23,4 @@ Legend=Legenda for\ all=de tudo for\ failures=das falhas -for\ just\ latest\ builds=apenas para as \u00FAltimas constru\u00E7\u00F5es +for\ just\ latest\ builds=apenas para as últimas construções diff --git a/core/src/main/resources/lib/hudson/rssBar_pt_PT.properties b/core/src/main/resources/lib/hudson/rssBar_pt_PT.properties index 62a16aa908b1..331d30b59cdc 100644 --- a/core/src/main/resources/lib/hudson/rssBar_pt_PT.properties +++ b/core/src/main/resources/lib/hudson/rssBar_pt_PT.properties @@ -22,5 +22,5 @@ Legend=Legenda for\ all=para todos -for\ failures=s\u00F3 para falhas -for\ just\ latest\ builds=s\u00F3 para \u00FAltimas builds +for\ failures=só para falhas +for\ just\ latest\ builds=só para últimas builds diff --git a/core/src/main/resources/lib/hudson/rssBar_ro.properties b/core/src/main/resources/lib/hudson/rssBar_ro.properties index 90665e465cb1..05acf4a43578 100644 --- a/core/src/main/resources/lib/hudson/rssBar_ro.properties +++ b/core/src/main/resources/lib/hudson/rssBar_ro.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=Legend\u0103 +Legend=Legendă for\ all=pentru toate -for\ failures=pentru e\u015Fecuri +for\ failures=pentru eÅŸecuri for\ just\ latest\ builds=doar pentru ultimele build-uri diff --git a/core/src/main/resources/lib/hudson/rssBar_ru.properties b/core/src/main/resources/lib/hudson/rssBar_ru.properties index cfd3c7b63a9a..4a280d475f01 100644 --- a/core/src/main/resources/lib/hudson/rssBar_ru.properties +++ b/core/src/main/resources/lib/hudson/rssBar_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=\u041F\u043E\u043C\u043E\u0449\u044C -for\ all=\u0434\u043B\u044F \u0432\u0441\u0435\u0445 \u0441\u0431\u043E\u0440\u043E\u043A -for\ failures=\u0434\u043B\u044F \u043D\u0435\u0443\u0434\u0430\u0447\u043D\u044B\u0445 \u0441\u0431\u043E\u0440\u043E\u043A -for\ just\ latest\ builds=\u0414\u043B\u044F \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0438\u0445 \u0441\u0431\u043E\u0440\u043E\u043A +Legend=Помощь +for\ all=Ð´Ð»Ñ Ð²Ñех Ñборок +for\ failures=Ð´Ð»Ñ Ð½ÐµÑƒÐ´Ð°Ñ‡Ð½Ñ‹Ñ… Ñборок +for\ just\ latest\ builds=Ð”Ð»Ñ Ð¿Ð¾Ñледних Ñборок diff --git a/core/src/main/resources/lib/hudson/rssBar_sk.properties b/core/src/main/resources/lib/hudson/rssBar_sk.properties index 37efff4110c5..8f91cf5d4c8b 100644 --- a/core/src/main/resources/lib/hudson/rssBar_sk.properties +++ b/core/src/main/resources/lib/hudson/rssBar_sk.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Legend=Legenda -for\ all=pre v\u0161etko -for\ failures=pre ne\u00FAspechy -for\ just\ latest\ builds=pre posledn\u00E9 zostavenia +for\ all=pre vÅ¡etko +for\ failures=pre neúspechy +for\ just\ latest\ builds=pre posledné zostavenia diff --git a/core/src/main/resources/lib/hudson/rssBar_sl.properties b/core/src/main/resources/lib/hudson/rssBar_sl.properties index 434454949480..e7b023f3f920 100644 --- a/core/src/main/resources/lib/hudson/rssBar_sl.properties +++ b/core/src/main/resources/lib/hudson/rssBar_sl.properties @@ -23,4 +23,4 @@ Legend=Legenda for\ all=Za vse for\ failures=Za neuspehe -for\ just\ latest\ builds=Samo za zadnje razli\u010Dice +for\ just\ latest\ builds=Samo za zadnje razliÄice diff --git a/core/src/main/resources/lib/hudson/rssBar_sr.properties b/core/src/main/resources/lib/hudson/rssBar_sr.properties index 09b57a4dcc61..2e7b8d74b830 100644 --- a/core/src/main/resources/lib/hudson/rssBar_sr.properties +++ b/core/src/main/resources/lib/hudson/rssBar_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Legend=\u041B\u0435\u0433\u0435\u043D\u0434\u0430 -for\ all=\u0437\u0430 \u0441\u0432\u0435 -for\ failures=\u0437\u0430 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0435 -for\ just\ latest\ builds=\u0441\u0430\u043C\u043E \u0437\u0430 \u043D\u0430\u0458\u043D\u043E\u0432\u0438\u0458\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 +Legend=Легенда +for\ all=за Ñве +for\ failures=за неуÑпешне +for\ just\ latest\ builds=Ñамо за најновије изградње diff --git a/core/src/main/resources/lib/hudson/rssBar_sv_SE.properties b/core/src/main/resources/lib/hudson/rssBar_sv_SE.properties index 1a8af8525b5e..2b37559ec34f 100644 --- a/core/src/main/resources/lib/hudson/rssBar_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/rssBar_sv_SE.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=F\u00F6rklaring -for\ all=f\u00F6r alla -for\ failures=f\u00F6r misslyckade -for\ just\ latest\ builds=f\u00F6r enbart senaste byggena +Legend=Förklaring +for\ all=för alla +for\ failures=för misslyckade +for\ just\ latest\ builds=för enbart senaste byggena diff --git a/core/src/main/resources/lib/hudson/rssBar_tr.properties b/core/src/main/resources/lib/hudson/rssBar_tr.properties index c7a0f2e11bfa..eb637f93e47a 100644 --- a/core/src/main/resources/lib/hudson/rssBar_tr.properties +++ b/core/src/main/resources/lib/hudson/rssBar_tr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=G\u00f6sterge -for\ all=t\u00FCm\u00FC i\u00E7in -for\ failures=t\u00FCm ba\u015Far\u0131s\u0131z durumlar i\u00E7in -for\ just\ latest\ builds=sadece son yap\u0131land\u0131rma i\u00E7in +Legend=Gösterge +for\ all=tümü için +for\ failures=tüm baÅŸarısız durumlar için +for\ just\ latest\ builds=sadece son yapılandırma için diff --git a/core/src/main/resources/lib/hudson/rssBar_uk.properties b/core/src/main/resources/lib/hudson/rssBar_uk.properties index 6f162a4949ba..622a6877a9cd 100644 --- a/core/src/main/resources/lib/hudson/rssBar_uk.properties +++ b/core/src/main/resources/lib/hudson/rssBar_uk.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=\u041B\u0435\u0433\u0435\u043D\u0434\u0430 -for\ all=\u0434\u043B\u044F \u0432\u0441\u0438\u0445 -for\ failures=\u0434\u043B\u044F \u043D\u0435\u0432\u0434\u0430\u043B\u0438\u0445 -for\ just\ latest\ builds=\u0442\u0456\u043B\u044C\u043A\u0438 \u0434\u043B\u044F \u043E\u0441\u0442\u0430\u043D\u043D\u0456\u0445 \u0431\u0456\u043B\u0434\u0456\u0432 +Legend=Легенда +for\ all=Ð´Ð»Ñ Ð²Ñих +for\ failures=Ð´Ð»Ñ Ð½ÐµÐ²Ð´Ð°Ð»Ð¸Ñ… +for\ just\ latest\ builds=тільки Ð´Ð»Ñ Ð¾Ñтанніх білдів diff --git a/core/src/main/resources/lib/hudson/rssBar_zh_TW.properties b/core/src/main/resources/lib/hudson/rssBar_zh_TW.properties index e1769aed4af0..8b413c095684 100644 --- a/core/src/main/resources/lib/hudson/rssBar_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/rssBar_zh_TW.properties @@ -1,4 +1,4 @@ -Legend=\u5716\u4f8b -for\ all=\u5168\u90e8 -for\ failures=\u5931\u6557 -for\ just\ latest\ builds=\u6700\u8fd1\u5e7e\u6b21\u5efa\u7f6e +Legend=圖例 +for\ all=全部 +for\ failures=失敗 +for\ just\ latest\ builds=最近幾次建置 diff --git a/core/src/main/resources/lib/hudson/scriptConsole.properties b/core/src/main/resources/lib/hudson/scriptConsole.properties index 2b3d6bf7e657..b477e58dd9a5 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole.properties @@ -23,8 +23,8 @@ description=\ Type in an arbitrary Groovy script and \ execute it on the server. Useful for trouble-shooting and diagnostics. \ - Use the \u2018println\u2019 command to see the output (if you use System.out, \ - it will go to the server\u2019s stdout, which is harder to see.) Example: + Use the ‘println’ command to see the output (if you use System.out, \ + it will go to the server’s stdout, which is harder to see.) Example: description2=\ All the classes from all the plugins are visible. jenkins.*, jenkins.model.*, hudson.*, and hudson.model.* are pre-imported. diff --git a/core/src/main/resources/lib/hudson/scriptConsole_bg.properties b/core/src/main/resources/lib/hudson/scriptConsole_bg.properties index e1f780cebf6d..f29398dc1423 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_bg.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_bg.properties @@ -21,28 +21,28 @@ # THE SOFTWARE. Result=\ - \u0420\u0435\u0437\u0443\u043b\u0442\u0430\u0442 + Резултат Script\ Console=\ - \u041a\u043e\u043d\u0437\u043e\u043b\u0430 \u0437\u0430 \u0441\u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0435 + Конзола за Ñкриптове # \ # All the classes from all the plugins are visible. jenkins.*, jenkins.model.*, hudson.*, and hudson.model.* are pre-imported. description2=\ - \u0412\u0441\u0438\u0447\u043a\u0438 \u043a\u043b\u0430\u0441\u043e\u0432\u0435 \u043e\u0442 \u0432\u0441\u0438\u0447\u043a\u0438 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438 \u0441\u0430 \u0432\u0438\u0434\u0438\u043c\u0438. \u0421\u043b\u0435\u0434\u043d\u0438\u0442\u0435 \u043f\u0430\u043a\u0435\u0442\u0438 \u0441\u0430 \u0432\u043d\u0435\u0441\u0435\u043d\u0438:\ - jenkins.*, jenkins.model.*, hudson.* \u0438\ + Ð’Ñички клаÑове от вÑички приÑтавки Ñа видими. Следните пакети Ñа внеÑени:\ + jenkins.*, jenkins.model.*, hudson.* и\ hudson.model.* It\ is\ not\ possible\ to\ run\ scripts\ when\ slave\ is\ offline.=\ - \u041a\u043e\u0433\u0430\u0442\u043e \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u0438\u044f\u0442 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440 \u043d\u0435 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f, \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430\u0442 \u0441\u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0435. + Когато подчинениÑÑ‚ компютър не е на линиÑ, не може да Ñе изпълнÑват Ñкриптове. # \ # Type in an arbitrary Groovy script and \ # execute it on the server. Useful for trouble-shooting and diagnostics. \ -# Use the \u2018println\u2019 command to see the output (if you use System.out, \ -# it will go to the server\u2019s stdout, which is harder to see.) Example: +# Use the ‘println’ command to see the output (if you use System.out, \ +# it will go to the server’s stdout, which is harder to see.) Example: description=\ - \u0412\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u0435\u043d \u0441\u043a\u0440\u0438\u043f\u0442 \u043d\u0430 Groovy\ - \u0438 \u0433\u043e \u0438\u0437\u043f\u044a\u043b\u043d\u0435\u0442\u0435 \u043d\u0430 \u0441\u044a\u0440\u0432\u044a\u0440\u0430. \u041f\u043e\u043b\u0435\u0437\u043d\u043e \u0435 \u0437\u0430 \u0434\u0438\u0430\u0433\u043d\u043e\u0441\u0442\u0438\u043a\u0430 \u0438 \u043a\u043e\u0440\u0438\u0433\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0438.\ - \u0417\u0430 \u0434\u0430 \u0438\u0437\u0432\u0435\u0434\u0435\u0442\u0435 \u0434\u0430\u043d\u043d\u0438 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u0430 \u201eprintln\u201c. (System.out\ - \u043e\u0442\u0438\u0432\u0430 \u043d\u0430 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438\u044f \u0438\u0437\u0445\u043e\u0434 \u043d\u0430 \u0441\u044a\u0440\u0432\u044a\u0440\u0430, \u043a\u043e\u0435\u0442\u043e \u0441\u0435 \u0441\u043b\u0435\u0434\u0438 \u043f\u043e-\u0442\u0440\u0443\u0434\u043d\u043e.) \u041f\u0440\u0438\u043c\u0435\u0440: + Въведете произволен Ñкрипт на Groovy\ + и го изпълнете на Ñървъра. Полезно е за диагноÑтика и коригиране на грешки.\ + За да изведете данни използвайте командата „println“. (System.out\ + отива на ÑÑ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚Ð½Ð¸Ñ Ð¸Ð·Ñ…Ð¾Ð´ на Ñървъра, което Ñе Ñледи по-трудно.) Пример: Run=\ - \u0418\u0437\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u0435 + Изпълнение It\ is\ not\ possible\ to\ run\ scripts\ when\ agent\ is\ offline.=\ - \u041a\u043e\u0433\u0430\u0442\u043e \u0430\u0433\u0435\u043d\u0442\u044a\u0442 \u043d\u0435 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f, \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430\u0442 \u0441\u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0435. + Когато агентът не е на линиÑ, не може да Ñе изпълнÑват Ñкриптове. diff --git a/core/src/main/resources/lib/hudson/scriptConsole_da.properties b/core/src/main/resources/lib/hudson/scriptConsole_da.properties index 8c9753e9f538..523b7158087b 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_da.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_da.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. Result=Resultat -Run=K\u00f8r +Run=Kør Script\ Console=Skriptkonsol description=Indtast et Groovyskript og \ -k\u00f8r det p\u00e5 serveren. Nyttigt til fejlfinding og diagnostik. \ +kør det pÃ¥ serveren. Nyttigt til fejlfinding og diagnostik. \ Benyt ''println'' kommandoen for at se output (hvis du bruger System.out, \ -vil output g\u00e5 til serverens stdout, hvilket kan v\u00e6re sv\u00e6rere at finde.) Eksempel: +vil output gÃ¥ til serverens stdout, hvilket kan være sværere at finde.) Eksempel: diff --git a/core/src/main/resources/lib/hudson/scriptConsole_de.properties b/core/src/main/resources/lib/hudson/scriptConsole_de.properties index d4f585179e72..c7b506265db0 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_de.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_de.properties @@ -22,11 +22,11 @@ Script\ Console=Skript-Konsole Result=Ergebnis -Run=Ausf\u00FChren +Run=Ausführen description=Geben Sie ein beliebiges Groovy-Skript \ - ein und f\u00FChren Sie dieses auf dem Server aus. Dies ist n\u00FCtzlich bei der Fehlersuche und zur Diagnostik. \ + ein und führen Sie dieses auf dem Server aus. Dies ist nützlich bei der Fehlersuche und zur Diagnostik. \ Verwenden Sie den println-Befehl, um Ausgaben sichtbar zu machen (wenn Sie System.out \ verwenden, gehen die Ausgaben auf die Standardausgabe (STDOUT) des Servers, die schwieriger \ einzusehen ist). Beispiel: -description2=Alle Klassen aller Plugins sind verf\u00FCgbar. jenkins.*, jenkins.model.*, hudson.* sowie hudson.model.* werden standardm\u00E4\u00DFig importiert. -It\ is\ not\ possible\ to\ run\ scripts\ when\ agent\ is\ offline.=Es ist nicht m\u00F6glich, Skripte auf einem Agenten, der offline ist, auszuf\u00FChren +description2=Alle Klassen aller Plugins sind verfügbar. jenkins.*, jenkins.model.*, hudson.* sowie hudson.model.* werden standardmäßig importiert. +It\ is\ not\ possible\ to\ run\ scripts\ when\ agent\ is\ offline.=Es ist nicht möglich, Skripte auf einem Agenten, der offline ist, auszuführen diff --git a/core/src/main/resources/lib/hudson/scriptConsole_es.properties b/core/src/main/resources/lib/hudson/scriptConsole_es.properties index c9de4031f18d..03876f479af4 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_es.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_es.properties @@ -22,12 +22,12 @@ description=\ Escribe un ''script'' Groovy script y \ - ejecutaló en el servidor. Es útil para depurar e investigar problemas. \ - Usa ''println'' para ver la salida (si usas System.out, se escribirá \ - en la salida ''stdout'' del servidor, lo que es más difícil de visualizar). Ejemplo: + ejecutaló en el servidor. Es útil para depurar e investigar problemas. \ + Usa ''println'' para ver la salida (si usas System.out, se escribirá \ + en la salida ''stdout'' del servidor, lo que es más difícil de visualizar). Ejemplo: Result=Resultado Run=Ejecutar Script\ Console=Consola de scripts description2=Todas las clases de todos los plugins son visibles. \ - Los paquetes: jenkins.*, jenkins.model.*, hudson.*, y hudson.model.*, se importarán automáticamente. + Los paquetes: jenkins.*, jenkins.model.*, hudson.*, y hudson.model.*, se importarán automáticamente. diff --git a/core/src/main/resources/lib/hudson/scriptConsole_fr.properties b/core/src/main/resources/lib/hudson/scriptConsole_fr.properties index f693edc096d0..e0fc7b7c7fc1 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_fr.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_fr.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Script\ Console=Console de script -Result=Résultat -Run=Exécuter -description=Vous pouvez saisir ici un script Groovy quelconque pour l\u2019ex\u00E9cuter sur le serveur.
Utile pour diagnostiquer et r\u00E9soudre des probl\u00E8mes.
Utilisez la commande "println" pour voir la sortie (si vous utilisez System.out, cela ira vers la sortie standard du serveur, qui est plus complexe \u00E0 retrouver.)
Par exemple : +Result=Résultat +Run=Exécuter +description=Vous pouvez saisir ici un script Groovy quelconque pour l’exécuter sur le serveur.
Utile pour diagnostiquer et résoudre des problèmes.
Utilisez la commande "println" pour voir la sortie (si vous utilisez System.out, cela ira vers la sortie standard du serveur, qui est plus complexe à retrouver.)
Par exemple : -description2=Toutes les classes de tous les plugins sont visibles. jenkins.*, jenkins.model.*, hudson.*, et hudson.model.* sont pr\u00E9-import\u00E9es. +description2=Toutes les classes de tous les plugins sont visibles. jenkins.*, jenkins.model.*, hudson.*, et hudson.model.* sont pré-importées. diff --git a/core/src/main/resources/lib/hudson/scriptConsole_it.properties b/core/src/main/resources/lib/hudson/scriptConsole_it.properties index 772bad053cd1..6549bd7fda17 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_it.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,16 +22,16 @@ # THE SOFTWARE. description=Immettere uno script \ - Groovy arbitrario per eseguirlo sul server. Ciò è utile per eseguire \ + Groovy arbitrario per eseguirlo sul server. Ciò è utile per eseguire \ operazioni di risoluzione dei problemi e di diagnostica. Utilizzare il \ comando "println" per visualizzare l''output (se si utilizza \ - System.out, questo sarà inviato allo standard output del server, \ - che è più difficile da visualizzare). Ad esempio: + System.out, questo sarà inviato allo standard output del server, \ + che è più difficile da visualizzare). Ad esempio: description2=Sono visibili tutte le classi di tutti i componenti aggiuntivi. \ I package jenkins.*, jenkins.model.*, hudson.* e \ hudson.model.* sono preimportati. -It\ is\ not\ possible\ to\ run\ scripts\ when\ agent\ is\ offline.=Non è \ - possibile eseguire degli script quando l''agente non è in linea. +It\ is\ not\ possible\ to\ run\ scripts\ when\ agent\ is\ offline.=Non è \ + possibile eseguire degli script quando l''agente non è in linea. Result=Risultato Run=Esegui Script\ Console=Console script diff --git a/core/src/main/resources/lib/hudson/scriptConsole_ja.properties b/core/src/main/resources/lib/hudson/scriptConsole_ja.properties index ae817e6ce187..1346af6dfbd5 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_ja.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_ja.properties @@ -20,15 +20,15 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Script\ Console=\u30b9\u30af\u30ea\u30d7\u30c8\u30b3\u30f3\u30bd\u30fc\u30eb -Run=\u5b9f\u884c -Result=\u7d50\u679c +Script\ Console=スクリプトコンソール +Run=実行 +Result=çµæžœ description= \ - \u4efb\u610f\u306eGroovy\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5165\u529b\u3057\u3066\u3001 \ - \u30b5\u30fc\u30d0\u30fc\u4e0a\u3067\u5b9f\u884c\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0\u3084\u8a3a\u65ad\u306b\u4fbf\u5229\u3067\u3059\u3002 \ - \u51fa\u529b\u3092\u898b\u308b\u306b\u306f''println''\u30b3\u30de\u30f3\u30c9\u3092\u4f7f\u7528\u3057\u307e\u3059 \ - (System.out\u3092\u4f7f\u7528\u3059\u308b\u3068\u30b5\u30fc\u30d0\u30fc\u306e\u6a19\u6e96\u51fa\u529b\u306b\u51fa\u529b\u3055\u308c\u307e\u3059\u304c\u3001\u898b\u306b\u304f\u3044\u3067\u3059\uff09\u3002\u4f8b: + ä»»æ„ã®Groovyスクリプトを入力ã—ã¦ã€ \ + サーãƒãƒ¼ä¸Šã§å®Ÿè¡Œã—ã¦ãã ã•ã„。トラブルシューティングや診断ã«ä¾¿åˆ©ã§ã™ã€‚ \ + 出力を見るã«ã¯''println''コマンドを使用ã—ã¾ã™ \ + (System.outを使用ã™ã‚‹ã¨ã‚µãƒ¼ãƒãƒ¼ã®æ¨™æº–出力ã«å‡ºåŠ›ã•ã‚Œã¾ã™ãŒã€è¦‹ã«ãã„ã§ã™ï¼‰ã€‚例: description2= \ - \u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u3059\u3079\u3066\u306e\u30af\u30e9\u30b9\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 \ - \u307e\u305f\u3001jenkins.*\u3001jenkins.model.*\u3001hudson.*\u3001\u304a\u3088\u3073 hudson.model.* \u306f\u3042\u3089\u304b\u3058\u3081\u30a4\u30f3\u30dd\u30fc\u30c8\u6e08\u307f\u3067\u3059\u3002 + プラグインã®ã™ã¹ã¦ã®ã‚¯ãƒ©ã‚¹ã‚’利用ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ \ + ã¾ãŸã€jenkins.*ã€jenkins.model.*ã€hudson.*ã€ãŠã‚ˆã³ hudson.model.* ã¯ã‚らã‹ã˜ã‚インãƒãƒ¼ãƒˆæ¸ˆã¿ã§ã™ã€‚ diff --git a/core/src/main/resources/lib/hudson/scriptConsole_ko.properties b/core/src/main/resources/lib/hudson/scriptConsole_ko.properties index b10095ea404e..5c9c7cfa73c2 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_ko.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_ko.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Result=\uACB0\uACFC -Run=\uC2E4\uD589 -Script\ Console=\uC2A4\uD06C\uB9BD\uD2B8 \uCF58\uC194 -description=\uC784\uC758\uC758 Groovy\uC2A4\uD06C\uB9BD\uD2B8\uB97C \uC785\uB825\uD558\uC5EC \uC11C\uBC84\uC5D0\uC11C \uC2E4\uD589\uD569\uB2C8\uB2E4.
\uBB38\uC81C\uD574\uACB0\uACFC \uC9C4\uB2E8\uC2DC\uC5D0 \uC720\uC6A9\uD569\uB2C8\uB2E4. \uCD9C\uB825\uBB3C\uC744 \uBCF4\uB824\uBA74 ''println'' \uBA85\uB839\uC744 \uC0AC\uC6A9\uD558\uC138\uC694.
(System.out\uB97C \uC0AC\uC6A9\uD558\uBA74 \uC11C\uBC84\uC758 \uD45C\uC900\uCD9C\uB825\uC73C\uB85C \uBCF4\uB0B4\uC9C0\uACE0, \uAC00\uB3C5\uC131\uC774 \uB5A8\uC5B4\uC9D1\uB2C8\uB2E4.)

\uC608\uC81C: +Result=ê²°ê³¼ +Run=실행 +Script\ Console=스í¬ë¦½íŠ¸ 콘솔 +description=ìž„ì˜ì˜ Groovy스í¬ë¦½íŠ¸ë¥¼ 입력하여 서버ì—ì„œ 실행합니다.
문제해결과 ì§„ë‹¨ì‹œì— ìœ ìš©í•©ë‹ˆë‹¤. ì¶œë ¥ë¬¼ì„ ë³´ë ¤ë©´ ''println'' ëª…ë ¹ì„ ì‚¬ìš©í•˜ì„¸ìš”.
(System.out를 사용하면 ì„œë²„ì˜ í‘œì¤€ì¶œë ¥ìœ¼ë¡œ 보내지고, ê°€ë…ì„±ì´ ë–¨ì–´ì§‘ë‹ˆë‹¤.)

예제: diff --git a/core/src/main/resources/lib/hudson/scriptConsole_nb_NO.properties b/core/src/main/resources/lib/hudson/scriptConsole_nb_NO.properties index a663dfaaaf9f..17c22c4ca185 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_nb_NO.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Run=Kj\u00F8r +Run=Kjør Script\ Console=Skript-konsoll -description=Skriv inn et vilk\u00E5rlig Groovy script og kj\u00F8r det p\u00E5 serveren. Nyttig i forbindelse med feils\u00F8king og diagnostisering. Bruke "println"-kommandoen for \u00E5 se utdataene. (Hvis du bruker System.out havner det i serverens STDOUT, som er vanskeligere \u00E5 se. Eksempel: +description=Skriv inn et vilkÃ¥rlig Groovy script og kjør det pÃ¥ serveren. Nyttig i forbindelse med feilsøking og diagnostisering. Bruke "println"-kommandoen for Ã¥ se utdataene. (Hvis du bruker System.out havner det i serverens STDOUT, som er vanskeligere Ã¥ se. Eksempel: diff --git a/core/src/main/resources/lib/hudson/scriptConsole_pl.properties b/core/src/main/resources/lib/hudson/scriptConsole_pl.properties index 96f9ec609ac8..a837b6326251 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_pl.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_pl.properties @@ -2,7 +2,7 @@ Result=Rezultat Run=Wykonaj -Script\ Console=Konsola Skrypt\u00F3w -description=Wpisz skrypt Groovy script i wykonaj go na serwerze. U\u017Cyteczne w przypadku problem\u00F3w i diagnostyki. U\u017Cyj komendy ''''println'''' aby zobaczy\u0107 wynik (je\u015Bli u\u017Cyjesz System.out, wynik b\u0119dzie trudniejszy do znalezienia). Przyk\u0142ad: +Script\ Console=Konsola Skryptów +description=Wpisz skrypt Groovy script i wykonaj go na serwerze. Użyteczne w przypadku problemów i diagnostyki. Użyj komendy ''''println'''' aby zobaczyć wynik (jeÅ›li użyjesz System.out, wynik bÄ™dzie trudniejszy do znalezienia). PrzykÅ‚ad: -description2=Wszystkie klasy ze wszystkich dodatk\u00F3w s\u0105 widoczne. jenkins.*, jenkins.model.*, hudson.*, i hudson.model.* s\u0105 wst\u0119pnie zaimportowane. +description2=Wszystkie klasy ze wszystkich dodatków sÄ… widoczne. jenkins.*, jenkins.model.*, hudson.*, i hudson.model.* sÄ… wstÄ™pnie zaimportowane. diff --git a/core/src/main/resources/lib/hudson/scriptConsole_pt_BR.properties b/core/src/main/resources/lib/hudson/scriptConsole_pt_BR.properties index 94825cac72f4..eb938498aa7a 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_pt_BR.properties @@ -28,15 +28,15 @@ Result=Resultado # Use the ''println'' command to see the output (if you use System.out, \ # it will go to the server''s stdout, which is harder to see.) Example: description=Digite um comando Groovy script qualquer e \ - execute-o no servidor. \u00DAtil para resolu\u00E7\u00E3o de problemas e diagn\u00F3sticos. \ - Use o comando "println" para ver a sa\u00EDda (se voc\u00EA usa System.out, \ - ele ir\u00E1 para o log do servidor, que \u00E9 mais dif\u00EDcil de ver). Exemplo: + execute-o no servidor. Útil para resolução de problemas e diagnósticos. \ + Use o comando "println" para ver a saída (se você usa System.out, \ + ele irá para o log do servidor, que é mais difícil de ver). Exemplo: # All the classes from all the plugins are visible. \ # jenkins.*, jenkins.model.*, hudson.*, and \ # hudson.model.* are pre-imported. -description2=Todas as classes de todos as estens\u00F5es s\u00E3o vis\u00EDveis. \ +description2=Todas as classes de todos as estensões são visíveis. \ jenkins.*, jenkins.model.*, hudson.*, e \ - hudson.model.* s\u00E3o pr\u00E9-importadas. -It\ is\ not\ possible\ to\ run\ scripts\ when\ agent\ is\ offline.=N\u00E3o\ \u00E9\ poss\u00EDvel\ executar\ scripts\ quando\ o\ agente\ est\u00E1\ fora\ do\ ar. + hudson.model.* são pré-importadas. +It\ is\ not\ possible\ to\ run\ scripts\ when\ agent\ is\ offline.=Não\ é\ possível\ executar\ scripts\ quando\ o\ agente\ está\ fora\ do\ ar. clickToCopy=Clique para copiar -successfullyCopied=Copiado para \u00E1rea de transfer\u00EAncia +successfullyCopied=Copiado para área de transferência diff --git a/core/src/main/resources/lib/hudson/scriptConsole_ru.properties b/core/src/main/resources/lib/hudson/scriptConsole_ru.properties index 6b0a4b308b3c..ebee8c2f516b 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_ru.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_ru.properties @@ -1,6 +1,6 @@ -It\ is\ not\ possible\ to\ run\ scripts\ when\ agent\ is\ offline.=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442, \u043a\u043e\u0433\u0434\u0430 \u0430\u0433\u0435\u043d\u0442 \u043d\u0435 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d. -Result=\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 -Run=\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c -Script\ Console=\u041a\u043e\u043d\u0441\u043e\u043b\u044c -description2=\u0412\u0441\u0435 \u043a\u043b\u0430\u0441\u0441\u044b \u0438\u0437 \u0432\u0441\u0435\u0445 \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b. jenkins.*, jenkins.model.*, hudson.* \u0438 hudson.model.* \u0443\u0436\u0435 \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e. -description=\u0412\u0432\u0435\u0434\u0438\u0442\u0435 Groovy \u0441\u043a\u0440\u0438\u043f\u0442 \u0438 \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u0435 \u0435\u0433\u043e \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435. \u041f\u043e\u043b\u0435\u0437\u043d\u043e \u043f\u0440\u0438 \u0443\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u0438 \u043d\u0435\u043f\u043e\u043b\u0430\u0434\u043e\u043a \u0438 \u0434\u0438\u0430\u0433\u043d\u043e\u0441\u0442\u0438\u043a\u0438. \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0443 ''''println'''' \u0434\u043b\u044f \u043f\u0435\u0447\u0430\u0442\u0438 \u0432 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 \u0432\u044b\u0432\u043e\u0434 (\u0435\u0441\u043b\u0438 \u0432\u044b \u0432\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0435\u0441\u044c System.out, \u0442\u043e \u0432\u044b\u0432\u043e\u0434 \u043f\u043e\u0439\u0434\u0451\u0442 \u0432 stdout \u0441\u0435\u0440\u0432\u0435\u0440\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0441\u043b\u043e\u0436\u043d\u0435\u0435 \u0443\u0432\u0438\u0434\u0435\u0442\u044c). \u041d\u0430\u043f\u0440\u0438\u043c\u0435\u0440: +It\ is\ not\ possible\ to\ run\ scripts\ when\ agent\ is\ offline.=Ðевозможно запуÑтить Ñкрипт, когда агент не подключен. +Result=Результат +Run=ЗапуÑтить +Script\ Console=КонÑоль +description2=Ð’Ñе клаÑÑÑ‹ из вÑех плагинов доÑтупны. jenkins.*, jenkins.model.*, hudson.* и hudson.model.* уже импортированы по умолчанию. +description=Введите Groovy Ñкрипт и выполните его на Ñервере. Полезно при уÑтранении неполадок и диагноÑтики. ИÑпользуйте команду ''''println'''' Ð´Ð»Ñ Ð¿ÐµÑ‡Ð°Ñ‚Ð¸ в Ñтандартный вывод (еÑли вы воÑпользуетеÑÑŒ System.out, то вывод пойдёт в stdout Ñервера, который Ñложнее увидеть). Ðапример: diff --git a/core/src/main/resources/lib/hudson/scriptConsole_sr.properties b/core/src/main/resources/lib/hudson/scriptConsole_sr.properties index a09e644fcd25..760ac9bee7bf 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_sr.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_sr.properties @@ -1,13 +1,13 @@ # This file is under the MIT License by authors -Script\ Console=\u041A\u043E\u043D\u0437\u043E\u043B\u0430 +Script\ Console=Конзола description=\ - \u0423\u043D\u0435\u0441\u0438\u0442\u0435 \u0430\u0440\u0431\u0438\u0442\u0440\u0430\u0440\u043D\u0438 Groovy \u0441\u043A\u0440\u0443\u043F\u0442\u0443 \u0438 \ - \u0438\u0437\u0432\u0440\u0448\u0438 \u0458\u0435 \u043D\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0443. \u041A\u043E\u0440\u0438\u0441\u043D\u043E \u043A\u043E\u0434 \u0440\u0435\u0448\u0430\u0432\u0430\u045A\u0435 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0430 \u0438 \u0434\u0438\u0430\u0433\u043D\u043E\u0441\u0442\u0438\u043A\u043E\u043C. \ - \u041A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u0443 \u2018println\u2019 \u0434\u0430 \u0432\u0438\u0434\u0438\u0442\u0435 \u0438\u0441\u0445\u043E\u0434 (\u0431\u0438\u045B\u0435 \u043F\u0440\u0435\u0443\u0441\u043C\u0435\u0440\u0435\u043D\u043E \ - System.out \u043F\u0440\u0435\u043C\u0430 stdout \u0441\u0435\u0440\u0432\u0435\u0440\u0430, \u0448\u0442\u043E \u0441\u0435 \u0442\u0435\u0436\u0435 \u0447\u0438\u0442\u0430.) \u041F\u0440\u0438\u043C\u0435\u0440: + УнеÑите арбитрарни Groovy Ñкрупту и \ + изврши је на Ñерверу. КориÑно код решавање проблема и диагноÑтиком. \ + КориÑтите команду ‘println’ да видите иÑход (биће преуÑмерено \ + System.out према stdout Ñервера, што Ñе теже чита.) Пример: description2=\ - \u0421\u0432\u0435 \u043A\u043B\u0430\u0441\u0435 \u0441\u0430 \u0441\u0432\u0438\u0445 \u043C\u043E\u0434\u0443\u043B\u0430 \u0441\u0443 \u0432\u0438\u0434\u0459\u0438\u0432\u0438. jenkins.*, jenkins.model.*, hudson.*, and hudson.model.* \u0441\u0443 \u043F\u0440\u0435\u0442\u0445\u043E\u0434\u043D\u043E \u0443\u0447\u0438\u0442\u0430\u043D\u0430. -Run=\u0418\u0437\u0432\u0440\u0448\u0438 -Result=\u0420\u0435\u0437\u0443\u043B\u0442\u0430\u0442 -It\ is\ not\ possible\ to\ run\ scripts\ when\ agent\ is\ offline.=\u041D\u0438\u0458\u0435 \u043C\u043E\u0433\u0443\u045B\u0435 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0438 \u0441\u043A\u0438\u043F\u0442\u043E\u0432\u0435 \u043A\u0430\u0434\u0430 \u0430\u0433\u0435\u043D\u0442 \u043D\u0438\u0458\u0435 \u043F\u043E\u0432\u0435\u0437\u0430\u043D. + Све клаÑе Ñа Ñвих модула Ñу видљиви. jenkins.*, jenkins.model.*, hudson.*, and hudson.model.* Ñу претходно учитана. +Run=Изврши +Result=Резултат +It\ is\ not\ possible\ to\ run\ scripts\ when\ agent\ is\ offline.=Ðије могуће извршити Ñкиптове када агент није повезан. diff --git a/core/src/main/resources/lib/hudson/scriptConsole_sv_SE.properties b/core/src/main/resources/lib/hudson/scriptConsole_sv_SE.properties index 74188a6c9710..c16dd84628e8 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_sv_SE.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Result=Resultat -Run=K\u00F6r +Run=Kör Script\ Console=Skriptkonsoll -description=Skriv in ett godtyckligt Groovy skript och k\u00F6r den p\u00E5 noden. Detta \u00E4r anv\u00E4ndbart vid fels\u00F6kning och diagnostik. Anv\u00E4nd''''println''''kommandot f\u00F6r att se resultatet (om du anv\u00E4nder System.out kommer det att g\u00E5 till serverns standard ut, som \u00E4r sv\u00E5rare att se.) Exempel: -description2=Alla klasser fr\u00E5n pluginet \u00E4r synliga. jenkins.*, jenkins.model.*, hudson.*, and hudson.model.* are pre-imported. +description=Skriv in ett godtyckligt Groovy skript och kör den pÃ¥ noden. Detta är användbart vid felsökning och diagnostik. Använd''''println''''kommandot för att se resultatet (om du använder System.out kommer det att gÃ¥ till serverns standard ut, som är svÃ¥rare att se.) Exempel: +description2=Alla klasser frÃ¥n pluginet är synliga. jenkins.*, jenkins.model.*, hudson.*, and hudson.model.* are pre-imported. diff --git a/core/src/main/resources/lib/hudson/scriptConsole_tr.properties b/core/src/main/resources/lib/hudson/scriptConsole_tr.properties index 59a1ae2f179b..b7add31862da 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_tr.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_tr.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Script\ Console=Script Konsolu -Run=\u0130al\u0131\u015ft\u0131r -Result=Sonu\u00e7 +Run=Ä°alıştır +Result=Sonuç diff --git a/core/src/main/resources/lib/hudson/scriptConsole_zh_TW.properties b/core/src/main/resources/lib/hudson/scriptConsole_zh_TW.properties index 4382d765ec1b..6d0f7c5b5433 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_zh_TW.properties @@ -19,9 +19,9 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description=\u8f38\u5165\u4efb\u610f\u7684 Groovy Script\uff0c\u5728\u4f3a\u670d\u5668\u4e0a\u57f7\u884c\u3002\u7591\u96e3\u6392\u89e3\u6216\u8a3a\u65b7\u6642\u5f88\u6709\u7528\u3002\u4f7f\u7528 "println" \u6307\u4ee4\u53ef\u4ee5\u770b\u5230\u8f38\u51fa\u7d50\u679c (\u5982\u679c\u60a8\u4f7f\u7528 System.out\uff0c\u5c07\u8f38\u51fa\u5230\u4f3a\u670d\u5668\u4e0a\u7684 stdout\uff0c\u6703\u6bd4\u8f03\u96e3\u770b\u5230)\u3002\u7bc4\u4f8b\: -description2=\u6240\u6709\u5916\u639b\u7a0b\u5f0f\u7684 class \u90fd\u53ef\u4ee5\u4f7f\u7528\u3002\u5df2\u9810\u5148 import \u4e86 jenkins.*, jenkins.model.*, hudson.* \u53ca hudson.model.* \u7b49 package\u3002 -Script\ Console=Script \u4e3b\u63a7\u53f0 -Run=\u57f7\u884c -Result=\u7d50\u679c -It\ is\ not\ possible\ to\ run\ scripts\ when\ agent\ is\ offline.=Agent \u96e2\u7dda\u6642\u7121\u6cd5\u57f7\u884c Script\u3002 +description=輸入任æ„çš„ Groovy Script,在伺æœå™¨ä¸ŠåŸ·è¡Œã€‚疑難排解或診斷時很有用。使用 "println" 指令å¯ä»¥çœ‹åˆ°è¼¸å‡ºçµæžœ (如果您使用 System.out,將輸出到伺æœå™¨ä¸Šçš„ stdout,會比較難看到)。範例\: +description2=所有外掛程å¼çš„ class 都å¯ä»¥ä½¿ç”¨ã€‚å·²é å…ˆ import 了 jenkins.*, jenkins.model.*, hudson.* åŠ hudson.model.* ç­‰ package。 +Script\ Console=Script ä¸»æŽ§å° +Run=執行 +Result=çµæžœ +It\ is\ not\ possible\ to\ run\ scripts\ when\ agent\ is\ offline.=Agent 離線時無法執行 Script。 diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_bg.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_bg.properties index b0d6ce3e078b..b9351de3ad6a 100644 --- a/core/src/main/resources/lib/hudson/thirdPartyLicenses_bg.properties +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_bg.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Name=\ - \u0418\u043c\u0435 + Име License=\ - \u041b\u0438\u0446\u0435\u043d\u0437 + Лиценз Maven\ ID=\ - \u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0432 Maven + Идентификатор в Maven diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_cs.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_cs.properties index 1617bf57ec3a..2fe4e007735e 100644 --- a/core/src/main/resources/lib/hudson/thirdPartyLicenses_cs.properties +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_cs.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors License=Licence -Name=N\u00E1zev +Name=Název diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_he.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_he.properties index a5d31e21df94..d4c12a55242c 100644 --- a/core/src/main/resources/lib/hudson/thirdPartyLicenses_he.properties +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_he.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -License=\u05E8\u05E9\u05D9\u05D5\u05DF -Name=\u05E9\u05DD +License=רשיון +Name=×©× diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_hu.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_hu.properties index 425093b14813..2729b4068865 100644 --- a/core/src/main/resources/lib/hudson/thirdPartyLicenses_hu.properties +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_hu.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors License=Licensz -Name=N\u00E9v +Name=Név diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_it.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_it.properties index 6dc673d44835..93192e9cdc5f 100644 --- a/core/src/main/resources/lib/hudson/thirdPartyLicenses_it.properties +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_it.properties @@ -1,7 +1,7 @@ # The MIT License # # Italian localization plugin for Jenkins -# Copyright © 2020 Alessandro Menti +# Copyright © 2020 Alessandro Menti # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_ja.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_ja.properties index c7aa346c57b1..c678e14c9e64 100644 --- a/core/src/main/resources/lib/hudson/thirdPartyLicenses_ja.properties +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -License=\u30e9\u30a4\u30bb\u30f3\u30b9 +License=ライセンス Maven\ ID=Maven ID -Name=\u540d\u79f0 +Name=å称 diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_ko.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_ko.properties index 18659234845b..94705e2dd250 100644 --- a/core/src/main/resources/lib/hudson/thirdPartyLicenses_ko.properties +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_ko.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -License=\uB77C\uC774\uC13C\uC2A4 -Name=\uD56D\uBAA9 +License=ë¼ì´ì„¼ìŠ¤ +Name=항목 diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_pt_BR.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_pt_BR.properties index bf499bad777d..f0637d03ba6b 100644 --- a/core/src/main/resources/lib/hudson/thirdPartyLicenses_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -License=Licen\u00E7a -Maven\ ID=Identifica\u00E7\u00E3o no Maven +License=Licença +Maven\ ID=Identificação no Maven Name=Nome diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_ru.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_ru.properties index 88f4d0647eff..7052fe115a93 100644 --- a/core/src/main/resources/lib/hudson/thirdPartyLicenses_ru.properties +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -License=\u041b\u0438\u0446\u0435\u043d\u0437\u0438\u044f -Maven\ ID=ID Maven'\u0430 -Name=\u0418\u043c\u044f +License=Ð›Ð¸Ñ†ÐµÐ½Ð·Ð¸Ñ +Maven\ ID=ID Maven'а +Name=Ð˜Ð¼Ñ diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_sr.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_sr.properties index 4b3e12ab10b7..3ba49e337b19 100644 --- a/core/src/main/resources/lib/hudson/thirdPartyLicenses_sr.properties +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Name=\u0418\u043C\u0435 -Maven\ ID=\u0418\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0442\u043E\u0440 \u0437\u0430 Maven -License=\u041B\u0438\u0446\u0435\u043D\u0446\u0430 +Name=Име +Maven\ ID=Идентификатор за Maven +License=Лиценца diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_uk.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_uk.properties index 2dea67a71780..8bd38deb02a3 100644 --- a/core/src/main/resources/lib/hudson/thirdPartyLicenses_uk.properties +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_uk.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -License=\u041B\u0456\u0446\u0435\u043D\u0437\u0456\u044F -Maven\ ID=Maven \u0406\u0434\u0435\u043D\u0442\u0438\u0444\u0456\u043A\u0430\u0442\u043E\u0440 -Name=\u041D\u0430\u0437\u0432\u0430 +License=Ð›Ñ–Ñ†ÐµÐ½Ð·Ñ–Ñ +Maven\ ID=Maven Ідентифікатор +Name=Ðазва diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_zh_TW.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_zh_TW.properties index a51afcb4c863..3a8b05e19e64 100644 --- a/core/src/main/resources/lib/hudson/thirdPartyLicenses_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -License=\u6388\u6B0A +License=授權 Maven\ ID=Maven ID -Name=\u540D\u7A31 +Name=å稱 diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_ja.properties b/core/src/main/resources/lib/layout/breadcrumbBar_ja.properties index 83df46ea1292..a3b88a9ca6fb 100644 --- a/core/src/main/resources/lib/layout/breadcrumbBar_ja.properties +++ b/core/src/main/resources/lib/layout/breadcrumbBar_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dashboard=\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9 +Dashboard=ダッシュボード diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_zh_TW.properties b/core/src/main/resources/lib/layout/breadcrumbBar_zh_TW.properties index a72b47b144a0..aa8a398360e0 100644 --- a/core/src/main/resources/lib/layout/breadcrumbBar_zh_TW.properties +++ b/core/src/main/resources/lib/layout/breadcrumbBar_zh_TW.properties @@ -1 +1 @@ -Dashboard=\u8cc7\u8a0a\u4e3b\u9801 +Dashboard=è³‡è¨Šä¸»é  diff --git a/core/src/main/resources/lib/layout/copyButton.jelly b/core/src/main/resources/lib/layout/copyButton.jelly index 2e260efeab18..474b25a58210 100644 --- a/core/src/main/resources/lib/layout/copyButton.jelly +++ b/core/src/main/resources/lib/layout/copyButton.jelly @@ -1,7 +1,7 @@ + + diff --git a/core/src/main/resources/lib/layout/copyButton/copyButton.css b/core/src/main/resources/lib/layout/copyButton/copyButton.css deleted file mode 100644 index 04c35214d131..000000000000 --- a/core/src/main/resources/lib/layout/copyButton/copyButton.css +++ /dev/null @@ -1,28 +0,0 @@ -.copy-button { - display: inline-block; -} -#jenkins .copy-button button { - background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMi40NTMgMTkuNTc0QTIuNDUgMi40NSAwIDAgMSAwIDE3LjEyOFYyLjQ0N0EyLjQ1IDIuNDUgMCAwIDEgMi40NTMgMGgxMi43NDRhMi40NSAyLjQ1IDAgMCAxIDIuNDUyIDIuNDQ3djE0LjY4YTIuNDUgMi40NSAwIDAgMS0yLjQ1MiAyLjQ0N0gyLjQ1M3ptLjQ4LTE0LjY4aDUuMzk2VjIuOTM2SDIuOTMydjEuOTU4em0wIDMuOTE1aDEwLjc5MlY2Ljg1SDIuOTMyVjguODF6bTAgMy45MTRoNS44ODZ2LTEuOTU3SDIuOTMydjEuOTU3em0wIDMuOTE1aDkuODF2LTEuOTU3aC05LjgxdjEuOTU3eiIgZmlsbD0iIzc4ODU5NCIvPjxwYXRoIGQ9Ik01LjM4NSAyM2ExLjk2IDEuOTYgMCAwIDEtMS45NjItMS45NTdoMTIuNzU2YTIuOTQgMi45NCAwIDAgMCAyLjk0My0yLjkzN1YzLjQyNmMxLjA4MyAwIDEuOTYxLjg3NSAxLjk2MSAxLjk1NnYxMy43MDNBMy45MiAzLjkyIDAgMCAxIDE3LjE2IDIzSDUuMzg1eiIgZmlsbD0iIzRFNTc2MiIvPjwvZz48L3N2Zz4='); - background-size: 18px; - background-color: transparent; - background-position: center center; - background-repeat: no-repeat; - width: 20px; - height: 20px; - min-height: 0; - min-width: 0; - padding: 0; - border: none; -} -#jenkins .copy-button button:hover, -#jenkins .copy-button button:active { - box-shadow: none; - border: none; - background-color: transparent; -} -.copy-button.visible { - display: inline-block; -} -.copy-button.invisible { - display: none; -} diff --git a/core/src/main/resources/lib/layout/copyButton/copyButton.js b/core/src/main/resources/lib/layout/copyButton/copyButton.js index 909787715a94..ccb6c4ca829c 100644 --- a/core/src/main/resources/lib/layout/copyButton/copyButton.js +++ b/core/src/main/resources/lib/layout/copyButton/copyButton.js @@ -1,30 +1,26 @@ -Behaviour.specify("span.copy-button", 'copyButton', 0, function(e) { - var btn = e.firstChild; - var id = "copy-button"+(iota++); - btn.id = id; +Behaviour.specify(".jenkins-copy-button", "copyButton", 0, function(copyButton) { + copyButton.addEventListener("click", () => { + // Make an invisible textarea element containing the text + const fakeInput = document.createElement("textarea"); + fakeInput.value = copyButton.getAttribute("text"); + fakeInput.style.width = "1px"; + fakeInput.style.height = "1px"; + fakeInput.style.border = "none"; + fakeInput.style.padding = "0px"; + fakeInput.style.position = "absolute"; + fakeInput.style.top = "-99999px"; + fakeInput.style.left = "-99999px"; + fakeInput.setAttribute("tabindex", "-1"); + document.body.appendChild(fakeInput); - makeButton(btn, function() { - //make an invisible textarea element containing the text - var el = document.createElement('textarea'); - el.value = e.getAttribute("text"); - el.style.width = "1px"; - el.style.height = "1px"; - el.style.border = "none"; - el.style.padding = "0px"; - el.style.position = "absolute"; - el.style.top = "-99999px"; - el.style.left = "-99999px"; - el.setAttribute("tabindex", "-1"); - document.body.appendChild(el); + // Select the text and copy it to the clipboard + fakeInput.select(); + navigator.clipboard.writeText(fakeInput.value); - //select the text and copy it to the clipboard - el.select(); - document.execCommand('copy'); + // Remove the textarea element + document.body.removeChild(fakeInput); - //remove the textarea element - document.body.removeChild(el); - - //show the notification - notificationBar.show(e.getAttribute("message")); - }); + // Show the completion message + hoverNotification(copyButton.getAttribute("message"), copyButton); + }) }); diff --git a/core/src/main/resources/lib/layout/icon.jelly b/core/src/main/resources/lib/layout/icon.jelly index 4da9d676d8a6..a1e1083ba975 100644 --- a/core/src/main/resources/lib/layout/icon.jelly +++ b/core/src/main/resources/lib/layout/icon.jelly @@ -43,9 +43,12 @@ THE SOFTWARE. onclick handler. Deprecated; assign an ID and look up the element that way to attach event handlers. - title, deprecated use tooltip instead + title, deprecated use tooltip instead, but beware of its support for HTML style - tooltip + + tooltip (supports HTML for PNG and symbol icons). + Make sure to call h.htmlAttributeEscape on all user-specified parts of the value to prevent cross-site scripting. + Icons based on classic (non-symbol) SVG do not support HTML tooltips due to how SECURITY-1955 was fixed in Jenkins 2.252 and 2.235.4, but since such icons can be upgraded to symbols, it is important to still escape user-specified parts of the text (resulting in double escaping while the icon is based on classic SVG). alt, adds invisible text suitable for screen-readers for symbols, sets the alt attribute for normal images @@ -68,7 +71,7 @@ THE SOFTWARE. - + diff --git a/core/src/main/resources/lib/layout/layout.jelly b/core/src/main/resources/lib/layout/layout.jelly index 90c909469e82..58663463635f 100644 --- a/core/src/main/resources/lib/layout/layout.jelly +++ b/core/src/main/resources/lib/layout/layout.jelly @@ -141,7 +141,6 @@ THE SOFTWARE. -