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..8f04518d69b7 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,16 @@ 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 (*.hbs) require a few tweaks in order to comply with 4.x' standards: + # https://issues.jenkins.io/browse/JENKINS-68926 + - dependency-name: "handlebars" + + # A test case needs an update: https://issues.jenkins.io/browse/JENKINS-68975 + - dependency-name: "jest" diff --git a/.github/workflows/label-conflicting-pr.yml b/.github/workflows/label-conflicting-pr.yml new file mode 100644 index 000000000000..65c3a2a31757 --- /dev/null +++ b/.github/workflows/label-conflicting-pr.yml @@ -0,0 +1,21 @@ +name: "Label conflicting PRs" +on: + push: + pull_request_target: + types: [synchronize] + +permissions: + pull-requests: write + +jobs: + main: + if: github.event.pull_request.user.login != 'dependabot[bot]' + runs-on: ubuntu-latest + steps: + - name: Label conflicting PRs + uses: eps1lon/actions-label-merge-conflict@b8bf8341285ec9a4567d4318ba474fee998a6919 # v2.0.1 + with: + dirtyLabel: "unresolved-merge-conflict" + repoToken: "${{ secrets.GITHUB_TOKEN }}" + commentOnDirty: "Please take a moment and address the merge conflicts of your pull request. Thanks!" + continueOnMissingPermissions: true 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..2281e7d3ce2d --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ 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..6d17bbefc924 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,8 +41,8 @@ for (i = 0; i < buildTypes.size(); i++) { // Now run the actual build. stage("${buildType} Build / Test") { - timeout(time: 5, unit: 'HOURS') { - realtimeJUnit(healthScaleFactor: 20.0, testResults: '*/target/surefire-reports/*.xml,war/junit.xml') { + timeout(time: 6, unit: 'HOURS') { + realtimeJUnit(healthScaleFactor: 20.0, testResults: '*/target/surefire-reports/*.xml,war/target/jest-result.xml') { def mavenOptions = [ '-Pdebug', '-Penable-jacoco', @@ -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,23 +72,22 @@ 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' } if (buildType == 'Linux' && jdk == jdks[0]) { - publishCoverage calculateDiffForChangeRequests: true, adapters: [jacocoAdapter('coverage/target/site/jacoco-aggregate/jacoco.xml')] def folders = env.JOB_NAME.split('/') if (folders.length > 1) { discoverGitReferenceBuild(scm: folders[1]) } + publishCoverage calculateDiffForChangeRequests: true, adapters: [jacocoAdapter('coverage/target/site/jacoco-aggregate/jacoco.xml')] echo "Recording static analysis results for '${buildType}'" recordIssues( @@ -112,6 +112,13 @@ for (i = 0; i < buildTypes.size(); i++) { qualityGates: [ [threshold: 1, type: 'TOTAL', unstable: true], ]]) + recordIssues([tool: esLint(pattern: '**/target/eslint-warnings.xml'), + sourceCodeEncoding: 'UTF-8', + skipBlames: true, + trendChartType: 'TOOLS_ONLY', + qualityGates: [ + [threshold: 1, type: 'TOTAL', unstable: true], + ]]) if (failFast && currentBuild.result == 'UNSTABLE') { error 'Static analysis quality gates not passed; halting early' } diff --git a/bom/pom.xml b/bom/pom.xml index a2929a173b77..6b8d1b3c6246 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 @@ -301,6 +296,11 @@ THE SOFTWARE. j-interop 2.0.8-kohsuke-1 + + org.kohsuke.metainf-services + metainf-services + 1.9 + org.kohsuke.stapler json-lib 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/FullDuplexHttpStream.java b/cli/src/main/java/hudson/cli/FullDuplexHttpStream.java index ae8917ab3aa6..3b4b4d25342f 100644 --- a/cli/src/main/java/hudson/cli/FullDuplexHttpStream.java +++ b/cli/src/main/java/hudson/cli/FullDuplexHttpStream.java @@ -23,27 +23,27 @@ public class FullDuplexHttpStream { private final InputStream input; /** - * A way to get data from the server. - * There will be an initial zero byte used as a handshake which you should expect and ignore. + * Get data from the server. + * An initial zero byte is used as a handshake which you should expect and ignore. */ public InputStream getInputStream() { return input; } /** - * A way to upload data to the server. - * You will need to write to this and {@link OutputStream#flush} it to finish establishing a connection. + * Upload data to the server. + * You will need to write to this and {@link OutputStream#flush} it to establish a connection. */ public OutputStream getOutputStream() { return output; } /** - * @param base the base URL of Jenkins + * @param base the base URL of Jenkins. * @param relativeTarget * The endpoint that we are making requests to. * @param authorization - * The value of the authorization header, if non-null. + * The value of the authorization header. */ public FullDuplexHttpStream(URL base, String relativeTarget, String authorization) throws IOException { if (!base.toString().endsWith("/")) { @@ -75,7 +75,7 @@ public FullDuplexHttpStream(URL base, String relativeTarget, String authorizatio if (con.getHeaderField("Hudson-Duplex") == null) { throw new CLI.NotTalkingToJenkinsException("There's no Jenkins running at " + target + ", or is not serving the HTTP Duplex transport"); } - LOGGER.fine("established download side"); // calling getResponseCode or getHeaderFields breaks everything + LOGGER.fine("established download side"); // calling getResponseCode or getHeaderFields fails // client->server uses chunked encoded POST for unlimited capacity. LOGGER.fine("establishing upload side"); @@ -98,7 +98,7 @@ private HttpURLConnection openHttpConnection(URL target) throws IOException { return (HttpURLConnection) target.openConnection(); } - // As this transport mode is using POST, it is necessary to resolve possible redirections using GET first. @SuppressFBWarnings(value = "URLCONNECTION_SSRF_FD", justification = "Client-side code doesn't involve SSRF.") + // As this transport mode is using POST, it is necessary to resolve possible redirections using GET first. private URL tryToResolveRedirects(URL base, String authorization) { try { HttpURLConnection con = openHttpConnection(base); @@ -108,9 +108,8 @@ private URL tryToResolveRedirects(URL base, String authorization) { con.getInputStream().close(); base = con.getURL(); } catch (Exception ex) { - // Do not obscure the problem propagating the exception. If the problem is real it will manifest during the - // actual exchange so will be reported properly there. If it is not real (no permission in UI but sufficient - // for CLI connection using one of its mechanisms), there is no reason to bother user about it. + // If the exception is not real (permission for CLI connection but not for UI) do not inform user. + // Otherwise, the error will be reported during the exchange. LOGGER.log(Level.FINE, "Failed to resolve potential redirects", ex); } return base; 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..fe1415c82182 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -328,6 +328,17 @@ THE SOFTWARE. org.jenkins-ci version-number + + org.jenkins-ci.main + websocket-spi + ${project.version} + + + javax.servlet + javax.servlet-api + + + org.jfree jfreechart @@ -375,10 +386,8 @@ THE SOFTWARE. j-interop - org.kohsuke.metainf-services metainf-services - 1.9 true @@ -599,19 +608,6 @@ THE SOFTWARE. - - org.jvnet.hudson.tools - maven-encoding-plugin - - - - - check-encoding - - compile - - - com.infradna.tool bridge-method-injector @@ -719,7 +715,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 +807,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/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..99603ac1e411 100644 --- a/core/src/main/java/hudson/WebAppMain.java +++ b/core/src/main/java/hudson/WebAppMain.java @@ -140,10 +140,10 @@ 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); + h.setFormatter(formatter); } } } catch (ClassNotFoundException x) { diff --git a/core/src/main/java/hudson/cli/CLIAction.java b/core/src/main/java/hudson/cli/CLIAction.java index 31d4700e4cb1..633ecca3437c 100644 --- a/core/src/main/java/hudson/cli/CLIAction.java +++ b/core/src/main/java/hudson/cli/CLIAction.java @@ -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/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/diagnosis/OldDataMonitor.java b/core/src/main/java/hudson/diagnosis/OldDataMonitor.java index b29ec1a80fb2..ba589758cb28 100644 --- a/core/src/main/java/hudson/diagnosis/OldDataMonitor.java +++ b/core/src/main/java/hudson/diagnosis/OldDataMonitor.java @@ -149,7 +149,7 @@ public void onDeleted(Item item) { }; @Extension - public static final RunListener 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/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 bc96c1b08dcf..50875f19b8fd 100644 --- a/core/src/main/java/hudson/model/AbstractItem.java +++ b/core/src/main/java/hudson/model/AbstractItem.java @@ -55,6 +55,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; @@ -78,7 +80,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; @@ -110,6 +111,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()); @@ -850,7 +852,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 7851de09833c..8b46d0cd0a7e 100644 --- a/core/src/main/java/hudson/model/AbstractProject.java +++ b/core/src/main/java/hudson/model/AbstractProject.java @@ -268,7 +268,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; @@ -1746,7 +1746,7 @@ protected void submit(StaplerRequest req, StaplerResponse rsp) throws IOExceptio super.submit(req, rsp); JSONObject json = req.getSubmittedForm(); - makeDisabled(json.optBoolean("disable")); + makeDisabled(!json.optBoolean("enable")); jdk = json.optString("jdk", null); diff --git a/core/src/main/java/hudson/model/Actionable.java b/core/src/main/java/hudson/model/Actionable.java index 6fcb173fc6ad..053fb0c8cfe0 100644 --- a/core/src/main/java/hudson/model/Actionable.java +++ b/core/src/main/java/hudson/model/Actionable.java @@ -31,6 +31,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; @@ -227,7 +228,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/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/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/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 ae642aba3305..50de1401f029 100644 --- a/core/src/main/java/hudson/model/JDK.java +++ b/core/src/main/java/hudson/model/JDK.java @@ -197,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 9b492f4f6cfa..d7444c2304b0 100644 --- a/core/src/main/java/hudson/model/Job.java +++ b/core/src/main/java/hudson/model/Job.java @@ -81,6 +81,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; @@ -505,7 +506,7 @@ public void suggest(String token, List result) { @Override public Collection getAllJobs() { - return Collections.singleton(this); + return Set.of(this); } /** @@ -623,7 +624,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 { @@ -1120,7 +1121,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 9f47962b92bd..3476b81cc035 100644 --- a/core/src/main/java/hudson/model/ListView.java +++ b/core/src/main/java/hudson/model/ListView.java @@ -143,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) { 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/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 83f11cdef4a0..094a02bd2fa3 100644 --- a/core/src/main/java/hudson/model/Run.java +++ b/core/src/main/java/hudson/model/Run.java @@ -319,6 +319,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()); @@ -347,6 +348,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; @@ -2541,7 +2543,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/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/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..b18bf038d8d4 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) @@ -1023,11 +1025,7 @@ public boolean isRelevant() { switch (this.type) { case CORE: VersionNumber current = Jenkins.getVersion(); - - if (!isRelevantToVersion(current)) { - return false; - } - return true; + return isRelevantToVersion(current); case PLUGIN: // check whether plugin is installed 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..6374dd3e3f49 100644 --- a/core/src/main/java/hudson/model/View.java +++ b/core/src/main/java/hudson/model/View.java @@ -516,9 +516,7 @@ private boolean filterQueueItemTest(Queue.Item item, Collection vi // Check root project for sub-job projects (e.g. matrix jobs). if (item.task instanceof AbstractProject) { AbstractProject project = (AbstractProject) item.task; - if (viewItems.contains(project.getRootProject())) { - return true; - } + return viewItems.contains(project.getRootProject()); } return false; } @@ -1265,7 +1263,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/ResponseTimeMonitor.java b/core/src/main/java/hudson/node_monitors/ResponseTimeMonitor.java index 0a4be196009e..1ffdcc1a54ee 100644 --- a/core/src/main/java/hudson/node_monitors/ResponseTimeMonitor.java +++ b/core/src/main/java/hudson/node_monitors/ResponseTimeMonitor.java @@ -45,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) { 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/search/Search.java b/core/src/main/java/hudson/search/Search.java index 9c9aac5e72d6..70458355323d 100644 --- a/core/src/main/java/hudson/search/Search.java +++ b/core/src/main/java/hudson/search/Search.java @@ -339,7 +339,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/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/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 91376af16efd..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; @@ -899,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) { @@ -963,6 +972,19 @@ 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 diff --git a/core/src/main/java/hudson/security/LegacyAuthorizationStrategy.java b/core/src/main/java/hudson/security/LegacyAuthorizationStrategy.java index f9285262d9ac..39144b65b291 100644 --- a/core/src/main/java/hudson/security/LegacyAuthorizationStrategy.java +++ b/core/src/main/java/hudson/security/LegacyAuthorizationStrategy.java @@ -28,7 +28,7 @@ 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; @@ -55,7 +55,7 @@ public ACL getRootACL() { @Override public Collection getGroups() { - return Collections.singleton("admin"); + return Set.of("admin"); } @Extension @Symbol("legacy") 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 f2ad1fa7b63d..ca62a4d3fe0e 100644 --- a/core/src/main/java/hudson/security/SecurityRealm.java +++ b/core/src/main/java/hudson/security/SecurityRealm.java @@ -37,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; @@ -617,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(); @@ -640,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 @@ -664,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 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/slaves/Channels.java b/core/src/main/java/hudson/slaves/Channels.java index b5f5fadcceea..687ba60c300d 100644 --- a/core/src/main/java/hudson/slaves/Channels.java +++ b/core/src/main/java/hudson/slaves/Channels.java @@ -40,6 +40,7 @@ import hudson.util.StreamCopyThread; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; +import java.io.File; import java.io.IOError; import java.io.IOException; import java.io.InputStream; @@ -47,6 +48,7 @@ import java.net.InetSocketAddress; import java.net.ServerSocket; import java.net.Socket; +import java.util.Arrays; import java.util.Map; import java.util.concurrent.ExecutorService; import java.util.concurrent.TimeUnit; @@ -181,7 +183,9 @@ public synchronized void join() throws InterruptedException { * @return * never null * @since 1.300 + * @deprecated removed without replacement */ + @Deprecated public static Channel newJVM(String displayName, TaskListener listener, FilePath workDir, ClasspathBuilder classpath, Map systemProperties) throws IOException { JVMBuilder vmb = new JVMBuilder(); vmb.systemProperties(systemProperties); @@ -212,7 +216,9 @@ public static Channel newJVM(String displayName, TaskListener listener, FilePath * @return * never null * @since 1.361 + * @deprecated removed without replacement */ + @Deprecated public static Channel newJVM(String displayName, TaskListener listener, JVMBuilder vmb, FilePath workDir, ClasspathBuilder classpath) throws IOException { ServerSocket serverSocket = new ServerSocket(); serverSocket.bind(new InetSocketAddress("localhost", 0)); @@ -223,7 +229,7 @@ public static Channel newJVM(String displayName, TaskListener listener, JVMBuild vmb.mainClass(Launcher.class); if (classpath != null) - vmb.args().add("-cp").add(classpath); + Arrays.stream(classpath.toString().split(File.pathSeparator)).forEach(arg -> vmb.classpath().add(arg)); vmb.args().add("-connectTo", "localhost:" + serverSocket.getLocalPort()); listener.getLogger().println("Starting " + 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/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/Maven.java b/core/src/main/java/hudson/tasks/Maven.java index beee7b8624d5..404c21410d6f 100644 --- a/core/src/main/java/hudson/tasks/Maven.java +++ b/core/src/main/java/hudson/tasks/Maven.java @@ -693,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. 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/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/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/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/model/DefaultUserCanonicalIdResolver.java b/core/src/main/java/jenkins/model/DefaultUserCanonicalIdResolver.java index 57106782a7ba..c166ccbd414f 100644 --- a/core/src/main/java/jenkins/model/DefaultUserCanonicalIdResolver.java +++ b/core/src/main/java/jenkins/model/DefaultUserCanonicalIdResolver.java @@ -59,7 +59,7 @@ public Descriptor getDescriptor() { return DESCRIPTOR; } - public static final Descriptor DESCRIPTOR = new Descriptor() { + public static final Descriptor DESCRIPTOR = new Descriptor<>() { @NonNull @Override public String getDisplayName() { 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/Jenkins.java b/core/src/main/java/jenkins/model/Jenkins.java index 3aa50e0882a9..bbbcf7fe25a7 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 @@ -4161,7 +4162,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)); @@ -5543,7 +5544,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) @@ -5677,7 +5678,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 66d40c078dd1..ae064d0183d1 100644 --- a/core/src/main/java/jenkins/model/ParameterizedJobMixIn.java +++ b/core/src/main/java/jenkins/model/ParameterizedJobMixIn.java @@ -114,7 +114,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/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/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/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/VirtualFile.java b/core/src/main/java/jenkins/util/VirtualFile.java index 7dfd72a3d047..813c58af1216 100644 --- a/core/src/main/java/jenkins/util/VirtualFile.java +++ b/core/src/main/java/jenkins/util/VirtualFile.java @@ -1056,7 +1056,7 @@ public int zip(OutputStream outputStream, String includes, String excludes, bool @Override public InputStream open(boolean noFollowLinks) throws IOException { try { - return f.read(root == null ? null : root, noFollowLinks); + return f.read(root, noFollowLinks); } catch (InterruptedException x) { throw new IOException(x); } 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/WebSocketSession.java b/core/src/main/java/jenkins/websocket/WebSocketSession.java index 341be5ea71c5..f40c083a4bc4 100644 --- a/core/src/main/java/jenkins/websocket/WebSocketSession.java +++ b/core/src/main/java/jenkins/websocket/WebSocketSession.java @@ -25,7 +25,6 @@ package jenkins.websocket; import java.io.IOException; -import java.lang.reflect.Method; import java.nio.ByteBuffer; import java.util.concurrent.Future; import java.util.concurrent.ScheduledFuture; @@ -60,48 +59,28 @@ public abstract class WebSocketSession { private static final Logger LOGGER = Logger.getLogger(WebSocketSession.class.getName()); - private Object session; - // https://www.eclipse.org/jetty/javadoc/9.4.24.v20191120/org/eclipse/jetty/websocket/common/WebSocketRemoteEndpoint.html - private Object remoteEndpoint; + Provider.Handler handler; private ScheduledFuture pings; protected WebSocketSession() {} - Object onWebSocketSomething(Object proxy, Method method, Object[] args) throws Exception { - switch (method.getName()) { - case "onWebSocketConnect": - this.session = args[0]; - this.remoteEndpoint = session.getClass().getMethod("getRemote").invoke(args[0]); - if (PING_INTERVAL_SECONDS != 0) { - pings = Timer.get().scheduleAtFixedRate(() -> { - try { - remoteEndpoint.getClass().getMethod("sendPing", ByteBuffer.class).invoke(remoteEndpoint, ByteBuffer.wrap(new byte[0])); - } catch (Exception x) { - error(x); - pings.cancel(true); - } - }, PING_INTERVAL_SECONDS / 2, PING_INTERVAL_SECONDS, TimeUnit.SECONDS); - } - opened(); - return null; - case "onWebSocketClose": - if (pings != null) { - pings.cancel(true); - // alternately, check Session.isOpen each time - } - closed((Integer) args[0], (String) args[1]); - return null; - case "onWebSocketError": - error((Throwable) args[0]); - return null; - case "onWebSocketBinary": - binary((byte[]) args[0], (Integer) args[1], (Integer) args[2]); - return null; - case "onWebSocketText": - text((String) args[0]); - return null; - default: - throw new AssertionError(); + void startPings() { + if (PING_INTERVAL_SECONDS != 0) { + pings = Timer.get().scheduleAtFixedRate(() -> { + try { + handler.sendPing(ByteBuffer.wrap(new byte[0])); + } catch (Exception x) { + error(x); + pings.cancel(true); + } + }, PING_INTERVAL_SECONDS / 2, PING_INTERVAL_SECONDS, TimeUnit.SECONDS); + } + } + + void stopPings() { + if (pings != null) { + pings.cancel(true); + // alternately, check Session.isOpen each time } } @@ -123,38 +102,20 @@ protected void text(String message) throws IOException { LOGGER.warning("unexpected text frame"); } - @SuppressWarnings("unchecked") 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 IOException(x); - } + return handler.sendBinary(data); } 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 IOException(x); - } + handler.sendBinary(partialByte, isLast); } - @SuppressWarnings("unchecked") 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 IOException(x); - } + return handler.sendText(text); } protected final void close() throws IOException { - try { - session.getClass().getMethod("close").invoke(session); - } catch (Exception x) { - throw new IOException(x); - } + handler.close(); } } diff --git a/core/src/main/java/jenkins/websocket/WebSockets.java b/core/src/main/java/jenkins/websocket/WebSockets.java index 91d80c8c5f93..aafabcd79c9d 100644 --- a/core/src/main/java/jenkins/websocket/WebSockets.java +++ b/core/src/main/java/jenkins/websocket/WebSockets.java @@ -24,99 +24,101 @@ package jenkins.websocket; -import hudson.Extension; -import hudson.ExtensionList; -import java.lang.reflect.Method; -import java.lang.reflect.Proxy; +import java.io.IOException; +import java.nio.channels.ClosedChannelException; +import java.util.Iterator; +import java.util.ServiceConfigurationError; +import java.util.ServiceLoader; import java.util.logging.Level; import java.util.logging.Logger; -import javax.servlet.ServletContext; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; import org.kohsuke.accmod.Restricted; import org.kohsuke.accmod.restrictions.Beta; import org.kohsuke.stapler.HttpResponse; import org.kohsuke.stapler.HttpResponses; -import org.kohsuke.stapler.Stapler; /** * Support for serving WebSocket responses. * @since 2.216 */ @Restricted(Beta.class) -@Extension public class WebSockets { private static final Logger LOGGER = Logger.getLogger(WebSockets.class.getName()); - private static final String ATTR_SESSION = WebSockets.class.getName() + ".session"; + private static final Provider provider = findProvider(); + + private static Provider findProvider() { + Iterator it = ServiceLoader.load(Provider.class).iterator(); + while (it.hasNext()) { + try { + return it.next(); + } catch (ServiceConfigurationError x) { + LOGGER.log(Level.FINE, null, x); + } + } + return null; + } // TODO ability to handle subprotocols? public static HttpResponse upgrade(WebSocketSession session) { + if (provider == null) { + throw HttpResponses.notFound(); + } return (req, rsp, node) -> { try { - Object factory = ExtensionList.lookupSingleton(WebSockets.class).init(); - if (!((Boolean) webSocketServletFactoryClass.getMethod("isUpgradeRequest", HttpServletRequest.class, HttpServletResponse.class).invoke(factory, req, rsp))) { - throw HttpResponses.errorWithoutStack(HttpServletResponse.SC_BAD_REQUEST, "only WS connections accepted here"); - } - req.setAttribute(ATTR_SESSION, session); - if (!((Boolean) webSocketServletFactoryClass.getMethod("acceptWebSocket", HttpServletRequest.class, HttpServletResponse.class).invoke(factory, req, rsp))) { - throw HttpResponses.errorWithoutStack(HttpServletResponse.SC_BAD_REQUEST, "did not manage to upgrade"); - } - } catch (HttpResponses.HttpResponseException x) { - throw x; + session.handler = provider.handle(req, rsp, new Provider.Listener() { + @Override + public void onWebSocketConnect() { + session.startPings(); + session.opened(); + } + + @Override + public void onWebSocketClose(int statusCode, String reason) { + session.stopPings(); + session.closed(statusCode, reason); + } + + @Override + public void onWebSocketError(Throwable cause) { + if (cause instanceof ClosedChannelException) { + onWebSocketClose(0, cause.toString()); + } else { + session.error(cause); + } + } + + @Override + public void onWebSocketBinary(byte[] payload, int offset, int length) { + try { + session.binary(payload, offset, length); + } catch (IOException x) { + session.error(x); + } + } + + @Override + public void onWebSocketText(String message) { + try { + session.text(message); + } catch (IOException x) { + session.error(x); + } + } + }); } catch (Exception x) { LOGGER.log(Level.WARNING, null, x); throw HttpResponses.error(x); } - // OK! + // OK, unless handler is null in which case we expect an error was already sent. }; } - private static ClassLoader cl; - private static Class webSocketServletFactoryClass; - - private static synchronized void staticInit() throws Exception { - if (webSocketServletFactoryClass == null) { - cl = ServletContext.class.getClassLoader(); - webSocketServletFactoryClass = cl.loadClass("org.eclipse.jetty.websocket.servlet.WebSocketServletFactory"); - } - } - public static boolean isSupported() { - try { - staticInit(); - return true; - } catch (Exception x) { - LOGGER.log(Level.FINE, null, x); - return false; - } + return provider != null; } - private /*WebSocketServletFactory*/Object factory; - - private synchronized Object init() throws Exception { - if (factory == null) { - staticInit(); - Class webSocketPolicyClass = cl.loadClass("org.eclipse.jetty.websocket.api.WebSocketPolicy"); - factory = cl.loadClass("org.eclipse.jetty.websocket.servlet.WebSocketServletFactory$Loader") - .getMethod("load", ServletContext.class, webSocketPolicyClass) - .invoke( - null, - Stapler.getCurrent().getServletContext(), - webSocketPolicyClass.getMethod("newServerPolicy").invoke(null)); - webSocketServletFactoryClass.getMethod("start").invoke(factory); - Class webSocketCreatorClass = cl.loadClass("org.eclipse.jetty.websocket.servlet.WebSocketCreator"); - webSocketServletFactoryClass.getMethod("setCreator", webSocketCreatorClass).invoke(factory, Proxy.newProxyInstance(cl, new Class[] {webSocketCreatorClass}, this::createWebSocket)); - } - return factory; - } - - private Object createWebSocket(Object proxy, Method method, Object[] args) throws Exception { - Object servletUpgradeRequest = args[0]; - WebSocketSession session = (WebSocketSession) servletUpgradeRequest.getClass().getMethod("getServletAttribute", String.class).invoke(servletUpgradeRequest, ATTR_SESSION); - return Proxy.newProxyInstance(cl, new Class[] {cl.loadClass("org.eclipse.jetty.websocket.api.WebSocketListener")}, session::onWebSocketSomething); - } + private WebSockets() {} } 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.jelly b/core/src/main/resources/hudson/model/AbstractProject/configure-common.jelly index b013b1a672ca..096922c27966 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common.jelly +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common.jelly @@ -28,7 +28,6 @@ THE SOFTWARE. --> - 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.groovy b/core/src/main/resources/hudson/model/AllView/noJob.groovy index 91f80ffa499a..7cbb222eb700 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob.groovy +++ b/core/src/main/resources/hudson/model/AllView/noJob.groovy @@ -2,6 +2,7 @@ package hudson.model.AllView import hudson.model.Computer import hudson.model.Item +import hudson.model.Job import jenkins.model.Jenkins def l = namespace(lib.LayoutTagLib) @@ -11,7 +12,7 @@ def canSetUpDistributedBuilds = Jenkins.get().hasPermission(Computer.CREATE) && Jenkins.get().clouds.isEmpty() && Jenkins.get().getNodes().isEmpty(); def hasAdministerJenkinsPermission = Jenkins.get().hasPermission(Jenkins.ADMINISTER); -def hasItemCreatePermission = my.owner.hasPermission(Item.CREATE); +def hasItemCreatePermission = my.owner.itemGroup.hasPermission(Item.CREATE); div { 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.jelly b/core/src/main/resources/hudson/model/Job/configure.jelly index 36f509fc06ab..a44946413779 100644 --- a/core/src/main/resources/hudson/model/Job/configure.jelly +++ b/core/src/main/resources/hudson/model/Job/configure.jelly @@ -26,50 +26,66 @@ THE SOFTWARE. Config page. derived class specific entries should go to configure-entries.jsp --> - - - + + - - + +