diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..71b25de5fede2f693026268b69839c15b95465dd --- /dev/null +++ b/.gitattributes @@ -0,0 +1,39 @@ +# Handle line endings automatically for files detected as text +# and leave all files detected as binary untouched. +* text=auto + +# +# The above will handle all files NOT found below +# +# These files are text and should be normalized (Convert crlf => lf) +*.css text +*.groovy text +*.htm text +*.html text +*.java text +*.js text +*.json text +*.jelly text +*.jellytag text +*.less text +*.properties text +*.rb text +*.sh text +*.txt text +*.xml text + +# These files are binary and should be left untouched +# (binary is a macro for -text -diff) +*.class binary +*.gz binary +*.tgz binary +*.ear binary +*.gif binary +*.hpi binary +*.ico binary +*.jar binary +*.jpg binary +*.jpeg binary +*.png binary +*.war binary +*.zip binary diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000000000000000000000000000000000000..0e47cddae6542c7463aad91efb363a5402336b3d --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,35 @@ +See [JENKINS-XXXXX](https://issues.jenkins-ci.org/browse/JENKINS-XXXXX). + + + +### Proposed changelog entries + +* Entry 1: Issue, Human-readable Text +* ... + + + +### Submitter checklist + +- [ ] JIRA issue is well described +- [ ] Changelog entry appropriate for the audience affected by the change (users or developer, depending on the change). [Examples](https://github.com/jenkins-infra/jenkins.io/blob/master/content/_data/changelogs/weekly.yml) + * Use the `Internal: ` prefix if the change has no user-visible impact (API, test frameworks, etc.) +- [ ] Appropriate autotests or explanation to why this change has no tests +- [ ] For dependency updates: links to external changelogs and, if possible, full diffs + + + +### Desired reviewers + +@mention + + diff --git a/.mvn/jvm.config b/.mvn/jvm.config new file mode 100644 index 0000000000000000000000000000000000000000..e93a5b43ee1cd1968d2d971e1486071f4fa1fe0f --- /dev/null +++ b/.mvn/jvm.config @@ -0,0 +1 @@ +-Xmx800m diff --git a/BUILDING.TXT b/BUILDING.TXT index 09766de355e22b3f2469dc88cc0a1ba35d8aa19c..bde5cadf353210259628baa34b1813f0acddc5b1 100644 --- a/BUILDING.TXT +++ b/BUILDING.TXT @@ -4,7 +4,6 @@ execution), run: mvn clean install -pl war -am -DskipTests The WAR file will be in war/target/jenkins.war (you can play with it) -You can deactivate test-harness execution with -Dskip-test-harness For more information on building Jenkins, visit https://wiki.jenkins-ci.org/display/JENKINS/Building+Jenkins diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7bd3f7a8f7b30738a6187c17454f431a84f6e45f..f99fe77067ef6c25597bf54df9e0debdaff27fef 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,3 +1,3 @@ # Contributing to Jenkins -For information on contributing to Jenkins, check out the https://wiki.jenkins-ci.org/display/JENKINS/contributing and https://wiki.jenkins-ci.org/display/JENKINS/Extend+Jenkins wiki pages over at the official https://wiki.jenkins-ci.org . They will help you get started with contributing to Jenkins. +For information on contributing to Jenkins, check out https://jenkins.io/redirect/contribute/. That page will help you get started with contributing to Jenkins. diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000000000000000000000000000000000000..bcced2b016045b0c7be4012dc213c1ccbdc9d6da --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,106 @@ +#!/usr/bin/env groovy + +/* + * This Jenkinsfile is intended to run on https://ci.jenkins.io and may fail anywhere else. + * It makes assumptions about plugins being installed, labels mapping to nodes that can build what is needed, etc. + * + * The required labels are "java" and "docker" - "java" would be any node that can run Java builds. It doesn't need + * to have Java installed, but some setups may have nodes that shouldn't have heavier builds running on them, so we + * make this explicit. "docker" would be any node with docker installed. + */ + +// TEST FLAG - to make it easier to turn on/off unit tests for speeding up access to later stuff. +def runTests = true +def failFast = false + +properties([buildDiscarder(logRotator(numToKeepStr: '50', artifactNumToKeepStr: '20'))]) + +// see https://github.com/jenkins-infra/documentation/blob/master/ci.adoc for information on what node types are available +def buildTypes = ['Linux', 'Windows'] + +def builds = [:] +for(i = 0; i < buildTypes.size(); i++) { + def buildType = buildTypes[i] + builds[buildType] = { + node(buildType.toLowerCase()) { + timestamps { + // First stage is actually checking out the source. Since we're using Multibranch + // currently, we can use "checkout scm". + stage('Checkout') { + checkout scm + } + + // Now run the actual build. + stage("${buildType} Build / Test") { + timeout(time: 180, unit: 'MINUTES') { + // See below for what this method does - we're passing an arbitrary environment + // variable to it so that JAVA_OPTS and MAVEN_OPTS are set correctly. + withMavenEnv(["JAVA_OPTS=-Xmx1536m -Xms512m", + "MAVEN_OPTS=-Xmx1536m -Xms512m"]) { + // Actually run Maven! + // -Dmaven.repo.local=… tells Maven to create a subdir in the temporary directory for the local Maven repository + def mvnCmd = "mvn -Pdebug -U clean install javadoc:javadoc ${runTests ? '-Dmaven.test.failure.ignore' : '-DskipTests'} -V -B -Dmaven.repo.local=${pwd tmp: true}/m2repo -s settings-azure.xml -e" + if(isUnix()) { + sh mvnCmd + sh 'test `git status --short | tee /dev/stderr | wc --bytes` -eq 0' + } else { + bat mvnCmd + } + } + } + } + + // Once we've built, archive the artifacts and the test results. + stage("${buildType} Archive Artifacts / Test Results") { + def files = findFiles(glob: '**/target/*.jar, **/target/*.war, **/target/*.hpi') + renameFiles(files, buildType.toLowerCase()) + + archiveArtifacts artifacts: '**/target/*.jar, **/target/*.war, **/target/*.hpi', + fingerprint: true + if (runTests) { + junit healthScaleFactor: 20.0, testResults: '**/target/surefire-reports/*.xml' + } + } + } + } + } +} + +builds.failFast = failFast +parallel builds + +// This method sets up the Maven and JDK tools, puts them in the environment along +// with whatever other arbitrary environment variables we passed in, and runs the +// body we passed in within that environment. +void withMavenEnv(List envVars = [], def body) { + // The names here are currently hardcoded for my test environment. This needs + // to be made more flexible. + // Using the "tool" Workflow call automatically installs those tools on the + // node. + String mvntool = tool name: "mvn", type: 'hudson.tasks.Maven$MavenInstallation' + String jdktool = tool name: "jdk8", type: 'hudson.model.JDK' + + // Set JAVA_HOME, MAVEN_HOME and special PATH variables for the tools we're + // using. + List mvnEnv = ["PATH+MVN=${mvntool}/bin", "PATH+JDK=${jdktool}/bin", "JAVA_HOME=${jdktool}", "MAVEN_HOME=${mvntool}"] + + // Add any additional environment variables. + mvnEnv.addAll(envVars) + + // Invoke the body closure we're passed within the environment we've created. + withEnv(mvnEnv) { + body.call() + } +} + +void renameFiles(def files, String prefix) { + for(i = 0; i < files.length; i++) { + def newPath = files[i].path.replace(files[i].name, "${prefix}-${files[i].name}") + def rename = "${files[i].path} ${newPath}" + if(isUnix()) { + sh "mv ${rename}" + } else { + bat "move ${rename}" + } + } +} diff --git a/README.md b/README.md index 4ecfdb2c3738bd3ca3f83b442ecbb8b315e1e29c..6dc6c47ecef715c771fcfdeb9ccd83cc45cf4962 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,32 @@ [![][ButlerImage]][website] # About -In a nutshell, Jenkins CI is the leading open-source continuous integration server. Built with Java, it provides over 1000 plugins to support building and testing virtually any project. +In a nutshell, Jenkins is the leading open-source automation server. +Built with Java, it provides over 1000 plugins to support automating virtually anything, +so that humans can actually spend their time doing things machines cannot. + +# What to Use Jenkins for and When to Use It + +Use Jenkins to automate your development workflow so you can focus on work that matters most. Jenkins is commonly used for: + +- Building projects +- Running tests to detect bugs and other issues as soon as they are introduced +- Static code analysis +- Deployment + +Execute repetitive tasks, save time, and optimize your development process with Jenkins. # Downloads Non-source downloads such as WAR files and several Linux packages can be found on our [Mirrors]. # Source -Our latest and greatest source of Jenkins CI can be found on [GitHub]. Fork us! +Our latest and greatest source of Jenkins can be found on [GitHub]. Fork us! # Contributing to Jenkins Follow [contributing](CONTRIBUTING.md) file. # News and Website -All information about Jenkins CI can be found on our [website]. Follow us on Twitter [@jenkinsci]. +All information about Jenkins can be found on our [website]. Follow us on Twitter [@jenkinsci]. # License Jenkins is **licensed** under the **[MIT License]**. The terms of the license are as follows: @@ -40,12 +53,10 @@ Jenkins is **licensed** under the **[MIT License]**. The terms of the license ar OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -[ButlerImage]: http://jenkins-ci.org/sites/default/files/jenkins_logo.png +[ButlerImage]: https://jenkins.io/sites/default/files/jenkins_logo.png [MIT License]: https://github.com/jenkinsci/jenkins/raw/master/LICENSE.txt [Mirrors]: http://mirrors.jenkins-ci.org [GitHub]: https://github.com/jenkinsci/jenkins -[website]: http://jenkins-ci.org -[@jenkinsci]: http://twitter.com/jenkinsci -[Contributing]: https://wiki.jenkins-ci.org/display/JENKINS/contributing -[Extend Jenkins]: https://wiki.jenkins-ci.org/display/JENKINS/Extend+Jenkins +[website]: https://jenkins.io/ +[@jenkinsci]: https://twitter.com/jenkinsci [wiki]: https://wiki.jenkins-ci.org diff --git a/changelog.html b/changelog.html index c40bd5ef0aa3e210d8d6abbbb79f52cc155f795c..20a2db735b6fd3d3a0c137d1d5484d76c354f8d4 100644 --- a/changelog.html +++ b/changelog.html @@ -1,1920 +1,15 @@ - - - - - Changelog - - - - - -
Legend: - - major RFEmajor enhancement RFEenhancement - major bugmajor bug fix bugbug fix - xxxxx -
- - - - -Upcoming changes -Community ratings - - - -

What's new in 1.647 (2016/02/04)

- -

What's new in 1.646 (2016/01/25)

- -

What's new in 1.645 (2016/01/18)

- -

What's new in 1.644 (2016/01/10)

- -

What's new in 1.643 (2015/12/20)

- -

What's new in 1.642 (2015/12/13)

- -

What's new in 1.641 (2015/12/09)

- -

What's new in 1.640 (2015/12/07)

- -

What's new in 1.639 (2015/11/29)

- -

What's new in 1.638 (2015/11/11)

- -

What's new in 1.637 (2015/11/08)

- -

What's new in 1.636 (2015/11/01)

- -

What's new in 1.635 (2015/10/25)

- -

What's new in 1.634 (2015/10/18)

- -

What's new in 1.633 (2015/10/11)

- -

What's new in 1.632 (2015/10/05)

- -

What's new in 1.631 (2015/09/27)

- -

What's new in 1.630 (2015/09/20)

- -

What's new in 1.629 (2015/09/15)

- -

What's new in 1.628 (2015/09/06)

- -

What's new in 1.627 (2015/08/30)

- -

What's new in 1.626 (2015/08/23)

- -

What's new in 1.625 (2015/08/17)

- -

What's new in 1.624 (2015/08/09)

- -

What's new in 1.623 (2015/08/02)

-

No notable changes in this release.

-

What's new in 1.622 (2015/07/27)

- -

What's new in 1.621 (2015/07/19)

- -

What's new in 1.620 (2015/07/12)

- -

What's new in 1.619 (2015/07/05)

- -

What's new in 1.618 (2015/06/29)

- -

What's new in 1.617 (2015/06/07)

- -

What's new in 1.616 (2015/05/31)

- -

What's new in 1.615 (2015/05/25)

- -

What's new in 1.614 (2015/05/17)

- -

What's new in 1.613 (2015/05/10)

- -

What's new in 1.612 (2015/05/03)

- -

What's new in 1.611 (2015/04/26)

- -

What's new in 1.610 (2015/04/19)

- -

What's new in 1.609 (2015/04/12)

- -

What's new in 1.608 (2015/04/05)

- -

What's new in 1.607 (2015/03/30)

- -

What's new in 1.606 (2015/03/23)

- -

What's new in 1.605 (2015/03/16)

- -

What's new in 1.604 (2015/03/15)

- -

What's new in 1.602 (2015/03/08)

- -

What's new in 1.601 (2015/03/03)

- -

What's new in 1.600 (2015/02/28)

- -

What's new in 1.599 (2015/02/16)

- -

What's new in 1.598 (2015/01/25)

- -

What's new in 1.597 (2015/01/19)

- -

What's new in 1.596 (2015/01/04)

- -

What's new in 1.595 (2014/12/21)

- -

What's new in 1.594 (2014/12/14)

- -

What's new in 1.593 (2014/12/07)

- -

What's new in 1.592 (2014/11/30)

- -

What's new in 1.591 (2014/11/25)

- -

What's new in 1.590 (2014/11/16)

- -

What's new in 1.589 (2014/11/09)

- -

What's new in 1.588 (2014/11/02)

- -

What's new in 1.587 (2014/10/29)

- -

What's new in 1.586 (2014/10/26)

- -

What's new in 1.585 (2014/10/19)

- -

What's new in 1.584 (2014/10/12)

- -

What's new in 1.583 (2014/10/01)

- -

What's new in 1.582 (2014/09/28)

- -

What's new in 1.581 (2014/09/21)

- -

What's new in 1.580 (2014/09/14)

- -

What's new in 1.579 (2014/09/06)

- -

What's new in 1.578 (2014/08/31)

- -

What's new in 1.577 (2014/08/24)

- -

What's new in 1.576 (2014/08/18)

- -

What's new in 1.575 (2014/08/10)

- -

What's new in 1.574 (2014/07/27)

- -

What's new in 1.573 (2014/07/20)

- -

What's new in 1.572 (2014/07/13)

- -

What's new in 1.571 (2014/07/07)

- -

What's new in 1.570 (2014/06/29)

- -

What's new in 1.569 (2014/06/23)

- -

What's new in 1.568 (2014/06/15)

- -

What's new in 1.567 (2014/06/09)

- -

What's new in 1.566 (2014/06/01)

- -

What's new in 1.565 (2014/05/26)

- -

What's new in 1.564 (2014/05/19)

- -

What's new in 1.563 (2014/05/11)

- -

What's new in 1.562 (2014/05/03)

- -

What's new in 1.561 (2014/04/27)

- -

What's new in 1.560 (2014/04/20)

- -

What's new in 1.559 (2014/04/13)

- -

What's new in 1.558 (2014/04/06)

- -

What's new in 1.557 (2014/03/31)

- -

What's new in 1.556 (2014/03/23)

- -

What's new in 1.555 (2014/03/16)

- -

What's new in 1.554 (2014/03/09)

- -

What's new in 1.553 (2014/03/02)

- -

What's new in 1.552 (2014/02/24)

- -

What's new in 1.551 (2014/02/14)

- -

What's new in 1.550 (2014/02/09)

- -

What's new in 1.549 (2014/01/25)

- -

What's new in 1.548 (2014/01/20)

- -

What's new in 1.547 (2014/01/12)

- -

What's new in 1.546 (2014/01/06)

- - -

-Older changelogs can be found in a separate file - - - +--> \ No newline at end of file diff --git a/cli/pom.xml b/cli/pom.xml index bdc0fa749c34544e07a6068910088d0346028da3..36dfadd08c0cfb49acd3b3ec6609275aaa9ed087 100644 --- a/cli/pom.xml +++ b/cli/pom.xml @@ -5,7 +5,7 @@ org.jenkins-ci.main pom - 1.648-SNAPSHOT + 2.74-SNAPSHOT cli @@ -24,11 +24,19 @@ powermock-api-mockito test + + org.kohsuke + access-modifier-annotation + commons-codec commons-codec 1.4 + + commons-io + commons-io + ${project.groupId} remoting @@ -42,9 +50,20 @@ org.jvnet.localizer localizer - 1.23 + 1.24 + org.apache.sshd + sshd-core + 1.6.0 + true + + + org.slf4j + slf4j-jdk14 + true + + org.jenkins-ci trilead-ssh2 build214-jenkins-1 @@ -88,10 +107,15 @@ Messages.properties target/generated-sources/localizer + true + + org.codehaus.mojo + findbugs-maven-plugin + diff --git a/cli/src/main/java/hudson/cli/CLI.java b/cli/src/main/java/hudson/cli/CLI.java index de2d2bd7950a3a7a73993dc6581213a3f4ca01ca..3b8c73e473b97d8ae9cc3a0c1080cb632d816634 100644 --- a/cli/src/main/java/hudson/cli/CLI.java +++ b/cli/src/main/java/hudson/cli/CLI.java @@ -25,13 +25,13 @@ package hudson.cli; import hudson.cli.client.Messages; import hudson.remoting.Channel; +import hudson.remoting.NamingThreadFactory; import hudson.remoting.PingThread; import hudson.remoting.Pipe; import hudson.remoting.RemoteInputStream; import hudson.remoting.RemoteOutputStream; import hudson.remoting.SocketChannelStream; import hudson.remoting.SocketOutputStream; - import javax.crypto.SecretKey; import javax.crypto.spec.SecretKeySpec; import javax.net.ssl.HostnameVerifier; @@ -58,6 +58,7 @@ import java.net.InetSocketAddress; import java.net.Socket; import java.net.URL; import java.net.URLConnection; +import java.nio.charset.Charset; import java.security.GeneralSecurityException; import java.security.KeyPair; import java.security.PublicKey; @@ -71,16 +72,18 @@ import java.util.Locale; import java.util.Properties; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; +import java.util.logging.Handler; import java.util.logging.Level; import java.util.logging.Logger; import static java.util.logging.Level.*; +import org.apache.commons.io.FileUtils; /** * CLI entry point to Jenkins. * * @author Kohsuke Kawaguchi */ -public class CLI { +public class CLI implements AutoCloseable { private final ExecutorService pool; private final Channel channel; private final CliEntryPoint entryPoint; @@ -89,6 +92,11 @@ public class CLI { private final String httpsProxyTunnel; private final String authorization; + /** + * For tests only. + * @deprecated Specific to {@link Mode#REMOTING}. + */ + @Deprecated public CLI(URL jenkins) throws IOException, InterruptedException { this(jenkins,null); } @@ -110,34 +118,29 @@ public class CLI { public CLI(URL jenkins, ExecutorService exec, String httpsProxyTunnel) throws IOException, InterruptedException { this(new CLIConnectionFactory().url(jenkins).executorService(exec).httpsProxyTunnel(httpsProxyTunnel)); } - + + /** + * @deprecated Specific to {@link Mode#REMOTING}. + */ + @Deprecated /*package*/ CLI(CLIConnectionFactory factory) throws IOException, InterruptedException { URL jenkins = factory.jenkins; this.httpsProxyTunnel = factory.httpsProxyTunnel; this.authorization = factory.authorization; ExecutorService exec = factory.exec; - String url = jenkins.toExternalForm(); - if(!url.endsWith("/")) url+='/'; - ownsPool = exec==null; - pool = exec!=null ? exec : Executors.newCachedThreadPool(); + pool = exec!=null ? exec : Executors.newCachedThreadPool(new NamingThreadFactory(Executors.defaultThreadFactory(), "CLI.pool")); Channel _channel; try { - _channel = connectViaCliPort(jenkins, getCliTcpPort(url)); + _channel = connectViaCliPort(jenkins, getCliTcpPort(jenkins)); } catch (IOException e) { - LOGGER.log(Level.FINE,"Failed to connect via CLI port. Falling back to HTTP",e); + LOGGER.log(Level.FINE, "Failed to connect via CLI port. Falling back to HTTP", e); try { - _channel = connectViaHttp(url); + _channel = connectViaHttp(jenkins); } catch (IOException e2) { - try { // Java 7: e.addSuppressed(e2); - Throwable.class.getMethod("addSuppressed", Throwable.class).invoke(e, e2); - } catch (NoSuchMethodException _ignore) { - // Java 6 - } catch (Exception _huh) { - LOGGER.log(Level.SEVERE, null, _huh); - } + e.addSuppressed(e2); throw e; } } @@ -150,13 +153,15 @@ public class CLI { throw new IOException(Messages.CLI_VersionMismatch()); } - private Channel connectViaHttp(String url) throws IOException { - LOGGER.log(FINE, "Trying to connect to {0} via HTTP", url); - url+="cli"; - URL jenkins = new URL(url); + /** + * @deprecated Specific to {@link Mode#REMOTING}. + */ + @Deprecated + private Channel connectViaHttp(URL url) throws IOException { + LOGGER.log(FINE, "Trying to connect to {0} via Remoting over HTTP", url); - FullDuplexHttpStream con = new FullDuplexHttpStream(jenkins,authorization); - Channel ch = new Channel("Chunked connection to "+jenkins, + FullDuplexHttpStream con = new FullDuplexHttpStream(url, "cli?remoting=true", authorization); + Channel ch = new Channel("Chunked connection to " + url, pool,con.getInputStream(),con.getOutputStream()); final long interval = 15*1000; final long timeout = (interval * 3) / 4; @@ -169,8 +174,17 @@ public class CLI { return ch; } + /** + * @deprecated Specific to {@link Mode#REMOTING}. + */ + @Deprecated private Channel connectViaCliPort(URL jenkins, CliPort clip) throws IOException { - LOGGER.log(FINE, "Trying to connect directly via TCP/IP to {0}", clip.endpoint); + LOGGER.log(FINE, "Trying to connect directly via Remoting over TCP/IP to {0}", clip.endpoint); + + if (authorization != null) { + LOGGER.warning("-auth ignored when using JNLP agent port"); + } + final Socket s = new Socket(); // this prevents a connection from silently terminated by the router in between or the other peer // and that goes without unnoticed. However, the time out is often very long (for example 2 hours @@ -182,9 +196,10 @@ public class CLI { if (httpsProxyTunnel!=null) { String[] tokens = httpsProxyTunnel.split(":"); + LOGGER.log(Level.FINE, "Using HTTP proxy {0}:{1} to connect to CLI port", new Object[]{tokens[0], tokens[1]}); s.connect(new InetSocketAddress(tokens[0], Integer.parseInt(tokens[1]))); PrintStream o = new PrintStream(s.getOutputStream()); - o.print("CONNECT " + clip.endpoint.getHostName() + ":" + clip.endpoint.getPort() + " HTTP/1.0\r\n\r\n"); + o.print("CONNECT " + clip.endpoint.getHostString() + ":" + clip.endpoint.getPort() + " HTTP/1.0\r\n\r\n"); // read the response from the proxy ByteArrayOutputStream rsp = new ByteArrayOutputStream(); @@ -194,8 +209,15 @@ public class CLI { rsp.write(ch); } String head = new BufferedReader(new StringReader(rsp.toString("ISO-8859-1"))).readLine(); - if (!head.startsWith("HTTP/1.0 200 ")) - throw new IOException("Failed to establish a connection through HTTP proxy: "+rsp); + + if (head == null) { + throw new IOException("Unexpected empty response"); + } + if (!(head.startsWith("HTTP/1.0 200 ") || head.startsWith("HTTP/1.1 200 "))) { + s.close(); + LOGGER.log(Level.SEVERE, "Failed to tunnel the CLI port through the HTTP proxy. Falling back to HTTP."); + throw new IOException("Failed to establish a connection through HTTP proxy: " + rsp); + } // HTTP proxies (at least the one I tried --- squid) doesn't seem to do half-close very well. // So instead of relying on it, we'll just send the close command and then let the server @@ -260,13 +282,14 @@ public class CLI { /** * If the server advertises CLI endpoint, returns its location. + * @deprecated Specific to {@link Mode#REMOTING}. */ - protected CliPort getCliTcpPort(String url) throws IOException { - URL _url = new URL(url); - if (_url.getHost()==null || _url.getHost().length()==0) { + @Deprecated + protected CliPort getCliTcpPort(URL url) throws IOException { + if (url.getHost()==null || url.getHost().length()==0) { throw new IOException("Invalid URL: "+url); } - URLConnection head = _url.openConnection(); + URLConnection head = url.openConnection(); try { head.connect(); } catch (IOException e) { @@ -283,9 +306,7 @@ public class CLI { flushURLConnection(head); if (p1==null && p2==null) { - // we aren't finding headers we are expecting. Is this even running Jenkins? - if (head.getHeaderField("X-Hudson")==null && head.getHeaderField("X-Jenkins")==null) - throw new IOException("There's no Jenkins running at "+url); + verifyJenkinsConnection(head); throw new IOException("No X-Jenkins-CLI2-Port among " + head.getHeaderFields().keySet()); } @@ -294,6 +315,27 @@ public class CLI { else return new CliPort(new InetSocketAddress(h,Integer.parseInt(p1)),identity,1); } + /** + * Make sure the connection is open against Jenkins server. + * + * @param c The open connection. + * @throws IOException in case of communication problem. + * @throws NotTalkingToJenkinsException when connection is not made to Jenkins service. + */ + /*package*/ static void verifyJenkinsConnection(URLConnection c) throws IOException { + if (c.getHeaderField("X-Hudson")==null && c.getHeaderField("X-Jenkins")==null) + throw new NotTalkingToJenkinsException(c); + } + /*package*/ static final class NotTalkingToJenkinsException extends IOException { + public NotTalkingToJenkinsException(String s) { + super(s); + } + + public NotTalkingToJenkinsException(URLConnection c) { + super("There's no Jenkins running at " + c.getURL().toString()); + } + } + /** * Flush the supplied {@link URLConnection} input and close the * connection nicely. @@ -380,14 +422,11 @@ public class CLI { } public static void main(final String[] _args) throws Exception { -// Logger l = Logger.getLogger(Channel.class.getName()); -// l.setLevel(ALL); -// ConsoleHandler h = new ConsoleHandler(); -// h.setLevel(ALL); -// l.addHandler(h); -// try { System.exit(_main(_args)); + } catch (NotTalkingToJenkinsException ex) { + System.err.println(ex.getMessage()); + System.exit(3); } catch (Throwable t) { // if the CLI main thread die, make sure to kill the JVM. t.printStackTrace(); @@ -395,6 +434,7 @@ public class CLI { } } + private enum Mode {HTTP, SSH, REMOTING} public static int _main(String[] _args) throws Exception { List args = Arrays.asList(_args); PrivateKeyProvider provider = new PrivateKeyProvider(); @@ -408,19 +448,52 @@ public class CLI { boolean tryLoadPKey = true; + Mode mode = null; + + String user = null; + String auth = null; + boolean strictHostKey = false; + while(!args.isEmpty()) { String head = args.get(0); if (head.equals("-version")) { System.out.println("Version: "+computeVersion()); return 0; } + if (head.equals("-http")) { + if (mode != null) { + printUsage("-http clashes with previously defined mode " + mode); + return -1; + } + mode = Mode.HTTP; + args = args.subList(1, args.size()); + continue; + } + if (head.equals("-ssh")) { + if (mode != null) { + printUsage("-ssh clashes with previously defined mode " + mode); + return -1; + } + mode = Mode.SSH; + args = args.subList(1, args.size()); + continue; + } + if (head.equals("-remoting")) { + if (mode != null) { + printUsage("-remoting clashes with previously defined mode " + mode); + return -1; + } + mode = Mode.REMOTING; + args = args.subList(1, args.size()); + continue; + } if(head.equals("-s") && args.size()>=2) { url = args.get(1); args = args.subList(2,args.size()); continue; } if (head.equals("-noCertificateCheck")) { - System.out.println("Skipping HTTPS certificate checks altogether. Note that this is not secure at all."); + LOGGER.info("Skipping HTTPS certificate checks altogether. Note that this is not secure at all."); SSLContext context = SSLContext.getInstance("TLS"); context.init(null, new TrustManager[]{new NoCheckTrustManager()}, new SecureRandom()); HttpsURLConnection.setDefaultSSLSocketFactory(context.getSocketFactory()); @@ -451,11 +524,37 @@ public class CLI { sshAuthRequestedExplicitly = true; continue; } + if (head.equals("-strictHostKey")) { + strictHostKey = true; + args = args.subList(1, args.size()); + continue; + } + if (head.equals("-user") && args.size() >= 2) { + user = args.get(1); + args = args.subList(2, args.size()); + continue; + } + if (head.equals("-auth") && args.size() >= 2) { + auth = args.get(1); + args = args.subList(2, args.size()); + continue; + } if(head.equals("-p") && args.size()>=2) { httpProxy = args.get(1); args = args.subList(2,args.size()); continue; } + if (head.equals("-logger") && args.size() >= 2) { + Level level = parse(args.get(1)); + for (Handler h : Logger.getLogger("").getHandlers()) { + h.setLevel(level); + } + for (Logger logger : new Logger[] {LOGGER, PlainCLIProtocol.LOGGER, Logger.getLogger("org.apache.sshd")}) { // perhaps also Channel + logger.setLevel(level); + } + args = args.subList(2, args.size()); + continue; + } break; } @@ -464,16 +563,53 @@ public class CLI { return -1; } + if (!url.endsWith("/")) { + url += '/'; + } + if(args.isEmpty()) args = Arrays.asList("help"); // default to help if (tryLoadPKey && !provider.hasKeys()) provider.readFromDefaultLocations(); + if (mode == null) { + mode = Mode.HTTP; + } + + LOGGER.log(FINE, "using connection mode {0}", mode); + + if (user != null && auth != null) { + LOGGER.warning("-user and -auth are mutually exclusive"); + } + + if (mode == Mode.SSH) { + if (user == null) { + // TODO SshCliAuthenticator already autodetects the user based on public key; why cannot AsynchronousCommand.getCurrentUser do the same? + LOGGER.warning("-user required when using -ssh"); + return -1; + } + return SSHCLI.sshConnection(url, user, args, provider, strictHostKey); + } + + if (strictHostKey) { + LOGGER.warning("-strictHostKey meaningful only with -ssh"); + } + + if (user != null) { + LOGGER.warning("Warning: -user ignored unless using -ssh"); + } + CLIConnectionFactory factory = new CLIConnectionFactory().url(url).httpsProxyTunnel(httpProxy); String userInfo = new URL(url).getUserInfo(); if (userInfo != null) { factory = factory.basicAuth(userInfo); + } else if (auth != null) { + factory = factory.basicAuth(auth.startsWith("@") ? FileUtils.readFileToString(new File(auth.substring(1))).trim() : auth); + } + + if (mode == Mode.HTTP) { + return plainHttpConnection(url, args, factory); } CLI cli = factory.connect(); @@ -484,22 +620,21 @@ public class CLI { cli.authenticate(provider.getKeys()); } catch (IllegalStateException e) { if (sshAuthRequestedExplicitly) { - System.err.println("The server doesn't support public key authentication"); + LOGGER.warning("The server doesn't support public key authentication"); return -1; } } catch (UnsupportedOperationException e) { if (sshAuthRequestedExplicitly) { - System.err.println("The server doesn't support public key authentication"); + LOGGER.warning("The server doesn't support public key authentication"); return -1; } } catch (GeneralSecurityException e) { if (sshAuthRequestedExplicitly) { - System.err.println(e.getMessage()); - LOGGER.log(FINE,e.getMessage(),e); + LOGGER.log(WARNING, null, e); return -1; } - System.err.println("[WARN] Failed to authenticate with your SSH keys. Proceeding as anonymous"); - LOGGER.log(FINE,"Failed to authenticate with your SSH keys.",e); + LOGGER.warning("Failed to authenticate with your SSH keys. Proceeding as anonymous"); + LOGGER.log(FINE, null, e); } } @@ -512,6 +647,72 @@ public class CLI { } } + private static int plainHttpConnection(String url, List args, CLIConnectionFactory factory) throws IOException, InterruptedException { + LOGGER.log(FINE, "Trying to connect to {0} via plain protocol over HTTP", url); + FullDuplexHttpStream streams = new FullDuplexHttpStream(new URL(url), "cli?remoting=false", factory.authorization); + class ClientSideImpl extends PlainCLIProtocol.ClientSide { + boolean complete; + int exit = -1; + ClientSideImpl(InputStream is, OutputStream os) throws IOException { + super(is, os); + if (is.read() != 0) { // cf. FullDuplexHttpService + throw new IOException("expected to see initial zero byte; perhaps you are connecting to an old server which does not support -http?"); + } + } + @Override + protected void onExit(int code) { + this.exit = code; + finished(); + } + @Override + protected void onStdout(byte[] chunk) throws IOException { + System.out.write(chunk); + } + @Override + protected void onStderr(byte[] chunk) throws IOException { + System.err.write(chunk); + } + @Override + protected void handleClose() { + finished(); + } + private synchronized void finished() { + complete = true; + notifyAll(); + } + } + try (final ClientSideImpl connection = new ClientSideImpl(streams.getInputStream(), streams.getOutputStream())) { + for (String arg : args) { + connection.sendArg(arg); + } + connection.sendEncoding(Charset.defaultCharset().name()); + connection.sendLocale(Locale.getDefault().toString()); + connection.sendStart(); + connection.begin(); + final OutputStream stdin = connection.streamStdin(); + new Thread("input reader") { + @Override + public void run() { + try { + int c; + while ((c = System.in.read()) != -1) { // TODO use InputStream.available + stdin.write(c); + } + connection.sendEndStdin(); + } catch (IOException x) { + LOGGER.log(Level.WARNING, null, x); + } + } + }.start(); + synchronized (connection) { + while (!connection.complete) { + connection.wait(); + } + } + return connection.exit; + } + } + private static String computeVersion() { Properties props = new Properties(); try { @@ -556,7 +757,9 @@ public class CLI { * * @return * identity of the server represented as a public key. + * @deprecated Specific to {@link Mode#REMOTING}. */ + @Deprecated public PublicKey authenticate(Iterable privateKeys) throws IOException, GeneralSecurityException { Pipe c2s = Pipe.createLocalToRemote(); Pipe s2c = Pipe.createRemoteToLocal(); @@ -582,6 +785,10 @@ public class CLI { } } + /** + * @deprecated Specific to {@link Mode#REMOTING}. + */ + @Deprecated public PublicKey authenticate(KeyPair key) throws IOException, GeneralSecurityException { return authenticate(Collections.singleton(key)); } @@ -591,5 +798,5 @@ public class CLI { System.err.println(Messages.CLI_Usage()); } - private static final Logger LOGGER = Logger.getLogger(CLI.class.getName()); + static final Logger LOGGER = Logger.getLogger(CLI.class.getName()); } diff --git a/cli/src/main/java/hudson/cli/CLIConnectionFactory.java b/cli/src/main/java/hudson/cli/CLIConnectionFactory.java index a2e5681039effafbb22765a249a508fe8fdb22b2..894e4c0fdac60ff446e3a67ecf68e44192d93f97 100644 --- a/cli/src/main/java/hudson/cli/CLIConnectionFactory.java +++ b/cli/src/main/java/hudson/cli/CLIConnectionFactory.java @@ -32,6 +32,7 @@ public class CLIConnectionFactory { /** * This {@link ExecutorService} is used to execute closures received from the server. + * Used only in Remoting mode. */ public CLIConnectionFactory executorService(ExecutorService es) { this.exec = es; @@ -59,15 +60,24 @@ public class CLIConnectionFactory { /** * Convenience method to call {@link #authorization} with the HTTP basic authentication. + * Currently unused. */ public CLIConnectionFactory basicAuth(String username, String password) { return basicAuth(username+':'+password); } + /** + * Convenience method to call {@link #authorization} with the HTTP basic authentication. + * Cf. {@code BasicHeaderApiTokenAuthenticator}. + */ public CLIConnectionFactory basicAuth(String userInfo) { return authorization("Basic " + new String(Base64.encodeBase64((userInfo).getBytes()))); } - + + /** + * @deprecated Specific to Remoting-based protocol. + */ + @Deprecated public CLI connect() throws IOException, InterruptedException { return new CLI(this); } diff --git a/cli/src/main/java/hudson/cli/CliEntryPoint.java b/cli/src/main/java/hudson/cli/CliEntryPoint.java index 57bd42e553b77336c2a0db0085ae4ce0474c76b2..fe1f6c835097888be71632babbe31f1b6530fab5 100644 --- a/cli/src/main/java/hudson/cli/CliEntryPoint.java +++ b/cli/src/main/java/hudson/cli/CliEntryPoint.java @@ -34,7 +34,9 @@ import java.util.Locale; * Remotable interface for CLI entry point on the server side. * * @author Kohsuke Kawaguchi + * @deprecated Specific to Remoting-based protocol. */ +@Deprecated public interface CliEntryPoint { /** * Just like the static main method. diff --git a/cli/src/main/java/hudson/cli/CliPort.java b/cli/src/main/java/hudson/cli/CliPort.java index 8faab7de41bee0c88fa90cdaa0cbb8c9599f6a97..56165e766ba6186489d4e3017b0a7a35510358ab 100644 --- a/cli/src/main/java/hudson/cli/CliPort.java +++ b/cli/src/main/java/hudson/cli/CliPort.java @@ -8,9 +8,9 @@ import java.security.KeyFactory; import java.security.PublicKey; import java.security.spec.X509EncodedKeySpec; -/** - * @author Kohsuke Kawaguchi - */ + /** + * @deprecated Specific to Remoting mode. + */ public final class CliPort { /** * The TCP endpoint to talk to. diff --git a/cli/src/main/java/hudson/cli/Connection.java b/cli/src/main/java/hudson/cli/Connection.java index 1c1ada471fdbaaded6f2203ec130a7e69a671a6f..017051a64a646a76b4ecfe81966381e3874adbca 100644 --- a/cli/src/main/java/hudson/cli/Connection.java +++ b/cli/src/main/java/hudson/cli/Connection.java @@ -56,6 +56,9 @@ import java.security.interfaces.DSAPublicKey; import java.security.interfaces.RSAPublicKey; import java.security.spec.X509EncodedKeySpec; +/** + * Used by Jenkins core only in deprecated Remoting-based CLI. + */ public class Connection { public final InputStream in; public final OutputStream out; diff --git a/cli/src/main/java/hudson/cli/DiagnosedStreamCorruptionException.java b/cli/src/main/java/hudson/cli/DiagnosedStreamCorruptionException.java new file mode 100644 index 0000000000000000000000000000000000000000..4708b425dbb77a715910ac28c67ec84aca79db0f --- /dev/null +++ b/cli/src/main/java/hudson/cli/DiagnosedStreamCorruptionException.java @@ -0,0 +1,55 @@ +package hudson.cli; + +import java.io.PrintWriter; +import java.io.StreamCorruptedException; +import java.io.StringWriter; + +// TODO COPIED FROM hudson.remoting + +/** + * Signals a {@link StreamCorruptedException} with some additional diagnostic information. + * + * @author Kohsuke Kawaguchi + */ +class DiagnosedStreamCorruptionException extends StreamCorruptedException { + private final Exception diagnoseFailure; + private final byte[] readBack; + private final byte[] readAhead; + + DiagnosedStreamCorruptionException(Exception cause, Exception diagnoseFailure, byte[] readBack, byte[] readAhead) { + initCause(cause); + this.diagnoseFailure = diagnoseFailure; + this.readBack = readBack; + this.readAhead = readAhead; + } + + public Exception getDiagnoseFailure() { + return diagnoseFailure; + } + + public byte[] getReadBack() { + return readBack; + } + + public byte[] getReadAhead() { + return readAhead; + } + + @Override + public String toString() { + StringBuilder buf = new StringBuilder(); + buf.append(super.toString()).append("\n"); + buf.append("Read back: ").append(HexDump.toHex(readBack)).append('\n'); + buf.append("Read ahead: ").append(HexDump.toHex(readAhead)); + if (diagnoseFailure!=null) { + StringWriter w = new StringWriter(); + PrintWriter p = new PrintWriter(w); + diagnoseFailure.printStackTrace(p); + p.flush(); + + buf.append("\nDiagnosis problem:\n "); + buf.append(w.toString().trim().replace("\n","\n ")); + } + return buf.toString(); + } +} diff --git a/cli/src/main/java/hudson/cli/FlightRecorderInputStream.java b/cli/src/main/java/hudson/cli/FlightRecorderInputStream.java new file mode 100644 index 0000000000000000000000000000000000000000..ebdd18a192fec4d2e29e25c85dbeb0c2679e40d6 --- /dev/null +++ b/cli/src/main/java/hudson/cli/FlightRecorderInputStream.java @@ -0,0 +1,191 @@ +package hudson.cli; + +import java.io.ByteArrayOutputStream; +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.util.Arrays; + +// TODO COPIED FROM hudson.remoting + +/** + * Filter input stream that records the content as it's read, so that it can be reported + * in case of a catastrophic stream corruption problem. + * + * @author Kohsuke Kawaguchi + */ +class FlightRecorderInputStream extends InputStream { + + /** + * Size (in bytes) of the flight recorder ring buffer used for debugging remoting issues. + * @since 2.41 + */ + static final int BUFFER_SIZE = Integer.getInteger("hudson.remoting.FlightRecorderInputStream.BUFFER_SIZE", 1024 * 1024); + + private final InputStream source; + private ByteArrayRingBuffer recorder = new ByteArrayRingBuffer(BUFFER_SIZE); + + FlightRecorderInputStream(InputStream source) { + this.source = source; + } + + /** + * Rewinds the record buffer and forget everything that was recorded. + */ + public void clear() { + recorder = new ByteArrayRingBuffer(BUFFER_SIZE); + } + + /** + * Gets the recorded content. + */ + public byte[] getRecord() { + return recorder.toByteArray(); + } + + /** + * Creates a {@link DiagnosedStreamCorruptionException} based on the recorded content plus read ahead. + * The caller is responsible for throwing the exception. + */ + public DiagnosedStreamCorruptionException analyzeCrash(Exception problem, String diagnosisName) { + final ByteArrayOutputStream readAhead = new ByteArrayOutputStream(); + final IOException[] error = new IOException[1]; + + Thread diagnosisThread = new Thread(diagnosisName+" stream corruption diagnosis thread") { + public void run() { + int b; + try { + // not all InputStream will look for the thread interrupt flag, so check that explicitly to be defensive + while (!Thread.interrupted() && (b=source.read())!=-1) { + readAhead.write(b); + } + } catch (IOException e) { + error[0] = e; + } + } + }; + + // wait up to 1 sec to grab as much data as possible + diagnosisThread.start(); + try { + diagnosisThread.join(1000); + } catch (InterruptedException ignored) { + // we are only waiting for a fixed amount of time, so we'll pretend like we were in a busy loop + Thread.currentThread().interrupt(); + // fall through + } + + IOException diagnosisProblem = error[0]; // capture the error, if any, before we kill the thread + if (diagnosisThread.isAlive()) + diagnosisThread.interrupt(); // if it's not dead, kill + + return new DiagnosedStreamCorruptionException(problem,diagnosisProblem,getRecord(),readAhead.toByteArray()); + + } + + @Override + public int read() throws IOException { + int i = source.read(); + if (i>=0) + recorder.write(i); + return i; + } + + @Override + public int read(byte[] b, int off, int len) throws IOException { + len = source.read(b, off, len); + if (len>0) + recorder.write(b,off,len); + return len; + } + + /** + * To record the bytes we've skipped, convert the call to read. + */ + @Override + public long skip(long n) throws IOException { + byte[] buf = new byte[(int)Math.min(n,64*1024)]; + return read(buf,0,buf.length); + } + + @Override + public int available() throws IOException { + return source.available(); + } + + @Override + public void close() throws IOException { + source.close(); + } + + @Override + public boolean markSupported() { + return false; + } + + // http://stackoverflow.com/a/3651696/12916 + private static class ByteArrayRingBuffer extends OutputStream { + + byte[] data; + + int capacity, pos = 0; + + boolean filled = false; + + public ByteArrayRingBuffer(int capacity) { + data = new byte[capacity]; + this.capacity = capacity; + } + + @Override + public synchronized void write(int b) { + if (pos == capacity) { + filled = true; + pos = 0; + } + data[pos++] = (byte) b; + } + + public synchronized byte[] toByteArray() { + if (!filled) { + return Arrays.copyOf(data, pos); + } + byte[] ret = new byte[capacity]; + System.arraycopy(data, pos, ret, 0, capacity - pos); + System.arraycopy(data, 0, ret, capacity - pos, pos); + return ret; + } + + /** @author @roadrunner2 */ + @Override public synchronized void write(byte[] buf, int off, int len) { + // no point in trying to copy more than capacity; this also simplifies logic below + if (len > capacity) { + off += (len - capacity); + len = capacity; + } + + // copy to buffer, but no farther than the end + int num = Math.min(len, capacity - pos); + if (num > 0) { + System.arraycopy(buf, off, data, pos, num); + off += num; + len -= num; + pos += num; + } + + // wrap around if necessary + if (pos == capacity) { + filled = true; + pos = 0; + } + + // copy anything still left + if (len > 0) { + System.arraycopy(buf, off, data, pos, len); + pos += len; + } + } + + } + +} diff --git a/cli/src/main/java/hudson/cli/FullDuplexHttpStream.java b/cli/src/main/java/hudson/cli/FullDuplexHttpStream.java index abde9bb2022664eda42f5b28d91e9d58fbcfe04f..ef8bd5ff12cea23a0906ce9e07a6fa7843973d70 100644 --- a/cli/src/main/java/hudson/cli/FullDuplexHttpStream.java +++ b/cli/src/main/java/hudson/cli/FullDuplexHttpStream.java @@ -20,7 +20,7 @@ import org.apache.commons.codec.binary.Base64; * @author Kohsuke Kawaguchi */ public class FullDuplexHttpStream { - private final URL target; + private final URL base; /** * Authorization header value needed to get through the HTTP layer. */ @@ -49,15 +49,36 @@ public class FullDuplexHttpStream { } /** - * @param target + * @param target something like {@code http://jenkins/cli?remoting=true} + * which we then need to split into {@code http://jenkins/} + {@code cli?remoting=true} + * in order to construct a crumb issuer request + * @deprecated use {@link #FullDuplexHttpStream(URL, String, String)} instead + */ + @Deprecated + public FullDuplexHttpStream(URL target, String authorization) throws IOException { + this(new URL(target.toString().replaceFirst("/cli.*$", "/")), target.toString().replaceFirst("^.+/(cli.*)$", "$1"), authorization); + } + + /** + * @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. */ - public FullDuplexHttpStream(URL target, String authorization) throws IOException { - this.target = target; + public FullDuplexHttpStream(URL base, String relativeTarget, String authorization) throws IOException { + if (!base.toString().endsWith("/")) { + throw new IllegalArgumentException(base.toString()); + } + if (relativeTarget.startsWith("/")) { + throw new IllegalArgumentException(relativeTarget); + } + + this.base = tryToResolveRedirects(base, authorization); this.authorization = authorization; + URL target = new URL(this.base, relativeTarget); + CrumbData crumbData = new CrumbData(); UUID uuid = UUID.randomUUID(); // so that the server can correlate those two connections @@ -77,8 +98,9 @@ public class FullDuplexHttpStream { con.getOutputStream().close(); input = con.getInputStream(); // make sure we hit the right URL - if(con.getHeaderField("Hudson-Duplex")==null) - throw new IOException(target+" doesn't look like Jenkins"); + 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"); + } // client->server uses chunked encoded POST for unlimited capacity. con = (HttpURLConnection) target.openConnection(); @@ -98,6 +120,24 @@ public class FullDuplexHttpStream { output = con.getOutputStream(); } + // 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 = (HttpURLConnection) base.openConnection(); + if (authorization != null) { + con.addRequestProperty("Authorization", 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. + LOGGER.log(Level.FINE, "Failed to resolve potential redirects", ex); + } + return base; + } + static final int BLOCK_SIZE = 1024; static final Logger LOGGER = Logger.getLogger(FullDuplexHttpStream.class.getName()); @@ -128,8 +168,7 @@ public class FullDuplexHttpStream { } private String createCrumbUrlBase() { - String url = target.toExternalForm(); - return new StringBuilder(url.substring(0, url.lastIndexOf("/cli"))).append("/crumbIssuer/api/xml/").toString(); + return base + "crumbIssuer/api/xml/"; } private String readData(String dest) throws IOException { @@ -137,8 +176,9 @@ public class FullDuplexHttpStream { if (authorization != null) { con.addRequestProperty("Authorization", authorization); } - try { - BufferedReader reader = new BufferedReader(new InputStreamReader(con.getInputStream())); + CLI.verifyJenkinsConnection(con); + + try (BufferedReader reader = new BufferedReader(new InputStreamReader(con.getInputStream()))) { String line = reader.readLine(); String nextLine = reader.readLine(); if (nextLine != null) { diff --git a/cli/src/main/java/hudson/cli/HexDump.java b/cli/src/main/java/hudson/cli/HexDump.java new file mode 100644 index 0000000000000000000000000000000000000000..ad37158bc16d0e7939a34831bd7628120eb61207 --- /dev/null +++ b/cli/src/main/java/hudson/cli/HexDump.java @@ -0,0 +1,47 @@ +package hudson.cli; + +// TODO COPIED FROM hudson.remoting + +/** + * @author Kohsuke Kawaguchi + */ +class HexDump { + private static final String CODE = "0123456789abcdef"; + + public static String toHex(byte[] buf) { + return toHex(buf,0,buf.length); + } + public static String toHex(byte[] buf, int start, int len) { + StringBuilder r = new StringBuilder(len*2); + boolean inText = false; + for (int i=0; i= 0x20 && b <= 0x7e) { + if (!inText) { + inText = true; + r.append('\''); + } + r.append((char) b); + } else { + if (inText) { + r.append("' "); + inText = false; + } + r.append("0x"); + r.append(CODE.charAt((b>>4)&15)); + r.append(CODE.charAt(b&15)); + if (i < len - 1) { + if (b == 10) { + r.append('\n'); + } else { + r.append(' '); + } + } + } + } + if (inText) { + r.append('\''); + } + return r.toString(); + } +} diff --git a/cli/src/main/java/hudson/cli/PlainCLIProtocol.java b/cli/src/main/java/hudson/cli/PlainCLIProtocol.java new file mode 100644 index 0000000000000000000000000000000000000000..17d232c87b570ab0d80069ed926a54613429451f --- /dev/null +++ b/cli/src/main/java/hudson/cli/PlainCLIProtocol.java @@ -0,0 +1,354 @@ +/* + * The MIT License + * + * Copyright 2017 CloudBees, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * 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. + */ + +package hudson.cli; + +import java.io.ByteArrayOutputStream; +import java.io.Closeable; +import java.io.DataInputStream; +import java.io.DataOutputStream; +import java.io.EOFException; +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.nio.channels.ClosedChannelException; +import java.nio.channels.ReadPendingException; +import java.util.concurrent.TimeoutException; +import java.util.logging.Level; +import java.util.logging.Logger; +import org.apache.commons.io.IOUtils; +import org.apache.commons.io.input.CountingInputStream; + +/** + * CLI protocol working over a plain socket-like connection, without SSH or Remoting. + * Each side consists of frames starting with an {@code int} length, + * then a {@code byte} opcode, then any opcode-specific data. + * The length does not count the length field itself nor the opcode, so it is nonnegative. + */ +class PlainCLIProtocol { + + static final Logger LOGGER = Logger.getLogger(PlainCLIProtocol.class.getName()); + + /** One-byte operation to send to the other side. */ + private enum Op { + /** UTF-8 command name or argument. */ + ARG(true), + /** UTF-8 locale identifier. */ + LOCALE(true), + /** UTF-8 client encoding. */ + ENCODING(true), + /** Start running command. */ + START(true), + /** Exit code, as int. */ + EXIT(false), + /** Chunk of stdin, as int length followed by bytes. */ + STDIN(true), + /** EOF on stdin. */ + END_STDIN(true), + /** Chunk of stdout. */ + STDOUT(false), + /** Chunk of stderr. */ + STDERR(false); + /** True if sent from the client to the server; false if sent from the server to the client. */ + final boolean clientSide; + Op(boolean clientSide) { + this.clientSide = clientSide; + } + } + + static abstract class EitherSide implements Closeable { + + private final CountingInputStream cis; + private final FlightRecorderInputStream flightRecorder; + final DataInputStream dis; + final DataOutputStream dos; + + protected EitherSide(InputStream is, OutputStream os) { + cis = new CountingInputStream(is); + flightRecorder = new FlightRecorderInputStream(cis); + dis = new DataInputStream(flightRecorder); + dos = new DataOutputStream(os); + } + + final void begin() { + new Reader().start(); + } + + private class Reader extends Thread { + + Reader() { + super("PlainCLIProtocol"); // TODO set distinctive Thread.name + } + + @Override + public void run() { + try { + while (true) { + LOGGER.finest("reading frame"); + int framelen; + try { + framelen = dis.readInt(); + } catch (EOFException x) { + handleClose(); + break; // TODO verify that we hit EOF immediately, not partway into framelen + } catch (IOException x) { + if (x.getCause() instanceof TimeoutException) { // TODO on Tomcat this seems to be SocketTimeoutException + LOGGER.log(Level.FINE, "ignoring idle timeout, perhaps from Jetty", x); + continue; + } else { + throw x; + } + } + if (framelen < 0) { + throw new IOException("corrupt stream: negative frame length"); + } + byte b = dis.readByte(); + if (b < 0) { // i.e., >127 + throw new IOException("corrupt stream: negative operation code"); + } + if (b >= Op.values().length) { + LOGGER.log(Level.WARNING, "unknown operation #{0}: {1}", new Object[] {b, HexDump.toHex(flightRecorder.getRecord())}); + IOUtils.skipFully(dis, framelen); + continue; + } + Op op = Op.values()[b]; + long start = cis.getByteCount(); + LOGGER.log(Level.FINEST, "handling frame with {0} of length {1}", new Object[] {op, framelen}); + boolean handled = handle(op, framelen); + if (handled) { + long actuallyRead = cis.getByteCount() - start; + if (actuallyRead != framelen) { + throw new IOException("corrupt stream: expected to read " + framelen + " bytes from " + op + " but read " + actuallyRead); + } + } else { + LOGGER.log(Level.WARNING, "unexpected {0}: {1}", new Object[] {op, HexDump.toHex(flightRecorder.getRecord())}); + IOUtils.skipFully(dis, framelen); + } + } + } catch (ClosedChannelException x) { + LOGGER.log(Level.FINE, null, x); + handleClose(); + } catch (IOException x) { + LOGGER.log(Level.WARNING, null, flightRecorder.analyzeCrash(x, "broken stream")); + } catch (ReadPendingException x) { + // in case trick in CLIAction does not work + LOGGER.log(Level.FINE, null, x); + handleClose(); + } catch (RuntimeException x) { + LOGGER.log(Level.WARNING, null, x); + handleClose(); + } + } + + } + + protected abstract void handleClose(); + + protected abstract boolean handle(Op op, int framelen) throws IOException; + + private void writeOp(Op op) throws IOException { + dos.writeByte((byte) op.ordinal()); + } + + protected final synchronized void send(Op op) throws IOException { + dos.writeInt(0); + writeOp(op); + dos.flush(); + } + + protected final synchronized void send(Op op, int number) throws IOException { + dos.writeInt(4); + writeOp(op); + dos.writeInt(number); + dos.flush(); + } + + protected final synchronized void send(Op op, byte[] chunk, int off, int len) throws IOException { + dos.writeInt(len); + writeOp(op); + dos.write(chunk, off, len); + dos.flush(); + } + + protected final void send(Op op, byte[] chunk) throws IOException { + send(op, chunk, 0, chunk.length); + } + + protected final void send(Op op, String text) throws IOException { + ByteArrayOutputStream buf = new ByteArrayOutputStream(); + new DataOutputStream(buf).writeUTF(text); + send(op, buf.toByteArray()); + } + + protected final byte[] readChunk(int framelen) throws IOException { + assert Thread.currentThread() instanceof EitherSide.Reader; + byte[] buf = new byte[framelen]; + dis.readFully(buf); + return buf; + } + + protected final OutputStream stream(final Op op) { + return new OutputStream() { + @Override + public void write(int b) throws IOException { + send(op, new byte[] {(byte) b}); + } + @Override + public void write(byte[] b, int off, int len) throws IOException { + send(op, b, off, len); + } + @Override + public void write(byte[] b) throws IOException { + send(op, b); + } + }; + } + + @Override + public synchronized void close() throws IOException { + dos.close(); + } + + } + + static abstract class ServerSide extends EitherSide { + + ServerSide(InputStream is, OutputStream os) { + super(is, os); + } + + @Override + protected final boolean handle(Op op, int framelen) throws IOException { + assert Thread.currentThread() instanceof EitherSide.Reader; + assert op.clientSide; + switch (op) { + case ARG: + onArg(dis.readUTF()); + return true; + case LOCALE: + onLocale(dis.readUTF()); + return true; + case ENCODING: + onEncoding(dis.readUTF()); + return true; + case START: + onStart(); + return true; + case STDIN: + onStdin(readChunk(framelen)); + return true; + case END_STDIN: + onEndStdin(); + return true; + default: + return false; + } + } + + protected abstract void onArg(String text); + + protected abstract void onLocale(String text); + + protected abstract void onEncoding(String text); + + protected abstract void onStart(); + + protected abstract void onStdin(byte[] chunk) throws IOException; + + protected abstract void onEndStdin() throws IOException; + + public final void sendExit(int code) throws IOException { + send(Op.EXIT, code); + } + + public final OutputStream streamStdout() { + return stream(Op.STDOUT); + } + + public final OutputStream streamStderr() { + return stream(Op.STDERR); + } + + } + + static abstract class ClientSide extends EitherSide { + + ClientSide(InputStream is, OutputStream os) { + super(is, os); + } + + @Override + protected boolean handle(Op op, int framelen) throws IOException { + assert Thread.currentThread() instanceof EitherSide.Reader; + assert !op.clientSide; + switch (op) { + case EXIT: + onExit(dis.readInt()); + return true; + case STDOUT: + onStdout(readChunk(framelen)); + return true; + case STDERR: + onStderr(readChunk(framelen)); + return true; + default: + return false; + } + } + + protected abstract void onExit(int code); + + protected abstract void onStdout(byte[] chunk) throws IOException; + + protected abstract void onStderr(byte[] chunk) throws IOException; + + public final void sendArg(String text) throws IOException { + send(Op.ARG, text); + } + + public final void sendLocale(String text) throws IOException { + send(Op.LOCALE, text); + } + + public final void sendEncoding(String text) throws IOException { + send(Op.ENCODING, text); + } + + public final void sendStart() throws IOException { + send(Op.START); + } + + public final OutputStream streamStdin() { + return stream(Op.STDIN); + } + + public final void sendEndStdin() throws IOException { + send(Op.END_STDIN); + } + + } + + private PlainCLIProtocol() {} + +} diff --git a/cli/src/main/java/hudson/cli/PrivateKeyProvider.java b/cli/src/main/java/hudson/cli/PrivateKeyProvider.java index 834bb7234250d7d7bac2bd424aba5aa670be0fda..d7753a750498aff78325fc04326eb63b7e45209d 100644 --- a/cli/src/main/java/hudson/cli/PrivateKeyProvider.java +++ b/cli/src/main/java/hudson/cli/PrivateKeyProvider.java @@ -30,6 +30,9 @@ import java.io.DataInputStream; import java.io.File; import java.io.FileInputStream; import java.io.IOException; +import java.io.InputStream; +import java.nio.file.Files; +import java.nio.file.InvalidPathException; import java.security.GeneralSecurityException; import java.security.KeyFactory; import java.security.KeyPair; @@ -127,15 +130,13 @@ public class PrivateKeyProvider { } private static String readPemFile(File f) throws IOException{ - FileInputStream is = new FileInputStream(f); - try { - DataInputStream dis = new DataInputStream(is); + try (InputStream is = Files.newInputStream(f.toPath()); + DataInputStream dis = new DataInputStream(is)) { byte[] bytes = new byte[(int) f.length()]; dis.readFully(bytes); - dis.close(); return new String(bytes); - } finally { - is.close(); + } catch (InvalidPathException e) { + throw new IOException(e); } } diff --git a/cli/src/main/java/hudson/cli/SSHCLI.java b/cli/src/main/java/hudson/cli/SSHCLI.java new file mode 100644 index 0000000000000000000000000000000000000000..bdd6c2beb50e5e696af3467e5bae7598f41eb5ef --- /dev/null +++ b/cli/src/main/java/hudson/cli/SSHCLI.java @@ -0,0 +1,133 @@ +/* + * The MIT License + * + * Copyright 2017 CloudBees, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * 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. + */ + +package hudson.cli; + +import hudson.util.QuotedStringTokenizer; +import java.io.IOException; +import java.net.SocketAddress; +import java.net.SocketTimeoutException; +import java.net.URL; +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; +import static java.util.logging.Level.FINE; +import java.util.logging.Logger; +import org.apache.sshd.client.SshClient; +import org.apache.sshd.client.channel.ClientChannel; +import org.apache.sshd.client.channel.ClientChannelEvent; +import org.apache.sshd.client.future.ConnectFuture; +import org.apache.sshd.client.keyverifier.DefaultKnownHostsServerKeyVerifier; +import org.apache.sshd.client.keyverifier.KnownHostsServerKeyVerifier; +import org.apache.sshd.client.keyverifier.ServerKeyVerifier; +import org.apache.sshd.client.session.ClientSession; +import org.apache.sshd.common.future.WaitableFuture; +import org.apache.sshd.common.util.io.NoCloseInputStream; +import org.apache.sshd.common.util.io.NoCloseOutputStream; +import org.apache.sshd.common.util.security.SecurityUtils; + +/** + * Implements SSH connection mode of {@link CLI}. + * In a separate class to avoid any class loading of {@code sshd-core} when not using {@code -ssh} mode. + * That allows the {@code test} module to pick up a version of {@code sshd-core} from the {@code sshd} module via {@code jenkins-war} + * that may not match the version being used from the {@code cli} module and may not be compatible. + */ +class SSHCLI { + + static int sshConnection(String jenkinsUrl, String user, List args, PrivateKeyProvider provider, final boolean strictHostKey) throws IOException { + Logger.getLogger(SecurityUtils.class.getName()).setLevel(Level.WARNING); // suppress: BouncyCastle not registered, using the default JCE provider + URL url = new URL(jenkinsUrl + "login"); + URLConnection conn = url.openConnection(); + CLI.verifyJenkinsConnection(conn); + String endpointDescription = conn.getHeaderField("X-SSH-Endpoint"); + + if (endpointDescription == null) { + CLI.LOGGER.warning("No header 'X-SSH-Endpoint' returned by Jenkins"); + return -1; + } + + CLI.LOGGER.log(FINE, "Connecting via SSH to: {0}", endpointDescription); + + int sshPort = Integer.parseInt(endpointDescription.split(":")[1]); + String sshHost = endpointDescription.split(":")[0]; + + StringBuilder command = new StringBuilder(); + + for (String arg : args) { + command.append(QuotedStringTokenizer.quote(arg)); + command.append(' '); + } + + try(SshClient client = SshClient.setUpDefaultClient()) { + + KnownHostsServerKeyVerifier verifier = new DefaultKnownHostsServerKeyVerifier(new ServerKeyVerifier() { + @Override + public boolean verifyServerKey(ClientSession clientSession, SocketAddress remoteAddress, PublicKey serverKey) { + CLI.LOGGER.log(Level.WARNING, "Unknown host key for {0}", remoteAddress.toString()); + return !strictHostKey; + } + }, true); + + client.setServerKeyVerifier(verifier); + client.start(); + + ConnectFuture cf = client.connect(user, sshHost, sshPort); + cf.await(); + try (ClientSession session = cf.getSession()) { + for (KeyPair pair : provider.getKeys()) { + CLI.LOGGER.log(FINE, "Offering {0} private key", pair.getPrivate().getAlgorithm()); + session.addPublicKeyIdentity(pair); + } + session.auth().verify(10000L); + + try (ClientChannel channel = session.createExecChannel(command.toString())) { + channel.setIn(new NoCloseInputStream(System.in)); + channel.setOut(new NoCloseOutputStream(System.out)); + channel.setErr(new NoCloseOutputStream(System.err)); + WaitableFuture wf = channel.open(); + wf.await(); + + Set waitMask = channel.waitFor(Collections.singletonList(ClientChannelEvent.CLOSED), 0L); + + if(waitMask.contains(ClientChannelEvent.TIMEOUT)) { + throw new SocketTimeoutException("Failed to retrieve command result in time: " + command); + } + + Integer exitStatus = channel.getExitStatus(); + return exitStatus; + + } + } finally { + client.stop(); + } + } + } + + private SSHCLI() {} + +} diff --git a/cli/src/main/java/hudson/cli/SequenceOutputStream.java b/cli/src/main/java/hudson/cli/SequenceOutputStream.java deleted file mode 100644 index fb6c26523b47317af89a975c7bd67930095ccabc..0000000000000000000000000000000000000000 --- a/cli/src/main/java/hudson/cli/SequenceOutputStream.java +++ /dev/null @@ -1,74 +0,0 @@ -package hudson.cli; - -import java.io.OutputStream; -import java.io.IOException; -import java.io.SequenceInputStream; - -/** - * {@link OutputStream} version of {@link SequenceInputStream}. - * - * Provides a single {@link OutputStream} view over multiple {@link OutputStream}s (each of the fixed length.) - * - * @author Kohsuke Kawaguchi - */ -abstract class SequenceOutputStream extends OutputStream { - protected static class Block { - final OutputStream out; - long capacity; - - public Block(OutputStream out, long capacity) { - this.out = out; - this.capacity = capacity; - } - } - - /** - * Current block being written. - */ - private Block block; - - protected SequenceOutputStream(Block block) { - this.block = block; - } - - @Override - public void write(byte[] b, int off, int len) throws IOException { - while(len>0) { - int sz = (int)Math.min(len, block.capacity); - block.out.write(b,off,sz); - block.capacity -=sz; - len-=sz; - off+=sz; - swapIfNeeded(); - } - } - - public void write(int b) throws IOException { - block.out.write(b); - block.capacity--; - swapIfNeeded(); - } - - private void swapIfNeeded() throws IOException { - if(block.capacity >0) return; - block.out.close(); - block=next(block); - } - - @Override - public void flush() throws IOException { - block.out.flush(); - } - - @Override - public void close() throws IOException { - block.out.close(); - block=null; - } - - /** - * Fetches the next {@link OutputStream} to write to, - * along with their capacity. - */ - protected abstract Block next(Block current) throws IOException; -} diff --git a/core/src/main/java/hudson/util/QuotedStringTokenizer.java b/cli/src/main/java/hudson/util/QuotedStringTokenizer.java similarity index 100% rename from core/src/main/java/hudson/util/QuotedStringTokenizer.java rename to cli/src/main/java/hudson/util/QuotedStringTokenizer.java diff --git a/cli/src/main/resources/hudson/cli/client/Messages.properties b/cli/src/main/resources/hudson/cli/client/Messages.properties index 699b4c47381227a92f7316331cbdbc3477759213..921fe67a211da560ac75fc355179a117b3c00dc2 100644 --- a/cli/src/main/resources/hudson/cli/client/Messages.properties +++ b/cli/src/main/resources/hudson/cli/client/Messages.properties @@ -2,10 +2,18 @@ CLI.Usage=Jenkins CLI\n\ Usage: java -jar jenkins-cli.jar [-s URL] command [opts...] args...\n\ Options:\n\ -s URL : the server URL (defaults to the JENKINS_URL env var)\n\ - -i KEY : SSH private key file used for authentication\n\ - -p HOST:PORT : HTTP proxy host and port for HTTPS proxy tunneling. See http://jenkins-ci.org/https-proxy-tunnel\n\ + -http : use a plain CLI protocol over HTTP(S) (the default; mutually exclusive with -ssh and -remoting)\n\ + -ssh : use SSH protocol (requires -user; SSH port must be open on server, and user must have registered a public key)\n\ + -remoting : use deprecated Remoting channel protocol (if enabled on server; for compatibility with legacy commands or command modes only)\n\ + -i KEY : SSH private key file used for authentication (for use with -ssh or -remoting)\n\ + -p HOST:PORT : HTTP proxy host and port for HTTPS proxy tunneling. See https://jenkins.io/redirect/cli-https-proxy-tunnel\n\ -noCertificateCheck : bypass HTTPS certificate check entirely. Use with caution\n\ -noKeyAuth : don't try to load the SSH authentication private key. Conflicts with -i\n\ + -user : specify user (for use with -ssh)\n\ + -strictHostKey : request strict host key checking (for use with -ssh)\n\ + -logger FINE : enable detailed logging from the client\n\ + -auth [ USER:SECRET | @FILE ] : specify username and either password or API token (or load from them both from a file);\n\ + for use with -http, or -remoting but only when the JNLP agent port is disabled\n\ \n\ The available commands depend on the server. Run the 'help' command to\n\ see the list. 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 df0d2b57e1ac7b168809824f735bec1b102b27c4..acd0191d5c8bfbf854d5344b2d29f8463f3b55e9 100644 --- a/cli/src/main/resources/hudson/cli/client/Messages_bg.properties +++ b/cli/src/main/resources/hudson/cli/client/Messages_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Bulgarian translation copyright 2015 Alexander Shopov . +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -28,7 +28,7 @@ CLI.Usage=\ \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: http://jenkins-ci.org/https-proxy-tunnel\n\ + \u0417\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f: https://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\ 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 aa7972afa42fbb6dd99737ad46b7f3e32c7e6217..70b91e222f0240ecbd2390eb7867765e0a6c3e69 100644 --- a/cli/src/main/resources/hudson/cli/client/Messages_de.properties +++ b/cli/src/main/resources/hudson/cli/client/Messages_de.properties @@ -2,12 +2,13 @@ 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 Hudson-Servers (Wert der Umgebungsvariable JENKINS_URL ist der Vorgabewert)\n\ - -i KEY : Datei mit privatem SSH-Schlssel zur Authentisierung\n\ - -p HOST\:PORT : HTTP-Proxy-Host und -Port fr HTTPS-Proxy-Tunnel. Siehe http://jenkins-ci.org/https-proxy-tunnel\n\ - -noCertificateCheck : berspringt die Zertifikatsprfung bei HTTPS. Bitte mit Vorsicht einsetzen.\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://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\ \n\ - Die verfgbaren Kommandos hngen vom kontaktierten Server ab. Verwenden Sie das Kommando help, um eine Liste aller verfgbaren Kommandos anzuzeigen. + Die verf\u00FCgbaren Kommandos h\u00E4ngen vom kontaktierten Server ab. Verwenden Sie das Kommando help, um eine Liste aller verf\u00FCgbaren 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_fr.properties b/cli/src/main/resources/hudson/cli/client/Messages_fr.properties new file mode 100644 index 0000000000000000000000000000000000000000..99fe0930f0d8df074c43e5a44ee25cf212381cff --- /dev/null +++ b/cli/src/main/resources/hudson/cli/client/Messages_fr.properties @@ -0,0 +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://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\ + \n\ + Les commandes disponibles d\u00e9pendent 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.NoSuchFileExists=Ce fichier n''existe pas: {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 61e1895c4dfb7d5dd96cf0dd4723671fb60c673a..779e88f1a6ecfe5230b2e29d84e4191a8c1de443 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 @@ -26,7 +26,7 @@ CLI.Usage=Jenkins CLI\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\ - -p HOST:PORT : host e porta do proxy HTTP para tunelamento de proxy HTTPS. Veja http://jenkins-ci.org/https-proxy-tunnel\n\ + -p HOST:PORT : host e porta do proxy HTTP para tunelamento de proxy HTTPS. Veja https://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\ \n\ 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 af303db03487aba6d903487ef308bae13d859464..4a9068624434d8c2bd6ef77c3fefe778c5fea59e 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 @@ -28,7 +28,7 @@ CLI.Usage=Jenkins CLI\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 http://jenkins-ci.org/https-proxy-tunnel\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://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\ \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 diff --git a/cli/src/test/java/hudson/cli/PlainCLIProtocolTest.java b/cli/src/test/java/hudson/cli/PlainCLIProtocolTest.java new file mode 100644 index 0000000000000000000000000000000000000000..4663fbafd5e0aa1a05852562ef8c8560f3d0cac3 --- /dev/null +++ b/cli/src/test/java/hudson/cli/PlainCLIProtocolTest.java @@ -0,0 +1,132 @@ +/* + * The MIT License + * + * Copyright 2017 CloudBees, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * 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. + */ + +package hudson.cli; + +import java.io.ByteArrayOutputStream; +import java.io.IOException; +import java.io.PipedInputStream; +import java.io.PipedOutputStream; +import static org.junit.Assert.*; +import org.junit.Test; + +public class PlainCLIProtocolTest { + + @Test + public void ignoreUnknownOperations() throws Exception { + final PipedOutputStream upload = new PipedOutputStream(); + final PipedOutputStream download = new PipedOutputStream(); + class Client extends PlainCLIProtocol.ClientSide { + int code = -1; + final ByteArrayOutputStream stdout = new ByteArrayOutputStream(); + Client() throws IOException { + super(new PipedInputStream(download), upload); + } + @Override + protected synchronized void onExit(int code) { + this.code = code; + notifyAll(); + } + @Override + protected void onStdout(byte[] chunk) throws IOException { + stdout.write(chunk); + } + @Override + protected void onStderr(byte[] chunk) throws IOException {} + @Override + protected void handleClose() {} + void send() throws IOException { + sendArg("command"); + sendStart(); + streamStdin().write("hello".getBytes()); + } + void newop() throws IOException { + dos.writeInt(0); + dos.writeByte(99); + dos.flush(); + } + } + class Server extends PlainCLIProtocol.ServerSide { + String arg; + boolean started; + final ByteArrayOutputStream stdin = new ByteArrayOutputStream(); + Server() throws IOException { + super(new PipedInputStream(upload), download); + } + @Override + protected void onArg(String text) { + arg = text; + } + @Override + protected void onLocale(String text) {} + @Override + protected void onEncoding(String text) {} + @Override + protected synchronized void onStart() { + started = true; + notifyAll(); + } + @Override + protected void onStdin(byte[] chunk) throws IOException { + stdin.write(chunk); + } + @Override + protected void onEndStdin() throws IOException {} + @Override + protected void handleClose() {} + void send() throws IOException { + streamStdout().write("goodbye".getBytes()); + sendExit(2); + } + void newop() throws IOException { + dos.writeInt(0); + dos.writeByte(99); + dos.flush(); + } + } + Client client = new Client(); + Server server = new Server(); + client.begin(); + server.begin(); + client.send(); + client.newop(); + synchronized (server) { + while (!server.started) { + server.wait(); + } + } + server.newop(); + server.send(); + synchronized (client) { + while (client.code == -1) { + client.wait(); + } + } + assertEquals("hello", server.stdin.toString()); + assertEquals("command", server.arg); + assertEquals("goodbye", client.stdout.toString()); + assertEquals(2, client.code); + } + +} diff --git a/cli/src/test/java/hudson/cli/PrivateKeyProviderTest.java b/cli/src/test/java/hudson/cli/PrivateKeyProviderTest.java index 376b1fa815f3f62988f741c93a63f2f2d090563a..86970265089b4bf41cb7bc4aae7d6e320447d21a 100644 --- a/cli/src/test/java/hudson/cli/PrivateKeyProviderTest.java +++ b/cli/src/test/java/hudson/cli/PrivateKeyProviderTest.java @@ -57,7 +57,7 @@ public class PrivateKeyProviderTest { final File dsaKey = keyFile(".ssh/id_dsa"); final File rsaKey = keyFile(".ssh/id_rsa"); - run("-i", dsaKey.getAbsolutePath(), "-i", rsaKey.getAbsolutePath(), "-s", "http://example.com"); + run("-remoting", "-i", dsaKey.getAbsolutePath(), "-i", rsaKey.getAbsolutePath(), "-s", "http://example.com"); verify(cli).authenticate(withKeyPairs( keyPair(dsaKey), @@ -73,7 +73,7 @@ public class PrivateKeyProviderTest { final File dsaKey = keyFile(".ssh/id_dsa"); fakeHome(); - run("-s", "http://example.com"); + run("-remoting", "-s", "http://example.com"); verify(cli).authenticate(withKeyPairs( keyPair(rsaKey), diff --git a/core/move-l10n.groovy b/core/move-l10n.groovy index d774ec50d4817573f8d4ba37a33632745a1f63b9..c52e66ae53aecf6318efc70b079e6777df580bd6 100644 --- a/core/move-l10n.groovy +++ b/core/move-l10n.groovy @@ -13,6 +13,7 @@ for (p in new File(resDir, oldview).parentFile.listFiles()) { def n = p.name; if (n == "${basename}.properties" || n.startsWith("${basename}_") && n.endsWith(".properties")) { def lines = p.readLines('ISO-8859-1'); + // TODO does not handle multiline values correctly def matches = lines.findAll({it.startsWith("${key}=")}); if (!matches.isEmpty()) { lines.removeAll(matches); @@ -24,6 +25,7 @@ for (p in new File(resDir, oldview).parentFile.listFiles()) { } else { def nue = new File(resDir, newview + n.substring(basename.length())); println("moving ${matches.size()} matches from ${n} to ${nue.name}"); + // TODO if the original lacked a trailing newline, this will corrupt previously final key nue.withWriterAppend('ISO-8859-1') {out -> matches.each {line -> out.writeLine(line)} } diff --git a/core/pom.xml b/core/pom.xml index 59be9513829c152b023923cc8aeb677e734a88da..c486ebd0bb640b4b71f5b4ca9aa99a27527749e3 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -29,7 +29,7 @@ THE SOFTWARE. org.jenkins-ci.main pom - 1.648-SNAPSHOT + 2.74-SNAPSHOT jenkins-core @@ -39,9 +39,11 @@ THE SOFTWARE. true - 1.237 + 1.252 2.5.6.SEC03 - 1.8.9 + 2.4.11 + + true @@ -63,7 +65,7 @@ THE SOFTWARE. org.jenkins-ci version-number - 1.1 + 1.4 org.jenkins-ci @@ -93,6 +95,12 @@ THE SOFTWARE. com.google.inject guice + + + com.google.guava + guava + + @@ -103,7 +111,7 @@ THE SOFTWARE. com.github.jnr jnr-posix - 3.0.1 + 3.0.41 org.kohsuke @@ -113,7 +121,7 @@ THE SOFTWARE. org.jenkins-ci trilead-ssh2 - build217-jenkins-8 + build-217-jenkins-11 org.kohsuke.stapler @@ -147,7 +155,7 @@ THE SOFTWARE. org.kohsuke windows-package-checker - 1.0 + 1.2 org.kohsuke.stapler @@ -157,7 +165,7 @@ THE SOFTWARE. org.kohsuke.stapler stapler-adjunct-timeline - 1.4 + 1.5 org.kohsuke.stapler @@ -195,7 +203,7 @@ THE SOFTWARE. org.jenkins-ci annotation-indexer - 1.7 + 1.12 org.jenkins-ci @@ -210,7 +218,7 @@ THE SOFTWARE. org.jvnet.localizer localizer - 1.23 + 1.24 antlr @@ -243,8 +251,8 @@ THE SOFTWARE. javax.servlet - servlet-api - 2.4 + javax.servlet-api + 3.1.0 provided @@ -411,13 +419,13 @@ THE SOFTWARE. jline jline - 1.0 + 2.12 compile org.fusesource.jansi jansi - 1.9 + 1.11 commons-codec @@ -568,7 +581,6 @@ THE SOFTWARE. org.kohsuke access-modifier-annotation - 1.4 @@ -585,9 +597,9 @@ THE SOFTWARE. - org.mindrot - jbcrypt - 0.3m + org.mindrot + jbcrypt + 0.4 @@ -599,10 +611,21 @@ THE SOFTWARE. /usr/local/yjp/lib/yjp.jar - - com.google.guava - guava - + + com.google.guava + guava + + + com.google.code.findbugs + jsr305 + + + + + com.google.guava + guava-testlib + test + com.jcraft @@ -640,6 +663,7 @@ THE SOFTWARE. generate-taglib-interface + record-core-location @@ -689,6 +713,7 @@ THE SOFTWARE. Messages.properties target/generated-sources/localizer + true @@ -696,7 +721,6 @@ THE SOFTWARE. org.kohsuke access-modifier-checker - @@ -747,7 +771,7 @@ THE SOFTWARE. com.sun.winsw winsw - 1.16 + 2.1.0 bin exe ${project.build.outputDirectory}/windows-service @@ -763,7 +787,7 @@ THE SOFTWARE. 0.5C true - -XX:MaxPermSize=128m -noverify + -noverify @@ -798,6 +822,10 @@ THE SOFTWARE. + + org.codehaus.mojo + findbugs-maven-plugin + @@ -834,21 +862,9 @@ THE SOFTWARE. release - - org.codehaus.mojo - apt-maven-plugin - - - - - process - - - - @@ -873,20 +889,12 @@ THE SOFTWARE. + findbugs - - - - org.codehaus.mojo - findbugs-maven-plugin - - Max - High - src/findbugs-filter.xml - - - - + + + true + diff --git a/core/src/build-script/Cobertura.groovy b/core/src/build-script/Cobertura.groovy index 073f6291b77c10c07ad948a47a264997e1c7069f..49b773b49ba17e79fa74975cf8a0b20d42153143 100644 --- a/core/src/build-script/Cobertura.groovy +++ b/core/src/build-script/Cobertura.groovy @@ -56,7 +56,6 @@ public class Cobertura { } sysproperty(key:"net.sourceforge.cobertura.datafile",value:ser) sysproperty(key:"hudson.ClassicPluginStrategy.useAntClassLoader",value:"true") - jvmarg(value:"-XX:MaxPermSize=128m") } } diff --git a/core/src/filter/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_bg.properties b/core/src/filter/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..95e74685ada811e8f8b8e5855fbc99b66847d304 --- /dev/null +++ b/core/src/filter/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_bg.properties @@ -0,0 +1,32 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +NewVersionAvailable=\ + \u041d\u043e\u0432\u0430\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430 Jenkins ({0}) \u0435 \u043d\u0430\u043b\u0438\u0447\u043d\u0430 \u0437\u0430 \u0438\u0437\u0442\u0435\u0433\u043b\u044f\u043d\u0435\ + (\u0441\u043f\u0438\u0441\u044a\u043a \u0441 \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435). +UpgradeComplete=\ + \u041e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435\u0442\u043e \u043a\u044a\u043c \u043d\u043e\u0432\u0430\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044f Jenkins {0} \u043f\u0440\u0438\u043a\u043b\u044e\u0447\u0438. \u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0442\u0435. +UpgradeCompleteRestartNotSupported=\ +\u041e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435\u0442\u043e \u043a\u044a\u043c \u043d\u043e\u0432\u0430\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044f Jenkins {0} \u043f\u0440\u0438\u043a\u043b\u044e\u0447\u0438. \u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0442\u0435. +UpgradeProgress=\u0418\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430 \u0441\u0435 \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043a\u044a\u043c Jenkins {0}. +UpgradeFailed=\u041d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043a\u044a\u043c Jenkins {0}: {1}. diff --git a/core/src/filter/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_id.properties b/core/src/filter/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_id.properties deleted file mode 100644 index c28903b2ddf3ae2e9e532bb7006518699b72bf77..0000000000000000000000000000000000000000 --- a/core/src/filter/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_id.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -NewVersionAvailable=Versi baru Jenkins ({0}) tersedia untuk diunduh (catatan perubahan). -Or\ Upgrade\ Automatically=Atau Perbarui Secara Otomatis diff --git a/core/src/filter/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pl.properties b/core/src/filter/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pl.properties index 6f5ff479b3092c96f38a93a2f6fb46a126fead29..18a2cbe3c311f03744e1c92f180bddd06a09461a 100644 --- a/core/src/filter/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pl.properties +++ b/core/src/filter/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pl.properties @@ -1,6 +1,25 @@ -# This file is under the MIT License by authors - +# The MIT License +# +# Copyright (c) 2013-2016, Kohsuke Kawaguchi, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. NewVersionAvailable=Nowa wersja Jenkinsa ({0}) jest dost\u0119pna do pobrania (historia zmian). -Or\ Upgrade\ Automatically=Albo uaktualnij automatycznie +Or\ Upgrade\ Automatically=Uaktualnij automatycznie UpgradeCompleteRestartNotSupported=Aktualizacja Jenkinsa do wersji {0} zako\u0144czy\u0142a si\u0119 pomy\u015Blnie, oczekiwanie na ponowne uruchomienie. UpgradeProgress=Aktualizacja Jenkinsa do wersji {0} trwa lub nie powiod\u0142a si\u0119. diff --git a/core/src/main/java/hudson/AbortException.java b/core/src/main/java/hudson/AbortException.java index 41a10739eb16075a27a26a6704923fa45432d131..b68276e8eec12409624d20932aa3c7c58f30391c 100644 --- a/core/src/main/java/hudson/AbortException.java +++ b/core/src/main/java/hudson/AbortException.java @@ -32,7 +32,7 @@ import java.io.IOException; * * @author Kohsuke Kawaguchi */ -public final class AbortException extends IOException { +public class AbortException extends IOException { public AbortException() { } diff --git a/core/src/main/java/hudson/AboutJenkins.java b/core/src/main/java/hudson/AboutJenkins.java index 42332f9a920c5db3aeba241ac6df58824aeaacb9..34fc120e57272e4983e4d51b6f393e7306e579f5 100644 --- a/core/src/main/java/hudson/AboutJenkins.java +++ b/core/src/main/java/hudson/AboutJenkins.java @@ -2,6 +2,8 @@ package hudson; import hudson.model.ManagementLink; import java.net.URL; + +import org.jenkinsci.Symbol; import org.kohsuke.accmod.Restricted; import org.kohsuke.accmod.restrictions.NoExternalUse; @@ -10,7 +12,7 @@ import org.kohsuke.accmod.restrictions.NoExternalUse; * * @author Kohsuke Kawaguchi */ -@Extension +@Extension @Symbol("about") public class AboutJenkins extends ManagementLink { @Override public String getIconFileName() { diff --git a/core/src/main/java/hudson/AbstractMarkupText.java b/core/src/main/java/hudson/AbstractMarkupText.java index ed7e319711040b7bbb8ba657a7e1227dca85d626..1e78b3e10cfadca15f5745415141a6d4d8edf4dc 100644 --- a/core/src/main/java/hudson/AbstractMarkupText.java +++ b/core/src/main/java/hudson/AbstractMarkupText.java @@ -72,8 +72,8 @@ public abstract class AbstractMarkupText { * Adds a start tag and end tag at the specified position. * *

- * For example, if the text was "abc", then addMarkup(1,2,"<b>","</b>") - * would generate "a<b>b</b>c" + * For example, if the text was "abc", then {@code addMarkup(1,2,"","")} + * would generate {@code"abc"} */ public abstract void addMarkup( int startPos, int endPos, String startTag, String endTag ); diff --git a/core/src/main/java/hudson/BulkChange.java b/core/src/main/java/hudson/BulkChange.java index db48db3de78cacd7f96ffde7305d1bc9ae787aa0..28b9fde4261074ca2e4828534139d16e18c8f464 100644 --- a/core/src/main/java/hudson/BulkChange.java +++ b/core/src/main/java/hudson/BulkChange.java @@ -25,6 +25,7 @@ package hudson; import hudson.model.Saveable; +import java.io.Closeable; import java.io.IOException; /** @@ -35,28 +36,13 @@ import java.io.IOException; * The usage of {@link BulkChange} needs to follow a specific closure-like pattern, namely: * *

- * BulkChange bc = new BulkChange(someObject);
- * try {
+ * try (BulkChange bc = new BulkChange(someObject)) {
  *    ... make changes to 'someObject'
- * } finally {
  *    bc.commit();
  * }
  * 
* *

- * ... or if you'd like to avoid saving when something bad happens: - * - *

- * BulkChange bc = new BulkChange(someObject);
- * try {
- *    ... make changes to 'someObject'
- *    bc.commit();
- * } finally {
- *    bc.abort();
- * }
- * 
- * - *

* Use of this method is optional. If {@link BulkChange} is not used, individual mutator * will perform the save operation, and things will just run somewhat slower. * @@ -68,7 +54,7 @@ import java.io.IOException; * *

    *
  1. - * Mutater methods should invoke {@code this.save()} so that if the method is called outside + * Mutator methods should invoke {@code this.save()} so that if the method is called outside * a {@link BulkChange}, the result will be saved immediately. * *
  2. @@ -82,7 +68,7 @@ import java.io.IOException; * @author Kohsuke Kawaguchi * @since 1.249 */ -public class BulkChange { +public class BulkChange implements Closeable { private final Saveable saveable; public final Exception allocator; private final BulkChange parent; @@ -92,7 +78,7 @@ public class BulkChange { public BulkChange(Saveable saveable) { this.parent = current(); this.saveable = saveable; - // rememeber who allocated this object in case + // remember who allocated this object in case // someone forgot to call save() at the end. allocator = new Exception(); @@ -112,6 +98,14 @@ public class BulkChange { saveable.save(); } + /** + * Alias for {@link #abort()} to make {@link BulkChange} auto-closeable. + */ + @Override + public void close() { + abort(); + } + /** * Exits the scope of {@link BulkChange} without saving the changes. * diff --git a/core/src/main/java/hudson/ClassicPluginStrategy.java b/core/src/main/java/hudson/ClassicPluginStrategy.java index b90e6fcfda9e99415c00cd17932ee69c16407be9..5981ade06904c23de2c75603ec328476db760fe3 100644 --- a/core/src/main/java/hudson/ClassicPluginStrategy.java +++ b/core/src/main/java/hudson/ClassicPluginStrategy.java @@ -23,6 +23,12 @@ */ package hudson; +import java.io.InputStream; +import java.nio.file.Files; +import java.nio.file.InvalidPathException; + +import jenkins.util.AntWithFindResourceClassLoader; +import jenkins.util.SystemProperties; import com.google.common.collect.Lists; import hudson.Plugin.DummyImpl; import hudson.PluginWrapper.Dependency; @@ -56,8 +62,6 @@ import java.io.FileInputStream; import java.io.FilenameFilter; import java.io.IOException; import java.lang.reflect.Field; -import java.lang.reflect.InvocationTargetException; -import java.net.URI; import java.net.URL; import java.util.ArrayList; import java.util.Arrays; @@ -74,6 +78,10 @@ import java.util.jar.Manifest; import java.util.logging.Level; import java.util.logging.Logger; import org.jenkinsci.bytecode.Transformer; +import org.kohsuke.accmod.Restricted; +import org.kohsuke.accmod.restrictions.NoExternalUse; + +import javax.annotation.Nonnull; import static org.apache.commons.io.FilenameUtils.getBaseName; @@ -104,11 +112,8 @@ public class ClassicPluginStrategy implements PluginStrategy { if (isLinked(archive)) { manifest = loadLinkedManifest(archive); } else { - JarFile jf = new JarFile(archive, false); - try { + try (JarFile jf = new JarFile(archive, false)) { manifest = jf.getManifest(); - } finally { - jf.close(); } } return PluginWrapper.computeShortName(manifest, archive.getName()); @@ -123,11 +128,10 @@ public class ClassicPluginStrategy implements PluginStrategy { try { // Locate the manifest String firstLine; - FileInputStream manifestHeaderInput = new FileInputStream(archive); - try { + try (InputStream manifestHeaderInput = Files.newInputStream(archive.toPath())) { firstLine = IOUtils.readFirstLine(manifestHeaderInput, "UTF-8"); - } finally { - manifestHeaderInput.close(); + } catch (InvalidPathException e) { + throw new IOException(e); } if (firstLine.startsWith("Manifest-Version:")) { // this is the manifest already @@ -137,11 +141,10 @@ public class ClassicPluginStrategy implements PluginStrategy { } // Read the manifest - FileInputStream manifestInput = new FileInputStream(archive); - try { + try (InputStream manifestInput = Files.newInputStream(archive.toPath())) { return new Manifest(manifestInput); - } finally { - manifestInput.close(); + } catch (InvalidPathException e) { + throw new IOException(e); } } catch (IOException e) { throw new IOException("Failed to load " + archive, e); @@ -162,7 +165,8 @@ public class ClassicPluginStrategy implements PluginStrategy { if (archive.isDirectory()) {// already expanded expandDir = archive; } else { - expandDir = new File(archive.getParentFile(), getBaseName(archive.getName())); + File f = pluginManager.getWorkDir(); + expandDir = new File(f == null ? archive.getParentFile() : f, getBaseName(archive.getName())); explode(archive, expandDir); } @@ -172,11 +176,10 @@ public class ClassicPluginStrategy implements PluginStrategy { "Plugin installation failed. No manifest at " + manifestFile); } - FileInputStream fin = new FileInputStream(manifestFile); - try { + try (InputStream fin = Files.newInputStream(manifestFile.toPath())) { manifest = new Manifest(fin); - } finally { - fin.close(); + } catch (InvalidPathException e) { + throw new IOException(e); } } @@ -193,28 +196,17 @@ public class ClassicPluginStrategy implements PluginStrategy { baseResourceURL = resolve(archive,atts.getValue("Resource-Path")).toURI().toURL(); } else { File classes = new File(expandDir, "WEB-INF/classes"); - if (classes.exists()) + if (classes.exists()) { // should not normally happen, due to createClassJarFromWebInfClasses + LOGGER.log(Level.WARNING, "Deprecated unpacked classes directory found in {0}", classes); paths.add(classes); + } File lib = new File(expandDir, "WEB-INF/lib"); File[] libs = lib.listFiles(JAR_FILTER); if (libs != null) paths.addAll(Arrays.asList(libs)); - try { - Class pathJDK7 = Class.forName("java.nio.file.Path"); - Object toPath = File.class.getMethod("toPath").invoke(expandDir); - URI uri = (URI) pathJDK7.getMethod("toUri").invoke(toPath); - - baseResourceURL = uri.toURL(); - } catch (NoSuchMethodException e) { - throw new Error(e); - } catch (ClassNotFoundException e) { - baseResourceURL = expandDir.toURI().toURL(); - } catch (InvocationTargetException e) { - throw new Error(e); - } catch (IllegalAccessException e) { - throw new Error(e); - } + baseResourceURL = expandDir.toPath().toUri().toURL(); + } File disableFile = new File(archive.getPath() + ".disabled"); if (disableFile.exists()) { @@ -235,8 +227,8 @@ public class ClassicPluginStrategy implements PluginStrategy { } } } - for (DetachedPlugin detached : DETACHED_LIST) - detached.fix(atts,optionalDependencies); + + fix(atts,optionalDependencies); // Register global classpath mask. This is useful for hiding JavaEE APIs that you might see from the container, // such as database plugin for JPA support. The Mask-Classes attribute is insufficient because those classes @@ -254,6 +246,41 @@ public class ClassicPluginStrategy implements PluginStrategy { createClassLoader(paths, dependencyLoader, atts), disableFile, dependencies, optionalDependencies); } + private static void fix(Attributes atts, List optionalDependencies) { + String pluginName = atts.getValue("Short-Name"); + + String jenkinsVersion = atts.getValue("Jenkins-Version"); + if (jenkinsVersion==null) + jenkinsVersion = atts.getValue("Hudson-Version"); + + optionalDependencies.addAll(getImpliedDependencies(pluginName, jenkinsVersion)); + } + + /** + * Returns all the plugin dependencies that are implicit based on a particular Jenkins version + * @since 2.0 + */ + @Nonnull + public static List getImpliedDependencies(String pluginName, String jenkinsVersion) { + List out = new ArrayList<>(); + for (DetachedPlugin detached : DETACHED_LIST) { + // don't fix the dependency for itself, or else we'll have a cycle + if (detached.shortName.equals(pluginName)) { + continue; + } + if (BREAK_CYCLES.contains(pluginName + '/' + detached.shortName)) { + LOGGER.log(Level.FINE, "skipping implicit dependency {0} → {1}", new Object[] {pluginName, detached.shortName}); + continue; + } + // some earlier versions of maven-hpi-plugin apparently puts "null" as a literal in Hudson-Version. watch out for them. + if (jenkinsVersion == null || jenkinsVersion.equals("null") || new VersionNumber(jenkinsVersion).compareTo(detached.splitWhen) <= 0) { + out.add(new PluginWrapper.Dependency(detached.shortName + ':' + detached.requiredVersion)); + LOGGER.log(Level.FINE, "adding implicit dependency {0} → {1} because of {2}", new Object[] {pluginName, detached.shortName, jenkinsVersion}); + } + } + return out; + } + @Deprecated protected ClassLoader createClassLoader(List paths, ClassLoader parent) throws IOException { return createClassLoader( paths, parent, null ); @@ -279,10 +306,66 @@ public class ClassicPluginStrategy implements PluginStrategy { return classLoader; } + /** + * Get the list of all plugins that have ever been {@link DetachedPlugin detached} from Jenkins core. + * @return A {@link List} of {@link DetachedPlugin}s. + */ + @Restricted(NoExternalUse.class) + public static @Nonnull List getDetachedPlugins() { + return DETACHED_LIST; + } + + /** + * Get the list of plugins that have been detached since a specific Jenkins release version. + * @param since The Jenkins version. + * @return A {@link List} of {@link DetachedPlugin}s. + */ + @Restricted(NoExternalUse.class) + public static @Nonnull List getDetachedPlugins(@Nonnull VersionNumber since) { + List detachedPlugins = new ArrayList<>(); + + for (DetachedPlugin detachedPlugin : DETACHED_LIST) { + if (!detachedPlugin.getSplitWhen().isOlderThan(since)) { + detachedPlugins.add(detachedPlugin); + } + } + + return detachedPlugins; + } + + /** + * Is the named plugin a plugin that was detached from Jenkins at some point in the past. + * @param pluginId The plugin ID. + * @return {@code true} if the plugin is a plugin that was detached from Jenkins at some + * point in the past, otherwise {@code false}. + */ + @Restricted(NoExternalUse.class) + public static boolean isDetachedPlugin(@Nonnull String pluginId) { + for (DetachedPlugin detachedPlugin : DETACHED_LIST) { + if (detachedPlugin.getShortName().equals(pluginId)) { + return true; + } + } + + return false; + } + /** * Information about plugins that were originally in the core. + *

    + * A detached plugin is one that has any of the following characteristics: + *

      + *
    • + * Was an existing plugin that at some time previously bundled with the Jenkins war file. + *
    • + *
    • + * Was previous code in jenkins core that was split to a separate-plugin (but may not have + * ever been bundled in a jenkins war file - i.e. it gets split after this 2.0 update). + *
    • + *
    */ - private static final class DetachedPlugin { + @Restricted(NoExternalUse.class) + public static final class DetachedPlugin { private final String shortName; /** * Plugins built for this Jenkins version (and earlier) will automatically be assumed to have @@ -292,50 +375,58 @@ public class ClassicPluginStrategy implements PluginStrategy { * be "1.123.*" (because 1.124 will be the first version that doesn't include the removed code.) */ private final VersionNumber splitWhen; - private final String requireVersion; + private final String requiredVersion; - private DetachedPlugin(String shortName, String splitWhen, String requireVersion) { + private DetachedPlugin(String shortName, String splitWhen, String requiredVersion) { this.shortName = shortName; this.splitWhen = new VersionNumber(splitWhen); - this.requireVersion = requireVersion; + this.requiredVersion = requiredVersion; } - private void fix(Attributes atts, List optionalDependencies) { - // don't fix the dependency for yourself, or else we'll have a cycle - String yourName = atts.getValue("Short-Name"); - if (shortName.equals(yourName)) return; - if (BREAK_CYCLES.contains(yourName + '/' + shortName)) { - LOGGER.log(Level.FINE, "skipping implicit dependency {0} → {1}", new Object[] {yourName, shortName}); - return; - } + /** + * Get the short name of the plugin. + * @return The short name of the plugin. + */ + public String getShortName() { + return shortName; + } - // some earlier versions of maven-hpi-plugin apparently puts "null" as a literal in Hudson-Version. watch out for them. - String jenkinsVersion = atts.getValue("Jenkins-Version"); - if (jenkinsVersion==null) - jenkinsVersion = atts.getValue("Hudson-Version"); - if (jenkinsVersion == null || jenkinsVersion.equals("null") || new VersionNumber(jenkinsVersion).compareTo(splitWhen) <= 0) { - optionalDependencies.add(new PluginWrapper.Dependency(shortName + ':' + requireVersion)); - LOGGER.log(Level.FINE, "adding implicit dependency {0} → {1} because of {2}", new Object[] {yourName, shortName, jenkinsVersion}); - } + /** + * Get the Jenkins version from which the plugin was detached. + * @return The Jenkins version from which the plugin was detached. + */ + public VersionNumber getSplitWhen() { + return splitWhen; + } + + /** + * Gets the minimum required version for the current version of Jenkins. + * + * @return the minimum required version for the current version of Jenkins. + * @since 2.16 + */ + public VersionNumber getRequiredVersion() { + return new VersionNumber(requiredVersion); } } - private static final List DETACHED_LIST = Arrays.asList( - new DetachedPlugin("maven-plugin","1.296","1.296"), - new DetachedPlugin("subversion","1.310","1.0"), - new DetachedPlugin("cvs","1.340","0.1"), - new DetachedPlugin("ant","1.430.*","1.0"), - new DetachedPlugin("javadoc","1.430.*","1.0"), - new DetachedPlugin("external-monitor-job","1.467.*","1.0"), - new DetachedPlugin("ldap","1.467.*","1.0"), - new DetachedPlugin("pam-auth","1.467.*","1.0"), - new DetachedPlugin("mailer","1.493.*","1.2"), - new DetachedPlugin("matrix-auth","1.535.*","1.0.2"), - new DetachedPlugin("windows-slaves","1.547.*","1.0"), - new DetachedPlugin("antisamy-markup-formatter","1.553.*","1.0"), - new DetachedPlugin("matrix-project","1.561.*","1.0"), - new DetachedPlugin("junit","1.577.*","1.0") - ); + private static final List DETACHED_LIST = Collections.unmodifiableList(Arrays.asList( + new DetachedPlugin("maven-plugin", "1.296", "1.296"), + new DetachedPlugin("subversion", "1.310", "1.0"), + new DetachedPlugin("cvs", "1.340", "0.1"), + new DetachedPlugin("ant", "1.430.*", "1.0"), + new DetachedPlugin("javadoc", "1.430.*", "1.0"), + new DetachedPlugin("external-monitor-job", "1.467.*", "1.0"), + new DetachedPlugin("ldap", "1.467.*", "1.0"), + new DetachedPlugin("pam-auth", "1.467.*", "1.0"), + new DetachedPlugin("mailer", "1.493.*", "1.2"), + new DetachedPlugin("matrix-auth", "1.535.*", "1.0.2"), + new DetachedPlugin("windows-slaves", "1.547.*", "1.0"), + new DetachedPlugin("antisamy-markup-formatter", "1.553.*", "1.0"), + new DetachedPlugin("matrix-project", "1.561.*", "1.0"), + new DetachedPlugin("junit", "1.577.*", "1.0"), + new DetachedPlugin("bouncycastle-api", "2.16.*", "2.16.0") + )); /** Implicit dependencies that are known to be unnecessary and which must be cut out to prevent a dependency cycle among bundled plugins. */ private static final Set BREAK_CYCLES = new HashSet(Arrays.asList( @@ -420,13 +511,9 @@ public class ClassicPluginStrategy implements PluginStrategy { throw new IOException(className+" doesn't extend from hudson.Plugin"); } wrapper.setPlugin((Plugin) o); - } catch (LinkageError e) { + } catch (LinkageError | ClassNotFoundException e) { throw new IOException("Unable to load " + className + " from " + wrapper.getShortName(),e); - } catch (ClassNotFoundException e) { - throw new IOException("Unable to load " + className + " from " + wrapper.getShortName(),e); - } catch (IllegalAccessException e) { - throw new IOException("Unable to create instance of " + className + " from " + wrapper.getShortName(),e); - } catch (InstantiationException e) { + } catch (IllegalAccessException | InstantiationException e) { throw new IOException("Unable to create instance of " + className + " from " + wrapper.getShortName(),e); } } @@ -560,14 +647,13 @@ public class ClassicPluginStrategy implements PluginStrategy { final long dirTime = archive.lastModified(); // this ZipOutputStream is reused and not created for each directory - final ZipOutputStream wrappedZOut = new ZipOutputStream(new NullOutputStream()) { + try (ZipOutputStream wrappedZOut = new ZipOutputStream(new NullOutputStream()) { @Override public void putNextEntry(ZipEntry ze) throws IOException { ze.setTime(dirTime+1999); // roundup super.putNextEntry(ze); } - }; - try { + }) { Zip z = new Zip() { /** * Forces the fixed timestamp for directories to make sure @@ -586,8 +672,9 @@ public class ClassicPluginStrategy implements PluginStrategy { z.setDestFile(classesJar); z.add(mapper); z.execute(); - } finally { - wrappedZOut.close(); + } + if (classesJar.isFile()) { + LOGGER.log(Level.WARNING, "Created {0}; update plugin to a version created with a newer harness", classesJar); } } @@ -745,55 +832,11 @@ public class ClassicPluginStrategy implements PluginStrategy { /** * {@link AntClassLoader} with a few methods exposed, {@link Closeable} support, and {@link Transformer} support. */ - private final class AntClassLoader2 extends AntClassLoader implements Closeable { - private final Vector pathComponents; - + private final class AntClassLoader2 extends AntWithFindResourceClassLoader implements Closeable { private AntClassLoader2(ClassLoader parent) { - super(parent,true); - - try { - Field $pathComponents = AntClassLoader.class.getDeclaredField("pathComponents"); - $pathComponents.setAccessible(true); - pathComponents = (Vector)$pathComponents.get(this); - } catch (NoSuchFieldException e) { - throw new Error(e); - } catch (IllegalAccessException e) { - throw new Error(e); - } - } - - - public void addPathFiles(Collection paths) throws IOException { - for (File f : paths) - addPathFile(f); + super(parent, true); } - - public void close() throws IOException { - cleanup(); - } - - /** - * As of 1.8.0, {@link AntClassLoader} doesn't implement {@link #findResource(String)} - * in any meaningful way, which breaks fast lookup. Implement it properly. - */ - @Override - protected URL findResource(String name) { - URL url = null; - - // try and load from this loader if the parent either didn't find - // it or wasn't consulted. - Enumeration e = pathComponents.elements(); - while (e.hasMoreElements() && url == null) { - File pathComponent = (File) e.nextElement(); - url = getResourceURL(pathComponent, name); - if (url != null) { - log("Resource " + name + " loaded from ant loader", Project.MSG_DEBUG); - } - } - - return url; - } - + @Override protected Class defineClassFromData(File container, byte[] classData, String classname) throws IOException { if (!DISABLE_TRANSFORMER) @@ -802,7 +845,7 @@ public class ClassicPluginStrategy implements PluginStrategy { } } - public static boolean useAntClassLoader = Boolean.getBoolean(ClassicPluginStrategy.class.getName()+".useAntClassLoader"); + public static boolean useAntClassLoader = SystemProperties.getBoolean(ClassicPluginStrategy.class.getName()+".useAntClassLoader"); private static final Logger LOGGER = Logger.getLogger(ClassicPluginStrategy.class.getName()); - public static boolean DISABLE_TRANSFORMER = Boolean.getBoolean(ClassicPluginStrategy.class.getName()+".noBytecodeTransformer"); + public static boolean DISABLE_TRANSFORMER = SystemProperties.getBoolean(ClassicPluginStrategy.class.getName()+".noBytecodeTransformer"); } diff --git a/core/src/main/java/hudson/DNSMultiCast.java b/core/src/main/java/hudson/DNSMultiCast.java index b1f7d0b5e0c0b9844659a2af23d7a6f6bc1f8fb6..aa71b2e23b2be38ba799c7d3f3742e9442a5c550 100644 --- a/core/src/main/java/hudson/DNSMultiCast.java +++ b/core/src/main/java/hudson/DNSMultiCast.java @@ -1,5 +1,6 @@ package hudson; +import jenkins.util.SystemProperties; import jenkins.model.Jenkins; import jenkins.model.Jenkins.MasterComputer; @@ -87,5 +88,5 @@ public class DNSMultiCast implements Closeable { private static final Logger LOGGER = Logger.getLogger(DNSMultiCast.class.getName()); - public static boolean disabled = Boolean.getBoolean(DNSMultiCast.class.getName()+".disabled"); + public static boolean disabled = SystemProperties.getBoolean(DNSMultiCast.class.getName()+".disabled"); } diff --git a/core/src/main/java/hudson/DependencyRunner.java b/core/src/main/java/hudson/DependencyRunner.java index acf035676910ad3ac77f6e4b3164ed7358fc0f39..03efea55e4036a69b1b3297e083c8a3a86a351af 100644 --- a/core/src/main/java/hudson/DependencyRunner.java +++ b/core/src/main/java/hudson/DependencyRunner.java @@ -59,7 +59,7 @@ public class DependencyRunner implements Runnable { Set topLevelProjects = new HashSet(); // Get all top-level projects LOGGER.fine("assembling top level projects"); - for (AbstractProject p : Jenkins.getInstance().getAllItems(AbstractProject.class)) + for (AbstractProject p : Jenkins.getInstance().allItems(AbstractProject.class)) if (p.getUpstreamProjects().size() == 0) { LOGGER.fine("adding top level project " + p.getName()); topLevelProjects.add(p); diff --git a/core/src/main/java/hudson/DescriptorExtensionList.java b/core/src/main/java/hudson/DescriptorExtensionList.java index 513c557d44c7c11bcbd0c62c891d83f03997adeb..16d96ae441b0ff5a7cc4a3e59e8398db0cc595a4 100644 --- a/core/src/main/java/hudson/DescriptorExtensionList.java +++ b/core/src/main/java/hudson/DescriptorExtensionList.java @@ -39,6 +39,7 @@ import hudson.tasks.Publisher; import java.util.Collection; import java.util.List; import java.util.ArrayList; +import java.util.Collections; import java.util.Iterator; import java.util.logging.Level; import java.util.logging.Logger; @@ -182,6 +183,11 @@ public class DescriptorExtensionList, D extends Descrip */ @Override protected List> load() { + if (jenkins == null) { + // Should never happen on the real instance + LOGGER.log(Level.WARNING, "Cannot load extension components, because Jenkins instance has not been assigned yet"); + return Collections.emptyList(); + } return _load(jenkins.getExtensionList(Descriptor.class).getComponents()); } diff --git a/core/src/main/java/hudson/EnvVars.java b/core/src/main/java/hudson/EnvVars.java index c0047b557836d7865e14c4f9ee7919d04dd39c4b..1849ecbf66aebaf6ca6a4df5ce197b5b825c8b36 100644 --- a/core/src/main/java/hudson/EnvVars.java +++ b/core/src/main/java/hudson/EnvVars.java @@ -43,6 +43,7 @@ import java.util.Arrays; import java.util.TreeSet; import java.util.UUID; import java.util.logging.Logger; +import javax.annotation.Nonnull; /** * Environment variables. @@ -63,7 +64,7 @@ import java.util.logging.Logger; * *

    * In Jenkins, often we need to build up "environment variable overrides" - * on master, then to execute the process on slaves. This causes a problem + * on master, then to execute the process on agents. This causes a problem * when working with variables like PATH. So to make this work, * we introduce a special convention PATH+FOO — all entries * that starts with PATH+ are merged and prepended to the inherited @@ -88,7 +89,7 @@ public class EnvVars extends TreeMap { super(CaseInsensitiveComparator.INSTANCE); } - public EnvVars(Map m) { + public EnvVars(@Nonnull Map m) { this(); putAll(m); @@ -100,7 +101,7 @@ public class EnvVars extends TreeMap { } } - public EnvVars(EnvVars m) { + public EnvVars(@Nonnull EnvVars m) { // this constructor is so that in future we can get rid of the downcasting. this((Map)m); } @@ -134,7 +135,7 @@ public class EnvVars extends TreeMap { String v = get(realKey); if(v==null) v=value; else { - // we might be handling environment variables for a slave that can have different path separator + // we might be handling environment variables for a agent that can have different path separator // than the master, so the following is an attempt to get it right. // it's still more error prone that I'd like. char ch = platform==null ? File.pathSeparatorChar : platform.pathSeparator; @@ -210,13 +211,15 @@ public class EnvVars extends TreeMap { private final Comparator comparator; + @Nonnull private final EnvVars target; + @Nonnull private final Map overrides; private Map> refereeSetMap; private List orderedVariableNames; - public OverrideOrderCalculator(EnvVars target, Map overrides) { + public OverrideOrderCalculator(@Nonnull EnvVars target, @Nonnull Map overrides) { comparator = target.comparator(); this.target = target; this.overrides = overrides; @@ -323,9 +326,9 @@ public class EnvVars extends TreeMap { /** * Overrides all values in the map by the given map. Expressions in values will be expanded. * See {@link #override(String, String)}. - * @return this + * @return {@code this} */ - public EnvVars overrideExpandingAll(Map all) { + public EnvVars overrideExpandingAll(@Nonnull Map all) { for (String key : new OverrideOrderCalculator(this, all).getOrderedVariableNames()) { override(key, expand(all.get(key))); } @@ -421,8 +424,8 @@ public class EnvVars extends TreeMap { * variables only when you access this from the master. * *

    - * If you access this field from slaves, then this is the environment - * variable of the slave agent. + * If you access this field from agents, then this is the environment + * variable of the agent agent. */ public static final Map masterEnvVars = initMaster(); diff --git a/core/src/main/java/hudson/Extension.java b/core/src/main/java/hudson/Extension.java index 5ad913ef6ad39a1e8f2c35168c0863e48ec31221..1ca863d2f4f5cbdf46c66ede57c9e59920e5781b 100644 --- a/core/src/main/java/hudson/Extension.java +++ b/core/src/main/java/hudson/Extension.java @@ -74,7 +74,8 @@ public @interface Extension { /** * Used for sorting extensions. * - * Extensions will be sorted in the descending order of the ordinal. + * Extensions will be sorted in the descending order of the ordinal. In other words, + * the extensions with the highest numbers will be chosen first. * This is a rather poor approach to the problem, so its use is generally discouraged. * * @since 1.306 diff --git a/core/src/main/java/hudson/ExtensionFinder.java b/core/src/main/java/hudson/ExtensionFinder.java index 1a61b4d64a6dd01cc759d30f891bac4d705b6a60..6208f6cec8322a0145f2fc4436519000d07e0ce6 100644 --- a/core/src/main/java/hudson/ExtensionFinder.java +++ b/core/src/main/java/hudson/ExtensionFinder.java @@ -175,7 +175,7 @@ public abstract class ExtensionFinder implements ExtensionPoint { * from here. * *

    - * See http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6459208 for how to force a class initialization. + * 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 * can results in a dead lock. */ @@ -282,7 +282,6 @@ public abstract class ExtensionFinder implements ExtensionPoint { LOGGER.log(Level.SEVERE, "Failed to create Guice container from all the plugins",e); // failing to load all bindings are disastrous, so recover by creating minimum that works // by just including the core - // TODO this recovery is pretty much useless; startup crashes anyway container = Guice.createInjector(new SezpozModule(loadSezpozIndices(Jenkins.class.getClassLoader()))); } @@ -423,10 +422,7 @@ public abstract class ExtensionFinder implements ExtensionPoint { public T get() { try { return base.get(); - } catch (Exception e) { - error(key, e); - return null; - } catch (LinkageError e) { + } catch (Exception | LinkageError e) { error(key, e); return null; } @@ -435,7 +431,7 @@ public abstract class ExtensionFinder implements ExtensionPoint { if (verbose) { LOGGER.log(Level.WARNING, "Failed to instantiate " + key + "; skipping this component", x); } else { - LOGGER.log(Level.WARNING, "Failed to instantiate optional component {0}; skipping", key.getTypeLiteral()); + LOGGER.log(Level.INFO, "Failed to instantiate optional component {0}; skipping", key.getTypeLiteral()); LOGGER.log(Level.FINE, key.toString(), x); } } @@ -479,7 +475,11 @@ public abstract class ExtensionFinder implements ExtensionPoint { m.invoke(ecl, c); c.getConstructors(); c.getMethods(); - c.getFields(); + for (Field f : c.getFields()) { + if (f.getAnnotation(javax.inject.Inject.class) != null || f.getAnnotation(com.google.inject.Inject.class) != null) { + resolve(f.getType()); + } + } LOGGER.log(Level.FINER, "{0} looks OK", c); while (c != Object.class) { c.getGenericSuperclass(); @@ -493,10 +493,7 @@ public abstract class ExtensionFinder implements ExtensionPoint { @SuppressWarnings({"unchecked", "ChainOfInstanceofChecks"}) @Override protected void configure() { - int id=0; - for (final IndexItem item : index) { - id++; boolean optional = isOptional(item.annotation()); try { AnnotatedElement e = item.element(); @@ -521,8 +518,8 @@ public abstract class ExtensionFinder implements ExtensionPoint { resolve(extType); - // use arbitrary id to make unique key, because Guice wants that. - Key key = Key.get(extType, Names.named(String.valueOf(id))); + // make unique key, because Guice wants that. + Key key = Key.get(extType, Names.named(item.className() + "." + item.memberName())); annotations.put(key,a); bind(key).toProvider(new Provider() { public Object get() { @@ -668,8 +665,7 @@ public abstract class ExtensionFinder implements ExtensionPoint { extType = ((Method)e).getReturnType(); } else throw new AssertionError(); - // according to http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6459208 - // this appears to be the only way to force a class initialization + // according to JDK-4993813 this is the only way to force class initialization Class.forName(extType.getName(),true,extType.getClassLoader()); } catch (Exception | LinkageError e) { LOGGER.log(logLevel(item), "Failed to scout "+item.className(), e); diff --git a/core/src/main/java/hudson/ExtensionList.java b/core/src/main/java/hudson/ExtensionList.java index 46447fbcdabaffddfb0716b0cbbb94a73569f073..f2fcab81d403e63588322b73ceacae33dce66617 100644 --- a/core/src/main/java/hudson/ExtensionList.java +++ b/core/src/main/java/hudson/ExtensionList.java @@ -46,6 +46,7 @@ import java.util.logging.Level; import java.util.logging.Logger; import javax.annotation.CheckForNull; import javax.annotation.Nonnull; +import jenkins.util.io.OnMaster; /** * Retains the known extension instances for the given type 'T'. @@ -68,7 +69,7 @@ import javax.annotation.Nonnull; * @see jenkins.model.Jenkins#getExtensionList(Class) * @see jenkins.model.Jenkins#getDescriptorList(Class) */ -public class ExtensionList extends AbstractList { +public class ExtensionList extends AbstractList implements OnMaster { /** * @deprecated as of 1.417 * Use {@link #jenkins} @@ -203,6 +204,21 @@ public class ExtensionList extends AbstractList { } } + @Override + public boolean removeAll(Collection c) { + boolean removed = false; + try { + for (Object o : c) { + removed |= removeSync(o); + } + return removed; + } finally { + if (extensions != null && removed) { + fireOnChangeListeners(); + } + } + } + private synchronized boolean removeSync(Object o) { boolean removed = removeComponent(legacyInstances, o); if(extensions!=null) { @@ -390,14 +406,14 @@ public class ExtensionList extends AbstractList { /** * Gets the extension list for a given type. * Normally calls {@link Jenkins#getExtensionList(Class)} but falls back to an empty list - * in case {@link Jenkins#getInstance} is null. + * in case {@link Jenkins#getInstanceOrNull()} is null. * Thus it is useful to call from {@code all()} methods which need to behave gracefully during startup or shutdown. * @param type the extension point type * @return some list * @since 1.572 */ public static @Nonnull ExtensionList lookup(Class type) { - Jenkins j = Jenkins.getInstance(); + Jenkins j = Jenkins.getInstanceOrNull(); return j == null ? create((Jenkins) null, type) : j.getExtensionList(type); } diff --git a/core/src/main/java/hudson/ExtensionListView.java b/core/src/main/java/hudson/ExtensionListView.java index 59b81ffd95869297d20ea67694b923652235812d..100dad6fb758520864230cd18157b52bc062986e 100644 --- a/core/src/main/java/hudson/ExtensionListView.java +++ b/core/src/main/java/hudson/ExtensionListView.java @@ -23,6 +23,7 @@ */ package hudson; +import hudson.tasks.UserNameResolver; import jenkins.model.Jenkins; import hudson.util.CopyOnWriteList; diff --git a/core/src/main/java/hudson/ExtensionPoint.java b/core/src/main/java/hudson/ExtensionPoint.java index f49a5a096cc7ba2b6671b3ec8a0dd5b23746f3a2..e544ed7576ad411694e868a149dbf2ee1a6971b2 100644 --- a/core/src/main/java/hudson/ExtensionPoint.java +++ b/core/src/main/java/hudson/ExtensionPoint.java @@ -29,6 +29,7 @@ import static java.lang.annotation.ElementType.TYPE; import java.lang.annotation.Retention; import static java.lang.annotation.RetentionPolicy.RUNTIME; import java.lang.annotation.Target; +import jenkins.util.io.OnMaster; /** * Marker interface that designates extensible components diff --git a/core/src/main/java/hudson/FilePath.java b/core/src/main/java/hudson/FilePath.java index 9690c39cd0d03cef537a76aa399c7ed2bced97b1..cd3fa60451c232c8ce42d1536a16430a08206075 100644 --- a/core/src/main/java/hudson/FilePath.java +++ b/core/src/main/java/hudson/FilePath.java @@ -25,6 +25,7 @@ */ package hudson; +import com.google.common.annotations.VisibleForTesting; import com.jcraft.jzlib.GZIPInputStream; import com.jcraft.jzlib.GZIPOutputStream; import hudson.Launcher.LocalLauncher; @@ -57,28 +58,9 @@ import hudson.util.IOUtils; import hudson.util.NamingThreadFactory; import hudson.util.io.Archiver; import hudson.util.io.ArchiverFactory; -import jenkins.FilePathFilter; -import jenkins.MasterToSlaveFileCallable; -import jenkins.SlaveToMasterFileCallable; -import jenkins.SoloFilePathFilter; -import jenkins.model.Jenkins; -import jenkins.util.ContextResettingExecutorService; -import jenkins.util.VirtualFile; -import org.apache.commons.fileupload.FileItem; -import org.apache.commons.io.input.CountingInputStream; -import org.apache.tools.ant.DirectoryScanner; -import org.apache.tools.ant.Project; -import org.apache.tools.ant.types.FileSet; -import org.apache.tools.zip.ZipEntry; -import org.apache.tools.zip.ZipFile; -import org.kohsuke.stapler.Stapler; - -import javax.annotation.CheckForNull; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileFilter; -import java.io.FileInputStream; -import java.io.FileOutputStream; import java.io.FileWriter; import java.io.IOException; import java.io.InputStream; @@ -91,9 +73,12 @@ import java.io.RandomAccessFile; import java.io.Serializable; import java.io.Writer; import java.net.HttpURLConnection; +import java.net.MalformedURLException; import java.net.URI; import java.net.URL; import java.net.URLConnection; +import java.nio.file.Files; +import java.nio.file.InvalidPathException; import java.util.ArrayList; import java.util.Arrays; import java.util.Comparator; @@ -111,23 +96,45 @@ import java.util.logging.Level; import java.util.logging.Logger; import java.util.regex.Matcher; import java.util.regex.Pattern; - -import static hudson.FilePath.TarCompression.*; -import static hudson.Util.*; +import javax.annotation.CheckForNull; import javax.annotation.Nonnull; import javax.annotation.Nullable; +import jenkins.FilePathFilter; +import jenkins.MasterToSlaveFileCallable; +import jenkins.SlaveToMasterFileCallable; +import jenkins.SoloFilePathFilter; +import jenkins.model.Jenkins; import jenkins.security.MasterToSlaveCallable; +import jenkins.util.ContextResettingExecutorService; +import jenkins.util.SystemProperties; +import jenkins.util.VirtualFile; import org.apache.commons.compress.archivers.tar.TarArchiveEntry; import org.apache.commons.compress.archivers.tar.TarArchiveInputStream; +import org.apache.commons.fileupload.FileItem; +import org.apache.commons.io.input.CountingInputStream; +import org.apache.tools.ant.DirectoryScanner; +import org.apache.tools.ant.Project; +import org.apache.tools.ant.types.FileSet; +import org.apache.tools.zip.ZipEntry; +import org.apache.tools.zip.ZipFile; import org.jenkinsci.remoting.RoleChecker; import org.jenkinsci.remoting.RoleSensitive; +import org.kohsuke.accmod.Restricted; +import org.kohsuke.accmod.restrictions.NoExternalUse; +import org.kohsuke.stapler.Stapler; + +import static hudson.FilePath.TarCompression.GZIP; +import static hudson.Util.deleteFile; +import static hudson.Util.fixEmpty; +import static hudson.Util.isSymlink; +import java.util.Collections; /** * {@link File} like object with remoting support. * *

    * Unlike {@link File}, which always implies a file path on the current computer, - * {@link FilePath} represents a file path on a specific slave or the master. + * {@link FilePath} represents a file path on a specific agent or the master. * * Despite that, {@link FilePath} can be used much like {@link File}. It exposes * a bunch of operations (and we should add more operations as long as they are @@ -162,7 +169,7 @@ import org.jenkinsci.remoting.RoleSensitive; * } * // if 'file' is on a different node, this FileCallable will * // be transferred to that node and executed there. - * private static final class Freshen implements FileCallable<Void> { + * private static final class Freshen implements FileCallable<Void> { * private static final long serialVersionUID = 1; * @Override public Void invoke(File f, VirtualChannel channel) { * // f and file represent the same thing @@ -188,22 +195,27 @@ import org.jenkinsci.remoting.RoleSensitive; * @see VirtualFile */ public final class FilePath implements Serializable { + /** + * Maximum http redirects we will follow. This defaults to the same number as Firefox/Chrome tolerates. + */ + private static final int MAX_REDIRECTS = 20; + /** * When this {@link FilePath} represents the remote path, * this field is always non-null on master (the field represents - * the channel to the remote slave.) When transferred to a slave via remoting, + * the channel to the remote agent.) When transferred to a agent via remoting, * this field reverts back to null, since it's transient. * * When this {@link FilePath} represents a path on the master, - * this field is null on master. When transferred to a slave via remoting, + * this field is null on master. When transferred to a agent via remoting, * this field becomes non-null, representing the {@link Channel} * back to the master. * - * This is used to determine whether we are running on the master or the slave. + * This is used to determine whether we are running on the master or the agent. */ private transient VirtualChannel channel; - // since the platform of the slave might be different, can't use java.io.File + // since the platform of the agent might be different, can't use java.io.File private final String remote; /** @@ -223,9 +235,9 @@ public final class FilePath implements Serializable { * * @param channel * To create a path that represents a remote path, pass in a {@link Channel} - * that's connected to that machine. If null, that means the local file path. + * that's connected to that machine. If {@code null}, that means the local file path. */ - public FilePath(VirtualChannel channel, String remote) { + public FilePath(@CheckForNull VirtualChannel channel, @Nonnull String remote) { this.channel = channel instanceof LocalChannel ? null : channel; this.remote = normalize(remote); } @@ -237,7 +249,7 @@ public final class FilePath implements Serializable { * A "local" path means a file path on the computer where the * constructor invocation happened. */ - public FilePath(File localPath) { + public FilePath(@Nonnull File localPath) { this.channel = null; this.remote = normalize(localPath.getPath()); } @@ -247,19 +259,19 @@ public final class FilePath implements Serializable { * @param base starting point for resolution, and defines channel * @param rel a path which if relative will be resolved against base */ - public FilePath(FilePath base, String rel) { + public FilePath(@Nonnull FilePath base, @Nonnull String rel) { this.channel = base.channel; this.remote = normalize(resolvePathIfRelative(base, rel)); } - private String resolvePathIfRelative(FilePath base, String rel) { + private String resolvePathIfRelative(@Nonnull FilePath base, @Nonnull String rel) { if(isAbsolute(rel)) return rel; if(base.isUnix()) { // shouldn't need this replace, but better safe than sorry return base.remote+'/'+rel.replace('\\','/'); } else { // need this replace, see Slave.getWorkspaceFor and AbstractItem.getFullName, nested jobs on Windows - // slaves will always have a rel containing at least one '/' character. JENKINS-13649 + // agents will always have a rel containing at least one '/' character. JENKINS-13649 return base.remote+'\\'+rel.replace('/','\\'); } } @@ -267,7 +279,7 @@ public final class FilePath implements Serializable { /** * Is the given path name an absolute path? */ - private static boolean isAbsolute(String rel) { + private static boolean isAbsolute(@Nonnull String rel) { return rel.startsWith("/") || DRIVE_PATTERN.matcher(rel).matches() || UNC_PATTERN.matcher(rel).matches(); } @@ -279,7 +291,7 @@ public final class FilePath implements Serializable { * {@link File#getParent()} etc cannot handle ".." and "." in the path component very well, * so remove them. */ - private static String normalize(String path) { + private static String normalize(@Nonnull String path) { StringBuilder buf = new StringBuilder(); // Check for prefix designating absolute path Matcher m = ABSOLUTE_PREFIX_PATTERN.matcher(path); @@ -379,11 +391,8 @@ public final class FilePath implements Serializable { } public void zip(FilePath dst) throws IOException, InterruptedException { - OutputStream os = dst.write(); - try { + try (OutputStream os = dst.write()) { zip(os); - } finally { - os.close(); } } @@ -545,7 +554,7 @@ public final class FilePath implements Serializable { * @see #unzip(FilePath) */ public void unzipFrom(InputStream _in) throws IOException, InterruptedException { - final InputStream in = new RemoteInputStream(_in); + final InputStream in = new RemoteInputStream(_in, Flag.GREEDY); act(new SecureFileCallable() { public Void invoke(File dir, VirtualChannel channel) throws IOException { unzip(dir, in); @@ -584,11 +593,8 @@ public final class FilePath implements Serializable { if (p != null) { mkdirs(p); } - InputStream input = zip.getInputStream(e); - try { + try (InputStream input = zip.getInputStream(e)) { IOUtils.copy(input, writing(f)); - } finally { - input.close(); } try { FilePath target = new FilePath(f); @@ -714,7 +720,7 @@ public final class FilePath implements Serializable { */ public void untarFrom(InputStream _in, final TarCompression compression) throws IOException, InterruptedException { try { - final InputStream in = new RemoteInputStream(_in); + final InputStream in = new RemoteInputStream(_in, Flag.GREEDY); act(new SecureFileCallable() { public Void invoke(File dir, VirtualChannel channel) throws IOException { readFromTar("input stream",dir, compression.extract(in)); @@ -723,7 +729,7 @@ public final class FilePath implements Serializable { private static final long serialVersionUID = 1L; }); } finally { - org.apache.commons.io.IOUtils.closeQuietly(_in); + _in.close(); } } @@ -755,6 +761,10 @@ public final class FilePath implements Serializable { * @since 1.299 */ public boolean installIfNecessaryFrom(@Nonnull URL archive, @CheckForNull TaskListener listener, @Nonnull String message) throws IOException, InterruptedException { + return installIfNecessaryFrom(archive, listener, message, MAX_REDIRECTS); + } + + private boolean installIfNecessaryFrom(@Nonnull URL archive, @CheckForNull TaskListener listener, @Nonnull String message, int maxRedirects) throws InterruptedException, IOException { try { FilePath timestamp = this.child(".timestamp"); long lastModified = timestamp.lastModified(); @@ -777,14 +787,28 @@ public final class FilePath implements Serializable { } } - if (lastModified != 0 && con instanceof HttpURLConnection) { + if (con instanceof HttpURLConnection) { HttpURLConnection httpCon = (HttpURLConnection) con; int responseCode = httpCon.getResponseCode(); - if (responseCode == HttpURLConnection.HTTP_NOT_MODIFIED) { - return false; - } else if (responseCode != HttpURLConnection.HTTP_OK) { - listener.getLogger().println("Skipping installation of " + archive + " to " + remote + " due to server error: " + responseCode + " " + httpCon.getResponseMessage()); - return false; + if (responseCode == HttpURLConnection.HTTP_MOVED_PERM + || responseCode == HttpURLConnection.HTTP_MOVED_TEMP) { + // follows redirect + if (maxRedirects > 0) { + String location = httpCon.getHeaderField("Location"); + listener.getLogger().println("Following redirect " + archive.toExternalForm() + " -> " + location); + return installIfNecessaryFrom(getUrlFactory().newURL(location), listener, message, maxRedirects - 1); + } else { + listener.getLogger().println("Skipping installation of " + archive + " to " + remote + " due to too many redirects."); + return false; + } + } + if (lastModified != 0) { + if (responseCode == HttpURLConnection.HTTP_NOT_MODIFIED) { + return false; + } else if (responseCode != HttpURLConnection.HTTP_OK) { + listener.getLogger().println("Skipping installation of " + archive + " to " + remote + " due to server error: " + responseCode + " " + httpCon.getResponseMessage()); + return false; + } } } @@ -802,14 +826,14 @@ public final class FilePath implements Serializable { listener.getLogger().println(message); if (isRemote()) { - // First try to download from the slave machine. + // First try to download from the agent machine. try { act(new Unpack(archive)); timestamp.touch(sourceTimestamp); return true; } catch (IOException x) { if (listener != null) { - x.printStackTrace(listener.error("Failed to download " + archive + " from slave; will retry from master")); + Functions.printStackTrace(x, listener.error("Failed to download " + archive + " from agent; will retry from master")); } } } @@ -840,8 +864,7 @@ public final class FilePath implements Serializable { this.archive = archive; } @Override public Void invoke(File dir, VirtualChannel channel) throws IOException, InterruptedException { - InputStream in = archive.openStream(); - try { + try (InputStream in = archive.openStream()) { CountingInputStream cis = new CountingInputStream(in); try { if (archive.toExternalForm().endsWith(".zip")) { @@ -852,8 +875,6 @@ public final class FilePath implements Serializable { } catch (IOException x) { throw new IOException(String.format("Failed to unpack %s (%d bytes read)", archive, cis.getByteCount()), x); } - } finally { - in.close(); } return null; } @@ -866,11 +887,8 @@ public final class FilePath implements Serializable { * @since 1.293 */ public void copyFrom(URL url) throws IOException, InterruptedException { - InputStream in = url.openStream(); - try { + try (InputStream in = url.openStream()) { copyFrom(in); - } finally { - in.close(); } } @@ -880,11 +898,8 @@ public final class FilePath implements Serializable { * @since 1.293 */ public void copyFrom(InputStream in) throws IOException, InterruptedException { - OutputStream os = write(); - try { + try (OutputStream os = write()) { org.apache.commons.io.IOUtils.copy(in, os); - } finally { - os.close(); } } @@ -910,16 +925,9 @@ public final class FilePath implements Serializable { throw new IOException(e); } } else { - InputStream i = file.getInputStream(); - OutputStream o = write(); - try { + try (InputStream i = file.getInputStream(); + OutputStream o = write()) { org.apache.commons.io.IOUtils.copy(i,o); - } finally { - try { - o.close(); - } finally { - i.close(); - } } } } @@ -927,7 +935,7 @@ public final class FilePath implements Serializable { /** * Code that gets executed on the machine where the {@link FilePath} is local. * Used to act on {@link FilePath}. - * Warning: implementations must be serializable, so prefer a static nested class to an inner class. + * Warning: implementations must be serializable, so prefer a static nested class to an inner class. * *

    * Subtypes would likely want to extend from either {@link MasterToSlaveCallable} @@ -1133,7 +1141,7 @@ public final class FilePath implements Serializable { * @since 1.571 */ public @CheckForNull Computer toComputer() { - Jenkins j = Jenkins.getInstance(); + Jenkins j = Jenkins.getInstanceOrNull(); if (j != null) { for (Computer c : j.getComputers()) { if (getChannel()==c.getChannel()) { @@ -1196,7 +1204,7 @@ public final class FilePath implements Serializable { deleteFile(deleting(dir)); } catch (IOException e) { // if some of the child directories are big, it might take long enough to delete that - // it allows others to create new files, causing problemsl ike JENKINS-10113 + // it allows others to create new files, causing problems like JENKINS-10113 // so give it one more attempt before we give up. if(!isSymlink(dir)) deleteContentsRecursive(dir); @@ -1368,11 +1376,8 @@ public final class FilePath implements Serializable { throw new IOException("Failed to create a temporary directory in "+dir,e); } - Writer w = new FileWriter(writing(f)); - try { + try (Writer w = new FileWriter(writing(f))) { w.write(contents); - } finally { - w.close(); } return f.getAbsolutePath(); @@ -1466,8 +1471,13 @@ public final class FilePath implements Serializable { act(new SecureFileCallable() { private static final long serialVersionUID = -5094638816500738429L; public Void invoke(File f, VirtualChannel channel) throws IOException { - if(!f.exists()) - new FileOutputStream(creating(f)).close(); + if(!f.exists()) { + try { + Files.newOutputStream(creating(f).toPath()).close(); + } catch (InvalidPathException e) { + throw new IOException(e); + } + } if(!stating(f).setLastModified(timestamp)) throw new IOException("Failed to set the timestamp of "+f+" to "+timestamp); return null; @@ -1627,6 +1637,7 @@ public final class FilePath implements Serializable { *

    * This method returns direct children of the directory denoted by the 'this' object. */ + @Nonnull public List list() throws IOException, InterruptedException { return list((FileFilter)null); } @@ -1636,6 +1647,7 @@ public final class FilePath implements Serializable { * * @return can be empty but never null. Doesn't contain "." and ".." */ + @Nonnull public List listDirectories() throws IOException, InterruptedException { return list(new DirectoryFilter()); } @@ -1656,6 +1668,7 @@ public final class FilePath implements Serializable { * If this {@link FilePath} represents a remote path, * the filter object will be executed on the remote machine. */ + @Nonnull public List list(final FileFilter filter) throws IOException, InterruptedException { if (filter != null && !(filter instanceof Serializable)) { throw new IllegalArgumentException("Non-serializable filter of " + filter.getClass()); @@ -1664,7 +1677,9 @@ public final class FilePath implements Serializable { private static final long serialVersionUID = 1L; public List invoke(File f, VirtualChannel channel) throws IOException { File[] children = reading(f).listFiles(filter); - if(children ==null) return null; + if (children == null) { + return Collections.emptyList(); + } ArrayList r = new ArrayList(children.length); for (File child : children) @@ -1683,6 +1698,7 @@ public final class FilePath implements Serializable { * @return * can be empty but always non-null. */ + @Nonnull public FilePath[] list(final String includes) throws IOException, InterruptedException { return list(includes, null); } @@ -1697,6 +1713,7 @@ public final class FilePath implements Serializable { * can be empty but always non-null. * @since 1.407 */ + @Nonnull public FilePath[] list(final String includes, final String excludes) throws IOException, InterruptedException { return list(includes, excludes, true); } @@ -1712,6 +1729,7 @@ public final class FilePath implements Serializable { * can be empty but always non-null. * @since 1.465 */ + @Nonnull public FilePath[] list(final String includes, final String excludes, final boolean defaultExcludes) throws IOException, InterruptedException { return act(new SecureFileCallable() { private static final long serialVersionUID = 1L; @@ -1733,6 +1751,7 @@ public final class FilePath implements Serializable { * @return * A set of relative file names from the base directory. */ + @Nonnull private static String[] glob(File dir, String includes, String excludes, boolean defaultExcludes) throws IOException { if(isAbsolute(includes)) throw new IOException("Expecting Ant GLOB pattern, but saw '"+includes+"'. See http://ant.apache.org/manual/Types/fileset.html for syntax"); @@ -1747,8 +1766,13 @@ public final class FilePath implements Serializable { * Reads this file. */ public InputStream read() throws IOException, InterruptedException { - if(channel==null) - return new FileInputStream(reading(new File(remote))); + if(channel==null) { + try { + return Files.newInputStream(reading(new File(remote)).toPath()); + } catch (InvalidPathException e) { + throw new IOException(e); + } + } final Pipe p = Pipe.createRemoteToLocal(); actAsync(new SecureFileCallable() { @@ -1756,15 +1780,13 @@ public final class FilePath implements Serializable { @Override public Void invoke(File f, VirtualChannel channel) throws IOException, InterruptedException { - FileInputStream fis = null; - try { - fis = new FileInputStream(reading(f)); - Util.copyStream(fis, p.getOut()); + try (InputStream fis = Files.newInputStream(reading(f).toPath()); + OutputStream out = p.getOut()) { + org.apache.commons.io.IOUtils.copy(fis, out); + } catch (InvalidPathException e) { + p.error(new IOException(e)); } catch (Exception x) { p.error(x); - } finally { - org.apache.commons.io.IOUtils.closeQuietly(fis); - org.apache.commons.io.IOUtils.closeQuietly(p.getOut()); } return null; } @@ -1818,10 +1840,9 @@ public final class FilePath implements Serializable { private static final long serialVersionUID = 1L; public Void invoke(File f, VirtualChannel channel) throws IOException { - final OutputStream out = new java.util.zip.GZIPOutputStream(p.getOut(), 8192); - RandomAccessFile raf = null; - try { - raf = new RandomAccessFile(reading(f), "r"); + try (OutputStream os = p.getOut(); + OutputStream out = new java.util.zip.GZIPOutputStream(os, 8192); + RandomAccessFile raf = new RandomAccessFile(reading(f), "r")) { raf.seek(offset); byte[] buf = new byte[8192]; int len; @@ -1829,15 +1850,6 @@ public final class FilePath implements Serializable { out.write(buf, 0, len); } return null; - } finally { - IOUtils.closeQuietly(out); - if (raf != null) { - try { - raf.close(); - } catch (IOException e) { - // ignore - } - } } } }); @@ -1849,11 +1861,8 @@ public final class FilePath implements Serializable { * Reads this file into a string, by using the current system encoding. */ public String readToString() throws IOException, InterruptedException { - InputStream in = read(); - try { + try (InputStream in = read()) { return org.apache.commons.io.IOUtils.toString(in); - } finally { - in.close(); } } @@ -1876,7 +1885,11 @@ public final class FilePath implements Serializable { if(channel==null) { File f = new File(remote).getAbsoluteFile(); mkdirs(f.getParentFile()); - return new FileOutputStream(writing(f)); + try { + return Files.newOutputStream(writing(f).toPath()); + } catch (InvalidPathException e) { + throw new IOException(e); + } } return act(new SecureFileCallable() { @@ -1884,8 +1897,12 @@ public final class FilePath implements Serializable { public OutputStream invoke(File f, VirtualChannel channel) throws IOException, InterruptedException { f = f.getAbsoluteFile(); mkdirs(f.getParentFile()); - FileOutputStream fos = new FileOutputStream(writing(f)); - return new RemoteOutputStream(fos); + try { + OutputStream fos = Files.newOutputStream(writing(f).toPath()); + return new RemoteOutputStream(fos); + } catch (InvalidPathException e) { + throw new IOException(e); + } } }); } @@ -1902,12 +1919,11 @@ public final class FilePath implements Serializable { private static final long serialVersionUID = 1L; public Void invoke(File f, VirtualChannel channel) throws IOException { mkdirs(f.getParentFile()); - FileOutputStream fos = new FileOutputStream(writing(f)); - Writer w = encoding != null ? new OutputStreamWriter(fos, encoding) : new OutputStreamWriter(fos); - try { + try (OutputStream fos = Files.newOutputStream(writing(f).toPath()); + Writer w = encoding != null ? new OutputStreamWriter(fos, encoding) : new OutputStreamWriter(fos)) { w.write(content); - } finally { - w.close(); + } catch (InvalidPathException e) { + throw new IOException(e); } return null; } @@ -1980,11 +1996,8 @@ public final class FilePath implements Serializable { */ public void copyTo(FilePath target) throws IOException, InterruptedException { try { - OutputStream out = target.write(); - try { + try (OutputStream out = target.write()) { copyTo(out); - } finally { - out.close(); } } catch (IOException e) { throw new IOException("Failed to copy "+this+" to "+target,e); @@ -2011,14 +2024,13 @@ public final class FilePath implements Serializable { act(new SecureFileCallable() { private static final long serialVersionUID = 4088559042349254141L; public Void invoke(File f, VirtualChannel channel) throws IOException { - FileInputStream fis = null; - try { - fis = new FileInputStream(reading(f)); - Util.copyStream(fis,out); + try (InputStream fis = Files.newInputStream(reading(f).toPath())) { + org.apache.commons.io.IOUtils.copy(fis, out); return null; + } catch (InvalidPathException e) { + throw new IOException(e); } finally { - org.apache.commons.io.IOUtils.closeQuietly(fis); - org.apache.commons.io.IOUtils.closeQuietly(out); + out.close(); } } }); @@ -2170,11 +2182,9 @@ public final class FilePath implements Serializable { Future future = target.actAsync(new SecureFileCallable() { private static final long serialVersionUID = 1L; public Void invoke(File f, VirtualChannel channel) throws IOException { - try { - readFromTar(remote + '/' + description, f,TarCompression.GZIP.extract(pipe.getIn())); + try (InputStream in = pipe.getIn()) { + readFromTar(remote + '/' + description, f,TarCompression.GZIP.extract(in)); return null; - } finally { - pipe.getIn().close(); } } }); @@ -2198,10 +2208,8 @@ public final class FilePath implements Serializable { Future future = actAsync(new SecureFileCallable() { private static final long serialVersionUID = 1L; public Integer invoke(File f, VirtualChannel channel) throws IOException { - try { - return writeToTar(f, scanner, TarCompression.GZIP.compress(pipe.getOut())); - } finally { - pipe.getOut().close(); + try (OutputStream out = pipe.getOut()) { + return writeToTar(f, scanner, TarCompression.GZIP.compress(out)); } } }); @@ -2267,17 +2275,16 @@ public final class FilePath implements Serializable { /** * Reads from a tar stream and stores obtained files to the base dir. - * @since TODO supports large files > 10 GB, migration to commons-compress + * Supports large files > 10 GB since 1.627 when this was migrated to use commons-compress. */ private void readFromTar(String name, File baseDir, InputStream in) throws IOException { - TarArchiveInputStream t = new TarArchiveInputStream(in); - + // TarInputStream t = new TarInputStream(in); - try { + try (TarArchiveInputStream t = new TarArchiveInputStream(in)) { TarArchiveEntry te; while ((te = t.getNextTarEntry()) != null) { - File f = new File(baseDir,te.getName()); - if(te.isDirectory()) { + File f = new File(baseDir, te.getName()); + if (te.isDirectory()) { mkdirs(f); } else { File parent = f.getParentFile(); @@ -2287,22 +2294,20 @@ public final class FilePath implements Serializable { if (te.isSymbolicLink()) { new FilePath(f).symlinkTo(te.getLinkName(), TaskListener.NULL); } else { - IOUtils.copy(t,f); + IOUtils.copy(t, f); f.setLastModified(te.getModTime().getTime()); - int mode = te.getMode()&0777; - if(mode!=0 && !Functions.isWindows()) // be defensive - _chmod(f,mode); + int mode = te.getMode() & 0777; + if (mode != 0 && !Functions.isWindows()) // be defensive + _chmod(f, mode); } } } - } catch(IOException e) { - throw new IOException("Failed to extract "+name,e); + } catch (IOException e) { + throw new IOException("Failed to extract " + name, e); } catch (InterruptedException e) { Thread.currentThread().interrupt(); // process this later - throw new IOException("Failed to extract "+name,e); - } finally { - t.close(); + throw new IOException("Failed to extract " + name, e); } } @@ -2319,6 +2324,7 @@ public final class FilePath implements Serializable { } private static final class IsUnix extends MasterToSlaveCallable { + @Nonnull public Boolean call() throws IOException { return File.pathSeparatorChar==':'; } @@ -2344,7 +2350,7 @@ public final class FilePath implements Serializable { } /** - * Same as {@link #validateFileMask(String, int, boolean)} with caseSensitive set to true + * Same as {@link #validateAntFileMask(String, int, boolean)} with caseSensitive set to true */ public String validateAntFileMask(final String fileMasks, final int bound) throws IOException, InterruptedException { return validateAntFileMask(fileMasks, bound, true); @@ -2354,7 +2360,7 @@ public final class FilePath implements Serializable { * Default bound for {@link #validateAntFileMask(String, int, boolean)}. * @since 1.592 */ - public static int VALIDATE_ANT_FILE_MASK_BOUND = Integer.getInteger(FilePath.class.getName() + ".VALIDATE_ANT_FILE_MASK_BOUND", 10000); + public static int VALIDATE_ANT_FILE_MASK_BOUND = SystemProperties.getInteger(FilePath.class.getName() + ".VALIDATE_ANT_FILE_MASK_BOUND", 10000); /** * Like {@link #validateAntFileMask(String)} but performing only a bounded number of operations. @@ -2396,7 +2402,7 @@ public final class FilePath implements Serializable { for (String token : Util.tokenize(fileMask)) matched &= hasMatch(dir,token,caseSensitive); if(matched) - return Messages.FilePath_validateAntFileMask_whitespaceSeprator(); + return Messages.FilePath_validateAntFileMask_whitespaceSeparator(); } // a common mistake is to assume the wrong base dir, and there are two variations @@ -2520,6 +2526,31 @@ public final class FilePath implements Serializable { }); } + private static final UrlFactory DEFAULT_URL_FACTORY = new UrlFactory(); + + @Restricted(NoExternalUse.class) + static class UrlFactory { + public URL newURL(String location) throws MalformedURLException { + return new URL(location); + } + } + + private UrlFactory urlFactory; + + @VisibleForTesting + @Restricted(NoExternalUse.class) + void setUrlFactory(UrlFactory urlFactory) { + this.urlFactory = urlFactory; + } + + private UrlFactory getUrlFactory() { + if (urlFactory != null) { + return urlFactory; + } else { + return DEFAULT_URL_FACTORY; + } + } + /** * Short for {@code validateFileMask(path, value, true)} */ @@ -2528,7 +2559,7 @@ public final class FilePath implements Serializable { } /** - * Shortcut for {@link #validateFileMask(String,true,boolean)} as the left-hand side can be null. + * Shortcut for {@link #validateFileMask(String,boolean,boolean)} with {@code errorIfNotExist} true, as the left-hand side can be null. */ public static FormValidation validateFileMask(@CheckForNull FilePath path, String value, boolean caseSensitive) throws IOException { if(path==null) return FormValidation.ok(); @@ -2800,6 +2831,11 @@ public final class FilePath implements Serializable { new NamingThreadFactory(new DaemonThreadFactory(), "FilePath.localPool")) )); + + /** + * Channel to the current instance. + */ + @Nonnull public static final LocalChannel localChannel = new LocalChannel(threadPoolForRemoting); private @Nonnull SoloFilePathFilter filterNonNull() { diff --git a/core/src/main/java/hudson/FileSystemProvisioner.java b/core/src/main/java/hudson/FileSystemProvisioner.java index bbb98f5e9d0c873ca4bc5af33b1d2b0b34048e58..13f55b7370028832eba66ea7e16af84cb19547aa 100644 --- a/core/src/main/java/hudson/FileSystemProvisioner.java +++ b/core/src/main/java/hudson/FileSystemProvisioner.java @@ -31,9 +31,12 @@ import hudson.model.Describable; import hudson.model.Job; import hudson.model.TaskListener; import hudson.util.io.ArchiverFactory; +import java.nio.file.Files; +import java.nio.file.InvalidPathException; import jenkins.model.Jenkins; import hudson.model.listeners.RunListener; import hudson.scm.SCM; +import org.jenkinsci.Symbol; import java.io.BufferedOutputStream; import java.io.File; @@ -51,7 +54,7 @@ import java.io.OutputStream; * STILL A WORK IN PROGRESS. SUBJECT TO CHANGE! DO NOT EXTEND. * * TODO: is this per {@link Computer}? Per {@link Job}? - * -> probably per slave. + * → probably per agent. * *

    Design Problems

    *
      @@ -71,7 +74,7 @@ import java.io.OutputStream; * one more configuration option. It's especially tricky because * during the configuration we don't know the OS type. * - * OTOH special slave type like the ones for network.com grid can + * OTOH special agent type like the ones for network.com grid can * hide this. *
    * @@ -80,8 +83,8 @@ import java.io.OutputStream; * * To recap, * - * - when a slave connects, we auto-detect the file system provisioner. - * (for example, ZFS FSP would check the slave root user prop + * - when an agent connects, we auto-detect the file system provisioner. + * (for example, ZFS FSP would check the agent root user prop * and/or attempt to "pfexec zfs create" and take over.) * * - the user may configure jobs for snapshot collection, along with @@ -214,11 +217,10 @@ public abstract class FileSystemProvisioner implements ExtensionPoint, Describab */ public WorkspaceSnapshot snapshot(AbstractBuild build, FilePath ws, String glob, TaskListener listener) throws IOException, InterruptedException { File wss = new File(build.getRootDir(),"workspace.tgz"); - OutputStream os = new BufferedOutputStream(new FileOutputStream(wss)); - try { - ws.archive(ArchiverFactory.TARGZ,os,glob); - } finally { - os.close(); + try (OutputStream os = new BufferedOutputStream(Files.newOutputStream(wss.toPath()))) { + ws.archive(ArchiverFactory.TARGZ, os, glob); + } catch (InvalidPathException e) { + throw new IOException(e); } return new WorkspaceSnapshotImpl(); } @@ -235,7 +237,7 @@ public abstract class FileSystemProvisioner implements ExtensionPoint, Describab } } - @Extension + @Extension @Symbol("standard") public static final class DescriptorImpl extends FileSystemProvisionerDescriptor { public boolean discard(FilePath ws, TaskListener listener) throws IOException, InterruptedException { // the default provisioner does not do anything special, diff --git a/core/src/main/java/hudson/FileSystemProvisionerDescriptor.java b/core/src/main/java/hudson/FileSystemProvisionerDescriptor.java index 4827366d36f41f3c7845aa71571eef7480d61f09..1e02e11f7f4dfdbedf2f00b853535725c1d43f86 100644 --- a/core/src/main/java/hudson/FileSystemProvisionerDescriptor.java +++ b/core/src/main/java/hudson/FileSystemProvisionerDescriptor.java @@ -38,9 +38,9 @@ public abstract class FileSystemProvisionerDescriptor extends Descriptor - * Because users may modify the file system behind Hudson, and slaves may come and go when + * Because users may modify the file system behind Hudson, and agents may come and go when * configuration changes happen, in general case Hudson is unable to keep track of which jobs - * have workspaces in which slaves. + * have workspaces in which agents. * *

    * So instead we rey on a garbage collection mechanism, to look at workspaces left in the file system @@ -63,7 +63,7 @@ public abstract class FileSystemProvisionerDescriptor extends Descriptor= 0; + final Jenkins jenkins = Jenkins.getInstanceOrNull(); + return jenkins != null && jenkins.getInitLevel().compareTo(InitMilestone.EXTENSIONS_AUGMENTED) >= 0 + && !jenkins.isTerminating(); } public static void initPageVariables(JellyContext context) { @@ -561,7 +579,7 @@ public class Functions { /** * Set to true if you need to use the debug version of YUI. */ - public static boolean DEBUG_YUI = Boolean.getBoolean("debug.YUI"); + public static boolean DEBUG_YUI = SystemProperties.getBoolean("debug.YUI"); /** * Creates a sub map by using the given range (both ends inclusive). @@ -616,7 +634,7 @@ public class Functions { response.addCookie(c); } if (refresh) { - response.addHeader("Refresh", System.getProperty("hudson.Functions.autoRefreshSeconds", "10")); + response.addHeader("Refresh", SystemProperties.getString("hudson.Functions.autoRefreshSeconds", "10")); } } @@ -838,9 +856,9 @@ public class Functions { */ public static String getFooterURL() { if(footerURL == null) { - footerURL = System.getProperty("hudson.footerURL"); + footerURL = SystemProperties.getString("hudson.footerURL"); if(StringUtils.isBlank(footerURL)) { - footerURL = "http://jenkins-ci.org/"; + footerURL = "https://jenkins.io/"; } } return footerURL; @@ -879,10 +897,24 @@ public class Functions { return SCM._for(project); } + /** + * @since 2.12 + * @deprecated replaced by {@link Slave.SlaveDescriptor#computerLauncherDescriptors(Slave)} + */ + @Deprecated + @Restricted(DoNotUse.class) + @RestrictedSince("2.12") public static List> getComputerLauncherDescriptors() { return Jenkins.getInstance().>getDescriptorList(ComputerLauncher.class); } + /** + * @since 2.12 + * @deprecated replaced by {@link Slave.SlaveDescriptor#retentionStrategyDescriptors(Slave)} + */ + @Deprecated + @Restricted(DoNotUse.class) + @RestrictedSince("2.12") public static List>> getRetentionStrategyDescriptors() { return RetentionStrategy.all(); } @@ -903,6 +935,13 @@ public class Functions { return MyViewsTabBar.all(); } + /** + * @deprecated replaced by {@link Slave.SlaveDescriptor#nodePropertyDescriptors(Slave)} + * @since 2.12 + */ + @Deprecated + @Restricted(DoNotUse.class) + @RestrictedSince("2.12") public static List getNodePropertyDescriptors(Class clazz) { List result = new ArrayList(); Collection list = (Collection) Jenkins.getInstance().getDescriptorList(NodeProperty.class); @@ -955,12 +994,8 @@ public class Functions { Descriptor d = c.getInstance(); if (d.getGlobalConfigPage()==null) continue; - if (d instanceof GlobalConfiguration) { - if (predicate.apply(((GlobalConfiguration)d).getCategory())) - r.add(new Tag(c.ordinal(), d)); - } else { - if (predicate.apply(GlobalConfigurationCategory.get(Unclassified.class))) - r.add(new Tag(0, d)); + if (predicate.apply(d.getCategory())) { + r.add(new Tag(c.ordinal(), d)); } } Collections.sort(r); @@ -1068,7 +1103,7 @@ public class Functions { ItemGroup ig = i.getParent(); url = i.getShortUrl()+url; - if(ig== Jenkins.getInstance() || (view != null && ig == view.getOwnerItemGroup())) { + if(ig== Jenkins.getInstance() || (view != null && ig == view.getOwner().getItemGroup())) { assert i instanceof TopLevelItem; if (view != null) { // assume p and the current page belong to the same view, so return a relative path @@ -1359,7 +1394,7 @@ public class Functions { } /** - * Resoruce path prefix. + * Resource path prefix. */ public static String getResourcePath() { return Jenkins.RESOURCE_PATH; @@ -1408,19 +1443,87 @@ public class Functions { } /** - * Gets info about the specified {@link Throwable}. + * Prints a stack trace from an exception into a readable form. + * Unlike {@link Throwable#printStackTrace(PrintWriter)}, this implementation follows the suggestion of JDK-6507809 + * to produce a linear trace even when {@link Throwable#getCause} is used. * @param t Input {@link Throwable} - * @return If {@link Throwable} is not null, a summary info with the - * stacktrace will be returned. Otherwise, the method returns a default + * @return If {@code t} is not null, generally a multiline string ending in a (platform-specific) newline; + * otherwise, the method returns a default * "No exception details" string. */ - public static String printThrowable(@CheckForNull Throwable t) { + public static @Nonnull String printThrowable(@CheckForNull Throwable t) { if (t == null) { return Messages.Functions_NoExceptionDetails(); } - StringWriter sw = new StringWriter(); - t.printStackTrace(new PrintWriter(sw)); - return sw.toString(); + StringBuilder s = new StringBuilder(); + doPrintStackTrace(s, t, null, "", new HashSet()); + return s.toString(); + } + private static void doPrintStackTrace(@Nonnull StringBuilder s, @Nonnull Throwable t, @CheckForNull Throwable higher, @Nonnull String prefix, @Nonnull Set encountered) { + if (!encountered.add(t)) { + s.append("\n"); + return; + } + if (Util.isOverridden(Throwable.class, t.getClass(), "printStackTrace", PrintWriter.class)) { + StringWriter sw = new StringWriter(); + t.printStackTrace(new PrintWriter(sw)); + s.append(sw.toString()); + return; + } + Throwable lower = t.getCause(); + if (lower != null) { + doPrintStackTrace(s, lower, t, prefix, encountered); + } + for (Throwable suppressed : t.getSuppressed()) { + s.append(prefix).append("Also: "); + doPrintStackTrace(s, suppressed, t, prefix + "\t", encountered); + } + if (lower != null) { + s.append(prefix).append("Caused: "); + } + String summary = t.toString(); + if (lower != null) { + String suffix = ": " + lower; + if (summary.endsWith(suffix)) { + summary = summary.substring(0, summary.length() - suffix.length()); + } + } + s.append(summary).append(IOUtils.LINE_SEPARATOR); + StackTraceElement[] trace = t.getStackTrace(); + int end = trace.length; + if (higher != null) { + StackTraceElement[] higherTrace = higher.getStackTrace(); + while (end > 0) { + int higherEnd = end + higherTrace.length - trace.length; + if (higherEnd <= 0 || !higherTrace[higherEnd - 1].equals(trace[end - 1])) { + break; + } + end--; + } + } + for (int i = 0; i < end; i++) { + s.append(prefix).append("\tat ").append(trace[i]).append(IOUtils.LINE_SEPARATOR); + } + } + + /** + * Like {@link Throwable#printStackTrace(PrintWriter)} but using {@link #printThrowable} format. + * @param t an exception to print + * @param pw the log + * @since 2.43 + */ + public static void printStackTrace(@CheckForNull Throwable t, @Nonnull PrintWriter pw) { + pw.println(printThrowable(t).trim()); + } + + /** + * Like {@link Throwable#printStackTrace(PrintStream)} but using {@link #printThrowable} format. + * @param t an exception to print + * @param ps the log + * @since 2.43 + */ + public static void printStackTrace(@CheckForNull Throwable t, @Nonnull PrintStream ps) { + ps.println(printThrowable(t).trim()); } /** @@ -1527,10 +1630,12 @@ public class Functions { /** * Computes the hyperlink to actions, to handle the situation when the {@link Action#getUrlName()} * returns absolute URL. + * + * @return null in case the action should not be presented to the user. */ - public static String getActionUrl(String itUrl,Action action) { + public static @CheckForNull String getActionUrl(String itUrl,Action action) { String urlName = action.getUrlName(); - if(urlName==null) return null; // to avoid NPE and fail to render the whole page + if(urlName==null) return null; // Should not be displayed try { if (new URI(urlName).isAbsolute()) { return urlName; @@ -1567,15 +1672,11 @@ public class Functions { return projectName; } - public String getSystemProperty(String key) { - return System.getProperty(key); - } - /** * Obtains the host name of the Hudson server that clients can use to talk back to. *

    * This is primarily used in slave-agent.jnlp.jelly to specify the destination - * that the slaves talk to. + * that the agents talk to. */ public String getServerName() { // Try to infer this from the configured root URL. @@ -1649,7 +1750,7 @@ public class Functions { */ public static List getPageDecorators() { // this method may be called to render start up errors, at which point Hudson doesn't exist yet. see HUDSON-3608 - if(Jenkins.getInstance()==null) return Collections.emptyList(); + if(Jenkins.getInstanceOrNull()==null) return Collections.emptyList(); return PageDecorator.all(); } @@ -1671,13 +1772,13 @@ public class Functions { } public static String getCrumb(StaplerRequest req) { - Jenkins h = Jenkins.getInstance(); + Jenkins h = Jenkins.getInstanceOrNull(); CrumbIssuer issuer = h != null ? h.getCrumbIssuer() : null; return issuer != null ? issuer.getCrumb(req) : ""; } public static String getCrumbRequestField() { - Jenkins h = Jenkins.getInstance(); + Jenkins h = Jenkins.getInstanceOrNull(); CrumbIssuer issuer = h != null ? h.getCrumbIssuer() : null; return issuer != null ? issuer.getDescriptor().getCrumbRequestField() : ""; } @@ -1697,7 +1798,7 @@ public class Functions { } /** - * Generate a series of <script> tags to include script.js + * Generate a series of {@code diff --git a/core/src/main/resources/hudson/PluginManager/installed.properties b/core/src/main/resources/hudson/PluginManager/installed.properties index 2fa0cafb8083f2b150ecd074aeb95ea0321dc2b7..0c1b07c42737b8ee2958fe7c7f1691c9eb8c56b8 100644 --- a/core/src/main/resources/hudson/PluginManager/installed.properties +++ b/core/src/main/resources/hudson/PluginManager/installed.properties @@ -19,6 +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. -wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins downgradeTo=Downgrade to {0} -requires.restart=This Jenkins instance requires a restart. Changing the state of plugins at this time is strongly discouraged. Restart Jenkins before proceeding. \ No newline at end of file +requires.restart=This Jenkins instance requires a restart. Changing the state of plugins at this time is strongly discouraged. Restart Jenkins before proceeding. diff --git a/core/src/main/resources/hudson/PluginManager/installed_bg.properties b/core/src/main/resources/hudson/PluginManager/installed_bg.properties index 8d62547e3d7d906b808c8d67b21d25fc4298baec..60dc8c4e29ac354bafffe5de51bec57b6b793d95 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_bg.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_bg.properties @@ -1,13 +1,67 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=\u041F\u0440\u043E\u043C\u0435\u043D\u0438\u0442\u0435 \u0449\u0435 \u0441\u0442\u0430\u043D\u0430\u0442 \u0430\u043A\u0442\u0438\u0432\u043D\u0438 \u0441\u043B\u0435\u0434 \u0440\u0435\u0441\u0442\u0430\u0440\u0442 \u043D\u0430 Jenkins -Enabled=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043D -Name=\u0418\u043C\u0435 -Pinned=\u0417\u0430\u043B\u0435\u043F\u0435\u043D -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=\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0439 \u0432 \u043C\u043E\u043C\u0435\u043D\u0442\u0430 \u0432 \u043A\u043E\u0439\u0442\u043E \u043D\u044F\u043C\u0430 \u043F\u043E\u0432\u0435\u0447\u0435 \u0440\u0430\u0431\u043E\u0442\u0435\u0449\u0438 \u0431\u0438\u043B\u0434\u043E\u0432\u0435. -Uncheck\ to\ disable\ the\ plugin=\u0418\u0437\u0447\u0438\u0441\u0442\u0435\u0442\u0435 \u0437\u0430 \u0434\u0430 \u0437\u0430\u0431\u0440\u0430\u043D\u0438\u0442\u0435 \u043F\u043B\u044A\u0433\u0438\u043D\u0430 -Uninstall=\u0414\u0435\u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0439 -Unpin=\u041E\u0442\u043B\u0435\u043F\u0438 -Version=\u0412\u0435\u0440\u0441\u0438\u044F -downgradeTo=\u0412\u044A\u0440\u043D\u0438 \u043A\u044A\u043C \u0432\u0435\u0440\u0441\u0438\u044F {0} +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 +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} +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\ dependants=\ + \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. +It\ has\ one\ or\ more\ installed\ dependants=\ + \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 21847ed21d95ec27e0b955dc11f6614d8e745f13..9fb56abb6a8981744a87550484f14cb02aa68927 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_cs.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_cs.properties @@ -3,11 +3,9 @@ Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Zm\u011Bny se projev\u00ED a\u017E po restartu Jenkinse Enabled=Povolen\u00E9 Name=Jm\u00E9no -Pinned=Preferovat 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 Uninstall=Odinstalovat Version=Verze downgradeTo=Vr\u00E1tit se k {0} -wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins diff --git a/core/src/main/resources/hudson/PluginManager/installed_da.properties b/core/src/main/resources/hudson/PluginManager/installed_da.properties index 4086d2a08ac457e4508899f2278ebd1c94b988ad..9e17d018924b1a85654c414ad1927ddc02722b72 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_da.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_da.properties @@ -21,15 +21,12 @@ # THE SOFTWARE. Version=Version -wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins 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 No\ plugins\ installed.=Ingen installerede plugins. downgradeTo=Nedgrader til {0} -Pinned=L\u00e5st Name=Navn Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=\u00c6ndringer tr\u00e6der i kraft efter Jenkins er genstartet Enabled=Sl\u00e5et til -Unpin=L\u00e5s op diff --git a/core/src/main/resources/hudson/PluginManager/installed_de.properties b/core/src/main/resources/hudson/PluginManager/installed_de.properties index 3653a5c9e839f877ae82b4bfb8ce5761c8ec8656..442d08f12707b16915c7d46dfe698185392783ba 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_de.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_de.properties @@ -21,17 +21,24 @@ # THE SOFTWARE. No\ plugins\ installed.=Keine Plugins installiert. -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 lschen +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=\u00C4nderungen treten nach einem Neustart von Jenkins in Kraft. +Uncheck\ to\ disable\ the\ plugin=Zum Deaktivieren des Plugins Markierung entfernen Enabled=Aktiviert Name=Name Version=Version Restart\ Once\ No\ Jobs\ Are\ Running=Neu starten, sobald keine Jobs mehr laufen. Previously\ installed\ version=Vorher installierte Version downgradeTo={0} wiederherstellen -Pinned=Gesperrt -Unpin=Entsperren -wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins 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\ dependants=Mindestens ein Plugin ist von diesem abh\u00E4ngig +Warning=Warnung +Filter=Filter +It\ has\ one\ or\ more\ enabled\ dependants=Mindestens ein aktives Plugin ist von diesem abh\u00E4ngig +It\ has\ one\ or\ more\ disabled\ dependencies=Mindestens eine Abh\u00E4ngigkeit ist deaktiviert +This\ plugin\ cannot\ be\ uninstalled=Dieses Plugin kann nicht deinstalliert werden. +No\ description\ available.=Keine Beschreibung verf\u00FCgbar. +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 70956f31d1b389dd4f44eef441fb8e53e1bcaa8f..34f849e78dccc253e5099bc7b453a12f3e0596ed 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_es.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_es.properties @@ -27,10 +27,7 @@ Name=Nombre Version=Versin Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Los cambios no estarn disponibles hasta que Jenkins se reinicie Restart\ Once\ No\ Jobs\ Are\ Running=Reiniciar cuando no haya tareas en ejecucin -wiki.url="http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins" downgradeTo=Bajar a la version {0}. Previously\ installed\ version=Versin previamente instalada. -Pinned=marcado Uninstall=Desinstalar -Unpin=desmarcar 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 c04443e10d2fe07012c6a0233fd44bf0581752dc..209c8d6e2d3903add7a171d1838baf01770f505f 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_fi.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_fi.properties @@ -23,10 +23,8 @@ Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Muutokset astuvat voimaan kun Jenkins k\u00E4ynnistet\u00E4\u00E4n Enabled=Aktivoitu Name=Nimi -Pinned=Lukittu 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 -Unpin=Vapauta lukitus 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 fde1e85e1c11cb7e8ef32524056d3193409e6fa4..b3767a6e65ecde4201c44f5c2db50a59c22e5dd2 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_fr.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_fr.properties @@ -28,9 +28,6 @@ Uncheck\ to\ disable\ the\ plugin=D\u00e9cochez pour d\u00e9sactiver le plugin Enabled=Activ\u00e9 Name=Nom Uninstall=D\u00E9sinstaller -Unpin=Annuler \u00E9pingler Version=Version -Pinned=\u00C9pingl\u00E9 Previously\ installed\ version=Version pr\u00E9c\u00E9dente downgradeTo=R\u00E9trograder \u00E0 {0} -wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins diff --git a/core/src/main/resources/hudson/PluginManager/installed_hu.properties b/core/src/main/resources/hudson/PluginManager/installed_hu.properties index 01d83570d004de8d58e6774dc17923350d7e5bd6..a71aafe3567e5b4b7f530dc97750319017773d7e 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_hu.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_hu.properties @@ -28,4 +28,3 @@ Restart\ Once\ No\ Jobs\ Are\ Running=\u00DAjraind\u00EDt\u00E1s ha m\u00E1r nin 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 -wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins diff --git a/core/src/main/resources/hudson/PluginManager/installed_id.properties b/core/src/main/resources/hudson/PluginManager/installed_id.properties deleted file mode 100644 index 880aaa392fad34f80ba91b0b22d21709a4c848e1..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/PluginManager/installed_id.properties +++ /dev/null @@ -1,8 +0,0 @@ -# This file is under the MIT License by authors - -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Perubahan akan berefek ketika anda mengulang Jenkins -Enabled=Diaktifkan -Name=Nama -Previously\ installed\ version=Versi terpasang sebelumnya -Restart\ Once\ No\ Jobs\ Are\ Running=Restart Begitu Tidak Ada Pekerjaan Berjalan -Version=Versi diff --git a/core/src/main/resources/hudson/PluginManager/installed_it.properties b/core/src/main/resources/hudson/PluginManager/installed_it.properties index 0c30e7269d122832fc67c9585b1bffb81121b59c..2be147af2a3a07f1079642d9cdaaa49f304b847a 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_it.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_it.properties @@ -23,12 +23,9 @@ Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Le modifiche avranno effetto quando riavvierai Jenkins Enabled=Attivo Name=Nome -Pinned=Bloccato Previously\ installed\ version=Versione precedente Restart\ Once\ No\ Jobs\ Are\ Running=Riavvia quando non ci sono lavori in esecuzione Uncheck\ to\ disable\ the\ plugin=Deseleziona per disattivare il plugin Uninstall=Disintalla -Unpin=Sblocca Version=Versione downgradeTo=Retrocedi a -wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins diff --git a/core/src/main/resources/hudson/PluginManager/installed_ja.properties b/core/src/main/resources/hudson/PluginManager/installed_ja.properties index cca9a2797f7350e2a3c8134cd565fddc7811f0d7..8e9aaf1ef60c3fe9b450e5938855407ea3b3810d 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_ja.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_ja.properties @@ -27,9 +27,6 @@ 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 -Pinned=\u30d4\u30f3 -Unpin=\u89e3\u9664 -wiki.url=http://wiki.jenkins-ci.org/display/JA/Pinned+Plugins 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 diff --git a/core/src/main/resources/hudson/PluginManager/installed_ko.properties b/core/src/main/resources/hudson/PluginManager/installed_ko.properties index 7a6397fbf43c26b8aff2d1febbb00bca4a35f369..1d745838f474d6d7a274acca4520adbe482b0bc3 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_ko.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_ko.properties @@ -23,13 +23,10 @@ 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 -Pinned=\uACE0\uC815\uB428 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 -Unpin=\uACE0\uC815 \uD574\uC81C Version=\uBC84\uC804 downgradeTo={0}\uC73C\uB85C \uB2E4\uC6B4\uADF8\uB808\uC774\uB4DC -wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins diff --git a/core/src/main/resources/hudson/PluginManager/installed_lv.properties b/core/src/main/resources/hudson/PluginManager/installed_lv.properties index 27b7271b2c7ca80d3bf812a3945af09a2c23521a..6539b07429a8033f1f0bd1e9a25b1f4919dcec87 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_lv.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_lv.properties @@ -3,11 +3,8 @@ Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Izmai\u0146as st\u0101sies sp\u0113k\u0101 p\u0113c Jenkins p\u0101rstart\u0113\u0161anas Enabled=Iespejots Name=Nosaukums -Pinned=Piesaist\u012Bts 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 -Unpin=Atsiet Version=Versija -wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins diff --git a/core/src/main/resources/hudson/PluginManager/installed_nl.properties b/core/src/main/resources/hudson/PluginManager/installed_nl.properties index 78c5ea28610ab25a901a9f3959b97abf820a91b1..aa7cc818944895680c9fafd0b01dbf47cf58fb2d 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_nl.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_nl.properties @@ -27,10 +27,7 @@ Restart\ Once\ No\ Jobs\ Are\ Running=Opnieuw starten Uncheck\ to\ disable\ the\ plugin=Vink aan om de plugin te de-activeren. Enabled=Actief Name=Naam -Unpin=Losmaken Version=Versie -Pinned=Vastgezet Previously\ installed\ version=Vorige ge\u00EFnstalleerde versie Restart\ Now=Nu herstarten downgradeTo=Versie {0} terugzetten -wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins diff --git a/core/src/main/resources/hudson/PluginManager/installed_pl.properties b/core/src/main/resources/hudson/PluginManager/installed_pl.properties index 47bc109f1610e7bcb56bee252f1219fbbb80e717..4fb0ab51f38e684b709ed63b14ead78d5bce3bec 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_pl.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2004-2017, Sun Microsystems, Damian Szczepanik # # 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,13 +23,19 @@ Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Zmiany zostan\u0105 wprowadzone po ponownym uruchomieniu Jenkinsa Enabled=W\u0142\u0105czone wtyczki Name=Nazwa -Pinned=Przypi\u0119ta Previously\ installed\ version=Poprzednia zainstalowana wersja -Restart\ Once\ No\ Jobs\ Are\ Running=Zrestartuj gdy \u017Cadne zadania nie s\u0105 wykonywane +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 Uninstall=Odinstaluj -Unpin=Odepnij Version=Wersja -downgradeTo=Powr\u00F3\u0107 do starszej wersji {0} +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. -wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins +Uninstallation\ pending=Trwa odinstalowywanie +This\ plugin\ cannot\ be\ disabled=Ta wtyczka nie mo\u017Ce by\u0107 wy\u0142\u0105czona +No\ plugins\ installed.=Brak zainstalowanych wtyczek +This\ plugin\ cannot\ be\ enabled=Ta wtyczka nie mo\u017Ce by\u0107 w\u0142\u0105czona +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. 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 492b30e39c76f80fbb68d008212cd664ef2d08fa..543c634fa81a45edad7691004e9cae6b15accbd3 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_pt_BR.properties @@ -24,15 +24,12 @@ No\ plugins\ installed.=Nenhum plugin instalado. Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=A mudan\u00e7as ter\u00e3o efeito quando o Jenkins for reiniciado Uncheck\ to\ disable\ the\ plugin=Desmarque para desativar o plugin Enabled=Habilitar -Pinned=Fixado Previously\ installed\ version=Vers\u00E3o anterior instalada Restart\ Once\ No\ Jobs\ Are\ Running=Reiniciar assim que nenhum job estiver rodando Uninstall=Desinstalar -Unpin=Desprender Version=Vers\u00e3o Name=Nome downgradeTo=Regredir para {0} -wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins Filter=Filtro Update\ Center=Central de atualiza\u00e7\u00e3o No\ description\ available.=Nenhuma descri\u00e7\u00e3o dispon\u00edvel 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 32259b92eca3c3e50a56ec81e1a3107c2827e1ae..e4464f4900255725f2afe88835223683096d8d60 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_pt_PT.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_pt_PT.properties @@ -3,11 +3,9 @@ Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=As altera\u00E7\u00F5es ser\u00E3o aplicadas quando reiniciares o Jenkins Enabled=Ativado Name=Nome -Pinned=Fixo Previously\ installed\ version=\u00DAltima vers\u00E3o instalada Restart\ Once\ No\ Jobs\ Are\ Running=Reiniciar quando n\u00E3o estiverem Jobs em execu\u00E7\u00E3o Uncheck\ to\ disable\ the\ plugin=Seleccione para desactivar o plugin Uninstall=Desinstalar Version=Vers\u00E3o downgradeTo=Downgrade para {0} -wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins diff --git a/core/src/main/resources/hudson/PluginManager/installed_ro.properties b/core/src/main/resources/hudson/PluginManager/installed_ro.properties index 9d960272ae146aaa3bba204479e7ecd274637254..a0fc137d09387e6dff7b675cb0a52bca9d2de112 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_ro.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_ro.properties @@ -3,11 +3,8 @@ Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Schimb\u0103rile vor avea efect c\u00E2nd ve\u021Bi reporni Jenkins Enabled=Activat Name=Denumire -Pinned=Fixat 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 -Unpin=Defixeaz\u0103 Version=Versiune downgradeTo=Retrogradeaz\u0103 la -wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins diff --git a/core/src/main/resources/hudson/PluginManager/installed_ru.properties b/core/src/main/resources/hudson/PluginManager/installed_ru.properties index 8fd3ed203354f97eeb08bc116a5c431388a1762a..02ece9626713737dc2422ba15194ea032ea8e010 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_ru.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_ru.properties @@ -23,13 +23,10 @@ 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 -Pinned=\u041f\u0440\u0438\u043a\u0440\u0435\u043f\u043b\u0451\u043d\u043d\u044b\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... -Unpin=\u041e\u0442\u043a\u0440\u0435\u043f\u0438\u0442\u044c Version=\u0412\u0435\u0440\u0441\u0438\u044f downgradeTo=\u0412\u0435\u0440\u043d\u0443\u0442\u044c \u043a \u0432\u0435\u0440\u0441\u0438\u0438 {0} -wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins diff --git a/core/src/main/resources/hudson/PluginManager/installed_sk.properties b/core/src/main/resources/hudson/PluginManager/installed_sk.properties index c8e910951476144131acf6f7d57f124a68bf1a0b..a8be79712009f819087e3ea9a128f30c00b12407 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_sk.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_sk.properties @@ -9,4 +9,3 @@ Uncheck\ to\ disable\ the\ plugin=Odzna\u010Den\u00EDm zak\u00E1\u017Eete plugin Uninstall=Odin\u0161taluj Uninstallation\ pending=Odin\u0161tal\u00E1cia \u010Dak\u00E1 Version=Verzia -wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins diff --git a/core/src/main/resources/hudson/PluginManager/installed_sr.properties b/core/src/main/resources/hudson/PluginManager/installed_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..b555a4dbe95c4f1292178ce39b49dcc2e388a2c7 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/installed_sr.properties @@ -0,0 +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\ dependants=\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\ dependants=\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 diff --git a/core/src/main/resources/hudson/PluginManager/installed_uk.properties b/core/src/main/resources/hudson/PluginManager/installed_uk.properties deleted file mode 100644 index cdfbd4ea6110127b07f899d1dbdf51677200eddf..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/PluginManager/installed_uk.properties +++ /dev/null @@ -1,14 +0,0 @@ -# This file is under the MIT License by authors - -Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=\uBCC0\uACBD\uC0AC\uD56D\uC740 \uC820\uD0A8\uC2A4\uB97C \uC7AC\uC2DC\uC791\uD560\uB54C \uC801\uC6A9\uB429\uB2C8\uB2E4 -Enabled=\uD65C\uC131\uD654\uB428 -Name=\uC774\uB984 -Pinned=\uD540 \uACE0\uC815 -Previously\ installed\ version=\uC774\uC804\uC5D0 \uC124\uCE58\uD55C \uBC84\uC804 -Restart\ Once\ No\ Jobs\ Are\ Running=\uC544\uBB34\uB7F0 \uC791\uC5C5\uC774 \uC5C6\uC744 \uB54C \uC7AC\uC2DC\uC791\uD558\uAE30 -Uncheck\ to\ disable\ the\ plugin=\uD50C\uB7EC\uADF8\uC778\uC744 \uBE44\uD65C\uC131\uD654\uD558\uB824\uBA74 \uCCB4\uD06C\uB97C \uD574\uC9C0\uD558\uC2ED\uC2DC\uC624 -Uninstall=\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438 -Unpin=\uD540 \uD574\uCCB4 -Version=\uBC84\uC804 -downgradeTo={0}\uB85C \uB2E4\uC6B4\uADF8\uB808\uC774\uB4DC -wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins diff --git a/core/src/main/resources/hudson/PluginManager/installed_zh_CN.properties b/core/src/main/resources/hudson/PluginManager/installed_zh_CN.properties index 20edd4eb6a73edac358789c094d1ca71ff907074..cef268874e540eb42c2222a5bcade4e6c00a3ef0 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_zh_CN.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_zh_CN.properties @@ -23,12 +23,9 @@ Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=\u6240\u6709\u6539\u53D8\u4F1A\u5728\u91CD\u65B0\u542F\u52A8Jenkins\u4EE5\u540E\u751F\u6548\u3002 Enabled=\u542F\u7528 Name=\u540D\u79F0 -Pinned=\u7ED1\u5B9A Previously\ installed\ version=\u4E0A\u4E00\u4E2A\u5B89\u88C5\u7684\u7248\u672C Restart\ Once\ No\ Jobs\ Are\ Running=\u5F53\u6CA1\u6709\u4EFB\u52A1\u65F6\u91CD\u542F Uncheck\ to\ disable\ the\ plugin=\u53D6\u6D88\u9009\u62E9\u4EE5\u7981\u7528\u63D2\u4EF6 Uninstall=\u5378\u8F7D -Unpin=\u89E3\u9664\u7ED1\u5B9A Version=\u7248\u672C downgradeTo=\u964D\u5230 -wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins 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 205f23e21971174a1f3015c5ca9368066df6d4f8..9721180a51cfad58cb54873faaed0fa82bba6b11 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_zh_TW.properties @@ -30,11 +30,8 @@ Enabled=\u5DF2\u555F\u7528 Name=\u540d\u7a31 Version=\u7248\u672c Previously\ installed\ version=\u524D\u4E00\u5B89\u88DD\u7248\u672C -Pinned=\u5df2\u639b\u8f09 downgradeTo=\u964d\u7248\u6210 {0} -Unpin=\u5378\u9664 -wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins Uninstallation\ pending=\u89e3\u9664\u5b89\u88dd\u4f5c\u696d\u64f1\u7f6e\u4e2d Uninstall=\u89E3\u9664\u5B89\u88DD diff --git a/core/src/main/resources/hudson/PluginManager/sidepanel.groovy b/core/src/main/resources/hudson/PluginManager/sidepanel.groovy index 98aeab34702702834934e1499d9f20e3286ebd81..d129bd53c71afabdb533e5a7e679fad3906d656c 100644 --- a/core/src/main/resources/hudson/PluginManager/sidepanel.groovy +++ b/core/src/main/resources/hudson/PluginManager/sidepanel.groovy @@ -28,7 +28,7 @@ l.header() l.side_panel { l.tasks { l.task(icon:"icon-up icon-md", href:rootURL+'/', title:_("Back to Dashboard")) - l.task(icon:"icon-setting icon-md", href:"${rootURL}/manage", title:_("Manage Jenkins"), permission:app.ADMINISTER, it:app) + l.task(icon:"icon-gear2 icon-md", href:"${rootURL}/manage", title:_("Manage Jenkins"), permission:app.ADMINISTER, it:app) if (!app.updateCenter.jobs.isEmpty()) { l.task(icon:"icon-plugin icon-md", href:"${rootURL}/updateCenter/", title:_("Update Center")) } diff --git a/core/src/main/resources/hudson/PluginManager/sidepanel_bg.properties b/core/src/main/resources/hudson/PluginManager/sidepanel_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..18a142f1ce25170da4da6e000fa3b12385b7f7dd --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/sidepanel_bg.properties @@ -0,0 +1,28 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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=\ + \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 +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/widgets/BuildHistoryWidget/entries_fr.properties b/core/src/main/resources/hudson/PluginManager/sidepanel_pl.properties similarity index 88% rename from core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_fr.properties rename to core/src/main/resources/hudson/PluginManager/sidepanel_pl.properties index 0ed84708b8dbaab5f397c796020c683f42839d23..cd9cfbdce1c1d2b016ae8aba04bfc322236240b0 100644 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_fr.properties +++ b/core/src/main/resources/hudson/PluginManager/sidepanel_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant +# Copyright (c) 2004-2016, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -cancel\ this\ build=annuler cette construction -pending= lancer +Back\ to\ Dashboard=Powr\u00F3t do tablicy +Manage\ Jenkins=Zarz\u0105dzaj Jenkinsem diff --git a/core/src/main/resources/hudson/PluginManager/sidepanel_sr.properties b/core/src/main/resources/hudson/PluginManager/sidepanel_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..baba7c569c30a788802dce6a9cf9ba11f431ebc2 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/sidepanel_sr.properties @@ -0,0 +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 \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/Executor/causeOfDeath_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/sites_bg.properties similarity index 75% rename from core/src/main/resources/hudson/model/Executor/causeOfDeath_zh_TW.properties rename to core/src/main/resources/hudson/PluginManager/sites_bg.properties index 1a5bca33768540002aa1bdf4524017799507650b..52e24f2840bb03b5e019691503113d20609ffb4a 100644 --- a/core/src/main/resources/hudson/model/Executor/causeOfDeath_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/sites_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,8 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back=\u8fd4\u56de -Thread\ is\ still\ alive=Thread \u904b\u4f5c\u4e2d -Thread\ has\ died=Thread \u5df2\u4e2d\u6b62 -more\ info=\u66f4\u591a\u8cc7\u8a0a -Restart\ this\ thread=\u91cd\u65b0\u555f\u52d5 Thread +Remove=\ + \u041f\u0440\u0435\u043c\u0430\u0445\u0432\u0430\u043d\u0435 +Add...=\ + \u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\u2026 +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/sites_sr.properties b/core/src/main/resources/hudson/PluginManager/sites_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..008225b821ad3154447f184aeb3fba9c275af713 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/sites_sr.properties @@ -0,0 +1,5 @@ +# 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 +Add...=\u0414\u043E\u0434\u0430\u0458... +Remove=\u0423\u043A\u043B\u043E\u043D\u0438 diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_bg.properties b/core/src/main/resources/hudson/PluginManager/tabBar_bg.properties index 1c89e45f4ada87a2f6d3126feb2edf37133778b6..440d9b26d84a9a35acbda671965d6cc1173a06f7 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_bg.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_bg.properties @@ -1,6 +1,32 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -Advanced=\u0420\u0430\u0437\u0448\u0438\u0440\u0435\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 +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 018ec6ea8aa597537866ccde6ece6b7c04cf2672..7465dffa99a8abad29aeb6525002444fe77b6f69 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_ca.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_ca.properties @@ -3,4 +3,4 @@ Advanced=Avan\u00E7at Available=Disponible Installed=Instal\u00B7lats -Updates=Actulitzacions +Updates=Actualitzacions diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_sr.properties b/core/src/main/resources/hudson/PluginManager/tabBar_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..c7e4f8cb4bab6a7ffadb29e6a162a1da3633fb29 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/tabBar_sr.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_th.properties b/core/src/main/resources/hudson/PluginManager/tabBar_th.properties deleted file mode 100644 index 73f99e3b966497deb42e710586e87df830e6d6f6..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/PluginManager/tabBar_th.properties +++ /dev/null @@ -1,6 +0,0 @@ -# This file is under the MIT License by authors - -Advanced=\u0E02\u0E31\u0E49\u0E19\u0E2A\u0E39\u0E07 -Available=\u0E17\u0E35\u0E48\u0E21\u0E35\u0E2D\u0E22\u0E39\u0E48 -Installed=\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07\u0E41\u0E25\u0E49\u0E27 -Updates=\u0E1B\u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E38\u0E07 diff --git a/core/src/main/resources/hudson/PluginManager/table.jelly b/core/src/main/resources/hudson/PluginManager/table.jelly index e8c75170b412f01cdc4ac3fa8b082801d1057be6..52fed7654972f959acec2c9943fcd857db702e40 100644 --- a/core/src/main/resources/hudson/PluginManager/table.jelly +++ b/core/src/main/resources/hudson/PluginManager/table.jelly @@ -49,12 +49,13 @@ THE SOFTWARE. -

    -
    - ${%Filter}: - -
    + +
    + ${%Filter}: + +
    +
    @@ -110,6 +111,15 @@ THE SOFTWARE.
    ${%depCoreWarning(p.getNeededDependenciesRequiredCore().toString())}
    + +
    ${%securityWarning} + +
    +
    @@ -139,18 +149,18 @@ THE SOFTWARE.
    - -
    -
    +
    +
    + - + +
    - diff --git a/core/src/main/resources/hudson/PluginManager/table.properties b/core/src/main/resources/hudson/PluginManager/table.properties index 0a60d099892f5256e278c2fc3918e66846ad1d77..63c161534cefcfc384899a32d6c4174d3094c1d3 100644 --- a/core/src/main/resources/hudson/PluginManager/table.properties +++ b/core/src/main/resources/hudson/PluginManager/table.properties @@ -25,14 +25,15 @@ compatWarning=\ Consult the plugin release notes for details. coreWarning=\ Warning: This plugin is built for Jenkins {0} or newer. \ - It may or may not work in your Jenkins. + Jenkins will refuse to load this plugin if installed. depCompatWarning=\ - Warning: This plugin requires dependent plugins be upgraded \ - and some of these dependent plugins are not compatible \ - with the current installed version. Jobs using these \ - dependent plugins may need to be reconfigured. + Warning: This plugin requires dependent plugins be upgraded and at least one of these dependent plugins claims to use a different settings format than the installed version. \ + Jobs using that plugin may need to be reconfigured, and/or you may not be able to cleanly revert to the prior version without manually restoring old settings. \ + Consult the plugin release notes for details. depCoreWarning=\ - Warning: This plugin requires dependent plugins that are \ - built for Jenkins {0} or newer. The dependent plugins may \ - or may not work in your Jenkins and consequently this \ - plugin may or may not work in your Jenkins. + Warning: This plugin requires dependent plugins that require Jenkins {0} or newer. \ + Jenkins will refuse to load the dependent plugins requiring a newer version of Jenkins, \ + and in turn loading this plugin will fail. +securityWarning=\ + Warning: This plugin version may not be safe to use. Please review the following security notices: + diff --git a/core/src/main/resources/hudson/PluginManager/table_bg.properties b/core/src/main/resources/hudson/PluginManager/table_bg.properties index 7f6814bcbdc28381d7b4b78009b3fb2735faa809..893174efce4dcc7ef700a68b8bbee745d59fe5e2 100644 --- a/core/src/main/resources/hudson/PluginManager/table_bg.properties +++ b/core/src/main/resources/hudson/PluginManager/table_bg.properties @@ -1,11 +1,63 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -Check\ to\ install\ the\ plugin=\u041C\u0430\u0440\u043A\u0438\u0440\u0430\u0439\u0442\u0435 \u0437\u0430 \u0434\u0430 \u0441\u0435 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430 \u043F\u043B\u044A\u0433\u0438\u043D\u0430 -Download\ now\ and\ install\ after\ restart=\u0421\u0432\u0430\u043B\u044F\u043D\u0435 \u0441\u0435\u0433\u0430 \u0438 \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\u044A\u0440 -Install=\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0439 -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 -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 +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. +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. +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. diff --git a/core/src/main/resources/hudson/PluginManager/table_de.properties b/core/src/main/resources/hudson/PluginManager/table_de.properties index e5f0116e1640821a22c51d54d41a9ef3f0ca4ba2..8f46aef19dfa2f267f4a7a2fcc1d461c1a775b55 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 anwhlen +Check\ to\ install\ the\ plugin=Zum Aktualisieren anw\u00E4hlen Install=Installieren Name=Name Version=Version @@ -31,10 +31,9 @@ Filter=Filter Update\ Center=Update-Center Install\ without\ restart=Installieren ohne Neustart Download\ now\ and\ install\ after\ restart=Jetzt herunterladen und bei Neustart installieren -compatWarning=\ - Warnung: Die neue Version ist nicht kompatibel mit der momentan installierten Version. \ - Jobs, welche dieses Plugin verwenden, mssen gegebenenfalls neu konfiguriert werden. -coreWarning=\ - Warnung: Dieses Plugin wurde fr Jenkins {0} oder neuer entwickelt. Es kann mit Ihrer \ - Jenkins-Installation funktionieren... oder auch nicht. -Click\ this\ heading\ to\ sort\ by\ category=Hier klicken, um nach der Kategorie zu sortieren \ No newline at end of file +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. +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: diff --git a/core/src/main/resources/hudson/PluginManager/table_pl.properties b/core/src/main/resources/hudson/PluginManager/table_pl.properties index b6b6025d9a0aacc8dbb55a0afa374bbc04479156..475890ea442175696f62afb2c774a4913f55cce2 100644 --- a/core/src/main/resources/hudson/PluginManager/table_pl.properties +++ b/core/src/main/resources/hudson/PluginManager/table_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2004-2017, Sun Microsystems, Inc., Damian Szczepanik # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -32,3 +32,4 @@ Name=Nazwa No\ updates=Brak dost\u0119pnych 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. +Update\ Center=Centrum aktualizacji \ No newline at end of file diff --git a/core/src/main/resources/hudson/PluginManager/table_sr.properties b/core/src/main/resources/hudson/PluginManager/table_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..f1517b4aa23eb508e3e2824c240d96f5aa628c1f --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/table_sr.properties @@ -0,0 +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 +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 diff --git a/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message.jelly b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message.jelly new file mode 100644 index 0000000000000000000000000000000000000000..bbffff4593374eb20815747d4b3b3f4333e9afb6 --- /dev/null +++ b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message.jelly @@ -0,0 +1,22 @@ + + +
    +
    +
    + +
    +
    + ${%Dependency errors}: +
      + +
    • ${plugin.longName} v${plugin.version} +
        + +
      • ${d}
      • +
        +
      +
    • +
      +
    +
    +
    diff --git a/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message.properties b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message.properties new file mode 100644 index 0000000000000000000000000000000000000000..cbad3bfe78e220dad70d3fbac95042d1b14d4e7b --- /dev/null +++ b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message.properties @@ -0,0 +1,22 @@ +# The MIT License +# +# Copyright (c) 2016, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. +Dependency\ errors=There are dependency errors loading some plugins diff --git a/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_de.properties b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_de.properties new file mode 100644 index 0000000000000000000000000000000000000000..92f7e07ee1a2f44af3ff50d2cd69f53158596dcb --- /dev/null +++ b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_de.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Copyright (c) 2017 Daniel Beck and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Correct=Korrigieren +Dependency\ errors=Beim Laden einiger Plugins sind Fehler aufgetreten. diff --git a/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_pl.properties b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..3d164add4dc87e3378b815804556207b8951a9c9 --- /dev/null +++ b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_pl.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2016, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. +Correct=Napraw +Dependency\ errors=Wyst\u0105pi\u0142y b\u0142\u0119dy podczas \u0142adowania niekt\u00F3rych wtyczek diff --git a/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_sr.properties b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..bca24ec7867558e5ef384bf7c5a8d354695636ab --- /dev/null +++ b/core/src/main/resources/hudson/PluginWrapper/PluginWrapperAdministrativeMonitor/message_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Correct=\u041F\u0440\u0430\u0432\u0438\u043B\u043D\u043E diff --git a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses.jelly b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses.jelly index 80fe21f1ec484be4acaf8245b9c51351cc029be2..acdbbb6b9e75ec89bde94f0aaa653e2c33bb017c 100644 --- a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses.jelly +++ b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses.jelly @@ -25,7 +25,7 @@ THE SOFTWARE. - +

    ${%about(it.longName+' '+it.version)}

    diff --git a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_bg.properties b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..884f05963cdd80ccbb5e92059f3f04bbb4b457ac --- /dev/null +++ b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_bg.properties @@ -0,0 +1,28 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +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 diff --git a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_de.properties b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_de.properties index 187db016889c101b211396b3098f32b672639e72..84f1c402cef454d9d3e4353ae548f0dfd662a573 100644 --- a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_de.properties +++ b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_de.properties @@ -1,25 +1,25 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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=\u00DCber {0} -No\ information\ recorded=Keine Informationen verf\u00FCgbar -3rd\ Party\ Dependencies=Dritthersteller-Abh\u00E4ngigkeiten +# The MIT License +# +# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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=\u00DCber {0} +No\ information\ recorded=Keine Informationen verf\u00FCgbar +3rd\ Party\ Dependencies=Dritthersteller-Abh\u00E4ngigkeiten diff --git a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_lt.properties b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_lt.properties new file mode 100644 index 0000000000000000000000000000000000000000..d5e34dd4a8a81275a3decb58f5cc958c5a8611ad --- /dev/null +++ b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_lt.properties @@ -0,0 +1 @@ +about=Apie {0} diff --git a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_pl.properties b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..940ca0bd1742c9d095dc7a7e5f19adc8eaaa8845 --- /dev/null +++ b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_pl.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Copyright (c) 2017, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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=O {0} +No\ information\ recorded=Brak danych +3rd\ Party\ Dependencies=Biblioteki zale\u017Cne diff --git a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_sr.properties b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..5790695505a246d8cde4defb633382888820a43a --- /dev/null +++ b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_sr.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/PluginWrapper/uninstall.groovy b/core/src/main/resources/hudson/PluginWrapper/uninstall.groovy index a47356a1a5b650c852df453b810e65f3fea37939..b6e34756f017703e8b4c61d31b527b4c7e8881b7 100644 --- a/core/src/main/resources/hudson/PluginWrapper/uninstall.groovy +++ b/core/src/main/resources/hudson/PluginWrapper/uninstall.groovy @@ -1,9 +1,11 @@ package hudson.PluginWrapper +import jenkins.model.Jenkins + def l = namespace(lib.LayoutTagLib) def f = namespace(lib.FormTagLib) -l.layout { +l.layout(permission: Jenkins.ADMINISTER) { def title = _("title", my.shortName) l.header(title:title) l.main_panel { diff --git a/core/src/main/resources/hudson/PluginWrapper/uninstall_lt.properties b/core/src/main/resources/hudson/PluginWrapper/uninstall_lt.properties new file mode 100644 index 0000000000000000000000000000000000000000..80e7fec4e0832bbbca33cfca4f72c032f13aeb18 --- /dev/null +++ b/core/src/main/resources/hudson/PluginWrapper/uninstall_lt.properties @@ -0,0 +1,3 @@ +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} diff --git a/core/src/main/resources/hudson/PluginWrapper/uninstall_pl.properties b/core/src/main/resources/hudson/PluginWrapper/uninstall_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..8ac4bef57538f34d8fd0b297e2e6fd3a86fe8cd0 --- /dev/null +++ b/core/src/main/resources/hudson/PluginWrapper/uninstall_pl.properties @@ -0,0 +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. +title=Odinstalowywanie wtyczki {0} +Yes=Tak \ No newline at end of file diff --git a/core/src/main/resources/hudson/PluginWrapper/uninstall_sr.properties b/core/src/main/resources/hudson/PluginWrapper/uninstall_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..cf1a20a90ef369030e3068895180f424207f6932 --- /dev/null +++ b/core/src/main/resources/hudson/PluginWrapper/uninstall_sr.properties @@ -0,0 +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. \ No newline at end of file diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_pl.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_pl.properties index a03b5b7cb59974bed45b661ddb75f222aee4681b..fd2644805068d20c71308448f547000c5b1941ee 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/config_pl.properties +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2004-2017, Sun Microsystems, Inc, Damian Szczepanik # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -23,4 +23,6 @@ Password=Has\u0142o Port=Port Server=Serwer -User\ name=Nazwa u\u017cytkownika +User\ name=Nazwa u\u017Cytkownika +No\ Proxy\ Host=Brak hosta proxy +Validate\ Proxy=Sprawd\u017A proxy diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_sr.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..3e622e98adc7ed57d26735ae87559a3326c010ae --- /dev/null +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_sr.properties @@ -0,0 +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 \ No newline at end of file diff --git a/core/src/main/resources/hudson/ProxyConfiguration/help-name.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name.html index 858bf03249341805bd27bfe8e8b0a4b47d48e1a4..62f93846e9278825fc66fe9d07e005715fc74084 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/help-name.html +++ b/core/src/main/resources/hudson/ProxyConfiguration/help-name.html @@ -1,13 +1,13 @@
    If your Jenkins server sits behind a firewall and does not have the direct access to the internet, and if your server JVM is not configured appropriately - (See JDK networking properties for more details) + (See JDK networking properties for more details) to enable internet connection, you can specify the HTTP proxy server name in this field to allow Jenkins to install plugins on behalf of you. Note that Jenkins uses HTTPS to communicate with the update center to download plugins.

    - The value you submit here will be set as http.proxyHost system property. Leaving this field empty - causes this property to be unset, which means Jenkins will try to connect to the host directly. + Leaving this field empty + means Jenkins will try to connect to the internet directly.

    If you are unsure about the value, check the browser proxy configuration. diff --git a/core/src/main/resources/hudson/ProxyConfiguration/help-name_de.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name_de.html index fb15d38b12778793c74f35569cf2f7e3dd45c06f..ebab2d935fd1e410f23fa0ce1623b83c9fe8fe0d 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/help-name_de.html +++ b/core/src/main/resources/hudson/ProxyConfiguration/help-name_de.html @@ -9,11 +9,9 @@ und Plugins herunterzuladen.

    - Der Wert, den Sie hier angeben, wird als Systemeigenschaft http.proxyHost - gesetzt. Wenn Sie dieses Feld freilassen, wird die Systemeigenschaft gelöscht. - Jenkins versucht dann, das Update-Center direkt zu kontaktieren. + Wenn Sie dieses Feld freilassen, versucht Jenkins, das Update-Center direkt zu kontaktieren.

    Wenn Sie sich nicht sicher sind, was Sie hier eintragen sollen, schauen Sie in der Proxy-Konfiguration Ihres Browsers nach. -

    \ No newline at end of file +
    diff --git a/core/src/main/resources/hudson/ProxyConfiguration/help-name_fr.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name_fr.html index 7914a1700d3cdee5f2953f76135f9447c6d298cc..3c7b727592dfc5b4c826b8ca3226fd2513669e40 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/help-name_fr.html +++ b/core/src/main/resources/hudson/ProxyConfiguration/help-name_fr.html @@ -7,8 +7,7 @@ Notez que Jenkins utilise HTTPS pour communiquer avec le serveur de mise à jour pour télécharger les plugins.

    - La valeur placée ici sera positionnée dans la propriété système http.proxyHost. - Si ce champ est vide, la propriété ne sera pas positionnée; Jenkins tentera donc de se + Si ce champ est vide Jenkins tentera de se connecter directement au site.

    diff --git a/core/src/main/resources/hudson/ProxyConfiguration/help-name_pl.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name_pl.html new file mode 100644 index 0000000000000000000000000000000000000000..d98aae01164fb77c8834cf1d0f128b7408a7e26b --- /dev/null +++ b/core/src/main/resources/hudson/ProxyConfiguration/help-name_pl.html @@ -0,0 +1,13 @@ +

    + Jeli Jenkins znajduje si za zapor sieciow i nie ma bezporedniego dostpu do Internetu, + a JVM nie jest skonfigurowana odpowiednio + (sprawd ustawienia sieciowe), + moesz udostpni Internet ustawiajc serwer proxy, aby Jenkins samodzielnie pobra i zainstalowa wtyczki. + Pamitaj, e Jenkins uywa poczenia https, aby pobra wtyczki z centrum aktualizacji. + +

    + Pozostaw to pole puste, aby Jenkins korzysta z bezporedniego poczenia z Internetem. + +

    + Jeli nie jeste pewny ustawie, sprawd ustawienia serwerw proxy w przegldarce. +

    \ No newline at end of file diff --git a/core/src/main/resources/hudson/ProxyConfiguration/help-name_pt_BR.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name_pt_BR.html index 2b4882af538af983c88786cbeb423bda1dcc0d48..41f744e14324e44f98c2f98eb22a3b691b7b7179 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/help-name_pt_BR.html +++ b/core/src/main/resources/hudson/ProxyConfiguration/help-name_pt_BR.html @@ -6,8 +6,8 @@ instalar plugins para você. Note que o Jenkins usa HTTPS para se comunicar com o centro de atualização para baixar os plugins.

    - O valor que você colocar aqui será atribuído a propriedade de sistema http.proxyHost. Deixar este campo vazio - deixa esta propriedade sem atribuição, o que significa que o Jenkins tentará conectar ao host externo diretamente. + Deixar este campo vazio + faz com que o Jenkins tente conectar à internet diretamente.

    Se você não está certo sobre o valor, cheque a configuração de proxy de seu browser. diff --git a/core/src/main/resources/hudson/ProxyConfiguration/help-name_tr.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name_tr.html deleted file mode 100644 index 858bf03249341805bd27bfe8e8b0a4b47d48e1a4..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/ProxyConfiguration/help-name_tr.html +++ /dev/null @@ -1,14 +0,0 @@ -

    - If your Jenkins server sits behind a firewall and does not have the direct access to the internet, - and if your server JVM is not configured appropriately - (See JDK networking properties for more details) - to enable internet connection, you can specify the HTTP proxy server name in this field to allow Jenkins - to install plugins on behalf of you. Note that Jenkins uses HTTPS to communicate with the update center to download plugins. - -

    - The value you submit here will be set as http.proxyHost system property. Leaving this field empty - causes this property to be unset, which means Jenkins will try to connect to the host directly. - -

    - If you are unsure about the value, check the browser proxy configuration. -

    \ No newline at end of file diff --git a/core/src/main/resources/hudson/ProxyConfiguration/help-noProxyHost.html b/core/src/main/resources/hudson/ProxyConfiguration/help-noProxyHost.html index a0421a779264427d811147690c627608acca2aed..91f8dbd8c11e1c868d506d3552a7580a12be5ede 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/help-noProxyHost.html +++ b/core/src/main/resources/hudson/ProxyConfiguration/help-noProxyHost.html @@ -1,4 +1,4 @@
    Specify host name patterns that shouldn't go through the proxy, one host per line. - "*" is the wild card host name (such as "*.cloudbees.com" or "www*.jenkins-ci.org") + "*" is the wild card host name (such as "*.jenkins.io" or "www*.jenkins-ci.org")
    \ No newline at end of file diff --git a/core/src/main/resources/hudson/ProxyConfiguration/help-noProxyHost_de.html b/core/src/main/resources/hudson/ProxyConfiguration/help-noProxyHost_de.html index d47178d1e4a4a9f33358589873362d70e0b1d12c..73059648808f598cb1828ecfbc0e7fb1dde1b0b5 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/help-noProxyHost_de.html +++ b/core/src/main/resources/hudson/ProxyConfiguration/help-noProxyHost_de.html @@ -2,5 +2,5 @@ Geben Sie Servernamen-Muster an, die nicht über den Proxy abgerufen werden sollen. Geben Sie einen Eintrag pro Zeile ein. Verwenden Sie gegebenenfalls das Jokerzeichen "*", um Gruppen von Servern anzugeben - (wie in "*.cloudbees.com" or "www*.jenkins-ci.org") + (wie in "*.jenkins.io" or "www*.jenkins-ci.org")
    diff --git a/core/src/main/resources/hudson/ProxyConfiguration/help-noProxyHost_ja.html b/core/src/main/resources/hudson/ProxyConfiguration/help-noProxyHost_ja.html index 76705e6eef7709f4cc64b7d6129da9feaa706f9f..c349cc67b5784ce0178ea62e89aa9eaa526db065 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/help-noProxyHost_ja.html +++ b/core/src/main/resources/hudson/ProxyConfiguration/help-noProxyHost_ja.html @@ -1,4 +1,4 @@
    プロキシーを使用しないホスト名のパターンを1行に1つずつ設定します。 - ホスト名には"*"(ワイルドカード)を、"*.cloudbees.com"や"www*.jenkins-ci.org"のように使用することができます。 + ホスト名には"*"(ワイルドカード)を、"*.jenkins.io"や"www*.jenkins-ci.org"のように使用することができます。
    \ No newline at end of file diff --git a/core/src/main/resources/hudson/ProxyConfiguration/help-noProxyHost_zh_TW.html b/core/src/main/resources/hudson/ProxyConfiguration/help-noProxyHost_zh_TW.html index 457b9233572244385d6a88b13d125b3f38c49906..a6df9c10ede16f45736e111fa9ae7a1cffec35dc 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/help-noProxyHost_zh_TW.html +++ b/core/src/main/resources/hudson/ProxyConfiguration/help-noProxyHost_zh_TW.html @@ -1,4 +1,4 @@
    指定不要透過代理伺服器連線的主機名稱樣式,一行一個。 - 可以使用 "*" 代表任何字串 (例如 "*.cloudbees.com" 或是 "www*.jenkins-ci.org")。 + 可以使用 "*" 代表任何字串 (例如 "*.jenkins.io" 或是 "www*.jenkins-ci.org")。
    \ No newline at end of file diff --git a/core/src/main/resources/hudson/TcpSlaveAgentListener/index.jelly b/core/src/main/resources/hudson/TcpSlaveAgentListener/index.jelly index 9e65250be24c2ba2ddbed7b2c3cc8abc0fd855b4..85471432ae05d33cc74ba7b338d40c9a293d85a7 100644 --- a/core/src/main/resources/hudson/TcpSlaveAgentListener/index.jelly +++ b/core/src/main/resources/hudson/TcpSlaveAgentListener/index.jelly @@ -23,17 +23,22 @@ THE SOFTWARE. --> - + + - - + + + + + + Jenkins diff --git a/core/src/main/resources/hudson/cli/CLIAction/index.properties b/core/src/main/resources/hudson/cli/CLIAction/index.properties index d2e768307a2f9f6c0bcb6d855d43c372e4a5705a..e4eebf4895f7df8a40581f8f41ff9fdf39f88903 100644 --- a/core/src/main/resources/hudson/cli/CLIAction/index.properties +++ b/core/src/main/resources/hudson/cli/CLIAction/index.properties @@ -1,4 +1,4 @@ Jenkins\ CLI=Jenkins CLI blurb=You can access various features in Jenkins through a command-line tool. See \ - the Wiki for more details of this feature.\ + the documentation for more details of this feature.\ To get started, download jenkins-cli.jar, and run it as follows: 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 d7b0a91ed18998be6e85e5a9283999dcf601ac00..372ffd4e8a75d1a18407307a843373c29776f26f 100644 --- a/core/src/main/resources/hudson/cli/CLIAction/index_de.properties +++ b/core/src/main/resources/hudson/cli/CLIAction/index_de.properties @@ -2,6 +2,6 @@ Available\ Commands=Verf\u00FCgbare Kommandos Jenkins\ CLI=Jenkins CLI blurb=\ Sie knnen ausgewhlte Funktionen von Jenkins ber ein Kommandozeilenwerkzeug (engl.: Command Line Interface, CLI) nutzen. \ - Nheres dazu finden Sie im Wiki. \ + Nheres 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 16d664612b1f6bcc029e5f1c392fddca226ba5dc..3639ef88311f251c3bf2d80882f1c135ca6ee7c3 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 pgina para mas detalles. \ + Echa un vistazo a esta pgina 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 5bb5e770f340c3b11b3e248fb00b83951837de53..c51c705ec8f1c2b37f650af27c2ee908b3c18c44 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\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: 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 fb7ef102f1af3b3951390e87d6c8e692c6155592..61db53365e174fc8e139a82cb822835a591d8afc 100644 --- a/core/src/main/resources/hudson/cli/CLIAction/index_it.properties +++ b/core/src/main/resources/hudson/cli/CLIAction/index_it.properties @@ -1,5 +1,5 @@ Available\ Commands=Comandi disponibili Jenkins\ CLI=Jenkins CLI blurb=Puoi accede alle funzionalit\u00e0\u00a0 di Jenkins attraverso un tool da linea di comando. Per maggiori dettagli visita \ - la Wiki. \ + la Wiki. \ Per iniziare, scarica jenkins-cli.jar, e lancia il seguente comando: 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 a6522667f8976f705ef254be74139c9b1e0bd042..67bc6c6caa432fd000af3388f89a651538823976 100644 --- a/core/src/main/resources/hudson/cli/CLIAction/index_ja.properties +++ b/core/src/main/resources/hudson/cli/CLIAction/index_ja.properties @@ -21,7 +21,7 @@ # 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\ + \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 Jenkins\ CLI=Jenkins CLI Available\ Commands=\u5229\u7528\u53ef\u80fd\u306a\u30b3\u30de\u30f3\u30c9 diff --git a/core/src/main/resources/hudson/cli/CLIAction/index_nl.properties b/core/src/main/resources/hudson/cli/CLIAction/index_nl.properties index ee556037d30731fc4b55aee6c8c277ca42c8ca7c..da112a81401f8f3cd21ad805bb39317c029f7648 100644 --- a/core/src/main/resources/hudson/cli/CLIAction/index_nl.properties +++ b/core/src/main/resources/hudson/cli/CLIAction/index_nl.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Available\ Commands=Beschikbare commando''s -blurb=Je kan gebruik maken van verschillende mogelijkheden in Jenkins via een opdracht op de commandoregel. Zie de Wiki voor verder details hierover. Om te beginnen, download jenkins-cli.jar, en voer het uit als volgt: +blurb=Je kan gebruik maken van verschillende mogelijkheden in Jenkins via een opdracht op de commandoregel. Zie de Wiki voor verder details hierover. Om te beginnen, download jenkins-cli.jar, en voer het uit als volgt: 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 2cabf24de096206d9081cf056721b7c586aa6e6c..9eb5bd486e6baba0d3a3255edc88ae178ed22f19 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 @@ -23,8 +23,8 @@ Available\ Commands=Comandos dispon\u00EDveis Jenkins\ CLI= # You can access various features in Jenkins through a command-line tool. See \ -# the Wiki for more details of this feature.\ +# the Wiki for more details of this feature.\ # To get started, download jenkins-cli.jar, and run it as follows: -blurb=\ Voc\u00ea pode acessar v\u00e1rias funcionalidades do Jenkins pelo prompt de comando. Veja \ +blurb=\ Voc\u00ea pode acessar v\u00e1rias funcionalidades do Jenkins pelo prompt de comando. Veja \ a Wiki 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 2e962ae4686128ddf10b194e06590b50bffd0ec1..6af77f38a59af7b3137699bf22118e076535139f 100644 --- a/core/src/main/resources/hudson/cli/CLIAction/index_ru.properties +++ b/core/src/main/resources/hudson/cli/CLIAction/index_ru.properties @@ -22,4 +22,4 @@ 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: +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: diff --git a/core/src/main/resources/hudson/cli/CLIAction/index_sr.properties b/core/src/main/resources/hudson/cli/CLIAction/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..8f1eec2169e7b24d2662aee366f8f294a83eb927 --- /dev/null +++ b/core/src/main/resources/hudson/cli/CLIAction/index_sr.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/cli/CLIAction/index_zh_CN.properties b/core/src/main/resources/hudson/cli/CLIAction/index_zh_CN.properties index f8cf7eede7f9deedda158318c3ad24db352f74e2..bd6ca6d779ec5cf93bfab86cf1639fa22112c033 100644 --- a/core/src/main/resources/hudson/cli/CLIAction/index_zh_CN.properties +++ b/core/src/main/resources/hudson/cli/CLIAction/index_zh_CN.properties @@ -22,4 +22,4 @@ Available\ Commands=\u53EF\u7528\u7684\u547D\u4EE4 Jenkins\ CLI=Jenkins \u547d\u4ee4\u884c -blurb=\u4F60\u53EF\u4EE5\u901A\u8FC7\u547D\u4EE4\u884C\u5DE5\u5177\u64CD\u4F5CJenkins\u7684\u8BB8\u591A\u7279\u6027\u3002\u4F60\u53EF\u4EE5\u901A\u8FC7 Wiki\u83B7\u5F97\u66F4\u591A\u4FE1\u606F\u3002\u4F5C\u4E3A\u5F00\u59CB\uFF0C\u4F60\u53EF\u4EE5\u4E0B\u8F7Djenkins-cli.jar\uFF0C\u7136\u540E\u8FD0\u884C\u4E0B\u5217\u547D\u4EE4\uFF1A +blurb=\u4F60\u53EF\u4EE5\u901A\u8FC7\u547D\u4EE4\u884C\u5DE5\u5177\u64CD\u4F5CJenkins\u7684\u8BB8\u591A\u7279\u6027\u3002\u4F60\u53EF\u4EE5\u901A\u8FC7 Wiki\u83B7\u5F97\u66F4\u591A\u4FE1\u606F\u3002\u4F5C\u4E3A\u5F00\u59CB\uFF0C\u4F60\u53EF\u4EE5\u4E0B\u8F7Djenkins-cli.jar\uFF0C\u7136\u540E\u8FD0\u884C\u4E0B\u5217\u547D\u4EE4\uFF1A 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 aaa1f13048e6b46773f370df96af275a93410297..8b9bb390ecec0bb3bd3604f6fc5035b0c4a4e656 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 @@ -24,6 +24,6 @@ Jenkins\ CLI=Jenkins \u547d\u4ee4\u5217\u4ecb\u9762 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\ + \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 diff --git a/core/src/main/resources/hudson/cli/CliProtocol/description.jelly b/core/src/main/resources/hudson/cli/CliProtocol/description.jelly new file mode 100644 index 0000000000000000000000000000000000000000..55e2c974b5ba1050be718c322da2b72ff5d8cd2a --- /dev/null +++ b/core/src/main/resources/hudson/cli/CliProtocol/description.jelly @@ -0,0 +1,4 @@ + + + ${%summary} + diff --git a/core/src/main/resources/hudson/cli/CliProtocol/description.properties b/core/src/main/resources/hudson/cli/CliProtocol/description.properties new file mode 100644 index 0000000000000000000000000000000000000000..76b368aed3841dd8a32e7e24d1f37ca8ed08a25d --- /dev/null +++ b/core/src/main/resources/hudson/cli/CliProtocol/description.properties @@ -0,0 +1 @@ +summary=Accepts connections from CLI clients. This protocol is unencrypted. \ No newline at end of file diff --git a/core/src/main/resources/hudson/cli/CliProtocol/description_de.properties b/core/src/main/resources/hudson/cli/CliProtocol/description_de.properties new file mode 100644 index 0000000000000000000000000000000000000000..471dc62eea518996bbefbd0ec1c7360304e16b3d --- /dev/null +++ b/core/src/main/resources/hudson/cli/CliProtocol/description_de.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2017 Daniel Beck and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +summary=Bedient Verbindungen von Jenkins-CLI-Clients. Dieses Protokoll ist unverschl\u00FCsselt. diff --git a/core/src/main/resources/hudson/cli/CliProtocol2/description.jelly b/core/src/main/resources/hudson/cli/CliProtocol2/description.jelly new file mode 100644 index 0000000000000000000000000000000000000000..55e2c974b5ba1050be718c322da2b72ff5d8cd2a --- /dev/null +++ b/core/src/main/resources/hudson/cli/CliProtocol2/description.jelly @@ -0,0 +1,4 @@ + + + ${%summary} + diff --git a/core/src/main/resources/hudson/cli/CliProtocol2/description.properties b/core/src/main/resources/hudson/cli/CliProtocol2/description.properties new file mode 100644 index 0000000000000000000000000000000000000000..609298c8b4029a3e48ce8c961cd4b433d43470fd --- /dev/null +++ b/core/src/main/resources/hudson/cli/CliProtocol2/description.properties @@ -0,0 +1 @@ +summary=Extends the version 1 protocol by adding transport encryption. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_eo.properties b/core/src/main/resources/hudson/cli/CliProtocol2/description_de.properties similarity index 87% rename from core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_eo.properties rename to core/src/main/resources/hudson/cli/CliProtocol2/description_de.properties index c40574deee2b9c3f6303a6e437e153825711bd38..ad365aceafdc8783787e08025765e9c64896c4a6 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_eo.properties +++ b/core/src/main/resources/hudson/cli/CliProtocol2/description_de.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2017 Daniel Beck and a number of other of contributors # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,6 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=Malakcepti -More\ Info=Pli da info -blurb=\u015Cajne la via inversa prokura aran\u011Do estas rompita. +summary=Erweitert das Protokoll Version 1 um Verschl\u00FCsselung der Transportschicht. diff --git a/core/src/main/resources/hudson/cli/Messages.properties b/core/src/main/resources/hudson/cli/Messages.properties index 3f7340334103b56d782d1ae2a3a49632f5776561..8b9c933e6dc90092f473b1a0cfbf71842e02acba 100644 --- a/core/src/main/resources/hudson/cli/Messages.properties +++ b/core/src/main/resources/hudson/cli/Messages.properties @@ -1,6 +1,7 @@ InstallPluginCommand.DidYouMean={0} looks like a short plugin name. Did you mean \u2018{1}\u2019? InstallPluginCommand.InstallingFromUpdateCenter=Installing {0} from update center InstallPluginCommand.InstallingPluginFromLocalFile=Installing a plugin from local file: {0} +InstallPluginCommand.InstallingPluginFromStdin=Installing a plugin from standard input InstallPluginCommand.InstallingPluginFromUrl=Installing a plugin from {0} InstallPluginCommand.NoUpdateCenterDefined=Note that no update center is defined in this Jenkins. InstallPluginCommand.NoUpdateDataRetrieved=No update center data is retrieved yet from: {0} @@ -33,7 +34,7 @@ HelpCommand.ShortDescription=\ InstallPluginCommand.ShortDescription=\ Installs a plugin either from a file, an URL, or from update center. InstallToolCommand.ShortDescription=\ - Performs automatic tool installation, and print its location to stdout. Can be only called from inside a build. + Performs automatic tool installation, and print its location to stdout. Can be only called from inside a build. [deprecated] ListChangesCommand.ShortDescription=\ Dumps the changelog for the specified build(s). ListJobsCommand.ShortDescription=\ @@ -41,16 +42,27 @@ ListJobsCommand.ShortDescription=\ ListPluginsCommand.ShortDescription=\ Outputs a list of installed plugins. LoginCommand.ShortDescription=\ - Saves the current credential to allow future commands to run without explicit credential information. + Saves the current credentials to allow future commands to run without explicit credential information. [deprecated] +LoginCommand.FullDescription=\ + Depending on the security realm, you will need to pass something like:\n\ + --username USER [ --password PASS | --password-file FILE ]\n\ + May not be supported in some security realms, such as single-sign-on.\n\ + Pair with the logout command.\n\ + The same options can be used on any other command, but unlike other generic CLI options,\n\ + these come *after* the command name.\n\ + Whether stored or not, this authentication mode will not let you refer to (e.g.) jobs as arguments\n\ + if Jenkins denies anonymous users Overall/Read and (e.g.) Job/Read.\n\ + *Deprecated* in favor of -auth. LogoutCommand.ShortDescription=\ - Deletes the credential stored with the login command. + Deletes the credentials stored with the login command. [deprecated] +LogoutCommand.FullDescription=*Deprecated* in favor of -auth. MailCommand.ShortDescription=\ Reads stdin and sends that out as an e-mail. SetBuildDescriptionCommand.ShortDescription=\ Sets the description of a build. -SetBuildParameterCommand.ShortDescription=Update/set the build parameter of the current build in progress. +SetBuildParameterCommand.ShortDescription=Update/set the build parameter of the current build in progress. [deprecated] SetBuildResultCommand.ShortDescription=\ - Sets the result of the current build. Works only if invoked from within a build. + Sets the result of the current build. Works only if invoked from within a build. [deprecated] RemoveJobFromViewCommand.ShortDescription=\ Removes jobs from view. VersionCommand.ShortDescription=\ @@ -82,7 +94,17 @@ BuildCommand.CLICause.CannotBuildUnknownReasons=\ Cannot build {0} for unknown reasons. DeleteNodeCommand.ShortDescription=Deletes node(s) - ReloadJobCommand.ShortDescription=Reload job(s) - OnlineNodeCommand.ShortDescription=Resume using a node for performing builds, to cancel out the earlier "offline-node" command. +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. +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. +WaitNodeOfflineCommand.ShortDescription=Wait for a node to become offline. + +CliProtocol.displayName=Jenkins CLI Protocol/1 (unencrypted) +CliProtocol2.displayName=Jenkins CLI Protocol/2 (transport encryption) diff --git a/core/src/main/resources/hudson/cli/Messages_bg.properties b/core/src/main/resources/hudson/cli/Messages_bg.properties index c218a653cf413ea7e4488dccad3bd2905bbd3022..3ce9a54d03d52307a3b3b8993c3b0965e43dabf7 100644 --- a/core/src/main/resources/hudson/cli/Messages_bg.properties +++ b/core/src/main/resources/hudson/cli/Messages_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Bulgarian translation copyright 2015 Alexander Shopov . +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -57,13 +57,13 @@ DeleteViewCommand.ShortDescription=\ 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. + \u0418\u0437\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u0441\u043a\u0440\u0438\u043f\u0442 \u043d\u0430 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. 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. + \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. InstallToolCommand.ShortDescription=\ \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442 \u0438 \u0438\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0442\u043e \u043c\u0443 \u043d\u0430\ \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438\u044f \u0438\u0437\u0445\u043e\u0434. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u0438\u043a\u0432\u0430 \u0441\u0430\u043c\u043e \u043e\u0442 \u0437\u0430\u0434\u0430\u0447\u0430. @@ -77,7 +77,7 @@ LoginCommand.ShortDescription=\ \u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u0435\u043a\u0443\u0449\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f, \u0437\u0430 \u0434\u0430 \u043c\u043e\u0433\u0430\u0442 \u043f\u043e\u0441\u043b\u0435\u0434\u0432\u0430\u0449\u0438\u0442\u0435\ \u043a\u043e\u043c\u0430\u043d\u0434\u0438 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430\u0442, \u0431\u0435\u0437 \u0442\u0435\u0437\u0438 \u0434\u0430\u043d\u043d\u0438 \u0434\u0430 \u0441\u0435 \u0432\u044a\u0432\u0435\u0436\u0434\u0430\u0442 \u043d\u0430\u043d\u043e\u0432\u043e. LogoutCommand.ShortDescription=\ - \u0418\u0437\u0442\u0440\u0438\u0432\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, \u0437\u0430\u043f\u0430\u0437\u0435\u043d\u0438 \u0441 \u043a\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u0430 \u0437\u0430 \u0432\u043b\u0438\u0437\u0430\u043d\u0435. + \u0418\u0437\u0442\u0440\u0438\u0432\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, \u0437\u0430\u043f\u0430\u0437\u0435\u043d\u0438 \u0441 \u043a\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u0430 \u0437\u0430 \u0432\u043b\u0438\u0437\u0430\u043d\u0435. MailCommand.ShortDescription=\ \u0418\u0437\u0447\u0438\u0442\u0430\u043d\u0435 \u043d\u0430 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438\u044f \u0432\u0445\u043e\u0434 \u0438 \u0438\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435 \u043f\u043e \u0435-\u043f\u043e\u0449\u0430. SetBuildDescriptionCommand.ShortDescription=\ @@ -122,3 +122,40 @@ 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. 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. + +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. +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. +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. +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. +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 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 diff --git a/core/src/main/resources/hudson/cli/Messages_da.properties b/core/src/main/resources/hudson/cli/Messages_da.properties index 1bee62f87b20bc52ce0243212a8300ef09f7582b..bfd9e8d040cde189cc6c1c975d00299ccb0f36b8 100644 --- a/core/src/main/resources/hudson/cli/Messages_da.properties +++ b/core/src/main/resources/hudson/cli/Messages_da.properties @@ -1,4 +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. \ +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. + diff --git a/core/src/main/resources/hudson/cli/Messages_de.properties b/core/src/main/resources/hudson/cli/Messages_de.properties index 4df178a57b934293074e75d074e894f332541248..592f9225160bd62a4490cbcfaeeeea5d4150a86b 100644 --- a/core/src/main/resources/hudson/cli/Messages_de.properties +++ b/core/src/main/resources/hudson/cli/Messages_de.properties @@ -1,4 +1,64 @@ -DeleteNodeCommand.ShortDescription=Knoten l\u00f6schen. -DeleteJobCommand.ShortDescription=Job l\u00f6schen. +AddJobToViewCommand.ShortDescription=F\u00FCgt 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.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) +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. +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. +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? +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.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 +InstallToolCommand.ShortDescription=Installiert ein Hilfsprogramm und gibt das Installationsverzeichnis aus. Dieser Befehl funktioniert nur innerhalb eines Builds. +ListChangesCommand.ShortDescription=Zeigt das Changelog des angegebenen Builds. +ListJobsCommand.ShortDescription=Zeigt alle Elemente, die zu einer Ansicht oder einem Ordner geh\u00F6ren. +ListPluginsCommand.ShortDescription=Gibt eine Liste installierter Plugins aus. +LoginCommand.ShortDescription=Speichert die aktuellen Anmeldedaten, damit weitere Befehle ohne gesonderte Anmeldung ausgef\u00FChrt werden k\u00F6nnen. +LogoutCommand.ShortDescription=L\u00F6scht die zuvor mit login-Befehl gespeicherten Anmeldedaten. +MailCommand.ShortDescription=Liest eine Nachricht von der Standardeingabe (stdin) und versendet sie als E-Mail +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. +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. +RemoveJobFromViewCommand.ShortDescription=Entfernt Elemente aus einer Ansicht +SessionIdCommand.ShortDescription=Gibt die Session ID aus, die sich bei jedem Neustart von Jenkins \u00E4ndert. +SetBuildDescriptionCommand.ShortDescription=Setzt die Beschreibung eines Builds. +SetBuildDisplayNameCommand.ShortDescription=Setzt den Anzeigenamen eines Builds. +SetBuildParameterCommand.ShortDescription=\u00C4ndert die Parameter des aktuellen Builds. +# TODO Dieser Befehl funktioniert nur innerhalb eines Builds.? -OnlineNodeCommand.ShortDescription=Knoten wird wieder f\u00fcr neue Builds verwendet. Hebt ein vorausgegangenes "offline-node"-Kommando auf. +SetBuildResultCommand.ShortDescription=Setzt das Ergebnis des aktuellen Builds. Dieser Befehl funktioniert nur innerhalb 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. +VersionCommand.ShortDescription=Zeigt die aktuelle Version an. +WaitNodeOfflineCommand.ShortDescription=Wartet bis ein Knoten nicht mehr f\u00FCr neue Builds verwendet werden kann. +# TODO temporarily offline? + +WaitNodeOnlineCommand.ShortDescription=Wartet bis ein Knoten wieder f\u00FCr 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 b0f51daa044a63beca169ec37d91e0415368617e..11525579ca6435b6433a4acfac31c4feecf6cd02 100644 --- a/core/src/main/resources/hudson/cli/Messages_es.properties +++ b/core/src/main/resources/hudson/cli/Messages_es.properties @@ -48,7 +48,15 @@ UpdateJobCommand.ShortDescription=Actualiza el fichero XML de la definici GroovyshCommand.ShortDescription=Ejecuta una shell interactiva de groovy. SetBuildDescriptionCommand.ShortDescription=Establece la descripcin de una ejecucin. 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. +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. +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 + diff --git a/core/src/main/resources/hudson/cli/Messages_it.properties b/core/src/main/resources/hudson/cli/Messages_it.properties index c5010ed77ac2b102ffd3a803b9dedf6f92d8855d..529ebd742f4247513289099d3b1519dec2a0319c 100644 --- a/core/src/main/resources/hudson/cli/Messages_it.properties +++ b/core/src/main/resources/hudson/cli/Messages_it.properties @@ -1,4 +1,7 @@ DeleteNodeCommand.ShortDescription=Cancella un nodo DeleteJobCommand.ShortDescription=Cancella un job +ClearQueueCommand.ShortDescription=Pulisce la coda di lavoro +ConnectNodeCommand.ShortDescription=Riconnettersi ad un nodo +WaitNodeOnlineCommand.ShortDescription=Attende che il nodo sia attivo +WaitNodeOfflineCommand.ShortDescription=Attende che un nodo sia disattivo -OnlineNodeCommand.ShortDescription=Resume using a node for performing builds, to cancel out the earlier "offline-node" command. diff --git a/core/src/main/resources/hudson/cli/Messages_ja.properties b/core/src/main/resources/hudson/cli/Messages_ja.properties index 908949a71c403673ae54c37123b0ebdfb6a38b78..fb1ddd68602381ccd617eed57b265caae0eacdd4 100644 --- a/core/src/main/resources/hudson/cli/Messages_ja.properties +++ b/core/src/main/resources/hudson/cli/Messages_ja.properties @@ -69,8 +69,16 @@ 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 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 + diff --git a/core/src/main/resources/hudson/cli/Messages_lt.properties b/core/src/main/resources/hudson/cli/Messages_lt.properties new file mode 100644 index 0000000000000000000000000000000000000000..f83756b5abb1eb4badd60e35e7d3d50f433ba0a3 --- /dev/null +++ b/core/src/main/resources/hudson/cli/Messages_lt.properties @@ -0,0 +1,95 @@ +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 + +AddJobToViewCommand.ShortDescription=\ + Prideda darbus \u012f rodin\u012f. +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. +CreateJobCommand.ShortDescription=\ + Sukuria nauj\u0105 darb\u0105 skaitant stdin kaip konfig\u016bracin\u012f XML fail\u0105. +CreateNodeCommand.ShortDescription=\ + Sukuria nauja mazg\u0105 skaitant stdin kaip XML konfig\u016bracij\u0105. +CreateViewCommand.ShortDescription=\ + Creates a new view by reading stdin as a XML configuration. +DeleteBuildsCommand.ShortDescription=\ + I\u0161trina vykdymo \u012fra\u0161\u0105(-us). +DeleteViewCommand.ShortDescription=\ + I\u0161trina rodin\u012f(-ius). +DeleteJobCommand.ShortDescription=\ + I\u0161trina darb\u0105(-us). +GroovyCommand.ShortDescription=\ + Vykdo nurodyt\u0105 Groovy scenarij\u0173. +GroovyshCommand.ShortDescription=\ + Paleid\u017eia interaktyvi\u0105 groovy aplink\u0105. +HelpCommand.ShortDescription=\ + Rodo visas galima komandas arba detal\u0173 vienos komandos apra\u0161ym\u0105. +InstallPluginCommand.ShortDescription=\ + \u012ediegia prieda i\u0161 failo, URL arba i\u0161 atanaujinimo centro. +InstallToolCommand.ShortDescription=\ + Vykdo automatin\u012f \u012franki\u0173 diegim\u0105 ir spausdina jo viet\u0105 \u012f stdout. Gali b\u016bti kvie\u010diamas tik i\u0161 vykdymo vidaus. +ListChangesCommand.ShortDescription=\ + I\u0161krauna nurodyt\u0173 vykdym\u0173 pakeitim\u0173 s\u0105ra\u0161\u0105. +ListJobsCommand.ShortDescription=\ + Rodo visus darbus nurodytame rodinyje arba element\u0173 grup\u0117je. +ListPluginsCommand.ShortDescription=\ + Spausdina \u012fdiegt\u0173 pried\u0173 s\u0105ra\u0161\u0105. +LoginCommand.ShortDescription=\ + \u012era\u0161o dabartinius prisijungimo duomenis, kad ateityje komandas b\u016bt\u0173 galima vykdyti be i\u0161skirtin\u0117s prisijungimo duomen\u0173 informacijos. +LogoutCommand.ShortDescription=\ + I\u0161trina prisijungimo duomenis, \u012fra\u0161ytus su prisijungimo komanda. +MailCommand.ShortDescription=\ + Skaito stdin ir i\u0161siun\u010dia kaip e-pa\u0161t\u0105. +SetBuildDescriptionCommand.ShortDescription=\ + Nustato vykdymo apra\u0161ym\u0105. +SetBuildParameterCommand.ShortDescription=Keisti/nurodyti dabar vykdomo vykdymo parametr\u0105. +SetBuildResultCommand.ShortDescription=\ + Nurodo dabartinio vykdymo rezultat\u0105. Veikia tik paleidus vykdymo viduje. +RemoveJobFromViewCommand.ShortDescription=\ + I\u0161ima darbus i\u0161 rodinio. +VersionCommand.ShortDescription=\ + Spausdina dabartin\u0119 versij\u0105. +GetJobCommand.ShortDescription=\ + Spausdina darbo apra\u0161ymo XML \u012f stdout. +GetNodeCommand.ShortDescription=\ + Spausdina mazgo apra\u0161ymo XML \u012f stdout. +GetViewCommand.ShortDescription=\ + Spausdina rodinio apra\u0161ymo XML \u012f stdout. +SetBuildDisplayNameCommand.ShortDescription=\ + Nurodo vykdymo rodom\u0105 pavadinim\u0105. +WhoAmICommand.ShortDescription=\ + J\u016bs\u0173 prisijungimo duomen\u0173 ir teisi\u0173 ataskaita. +UpdateJobCommand.ShortDescription=\ + Atnaujina darbo apra\u0161ymo XML i\u0161 stdin. Prie\u0161ingas komandai \u201eget-job\u201c. +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. +UpdateViewCommand.ShortDescription=\ + Atnaujina rodinio apra\u0161ymo XML i\u0161 stdin. Prie\u0161ingas komandai \u201eget-view\u201c. + +BuildCommand.CLICause.ShortDescription=I\u0161 komandin\u0117s eilut\u0117s paleido {0} +BuildCommand.CLICause.CannotBuildDisabled=\ +Negalima vykdyti {0}, nes jis i\u0161jungtas. +BuildCommand.CLICause.CannotBuildConfigNotSaved=\ +Negalima vykdyti {0}, nes jo konfig\u016bracija nebuvo \u012fra\u0161yta. +BuildCommand.CLICause.CannotBuildUnknownReasons=\ +Negalima vykdyti {0} d\u0117l ne\u017einom\u0173 prie\u017eas\u010di\u0173. + +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. +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. +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 6b924aa8de399970a79782b81ec04dfd3c3fa0f4..7965b0b7e10de3cc2f6bbdef93806efc09f65a28 100644 --- a/core/src/main/resources/hudson/cli/Messages_pt_BR.properties +++ b/core/src/main/resources/hudson/cli/Messages_pt_BR.properties @@ -115,8 +115,16 @@ InstallPluginCommand.ShortDescription=Instala um plugin a partir de um arquivo, CLI.delete-node.shortDescription=Remover o n\u00f3 # Deletes a job DeleteJobCommand.ShortDescription=Remover uma job(s) - -ReloadJobCommand.ShortDescription=\ - Recarrega job(s) do disco. - +ReloadJobCommand.ShortDescription=Recarrega job(s) do disco. OnlineNodeCommand.ShortDescription=Continuar usando um n\u00f3 para realizar os builds +ClearQueueCommand.ShortDescription=Limpa a fila de builds +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 nenhum build. +CancelQuietDownCommand.ShortDescription=Cancela o comando "quiet-down" +OfflineNodeCommand.ShortDescription=Temporariamente n\u00e3o usando um n\u00f3 para os builds. Aguardando o pr\u00f3ximo comando de modo-online +WaitNodeOnlineCommand.ShortDescription=Aguarda por um n\u00f3 que se torne online +WaitNodeOfflineCommand.ShortDescription=Aguarde por um n\u00f3 ficar offline. + diff --git a/core/src/main/resources/hudson/cli/Messages_sr.properties b/core/src/main/resources/hudson/cli/Messages_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..a504742d83a470fcfbe23593087db7f45f73ac03 --- /dev/null +++ b/core/src/main/resources/hudson/cli/Messages_sr.properties @@ -0,0 +1,68 @@ +# 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. +InstallToolCommand.ShortDescription=\u0410\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u043E \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430 \u0430\u043B\u0430\u0442 \u0438 \u043F\u0440\u0438\u043A\u0430\u0436\u0435 \u045A\u0435\u0433\u043E\u0432\u0443 \u043B\u043E\u043A\u0430\u0446\u0438\u0458\u0438 \u043D\u0430 stdout. \u041C\u043E\u0436\u0435 \u0441\u0430\u043C\u043E \u0431\u0438\u0442\u0438 \u043F\u043E\u0437\u0432\u0430\u043D \u0443\u043D\u0443\u0442\u0430\u0440 \u0437\u0430\u0434\u0430\u0442\u043A\u043E\u043C. +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. +LoginCommand.ShortDescription=\u0421\u0430\u0447\u0443\u0432\u0430 \u0438\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u0458\u0443, \u0434\u0430 \u0431\u0438 \u043D\u0430\u043A\u043D\u0430\u0434\u043D\u0438 \u0437\u0430\u0434\u0430\u0446\u0438 \u043C\u043E\u045B\u0438 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0438 \u0431\u0435\u0437 \u043F\u043E\u043D\u043E\u0432\u0443 \u0438\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u0458\u0443. +LogoutCommand.ShortDescription=\u0418\u0437\u0431\u0440\u0438\u0448\u0435 \u0438\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u0458\u0443 \u0441\u0430\u0447\u0443\u0432\u0430\u043D\u043E \u043F\u0440\u0438\u043B\u0438\u043A\u043E\u043C \u043F\u0440\u0438\u0458\u0430\u0432\u0435. +MailCommand.ShortDescription=\u0418\u0437\u0447\u0438\u0442\u0430 stdin \u0438 \u043F\u043E\u0448\u0430\u0459\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u043F\u0440\u0435\u043A\u043E \u0435-\u043F\u043E\u0448\u0442\u0435. +SetBuildParameterCommand.ShortDescription=\u0423\u0440\u0435\u0452\u0438\u0432\u0430\u045A\u0435/\u043F\u043E\u0441\u0442\u0430\u0432\u0459\u0430\u045A\u0435 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0430\u0440\u0430 \u043D\u0430 \u0442\u0440\u0435\u043D\u0443\u0442\u043D\u043E\u0458 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0438. +SetBuildDescriptionCommand.ShortDescription=\u041F\u043E\u0441\u0442\u0430\u0432\u0438 \u043E\u043F\u0438\u0441 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 +SetBuildResultCommand.ShortDescription=\u041F\u043E\u0441\u0442\u0430\u0432\u0438 \u0440\u0435\u0437\u0443\u043B\u0442\u0430\u0442 \u043D\u0430 \u0442\u0440\u0435\u043D\u0443\u0442\u043D\u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443. \u041C\u043E\u0436\u0435 \u0431\u0438\u0442\u0438 \u043F\u043E\u0437\u0432\u0430\u043D\u043E \u0441\u0430\u043C\u043E \u0443\u043D\u0443\u0442\u0430\u0440 \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0430. +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}" +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. +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. +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. +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 \ No newline at end of file diff --git a/core/src/main/resources/hudson/cli/Messages_zh_CN.properties b/core/src/main/resources/hudson/cli/Messages_zh_CN.properties deleted file mode 100644 index 62e09b76124e6f7d9c29c2990c4826288b6e536c..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/cli/Messages_zh_CN.properties +++ /dev/null @@ -1,2 +0,0 @@ -DeleteNodeCommand.ShortDescription=Deletes a node -DeleteJobCommand.ShortDescription=Deletes a job 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 7921933ce69354c5c064dd08faf88f688979fa7d..b2e5746b7a87145aea16f2d41b7c624102b6cae9 100644 --- a/core/src/main/resources/hudson/cli/Messages_zh_TW.properties +++ b/core/src/main/resources/hudson/cli/Messages_zh_TW.properties @@ -75,3 +75,13 @@ BuildCommand.CLICause.ShortDescription=\u7531 {0} \u7684\u547d\u4ee4\u5217\u4ecb 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 + diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index.jelly b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index.jelly index b752609f48597957e6a3cdb25afd14537fd9ab7a..35988ba3635d6f62c94ddf2f3c7c8683659eeea8 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index.jelly +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index.jelly @@ -24,7 +24,7 @@ THE SOFTWARE. - +

    diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index.properties index 5b67eef77097c1bce1f27075173aa2b3d3806f5e..60274c73652036de4dbac29797aa6aacbd2f1c42 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index.properties @@ -28,4 +28,4 @@ description.2=To prevent that problem, you should act now. solution.1=Clean up some files from this partition to make more room. solution.2=\ Move JENKINS_HOME to a bigger partition. \ - See our Wiki for how to do this. + See our documentation for how to do this. 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 50dfd49b45e73737fa48a1fd5a665f8b98e84813..4ef1658f7e37dd4443e76757b113a578907041ae 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_de.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_de.properties @@ -5,4 +5,4 @@ description.1=Das Verzeichnis JENKINS_HOME ({0}) ist fast voll. Ist die description.2=Um dieses Problem zu vermeiden, sollten Sie jetzt handeln. solution.1=Lschen 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. + 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 6415c2f555333c8e45cf710191ae37e59ccb74ba..5711590493a5a9787979bb875645d634fbffb140 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_es.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_es.properties @@ -28,6 +28,6 @@ description.2=Debes hacer algo ahora para prevenir el problema. solution.1=Borra ficheros de esta particin para liberar espacio. solution.2=\ Mueve el directorio de JENKINS_HOME a una partcin mayor. \ - Echa un vistazo a esta pgina para saber cmo hacerlo. + Echa un vistazo a esta pgina para saber cmo 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 8b52c71b8aa9a24d8633ff47fdda3c78dcb76a51..e09a76202386d524e321386d9b5871c726cc687c 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_fr.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_fr.properties @@ -24,5 +24,5 @@ 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. 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\u00E9placez JENKINS_HOME sur une partition plus grande. Consultez notre Wiki pour la d\u00E9marche \u00E0 suivre. JENKINS_HOME\ is\ almost\ full=JENKINS_HOME est presque plein 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 bf281d21e1208d19af9bfdb14ac041390e28c4b6..e771df40e4a018c0048bcbc938b31e498b638bc2 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_ja.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_ja.properties @@ -28,5 +28,5 @@ description.2=\u554F\u984C\u304C\u8D77\u304D\u306A\u3044\u3088\u3046\u306B\u3001 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 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 + \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 diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_nl.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_nl.properties index b567d7a5ce81ab8ebd42d3986baa304cbc1b7027..c37c0bf5b5f35437aa1c224329aeb556d926e9e5 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_nl.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_nl.properties @@ -26,5 +26,5 @@ description.1=\ description.2=Om problemen te vermijden, dient U nu in te grijpen. solution.1=Gelieve ruimte vrij te maken op deze locatie. solution.2=\ - Verhuis JENKINS_HOME naar een locatie met grotere capaciteit. Op onze Wiki vind je meer informatie over hoe je dit kunt realizeren. + Verhuis JENKINS_HOME naar een locatie met grotere capaciteit. Op onze Wiki vind je meer informatie over hoe je dit kunt realizeren. JENKINS_HOME\ is\ almost\ full=Vrije ruimte in JENKINS_HOME is bijna opgebruikt! diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_pt.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_pt.properties index c2ab796deee8e6642dfd390ef8927d644130f940..b1e7f81355c45789e2d08086db714389ddbdc300 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_pt.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_pt.properties @@ -25,6 +25,6 @@ description.2=Para previnir esse problema, fa\u00e7a alguma coisa agora. description.1=O seu JENKINS_HOME ({0}) est\u00e1 quase cheio. \ Quando esse diret\u00f3rio estiver lotado ocorrer\u00e3o alguns estragos, pois o Jenkins n\u00e3o pode gravar mais dado nenhum. solution.2=Mova o JENKINS_HOME para uma parti\u00e7\u00e3o maior. \ -Veja a nossa Wiki para aprender como fazer isso. +Veja a nossa Wiki para aprender como fazer isso. blurb=JENKINS_HOME est\u00e1 quase cheio solution.1=Limpe alguns arquivos dessa parti\u00e7\u00e3o para liberar mais espa\u00e7o. 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 0e5b944a80856ffe78c86cba5aa64bf4667beeca..2f9b767f5d460f2e5c8ad1d8d0f72b6be5c35ff5 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 @@ -29,10 +29,10 @@ description.1=Seu diret\ufffdrio JENKINS_HOME ({0}) est\ufffd quase che Quando este diret\ufffdrio ficar completamente cheio, ocorrer\ufffd problemas porque o Jenkins n\ufffdo pode mais armazenar dados. # \ # Move JENKINS_HOME to a bigger partition. \ -# See our Wiki for how to do this. +# See our Wiki for how to do this. solution.2=\ Mova o diret\ufffdrio JENKINS_HOME para uma parti\ufffd\ufffdo maior. \ - Veja nosso Wiki para saber como fazer isto. + Veja nosso Wiki para saber como fazer isto. JENKINS_HOME\ is\ almost\ full=JENKINS_HOME est\ufffd quase cheio # JENKINS_HOME is almost full diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_sr.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..82dbe60492ab1507eb48e0999ad1a3a2b9129159 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_sr.properties @@ -0,0 +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. +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://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. +Dit= + +# TODO FIXME This file looks completely messed up? \ No newline at end of file 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 c68caa7b9afcfcab8fea37c71dc5966c73fa45ca..b02747e2a7fc389e3c88d2f56e39db0b150a343b 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 @@ -29,5 +29,5 @@ description.2=\u70ba\u4e86\u907f\u514d\u767c\u751f\u61be\u4e8b\uff0c\u60a8\u61c9 solution.1=\u6e05\u6389\u9019\u500b\u5206\u5272\u5340\u4e0a\u7684\u67d0\u4e9b\u6a94\u6848\uff0c\u7a7a\u51fa\u4e00\u4e9b\u7a7a\u9593\u3002 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 + \u5728\u6211\u5011\u7684 Wiki \u4e0a\u6709\u4f5c\u6cd5\u8aaa\u660e\u3002 JENKINS_HOME\ is\ almost\ full=JENKINS_HOME \u5feb\u6eff\u4e86 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 d04a499f85f177113e0f257d51bc399481a9ddd2..ad55f0936736fd7a0660d79f48448ad2947c1426 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 "{0}" (alias JENKINS_HOME) ist fast voll. \ + Ihr Jenkins Datenverzeichnis \u201E{0}\u201C (alias JENKINS_HOME) ist fast voll. \ Sie sollten handeln, bevor der Speicherplatz komplett erschpft ist. diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_sr.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..7f5e6eac953ef5209644aa251862868efe393500 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_sr.properties @@ -0,0 +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. diff --git a/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_sr.properties b/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..1f7374f74686531c8b44e1bb9f92c0138aef1c27 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/MemoryUsageMonitor/index_sr.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/diagnosis/Messages.properties b/core/src/main/resources/hudson/diagnosis/Messages.properties index b2e56afd7140e9854ac6dad38b3163939aad714b..06c38a572e012970f2403d6876b982d8ca9a618c 100644 --- a/core/src/main/resources/hudson/diagnosis/Messages.properties +++ b/core/src/main/resources/hudson/diagnosis/Messages.properties @@ -3,3 +3,7 @@ MemoryUsageMonitor.TOTAL=Total OldDataMonitor.Description=Scrub configuration files to remove remnants from old plugins and earlier versions. OldDataMonitor.DisplayName=Manage Old Data HudsonHomeDiskUsageMonitor.DisplayName=Disk Usage Monitor + +NullIdDescriptorMonitor.DisplayName=Missing Descriptor ID +ReverseProxySetupMonitor.DisplayName=Reverse Proxy Setup +TooManyJobsButNoView.DisplayName=Too Many Jobs Not Organized in Views diff --git a/core/src/main/resources/hudson/diagnosis/Messages_bg.properties b/core/src/main/resources/hudson/diagnosis/Messages_bg.properties index e3c18a009a1f322e8202958291c60a30b731efc5..1a3ea6cfade1dc525ce73d04cc73991dbc9ed880 100644 --- a/core/src/main/resources/hudson/diagnosis/Messages_bg.properties +++ b/core/src/main/resources/hudson/diagnosis/Messages_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Bulgarian translation copyright 2015 Alexander Shopov . +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, 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_de.properties b/core/src/main/resources/hudson/diagnosis/Messages_de.properties index 894518687d8d7c2d1f211bc02e1569079364b207..39c9577a0c0fc4e0880c3fba906d44319447c2be 100644 --- a/core/src/main/resources/hudson/diagnosis/Messages_de.properties +++ b/core/src/main/resources/hudson/diagnosis/Messages_de.properties @@ -25,3 +25,6 @@ MemoryUsageMonitor.TOTAL=Total OldDataMonitor.DisplayName=Veraltete Daten verwalten OldDataMonitor.Description=Konfiguration bereinigen, um \u00DCberbleibsel alter Plugins und fr\u00FCherer Versionen zu entfernen. HudsonHomeDiskUsageMonitor.DisplayName=Speicherplatz-Monitor +NullIdDescriptorMonitor.DisplayName=Fehlende Descriptor-ID +ReverseProxySetupMonitor.DisplayName=Reverse-Proxy-Konfiguration +TooManyJobsButNoView.DisplayName=Zu viele Elemente nicht in Ansichten organisiert diff --git a/core/src/main/resources/hudson/diagnosis/Messages_pl.properties b/core/src/main/resources/hudson/diagnosis/Messages_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..d06325b6aebedeee28d04fb132302d2b10fbaa86 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/Messages_pl.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2016 Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. diff --git a/core/src/main/resources/hudson/diagnosis/Messages_sr.properties b/core/src/main/resources/hudson/diagnosis/Messages_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..b070f89027135acfd4e46480f60e8b2473811c3a --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/Messages_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authorsMemoryUsageMonitor.USED=\u041A\u043E\u0440\u0438\u0441\u0442\u0438 + +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 \ No newline at end of file diff --git a/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_sr.properties b/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..352d8fc5cf003dfb6a79aaba3a2c35fe0f3ea88a --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/NullIdDescriptorMonitor/message_sr.properties @@ -0,0 +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} diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage.jelly b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage.jelly index 06c28d21ceef3f24d419be98f554f0910dd69a0f..0f73ec6d0fcba592507f0ae191b646d8e79d6b02 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage.jelly +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage.jelly @@ -24,7 +24,7 @@ THE SOFTWARE. - +

    ${%Manage Old 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 9834cb21d567d8e20ad2696d53cb2445c00942d2..80bca0260a836da232ec2ced7a55d7024b9665f1 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_de.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_de.properties @@ -1,66 +1,66 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc., Alan Harder, Simon Wiest -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Error=Fehler -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 Strukturnderungen nicht aktueller als Jenkins -Type=Typ -Unreadable\ Data=Nicht lesbare Daten -Discard\ Unreadable\ Data=Nicht lesbare Daten entfernen -Upgrade=Aktualisieren -Version=Version -blurb.1=\ - ndert sich die Struktur von Konfigurationsdateien, geht Jenkins folgendermaen vor: \ - Dateien werden beim Einlesen in den Speicher in das neue Datenformat migriert, aber \ - nicht automatisch auf Festplatte zurckgeschrieben. Die Konfigurationsdateien bleiben also \ - unverndert. Dies ermglicht bei Problemen ein Jenkins-Downgrade zu einer frheren \ - Version. Auf der anderen Seite knnen dadurch Dateien endlos in lngst veralteten \ - Formaten verbleiben. Die folgende Tabelle zeigt Dateien, die veraltete Strukturen verwenden, \ - sowie die Jenkins-Version(en), in denen die Datenstruktur verndert wurde. -blurb.2=\ - Beim Einlesen von Konfigurationsdateien knnen Fehler auftreten, z.B. wenn ein Plugin \ - Daten hinzufgt und spter deaktiviert wird, wenn kein Migrationscode fr Strukturnderungen \ - geschrieben wurde oder Jenkins auf eine ltere Version zurckgesetzt 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. -blurb.3=\ - Mit der untenstehenden Funktion knnen Sie diese Datein im aktuellen Format neu abspeichern. \ - Damit entfllt die Mglichzeit, auf eine ltere als die ausgewhlte Jenkins-Version zurckzukehren. \ - Auch wenn Sie Konfigurationen bestehender Jobs ndern, werden diese Daten im neuen \ - Format gespeichert, was ein spteres Downgrade ausschliet. Nicht-lesbare Daten, die in der \ - Tabelle rechts dargestellt sind, werden bei der Aktualisierung dauerhaft entfernt. -blurb.4=\ - Langfristig wird Migrationscode zum Lesen veralteter Datenformate auch wieder entfernt werden. \ - Die Kompatibilitt wird mindestens 150 Releases nach nderung des Datenformates gewhrleistet. \ - Versionen, die noch lter sind, werden fett dargestellt. Es wird emfohlen, diese Dateien neu \ - abzuspeichern. -blurb.5=\ - (ein Downgrade bis zur ausgewhlten Version knnte immer noch mglich sein) -blurb.6=\ - Nicht-lesbare Daten stellen kein Problem dar, da Jenkins sie einfach ignoriert. \ - Um jedoch lange Protokolle mit zahlreichen Warnungen whrend des Hochfahrens von Jenkins zu \ - vermeiden, knnen Sie nicht-lesbare Daten dauerhaft entfernen, indem Sie diese ber die \ +# The MIT License +# +# Copyright (c) 2004-2010, Sun Microsystems, Inc., Alan Harder, Simon Wiest +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Error=Fehler +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 Strukturnderungen nicht aktueller als Jenkins +Type=Typ +Unreadable\ Data=Nicht lesbare Daten +Discard\ Unreadable\ Data=Nicht lesbare Daten entfernen +Upgrade=Aktualisieren +Version=Version +blurb.1=\ + ndert sich die Struktur von Konfigurationsdateien, geht Jenkins folgendermaen vor: \ + Dateien werden beim Einlesen in den Speicher in das neue Datenformat migriert, aber \ + nicht automatisch auf Festplatte zurckgeschrieben. Die Konfigurationsdateien bleiben also \ + unverndert. Dies ermglicht bei Problemen ein Jenkins-Downgrade zu einer frheren \ + Version. Auf der anderen Seite knnen dadurch Dateien endlos in lngst veralteten \ + Formaten verbleiben. Die folgende Tabelle zeigt Dateien, die veraltete Strukturen verwenden, \ + sowie die Jenkins-Version(en), in denen die Datenstruktur verndert wurde. +blurb.2=\ + Beim Einlesen von Konfigurationsdateien knnen Fehler auftreten, z.B. wenn ein Plugin \ + Daten hinzufgt und spter deaktiviert wird, wenn kein Migrationscode fr Strukturnderungen \ + geschrieben wurde oder Jenkins auf eine ltere Version zurckgesetzt 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. +blurb.3=\ + Mit der untenstehenden Funktion knnen Sie diese Datein im aktuellen Format neu abspeichern. \ + Damit entfllt die Mglichzeit, auf eine ltere als die ausgewhlte Jenkins-Version zurckzukehren. \ + Auch wenn Sie Konfigurationen bestehender Elemente ndern, werden diese Daten im neuen \ + Format gespeichert, was ein spteres Downgrade ausschliet. Nicht-lesbare Daten, die in der \ + Tabelle rechts dargestellt sind, werden bei der Aktualisierung dauerhaft entfernt. +blurb.4=\ + Langfristig wird Migrationscode zum Lesen veralteter Datenformate auch wieder entfernt werden. \ + Die Kompatibilitt wird mindestens 150 Releases nach nderung des Datenformates gewhrleistet. \ + Versionen, die noch lter sind, werden fett dargestellt. Es wird emfohlen, diese Dateien neu \ + abzuspeichern. +blurb.5=\ + (ein Downgrade bis zur ausgewhlten Version knnte immer noch mglich sein) +blurb.6=\ + Nicht-lesbare Daten stellen kein Problem dar, da Jenkins sie einfach ignoriert. \ + Um jedoch lange Protokolle mit zahlreichen Warnungen whrend des Hochfahrens von Jenkins zu \ + vermeiden, knnen Sie nicht-lesbare Daten dauerhaft entfernen, indem Sie diese ber die \ untenstehende Funktion neu abspeichern lassen. \ No newline at end of file diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_sr.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..501dad149a2887ac1b77e2c4fef2dd701b5dbb88 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_sr.properties @@ -0,0 +1,18 @@ +# 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.1=\u041A\u0430\u0434\u0430 \u0438\u043C\u0430 \u043F\u0440\u043E\u043C\u0435\u043D\u0435 \u0443 \u0442\u043E\u043C\u0435 \u043A\u0430\u043A\u043E \u0441y \u043F\u043E\u0434\u0430\u0446\u0438 \u0443\u0447\u0443\u0432\u0430\u043D\u0438 \u043D\u0430 \u0434\u0438\u0441\u043A\u0443, Jenkins \u043A\u043E\u0440\u0438\u0441\u0442\u0438 \u0441\u043B\u0435\u0434\u0435\u045B\u0443 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0458\u0443: \u043F\u043E\u0434\u0430\u0446\u0438 \u0441\u0443 \u043F\u0440\u0435\u043D\u0435\u0442\u0438 \u0443 \u043D\u043E\u0432\u0443 \u0441\u0442\u0440\u0443\u043A\u0442\u0443\u0440\u0437 \u043A\u0430\u0434\u0430 \u0458\u0435 \u0443\u0447\u0438\u0442\u0430\u043D, \u0430\u043B\u0438 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u043D\u0438\u0458\u0435 \u0441\u0430\u0447\u0443\u0432\u0430\u043D\u0430 \u0443 \u043D\u043E\u0432\u043E\u043C \u0444\u043E\u0440\u043C\u0430\u0442\u0443. \u0422\u043E \u0432\u0430\u043C \u043E\u043C\u043E\u0433\u0443\u045B\u0430\u0432\u0430 \u0434\u0430 \u0441\u0435 \u0432\u0440\u0430\u0442\u0438 \u0432\u0435\u0440\u0437\u0438\u0458\u0430 Jenkins \u0430\u043A\u043E \u0431\u0443\u0434\u0435 \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E. \u041C\u0435\u0452\u0443\u0442\u0438\u043C, \u043E\u043D \u0442\u0430\u043A\u043E\u0452\u0435 \u043C\u043E\u0436\u0435 \u043F\u0438\u0441\u0430\u0442\u0438 \u043D\u043E\u0432\u0435 \u043F\u043E\u0434\u0430\u0442\u043A\u0435 \u043D\u0430 \u0434\u0438\u0441\u043A\u0443 \u0443 \u0441\u0442\u0430\u0440\u043E\u043C \u0444\u043E\u0440\u043C\u0430\u0442\u0443 \u043D\u0430 \u043D\u0435\u043E\u0434\u0440\u0435\u0452\u0435\u043D\u043E \u0432\u0440\u0435\u043C\u0435. \u0423 \u0442\u0430\u0431\u0435\u043B\u0438 \u0438\u0441\u043F\u043E\u0434 \u0458\u0435 \u0441\u043F\u0438\u0441\u0430\u043A \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u043A\u043E\u0458\u0438 \u0441\u0430\u0434\u0440\u0436\u0435 \u0442\u0430\u043A\u0432\u0435 \u043F\u043E\u0434\u0430\u0442\u043A\u0435, \u0438 \u0432\u0435\u0440\u0437\u0438\u0458\u0430 Jenkins, \u0433\u0434\u0435 \u0458\u0435 \u0441\u0442\u0440\u0443\u043A\u0442\u0443\u0440\u0430 \u043F\u0440\u043E\u043C\u0435\u045A\u0435\u043D\u0430. +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 +blurb.3=\u041F\u0440\u0430\u0442\u0435\u045B\u0438 \u0444\u043E\u0440\u043C\u0443\u043B\u0430\u0440 \u043C\u043E\u0436\u0435 \u0441\u0435 \u043A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0438 \u0437\u0430 \u043F\u043E\u043D\u043E\u0432\u043E \u0441\u0430\u0447\u0443\u0432\u0430\u045A\u0435 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u0443 \u0442\u0440\u0435\u043D\u0443\u0442\u043D\u043E\u043C \u0444\u043E\u0440\u043C\u0430\u0442\u0443, \u043A\u043E\u0458\u0438 \u043D\u0435\u043C\u043E\u0436\u0435 \u0431\u0438\u0442\u0438 \u0443\u0447\u0438\u0442\u0430\u043D \u0441\u0442\u0430\u0440\u0438\u0458\u0438\u043C \u0432\u0435\u0440\u0437\u0438\u0458\u0430\u043C\u0430 Jenkins. \u041D\u043E\u0440\u043C\u0430\u043B\u043D\u0430 \u0443\u043F\u043E\u0442\u0440\u0435\u0431\u0430 \u0442\u0430\u043A\u043E\u0452\u0435 \u043C\u043E\u0436\u0435 \u043F\u0440\u043E\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u043F\u043E\u0434\u0430\u0442\u043A\u0435 \u043A\u043E\u0458\u0435 \u043D\u0435\u043C\u043E\u0433\u0443 \u0431\u0438\u0442\u0438 \u0443\u0447\u0438\u0442\u0430\u043D\u0438 \u0441\u0442\u0430\u0440\u0438\u0458\u0438\u043C \u0432\u0435\u0440\u0437\u0438\u0458\u0430\u043C\u0430 Jenkins. \u0421\u0432\u0438 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u043E \u043F\u0440\u0435\u0431\u0430\u0447\u0435\u043D\u0438 \u043F\u043E\u0434\u0430\u0446\u0438 \u045B\u0435 \u0431\u0438\u0442\u0438 \u0438\u0437\u0431\u0440\u0438\u0441\u0430\u043D\u0438 \u043D\u0430\u043A\u043E\u043D \u0441\u0430\u0447\u0443\u0432\u0430\u045A\u0430. +blurb.4=\ \u041E\u0432\u0430 \u0441\u043F\u043E\u0441\u043E\u0431\u043D\u043E\u0441\u0442 \u043C\u043E\u0436\u0435 \u0435\u0432\u0435\u043D\u0442\u0443\u0430\u043B\u043D\u043E \u0431\u0438\u0442\u0438 \u0443\u043A\u043B\u045A\u0435\u043D\u0430, \u043C\u0435\u0452\u0443\u0442\u0438\u043C \u043A\u043E\u043C\u043F\u0430\u0442\u0438\u0431\u0438\u043B\u043D\u043E\u0441\u0442 \u045B\u0435 \u0431\u0438\u0442\u0438 \u043E\u0434\u0440\u0436\u0430\u043D \u0434\u043E \u043D\u0430\u0458\u043C\u0430\u045A\u0435 150 \u0438\u0437\u0434\u0430\u045A\u0430 \u043F\u043E\u0441\u043B\u0435 \u0438\u043A\u0430\u043A\u0432\u0438\u0445 \u043F\u0440\u043E\u043C\u0435\u043D\u0430. \u0421\u0442\u0430\u0440\u0438\u0458\u0435 \u0432\u0435\u0440\u0437\u0438\u0458\u0435 \u0441\u0443 \u043E\u0437\u043D\u0430\u0447\u0435\u043D\u0438 \u043C\u0430\u0441\u043D\u0438\u043C \u0441\u043B\u043E\u0432\u0438\u043C\u0430. \u041F\u0440\u0435\u043F\u043E\u0440\u0443\u0447\u0443\u0458\u0435 \u0441\u0435 \u0441\u0430\u0447\u0443\u0432\u0430\u045A\u0435 \u043E\u0432\u0438\u0445 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\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 +blurb.5=(\u0432\u0440\u0430\u045B\u0430\u045A\u0435 \u043D\u0430 \u043E\u0434\u0430\u0431\u0440\u0430\u043D\u0443 \u0432\u0435\u0440\u0437\u0438\u0458\u0443 \u045B\u0435 \u0431\u0438\u0442\u0438 \u043C\u043E\u0433\u0443\u045B\u0435) +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 +blurb.6=\u041C\u043E\u0436\u0435 \u0441\u0435 \u043E\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043D\u0435\u0432\u0430\u0436\u0435\u045B\u0435 \u043F\u043E\u0434\u0430\u0442\u043A\u0435 \u0443 \u043E\u0432\u0438\u043C \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430\u043C\u0430, \u0437\u0430\u0448\u0442\u043E Jenkins \u0438\u0445 \u043D\u0435 \u0437\u0430\u0431\u0435\u043B\u0435\u0436\u0438. \u041F\u043E\u043D\u043E\u0432\u043E \u0441\u0430\u0447\u0443\u0432\u0430\u0458\u0442\u0435 \u043F\u043E\u0434\u0430\u0442\u043A\u0435 \u0434\u0430 \u0431\u0438\u0441\u0442\u0435 \u0438\u0437\u0431\u0435\u0433\u043B\u0438 \u0436\u0443\u0440\u043D\u0430\u043B \u043F\u043E\u0440\u0443\u043A\u0435 \u043D\u0430\u043A\u043E\u043D \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0430. +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 diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_de.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_de.properties index bb93c60a8e499878f2daf2e4ddd17bc6e3932d3d..6406a4c1145032aad50cf18a96d0ec69316345b2 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_de.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_de.properties @@ -1,27 +1,27 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc., Alan Harder, Simon Wiest -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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=Ignorieren -Manage=Verwalten -You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=\ +# The MIT License +# +# Copyright (c) 2004-2010, Sun Microsystems, Inc., Alan Harder, Simon Wiest +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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=Ignorieren +Manage=Verwalten +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=\ Es liegen Daten in einem veralteten Format und/oder nicht lesbare Daten vor. \ No newline at end of file diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_sr.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..9575d0a32398524af4e5e9cfb0ddf13f6225f5ea --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_sr.properties @@ -0,0 +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. 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 11093616065ccf9159840bc468fcedb4edad01d0..52cd6bb32a7f6a98998cec84eedb07fea51a55e4 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_bg.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=\u041F\u0440\u043E\u043F\u0443\u0441\u043D\u0438 -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\u0442\u0435 \u0433\u0440\u0435\u0448\u043A\u0430 \u0432 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430\u0442\u0430 \u043D\u0430 \u0432\u0430\u0448\u0435\u0442\u043E reverse proxy. +Dismiss=\u041f\u0440\u043e\u043f\u0443\u0441\u043d\u0438 +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\u0442\u0435 \u0433\u0440\u0435\u0448\u043a\u0430 \u0432 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u0442\u0430 \u043d\u0430 \u0432\u0430\u0448\u0435\u0442\u043e reverse proxy. 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 ebf93d6b82ab781a99b682c061d8f9c7ca6db120..426fb21a8ee3a3be408a4c9fe46e62669e91cb10 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 infromaci\u00F3 +More\ Info=M\u00E9s informaci\u00F3 blurb=Sembla que la configuraci\u00F3 del proxy revers \u00E9s incorrecta. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_id.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_id.properties deleted file mode 100644 index 4e641329890d0b366b3b3483780b2ba5474ba2ad..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_id.properties +++ /dev/null @@ -1,5 +0,0 @@ -# This file is under the MIT License by authors - -Dismiss=Tutup -More\ Info=Info Selanjutnya -blurb=Tampaknya reverse proxy Anda rusak 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 e045957692c99db26648ad5063ef6bc9baf08a51..a61a9cb6dabd56a797d4f4169f527eba4a08f447 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sr.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sr.properties @@ -1,3 +1,5 @@ # This file is under the MIT License by authors -More\ Info=Vi\u0161e Informacija +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 diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ta.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ta.properties deleted file mode 100644 index 940482ea2c3545ce45f1480f72de4857adf22b76..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ta.properties +++ /dev/null @@ -1,5 +0,0 @@ -# This file is under the MIT License by authors - -Dismiss=\u0BA8\u0BC0\u0B95\u0BCD\u0B95\u0BC1\u0B95 -More\ Info=\u0B89\u0BB3\u0BCD\u0BB3\u0BC1\u0BB0\u0BC1\u0BAE\u0BA4\u0BCD\u0BA4\u0BBF\u0BB1\u0BCD\u0B95\u0BC1 -blurb=\u0BA4\u0B99\u0BCD\u0B95\u0BB3\u0BA4\u0BC1 \u0BAE\u0BB1\u0BC1\u0BAA\u0B95\u0BCD\u0B95 \u0BA8\u0BBF\u0B95\u0BB0\u0BBE\u0BB3\u0BBF \u0B87\u0BAF\u0B95\u0BCD\u0B95\u0BAE\u0BCD \u0BA4\u0B9F\u0BC8\u0BAA\u0B9F\u0BCD\u0B9F\u0BC1\u0BB3\u0BCD\u0BB3\u0BA4\u0BC1 diff --git a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_sr.properties b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..d025743f7361427539960955abd847745a702dd9 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_sr.properties @@ -0,0 +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. diff --git a/core/src/main/resources/hudson/fsp/Messages_bg.properties b/core/src/main/resources/hudson/fsp/Messages_bg.properties index c7382a4a99a360cec90dc4f435c7b9ca6b2449d8..f51fe4ae7cd7cdc83643f2c992a868a722e77a7f 100644 --- a/core/src/main/resources/hudson/fsp/Messages_bg.properties +++ b/core/src/main/resources/hudson/fsp/Messages_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Bulgarian translation copyright 2015 Alexander Shopov . +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, 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/fsp/Messages_de.properties b/core/src/main/resources/hudson/fsp/Messages_de.properties index 5bb46de650c9745fc58e32f0b2dc22084d137dce..1c79c862df62051d78df89dc8cff946edb0a8476 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 ''{0}'' existiert nicht. Meinten Sie ''{1}''? +WorkspaceSnapshotSCM.NoSuchJob=Job \u201E{0}\u201C existiert nicht. Meinten Sie \u201E{1}\u201C? WorkspaceSnapshotSCM.IncorrectJobType={0} ist kein Job mit einem Arbeitsbereich. -WorkspaceSnapshotSCM.NoBuild=Es existiert kein passender Build fr den Permalink ''{0}'' in {1}. -WorkspaceSnapshotSCM.NoSuchPermalink=Es existiert kein Permalink ''{0}'' fr {1} +WorkspaceSnapshotSCM.NoBuild=Es existiert kein passender Build für den Permalink \u201E{0}\u201C in {1}. +WorkspaceSnapshotSCM.NoSuchPermalink=Es existiert kein Permalink \u201E{0}\u201C für {1} WorkspaceSnapshotSCM.NoWorkspace=\ - Mit {0} {1} ist kein Schnappschuss eines Arbeitsbereiches verknpft,\n\ - vermutlich weil zum Zeitpunkt des Builds kein anderer Job den Schnappschuss bentigte.\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. \ No newline at end of file diff --git a/core/src/main/resources/hudson/fsp/Messages_sr.properties b/core/src/main/resources/hudson/fsp/Messages_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..b4e48fe8ec4a2a4a00d1170614473ef621b2bb0e --- /dev/null +++ b/core/src/main/resources/hudson/fsp/Messages_sr.properties @@ -0,0 +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}"? \ No newline at end of file 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 01a1bfd123673058c312d8b4f4daa790347dabb7..daa25199de5d08bfab71df3dc52e605023c43abc 100644 --- a/core/src/main/resources/hudson/init/impl/Messages_bg.properties +++ b/core/src/main/resources/hudson/init/impl/Messages_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Bulgarian translation copyright 2015 Alexander Shopov . +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, 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_sr.properties b/core/src/main/resources/hudson/init/impl/Messages_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..643a509371dbcf932f18addaa6e74df0f73ec6a6 --- /dev/null +++ b/core/src/main/resources/hudson/init/impl/Messages_sr.properties @@ -0,0 +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 \ No newline at end of file diff --git a/core/src/main/resources/hudson/lifecycle/Messages.properties b/core/src/main/resources/hudson/lifecycle/Messages.properties index 76609f4b6113f9eeddd62d6f19b0382dc6e4af0f..0439ce0fca5e44c3b4286e48f79978a1a665f439 100644 --- a/core/src/main/resources/hudson/lifecycle/Messages.properties +++ b/core/src/main/resources/hudson/lifecycle/Messages.properties @@ -22,7 +22,7 @@ WindowsInstallerLink.DisplayName=Install as Windows Service WindowsInstallerLink.Description=Installs Jenkins as a Windows service to this system, so that Jenkins starts automatically when the machine boots. -WindowsSlaveInstaller.ConfirmInstallation=This will install a slave agent as a Windows service, so that a Jenkins slave starts automatically when the machine boots. +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 2.0 or later is required for this feature WindowsSlaveInstaller.InstallationSuccessful=Installation was successful. Would you like to start the service now? -WindowsSlaveInstaller.RootFsDoesntExist=Slave root directory \u2018{0}\u2019 doesn\u2019t exist \ No newline at end of file +WindowsSlaveInstaller.RootFsDoesntExist=Agent root directory \u2018{0}\u2019 doesn\u2019t exist \ No newline at end of file diff --git a/core/src/main/resources/hudson/lifecycle/Messages_bg.properties b/core/src/main/resources/hudson/lifecycle/Messages_bg.properties index 9c994c04f81a78e38c5077b95c8daeac2bcaf703..b8dae9036cbc1b9f12d493be8e96be724b6cf7a6 100644 --- a/core/src/main/resources/hudson/lifecycle/Messages_bg.properties +++ b/core/src/main/resources/hudson/lifecycle/Messages_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Bulgarian translation copyright 2015 Alexander Shopov . +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # 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,12 +25,13 @@ WindowsInstallerLink.DisplayName=\ 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. -WindowsSlaveInstaller.ConfirmInstallation=\ - \u0422\u043e\u0432\u0430 \u0449\u0435 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d \u0430\u0433\u0435\u043d\u0442 \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. 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 2.0 \u0438\u043b\u0438 \u043f\u043e-\u0432\u0438\u0441\u043e\u043a\u0430 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. +# 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. diff --git a/core/src/main/resources/hudson/lifecycle/Messages_da.properties b/core/src/main/resources/hudson/lifecycle/Messages_da.properties index 6cb6cfec1ac7c0213d4b311c8eaf31bc29fa74c0..f6efe70ed1739e9bda9d0a7a4861b23321a3d15b 100644 --- a/core/src/main/resources/hudson/lifecycle/Messages_da.properties +++ b/core/src/main/resources/hudson/lifecycle/Messages_da.properties @@ -22,7 +22,5 @@ WindowsInstallerLink.DisplayName=Installer som Windows service WindowsSlaveInstaller.DotNetRequired=Denne feature kr\u00e6ver .NET framework 2.0 eller nyere -WindowsSlaveInstaller.RootFsDoesntExist=Slave roddirektorie ''{0}'' findes ikke 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. -WindowsSlaveInstaller.ConfirmInstallation=Dette vil installere en Jenkins slave agent som en Windows service, s\u00e5 Jenkins slaven vil starte automatisk n\u00e5r 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 83960e0ee6f3db267c11b540567ac88e720fa945..32f1a1f323e2e5140bd7c5b92bc9fb7733888870 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.ConfirmInstallation=Dies installiert einen Slave-Agent als Windows-Dienst. -WindowsSlaveInstaller.DotNetRequired=.NET Framework 2.0 oder hher ist fr dieses Funktionsmerkmal erforderlich. -WindowsSlaveInstaller.InstallationSuccessful=Installation erfolgreich. Mchten Sie den Dienst jetzt starten? -WindowsSlaveInstaller.RootFsDoesntExist=Stammverzeichnis ''{0}'' existiert auf dem Slave-Knoten nicht. \ No newline at end of file +WindowsSlaveInstaller.DotNetRequired=.NET Framework 2.0 oder h\u00F6her ist f\u00FCr diesen Vorgang erforderlich. +WindowsSlaveInstaller.InstallationSuccessful=Installation erfolgreich. M\u00F6chten 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. diff --git a/core/src/main/resources/hudson/lifecycle/Messages_es.properties b/core/src/main/resources/hudson/lifecycle/Messages_es.properties index e4618b85a45cc32a4eefa6267988fadc1d8b4999..2a1031893cc2bdc801d66c1cab66e0a38c836b41 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 esclavo como un servicio de Windows. +WindowsSlaveInstaller.ConfirmInstallation=Esto instalar el agente como un servicio de Windows. WindowsSlaveInstaller.DotNetRequired=Es necesario tener instalado: .NET Framework 2.0 o posterior, para que esta caracterstica funcione. WindowsSlaveInstaller.InstallationSuccessful=La instalacin ha sido correcta. Quieres arrancar el servicio ahora? -WindowsSlaveInstaller.RootFsDoesntExist=El directorio raiz {0} en el esclavo no existe. +WindowsSlaveInstaller.RootFsDoesntExist=El directorio raiz {0} en el agente no existe. diff --git a/core/src/main/resources/hudson/lifecycle/Messages_ja.properties b/core/src/main/resources/hudson/lifecycle/Messages_ja.properties index e157bec5ef2b0858cda42a57a8741ef6f72fa6df..481cbd8d0e70d29bfaba4f18312cb059814eadd7 100644 --- a/core/src/main/resources/hudson/lifecycle/Messages_ja.properties +++ b/core/src/main/resources/hudson/lifecycle/Messages_ja.properties @@ -22,7 +22,6 @@ 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.ConfirmInstallation=\u30B9\u30EC\u30FC\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092Windows\u306E\u30B5\u30FC\u30D3\u30B9\u3068\u3057\u3066\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3057\u307E\u3059\u3002 WindowsSlaveInstaller.DotNetRequired=.NET Framework 2.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=\u30B9\u30EC\u30FC\u30D6\u306E\u30EB\u30FC\u30C8\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA ''{0}'' \u304C\u5B58\u5728\u3057\u307E\u305B\u3093\u3002 \ No newline at end of file +WindowsSlaveInstaller.RootFsDoesntExist=\u30B9\u30EC\u30FC\u30D6\u306E\u30EB\u30FC\u30C8\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA ''{0}'' \u304C\u5B58\u5728\u3057\u307E\u305B\u3093\u3002 diff --git a/core/src/main/resources/hudson/lifecycle/Messages_pl.properties b/core/src/main/resources/hudson/lifecycle/Messages_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..adea2803ad1afaa92a82782e20c53e3df1c96c69 --- /dev/null +++ b/core/src/main/resources/hudson/lifecycle/Messages_pl.properties @@ -0,0 +1,25 @@ +# The MIT License +# +# Copyright (c) 2016 Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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 2.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. 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 a280eaee0c0b6bd21f98e20c704d6772aa125409..e2d80763ab85eafadce129aad85efde7f316bd17 100644 --- a/core/src/main/resources/hudson/lifecycle/Messages_pt_BR.properties +++ b/core/src/main/resources/hudson/lifecycle/Messages_pt_BR.properties @@ -22,12 +22,8 @@ # Install as Windows Service WindowsInstallerLink.DisplayName=Instalar como um servi\u00e7o do Windows -# Slave root directory ''{0}'' doesn''t exist -WindowsSlaveInstaller.RootFsDoesntExist=Diret\u00f3rio slave ''{0}'' n\u00e3o existe # .NET Framework 2.0 or later is required for this feature WindowsSlaveInstaller.DotNetRequired=Framework .NET 2.0 ou superior \u00e9 necess\u00e1rio -# This will install a slave agent as a Windows service, so that a Jenkins slave starts automatically when the machine boots. -WindowsSlaveInstaller.ConfirmInstallation=Isso instalar\u00e1 o agente slave como um servi\u00e7o do Windows, portanto ser\u00e1 iniciado junto com o Sistema Operacional # Installation was successful. Would you like to start the service now? WindowsSlaveInstaller.InstallationSuccessful=Instala\u00e7\u00e3o efetuada com sucesso. Gostaria de iniciar o servi\u00e7o agora? # Installs Jenkins as a Windows service to this system, so that Jenkins starts automatically when the machine boots. diff --git a/core/src/main/resources/hudson/lifecycle/Messages_sr.properties b/core/src/main/resources/hudson/lifecycle/Messages_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..8c6981247ca11c3c5eef36b5b78108be454418ff --- /dev/null +++ b/core/src/main/resources/hudson/lifecycle/Messages_sr.properties @@ -0,0 +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 2.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. \ No newline at end of file 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 261fc2d0f24bfe6deb662b5a01012d693aed7d61..6986de32c6e35b651e9c44cbfb79a607ff2c2123 100644 --- a/core/src/main/resources/hudson/lifecycle/Messages_zh_TW.properties +++ b/core/src/main/resources/hudson/lifecycle/Messages_zh_TW.properties @@ -22,7 +22,5 @@ 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.ConfirmInstallation=\u5c07\u628a Slave \u4ee3\u7406\u7a0b\u5f0f\u5b89\u88dd\u6210 Windows \u670d\u52d9\uff0c\u958b\u6a5f\u5f8c Jenkins Slave \u5c31\u6703\u81ea\u52d5\u555f\u52d5\u3002 WindowsSlaveInstaller.DotNetRequired=\u672c\u529f\u80fd\u9700\u8981 .NET Framework 2.0 \u6216\u662f\u66f4\u65b0\u7684\u7248\u672c WindowsSlaveInstaller.InstallationSuccessful=\u5b89\u88dd\u5b8c\u6210\u3002\u60a8\u8981\u99ac\u4e0a\u555f\u52d5\u670d\u52d9\u55ce? -WindowsSlaveInstaller.RootFsDoesntExist=Slave \u6839\u76ee\u9304 ''{0}'' \u4e0d\u5b58\u5728 \ No newline at end of file diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart.properties index 31eae4527a8bad551066df5b8e82304b580ead06..f732713a51eb79f27610047b18a57a43fbfa60c6 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart.properties @@ -22,4 +22,4 @@ blurb=You should be taken automatically to the new Jenkins in a few seconds. \ 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. + located at the official wiki. 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 382bf6e7d7c75567c4bf67f6e75734fbeae96f1e..fe3165afa57ce7bbe786214cc2ca9de22aa514da 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, whrend 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. + 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 c9a35d1d85786445af0ef69880b2e67c8e382426..492e81a8d7b2c2a5944a3cd800597d06c8e64bc3 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_es.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_es.properties @@ -22,5 +22,5 @@ blurb=Sers redirigido automticamente al nuevo Jenkins en unos segundos. \ Si por alguna razn el servicio falla, consulta el ''log'' de eventos de windows \ - y echa un vistazo a esta pgina. + y echa un vistazo a esta pgina. 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 ca363550e7084181a9bb40065608fa4b27b9030d..acc033e4e1b1828a0a59b8f3431f7ffc76530e1c 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_fr.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_fr.properties @@ -25,4 +25,4 @@ blurb=Vous devriez \u00EAtre emmen\u00E9 automatiquement vers la nouvelle instan 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 \ - la page wiki. + la page wiki. 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 bf999731834a1a2f1d325f6b37ef393018ed6a11..9ffc93da4f8f9812c63eed37aa02848f8409a0d3 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_ja.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_ja.properties @@ -22,5 +22,5 @@ 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 + 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 diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_nl.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_nl.properties index 68ff9a6c13ceda5aa416d84dc7ccd7fa36e0fbf0..a0c11bc5f65e52bfbb3ca653682cfa7bf196adfe 100644 --- a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_nl.properties +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_nl.properties @@ -24,4 +24,4 @@ Please\ wait\ while\ Jenkins\ is\ restarting=Gelieve even te wachten. Jenkins wo blurb=Uw nieuwe Jenkins instantie zou automatisch geladen moeten worden. \ Indien de service niet gestart raakt, kunt U er best de Windows event log op nakijken. \ Eventueel kunt U ook wat meer info over typische problemen en hun oplossingen terugvinden op \ - de online wiki pagina. + de online wiki pagina. 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 a26457988fc6a62720345bbf2a860eb3606a834e..eed23b1afc036e7b163029d9bfd69815638ebeaa 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 @@ -23,7 +23,7 @@ Please\ wait\ while\ Jenkins\ is\ restarting= Por favor aguarde enquanto o Jenkins reinicia # You should be taken automatically to the new Jenkins in a few seconds. \ # If for some reasons the service fails to start, check Windows event log for errors and consult \ -# online wiki page. +# online wiki page. blurb=Voc\u00ea deve ser levado ao Jenkins em poucos instantes. \ Se por alguma raz\u00e3o o servi\u00e7o falhar na inicializa\u00e7\u00e3o, verifique o log de eventos \ diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_sr.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..90525524fe5d80a1196aa01b5b88175726f7b3ef --- /dev/null +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/_restart_sr.properties @@ -0,0 +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://jenkins.io/redirect/troubleshooting/windows-service-fails-to-start"">\u0437\u0432\u0430\u043D\u0438\u0447\u043D\u043E\u0433 \u0412\u0438\u043A\u0438. 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 c927aebac9948deaf2b127dc38814d7f8c75022c..71355c449f256d3dcf3afa5292e59cf5c6dc5ff9 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 @@ -21,6 +21,6 @@ # 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 + \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 Please\ wait\ while\ Jenkins\ is\ restarting=Jenkins \u91cd\u65b0\u555f\u52d5\u4e2d\uff0c\u8acb\u7a0d\u5019 diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_pl.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..11b31afa40b5188a244e6ec83ba2ab5fd2ab7fb6 --- /dev/null +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_pl.properties @@ -0,0 +1,27 @@ +# The MIT License +# +# Copyright (c) 2016-2017 Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. +Installation\ Directory=Katalog instalacyjny +Install\ as\ Windows\ Service=Zainstaluj jako us\u0142ug\u0119 systemow\u0105 +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. diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_sr.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..b7283ad27b269e9b251f5f91541319708cfa10cb --- /dev/null +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_sr.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/logging/LogRecorder/configure_sr.properties b/core/src/main/resources/hudson/logging/LogRecorder/configure_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..22db6a939b54de73261a31e3004f54e6d4d6dcf9 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorder/configure_sr.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/logging/LogRecorder/delete_pl.properties b/core/src/main/resources/hudson/logging/LogRecorder/delete_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..bc11809b5cb211b0284d19ee12dd62f2f9475ca3 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorder/delete_pl.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2017, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. +Are\ you\ sure\ about\ deleting\ this\ log\ recorder?=Czy na pewno chcesz usun\u0105\u0107 tego rejestratora log\u00F3w? +Yes=Tak diff --git a/core/src/main/resources/hudson/logging/LogRecorder/delete_sr.properties b/core/src/main/resources/hudson/logging/LogRecorder/delete_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..79e28f491f4e32a7e4d63e7fab3bebb240742e85 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorder/delete_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Are\ you\ sure\ about\ deleting\ this\ log\ recorder?=\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? +Yes=\u0414\u0430 diff --git a/core/src/main/resources/hudson/logging/LogRecorder/index_de.properties b/core/src/main/resources/hudson/logging/LogRecorder/index_de.properties new file mode 100644 index 0000000000000000000000000000000000000000..245cbe7dc4cb2a73109fead1ca9b374584656792 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorder/index_de.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2017 Daniel Beck and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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=Dieses Log zur\u00FCcksetzen diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_eu.properties b/core/src/main/resources/hudson/logging/LogRecorder/index_pl.properties similarity index 93% rename from core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_eu.properties rename to core/src/main/resources/hudson/logging/LogRecorder/index_pl.properties index 2f8cf78d8f6de2538367e16ad94d741e33878916..a3fc012d58917121deaff28d019fc0f73acada64 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_eu.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/index_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2017, Damian Szczepanik # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -19,5 +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. - -sign\ up=izena eman +Clear\ This\ Log=Usu\u0144 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 new file mode 100644 index 0000000000000000000000000000000000000000..ab884fbbc937e48a851a21483d670459ee7afb64 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorder/index_sr.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel.jelly b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel.jelly index b9c8884ff21ad96e05352f921bef98515e4d34c3..686f05cf7e8daecfc4caed041b53b98f30b615aa 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel.jelly +++ b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel.jelly @@ -32,7 +32,7 @@ THE SOFTWARE. - + diff --git a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_pl.properties b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..378dffae6e0b8efd935c1bf942028b15852aca92 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_pl.properties @@ -0,0 +1,25 @@ +# The MIT License +# +# Copyright (c) 2017, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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 +Configure=Skonfiguruj diff --git a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_sr.properties b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..056edbafdc7b5a359246825a417f74154eebf546 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_sr.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/all_sr.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/all_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..9e6ac59fabe5e1e6b2772f7b4a2823a9b427dd68 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/all_sr.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_sr.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..89231883ddcc627e1f46e051f32bd761449b8d5c --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_sr.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index.jelly b/core/src/main/resources/hudson/logging/LogRecorderManager/index.jelly index 7b6e2d677e00c6fb31d8039610c9d620c337147f..1eb55cf888dfe4965db584922067bdf01b360dfa 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/index.jelly +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index.jelly @@ -32,7 +32,7 @@ THE SOFTWARE.

    ${%Log Recorders} - +

    @@ -59,7 +59,7 @@ THE SOFTWARE. - + 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 abfa7767baa747643b650e0ef9049c2de0178a95..9557f45bddecd150d7e5e3a30152fe528982c832 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 -All\ Jenkins\ Logs=Wszystkie login Jenkins +All\ Jenkins\ Logs=Wszystkie zdarzenia Jenkinsa Log\ Recorders=Rejestratory log\u00F3w Name=Nazwa diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_sr.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..3ace1a3e186ea7f6bdffbb89c1bea555d8f81f5a --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_sr.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels.properties index 4f02f7ea2c93a3b24771be12eea10bd14263ecfa..11646ee2754199f130bd5231284ee3bb4f882787 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -url=http://wiki.jenkins-ci.org//x/YYI5Ag +url=https://jenkins.io/redirect/log-levels defaultLoggerMsg=Logger with no name is the default logger. \ This level will be inherited by all loggers without a configured level. diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_da.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_da.properties index bf0d0c2d8694832691212f4dfddcb92cfdeb4637..4b029252569aa6365544a8d55e760b80a3fde67d 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_da.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_da.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Level=Niveau -url=http://wiki.jenkins-ci.org/display/JENKINS/Logger+Configuration +url=https://jenkins.io/redirect/log-levels defaultLoggerMsg=Unavngiven logger er standardlogger. \ Dette niveau vil nedarve til alle loggere uden et konfigurationsniveau. Name=Navn 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 f84c727878ff1d373d887040fd429746f8776d2a..1a8a389aec05c724e118f35f244b223fb491def5 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_de.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_de.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Logger\ Configuration=Logger-Konfiguration -url=http://wiki.jenkins-ci.org/display/JENKINS/Logger+Configuration +url=https://jenkins.io/redirect/log-levels Name=Name Level=Prioritt Submit=bernehmen 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 f3fdddd73c1d2e176d4c526a0d6a0c3370ead5f6..aa803dda357c43799c6f11aed81b95de469ce9b4 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_es.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_es.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -url=http://wiki.jenkins-ci.org/display/JENKINS/Logger+Configuration +url=https://jenkins.io/redirect/log-levels Level=Nivel de log Logger\ Configuration=Configuracin del logger Submit=Enviar diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_fr.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_fr.properties index 10e3d012fc9868dfadfd0c493621e9c9d2cb09c5..c30bb5735afa49fac158cc1b037de24fd7010ef1 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_fr.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_fr.properties @@ -24,4 +24,4 @@ Logger\ Configuration=Configuration du logger Name=Nom Level=Niveau Submit=Envoyer -url=http://wiki.jenkins-ci.org/display/JENKINS/Logger+Configuration +url=https://jenkins.io/redirect/log-levels 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 3450c5a7292dcdc49eb9427da72c49688a2ef02a..a455ea1aa51f5f566536bf71c7ad8e9b52ddb81e 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_it.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_it.properties @@ -6,4 +6,4 @@ Logger\ Configuration=Configurazione registro Name=Nome Submit=Invia defaultLoggerMsg=Il registro senza nome \u00E8 quello predefinito. Questo livello sar\u00E0 ereditato da tutti i registri senza un livello configurato. -url=http://wiki.jenkins-ci.org//x/YYI5Ag +url=https://jenkins.io/redirect/log-levels 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 ab204e41ff8eca74dee9e4a95b587c590851a42d..2f8444273b1bb023e72c369fe5146437133ff500 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ja.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ja.properties @@ -24,7 +24,7 @@ Logger\ Configuration=\u30ED\u30AC\u30FC\u306E\u8A2D\u5B9A Name=\u540D\u524D Level=\u30EC\u30D9\u30EB Submit=\u767B\u9332 -url=http://wiki.jenkins-ci.org/display/JA/Logger+Configuration +url=https://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 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 b2ae0088527697e3df6162b6066414c9f0eac7d1..bc7562a4935bca8af66d185e4513aa028e391988 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ko.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ko.properties @@ -6,4 +6,4 @@ Logger\ Configuration=\uB85C\uAC70 \uC124\uC815 Name=\uC774\uB984 Submit=\uC81C\uCD9C 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. -url=http://wiki.jenkins-ci.org//x/YYI5Ag +url=https://jenkins.io/redirect/log-levels diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_pt.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_pt.properties index 0aa78bd338c9ac614b8996c68bdb0be8f92c7ba2..9863626db1fc5850003322e43e9ff356ff82a8cd 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_pt.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_pt.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Adjust\ Levels=Ajustar n\u00edveis -url=http://wiki.jenkins-ci.org//x/YYI5Ag +url=https://jenkins.io/redirect/log-levels Submit=Enviar Logger\ Configuration=Configura\u00e7\u00e3o de logger defaultLoggerMsg=Um logger sem nome ser\u00e1 o logger padr\u00e3o. Esse n\u00edvel ser\u00e1 herdado por todos os loggers sem um n\u00edvel configurado. 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 d82fb502196143595073221b3d8303e8dcf2c8cd..6be55205954c3eab7b770730bbd3a4c5e2bcec1b 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 @@ -28,5 +28,5 @@ Name=Nome Adjust\ Levels=Ajustar os n\u00edveis Submit=Enviar Logger\ Configuration=Configura\u00e7\u00e3o do Logger -# http://wiki.jenkins-ci.org//x/YYI5Ag -url=http://wiki.jenkins-ci.org//x/YYI5Ag +# https://jenkins.io/redirect/log-levels +url=https://jenkins.io/redirect/log-levels 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 1e6b31ab3351697c8564cccc225bc4375d271264..b156024d81b9618b66799474c3699d63255d8bbc 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ru.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ru.properties @@ -26,4 +26,4 @@ Logger\ Configuration=\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u04 Name=\u041D\u0430\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u0438\u0435 Submit=\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C 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. -url=http://wiki.jenkins-ci.org/display/JENKINS/Logger+Configuration +url=https://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 new file mode 100644 index 0000000000000000000000000000000000000000..059a02ebf24d513b15ff6e8caf07cb9fe2b0ddb2 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_sr.properties @@ -0,0 +1,9 @@ +# 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 +url=https://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 +Submit=\u041F\u043E\u0434\u043D\u0435\u0441\u0438 \ No newline at end of file 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 1a573b548f4197bae6843e610382a6b48e16abb5..1ac8df73eb3018ab6fa5e81c16244609e9989119 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 @@ -26,4 +26,4 @@ Logger\ Configuration=\u8a18\u9304\u5668\u8a2d\u5b9a Name=\u540d\u7a31 Submit=\u9001\u51fa 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 -url=http://wiki.jenkins-ci.org//x/YYI5Ag +url=https://jenkins.io/redirect/log-levels diff --git a/core/src/main/resources/hudson/PluginManager/table_hi_IN.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/new_sr.properties similarity index 67% rename from core/src/main/resources/hudson/PluginManager/table_hi_IN.properties rename to core/src/main/resources/hudson/logging/LogRecorderManager/new_sr.properties index 13587bf10dde1aa07e2507879b18cdf73a585efc..2fbb8bde38001bf90e43c02d70be99315bd965fa 100644 --- a/core/src/main/resources/hudson/PluginManager/table_hi_IN.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=\u0928\u093E\u092E +Name=\u0418\u043C\u0435 diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel.jelly b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel.jelly index d3d6da993536e3889cafe5d1cd057441db22a5e1..c27d64b58a5c1897a88bad0dc51155e334c6d302 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel.jelly +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel.jelly @@ -31,7 +31,7 @@ THE SOFTWARE. - + 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 4945181f2788b5468c8a3b852e3adb28e6f94d4c..47ad32fa69ca81e082a4c2d42d553b02abd2c6bd 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pl.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pl.properties @@ -1,8 +1,27 @@ -# This file is under the MIT License by authors - +# The MIT License +# +# Copyright (c) 2013-2017, Kohsuke Kawaguchi, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. All\ Logs=Wszystkie Logi -Back\ to\ Dashboard=Wr\u00F3\u0107 do Panelu -Log\ Levels=Poziom Logowania -Logger\ List=Lista loger\u00F3w -Manage\ Jenkins=Zarz\u0105dzaj Jenkins''em -New\ Log\ Recorder=Nowe Nagrywanie Log\u00F3w +Back\ to\ Dashboard=Powr\u00F3t 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 diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_sr.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..332bbec552ce0aaacb3eafcd91c95accfba9a67f --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_sr.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/logging/Messages_bg.properties b/core/src/main/resources/hudson/logging/Messages_bg.properties index 2c8f53b916e6a82f1ccfb608d95e335153bd5da7..71b30e1d27a9255209ddf7c5d3e620dc35742b22 100644 --- a/core/src/main/resources/hudson/logging/Messages_bg.properties +++ b/core/src/main/resources/hudson/logging/Messages_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Bulgarian translation copyright 2015 Alexander Shopov . +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, 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_de.properties b/core/src/main/resources/hudson/logging/Messages_de.properties index f76b7ce7c4ea11b2a94abd23aed52abb7386a9c3..b600463068f4b182f3be9827625ec5ba9aae7263 100644 --- a/core/src/main/resources/hudson/logging/Messages_de.properties +++ b/core/src/main/resources/hudson/logging/Messages_de.properties @@ -1,23 +1,24 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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.init=Initialisiere Log-Rekorder \ No newline at end of file +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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.init=Initialisiere Log-Rekorder +LogRecorderManager.DisplayName=Log-Rekorder diff --git a/core/src/main/resources/hudson/logging/Messages_pl.properties b/core/src/main/resources/hudson/logging/Messages_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..d9a98bbf3de54a40a82bfef77e8ca2e531ffe743 --- /dev/null +++ b/core/src/main/resources/hudson/logging/Messages_pl.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2017, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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 diff --git a/core/src/main/resources/hudson/logging/Messages_sr.properties b/core/src/main/resources/hudson/logging/Messages_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..9cc510fd61a3da051f08748c68ec993cd7d09b5e --- /dev/null +++ b/core/src/main/resources/hudson/logging/Messages_sr.properties @@ -0,0 +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 \ No newline at end of file diff --git a/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_sr.properties b/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..b8caf9dd6b919119d9b9a200771920b2f8b66971 --- /dev/null +++ b/core/src/main/resources/hudson/markup/EscapedMarkupFormatter/config_sr.properties @@ -0,0 +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. diff --git a/core/src/main/resources/hudson/markup/Messages_bg.properties b/core/src/main/resources/hudson/markup/Messages_bg.properties index e1a1c9c1e804aec5d45db5e4d42203b4f4b776d3..c7a2206baae954d60c217fd1e0f7aadf3390b57e 100644 --- a/core/src/main/resources/hudson/markup/Messages_bg.properties +++ b/core/src/main/resources/hudson/markup/Messages_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Bulgarian translation copyright 2015 Alexander Shopov . +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, 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/noWorkspace_pl.properties b/core/src/main/resources/hudson/markup/Messages_de.properties similarity index 90% rename from core/src/main/resources/hudson/model/AbstractItem/noWorkspace_pl.properties rename to core/src/main/resources/hudson/markup/Messages_de.properties index bd515a74b8ec3cc6c7be527df5629bd40ef99e1b..c44b252dc3b8170a4b7c1df959a56ab77658063c 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_pl.properties +++ b/core/src/main/resources/hudson/markup/Messages_de.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2017 Daniel Beck and a number of other of contributors # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Error:\ no\ workspace=B\u0142\u0105d: brak przestrzeni roboczej +EscapedMarkupFormatter.DisplayName=Nur Text diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_fr.properties b/core/src/main/resources/hudson/markup/Messages_pl.properties similarity index 91% rename from core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_fr.properties rename to core/src/main/resources/hudson/markup/Messages_pl.properties index 0664cb46e04fdcb2b6168bd7d3fc9008aabdbc8c..b706b9193cb98a2335610b5101f6ef2abcff6d8e 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_fr.properties +++ b/core/src/main/resources/hudson/markup/Messages_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant +# Copyright (c) 2016, Damian Szczepanik # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb= +EscapedMarkupFormatter.DisplayName=Niesformatowany tekst diff --git a/core/src/main/resources/hudson/markup/Messages_sr.properties b/core/src/main/resources/hudson/markup/Messages_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..5f8d6dcd1f7caccecd17093c567f1ca2450cd2fd --- /dev/null +++ b/core/src/main/resources/hudson/markup/Messages_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +EscapedMarkupFormatter.DisplayName=\u041E\u0431\u0438\u0447\u0430\u043D \u0442\u0435\u043A\u0441\u0442 \ No newline at end of file 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 377ea21e939b944bc24ab25d1acf2a6b7c00ecf7..8dc5346f7f959c6f25610d8d15a656743d694061 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_bg.properties @@ -1,3 +1,30 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -Changes=\u041F\u0440\u043E\u043C\u0435\u043D\u0438 +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_de.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_de.properties index f439524342c694d0815cfa0230d42fad57ce1465..4ef6616435f3ea6c515eabc01e04f2c0cb90df95 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_de.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_de.properties @@ -20,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=nderungen +Changes=\u00C4nderungen +log=Log +Failed\ to\ determine=\u00C4nderungen konnten nicht bestimmt werden. +Not\ yet\ determined=\u00C4nderungen noch nicht bestimmt. diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_hi_IN.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_hi_IN.properties deleted file mode 100644 index 71896e6b5f1c6a5733d2ce0db25f5e3cd134eca2..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_hi_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Changes=\u092A\u0930\u093F\u0935\u0930\u094D\u0924\u0928 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 5d4ef6a979b40b25f6cb7345c1e9d529d43e2fad..0a8f87fa885e1dc8f805de2f905a5fe03e51ea45 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_sr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_sr.properties @@ -1,3 +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 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 07e67e8699b3680f642eae6dc3f02b9fdcd1d68c..25b57a73db29059454f62db1619048b04b225a05 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,9 +20,31 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=\u0438\u0437\u043F\u044A\u043B\u043D\u0435\u043D\u0438\u0435 -Build\ Artifacts=\u0430\u0440\u0442\u0438\u0444\u0430\u043A\u0442\u0438 \u043E\u0442 \u0438\u0437\u043F\u044A\u043B\u043D\u0435\u043D\u0438\u0435\u0442\u043E -Took=\u041E\u0442\u043D\u0435 -beingExecuted=\u0422\u043E\u0437\u0438 \u0431\u0438\u043B\u0434 \u0441\u0435 \u0438\u0437\u043F\u044A\u043B\u043D\u044F\u0432\u0430 \u0432\u0435\u0447\u0435 {0} -on=\u043D\u0430 -startedAgo=\u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D \u043F\u0440\u0435\u0434\u0438 {0} +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} +on=\ + \u043d\u0430 +startedAgo=\ + \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u043e \u043f\u0440\u0435\u0434\u0438 {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_en_GB.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_en_GB.properties index d5ed3717ab68d5c47638a34f93665190c38bd05f..d251b5168d2a48d98bdcbec98ec42645832ec454 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_en_GB.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_en_GB.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Build\ Artifacts=Build Artefacts +Build\ Artifacts=Build Artifacts diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_eu.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_eu.properties deleted file mode 100644 index b9331070f8783b1104c8f1de0e33148f42869868..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_eu.properties +++ /dev/null @@ -1,6 +0,0 @@ -# This file is under the MIT License by authors - -Build=fghg -Build\ Artifacts=gfhfgh -Took=fghg -startedAgo=dhgg diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_hi_IN.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_hi_IN.properties deleted file mode 100644 index 060fa61c5da7714dc2da24be01db46a207bf8a5e..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_hi_IN.properties +++ /dev/null @@ -1,7 +0,0 @@ -# This file is under the MIT License by authors - -Build=\u0917\u0920\u0928 -Build\ Artifacts=\u0917\u0920\u0928 \u0909\u0924\u094D\u092A\u093E\u0926 -Took=\u0917\u0920\u0928 \u0905\u0935\u0927\u093F -beingExecuted=\u092F\u0939 \u0917\u0920\u0928 {0} \u0938\u0947 \u091A\u0932 \u0930\u0939\u093E \u0939\u0948 -startedAgo=\u092F\u0939 \u0917\u0920\u0928 {0} \u092A\u0942\u0930\u094D\u0935 \u092A\u094D\u0930\u093E\u0930\u092E\u094D\u092D \u0939\u0941\u0906 \u0925\u093E diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_id.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_id.properties deleted file mode 100644 index 6e007ebe6258fb9b91a626c81954d92f15788368..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_id.properties +++ /dev/null @@ -1,5 +0,0 @@ -# This file is under the MIT License by authors - -Took=Selama -on=Pada -startedAgo=Dimulai {0} sebelumnya diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_ka.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_ka.properties deleted file mode 100644 index ef6e6e64e78b654ca26ec2413632980d5562cb77..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_ka.properties +++ /dev/null @@ -1,6 +0,0 @@ -# This file is under the MIT License by authors - -Build=\u10D5\u10D4\u10E0\u10E1\u10D8\u10D0 -Build\ Artifacts=\u10D5\u10D4\u10E0\u10E1\u10D8\u10D8\u10E1 \u10D0\u10E0\u10E2\u10D8\u10E4\u10D0\u10EA\u10E2\u10D8 -Took=\u10D0\u10E6\u10D4\u10D1\u10D0 -startedAgo=\u10D3\u10D0\u10EC\u10E7\u10D8\u10DA\u10D8\u10D0{0} \u10EC\u10D8\u10DC diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_kn.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_kn.properties deleted file mode 100644 index 8e0eb288c25d60bf5bae4cbeb1e0d34fa8127464..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_kn.properties +++ /dev/null @@ -1,5 +0,0 @@ -# This file is under the MIT License by authors - -Build=\u0CAC\u0CBF\u0CB2\u0CCD\u0CA1\u0CCD -beingExecuted={0} \u0CB8\u0CAE\u0CAF\u0CA6\u0CBF\u0C82\u0CA6 \u0CAC\u0CBF\u0CB2\u0CCD\u0CA1\u0CCD \u0C86\u0C97\u0CC1\u0CA4\u0CCD\u0CA4\u0CBE \u0C87\u0CA6\u0CC6 -startedAgo={0} \u0CB8\u0CAE\u0CAF\u0CA6 \u0CB9\u0CBF\u0C82\u0CA6\u0CC6 \u0CAA\u0CCD\u0CB0\u0CBE\u0CB0\u0C82\u0CAD\u0CB5\u0CBE\u0CAF\u0CBF\u0CA4\u0CC1 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 13a1635b6dabb27e2f3f2ffe04916c7f8a92797c..23661662c63df3d4228366075d91a0de33249078 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_pl.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2004-2016, Sun Microsystems., Inc, Damian Szczepanik # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Buduj -Build\ Artifacts=Artefakty budowania +Build=Zadanie +Build\ Artifacts=Artefakty zadania Changes\ in\ dependency=Zmiany w zale\u017Cno\u015Bciach -Downstream\ Builds=Buildy podrz\u0119dne +Downstream\ Builds=Zadania podrz\u0119dne Not\ yet\ determined=Jeszcze nie ustalono Took=Trwa\u0142o -Upstream\ Builds=Buildy nadrz\u0119dne +Upstream\ Builds=Zadania nadrz\u0119dne 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 7e954f685444d58667af666a494eb47f63e5b33c..83030bc367b49ab8c23bcad295881b14e6ff0f60 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 @@ -32,5 +32,4 @@ Upstream\ Builds=builds pai Downstream\ Builds=builds filho none=nenhum Took=Demorou -on=no slave Build=Build diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_sq.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_sq.properties deleted file mode 100644 index 384f43b27196363aa01e8901580c28d393b879d0..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_sq.properties +++ /dev/null @@ -1,7 +0,0 @@ -# This file is under the MIT License by authors - -Build=BEEEEELD! -Build\ Artifacts=Buildenzie das Artifactenein! -beingExecuted=Beeld hause bean eggse-cute-in fahr a wall -on=Ahn -startedAgo=Straighted a whale bek 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 2a36f45d5710257f12faba03e618f9ee9a9bc13d..8015f80d9cec368ac71047a92437b94bcb08cd57 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_sr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_sr.properties @@ -1,7 +1,16 @@ # This file is under the MIT License by authors -Build=Projekat +Build=\u0418\u0437\u0433\u0440\u0430\u0434\u045A\u0430 Build\ Artifacts=Artifakti projekta -Took=Uzmi -on=na -startedAgo=Zapoceto pre {0} +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 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_te.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_te.properties deleted file mode 100644 index 786e72ba290d1765cd42f511f22b3e5bb6cbee48..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_te.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -startedAgo={0} \u0C15\u0C4D\u0C30\u0C3F\u0C24\u0C02 \u0C2E\u0C4A\u0C26\u0C32\u0C2F\u0C4D\u0C2F\u0C3F\u0C02\u0C26\u0C3F 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 f883b8e2c8875158942947c0d1af3e8c51ec9724..e543476a9f4ccc13f434d477911c65ba988549ac 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,5 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=\u0421\u043B\u0435\u0434\u0432\u0430\u0449 \u0431\u0438\u043B\u0434 -Previous\ Build=\u041F\u0440\u0435\u0434\u0438\u0448\u043D\u043E \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043D\u0435 +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_id.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_id.properties deleted file mode 100644 index 57bdcb583b8eaf4ebd51c0421cf4b252a0f670e6..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_id.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Next\ Build=Build Selanjutnya -Previous\ Build=Pembuatan Sebelumnya diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ka.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ka.properties deleted file mode 100644 index a953e89dd990084822a4e6197acec50393c5af1d..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ka.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Previous\ Build=\u10EC\u10D8\u10DC\u10D0 \u10D5\u10D4\u10E0\u10E1\u10D8\u10D0 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_kn.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_kn.properties deleted file mode 100644 index 1857c8eead6a9b897cc3dd1fb8436c1b74293da3..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_kn.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Next\ Build=\u0CAE\u0CC1\u0C82\u0CA6\u0CBF\u0CA8 \u0CAC\u0CBF\u0CB2\u0CCD\u0CA1\u0CCD -Previous\ Build=\u0CB9\u0CBF\u0C82\u0CA6\u0CBF\u0CA8 \u0CAC\u0CBF\u0CB2\u0CCD\u0CA1\u0CCD diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_mk.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_mk.properties deleted file mode 100644 index 5ffa4f70055ad4f72ce52b2b77e3c3204fb62658..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_mk.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Previous\ Build=\u041F\u0440\u0435\u0442\u0445\u043E\u0434\u0435\u043D Build 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 1f6bd5f5e87466465e5fb04e94e47a2dfa96bdbf..aa0cc1a6f557a9b39347629d4bacb916410cbc98 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\u0119pna wersja +Next\ Build=Nast\u0119pne zadanie Previous\ Build=Poprzednie zadanie diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sq.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sq.properties deleted file mode 100644 index eea72ec893dd34a450b8b0edd6c86ff0b47127e0..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sq.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Next\ Build=Kleenex Beeld -Previous\ Build=Build von vorher 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 effcb55a0a699b1231a9641eb357055fdac95197..639db57af036d9a8df13c2b554dcc1e036e26c45 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 -Next\ Build=Naredna Gradnja -Previous\ Build=Prethodno sklapoanje +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 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ta.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ta.properties deleted file mode 100644 index a7b662817ee8417243ace1fb84997d4a028f0aaf..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ta.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Previous\ Build=\u0BAE\u0BC1\u0BA8\u0BCD\u0BA4\u0BC8\u0BAF \u0B95\u0B9F\u0BCD\u0B9F\u0BC1\u0BAE\u0BBE\u0BA9\u0BAE\u0BCD 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 996ec2e34395db3577df0cf6fb0c7b2f726ba865..b32a0ed30a840ffd6086b4cdd3816ff25e705d92 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # 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\u0435\u043D\u0438 -Console\ Output=\u041A\u043E\u043D\u0437\u043E\u043B\u0435\u043D \u0442\u0435\u043A\u0441\u0442 -View\ Build\ Information=\u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F \u0437\u0430 \u0438\u0437\u043F\u044A\u043B\u043D\u0435\u043D\u0438\u0435\u0442\u043E -View\ as\ plain\ text=\u0420\u0430\u0437\u0433\u043B\u0435\u0436\u0434\u0430\u043D\u0435 \u043A\u0430\u0442\u043E \u043E\u0431\u0438\u043A\u043D\u043E\u0432\u0435\u043D \u0442\u0435\u043A\u0441\u0442 -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 \u0431\u0438\u043B\u0434\u0430 -Status=\u0421\u0442\u0430\u0442\u0443\u0441 -raw=\u043D\u0435\u043E\u0431\u0440\u0430\u0431\u043E\u0442\u0435\u043D +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_de.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_de.properties index fbf6ef7314fd4e1110c0b3c02b4096912a77a627..62705f7913c671279b8cfc2c709e18e37cc641bd 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_de.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_de.properties @@ -23,8 +23,4 @@ Back\ to\ Project=Zur\u00FCck zum Projekt Status=Status Changes=\u00C4nderungen -Console\ Output=Konsolenausgabe -raw=unformatiert -View\ as\ plain\ text=Als unformatierten Text anzeigen Edit\ Build\ Information=Build-Informationen editieren -View\ Build\ Information=Build-Informationen anzeigen diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_eo.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_eo.properties deleted file mode 100644 index ea69c6af22ed6e9322c05d82f3a44961584fc000..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_eo.properties +++ /dev/null @@ -1,30 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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\ Project=Reen al la projekto -Changes=\u015Can\u011Doj -Console\ Output=Terminala eligo -View\ Build\ Information=Vidigi konstruan informon -View\ as\ plain\ text=Vidi kiel klara teksto -Edit\ Build\ Information=Redakti konstruktan informon -Status=Statuso -raw=kruda diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_eu.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_eu.properties deleted file mode 100644 index 9789ce28d1c1a9e372d5f182fbbb867bef8a98a6..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_eu.properties +++ /dev/null @@ -1,8 +0,0 @@ -# This file is under the MIT License by authors - -Back\ to\ Project=drthdf -Changes=hgdg -Console\ Output=ghdgfh -Edit\ Build\ Information=Kompilazioaren argibidea edidatu -Status=hgfdhg -View\ Build\ Information=dhgg diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_hi_IN.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_hi_IN.properties deleted file mode 100644 index 59e48c9a0dcf7d12933a583f94c24ee8e3a77a59..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_hi_IN.properties +++ /dev/null @@ -1,32 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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\ Project=\u0935\u093E\u092A\u0938 \u092A\u0930\u093F\u092F\u094B\u091C\u0928\u093E \u092A\u0930 \u091C\u093E\u092F\u0947\u0902 -Changes=\u092C\u0926\u0932\u093E\u0935 -Console\ Output=\u0915\u0902\u0938\u094B\u0932 \u092A\u0930 \u092E\u0941\u0926\u094D\u0930\u093F\u0924 -View\ Build\ Information=\u0928\u093F\u0930\u094D\u092E\u093E\u0923 \u0915\u0940 \u091C\u093E\u0928\u0915\u093E\u0930\u0940 \u0926\u0947\u0916\u0947\u0902 -View\ as\ plain\ text=\u0938\u093E\u0926\u0947 \u0936\u092C\u094D\u0926\u094B\u0902 \u0915\u0947 \u0930\u0942\u092A \u092E\u0947\u0902 \u0926\u0947\u0916\u0947\u0902 -Edit\ Build\ Information=\u0928\u093F\u0930\u094D\u092E\u093E\u0923 \u0938\u0942\u091A\u0928\u093E \u0938\u0902\u092A\u093E\u0926\u093F\u0924 \u0915\u0930\u0947\u0902 -Status=\u0938\u094D\u0925\u093F\u0924\u093F - - -raw=\u0905\u0928\u093F\u0930\u094D\u092E\u093F\u0924 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_id.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_id.properties deleted file mode 100644 index ec0ae69592c22fbc3d12a9604a803b07d2e52a44..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_id.properties +++ /dev/null @@ -1,8 +0,0 @@ -# This file is under the MIT License by authors - -Back\ to\ Project=Kembali Ke Project -Changes=Perubahan -Console\ Output=Output Console -View\ Build\ Information=Lihat Informasi Pembuatan -View\ as\ plain\ text=Lihat Sebagai Plain Text -raw=acak diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_is.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_is.properties deleted file mode 100644 index 4721ede034a9f14ece403675609736acce0af0cd..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_is.properties +++ /dev/null @@ -1,28 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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\ Project=Til baka \u00ED verkefni -Changes=Breytingar -Console\ Output=Raunt\u00EDma atbur\u00F0a skr\u00E1ning -View\ as\ plain\ text=Sko\u00F0a \u00E1 hr\u00E1u formi -Edit\ Build\ Information=Breyta keyrslu uppl\u00FDsingum -Status=Sta\u00F0a diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ka.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ka.properties deleted file mode 100644 index 8bf07a36669e9804c7c5608f5b629d57c3cea698..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ka.properties +++ /dev/null @@ -1,8 +0,0 @@ -# This file is under the MIT License by authors - -Back\ to\ Project=\u10E3\u10D9\u10D0\u10DC \u10D3\u10D0\u10D1\u10E0\u10E3\u10DC\u10D4\u10D1\u10D0 -Changes=\u10EA\u10D5\u10DA\u10D8\u10DA\u10D4\u10D1\u10D4\u10DA\u10D8 -Console\ Output=\u10D9\u10DD\u10DC\u10E1\u10DD\u10DA\u10D8\u10E1 \u10E8\u10D4\u10D3\u10D4\u10D2\u10D8 -Status=\u10E1\u10E2\u10D0\u10E2\u10E3\u10E1\u10D8 -View\ Build\ Information=\u10D5\u10D4\u10E0\u10E1\u10D8\u10D8\u10E1 \u10D8\u10DC\u10E4\u10DD\u10E0\u10D0\u10EA\u10D8\u10D0 -View\ as\ plain\ text=\u10D3\u10D0\u10D2\u10D4\u10D2\u10DB\u10D8\u10DA\u10D8 \u10E2\u10D4\u10E5\u10E1\u10E2\u10D8\u10E1 \u10DC\u10D0\u10EE\u10D5\u10D0 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_kn.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_kn.properties deleted file mode 100644 index c9e414b782403d3455be284ff515db3680c889ce..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_kn.properties +++ /dev/null @@ -1,29 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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\ Project=\u0CAE\u0CB0\u0CB3\u0CBF \u0CAA\u0CCD\u0CB0\u0CBE\u0C9C\u0CC6\u0C95\u0CCD\u0C9F\u0CCD \u0C97\u0CC6 -Changes=\u0CAC\u0CA6\u0CB2\u0CBE\u0CB5\u0CA3\u0CBF\u0C97\u0CB3\u0CC1 -Console\ Output=\u0C95\u0CA8\u0CCD\u0CB8\u0CC6\u0CC2\u0CD5\u0CB2\u0CCD \u0C89\u0CA4\u0CCD\u0CAA\u0CA8\u0CCD\u0CA8 -Status=\u0CB8\u0CCD\u0CA5\u0CBF\u0CA4\u0CBF -View\ Build\ Information=\u0CAC\u0CBF\u0CB2\u0CCD\u0CA1\u0CCD \u0CAE\u0CBE\u0CB9\u0CBF\u0CA4\u0CBF \u0CB5\u0CBF\u0CD5\u0C95\u0CCD\u0CB7\u0CBF\u0CB8\u0CAC\u0CB9\u0CC1\u0CA6\u0CC1 -View\ as\ plain\ text="\u0CAA\u0CCD\u0CB2\u0CC8\u0CA8\u0CCD \u0C9F\u0CC6\u0C95\u0CCD\u0CB8\u0CCD\u0C9F\u0CCD" \u0C86\u0C97\u0CBF \u0CB5\u0CC0\u0C95\u0CCD\u0CB7\u0CBF\u0CB8\u0CBF -raw=\u0C95\u0C9A\u0CCD\u0C9A\u0CBE diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_mk.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_mk.properties deleted file mode 100644 index b9f726fe531fc1fb79b5d6a768e627f5b92060e3..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_mk.properties +++ /dev/null @@ -1,5 +0,0 @@ -# This file is under the MIT License by authors - -Back\ to\ Project=\u041D\u0430\u0437\u0430\u0434 \u043A\u043E\u043D \u041F\u0440\u043E\u0435\u043A\u0442\u043E\u0442 -Changes=\u041F\u0440\u043E\u043C\u0435\u043D\u0438 -Status=\u0421\u0442\u0430\u0442\u0443\u0441 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_oc.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_oc.properties deleted file mode 100644 index 44b14c1cbafcb5cb044e755e65e1b6a6af6aeb07..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_oc.properties +++ /dev/null @@ -1,8 +0,0 @@ -# This file is under the MIT License by authors - -Back\ to\ Project=Back to the drawing board -Changes=Edits -Console\ Output=WYSIWYG -Edit\ Build\ Information=Tinker -Status=Whats that? -raw=WYSIWYG 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 0d03d2fca9e97500d0692b0ff15c100b72238715..ef9d00dfba9d17e85a32a9be004c833e24b2d1bf 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_pl.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2004-2016, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributors # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,10 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=Wr\u00F3\u0107 do projektu -Changes=Zmiany -Console\ Output=Logi konsoli -View\ as\ plain\ text=Otw\u00F3rz jako zwyk\u0142y tekst -Edit\ Build\ Information=Edytuj informacje o kompilacji -View\ Build\ Information=Poka\u017C Informacje o build''zie -raw=surowe wyj\u015Bcie +Back\ to\ Project=Powr\u00F3t 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_sq.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sq.properties deleted file mode 100644 index 4f83713864901baa8e8fe4b4ebf2c5e099414625..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_sq.properties +++ /dev/null @@ -1,7 +0,0 @@ -# This file is under the MIT License by authors - -Back\ to\ Project=Zruck -Changes=\u00C4ndarung -Console\ Output=Ausput -View\ Build\ Information=Build auschau -raw=RAWR 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 2505d1654cbe7eda1007153b52ad54d738497042..f980312c413e5a725b38ccfcfc14ca4a7b1658ce 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_sr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sr.properties @@ -1,9 +1,10 @@ # This file is under the MIT License by authors -Back\ to\ Project=Nazad na projekt -Changes=Promjene -Console\ Output=Ispis konzole -Edit\ Build\ Information=Izmeni informacije o sklapoanju -View\ Build\ Information=Pogledaj informacije u buildu -View\ as\ plain\ text=Pregledati kao cisti text -raw=sirov +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 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ta.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ta.properties deleted file mode 100644 index ecccfb354bf5b2ebf785289dde17f4915a3ed4ab..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ta.properties +++ /dev/null @@ -1,8 +0,0 @@ -# This file is under the MIT License by authors - -Back\ to\ Project=Project\u0B95\u0BC1 \u0BAA\u0BBF\u0BA9\u0BCD\u0B9A\u0BC6\u0BB2\u0BCD -Changes=\u0BAE\u0BBE\u0BB1\u0BCD\u0BB1\u0B99\u0BCD\u0B95\u0BB3\u0BCD -Console\ Output=Console \u0BB5\u0BC6\u0BB3\u0BBF\u0BAF\u0BC0\u0B9F\u0BC1 -Status=\u0BA8\u0BBF\u0BB2\u0BC8 -View\ Build\ Information=\u0BB5\u0BC6\u0BB1\u0BCD\u0BB1\u0BC1 \u0B89\u0BB0\u0BC8\u0BAF\u0BBE\u0B95 \u0BAA\u0BBE\u0BB0\u0BCD\u0BB5\u0BC8\u0BAF\u0BBF\u0B9F -View\ as\ plain\ text=\u0BB5\u0BC6\u0BB1\u0BCD\u0BB1\u0BC1 \u0B89\u0BB0\u0BC8\u0BAF\u0BBE\u0B95 \u0BAA\u0BBE\u0BB0\u0BCD\u0BB5\u0BC8\u0BAF\u0BBF\u0B9F diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_te.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_te.properties deleted file mode 100644 index da35dcc0e78c26ef4eabc884d346fb928d071f72..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_te.properties +++ /dev/null @@ -1,9 +0,0 @@ -# This file is under the MIT License by authors - -Back\ to\ Project=\u0C2A\u0C4D\u0C30\u0C3E\u0C1C\u0C46\u0C15\u0C4D\u0C1F\u0C4D \u0C24\u0C3F\u0C30\u0C3F\u0C17\u0C3F -Changes=\u0C2E\u0C3E\u0C30\u0C4D\u0C2A\u0C41\u0C32\u0C41 -Console\ Output=\u0C15\u0C28\u0C4D\u0C38\u0C4B\u0C32\u0C4D \u0C05\u0C35\u0C41\u0C1F\u0C4D\u0C2A\u0C41\u0C1F\u0C4D -Edit\ Build\ Information=Nirmana Vivarala Sankalanam -Status=\u0C39\u0C4B\u0C26\u0C3E -View\ Build\ Information=\u0C07\u0C28\u0C4D\u0C2B\u0C30\u0C4D\u0C2E\u0C47\u0C37\u0C28\u0C4D \u0C2C\u0C3F\u0C32\u0C4D\u0C21\u0C4D \u0C35\u0C40\u0C15\u0C4D\u0C37\u0C3F\u0C02\u0C1A\u0C02\u0C21\u0C3F -raw=\u0C2A\u0C02\u0C21\u0C28\u0C3F diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_th.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_th.properties deleted file mode 100644 index 8103576a47c583e92e494b01d4e5793ba21a185d..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_th.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Back\ to\ Project=\u0E01\u0E25\u0E31\u0E1A\u0E44\u0E1B\u0E22\u0E31\u0E07\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23 -Status=\u0E2A\u0E16\u0E32\u0E19\u0E30 diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_bg.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..3a70a40083b0a340e8cb98885a11dd1e4871b950 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_bg.properties @@ -0,0 +1,26 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +blurb=\ + \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? +Yes=\ + \u0414\u0430 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 0b915f48281dbd402782c67cacd90ce0bc1c6f41..fb60aacaafc365170e4a80b410dcea182d373b9b 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} ''{1}'' wirklich gelscht werden? +blurb=Soll {0} \u201E{1}\u201C wirklich gelscht werden? Yes=Ja 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 b7c2d51be86045ff2595eddda3b4afc1e8d2191b..66114af436e70142a2b651771b7358dafce28123 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_ru.properties @@ -1,17 +1,17 @@ # The MIT License -# +# # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov -# +# # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: -# +# # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. -# +# # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE @@ -20,6 +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\ job?=\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0443\u0432\u0435\u0440\u0435\u043d\u044b \u0432 \u0442\u043e\u043c \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0437\u0430\u0434\u0430\u0447\u0443? 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}''''''''? +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}''''''''? diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_sr.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..4777801d8ff03b1d3c231fc3e038d90b10c66a27 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_sr.properties @@ -0,0 +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? diff --git a/core/src/main/resources/hudson/model/AbstractItem/help-displayNameOrNull_bg.html b/core/src/main/resources/hudson/model/AbstractItem/help-displayNameOrNull_bg.html new file mode 100644 index 0000000000000000000000000000000000000000..26671940462ccbb39de77b132613c10b510bb077 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/help-displayNameOrNull_bg.html @@ -0,0 +1,7 @@ +
    +Ако е зададено, незадължителното показвано име се използва за проекта в +интерфейса на Jenkins. Понеже се ползва чисто визуално, няма изискване за +уникалност на това име на проект.
    +Ако не е зададено показвано име, интерфейсът на Jenkins показва обичайното +име на проект. +
    \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity.html b/core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity.html index 02ca4366566f3649cbe97a5a902f0eb0d8890f53..61dd7332947f9f7d1385161b310c8fb15d50c33b 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity.html +++ b/core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity.html @@ -1,17 +1,15 @@
    - Sometimes a project can only be successfully built on a particular slave - (or master). If so, this option forces Jenkins to always build this project - on a specific computer. - - If there is a group of machines that the job can be built on, you can specify - that label as the node to tie on, which will cause Jenkins to build the - project on any of the machines with that label. - + By default, builds of this project may be executed on any build agents that + are available and configured to accept new builds.

    - Otherwise, uncheck the box so that Jenkins can schedule builds on available - nodes, which results in faster turn-around time. - + When this option is checked, you have the possibility to ensure that builds of + this project only occur on a certain agent, or set of agents.

    - This option is also useful when you'd like to make sure that a project can - be built on a particular node. -

    \ No newline at end of file + For example, if your project should only be built on a certain operating + system, or on machines that have a certain set of tools installed, or even one + specific machine, you can restrict this project to only execute on agents that + that meet those criteria. +

    + The help text for the Label Expression field, shown when this option is + checked, provides more detailed information on how to specify agent criteria. + diff --git a/core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_bg.html b/core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_bg.html new file mode 100644 index 0000000000000000000000000000000000000000..277eda80998b783d5f1542ad463aea9824ff88ee --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_bg.html @@ -0,0 +1,15 @@ +

    + Стандартно, всеки наличен и настроен да приема нови изграждания агент може да + изгради проекта. +

    + Ако изберете тази опция може да осигурите изграждането на проекта да се + извършва от определена група от компютри (в частност — само един компютър). +

    + Например, ако проектът трябва да се изгражда само на определени + операционни системи или на компютри, на които са инсталирани специфични + интструменти, можете да укажете на проекта да се изгражда само на машини, + коитоy отговарят на интересуващите ви критерии. +

    + Помощният текст за полето Израз с етикети, което се показва, когато + сте избрали тази опция, съдържа повече информация, как се указват критерии. +

    diff --git a/core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_de.html b/core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_de.html.lang,slave_rename similarity index 74% rename from core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_de.html rename to core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_de.html.lang,slave_rename index c942b354be7474c54afc5d651405617251dd9ba9..50d612fa49db316a79ef9fbb913c0a9d2def118a 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_de.html +++ b/core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_de.html.lang,slave_rename @@ -1,15 +1,15 @@
    - Manchmal kann ein Projekt nur auf einem bestimmten Slave-Knoten (oder + Manchmal kann ein Projekt nur auf einem bestimmten Agent-Knoten (oder Master-Knoten) erfolgreich gebaut werden. - In diesem Fall sollte diese Option angewählt werden, so daß Jenkins + In diesem Fall sollte diese Option angewählt werden, so dass Jenkins das Projekt stets nur auf diesem bestimmten Knoten baut. - In allen anderen Fällen sollten Sie diese Option abwählen, so daß Jenkins + In allen anderen Fällen sollten Sie diese Option abwählen, so dass Jenkins Builds auf allen verfügbaren Knoten planen kann - was in kürzeren Durchlaufzeiten resultieren kann.

    Diese Option ist ebenfalls nützlich, wenn Sie gezielt testen möchten, ob ein Projekt auf einem bestimmten Knoten gebaut werden kann. -

    \ No newline at end of file + diff --git a/core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_pt_BR.html b/core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_pt_BR.html deleted file mode 100644 index d5af2f57af26feca24bac75ea34f2b3ecab07095..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_pt_BR.html +++ /dev/null @@ -1,12 +0,0 @@ -v> - Algumas vezes um projeto só pode ser construído com sucesso em um slave - (ou master) em particular. Se for assim, esta opção força o Jenkins a sempre construir este projeto - em um computadore específico. - - Caso contrário, desmarque a caixa e assim o Jenkins pode agendar construções nos nós - disponíveis, o que resulta em tempos de resposta mais rápidos. - -

    - Esta opção tamém é últil quando você quiser ter certeza que um projeto pode - ser construído em um nó particular. - diff --git a/core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_tr.html b/core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_tr.html deleted file mode 100644 index a5ea3ee54e22cd7a9b1125590f6a170e936ca795..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_tr.html +++ /dev/null @@ -1,11 +0,0 @@ -

    - Bazı projeler sadece belirli slave'lerde (master'da olabilir) başarı ile yapılandırılır, - bu tür durumlar için, bu seçenek projeyi daima belirli bir bilgisayarda yapılandırır. - - Aksi takdirde, kutucuğu seçili değil halde bırakırsanız, Jenkins yapılandırmayı, herhangi - bir nod üzerinde yürütür. - -

    - Bir projenin sadece belli bir nod üzerinde çalışmasını istiyorsanız bu seçenek işinize - yarayacaktır. -

    \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_zh_TW.html b/core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_zh_TW.html deleted file mode 100644 index 1b6c7e06cd29aea47147e6bfa76655fd24bb15d5..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_zh_TW.html +++ /dev/null @@ -1,12 +0,0 @@ -
    - 有時候專案只能在特定的 Slave (或 Master) 上才能成功建置。 - 如果有這個情形,請設定這個選項,強制 Jenkins 都只在特定電腦上建置這個專案。 - - 如果有一群主機可以建置這個專案,您可以用標籤限定要執行的節點,Jenkins 就會在有指定相同標籤的機器中挑一台來建置專案。 - -

    - 否則請不要啟用這個功能,讓 Jenkins 盡量利用有空的節點來建置,等候及執行的時間也會比較短。 - -

    - 透過這個選項,也可以讓您確認專案是否能在特定節點上建置。 -

    \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace.jelly b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace.jelly index 4882cfc5dae418c205ed25285302a8a65475ba71..6a93fc14b4a59c84b4e4d08f2ca93360bf2b18eb 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace.jelly +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace.jelly @@ -45,7 +45,7 @@ THE SOFTWARE. ${%The project was renamed recently and no build was done under the new name.}

  3. - ${%The slave this project has run on for the last time was removed.} + ${%The agent this project has run on for the last time was removed.}
  4. ${%li3(it.workspace)} diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_bg.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..fbec109035d7ab3bd4a47b47f985ddbdaed440cd --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_bg.properties @@ -0,0 +1,44 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +The\ 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. +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. +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_da.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_da.properties index 3db6b4afeea54c42e668a32908ff232065a1e78d..38f08ccf26d7e09d41bbd9ccfb531123a2c02012 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_da.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_da.properties @@ -27,4 +27,3 @@ The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new 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. -The\ slave\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=Slaven projektet sidst k\u00f8rte p\u00e5 er blevet fjernet. 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 784afb23af17f2379dfde79e2f5440353fcd6024..2c42ae6b53be5c9c6ab4c1481ba3071135aa599e 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_de.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_de.properties @@ -21,14 +21,11 @@ # THE SOFTWARE. Error\:\ no\ workspace=Fehler: Kein Arbeitsbereich. -A\ project\ won't\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=\ - Ein Projekt besitzt keinen Arbeitsbereich, so lange nicht mindestens ein Build ausgefhrt wurde. -There's\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=\ - Es existiert kein Arbeitsbereich fr dieses Projekt. Mgliche Grnde sind: The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new\ name.=\ - Das Projekt wurde vor kurzem umbenannt und noch kein Build unter dem neuen Namen ausgefhrt. -The\ slave\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=\ - Der Slave, auf dem dieses Projekt das letzte Mal ausgefhrt wurde, wurde entfernt. -li3=Das Arbeitsbereichsverzeichnis ({0}) wurde auerhalb von Jenkins entfernt. + 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. 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. 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 fc9d13524e66602aafaf07f1ec29b13f3f5c6cd1..58f2750bb3423ae4b73a6327eab1a099bd0d372d 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_es.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_es.properties @@ -26,7 +26,7 @@ text=Lanzar una ejecuci There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=No hay espacio de trabajo para este proyecto, las causas posibles son: 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\ slave\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=El nodo esclavo 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_fr.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_fr.properties index 70d43848b321293c94f0967270ec8b6bf6ba531a..09aa43473944061daadcc73d399df2f378103464 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_fr.properties @@ -24,6 +24,5 @@ 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. -The\ slave\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=La machine esclave sur laquelle ce projet a \u00e9t\u00e9 lanc\u00e9 pour la derni\u00e8re fois a \u00e9t\u00e9 retir\u00e9e. 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. 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 6f2a4b51856d7332072df660c644f2c24b776ab4..f8332b3369bbc542debb7e139671d2d05e78fa65 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ja.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ja.properties @@ -27,8 +27,6 @@ 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 -The\ slave\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=\ - \u3053\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u6700\u5f8c\u306b\u5b9f\u884c\u3057\u305f\u30b9\u30ec\u30fc\u30d6\u304c\u3001\u5916\u3055\u308c\u305f\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 The\ workspace\ was\ wiped\ out\ and\ no\ build\ has\ been\ done\ since\ then.=\ 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 a569ad31227a6de65809639d245cd787bedcc4f2..2e441f20407920f6ca523661a5090080378745a4 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_nl.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_nl.properties @@ -24,6 +24,5 @@ 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 mins \u00E9\u00E9n 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. -The\ slave\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=De slaafnode die dit project het laatst gebouwd heeft werd verwijderd. li3=Het pad naar de werkplaats ({0}) werd buiten Jenkins verwijderd. text=Lanceer een bouwpoging om Jenkins de werkplaats te laten cre\u00EBren. 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 a05b67754518ad6748b1f00e83303e81fd36f788..7abc0567057a2aa67bc5d65d2a67f8c8668e94fc 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 @@ -22,7 +22,6 @@ Error\:\ no\ workspace=Erro: nenhum workspace The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new\ name.=O projeto foi renomeado recentemente e nenhum build foi feito com um novo nome. -The\ slave\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=A m\u00e1quina slave onde esse projeto executou pela ultima vez foi removida. li3=O diret\u00f3rio de workspace ({0}) foi removido externamente ao Jenkins. text=Execute um build para que o Jenkins crie um workspace. There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=N\u00e3o existe nenhum workspace dispon\u00edvel para esse projeto 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 d3cd6ba59db1dbe734ef0373eff3549a37812ef6..a76a9c1b5735d7492e2167682729925bb2e1d68b 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ru.properties @@ -1,17 +1,17 @@ # The MIT License -# +# # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov -# +# # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: -# +# # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. -# +# # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE @@ -21,13 +21,15 @@ # 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 -A\ project\ won't\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=\ +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\:=\ +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. -The\ slave\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=\ - \u041f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0439 \u0441\u0435\u0440\u0432\u0435\u0440, \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0441\u043e\u0431\u0438\u0440\u0430\u043b\u0441\u044f \u044d\u0442\u043e\u0442 \u043f\u0440\u043e\u0435\u043a\u0442 \u0432 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 \u0440\u0430\u0437, \u0431\u044b\u043b \u0443\u0434\u0430\u043b\u0435\u043d. 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. +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. +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. \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_sr.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..7c8d5110c9a3b5178372ae471c316b880db75a70 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_sr.properties @@ -0,0 +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. 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 aa57c214494f22ee8d103a14c3b091187a290ce7..0696ad6f25a7fa52b16f4f59a5bd785acbdf810d 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_tr.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_tr.properties @@ -26,4 +26,3 @@ Error\:\ no\ workspace=Hata\:\ \u00c7al\u0131\u015fma Alan\u0131 mevcut de\u011f 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. -The\ slave\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=Bu projenin en son \u00fczerinde \u00e7al\u0131\u015ft\u0131\u011f\u0131 slave silinmi\u015f. 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 3c4872742177c70104723c802e207eb23c62d492..c3b0d8184ad556edeaf54658fa1d83df2032c57c 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 @@ -26,7 +26,6 @@ A\ project\ won't\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ perfo 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 -The\ slave\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=\u6700\u5F8C\u4E00\u6B21\u5EFA\u7F6E\u672C\u5C08\u6848\u7684 Slave \u88AB\u79FB\u9664\u4E86\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 diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/descriptionForm_bg.properties b/core/src/main/resources/hudson/model/AbstractModelObject/descriptionForm_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..ce43fb6569eea3c2acd240ef64ac449ff8e66ff5 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractModelObject/descriptionForm_bg.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Submit=\ + \u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/descriptionForm_pl.properties b/core/src/main/resources/hudson/model/AbstractModelObject/descriptionForm_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..6b45cc35e76b5226861cda595dd82768eda1ef82 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractModelObject/descriptionForm_pl.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2016, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Submit=Zapisz diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/descriptionForm_sr.properties b/core/src/main/resources/hudson/model/AbstractModelObject/descriptionForm_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..c8e10fc8ec69e893059e2f2cc4ec087c5fc78321 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractModelObject/descriptionForm_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Submit=\u041F\u043E\u0434\u043D\u0435\u0441\u0438 diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/editDescription.jelly b/core/src/main/resources/hudson/model/AbstractModelObject/editDescription.jelly index 2e211b6221287f49c065d8e7d40d580dc588c55c..91940efa8d4091a42d10887dea83310bc360ccbd 100644 --- a/core/src/main/resources/hudson/model/AbstractModelObject/editDescription.jelly +++ b/core/src/main/resources/hudson/model/AbstractModelObject/editDescription.jelly @@ -33,7 +33,9 @@ THE SOFTWARE.
    - +
    diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/editDescription_bg.properties b/core/src/main/resources/hudson/model/AbstractModelObject/editDescription_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..ce43fb6569eea3c2acd240ef64ac449ff8e66ff5 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractModelObject/editDescription_bg.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Submit=\ + \u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/editDescription_sr.properties b/core/src/main/resources/hudson/model/AbstractModelObject/editDescription_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..c8e10fc8ec69e893059e2f2cc4ec087c5fc78321 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractModelObject/editDescription_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Submit=\u041F\u043E\u0434\u043D\u0435\u0441\u0438 diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/error_bg.properties b/core/src/main/resources/hudson/model/AbstractModelObject/error_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..1f47752c3f91182b436a8268afaf971d6d0f1d3c --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractModelObject/error_bg.properties @@ -0,0 +1,26 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +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_mr.properties b/core/src/main/resources/hudson/model/AbstractModelObject/error_mr.properties deleted file mode 100644 index 24ff40a533fd578081ca687b5da19a9df450a172..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractModelObject/error_mr.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Error=\u091A\u0942\u0915 diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/error_sr.properties b/core/src/main/resources/hudson/model/AbstractModelObject/error_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..29271bc5b99d5bb966a13a57ea99850aaea7ede9 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractModelObject/error_sr.properties @@ -0,0 +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... diff --git a/core/src/main/resources/hudson/model/AbstractProject/BecauseOfUpstreamBuildInProgress/summary.properties b/core/src/main/resources/hudson/model/AbstractProject/BecauseOfUpstreamBuildInProgress/summary.properties deleted file mode 100644 index 21a30d2fbafdf9354fa6609ca22def3d22af9dbd..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractProject/BecauseOfUpstreamBuildInProgress/summary.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -# note for translators: this message is referenced from st:structuredMessageFormat -description=Upstream project {0} is already building. \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/AbstractProject/BecauseOfUpstreamBuildInProgress/summary_es.properties b/core/src/main/resources/hudson/model/AbstractProject/BecauseOfUpstreamBuildInProgress/summary_es.properties deleted file mode 100644 index 694e2ef320abc10a9d34032152277a1941ae843c..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractProject/BecauseOfUpstreamBuildInProgress/summary_es.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -description=El proyecto padre {0} est\u00E1 ejecutandose actualmente. 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 377ea21e939b944bc24ab25d1acf2a6b7c00ecf7..deadd5410fb77150aee70c57742049e92a35790d 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_bg.properties @@ -1,3 +1,32 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -Changes=\u041F\u0440\u043E\u043C\u0435\u043D\u0438 +Changes=\ + \u041f\u0440\u043e\u043c\u0450\u043d\u0438 +to.label=\ + \u0434\u043e #{0} +from.label=\ + \u043e\u0442 #{0} +changes.title=\ + {0} \u043f\u0440\u043e\u043c\u0450\u043d\u0438 +range.label=\ + \u043e\u0442 #{0} \u0434\u043e #{1} diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_pl.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_pl.properties index 339b5fab61e076c263ead8cb98335fe2cefcaed4..faba046523585529c486cf13f18811d90cec91ca 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_pl.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=Zmiany +Changes=Rejestr zmian diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_sr.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..d12d7fda35cf8ae55f31caf453e39e6cb234c490 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_sr.properties @@ -0,0 +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} 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 62b5bd176a96a8396245a275c6a4ba7b8c9d8fe2..806067f21095e0480a85f991f38c2137f1ce8bb3 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/configure-common.jelly +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common.jelly @@ -48,19 +48,17 @@ 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 ad363cc302056d3e273ea1bf73de44dedb77cbf9..aab9d48983cc80e9f7338b17581bdfd35dd1f7e1 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 @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,4 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restrict\ where\ this\ project\ can\ be\ run=\u041E\u0433\u0440\u0430\u043D\u0438\u0447\u0438 \u043A\u044A\u0434\u0435 \u0434\u0430 \u0441\u0435 \u043F\u0443\u0441\u043A\u0430 \u0442\u043E\u0437\u0438 \u043F\u0440\u043E\u0435\u043A\u0442 +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 +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_de.properties b/core/src/main/resources/hudson/model/AbstractProject/configure-common_de.properties index abdc0e23a32468fe3330a6a015de0496c9708c40..4b4632d9bcd3bf1905a7ac5786c7025ebcc284b7 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 @@ -21,8 +21,5 @@ # THE SOFTWARE. JDK\ to\ be\ used\ for\ this\ project=JDK, das f\u00fcr dieses Projekt verwendet wird -Restrict\ where\ this\ project\ can\ be\ run=Beschr\u00e4nke, wo dieses Projekt ausgef\u00fchrt werden darf -default.value=(Vorgabewert) -Advanced\ Project\ Options=Erweiterte Projekteinstellungen Display\ Name=Anzeigename Keep\ the\ build\ logs\ of\ dependencies=Behalte die Build-Protokolle aller Abh\u00e4ngigkeiten. 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 cda4b2957f2611a64936e7c186ec34b28ee2ee52..7f251d1bedfe2278528a5ade5167454af7505c67 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 @@ -1,7 +1,24 @@ -# This file is under the MIT License by authors - -Advanced\ Project\ Options=Zaawansowane opcje projektu -Display\ Name=Nazwa wy\u015bwietlana -JDK\ to\ be\ used\ for\ this\ project=JDK u\u017cyte do budowy projektu -default.value=(Domy\u015blny) -Keep\ the\ build\ logs\ of\ dependencies=Trzymaj logi projekt\u00f3w zale\u017cnych +# The MIT License +# +# Copyright (c) 2004-2016, Sun Microsystems, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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 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 new file mode 100644 index 0000000000000000000000000000000000000000..6f82603f0a88896fe290621beaa731ae7e8446fc --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/configure-common_sr.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/model/AbstractProject/help-concurrentBuild.html b/core/src/main/resources/hudson/model/AbstractProject/help-concurrentBuild.html index 6c5752360af8f33906377d11de1fb972cc388262..c97987cd23991e1594616c80d75a05eabd5a74b7 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/help-concurrentBuild.html +++ b/core/src/main/resources/hudson/model/AbstractProject/help-concurrentBuild.html @@ -1,24 +1,39 @@ -
    - If this option is checked, Jenkins will schedule and execute multiple builds concurrently (provided - that you have sufficient executors and incoming build requests.) This is useful on builds and test jobs that - take a long time, as each build will only contain a smaller number of changes, and the total turn-around - time decreases due to the shorter time a build request spends waiting for the previous build to complete. - It is also very useful with parameterized builds, whose individual executions are independent from each other. - -

    - For other kinds of jobs, allowing concurrent executions of multiple builds may be problematic, - for example if it assumes a monopoly on a certain resource, like database, or for jobs where you use Jenkins - as a cron replacement. -

    - If you use a custom workspace and enable this option, all your builds will run on the same workspace, - thus unless a care is taken by your side, it'll likely to collide with each other. - Otherwise, even when they are run on the same node, Jenkins will use different workspaces to keep - them isolated. - -

    - When Jenkins creates different workspaces for isolation, Jenkins appends "@num" to the - workspace directory name, e.g. "@2". The separator "@" can be configured by setting the system property - "hudson.slaves.WorkspaceList" to the desired separator string on the Jenkins command line. - E.g. "-Dhudson.slaves.WorkspaceList=-" will use a dash as separator. +

    + When this option is checked, multiple builds of this project may be executed + in parallel. +

    + By default, only a single build of a project is executed at a time — any + other requests to start building that project will remain in the build queue + until the first build is complete.
    + This is a safe default, as projects can often require exclusive access to + certain resources, such as a database, or a piece of hardware. +

    + But with this option enabled, if there are enough build executors available + that can handle this project, then multiple builds of this project will take + place in parallel. If there are not enough available executors at any point, + any further build requests will be held in the build queue as normal. +

    + Enabling concurrent builds is useful for projects that execute lengthy test + suites, as it allows each build to contain a smaller number of changes, while + the total turnaround time decreases as subsequent builds do not need to wait + for previous test runs to complete.
    + This feature is also useful for parameterized projects, whose individual build + executions — depending on the parameters used — can be + completely independent from one another. +

    + Each concurrently executed build occurs in its own build workspace, isolated + from any other builds. By default, Jenkins appends "@<num>" to + the workspace directory name, e.g. "@2".
    + The separator "@" can be changed by setting the + hudson.slaves.WorkspaceList Java system property when starting + Jenkins. For example, "hudson.slaves.WorkspaceList=-" would change + the separator to a hyphen.
    + For more information on setting system properties, see the wiki page. +

    + However, if you enable the Use custom workspace option, all builds will + be executed in the same workspace. Therefore caution is required, as multiple + builds may end up altering the same directory at the same time.

    diff --git a/core/src/main/resources/hudson/model/AbstractProject/help-concurrentBuild_bg.html b/core/src/main/resources/hudson/model/AbstractProject/help-concurrentBuild_bg.html new file mode 100644 index 0000000000000000000000000000000000000000..1960aa25cb104e8a1c42091a46fdadfe05c03829 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/help-concurrentBuild_bg.html @@ -0,0 +1,42 @@ + +
    + Когато тази опция е избрана, паралелно може да се изпълняват множество + изграждания на този проект. +

    + Стандартно, в един момент се изпълнява максимум едно изграждане на отделен + проект — последващите заявки за изграждането на проекта се поставят в опашка + да изчакат завършването на текущото изграждане, преди да се продължи със + следващото.
    + Това е по-безопасният вариант, защото често проектите изискват достъпът до + определени ресурси да е поединично — например база от данни или някакво + хардуерно устройство. +

    + Ако изберете тази опция и в даден момент има достатъчно изграждащи машини, то + паралелно ще могат да се изпълняват множество изграждания на проекта. Ако в + определен момент няма достатъчно свободни машини, то заявките за изграждане ще + изчакват в опашка както обикновено. +

    + Включването на паралелните изграждание е полезно при проекти с дълги тестове, + защото това позволява отделното изграждане да съдържа сравнително малък на + брой промени, без това да увеличава прекомерно много времето за работа, защото + всяко ново изграждане няма нужда да изчаква завършването на всички предишни + изграждания.
    + Тази възможност е полезна и за параметризираните проекти, чиито изграждания + може да са напълно независими едно от друго — при определени стойности на + параметрите. +

    + Всяко Each concurrently executed build occurs in its own build workspace, isolated + from any other builds. By default, Jenkins appends "@<num>" to + the workspace directory name, e.g. "@2".
    + The separator "@" can be changed by setting the + hudson.slaves.WorkspaceList Java system property when starting + Jenkins. For example, "hudson.slaves.WorkspaceList=-" would change + the separator to a hyphen.
    + For more information on setting system properties, see the wiki page. +

    + However, if you enable the Use custom workspace option, all builds will + be executed in the same workspace. Therefore caution is required, as multiple + builds may end up altering the same directory at the same time. +

    diff --git a/core/src/main/resources/hudson/model/AbstractProject/help-label.html b/core/src/main/resources/hudson/model/AbstractProject/help-label.html index e854b1d17b1bd1daf57603c36a777f04b2d42643..df1b6a104aff00203bc4d64d16bd34980f602a24 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/help-label.html +++ b/core/src/main/resources/hudson/model/AbstractProject/help-label.html @@ -1,52 +1,128 @@
    - If you want to always run this project on a specific node/slave, just specify its name. - This works well when you have a small number of nodes. - -

    - As the size of the cluster grows, it becomes useful not to tie projects to specific slaves, - as it hurts resource utilization when slaves may come and go. For such situation, assign labels - to slaves to classify their capabilities and characteristics, and specify a boolean expression - over those labels to decide where to run. - -

    Valid Operators

    -

    - The following operators are supported, in the order of precedence. -

    -
    (expr)
    -
    parenthesis
    - -
    !expr
    -
    negation
    - -
    expr&&expr
    -
    - and -
    - -
    expr||expr
    -
    - or -
    - -
    a -> b
    -
    - "implies" operator. Equivalent to !a|b. - For example, windows->x64 could be thought of as "if run on a Windows slave, - that slave must be 64bit." It still allows Jenkins to run this build on linux. -
    - -
    a <-> b
    -
    - "if and only if" operator. Equivalent to a&&b || !a&&!b. - For example, windows<->sfbay could be thought of as "if run on a Windows slave, - that slave must be in the SF bay area, but if not on Windows, it must not be in the bay area." -
    -
    -

    - All operators are left-associative (i.e., a->b->c <-> (a->b)->c ) - An expression can contain whitespace for better readability, and it'll be ignored. - -

    - Label names or slave names can be quoted if they contain unsafe characters. For example, - "jenkins-solaris (Solaris)" || "Windows 2008" + Defines a logical expression which determines which agents may execute builds + of this project. This expression, when tested against the name and labels of + each available agent, will be either true or false. If the + expression evaluates to true, then that agent will be allowed to + execute builds of this project. +

    + If this project should always be built on a specific agent, or on the Jenkins + master, then you can just enter the agent's name, or master, + respectively. +

    + However, you should generally avoid using the Name of an agent here, + preferring to target the Labels of an agent. As documented on the + configuration page for each agent, and the Configure System page for + the master, labels can be used to represent which operating system the agent + is running on, its CPU architecture, or any number of other characteristics. +
    + Using labels removes the need to re-configure the label expression entered + here each time that you add, remove, or rename agents. +

    + A label expression can be as simple as entering a single label or + agent name, for example android-builder, or + linux-machine-42.
    + You can also make use of various operators to create more complex + expressions. + +

    Supported operators

    + The following operators are supported, in descending order of precedence: +
    +
    (expression)
    +
    + parentheses — used to explicitly define the associativity of an expression +
    + +
    !expression
    +
    + NOT — negation; the result of expression must not be true +
    + +
    a && b
    +
    + AND — both of the expressions a and b must be + true +
    + +
    a || b
    +
    + OR — either of the expressions a or b may be + true +
    + +
    a -> b
    +
    + "implies" operator — equivalent to !a || b.
    + For example, windows -> x64 could be thought of as "if a Windows + agent is used, then that agent must be 64-bit", while still + allowing this project to be executed on any agents that do not have + the windows label, regardless of whether they have also have an + x64 label +
    + +
    a <-> b
    +
    + "if and only if" operator — equivalent to a && b || + !a && !b
    + For example, windows <-> dc2 could be thought of as "if a + Windows agent is used, then that agent must be in datacenter 2, but + if a non-Windows agent is used, then it must not be in datacenter + 2" +
    +
    + +

    Notes

    +
      +
    • + All operators are left-associative, i.e. a -> b -> c is + equivalent to (a -> b) -> c. +
    • +
    • + Labels or agent names can be surrounded with quotation marks if they + contain characters that would conflict with the operator syntax.
      + For example, "osx (10.11)" || "Windows Server". +
    • +
    • + Expressions can be written without whitespace, but including it is + recommended for readability; Jenkins will ignore whitespace when + evaluating expressions. +
    • +
    • + Matching labels or agent names with wildcards or regular expressions is + not supported. +
    • +
    • + An empty expression will always evaluate to true, matching all + agents. +
    • +
    + +

    Examples

    +
    +
    master
    +
    Builds of this project may be executed only on the Jenkins master
    + +
    linux-machine-42
    +
    + Builds of this project may be executed only on the agent with the name + linux-machine-42 (or on any machine that happens to have a label + called linux-machine-42) +
    + +
    windows && jdk9
    +
    + Builds of this project may be executed only on any Windows agent that has + version 9 of the Java Development Kit installed (assuming that agents + with JDK 9 installed have been given a jdk9 label) +
    + +
    postgres && !vm && (linux || freebsd)
    +
    + Builds of this project may be executed only any on Linux or FreeBSD agent, + so long as they are not a virtual machine, and they have PostgreSQL + installed (assuming that each agent has the appropriate labels — in + particular, each agent running in a virtual machine must have the + vm label in order for this example to work as expected) +
    + +
    diff --git a/core/src/main/resources/hudson/model/AbstractProject/help-label_bg.html b/core/src/main/resources/hudson/model/AbstractProject/help-label_bg.html new file mode 100644 index 0000000000000000000000000000000000000000..a47aa93409dca1acfc564b01904f72a41739f27e --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/help-label_bg.html @@ -0,0 +1,128 @@ +
    + Логически израз, който определя кои агенти могат да изграждат този проект. + Изразът ще се изчисли с всеки етикет и име на всеки наличен агент и резултатът + ще е или истина, или лъжа. Само когато изразът се изчисли като + истина, агенът ще може да изгражда този проект. +

    + Ако проектът трябва задължително да се изгражда на определен подчинен компютър + или на основния, въведете съответно името на компютъра или + master. +

    + Като цяло трябва да избягвате употребата на името на подчинения + компютър като вместо това използвате етикетите на компютрите. Както е + документирано на страницата за настройки на всеки агент и страницата за + Системни настройки на основния компютър, етикетите могат да се + използват за определяне на кои операционни системи върви Jenkins, каква е + архитектурата на процесора както и на всякакви други характеристики. +
    + Като използвате етикети елиминирате нуждата да преправяте етикетните изрази + всеки път като добавяте, махате или преименувате машини. +

    + Етикетният израз може да е съвсем прост, напр. единичен етикет или + име на машина като android-builder или + linux-machine-42.
    + Може да ползвате и някоиоператори, за да създавате по-сложни изрази. + +

    Поддържани оператори

    + Поддържат се следните оператори в намаляващ приоритет: +
    +
    (израз)
    +
    + скоби — за изрично указване на приоритета на операция +
    + +
    !израз
    +
    + НЕ — отрицание, стойността на израза трябва да не е + истина. +
    + +
    a && b
    +
    + И — и двата израза a и b трябва да са + истина. +
    + +
    a || b
    +
    + ИЛИ — някой от изразите a или b трябва да е + истина. +
    + +
    a -> b
    +
    + ИМПЛИКАЦИЯ — АКО - ТО, същото като !a || b.
    + Напр. windows -> x64 означава: „ако се ползва компютър под + Windows, той трябва да е 64-битов“, което също позволява проектът + да бъде изграждан на машини без етикета windows, без + значение дали имат или не етикетаx64. +
    + +
    a <-> b
    +
    + ЕКВИВАЛЕНТНОСТ — АКО И САМО АКО, същото като a && b || + !a && !b
    + Напр. windows <-> dc2 означава: „ако се ползва компютър под + Windows, той трябва да е в центъра за данни № 2, ако обаче се + ползва компютър, който не е под Windows, той не трябва да е в + центъра за данни № 2“. +
    +
    + +

    Бележки

    +
      +
    • + Асоциативността на всички оператори е лява, т. е. a -> b -> c + означава: (a -> b) -> c. +
    • +
    • + Етикетите или имената на компютрите може да са заградени в кавички, ако + съдържат знаци, които противоречат на синтаксиса на операторите.
      + Напр. "osx (10.11)" || "Windows Server". +
    • +
    • + Не е задължително да слагате интервали в изразите, но е добре да го + правите за четимост. Jenkins прескача празните знаци при изчисляването на + изразите. +
    • +
    • + Напасване на етикетите или имената на компютрите с шаблони или регуларни + изрази не се поддържа. +
    • +
    • + Празен израз се изчислява като истина и напасва всички машини. +
    • +
    + +

    Примери

    +
    +
    master
    +
    Изгражданията на този проект може да са само на основния компютър на + Jenkins. +
    + +
    linux-machine-42
    +
    + Проектът може да бъде изграден само на агент с име + linux-machine-42 (или на всяка машина, която има етикет на име + linux-machine-42). +
    + +
    windows && jdk9
    +
    + Изгражданията може да се извършат на всеки подчинен компютър, който е с + Windows и има версия 9 на комплекта за разработчици на Java (като + приемаме, че всеки компютър с инсталиран JDK 9 има етикета jdk9). +
    + +
    postgres && !vm && (linux || freebsd)
    +
    + Изгражданията на този проект може да са на всеки агент под Linux или + FreeBSD, стига да не са във във виртуала машина, и да е инсталирана + базата PostgreSQL (като приемаме, че на всяка машина са поставени + съответните етикети, напр. всяка виртуална машина е с етикет vm, + иначе примерът няма да сработи). +
    + +
    +
    diff --git a/core/src/main/resources/hudson/model/AbstractProject/help-label_zh_TW.html b/core/src/main/resources/hudson/model/AbstractProject/help-label_zh_TW.html deleted file mode 100644 index 22b9144733baba9127b86c78cc96f8c6cd6123a0..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractProject/help-label_zh_TW.html +++ /dev/null @@ -1,50 +0,0 @@ -
    - 如果您想只在特定的節點或 Slave 上建置這個專案,請直接輸入該節點的名稱。 - 在節點不多時這樣子就很好用了。 - -

    - 如果叢集越來越大,那最好不要將專案限定到某一台 Slave 上,因為 Slave 可能會來來去去,進而影響到資源利用率。 - 這種情況下,建議在 Slave 上面設定標籤,依照能力及特性分類,並設定標籤的布林表示式來決定要執行的節點。 - -

    有效的運算符號

    -

    - 支援下面這些運算符號,依照優先順序高到低排列。 -

    -
    (expr)
    -
    括號
    - -
    !expr
    -
    - -
    expr&&expr
    -
    - 且 -
    - -
    expr||expr
    -
    - 或 -
    - -
    a -> b
    -
    - 「蘊涵」運算符號 (若 a 則 b)。等價於 !a|b。 - 舉例來說,windows->x64 可以想成是「如果在 Windows Slave 上執行,一定要 64 位元的環境」。 - Jenkins 還是可以在 Linux 主機上面建置這個專案。 -
    - -
    a <-> b
    -
    - 「若且唯若」運算符號。等價於 a&&b || !a&&!b。 - 舉例來說,windows<->taipei 可以想成是「如果在 Windows Slave 上執行,該節點一定要在臺北; - 不過要是不在 Windows 上執行,就一定不能在臺北」。 -
    -
    -

    - 所有運算符號都是由左向右算的 (Left-Associative; 例如 a->b->c <-> (a->b)->c ) - 為了方便閱讀,表示式裡可以用半形空白,運算時會被忽略。 - -

    - 標籤名稱或 Slave 名稱中如果有不安全的字元,可以用半形括號括起來。例如: - "jenkins-solaris (Solaris)" || "Windows 2008" -

    diff --git a/core/src/main/resources/hudson/model/AbstractProject/main.jelly b/core/src/main/resources/hudson/model/AbstractProject/main.jelly index b62984982f1788fc131daaf75585fac49e7141dc..7d6d6fb4f802fbb9c740a3148b8e506ddd12abec 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main.jelly +++ b/core/src/main/resources/hudson/model/AbstractProject/main.jelly @@ -26,9 +26,7 @@ THE SOFTWARE. - - - + 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 3173ac136b98ed0a6c3bee0b358bf70576a24821..3c18c1b18d00b071b9140ae3b37860d751971d1a 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,6 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Successful\ Artifacts=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u0438 \u0443\u0441\u043F\u0435\u0448\u043D\u0438 \u0430\u0440\u0442\u0438\u0444\u0430\u043A\u0442\u0438 -Recent\ Changes=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u0438 \u043F\u0440\u043E\u043C\u0435\u043D\u0438 -Workspace=\u0420\u0430\u0431\u043E\u0442\u043D\u043E \u043F\u0440\u043E\u0441\u0442\u0440\u0430\u043D\u0441\u0442\u0432\u043E +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_gl.properties b/core/src/main/resources/hudson/model/AbstractProject/main_gl.properties deleted file mode 100644 index e1d8fa7ca1223dc116f6538fb280af16cbc9ad7f..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractProject/main_gl.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Successful\ Artifacts=\u00DAltimos Artifacts correctos -Recent\ Changes=Mudanzas recentes diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_id.properties b/core/src/main/resources/hudson/model/AbstractProject/main_id.properties deleted file mode 100644 index 8e144d752872fb33be0fdad83e36313e8d0115a4..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractProject/main_id.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Recent\ Changes=Perubahan Terakhir diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_kn.properties b/core/src/main/resources/hudson/model/AbstractProject/main_kn.properties deleted file mode 100644 index eca13c63c3444ad3eea06fde7cfe181ecbcde3cc..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractProject/main_kn.properties +++ /dev/null @@ -1,5 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Successful\ Artifacts=\u0CB9\u0CBF\u0C82\u0CA6\u0CBF\u0CA8 \u0CB8\u0CAB\u0CB2 \u0C85\u0CB0\u0CCD\u0CA4\u0CBF\u0CAB\u0CBE\u0C95\u0CCD\u0C9F\u0CCD\u0CB8\u0CCD -Recent\ Changes=\u0CA8\u0CB5 \u0CAC\u0CA6\u0CB2\u0CBE\u0CB5\u0CA3\u0CC6 -Workspace=\u0C95\u0CBE\u0CB0\u0CCD\u0CAF\u0CB8\u0CCD\u0CA5\u0CB3 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 db7ba5366759ed6e285397603e20c128974c82fd..55645387b97c4439959cdc1a7c948503c319d4a8 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_pl.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_pl.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Last\ Successful\ Artifacts=Ostatnie Powiedzione Artefakty -Recent\ Changes=Ostatnie zmiany -Workspace=Obszar roboczy +Recent\ Changes=Rejestr zmian +Workspace=Przestrze\u0144 robocza 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 543c3b75fdd485f925fde4a5dc0f249a1d8daf14..9ae2b613dc4677f9751daaa0c49bb9ef7da65400 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_sr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_sr.properties @@ -1,4 +1,6 @@ # This file is under the MIT License by authors -Last\ Successful\ Artifacts=Poslednji uspe\u0161ni artifakt -Recent\ Changes=Nedavne promene +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 diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled.jelly b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled.jelly index 63d8388e42ac02f178e58525f9e67e8341f17965..3d0eac266ac2a38f643a61da388178cbbc0b4e7e 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled.jelly +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled.jelly @@ -1,48 +1,5 @@ - - - - - -
    - - ${%This project is currently disabled} - - - - -
    -
    - -
    -
    - - - -
    -
    -
    -
    + + + diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_eu.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_eu.properties deleted file mode 100644 index 1bcc5b3a88e0eb80ab409574c7358baf298272ed..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_eu.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Disable\ Project=proiektua desaktibatu 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 9f36e0f6908504d6591fcf83730314d070669314..d5845c54d551476f364cfa3abb7fc7436e5127d1 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,9 +20,17 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u043a\u044a\u043c \u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0442\u043e \u0422\u0430\u0431\u043b\u043e -Changes=\u041f\u0440\u043e\u043c\u0435\u043d\u0438 -Status=\u0421\u0442\u0430\u0442\u0443\u0441 -Wipe\ Out\ Workspace=\u0418\u0437\u0442\u0440\u0438\u0439 \u0440\u0430\u0431\u043e\u0442\u043d\u043e\u0442\u043e \u043c\u044f\u0441\u0442\u043e -Workspace=\u0420\u0430\u0431\u043e\u0442\u043d\u043e \u043c\u044f\u0441\u0442\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? +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_bn_IN.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_bn_IN.properties deleted file mode 100644 index 841d8a961c17e2ec9e0f31da97bc2a2691a75923..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_bn_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Changes=\u09AA\u09B0\u09BF\u09AC\u09B0\u09CD\u09A4\u09A8 \u09B8\u09AE\u09C2\u09B9 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 5f890204af628fdfe44f199323f94e6853683fbb..553909c2686aea1ee6d5fbf05a38d04c03fc9e14 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_de.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_de.properties @@ -26,5 +26,4 @@ Status=Status Changes=\u00c4nderungen Workspace=Arbeitsbereich Wipe\ Out\ Workspace=Arbeitsbereich l\u00f6schen -View\ Configuration=Konfiguration anzeigen wipe.out.confirm=Sind Sie sicher, dass Sie den Arbeitsbereich l\u00f6schen m\u00f6chten? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_eu.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_eu.properties deleted file mode 100644 index 8789cfe50aa620abd64b702ba0abc4977c65f5b4..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_eu.properties +++ /dev/null @@ -1,6 +0,0 @@ -# This file is under the MIT License by authors - -Back\ to\ Dashboard=Taulara itzuli -Changes=Aldaketak -Status=Estatus -Wipe\ Out\ Workspace=Garbitu Workspace-a diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_gl.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_gl.properties deleted file mode 100644 index 44ee6042f435d74a940786911462e26efa9fdc72..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_gl.properties +++ /dev/null @@ -1,6 +0,0 @@ -# This file is under the MIT License by authors - -Back\ to\ Dashboard=Volver ao Dashboard -Changes=Cambios -Status=Estado -Wipe\ Out\ Workspace=Borrar Workspace diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_gu_IN.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_gu_IN.properties deleted file mode 100644 index 2a69c31b97b116f09708e78495990684d66f3734..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_gu_IN.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Changes=\u0AAB\u0AC7\u0AB0\u0AAB\u0ABE\u0AB0 -Workspace=\u0A95\u0ABE\u0AAE \u0A95\u0AB0\u0AB5\u0ABE\u0AA8\u0AC0 \u0A9C\u0A97\u0ACD\u0AAF\u0ABE diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_hi_IN.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_hi_IN.properties deleted file mode 100644 index 301650ffbf3e6df98a668df127fd4f26f111d6a6..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_hi_IN.properties +++ /dev/null @@ -1,7 +0,0 @@ -# This file is under the MIT License by authors - -Back\ to\ Dashboard=\u0921\u0948\u0936\u092c\u094b\u0930\u094d\u0921 \u0935\u093e\u092a\u0938 \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f -Changes=Badlav -Status=Stithi -Wipe\ Out\ Workspace=\u0915\u093e\u0930\u094d\u092f\u0915\u094d\u0937\u0947\u0924\u094d\u0930 \u0935\u093f\u0928\u093e\u0936 -Workspace=\u0915\u093e\u0930\u094d\u092f\u0915\u094d\u0937\u0947\u0924\u094d\u0930 diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_id.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_id.properties deleted file mode 100644 index e06bfd1b6186bc3cd48bcc0f41c76a5b2dca3934..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_id.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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=Kembali ke Dashboard -Changes=Perubahan -Status=Status diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_is.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_is.properties deleted file mode 100644 index 46399c4a16d16d1c6c4c66b0b46473ed6a83ce5c..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_is.properties +++ /dev/null @@ -1,27 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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=Aftur \u00e1 m\u00e6labor\u00f0 -Changes=Breytingar -Status=Sta\u00f0a -Wipe\ Out\ Workspace=Hreinsa vinnusv\u00e6\u00f0i -Workspace=Vinnusv\u00e6\u00f0i diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_kn.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_kn.properties deleted file mode 100644 index 92e62377aa899424048a54c5e5c813b49dab9b54..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_kn.properties +++ /dev/null @@ -1,7 +0,0 @@ -# This file is under the MIT License by authors - -Back\ to\ Dashboard=\u0caa\u0cc1\u0ca8\u0c83 \u0ca6\u0cb7\u0ccd \u0cac\u0ccb\u0cb0\u0ccd\u0ca1\u0ccd \u0c97\u0cc6 \u0cb9\u0ccb\u0c97\u0cc1 -Changes=\u0cac\u0ca6\u0cb2\u0cbe\u0cb5\u0ca3\u0cc6 -Status=\u0cb8\u0ccd\u0ca5\u0cbf\u0ca4\u0cbf -Wipe\ Out\ Workspace=\u0c95\u0cbe\u0cb0\u0ccd\u0caf\u0cb8\u0ccd\u0ca5\u0cb3\u0ca6\u0cbf\u0c82\u0ca6 \u0c92\u0cb0\u0cb8\u0cc1 -Workspace=\u0c95\u0cbe\u0cb0\u0ccd\u0caf\u0cb8\u0ccd\u0ca5\u0cb3 diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_mr.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_mr.properties deleted file mode 100644 index 3c529e083e3e756c5d0e12898e3c7de2a263a5ad..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_mr.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Changes=\u092C\u0926\u0932 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 5b8c2058925a4d54f35a4404bcf02b87c406fc14..9e14bfa982b6236f08adf8e7becf9d888f9ace29 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pl.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2004-2016, Sun Microsystems, Damian Szczepanik # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,8 +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 Dashboard''u +Back\ to\ Dashboard=Powr\u00F3t do tablicy Changes=Rejestr zmian -Wipe\ Out\ Workspace=Wyczy\u015b\u0107 przestrze\u0144 robocz\u0105 +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.confirm=Czy na pewno wyczy\u015Bci\u0107 przestrze\u0144 robocz\u0105? +Status=Status +Up=Powr\u00F3t diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_si.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_si.properties deleted file mode 100644 index 871e1bdc86a05b787684a78272293ebe13f1de4b..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_si.properties +++ /dev/null @@ -1,5 +0,0 @@ -# This file is under the MIT License by authors - -Back\ to\ Dashboard=\u0d86\u0db4\u0dc3\u0dd4 \u0db1\u0dd2\u0dbb\u0dd3\u0d9a\u0dca\u0dc2\u0dab \u0db4\u0dd2\u0da7\u0dd4\u0dc0\u0da7 -Changes=\u0dc0\u0dd9\u0db1\u0dc3\u0dca\u0d9a\u0db8\u0dca -Status=\u0dad\u0dad\u0dca\u0dc0\u0dba 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 2eebf4c9818f3b450ef086da52ccc91ee315a18e..ef47d9183d6395e97bcbad6d05b29db360c3ca9d 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sr.properties @@ -1,6 +1,10 @@ # This file is under the MIT License by authors -Back\ to\ Dashboard=Nazad na Tablu -Changes=Izmene -Wipe\ Out\ Workspace=Obrisi Workspace -wipe.out.confirm=Da li si siguran da \u017eeli\u0161 da poni\u0161ti\u0161 radni prostor +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 diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ta.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ta.properties deleted file mode 100644 index 2e5ab3da76fe91bceb27a09300207b464ccd877e..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ta.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Changes=\u0BAE\u0BBE\u0BB1\u0BCD\u0BB1\u0B99\u0BCD\u0B95\u0BB3\u0BCD -Status=\u0BA8\u0BBF\u0BB2\u0BC8 diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_te.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_te.properties deleted file mode 100644 index bea0ddc980eaaba8354d76d8cb3f633787f36b6a..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_te.properties +++ /dev/null @@ -1,7 +0,0 @@ -# This file is under the MIT License by authors - -Back\ to\ Dashboard=\u0c24\u0c3f\u0c30\u0c3f\u0c17\u0c3f \u0c21\u0c3e\u0c37\u0c4d\u0c2c\u0c4b\u0c30\u0c4d\u0c21\u0c4d \u0c15\u0c41 -Changes=\u0c2e\u0c3e\u0c30\u0c4d\u0c2a\u0c41\u0c32\u0c41 -Status=\u0c38\u0c4d\u0c1f\u0c47\u0c1f\u0c38\u0c4d -Wipe\ Out\ Workspace=\u0c35\u0c30\u0c4d\u0c15\u0c4d \u0c38\u0c4d\u0c2a\u0c47\u0c38\u0c4d \u0c24\u0c41\u0c21\u0c41\u0c35\u0c41 -Workspace=\u0c35\u0c30\u0c4d\u0c15\u0c4d \u0c38\u0c4d\u0c2a\u0c47\u0c38\u0c4d diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_th.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_th.properties deleted file mode 100644 index a717f2a0fb23236e676f140261e08c62d6d8d9a4..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_th.properties +++ /dev/null @@ -1,7 +0,0 @@ -# This file is under the MIT License by authors - -Back\ to\ Dashboard=\u0e01\u0e25\u0e31\u0e1a\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e41\u0e14\u0e0a\u0e1a\u0e2d\u0e23\u0e4c\u0e14 -Changes=\u0e04\u0e27\u0e32\u0e21\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07 -Status=\u0e2a\u0e16\u0e32\u0e19\u0e30 -Wipe\ Out\ Workspace=\u0e25\u0e49\u0e32\u0e07\u0e1e\u0e37\u0e49\u0e19\u0e17\u0e35\u0e48\u0e17\u0e33\u0e07\u0e32\u0e19 -Workspace=\u0e1e\u0e37\u0e49\u0e19\u0e17\u0e35\u0e48\u0e17\u0e33\u0e07\u0e32\u0e19 diff --git a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_bg.properties b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..0b71e014b2ed07d9b60ddf59ca51ae36f14f14bc --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_bg.properties @@ -0,0 +1,28 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +The\ 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_de.properties b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_de.properties index 7fc14f9a17576eaa86c3ab52434e1707a5a8e8c9..9287647821320391eeae0c3270e68b8e349638fd 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_de.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_de.properties @@ -1,3 +1,2 @@ -Error\:\ Wipe\ Out\ Workspace\ blocked\ by\ SCM=Fehler: Lschen des Arbeitsbereichs blockiert durch SCM -The\ SCM\ for\ this\ project\ has\ blocked\ this\ attempt\ to\ wipe\ out\ the\ project's\ workspace.=\ - Das SCM dieses Projekts blockierte das Lschen des Arbeitsbereichs. +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. diff --git a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_sr.properties b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..239c6b464bdf65b99ac2e614ba385b9d037679d5 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_sr.properties @@ -0,0 +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. diff --git a/core/src/main/resources/hudson/model/AgentSlave/config_bg.properties b/core/src/main/resources/hudson/model/AgentSlave/config_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..168bbbcc0b876566dd986a207b4c1a5603637c56 --- /dev/null +++ b/core/src/main/resources/hudson/model/AgentSlave/config_bg.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +launch\ command=\ + \u041a\u043e\u043c\u0430\u043d\u0434\u0430 \u0437\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 diff --git a/core/src/main/resources/hudson/model/AgentSlave/config_sr.properties b/core/src/main/resources/hudson/model/AgentSlave/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..2b6b09af19408944c8d309288ac4c3704ec52515 --- /dev/null +++ b/core/src/main/resources/hudson/model/AgentSlave/config_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +launch\ command=\u043F\u043E\u043A\u0440\u0435\u0442\u043D\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u0430 diff --git a/core/src/main/resources/hudson/model/AllView/newViewDetail_bg.properties b/core/src/main/resources/hudson/model/AllView/newViewDetail_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..8dc4aeb4ba8e020e8d91e3c449b8899e97074925 --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/newViewDetail_bg.properties @@ -0,0 +1,25 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +# 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. diff --git a/core/src/main/resources/hudson/model/AllView/newViewDetail_lt.properties b/core/src/main/resources/hudson/model/AllView/newViewDetail_lt.properties new file mode 100644 index 0000000000000000000000000000000000000000..3080ff7a0ba6b69f50ee45462f97fe1dfa48f737 --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/newViewDetail_lt.properties @@ -0,0 +1 @@ +blurb=\u0160is rodinys rodo visus Jenkinso darbus. diff --git a/core/src/main/resources/hudson/model/AllView/newViewDetail_sr.properties b/core/src/main/resources/hudson/model/AllView/newViewDetail_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..6c827494b85e6092886eb9813474ed1a674d3b36 --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/newViewDetail_sr.properties @@ -0,0 +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. diff --git a/core/src/main/resources/hudson/model/AllView/noJob.jelly b/core/src/main/resources/hudson/model/AllView/noJob.jelly index 5a7469797809d9a0f3cdd11aa6a6bf08771d673c..0c9e0c26a9952ca50e361159bb699a6966a1f9c0 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob.jelly +++ b/core/src/main/resources/hudson/model/AllView/noJob.jelly @@ -32,7 +32,7 @@ THE SOFTWARE. - +
    ${%newJob}
    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 81842ac0f7729fa9e4fac2032ddc227b041ae9e8..0284a752eb6a10ca77609228295ff917fba85358 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_bg.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_bg.properties @@ -1,5 +1,30 @@ -# This file is under the MIT License by authors - -Welcome\ to\ Jenkins!=\u0414\u043E\u0431\u0440\u0435 \u0434\u043E\u0448\u043B\u0438 \u0432 Jenkins! -newJob=\u041C\u043E\u043B\u044F \u0441\u044A\u0437\u0434\u0430\u0439\u0442\u0435 \u043D\u043E\u0432 job \u0437\u0430 \u0434\u0430 \u0437\u043F\u043E\u0447\u043D\u0435\u0442\u0435. +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. +Welcome\ to\ Jenkins!=\ + \u0414\u043e\u0431\u0440\u0435 \u0434\u043e\u0448\u043b\u0438 \u0432 Jenkins! +newJob=\ + \u0421\u044a\u0437\u0434\u0430\u0439\u0442\u0435 \u0437\u0430\u0434\u0430\u0447\u0430, \u0437\u0430 \u0434\u0430 \u0437\u0430\u043f\u043e\u0447\u043d\u0435\u0442\u0435 \u0434\u0430 \u0433\u043e \u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435. +login=\ + \u0412\u043f\u0438\u0448\u0435\u0442\u0435 \u0441\u0435, \u0437\u0430 \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u0442\u0435 \u043d\u043e\u0432\u0438 \u0437\u0430\u0434\u0430\u0447\u0438. +signup=\ + \u0410\u043a\u043e \u043d\u044f\u043c\u0430\u0442\u0435 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f, \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u0439\u0442\u0435 \u0441\u0435 \u0441\u0435\u0433\u0430. diff --git a/core/src/main/resources/hudson/model/AllView/noJob_de.properties b/core/src/main/resources/hudson/model/AllView/noJob_de.properties index 2ae061086c672aff4dc75530bec3f194078a4306..d5214977525b895cca9006d4979b161f5013e983 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_de.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_de.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Welcome\ to\ Jenkins\!=Willkommen bei Jenkins! -newJob=Legen Sie einen neuen Job an, um loszulegen. -login=Melden Sie sich an, um neue Jobs anzulegen. -signup=Falls Sie noch kein Benutzerkonto besitzen, knnen Sie sich registrieren. +newJob=Legen Sie ein neues Projekt an, um loszulegen. +login=Melden Sie sich an, um neue Projekte anzulegen. +signup=Falls Sie noch kein Benutzerkonto besitzen, k\u00F6nnen Sie sich registrieren. +Welcome\ to\ Jenkins!=Willkommen bei Jenkins! diff --git a/core/src/main/resources/hudson/model/AllView/noJob_eo.properties b/core/src/main/resources/hudson/model/AllView/noJob_eo.properties deleted file mode 100644 index 552e672d51bffbbd01e333c278a382d5ab5d63e7..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AllView/noJob_eo.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Welcome\ to\ Jenkins!=Bonvenon al Jenkins! -newJob=Bonvolu krei novajn laborojn por komenci. diff --git a/core/src/main/resources/hudson/model/AllView/noJob_ga_IE.properties b/core/src/main/resources/hudson/model/AllView/noJob_ga_IE.properties deleted file mode 100644 index 54a93113d1a171f9db6170bf24407481ea6d3ff5..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AllView/noJob_ga_IE.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Welcome\ to\ Jenkins!=F\u00E1ilte go dt\u00ED Jenkins! -newJob=Cuir href="newJob"> chun t\u00FAs a chur. diff --git a/core/src/main/resources/hudson/model/AllView/noJob_hi_IN.properties b/core/src/main/resources/hudson/model/AllView/noJob_hi_IN.properties deleted file mode 100644 index b913e50cdd68e0453147754f422a229c80e42035..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AllView/noJob_hi_IN.properties +++ /dev/null @@ -1,6 +0,0 @@ -# This file is under the MIT License by authors - -Welcome\ to\ Jenkins!=\u091C\u0947\u0928\u0915\u0940\u0902\u0938 \u092E\u0947\u0902 \u0906\u092A\u0915\u093E \u0938\u094D\u0935\u093E\u0917\u0924 \u0939\u0948! -newJob=\u0915\u0943\u092A\u092F\u093E \u0938\u0947 \u0928\u092F\u093E \u0915\u093E\u092E \u092A\u0948\u0926\u093E \u0906\u0930\u0902\u092D \u0915\u0930. - - diff --git a/core/src/main/resources/hudson/model/AllView/noJob_id.properties b/core/src/main/resources/hudson/model/AllView/noJob_id.properties deleted file mode 100644 index 4f66c582611d808fa013340d13c7a41828a01b78..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AllView/noJob_id.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Welcome\ to\ Jenkins!=Selamat datang di Jenkins! -newJob=Silakan buat pekerjaan baru untuk memulai. diff --git a/core/src/main/resources/hudson/model/AllView/noJob_lt.properties b/core/src/main/resources/hudson/model/AllView/noJob_lt.properties new file mode 100644 index 0000000000000000000000000000000000000000..be9cc5dea23ed7e31a626dfe1200452b46552b11 --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_lt.properties @@ -0,0 +1,5 @@ +newJob=Pra\u0161ome sukurti nauj\u0105 darb\u0105, kad prad\u0117tum\u0117te. + +login=Prisijunkite, kad gal\u0117tumet kurti naujus darbus. + +signup=Jei dar neturite paskyros, galite dabar u\u017esiregistruoti. diff --git a/core/src/main/resources/hudson/model/AllView/noJob_mk.properties b/core/src/main/resources/hudson/model/AllView/noJob_mk.properties deleted file mode 100644 index 636f006bcac6c567f48f2d44a41d949930aa24dc..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AllView/noJob_mk.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Welcome\ to\ Jenkins!=\u0414\u043E\u0431\u0440\u0435\u0434\u043E\u0458\u0434\u043E\u0432\u0442\u0435 \u0432\u043E Jenkins! diff --git a/core/src/main/resources/hudson/model/AllView/noJob_pl.properties b/core/src/main/resources/hudson/model/AllView/noJob_pl.properties index 993648df376861661a481bb3a6b04dee8d966328..15c9ac098fa3f9560ff2aca89fde02f89a43a034 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_pl.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2004-2017, Sun Microsystems, Inc., Damian Szczepanik # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -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. - -Welcome\ to\ Jenkins!=Witamy w Jenkins! -newJob=Prosz\u0119 utworzy\u0107 nowe zadanie aby rozpocz\u0105\u0107 prac\u0119. - +Welcome\ to\ Jenkins!=Witamy w Jenkinsie! +newJob=Utw\u00F3rz nowe zadanie, aby rozpocz\u0105\u0107 prac\u0119. +login=Zaloguj si\u0119, aby utworzy\u0107 nowe zadanie. +signup=Je\u015Bli nie masz jeszcze konta, mo\u017Cesz si\u0119 zarejestrowa\u0107 teraz. 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 0b1a828a8720bb9cc299113cb59a151808f27d15..08df179d65e1ee42b6bd7eddc22082734b1684aa 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_ru.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_ru.properties @@ -20,7 +20,7 @@ # 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!=\u0414\u043e\u0431\u0440\u043e \u043f\u043e\u0436\u0430\u043b\u043e\u0432\u0430\u0442\u044c \u0432 Jenkins! newJob=\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0441\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u043d\u043e\u0432\u0443\u044e \u0437\u0430\u0434\u0430\u0447\u0443 \u0434\u043b\u044f \u0442\u043e\u0433\u043e \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0447\u0430\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443. login=\u0412\u043e\u0439\u0442\u0438 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043d\u043e\u0432\u044b\u0445 \u0437\u0430\u0434\u0430\u0447. 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 a0d1ef95df8a978265f6f9a5b774dde63fcf622f..83ce33c5a5b13afa3682ec63113464ab380d382b 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_sr.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_sr.properties @@ -1,4 +1,6 @@ # This file is under the MIT License by authors -Welcome\ to\ Jenkins!=Dobrodo\u0161li u Jenkins! -newJob=Molimo napravite poslove da po\u010Dnete sa radom. +Welcome\ to\ Jenkins!=\u0414\u043E\u0431\u0440\u043E\u0434\u043E\u0448\u043B\u0438 \u0443 Jenkins! +newJob=\u041A\u0440\u0435\u0438\u0440\u0430\u0442\u0435 \u0437\u0430\u0434\u0430\u0442\u0430\u043A \u0434\u0430 \u043F\u043E\u0447\u043D\u0435\u0442\u0435 \u0441\u0430 \u0440\u0430\u0434\u043E\u043C. +login=\ \u041F\u0440\u0438\u0458\u0430\u0432\u0438\u0442\u0435 \u0441\u0435, \u0434\u0430 \u043F\u043E\u043A\u0440\u0435\u043D\u0435\u0442\u0435 \u043D\u043E\u0432\u0438 \u0437\u0430\u0434\u0430\u0442\u043A\u0435. +signup=\u0410\u043A\u043E \u043D\u0435\u043C\u0430\u0442\u0435 \u043D\u0430\u043B\u043E\u0433, \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0443\u0458\u0442\u0435 \u0441\u0435 \u0441\u0430\u0434\u0430. diff --git a/core/src/main/resources/hudson/model/AllView/noJob_te.properties b/core/src/main/resources/hudson/model/AllView/noJob_te.properties deleted file mode 100644 index 169109616e896d3ebb0306d03de4f78ba99629b5..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/AllView/noJob_te.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Welcome\ to\ Jenkins!=Jenkins lo ki meeku suswaagatham -newJob=pani prarambhinchutaku kottha upaadi ni srushtinchandi. diff --git a/core/src/main/resources/hudson/model/Api/index.jelly b/core/src/main/resources/hudson/model/Api/index.jelly index 18b003dd4ee2377e950575686acb2fe1744c57e0..6985eda72d88226d66064a823726ef25449904e5 100644 --- a/core/src/main/resources/hudson/model/Api/index.jelly +++ b/core/src/main/resources/hudson/model/Api/index.jelly @@ -24,8 +24,8 @@ THE SOFTWARE. - - + +

    REST API

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

    For more information about remote API in Jenkins, see - the documentation. + the documentation.

    Controlling the amount of data you fetch

    @@ -151,5 +151,5 @@ THE SOFTWARE.
    -
    +
    diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_te.properties b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_bg.properties similarity index 79% rename from core/src/main/resources/lib/hudson/buildProgressBar_te.properties rename to core/src/main/resources/hudson/model/BooleanParameterDefinition/config_bg.properties index 62662e4cbb58623cda87683fdc4ab5615b4562e4..92f2cdb1c64c9b76ec50a5b982630f8675011fa8 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_te.properties +++ b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,4 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=\u0C2E\u0C4A\u0C26\u0C32\u0C2F\u0C4D\u0C2F\u0C3F {0} \u0C05\u0C2F\u0C4D\u0C2F\u0C3F\u0C02\u0C26\u0C3F
    \u0C30\u0C2E\u0C3E\u0C30\u0C2E\u0C3F \u0C2E\u0C3F\u0C17\u0C3F\u0C32\u0C3F\u0C28 \u0C38\u0C2E\u0C2F\u0C02: {1} +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_pl.properties b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..f825b49123faabb9119767e56ee9da726d1065d0 --- /dev/null +++ b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_pl.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Copyright (c) 2016, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. +Name=Nazwa +Default\ Value=Domy\u015Blna warto\u015B\u0107 +Description=Opis diff --git a/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_sr.properties b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..93b803761e8a11a2f0995c3e1d086d850afb7eee --- /dev/null +++ b/core/src/main/resources/hudson/model/BooleanParameterDefinition/config_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Name=\u0418\u043C\u0435 +Default\ Value=\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u043D\u0430 \u0432\u0440\u0435\u0434\u043D\u043E\u0441\u0442 +Description=\u041E\u043F\u0438\u0441 diff --git a/core/src/main/resources/hudson/model/BooleanParameterDefinition/index.jelly b/core/src/main/resources/hudson/model/BooleanParameterDefinition/index.jelly index 4a06f79573eb93111f2402d512fe5c67dbcaf2ad..b2069b3b67d92dd71abdbbd6b73c401a0bd3cff7 100644 --- a/core/src/main/resources/hudson/model/BooleanParameterDefinition/index.jelly +++ b/core/src/main/resources/hudson/model/BooleanParameterDefinition/index.jelly @@ -26,7 +26,8 @@ THE SOFTWARE. - + +
    diff --git a/core/src/main/resources/hudson/model/BooleanParameterValue/value.jelly b/core/src/main/resources/hudson/model/BooleanParameterValue/value.jelly index 4dd9f679d747a3435e4dd00bbb1233fc59846852..7eaf8be8f68465ccc9337ca8c2424c7e4fba6601 100644 --- a/core/src/main/resources/hudson/model/BooleanParameterValue/value.jelly +++ b/core/src/main/resources/hudson/model/BooleanParameterValue/value.jelly @@ -26,7 +26,8 @@ THE SOFTWARE. - + + \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_bg.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..18d99e3ec743b6ad6befadaa9bf243a9279644fc --- /dev/null +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_bg.properties @@ -0,0 +1,35 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +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 +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_pl.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..d4a868f5bcf0153d27456f2ce91d20aa7e191076 --- /dev/null +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_pl.properties @@ -0,0 +1,27 @@ +# The MIT License +# +# Copyright (c) 2016, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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 +Authentication\ Token=Token autentyfikacji +Trigger\ builds\ remotely=Wyzwalaj budowanie zdalnie +e.g.,\ from\ scripts=np. przez skrypt +or=lub diff --git a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_sr.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..b0b2e90cf53b5da55915fa4b7e01e3131afd6325 --- /dev/null +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_sr.properties @@ -0,0 +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 \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/BuildTimelineWidget/control.jelly b/core/src/main/resources/hudson/model/BuildTimelineWidget/control.jelly index f695275f06656ae91e35c41097263479810c7a56..a9efb2525b46622f9c4f34dbf445122b062ac070 100644 --- a/core/src/main/resources/hudson/model/BuildTimelineWidget/control.jelly +++ b/core/src/main/resources/hudson/model/BuildTimelineWidget/control.jelly @@ -41,35 +41,42 @@ THE SOFTWARE. var tz = ${(tz.rawOffset + tz.DSTSavings) / 3600000}; var tl = null; + var interval = 24*60*60*1000; +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +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} +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} 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 new file mode 100644 index 0000000000000000000000000000000000000000..327dc4258303ca0aae6a1f1474ae4c0eba93792b --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_sr.properties @@ -0,0 +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: diff --git a/core/src/main/resources/hudson/model/Slave/help-launcher_ja.properties b/core/src/main/resources/hudson/model/Cause/UserCause/description_bg.properties similarity index 84% rename from core/src/main/resources/hudson/model/Slave/help-launcher_ja.properties rename to core/src/main/resources/hudson/model/Cause/UserCause/description_bg.properties index 55ed67ea5f951c428c503835c795b48284322587..6d0361054072d95f025d3ff6d999acee0a59376f 100644 --- a/core/src/main/resources/hudson/model/Slave/help-launcher_ja.properties +++ b/core/src/main/resources/hudson/model/Cause/UserCause/description_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Seiji Sogabe +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Controls\ how\ Jenkins\ starts\ this\ slave.=\u3053\u306E\u30B9\u30EC\u30FC\u30D6\u306E\u8D77\u52D5\u65B9\u6CD5\u3092\u5236\u5FA1\u3057\u307E\u3059\u3002 +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} 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 new file mode 100644 index 0000000000000000000000000000000000000000..def7294073225d0fddeda01df2b6ccce316eeb83 --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserCause/description_sr.properties @@ -0,0 +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} 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 be2fa36d1d5345263a5d3cad28fe56ef322b36d7..044ce85447381eb3ff3a7232a830b9ed11f67d16 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 @@ -1,3 +1,26 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -started_by_anonymous=\u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D \u043E\u0442 \u0430\u043D\u043E\u043D\u0438\u043C\u0435\u043D \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B +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} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sq.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sq.properties deleted file mode 100644 index 8ac2add17aef69a3cecb0d2a6bfd81fc6b7a3e1b..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sq.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -started_by_user=Strated bah das useir AYE AITCH REFF IIIMMM JAAAAADDDDDDDDDD. 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 new file mode 100644 index 0000000000000000000000000000000000000000..8b7e590e9fee90aa2e1204d33cb617751c40277a --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sr.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/model/CauseAction/summary_bg.properties b/core/src/main/resources/hudson/model/CauseAction/summary_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..9dd0ef889054f53c323f5819adbb543de457f2c2 --- /dev/null +++ b/core/src/main/resources/hudson/model/CauseAction/summary_bg.properties @@ -0,0 +1,25 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +# ({0} times) +Ntimes=\ + ({0} \u043f\u044a\u0442\u0438) diff --git a/core/src/main/resources/hudson/PluginManager/check_uk.properties b/core/src/main/resources/hudson/model/CauseAction/summary_sr.properties similarity index 56% rename from core/src/main/resources/hudson/PluginManager/check_uk.properties rename to core/src/main/resources/hudson/model/CauseAction/summary_sr.properties index 3059e359bed2de07abec3e81139e12c69f124f67..54014aff1e639d33a1e2a5788d3ca3a89ee36120 100644 --- a/core/src/main/resources/hudson/PluginManager/check_uk.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 -Check\ now=\uC9C0\uAE08 \uCCB4\uD06C +Ntimes=({0} \u043F\u0443\u0442\u0430) diff --git a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_bg.properties b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..0a56a15f9b84a8525d1b1d4e0c46e8a26b4a3e22 --- /dev/null +++ b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_bg.properties @@ -0,0 +1,28 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +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/AbstractBuild/sidepanel_is.properties b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_pl.properties similarity index 92% rename from core/src/main/resources/hudson/model/AbstractBuild/sidepanel_is.properties rename to core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_pl.properties index d3e0367e9fd367f5561f1b12d2242a1bf4fed8a4..259ba15fc7fe4ce370c47ac16264f519a3f3d213 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_is.properties +++ b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2016, Damian Szczepanik # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -19,5 +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. - -Previous\ Build=Fyrri keyrsla +Name=Nazwa +Choices=Lista wyboru +Description=Opis diff --git a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_sr.properties b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..70ec444ad48f20f6a9bfb99e5ea77d66bc3f4c06 --- /dev/null +++ b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_sr.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/index.jelly b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/index.jelly index 36795a45f6551f02f2457c8eedae41c344cf7a64..60c86d9a244ea29159ed5ca403be9ecb9cd2eada 100644 --- a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/index.jelly +++ b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/index.jelly @@ -26,7 +26,8 @@ THE SOFTWARE. - + +
    - +
    \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/PasswordParameterValue/value.jelly b/core/src/main/resources/hudson/model/PasswordParameterValue/value.jelly index d1a142f2dbf886c3b79007748c2c6346231f57e1..e4a5007730747ea7303fec27db4c6ba5d5ea2be5 100644 --- a/core/src/main/resources/hudson/model/PasswordParameterValue/value.jelly +++ b/core/src/main/resources/hudson/model/PasswordParameterValue/value.jelly @@ -26,7 +26,8 @@ THE SOFTWARE. - + + \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_bg.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_bg.properties index e21c565e42f8e8dcdc2bcb10a6dcbd1d5af46658..3f060afc098d9625f8823ca0d701ba29f24b561e 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_bg.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -format="{0} ({1}), \u043F\u0440\u0435\u0434\u0438 {2}" +format=\ + {0} ({1}), \u043f\u0440\u0435\u0434\u0438 {2} diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_gl.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_gl.properties deleted file mode 100644 index 8324d13db3d1b24f7b8a733ee728797057adf572..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_gl.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -format=hai {0} ({1}), {2} diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_kn.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_kn.properties deleted file mode 100644 index 210d73cfc89fb4a60b240a6b245cc106ebead6dd..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_kn.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -format={0} ({1}), {2} \u0CB9\u0CBF\u0C82\u0CA6\u0CC6 diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_sr.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_sr.properties index bdde2cdba969b97e91c8cc0abb2f1c88122cca3c..dde884e8fe859f8e6fea6c488a4fecf33bfd18bf 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_sr.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -format={0}({1}), {2} pre +format={0}({1}), {2} \u043F\u0440\u0435 diff --git a/core/src/main/resources/hudson/model/ProxyView/configure-entries_de.properties b/core/src/main/resources/hudson/model/ProxyView/configure-entries_de.properties index 5222cc089fee446a84e4bc2205871f2428b65aab..a206e6c6db9581a6be8b9ae754086cfc2861a842 100644 --- a/core/src/main/resources/hudson/model/ProxyView/configure-entries_de.properties +++ b/core/src/main/resources/hudson/model/ProxyView/configure-entries_de.properties @@ -1,25 +1,25 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -View\ name=Name der Ansicht -The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=\ - Name einer globalen Ansicht, der angezeigt wird. +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +View\ name=Name der Ansicht +The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=\ + Name einer globalen Ansicht, der angezeigt wird. diff --git a/core/src/main/resources/hudson/model/ProxyView/configure-entries_pl.properties b/core/src/main/resources/hudson/model/ProxyView/configure-entries_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..da8020acd31cbb7f2c4a25c3261bbe61344092ff --- /dev/null +++ b/core/src/main/resources/hudson/model/ProxyView/configure-entries_pl.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2017, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. +The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=Nazwa globalnego widoku, kt\u00F3ra b\u0119dzie wy\u015Bwietlana +View\ name=Nazwa widoku diff --git a/core/src/main/resources/hudson/model/ProxyView/configure-entries_ru.properties b/core/src/main/resources/hudson/model/ProxyView/configure-entries_ru.properties new file mode 100644 index 0000000000000000000000000000000000000000..487139ac098738ac8e4ac2596075c3c8a8d3b5e3 --- /dev/null +++ b/core/src/main/resources/hudson/model/ProxyView/configure-entries_ru.properties @@ -0,0 +1,2 @@ +The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=\u0418\u043c\u044f \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0431\u0443\u0434\u0435\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043e. +View\ name=\u0418\u043c\u044f \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f diff --git a/core/src/main/resources/hudson/model/ProxyView/configure-entries_sr.properties b/core/src/main/resources/hudson/model/ProxyView/configure-entries_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..6cb8749ad81cc5c9589e2d8e2dbf3611cb0ebd19 --- /dev/null +++ b/core/src/main/resources/hudson/model/ProxyView/configure-entries_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +View\ name=\u0418\u043C\u0435 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430 +The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=\u0418\u043C\u0435 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E\u0433 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430 \u043A\u043E\u0458\u0438 \u045B\u0435 \u0431\u0438\u0442\u0438 \u043F\u0440\u0438\u043A\u0430\u0437\u0430\u043D. diff --git a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_de.properties b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_de.properties index 984d1a11b0d7604eb8d829e58844eb074225eb7d..8e833e78bfc5b86a59dcef22c5d16320b8ec1cf9 100644 --- a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_de.properties +++ b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_de.properties @@ -1,24 +1,24 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Shows\ the\ content\ of\ a\ global\ view.=\ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Shows\ the\ content\ of\ a\ global\ view.=\ Zeigt den Inhalt einer globalen Ansicht. \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_sr.properties b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..b38fb5f6e69d5a2395baa1268eddecfde9ad6c3c --- /dev/null +++ b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Shows\ the\ content\ of\ a\ global\ view.=\u041F\u0440\u0438\u043A\u0430\u0437\u0443\u0458\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0433\u043B\u0430\u0432\u043D\u043E\u0433 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430 + diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_bg.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..648b75e6637bbae33660ef7aefae3c568a86fc54 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_bg.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Keep\ this\ build\ forever=\ + \u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e \u0437\u0430\u0432\u0438\u043d\u0430\u0433\u0438 diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sr.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..bdd27859e3648113fabeab67b7f68c1bc50aef88 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Keep\ this\ build\ forever=\u0417\u0430\u043F\u0430\u043C\u0442\u0438 \u043E\u0432\u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 \u0437\u0430\u0443\u0432\u0435\u043A diff --git a/core/src/main/resources/hudson/model/Run/artifacts-index_bg.properties b/core/src/main/resources/hudson/model/Run/artifacts-index_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..38b8e8f3880c8b4c17ef79e7d2104b27914b06ca --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/artifacts-index_bg.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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\ Artifacts=\ + \u041e\u0431\u0435\u043a\u0442\u0438 \u043e\u0442 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e diff --git a/core/src/main/resources/hudson/model/Run/artifacts-index_sr.properties b/core/src/main/resources/hudson/model/Run/artifacts-index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..ed4de01fde7ef5216cdc493545f19f9e4e9ac742 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/artifacts-index_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Build\ Artifacts=\u0410\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0438 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 diff --git a/core/src/main/resources/hudson/model/Run/configure_bg.properties b/core/src/main/resources/hudson/model/Run/configure_bg.properties index c42f51fe96ab814c54479592c0b39accc08b3976..1d4af2f277c76c531e65e127ffb912539ec12914 100644 --- a/core/src/main/resources/hudson/model/Run/configure_bg.properties +++ b/core/src/main/resources/hudson/model/Run/configure_bg.properties @@ -1,6 +1,29 @@ -# This file is under the MIT License by authors - -Description=\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 -DisplayName=\u041F\u043E\u0437\u043D\u0430\u0442 \u043A\u0430\u0442\u043E -LOADING=\u0417\u0410\u0420\u0415\u0416\u0414\u0410\u041D\u0415 -Save=\u0417\u0430\u043F\u0430\u0437\u0432\u0430\u043D\u0435 +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. +Description=\ + \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 +DisplayName=\ + \u0418\u043c\u0435 \u0437\u0430 \u0438\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435 +LOADING=\ + \u0417\u0410\u0420\u0415\u0416\u0414\u0410\u041d\u0415 +Save=\ + \u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 diff --git a/core/src/main/resources/hudson/model/Run/configure_id.properties b/core/src/main/resources/hudson/model/Run/configure_id.properties deleted file mode 100644 index 73b6c06c958897dd9f7a1cf8f47edc9de99c20cc..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/Run/configure_id.properties +++ /dev/null @@ -1,5 +0,0 @@ -# This file is under the MIT License by authors - -Description=Deskripsi -DisplayName=Tampilkan Nama -LOADING=PROSES diff --git a/core/src/main/resources/hudson/model/Run/configure_sr.properties b/core/src/main/resources/hudson/model/Run/configure_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..6fffe044fdec08c34825c2c2537113dd19048f4f --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_sr.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +LOADING=\u0423\u0427\u0418\u0422\u0410\u0412\u0410\u040A\u0415 +DisplayName=\u0418\u043C\u0435 \u0437\u0430 \u043F\u0440\u0438\u043A\u0430\u0437 +Description=\u041E\u043F\u0438\u0441 +Save=\u0421\u0430\u0447\u0443\u0432\u0430\u0458 diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete.jelly b/core/src/main/resources/hudson/model/Run/confirmDelete.jelly index 41c42b3eb08ae785a12c2dbda4ad731716eaec3b..c48788d423d4f653b9baa4cfb7334b109854d172 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete.jelly +++ b/core/src/main/resources/hudson/model/Run/confirmDelete.jelly @@ -24,20 +24,23 @@ THE SOFTWARE. - + - - + + -

    ${%Warning}: ${msg}

    -
    +

    ${%Warning}: ${msg}

    + -
    - ${%Are you sure about deleting the build?} - - + +
    + ${%Are you sure about deleting the build?} + + +
    -
    -
    + +
    diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_bg.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_bg.properties index 8d430987acfeaeda0731fad8c3aee8707dc6a5af..378fa43b75a821688acb109babf8cd7b6f84c860 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_bg.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_bg.properties @@ -1,4 +1,28 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. -Are\ you\ sure\ about\ deleting\ the\ build?=\u041D\u0430\u0438\u0441\u0442\u0438\u043D\u0430 \u043B\u0438 \u0436\u0435\u043B\u0430\u0435\u0442\u0435 \u0434\u0430 \u0438\u0437\u0442\u0440\u0438\u0435\u0442\u0435 \u0431\u0438\u043B\u0434\u0430? -Yes=\u0414\u0430 +Are\ you\ sure\ about\ deleting\ the\ build?=\ + \u041d\u0430\u0438\u0441\u0442\u0438\u043d\u0430 \u043b\u0438 \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u0434\u0430 \u0438\u0437\u0442\u0440\u0438\u0435\u0442\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u0435\u043d\u043e\u0442\u043e? +Yes=\ + \u0414\u0430 +Warning=\ + \u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435 diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_sr.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..79339b25a8d75dd2e4e53b0618245ddb0335c43c --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Warning=\u0423\u043F\u043E\u0437\u043E\u0440\u0435\u045A\u0435 +Yes=\u0414\u0430 +Are\ you\ sure\ about\ deleting\ the\ build?=\u0414\u0430 \u043B\u0438 \u0441\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043D\u0438 \u0434\u0430 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u0443\u043A\u043B\u043E\u043D\u0438\u0442\u0435 \u043E\u0432\u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443? diff --git a/core/src/main/resources/hudson/model/Run/console_bg.properties b/core/src/main/resources/hudson/model/Run/console_bg.properties index 5b84fa8cfd52ff709af25c2aba8fafee8518a4f8..e4a3d944382c497ac600ab4c96f6256c1b7f7287 100644 --- a/core/src/main/resources/hudson/model/Run/console_bg.properties +++ b/core/src/main/resources/hudson/model/Run/console_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,4 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u041A\u043E\u043D\u0437\u043E\u043B\u0430 \u0441 \u0440\u0435\u0437\u0443\u043B\u0442\u0430\u0442\u0430 +Console\ Output=\ + \u041a\u043e\u043d\u0437\u043e\u043b\u0430 \u0441 \u0440\u0435\u0437\u0443\u043b\u0442\u0430\u0442\u0430 +# Skipping {0,number,integer} KB.. Full Log +skipSome=\ + \u041f\u0440\u043e\u043f\u0443\u0441\u043a\u0430\u043d\u0435 \u043d\u0430 {0,number,integer}\u200aKB\u2026 \u041f\u044a\u043b\u0435\u043d \u0436\u0443\u0440\u043d\u0430\u043b diff --git a/core/src/main/resources/hudson/model/Run/console_de.properties b/core/src/main/resources/hudson/model/Run/console_de.properties index f32f7c130ef73acadda79e3ace303a1915a991b1..51d429bd2ad422ea24ef89468116b70d382844b5 100644 --- a/core/src/main/resources/hudson/model/Run/console_de.properties +++ b/core/src/main/resources/hudson/model/Run/console_de.properties @@ -21,5 +21,4 @@ # THE SOFTWARE. Console\ Output=Konsolenausgabe -View\ as\ plain\ text=Text unformatiert anzeigen skipSome=Vorausgehende {0,number,integer} KB sind in dieser Darstellung ausgelassen. Alles anzeigen diff --git a/core/src/main/resources/hudson/model/Run/console_eu.properties b/core/src/main/resources/hudson/model/Run/console_eu.properties deleted file mode 100644 index 28f63d8ab0bd34a9431a76848b363ce8664b5ab9..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/Run/console_eu.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Console\ Output=Kontsolaren irteera diff --git a/core/src/main/resources/hudson/model/Run/console_hi_IN.properties b/core/src/main/resources/hudson/model/Run/console_hi_IN.properties deleted file mode 100644 index 82ed0aa62087e0d13cbf8c32e42ed072dccceb22..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/Run/console_hi_IN.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Console\ Output=\u0915\u0902\u0938\u094B\u0932 \u092A\u0930 \u092E\u0941\u0926\u094D\u0930\u093F\u0924 diff --git a/core/src/main/resources/hudson/model/Run/console_id.properties b/core/src/main/resources/hudson/model/Run/console_id.properties deleted file mode 100644 index aba4ff1242c84530abd75f7321ff167a2fb46e54..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/Run/console_id.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -skipSome=Melompati {0,number,integer} KB.. Log Penuh diff --git a/core/src/main/resources/hudson/model/Run/console_is.properties b/core/src/main/resources/hudson/model/Run/console_is.properties deleted file mode 100644 index dca6f8e336d3e7eef75a530fc8232a5a87ec28e6..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/Run/console_is.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Console\ Output=Raunt\u00EDma atbur\u00F0a skr\u00E1ning diff --git a/core/src/main/resources/hudson/model/Run/console_kn.properties b/core/src/main/resources/hudson/model/Run/console_kn.properties deleted file mode 100644 index 18836465d737e8a3c9cc6491c5550b8e88fbe223..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/Run/console_kn.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Console\ Output=\u0C95\u0CA8\u0CCD\u0CB8\u0CC6\u0CC2\u0CD5\u0CB2\u0CCD \u0C89\u0CA4\u0CCD\u0CAA\u0CA8\u0CCD\u0CA8 diff --git a/core/src/main/resources/hudson/model/Run/console_oc.properties b/core/src/main/resources/hudson/model/Run/console_oc.properties deleted file mode 100644 index 1b9cc2ee0d2a9f46e7efb7d427ce578a8a91df7c..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/Run/console_oc.properties +++ /dev/null @@ -1,5 +0,0 @@ -# This file is under the MIT License by authors - -Console\ Output=WYSIWYG -View\ as\ plain\ text=See that there? -skipSome=Missed: {0,number,integer} KB.. See them here diff --git a/core/src/main/resources/hudson/model/Run/console_pl.properties b/core/src/main/resources/hudson/model/Run/console_pl.properties index 10ae388c90e1ad6e9461dbfc4d4c35817a69a969..138b0e72ed6c9a040d141ebbbf2515057e206a71 100644 --- a/core/src/main/resources/hudson/model/Run/console_pl.properties +++ b/core/src/main/resources/hudson/model/Run/console_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2004-2016, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributors # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,6 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Wyj\u015Bcie Konsoli -View\ as\ plain\ text=Poka\u017C jako tekst niesformatowany +Console\ Output=Logi konsoli skipSome=Pomini\u0119to {0,number,integer} KB.. Poka\u017C wszystko diff --git a/core/src/main/resources/hudson/model/Run/console_sr.properties b/core/src/main/resources/hudson/model/Run/console_sr.properties index c4c0552d2851007ad6f1fa6e8fd2c12e3aab49eb..3e24c621d1ec455dc8602b94d65e6245a592acdc 100644 --- a/core/src/main/resources/hudson/model/Run/console_sr.properties +++ b/core/src/main/resources/hudson/model/Run/console_sr.properties @@ -1,4 +1,5 @@ # This file is under the MIT License by authors -Console\ Output=Ispis konzole -View\ as\ plain\ text=Vidi kao obi\u010Dan tekst +Console\ Output=\u0418\u0441\u0445\u043E\u0434 \u0438\u0437 \u043A\u043E\u043D\u0437\u043E\u043B\u0435 +View\ as\ plain\ text=\u041F\u0440\u0435\u0433\u043B\u0435\u0434 \u043E\u0431\u0438\u0447\u043D\u043E\u0433 \u0442\u0435\u043A\u0441\u0442\u0430 +skipSome=\u041F\u0440\u0435\u0441\u043A\u0430\u0447\u0435 {0,number,integer} KB.. \u041A\u043E\u043C\u043F\u043B\u0435\u0442\u0430\u043D \u0436\u0443\u0440\u043D\u0430\u043B diff --git a/core/src/main/resources/hudson/model/Run/console_te.properties b/core/src/main/resources/hudson/model/Run/console_te.properties deleted file mode 100644 index 5cdcf08ca2d21fecb94a78acee336f4402f78e87..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/Run/console_te.properties +++ /dev/null @@ -1,5 +0,0 @@ -# This file is under the MIT License by authors - -Console\ Output=Console Phalithamsham -View\ as\ plain\ text=Mamoolu Aksharala Avalokanam -skipSome={0,number,integer} KB Vidichipedthoo.. Poorthi Log diff --git a/core/src/main/resources/hudson/model/Run/delete-retry_bg.properties b/core/src/main/resources/hudson/model/Run/delete-retry_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..dc8c79c7803a8683e14d24be975aee4aeb21168c --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete-retry_bg.properties @@ -0,0 +1,31 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +# Deletion of the build failed +Not\ successful=\ + \u041d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u0435\u043d\u043e\u0442\u043e +# Retry delete +Retry\ delete=\ + \u041d\u043e\u0432 \u043e\u043f\u0438\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 +# Show reason +Show\ reason=\ + \u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0438\u0447\u0438\u043d\u0430\u0442\u0430 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hi_IN.properties b/core/src/main/resources/hudson/model/Run/delete-retry_de.properties similarity index 84% rename from core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hi_IN.properties rename to core/src/main/resources/hudson/model/Run/delete-retry_de.properties index 99175efaca4467f19c0719769dfb29d5202a7f0f..7e174019c4a5dd4f19ca519c6c33a7d6f33f9dd8 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hi_IN.properties +++ b/core/src/main/resources/hudson/model/Run/delete-retry_de.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2017 Daniel Beck and a number of other of contributors # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=\u0905\u0917\u0932\u093E \u0917\u0920\u0928 -Previous\ Build=\u092A\u0942\u0930\u094D\u0935 \u0928\u093F\u0930\u094D\u092E\u093E\u0923 +Retry\ delete=Erneut versuchen, zu entfernen +Not\ successful=Entfernen des Builds fehlgeschlagen +Show\ reason=Grund anzeigen diff --git a/core/src/main/resources/hudson/model/Run/delete-retry_sr.properties b/core/src/main/resources/hudson/model/Run/delete-retry_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..d5454cf7ecc162c2b43a4bc949bd72b23e1f7318 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete-retry_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Retry\ delete=\u041F\u043E\u043A\u0443\u0448\u0430\u0458 \u0431\u0440\u0438\u0441\u0430\u045A\u0435 \u043F\u043E\u043D\u043E\u0432\u043E +Show\ reason=\u041F\u0440\u0438\u043A\u0430\u0436\u0438 \u0440\u0430\u0437\u043B\u043E\u0433 +Not\ successful=\u041D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u043E diff --git a/core/src/main/resources/hudson/model/Run/delete_bg.properties b/core/src/main/resources/hudson/model/Run/delete_bg.properties index 470632246eda87cc2a587503b13c864f24a53c52..47e6e98e8e4c1ad0e2ce88b4b8cfaef955b80f54 100644 --- a/core/src/main/resources/hudson/model/Run/delete_bg.properties +++ b/core/src/main/resources/hudson/model/Run/delete_bg.properties @@ -1,3 +1,24 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. -Delete\ this\ build=\u0418\u0437\u0442\u0440\u0438\u0439 \u0431\u0438\u043B\u0434\u0430 +Delete\ this\ build=\ +\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u0435\u043d\u043e\u0442\u043e diff --git a/core/src/main/resources/hudson/model/Run/delete_eu.properties b/core/src/main/resources/hudson/model/Run/delete_eu.properties deleted file mode 100644 index 8aeecb7cf23cfb91aff2b21c72880c37cb0fb79e..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/Run/delete_eu.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Delete\ this\ build=Kompilazioa ezabatu diff --git a/core/src/main/resources/hudson/model/Run/delete_hi_IN.properties b/core/src/main/resources/hudson/model/Run/delete_hi_IN.properties deleted file mode 100644 index 3d662461dbef66f9cc8ab6d23e04faa936f7858e..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/Run/delete_hi_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Delete\ this\ build=\u0928\u093F\u0930\u094D\u092E\u093E\u0923 \u0939\u091F\u093E\u090F\u0901 diff --git a/core/src/main/resources/hudson/model/Run/delete_id.properties b/core/src/main/resources/hudson/model/Run/delete_id.properties deleted file mode 100644 index 8d627be1f9e89466ae2385d46b81a25ac32971db..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/Run/delete_id.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Delete\ this\ build=Hapus Build diff --git a/core/src/main/resources/hudson/model/Run/delete_ka.properties b/core/src/main/resources/hudson/model/Run/delete_ka.properties deleted file mode 100644 index fdcf5f84ac74d7af5b7b51c26d1a0c1f871ca7b8..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/Run/delete_ka.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Delete\ this\ build=\u10D5\u10D4\u10E0\u10E1\u10D8\u10D8\u10E1 \u10EC\u10D0\u10E8\u10DA\u10D0 diff --git a/core/src/main/resources/hudson/model/Run/delete_mk.properties b/core/src/main/resources/hudson/model/Run/delete_mk.properties deleted file mode 100644 index cb4c33c08e8b70d7d25c0636652a6a91aa1d9556..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/Run/delete_mk.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Delete\ this\ build=\u0418\u0437\u0431\u0440\u0438\u0448\u0438 Build diff --git a/core/src/main/resources/hudson/model/Run/delete_pl.properties b/core/src/main/resources/hudson/model/Run/delete_pl.properties index 2591ced2881f652afe6fa7c701466d2aa77b34e8..2ae6db49379570ce181965715e6303dd5970fc39 100644 --- a/core/src/main/resources/hudson/model/Run/delete_pl.properties +++ b/core/src/main/resources/hudson/model/Run/delete_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=Usu\u0144 t\u0119 wersj\u0119 +Delete\ this\ build=Usu\u0144 to zadanie diff --git a/core/src/main/resources/hudson/model/Run/delete_sq.properties b/core/src/main/resources/hudson/model/Run/delete_sq.properties deleted file mode 100644 index 67b0605cdb7a1c3dfa561057b804e7af83567bda..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/Run/delete_sq.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Delete\ this\ build=Build l\u00F6schen diff --git a/core/src/main/resources/hudson/model/Run/delete_sr.properties b/core/src/main/resources/hudson/model/Run/delete_sr.properties index b5ac4708b170019884b2232d2b6cd6a2b9de0489..50398669a83ff5c45fc9a65268ee3fec376c5449 100644 --- a/core/src/main/resources/hudson/model/Run/delete_sr.properties +++ b/core/src/main/resources/hudson/model/Run/delete_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Delete\ this\ build=Obrisi build +Delete\ this\ build=\u0423\u043A\u043B\u043E\u043D\u0438 \u043E\u0432\u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 diff --git a/core/src/main/resources/hudson/model/Run/logKeep.jelly b/core/src/main/resources/hudson/model/Run/logKeep.jelly index fe9545e7562b4913d0b5c52db17c83f2fd5a3db0..19ccd4820fc346fdebad8b8c800edd3b8151da98 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep.jelly +++ b/core/src/main/resources/hudson/model/Run/logKeep.jelly @@ -27,8 +27,8 @@ THE SOFTWARE. --> - -
    + + diff --git a/core/src/main/resources/hudson/model/Run/logKeep_bg.properties b/core/src/main/resources/hudson/model/Run/logKeep_bg.properties index 8433c19b126c012e722855587b4b794e3d0030ab..bce91f780be51c76cf6bb223f1123cdad7790d7e 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_bg.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_bg.properties @@ -1,3 +1,26 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -Keep\ this\ build\ forever=\u041F\u0430\u0437\u0438 \u0431\u0438\u043B\u0434\u0430 \u0437\u0430\u0432\u0438\u043D\u0430\u0433\u0438 +Keep\ this\ build\ forever=\ + \u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u0435\u043d\u043e\u0442\u043e \u0437\u0430\u0432\u0438\u043d\u0430\u0433\u0438 +Don''t\ keep\ this\ build\ forever=\ + \u0418\u0437\u0433\u0440\u0430\u0434\u0435\u043d\u043e\u0442\u043e \u0434\u0430 \u043d\u0435 \u0441\u0438 \u043f\u0430\u0437\u0438 \u0437\u0430\u0432\u0438\u043d\u0430\u0433\u0438 diff --git a/core/src/main/resources/hudson/model/Run/logKeep_de.properties b/core/src/main/resources/hudson/model/Run/logKeep_de.properties index 0095991b1bc3f2cc7b6192d3cacc5470c81d7fec..19a0bcd24a36ef8e80c2bd529b4e9bf3c95528be 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_de.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_de.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Don't\ keep\ this\ build\ forever=Diesen Build nur befristet aufbewahren Keep\ this\ build\ forever=Diesen Build unbefristet aufbewahren +Don''t\ keep\ this\ build\ forever=Diesen Build nicht unbefristet aufbewahren diff --git a/core/src/main/resources/hudson/model/Run/logKeep_hi_IN.properties b/core/src/main/resources/hudson/model/Run/logKeep_hi_IN.properties deleted file mode 100644 index 960bc0a9cd3a542c2522a80b8f46844dd78a4842..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/Run/logKeep_hi_IN.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Keep\ this\ build\ forever=\u0907\u0938 \u0917\u0920\u0928 \u0915\u094B \u0939\u092E\u0947\u0936\u093E \u0915\u0947 \u0932\u093F\u090F \u0930\u0916\u0947\u0902. diff --git a/core/src/main/resources/hudson/model/Run/logKeep_pl.properties b/core/src/main/resources/hudson/model/Run/logKeep_pl.properties index 6b14a6a1a07f21a13a91fae0faa0e89380628d3a..17cce8de954cec9a7cd314240fda1dd0548720aa 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_pl.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2004-2016, Sun Microsystems, Inc, Damian Szczepanik # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -19,5 +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. - -Keep\ this\ build\ forever=Zchowaj to wykonanie +Keep\ this\ build\ forever=Zachowaj to zadanie diff --git a/core/src/main/resources/hudson/model/Run/logKeep_sr.properties b/core/src/main/resources/hudson/model/Run/logKeep_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..9c069ff8dff40d6500f622898e284aa87d42d793 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/logKeep_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Don't\ keep\ this\ build\ forever=\u041D\u0435\u043C\u043E\u0458 \u0437\u0430\u0434\u0440\u0436\u0430\u0442\u0438 \u043E\u0432\u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 +Keep\ this\ build\ forever=\u0417\u0430\u0434\u0440\u0436\u0438 \u043E\u0432\u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 +Don''t\ keep\ this\ build\ forever=\u041D\u0435\u043C\u043E\u0458 \u0437\u0430\u0434\u0440\u0436\u0430\u0442\u0438 \u043E\u0432\u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 diff --git a/core/src/main/resources/hudson/model/RunParameterDefinition/config_de.properties b/core/src/main/resources/hudson/model/RunParameterDefinition/config_de.properties index 39b03edb84bd5796d43fec68e5df75c5f1b94123..528474a698b8fa2ce2d571b7253023d5356a90c5 100644 --- a/core/src/main/resources/hudson/model/RunParameterDefinition/config_de.properties +++ b/core/src/main/resources/hudson/model/RunParameterDefinition/config_de.properties @@ -1,3 +1,8 @@ Name=Name Project=Projekt Description=Beschreibung +All\ Builds=Alle Builds +Successful\ Builds\ Only=Nur erfolgreiche Builds +Filter=Filter +Stable\ Builds\ Only=Nur stabile Builds +Completed\ Builds\ Only=Nur beendete Builds diff --git a/core/src/main/resources/hudson/model/RunParameterDefinition/config_pl.properties b/core/src/main/resources/hudson/model/RunParameterDefinition/config_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..7b9a58280381a14b57c42d0401c8886a792057ae --- /dev/null +++ b/core/src/main/resources/hudson/model/RunParameterDefinition/config_pl.properties @@ -0,0 +1,29 @@ +# The MIT License +# +# Copyright (c) 2016, Damiani Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. +Filter=Filtr +Completed\ Builds\ Only=Tylko zadania zako\u0144czone +Successful\ Builds\ Only=Tylko zadania zako\u0144czone sukcesem +Project=Projekt +Name=Nazwa +All\ Builds=Wszystkie zadania +Stable\ Builds\ Only=Tylko stabilne zadania +Description=Opis diff --git a/core/src/main/resources/hudson/model/RunParameterDefinition/config_sr.properties b/core/src/main/resources/hudson/model/RunParameterDefinition/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..0f48747b5adc43813e160680d33536a67096363b --- /dev/null +++ b/core/src/main/resources/hudson/model/RunParameterDefinition/config_sr.properties @@ -0,0 +1,10 @@ +# This file is under the MIT License by authors + +Name=\u0418\u043C\u0435 +Project=\u041F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 +Description=\u041E\u043F\u0438\u0441 +Filter=\u0424\u0438\u043B\u0442\u0435\u0440 +All\ Builds=\u0421\u0432\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 +Completed\ Builds\ Only=\u0421\u0430\u043C\u043E \u0437\u0430\u0432\u0440\u0448\u0435\u043D\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 +Successful\ Builds\ Only=\u0421\u0430\u043C\u043E \u0443\u0441\u043F\u0435\u0448\u043D\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 +Stable\ Builds\ Only=\u0421\u0430\u043C\u043E \u0441\u0442\u0430\u0431\u0438\u043B\u043D\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 diff --git a/core/src/main/resources/hudson/model/RunParameterDefinition/index.jelly b/core/src/main/resources/hudson/model/RunParameterDefinition/index.jelly index 62dbc444695eeda4fdede21d448bbc958894f5bf..db37d683d3e60dfce2fbfccbb698b239d39236f0 100644 --- a/core/src/main/resources/hudson/model/RunParameterDefinition/index.jelly +++ b/core/src/main/resources/hudson/model/RunParameterDefinition/index.jelly @@ -26,7 +26,8 @@ THE SOFTWARE. - + +
    diff --git a/core/src/main/resources/hudson/model/StringParameterValue/value.jelly b/core/src/main/resources/hudson/model/StringParameterValue/value.jelly index 961a583d2920cdd2663ae7aef7a2a9646f70dcfa..e3de9ff09a34026b96b498a0ab889bc7b85762b4 100644 --- a/core/src/main/resources/hudson/model/StringParameterValue/value.jelly +++ b/core/src/main/resources/hudson/model/StringParameterValue/value.jelly @@ -26,7 +26,8 @@ THE SOFTWARE. - + + \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/TaskAction/log.jelly b/core/src/main/resources/hudson/model/TaskAction/log.jelly index 388f4d639335875e1b44e8f7167fe342850120ac..f7be5cfb7a1dfbd49e39e2ce4ba7ea366094f981 100644 --- a/core/src/main/resources/hudson/model/TaskAction/log.jelly +++ b/core/src/main/resources/hudson/model/TaskAction/log.jelly @@ -42,7 +42,7 @@ THE SOFTWARE. ${it.obtainLog().writeLogTo(0,output)} - + diff --git a/core/src/main/resources/hudson/model/TaskAction/log_sr.properties b/core/src/main/resources/hudson/model/TaskAction/log_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..9f1c8091f3f190584b6d80762824f66dae0fb98c --- /dev/null +++ b/core/src/main/resources/hudson/model/TaskAction/log_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Clear\ error\ to\ retry=\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u0433\u0440\u0435\u0448\u043A\u0443 \u0438 \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0443\u0448\u0430\u0458 diff --git a/core/src/main/resources/hudson/model/TextParameterDefinition/config_de.properties b/core/src/main/resources/hudson/model/TextParameterDefinition/config_de.properties new file mode 100644 index 0000000000000000000000000000000000000000..17326481b30d3a0ad8b68470d9003042726c97d3 --- /dev/null +++ b/core/src/main/resources/hudson/model/TextParameterDefinition/config_de.properties @@ -0,0 +1,25 @@ +# The MIT License +# +# Copyright (c) 2017 Daniel Beck and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +Description=Beschreibung +Name=Name +Default\ Value=Standardwert diff --git a/core/src/main/resources/hudson/model/TextParameterDefinition/config_pl.properties b/core/src/main/resources/hudson/model/TextParameterDefinition/config_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..f825b49123faabb9119767e56ee9da726d1065d0 --- /dev/null +++ b/core/src/main/resources/hudson/model/TextParameterDefinition/config_pl.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Copyright (c) 2016, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. +Name=Nazwa +Default\ Value=Domy\u015Blna warto\u015B\u0107 +Description=Opis diff --git a/core/src/main/resources/hudson/model/TextParameterDefinition/config_sr.properties b/core/src/main/resources/hudson/model/TextParameterDefinition/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..cf61857320cdf09d347e042b898d227464304114 --- /dev/null +++ b/core/src/main/resources/hudson/model/TextParameterDefinition/config_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Name=\u0418\u043C\u0435 +Default\ Value=\u041F\u043E\u0434\u0440\u0430\u0437\u0443\u043C\u0435\u0432\u0430\u043D\u0430 \u0432\u0440\u0435\u0434\u043D\u043E\u0441\u0442 +Description=\u041E\u043F\u0438\u0441 diff --git a/core/src/main/resources/hudson/model/TextParameterDefinition/index.jelly b/core/src/main/resources/hudson/model/TextParameterDefinition/index.jelly index fa19ca26ba96653646bbd5bb1326be0b83405b75..87e48fd16b8b7ae89e0c4a93a84fd8eb35135728 100644 --- a/core/src/main/resources/hudson/model/TextParameterDefinition/index.jelly +++ b/core/src/main/resources/hudson/model/TextParameterDefinition/index.jelly @@ -24,7 +24,8 @@ THE SOFTWARE. --> - + +
    diff --git a/core/src/main/resources/hudson/model/TextParameterValue/value.jelly b/core/src/main/resources/hudson/model/TextParameterValue/value.jelly index 5c089e0ac0eae43e60744e094384eeed5b663108..8ae92827ade16c6d764956730c079ab372f6c397 100644 --- a/core/src/main/resources/hudson/model/TextParameterValue/value.jelly +++ b/core/src/main/resources/hudson/model/TextParameterValue/value.jelly @@ -26,7 +26,8 @@ THE SOFTWARE. - + + \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/TreeView/sidepanel2_sr.properties b/core/src/main/resources/hudson/model/TreeView/sidepanel2_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..f8ec299e020f6eb33f50a540d14d21a6d7cfde3b --- /dev/null +++ b/core/src/main/resources/hudson/model/TreeView/sidepanel2_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +New\ View=\u041D\u043E\u0432\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_bg.properties index 1fbb10639b78cc32a0b3283449470a94b97bede4..adee465bca3116d715acb20e770cd46f4712cef7 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_bg.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_bg.properties @@ -1,3 +1,23 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -Preparation=\u041F\u043E\u0434\u0433\u043E\u0442\u043E\u0432\u043A\u0430 +Preparation=\u041f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_gu_IN.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_gu_IN.properties deleted file mode 100644 index 12d2087a3db317cf0415ea5c8002320240e6a1cd..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_gu_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Preparation=tayyari chale che diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_kn.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_kn.properties deleted file mode 100644 index 551476e9c02b9aa3a3c640991281f661deea4450..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_kn.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Preparation=\u0CAA\u0CC2\u0CB0\u0CCD\u0CB5 \u0CB8\u0CBF\u0CA6\u0CCD\u0CA7\u0CA4\u0CC6 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sr.properties index fa1e2190e2a1567c2902e80825e1b0d2d293780d..05cfddd60fb4ef6900ba6253dec69eb74cff472d 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Preparation=Priprema +Preparation=\u041F\u0440\u0438\u043F\u0440\u0435\u043C\u0430\u045A\u0435 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ru.properties new file mode 100644 index 0000000000000000000000000000000000000000..0995f00f6c1289d39811b735375821e961e5925c --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ru.properties @@ -0,0 +1,26 @@ +# The MIT License +# +# Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +NewVersionAvailable=\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f +Retry=\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u044c +UpgradeComplete=\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e +UpgradeFailed=\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..08ab00907c71b78a41b29889c939518eb8d92f9c --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Failure=\u0413\u0440\u0435\u0448\u043A\u0430 +Details=\u0414\u0435\u0442\u0430\u0459\u0438 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..f9195b9f58e4401d0955412e87159a09e568223f --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Installing=\u0418\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_kn.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_kn.properties deleted file mode 100644 index 2c76ca0610b0c7c96e696f98c146fc0bef892048..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_kn.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Pending=\u0CA4\u0CA1\u0CC6\u0CB9\u0CBF\u0CA1\u0CBF diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_sr.properties index baf65f0336f049e5bf10a83f92bbf2e7c1585179..cf0838acf528c4a923cbcfc821b88453cd708849 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Pending=U toku +Pending=\u0423 \u0442\u043E\u043A\u0443 diff --git a/core/src/main/resources/hudson/model/Executor/causeOfDeath.jelly b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Skipped/status.jelly similarity index 57% rename from core/src/main/resources/hudson/model/Executor/causeOfDeath.jelly rename to core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Skipped/status.jelly index 55559f68e81b912a2d9ede5bfb5d0171ab07967a..a6c1d9429f67e1d866256c52ee4df13573e77c35 100644 --- a/core/src/main/resources/hudson/model/Executor/causeOfDeath.jelly +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Skipped/status.jelly @@ -23,36 +23,6 @@ THE SOFTWARE. --> - - - - - - - - - - - -

    - - ${%Thread is still alive} -

    -
    - -

    - - ${%Thread has died} -

    -
    ${h.printThrowable(it.causeOfDeath)}
    -
    -            ${%more info}
    -          
    -
    - - -
    -
    -
    -
    + + ${%Skipped} diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..66d22b692af99cea0939fe26f38b15044e8ce145 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Success=\u0423\u0441\u043F\u0435\u0448\u043D\u043E diff --git a/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row.jelly b/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row.jelly new file mode 100644 index 0000000000000000000000000000000000000000..f98ff8bc4a431b26986bc16500d3e43e6161596e --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row.jelly @@ -0,0 +1,33 @@ + + + + + + ${it.plugin.displayName} + + ${%Enabled Dependency} + + + diff --git a/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_de.properties b/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_de.properties new file mode 100644 index 0000000000000000000000000000000000000000..5010b842fbc203634feee68958e8f643b20710b2 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_de.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2017 Daniel Beck and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +Enabled\ Dependency=Abh\u00E4ngigkeit aktiviert diff --git a/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..3af25ed5fbf53c6f83f82478b1651df22a7f2176 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/EnableJob/row_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Enabled\ Dependency=\u041E\u043C\u043E\u0433\u0443\u045B\u0435\u043D\u0430 \u0437\u0430\u0432\u0438\u0441\u043D\u0430 \u043C\u043E\u0434\u0443\u043B\u0430 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row.jelly b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row.jelly new file mode 100644 index 0000000000000000000000000000000000000000..c6a2e93587004569520b157ac92846dbb7bb199e --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row.jelly @@ -0,0 +1,33 @@ + + + + + + ${it.plugin.displayName} + + ${%Already Installed} + + + diff --git a/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_de.properties b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_de.properties new file mode 100644 index 0000000000000000000000000000000000000000..3c45de871db9def75c8e5b24f9a1581b0a3306c4 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_de.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2017 Daniel Beck and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +Already\ Installed=Bereits installiert diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_id.properties b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_pl.properties similarity index 92% rename from core/src/main/resources/hudson/security/SecurityRealm/loginLink_id.properties rename to core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_pl.properties index 2296c3521d48f22200457ffb5b2eafb43780f2f0..44f44ba29296b81e78c3643ead568f67545ba29c 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_id.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2017, Damian Szczepanik # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -19,5 +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. - -login=Masuk +Already\ Installed=Ju\u017C zainstalowano diff --git a/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_ru.properties new file mode 100644 index 0000000000000000000000000000000000000000..e2a00fa012c120999e077a2b1b144031adfdc0b0 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_ru.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +Already\ Installed=\u0423\u0436\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..c9523af58af1af95a6710ad2c2bc14a089d3de12 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/NoOpJob/row_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Already\ Installed=\u0412\u0435\u045B \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u043E diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..efa35bc645facadd3beea5309dff454831dcc9f3 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Canceled=\u041E\u0442\u043A\u0430\u0437\u0430\u043D\u043E diff --git a/core/src/main/resources/lib/form/apply_es.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_ru.properties similarity index 93% rename from core/src/main/resources/lib/form/apply_es.properties rename to core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_ru.properties index 2fd7068288eb6cc5c1d4971df02afd646e4a2d9e..742c133e614c872e088d321fc720468a81746eab 100644 --- a/core/src/main/resources/lib/form/apply_es.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_ru.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributers +# Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributors # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Apply=Aplicar los cambios +Failure=\u041e\u0448\u0438\u0431\u043a\u0430 \ No newline at end of file diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_eu.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_sr.properties similarity index 52% rename from core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_eu.properties rename to core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_sr.properties index 099d7002efe7a8f2ab387d514273a5b1fd9d0dc9..17c0cafed8bfd6890aa42d37fe755c5eda6def75 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_eu.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_sr.properties @@ -1,4 +1,3 @@ # This file is under the MIT License by authors -Dismiss=baztertu -More\ Info=argibide gehiago +Failure=\u0413\u0440\u0435\u0448\u043A\u0430 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_kn.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_kn.properties deleted file mode 100644 index 2c76ca0610b0c7c96e696f98c146fc0bef892048..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_kn.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Pending=\u0CA4\u0CA1\u0CC6\u0CB9\u0CBF\u0CA1\u0CBF diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_sr.properties index baf65f0336f049e5bf10a83f92bbf2e7c1585179..cf0838acf528c4a923cbcfc821b88453cd708849 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Pending=U toku +Pending=\u0423 \u0442\u043E\u043A\u0443 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..7775a5ee2afa4610063a9394ab8c0a46e6c421cc --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Running=\u0412\u0440\u0448\u0438 \u0441\u0435 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sr.properties index 5ff318c3cfb5c8b4168f645a1994df7d1b7b5c78..0797fb4ce944137dcd526bb39ccb178484b70bf6 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Restarting\ Jenkins=Restart Jenkins-a +Restarting\ Jenkins=\u041F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0435 Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_bg.properties index 2417dc93a146825a83e008d224d9c66bc4ad5667..8f9a6ef6384109981b1baee7e1479aa37e269347 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_bg.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_bg.properties @@ -1,5 +1,25 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -Go\ back\ to\ the\ top\ page=\u041E\u0431\u0440\u0430\u0442\u043D\u043E \u043A\u044A\u043C \u043E\u0441\u043D\u043E\u0432\u043D\u0430\u0442\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 -warning=\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0439\u0442\u0435 Jenkins, \u043A\u043E\u0433\u0430\u0442\u043E \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u044F\u0442\u0430 \u043F\u0440\u0438\u043A\u043B\u044E\u0447\u0438 \u0438 \u043D\u044F\u043C\u0430 \u0430\u043A\u0442\u0438\u0432\u043D\u0438 \u0437\u0430\u0434\u0430\u0447\u0438 -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=\u043C\u043E\u0436\u0435\u0442\u0435 \u0434\u0430 \u043F\u043E\u043B\u0437\u0432\u0430\u0442\u0435 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u0438\u0442\u0435 \u043F\u0440\u0438\u0441\u0442\u0430\u0432\u043A\u0438 \u0441\u0435\u0433\u0430 +Go\ back\ to\ the\ top\ page=\u041e\u0431\u0440\u0430\u0442\u043d\u043e \u043a\u044a\u043c \u043e\u0441\u043d\u043e\u0432\u043d\u0430\u0442\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 +warning=\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0439\u0442\u0435 Jenkins, \u043a\u043e\u0433\u0430\u0442\u043e \u0438\u043d\u0441\u0442\u0430\u043b\u0430\u0446\u0438\u044f\u0442\u0430 \u043f\u0440\u0438\u043a\u043b\u044e\u0447\u0438 \u0438 \u043d\u044f\u043c\u0430 \u0430\u043a\u0442\u0438\u0432\u043d\u0438 \u0437\u0430\u0434\u0430\u0447\u0438 +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=\u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0438\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438 \u0441\u0435\u0433\u0430 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_gu_IN.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_gu_IN.properties deleted file mode 100644 index 5b2dbda4779fdbef86973d08deec157003f39062..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_gu_IN.properties +++ /dev/null @@ -1,5 +0,0 @@ -# This file is under the MIT License by authors - -Go\ back\ to\ the\ top\ page=pacha top page par -warning=installation baad Jenkins restart karo -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=install karela plugins restart vagar pan vapri shako diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_pl.properties index 7515413d8690af6df9ffb942c427449c4e63e517..8c519ef315ab3942a8381ff40ed0ca16e05d2279 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_pl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_pl.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Go\ back\ to\ the\ top\ page=Wr\u00F3\u0107 do strony g\u0142\u00F3wnej -warning=Zrestartuj Jenkinsa, gdy instalacja si\u0119 zako\u0144czy i \u017Cadne zadanie nie b\u0119dzie wykonywane +warning=Uruchom ponownie Jenkinsa, gdy instalacja si\u0119 zako\u0144czy i \u017Cadne zadanie nie b\u0119dzie wykonywane you\ can\ start\ using\ the\ installed\ plugins\ right\ away=Mo\u017Cesz ju\u017C zacz\u0105\u0107 korzysta\u0107 z zainstalowanych wtyczek diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_sr.properties index fc0d020534f965dac25486b71963a3851d364877..d91543fb320bcda8fc85b439a1586b240c57995e 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Go\ back\ to\ the\ top\ page=Povratak na vrh strane -warning=Restartujte Jenkins kada se zavr\u0161i instalacija i nema job-ova koji su u toku -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=Mo\u017Eete po\u010Deti da koristite instalirani dodatak odmah +Go\ back\ to\ the\ top\ page=\u041F\u043E\u0432\u0440\u0430\u0442\u0430\u043A +warning=\u041F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0438\u0442\u0435 Jenkins \u043A\u0430\u0434\u0430 \u0431\u0443\u0434\u0435 \u0441\u0435 \u0437\u0430\u0432\u0440\u0448\u0438\u043B\u0430 \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430 \u0438 \u043D\u0435 \u0431\u0443\u0434\u0435 \u0431\u0438\u043B\u043E \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0430 \u0443 \u0442\u043E\u043A\u0443 +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=\u041C\u043E\u0436\u0435\u0442\u0435 \u043E\u0434\u043C\u0430\u0445 \u043F\u043E\u0447\u0435\u0442\u0438 \u0434\u0430 \u043A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u0435 \u043C\u043E\u0434\u0443\u043B\u0435 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_bg.properties index 97c35ef9dcc77121b36c12a8318636df110e652c..4d7fc887a0e5e51e64aaf8f04383b3a53f47ebec 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_bg.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_bg.properties @@ -1,3 +1,26 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -Installing\ Plugins/Upgrades=\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u043F\u043B\u044A\u0433\u0438\u043D\u0438/\u044A\u043F\u0433\u0440\u0435\u0439\u0434\u0438 +Installing\ Plugins/Upgrades=\ + \u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438/\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f +Update\ Center=\ + \u0426\u0435\u043d\u0442\u044a\u0440 \u0437\u0430 \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_de.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_de.properties index 3c5d3fd45f7d5408b8c95958a588882aed7ea357..3fb0ca0e6a9fa87828a87a641e77e4c93451c7b2 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_de.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_de.properties @@ -21,5 +21,4 @@ # THE SOFTWARE. Update\ Center=Aktualisierungen -warning=Neu installierte Plugins werden erst nach einem Neustart von Jenkins aktiv. Installing\ Plugins/Upgrades=Installiere Plugins/Aktualisierungen diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_gu_IN.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_gu_IN.properties deleted file mode 100644 index cce9b34823dd3bbdf6a05d35c7a478c7a490e781..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_gu_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Installing\ Plugins/Upgrades=plugin install ane upgrade diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_pl.properties index 11dfad78d018cbb9af3d44dc0b8dc69612e95a4b..401d01232eefc5c7c4ce0c72d9695396d6a23bbd 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_pl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2004-2016, Sun Microsystems, Inc., Damian Szczepanik # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing\ Plugins/Upgrades=Instalowanie Wtyczek/Aktualizacji +Installing\ Plugins/Upgrades=Instalowanie wtyczek i aktualizacji +Update\ Center=Centrum aktualizacji diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_ru.properties index 5ed90c00783687b65c62bc6070cf828618a8728a..7c6b4e96d5a5e624068420ed655878fee1cb93b0 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_ru.properties @@ -1,23 +1,2 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Installing\ Plugins/Upgrades=\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0430/\u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u0432 +Installing\ Plugins/Upgrades=\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430/\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432 +Update\ Center=\u0426\u0435\u043d\u0442\u0440 \u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0439 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_sr.properties index 22d5060384d5bf285cda51d20dbae81ba993e5c6..8832564b2b9ce2172051b1da7f809384f2c22416 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_sr.properties @@ -1,3 +1,4 @@ # This file is under the MIT License by authors -Installing\ Plugins/Upgrades=Instalacija dodataka/nadogradnja +Update\ Center=\u0426\u0435\u043D\u0442\u0430\u0440 \u0437\u0430 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045A\u0435 +Installing\ Plugins/Upgrades=\u0418\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430 \u043C\u043E\u0434\u0443\u043B\u0435 \u0438 \u043D\u0430\u0434\u0433\u0440\u0430\u0434\u045A\u0435 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel.jelly b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel.jelly index 3880cfa74c642c187160337ea8d423b6b00821b6..5f9d40194f0f594dc9caa0efa9e4e534bc08bab9 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel.jelly +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel.jelly @@ -32,7 +32,7 @@ THE SOFTWARE. - + diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_bg.properties index c7e62818b2d0646ecbd142f2fdfd29234fb5c07d..302e18f26add97c54020b8baa5dda021f5be704a 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_bg.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_bg.properties @@ -1,5 +1,25 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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=\u041E\u0431\u0440\u0430\u0442\u043D\u043E \u043A\u044A\u043C \u041D\u0430\u0447\u0430\u043B\u0435\u043D \u0435\u043A\u0440\u0430\u043D -Manage\ Jenkins=\u0423\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 Jenkins -Manage\ Plugins=\u0423\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043F\u043B\u044A\u0433\u0438\u043D\u0438 +Back\ to\ Dashboard=\u041e\u0431\u0440\u0430\u0442\u043d\u043e \u043a\u044a\u043c \u041d\u0430\u0447\u0430\u043b\u0435\u043d \u0435\u043a\u0440\u0430\u043d +Manage\ Jenkins=\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 Jenkins +Manage\ Plugins=\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u043f\u043b\u044a\u0433\u0438\u043d\u0438 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_gu_IN.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_gu_IN.properties deleted file mode 100644 index 4e3f9dc721388d8e9f4a9ff6d254f1f57480b009..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_gu_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Back\ to\ Dashboard=pacha dashboard par diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pl.properties index 8727a0134675d9b668437628effad41d10ead239..30d61be913f4fdf6b1c7c7b733fd98f35c171f2c 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Wr\u00F3\u0107 na Stron\u0119 G\u0142\u00F3wn\u0105 -Manage\ Jenkins=Zarz\u0105dzanie Jenkins +Back\ to\ Dashboard=Powr\u00F3t do tablicy +Manage\ Jenkins=Zarz\u0105dzanie Jenkinsem Manage\ Plugins=Zarz\u0105dzanie wtyczkami diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sr.properties index a82734d03eb7ebf549ace1f4184283b32e7a2e5f..b2340e67976a89d618e357e659e5e89eb3bd01e7 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sr.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Back\ to\ Dashboard=Povratak na po\u010Detnu stranu -Manage\ Jenkins=Upravljanje Jenkins-om -Manage\ Plugins=Upravljanje dodacima +Manage\ Jenkins=\u0423\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 Jenkins-\u043E\u043C +Manage\ Plugins=\u0423\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 \u043C\u043E\u0434\u0443\u043B\u0438\u043C\u0430 +Back\ to\ Dashboard=\u041D\u0430\u0437\u0430\u0434 \u043A\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043D\u0443 \u043F\u0430\u043D\u0435\u043B\u0443 diff --git a/core/src/main/resources/hudson/model/UsageStatistics/footer.jelly b/core/src/main/resources/hudson/model/UsageStatistics/footer.jelly index c1c8abcc9fe28fa9c5b66472ef25eb6d45f7407e..b532b3d746749f00c8cc0aae4bedec456b5ee418 100644 --- a/core/src/main/resources/hudson/model/UsageStatistics/footer.jelly +++ b/core/src/main/resources/hudson/model/UsageStatistics/footer.jelly @@ -34,7 +34,7 @@ THE SOFTWARE. diff --git a/core/src/main/resources/hudson/model/UsageStatistics/global.groovy b/core/src/main/resources/hudson/model/UsageStatistics/global.groovy index 32428c95c32f20df6658f3b675b9b76418247709..34785a89f36ec29e9604098606b977276769af07 100644 --- a/core/src/main/resources/hudson/model/UsageStatistics/global.groovy +++ b/core/src/main/resources/hudson/model/UsageStatistics/global.groovy @@ -2,4 +2,6 @@ package hudson.model.UsageStatistics; def f=namespace(lib.FormTagLib) -f.optionalBlock( field:"usageStatisticsCollected", checked:app.usageStatisticsCollected, title:_("statsBlurb")) +f.section(title: _("Usage Statistics")) { + f.optionalBlock(field: "usageStatisticsCollected", checked: app.usageStatisticsCollected, title: _("statsBlurb")) +} diff --git a/core/src/main/resources/hudson/model/UsageStatistics/global_sr.properties b/core/src/main/resources/hudson/model/UsageStatistics/global_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..0d9545b6dc9acd505a943a5ea510de689a3fc042 --- /dev/null +++ b/core/src/main/resources/hudson/model/UsageStatistics/global_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +statsBlurb=\u041F\u043E\u043C\u043E\u0437\u0438 \u043D\u0430\u043C \u0434\u0430 \u043F\u043E\u0431\u043E\u0459\u0448\u0430\u043C\u043E Jenkins \u0448\u0430\u0459\u0435\u045B\u0438 \u0430\u043D\u043E\u043D\u0438\u043C\u043D\u0435 \u043F\u043E\u0434\u0430\u0442\u043A\u0435 \u043E \u043A\u043E\u0440\u0438\u0448\u045B\u0435\u045A\u0443 \u0438 \u0438\u0437\u0432\u0435\u0448\u0442\u0430\u0458\u0435 \u043E \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0438\u043C\u0430 Jenkins \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0443. \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected.html b/core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected.html index 2ec5cf132aced3823e916cb620b6f4644424b120..37b1e5cc6501c14d9b9cbe2340409f3cc7351bf7 100644 --- a/core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected.html +++ b/core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected.html @@ -1,6 +1,6 @@
    Knowing how Jenkins is used is a tremendous help in guiding the direction of the development, especially - for open-source projects where users are inheritenly hard to track down. When this option is enabled, + for open-source projects where users are inherently hard to track down. When this option is enabled, Jenkins periodically send information about your usage of Jenkins.

    @@ -8,9 +8,9 @@

    • Your Jenkins version -
    • For your master and each slave, OS type, and # of executors +
    • For your master and each agent, OS type, and # of executors
    • Plugins that are installed and their versions -
    • Number jobs per each job type in your Jenkins +
    • Number of jobs per each job type in your Jenkins

    @@ -18,7 +18,4 @@ (except information inherently revealed by HTTP, such as the IP address). Tabulated data of these usage statistics submissions will be shared with the community. -

    - You can read - the discussion of this mechanism in the community, and you are welcome to add your voice here.

    diff --git a/core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected_de.html b/core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected_de.html deleted file mode 100644 index f3229055b6c1a2954a936ca6c438a95868f12e1d..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected_de.html +++ /dev/null @@ -1,24 +0,0 @@ -
    - Zu wissen, wie Jenkins genutzt wird, ist ungemein hilfreich, wenn es um die Richtung der - Weiterentwicklung geht - insbesondere bei OpenSource-Projekten, bei denen die Anwender - nicht genau bekannt sind. Wenn angewählt, sendet Jenkins in Abständen Informationen über - die Nutzung dieser Instanz. -

    - Diese Informationen umfassen ausschließlich: -

      -
    • Ihre Jenkins-Version
    • -
    • Für jeden Master- und Slave-Knoten: Betriebssystem und Anzahl der Build-Prozessoren
    • -
    • Installierte Plugins und deren Version
    • -
    • Anzahl per angelegten Jobs pro Jobtyp
    • -
    - -

    - Diese Informationen enthalten nichts, was Sie identifiziert oder uns erlauben könnte, - mit Ihnen in Kontakt zu treten (außer Daten, die inhärent bei HTTP übermittelt werden, - wie beispielsweise IP-Adressen). Diese Daten werden in zusammengefasster Form als - Nutzungsstatistiken der Jenkins-Community zur Verfügung gestellt. - -

    - Lesen Sie die - Diskussion dieser Funktion in der Jenkins-Community - und steuern Sie gerne Ihre Meinung dazu bei! -

    diff --git a/core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected_fr.html b/core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected_fr.html index 2fdf5eea3ba6c503f159d862d692f3cccb519fae..8d4df6df9de874f58bd40ced028d0d3351ab502c 100644 --- a/core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected_fr.html +++ b/core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected_fr.html @@ -15,9 +15,9 @@

    - Cette information ne contient rien qui vous identifie ou qui nous permet de vous contacter + Cette information ne contient rien qui vous identifie ou qui nous permette de vous contacter (hors certaines informations intrinsèques à HTTP, comme votre adresse IP). - Les données compilées de ces statistiques d'utilisation selon partagées avec la communauté. + Les données compilées de ces statistiques d'utilisation seront partagées avec la communauté.

    N'hésitez pas à lire diff --git a/core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected_pt_BR.html b/core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected_pt_BR.html new file mode 100644 index 0000000000000000000000000000000000000000..bde77e44f1cb38d581a251799ede138f18b80d04 --- /dev/null +++ b/core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected_pt_BR.html @@ -0,0 +1,20 @@ +

    diff --git a/core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected_zh_TW.html b/core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected_zh_TW.html deleted file mode 100644 index 65e59953f2a5687055b1de09902fd1a8d40f5d79..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected_zh_TW.html +++ /dev/null @@ -1,22 +0,0 @@ - diff --git a/core/src/main/resources/hudson/model/User/builds_bg.properties b/core/src/main/resources/hudson/model/User/builds_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..c1eb64e7be7b75e8e5eb9906ea756fb5a6ad7851 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/builds_bg.properties @@ -0,0 +1,25 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +# Builds for {0} +title=\ + \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f \u0437\u0430 \u201e{0}\u201c diff --git a/core/src/main/resources/hudson/model/User/builds_pl.properties b/core/src/main/resources/hudson/model/User/builds_pl.properties index 44e113ee04495aba98b04724d057bbb6c4245d23..e95f03aedb77cc185bb8a7b176c05f33fa26426d 100644 --- a/core/src/main/resources/hudson/model/User/builds_pl.properties +++ b/core/src/main/resources/hudson/model/User/builds_pl.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -title=Budowy {0} +title=Zadania u\u017Cytkownika {0} diff --git a/core/src/main/resources/hudson/model/User/builds_sr.properties b/core/src/main/resources/hudson/model/User/builds_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..debfdbad945d6a20fb4c198f6ee0c8d595483014 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/builds_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title=\u0418\u0437\u0433\u0440\u0430\u0434\u045A\u0435 \u0437\u0430 {0} diff --git a/core/src/main/resources/hudson/model/User/configure_bg.properties b/core/src/main/resources/hudson/model/User/configure_bg.properties index 5594063fb90146922ed09a7232b4bcb93ac982ba..5770347ec5ce141219382ebb7fd43c0ceb58609a 100644 --- a/core/src/main/resources/hudson/model/User/configure_bg.properties +++ b/core/src/main/resources/hudson/model/User/configure_bg.properties @@ -1,4 +1,31 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. -Description=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 -Full\ name=\u041f\u044a\u043b\u043d\u043e \u0438\u043c\u0435 +Description=\ + \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 +Full\ name=\ + \u041f\u044a\u043b\u043d\u043e \u0438\u043c\u0435 +# User \u2018{0}\u2019 Configuration +title=\ + \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0437\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u201e{0}\u201c +Save=\ + \u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 diff --git a/core/src/main/resources/hudson/model/User/configure_de.properties b/core/src/main/resources/hudson/model/User/configure_de.properties index 3c29021ee0fc054edc0b4962b538f3334235e449..d54581b18d810c3e00601aedffd9ac1f50bdefe6 100644 --- a/core/src/main/resources/hudson/model/User/configure_de.properties +++ b/core/src/main/resources/hudson/model/User/configure_de.properties @@ -23,4 +23,4 @@ Full\ name=Ihr Name Description=Beschreibung Save=Speichern -title=Benutzer ''{0}'' Konfiguration +title=Benutzer \u201E{0}\u201C konfigurieren diff --git a/core/src/main/resources/hudson/model/User/configure_id.properties b/core/src/main/resources/hudson/model/User/configure_id.properties deleted file mode 100644 index e48261436a1069864380da751d42eb4b938ed231..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/User/configure_id.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Description=Penjelasan -Full\ name=Nama saya diff --git a/core/src/main/resources/hudson/model/User/configure_pl.properties b/core/src/main/resources/hudson/model/User/configure_pl.properties index 9f7991a2af4424bcc48327005d6bb70a42b4f5cc..ee7056f22e608cd62a6a1997e681114cbbc94f7f 100644 --- a/core/src/main/resources/hudson/model/User/configure_pl.properties +++ b/core/src/main/resources/hudson/model/User/configure_pl.properties @@ -1,4 +1,27 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Copyright (c) 2004-2016, Sun Microsystems, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. Description=Opis Full\ name=Twoje imi\u0119 i nazwisko +# User \u2018{0}\u2019 Configuration +title=Konfiguracja u\u017Cytkownika \u2018{0}\u2019 +Save=Zapisz diff --git a/core/src/main/resources/hudson/model/User/configure_sr.properties b/core/src/main/resources/hudson/model/User/configure_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..c7fb0bbcca5c093fa9fd7d05b1396c95944af712 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/configure_sr.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +title=\u041F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430 \u2018{0}\u2019 +Full\ name=\u0418\u043C\u0435 \u0438 \u043F\u0440\u0435\u0437\u0438\u043C\u0435 +Description=\u041E\u043F\u0438\u0441 +Save=\u0421\u0430\u0447\u0443\u0432\u0430\u0458 diff --git a/core/src/main/resources/hudson/model/User/delete_bg.properties b/core/src/main/resources/hudson/model/User/delete_bg.properties index 7597cd31c248b62b41255c9f4a8a9a4bb87edde4..f369356c7d8da5724601996f73e5b1b1994eb764 100644 --- a/core/src/main/resources/hudson/model/User/delete_bg.properties +++ b/core/src/main/resources/hudson/model/User/delete_bg.properties @@ -1,4 +1,26 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. -Are\ you\ sure\ about\ deleting\ the\ user\ from\ Jenkins?=\u0421\u0438\u0433\u0443\u0440\u0435\u043D \u043B\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0436\u0435\u043B\u0430\u0435\u0442\u0435 \u0434\u0430 \u0438\u0437\u0442\u0440\u0438\u0435\u0442\u0435 \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B\u044F \u043E\u0442 Jenkins? -Yes=\u0414\u0430 +Are\ you\ sure\ about\ deleting\ the\ user\ from\ Jenkins?=\ + \u0421\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u0438\u0437\u0442\u0440\u0438\u0435\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u043e\u0442 Jenkins? +Yes=\ + \u0414\u0430 diff --git a/core/src/main/resources/hudson/model/User/delete_de.properties b/core/src/main/resources/hudson/model/User/delete_de.properties index 65cf14106f0edf288696977f5af77edbbd95a34f..2adbdfd815addde8d4bd1588f851444ce904722d 100644 --- a/core/src/main/resources/hudson/model/User/delete_de.properties +++ b/core/src/main/resources/hudson/model/User/delete_de.properties @@ -1,25 +1,25 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Are\ you\ sure\ about\ deleting\ the\ user\ from\ Jenkins?=\ - Mchten Sie den Benutzer wirklich lschen? -Yes=Ja +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +Are\ you\ sure\ about\ deleting\ the\ user\ from\ Jenkins?=\ + Mchten Sie den Benutzer wirklich lschen? +Yes=Ja diff --git a/core/src/main/resources/hudson/model/User/delete_sr.properties b/core/src/main/resources/hudson/model/User/delete_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..24274a814edff5c8bf7732080b36b02f6670fa5a --- /dev/null +++ b/core/src/main/resources/hudson/model/User/delete_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Are\ you\ sure\ about\ deleting\ the\ user\ from\ Jenkins?=\u0414\u0430 \u043B\u0438 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u0443\u043A\u043B\u043E\u043D\u0438\u0442\u0435 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430 \u0441\u0430 Jenkins? +Yes=\u0414\u0430 diff --git a/core/src/main/resources/hudson/model/User/index_bg.properties b/core/src/main/resources/hudson/model/User/index_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..a8cee7815f657a7c9faa5f8915c8435c3cd31b28 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_bg.properties @@ -0,0 +1,26 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Jenkins\ User\ Id=\ + \u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u043d\u0430 Jenkins +Groups=\ + \u0413\u0440\u0443\u043f\u0438 diff --git a/core/src/main/resources/hudson/model/User/index_de.properties b/core/src/main/resources/hudson/model/User/index_de.properties index 8aff141a24af4377c40d27fb0e26285a840dd44d..67c1067bf8bf5da2d5f491fefb905df70f427ade 100644 --- a/core/src/main/resources/hudson/model/User/index_de.properties +++ b/core/src/main/resources/hudson/model/User/index_de.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Jenkins\ User\ Id=Jenkins Benutzer Id +Groups=Gruppen diff --git a/core/src/main/resources/hudson/model/User/index_es.properties b/core/src/main/resources/hudson/model/User/index_es.properties index 1e459022c5cc21ac54f0f1dba8ad826bef734f1d..e11bdca7c5ae418640cfc22dca356a0d9241d763 100644 --- a/core/src/main/resources/hudson/model/User/index_es.properties +++ b/core/src/main/resources/hudson/model/User/index_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ User\ Id=Id de Usuario Jerkins +Jenkins\ User\ Id=Id de Usuario Jenkins diff --git a/core/src/main/resources/hudson/model/User/index_eu.properties b/core/src/main/resources/hudson/model/User/index_eu.properties deleted file mode 100644 index 7c11f01227160f696a87159f78e5a3237ef2e2df..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/User/index_eu.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Jenkins\ User\ Id=Jenkins erabiltzaile Id diff --git a/core/src/main/resources/hudson/model/User/index_pl.properties b/core/src/main/resources/hudson/model/User/index_pl.properties index f9e21a20ece65fe879d87eb0b66e39c85700c269..b349e3a89f1eaf6addbf26a3983dd84d0da8e89d 100644 --- a/core/src/main/resources/hudson/model/User/index_pl.properties +++ b/core/src/main/resources/hudson/model/User/index_pl.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Jenkins\ User\ Id=Id u\u017Cytkownika +Jenkins\ User\ Id=Identyfikator u\u017Cytkownika diff --git a/core/src/main/resources/hudson/model/User/index_sr.properties b/core/src/main/resources/hudson/model/User/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..02d60641847924e326e2fe3c293e13520424ab09 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Groups=\u0413\u0440\u0443\u043F\u0435 +Jenkins\ User\ Id=Jenkins \u0438\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u043E\u043D\u0438 \u0431\u0440\u043E\u0458 diff --git a/core/src/main/resources/hudson/model/User/sidepanel.jelly b/core/src/main/resources/hudson/model/User/sidepanel.jelly index 126bdae5d808700d621d0fa9abe0a2380234d028..46bad7a60514cd98df83a1a54a14f5233684f980 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel.jelly +++ b/core/src/main/resources/hudson/model/User/sidepanel.jelly @@ -34,7 +34,7 @@ THE SOFTWARE. - + diff --git a/core/src/main/resources/hudson/model/User/sidepanel_bg.properties b/core/src/main/resources/hudson/model/User/sidepanel_bg.properties index 5e7993309cf51c27efb0463281f40eb25c8a43d0..9389f80f6935bd2b8346c26a576efffce232a334 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_bg.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_bg.properties @@ -1,7 +1,32 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -Builds=\u0411\u0438\u043B\u0434\u043E\u0432\u0435 -Configure=\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 -Delete=\u0418\u0437\u0442\u0440\u0438\u0439 -People=\u0425\u043E\u0440\u0430 -Status=\u0421\u0442\u0430\u0442\u0443\u0441 +Builds=\ + \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f +Configure=\ + \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 +Delete=\ + \u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 +People=\ + \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 +Status=\ + \u0421\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435 diff --git a/core/src/main/resources/hudson/model/User/sidepanel_de.properties b/core/src/main/resources/hudson/model/User/sidepanel_de.properties index 84d32271197be738699d3d665cc34c0be7906519..d25936351c1853ca917084d94d6c1a3db277990e 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_de.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_de.properties @@ -24,5 +24,4 @@ People=Benutzer Status=Status Builds=Builds Configure=Einstellungen -My\ Views=Meine Ansichten Delete=Lschen diff --git a/core/src/main/resources/hudson/model/User/sidepanel_eu.properties b/core/src/main/resources/hudson/model/User/sidepanel_eu.properties deleted file mode 100644 index 2f485ef3a4de9229f9b534013e93544807183798..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/User/sidepanel_eu.properties +++ /dev/null @@ -1,7 +0,0 @@ -# This file is under the MIT License by authors - -Builds=Kompilazioak -Configure=Itxuratu -My\ Views=Nire Begiak -People=Jendea -Status=Estatus diff --git a/core/src/main/resources/hudson/model/User/sidepanel_id.properties b/core/src/main/resources/hudson/model/User/sidepanel_id.properties deleted file mode 100644 index 573b91d594db93373b14222fbfefa22602770fb6..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/User/sidepanel_id.properties +++ /dev/null @@ -1,7 +0,0 @@ -# This file is under the MIT License by authors - -Builds=Pembuatan -Configure=Pengaturan -My\ Views=Tampilan Saya -People=Orang -Status=Kondisi diff --git a/core/src/main/resources/hudson/model/User/sidepanel_pl.properties b/core/src/main/resources/hudson/model/User/sidepanel_pl.properties index 5292105692451a354897350a6d324bc564a1ca81..aaf743f998aaeb2d61ae2568398d2c6e1bb2aa15 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_pl.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_pl.properties @@ -1,7 +1,27 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Copyright (c) 2004-2016, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -Builds=Build''''y +Builds=Zadania Configure=Konfiguracja Delete=Usu\u0144 -My\ Views=Moje widoki People=U\u017Cytkownicy +Status=Status diff --git a/core/src/main/resources/hudson/model/User/sidepanel_sr.properties b/core/src/main/resources/hudson/model/User/sidepanel_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..c7bf9e97cb812eaf9ac4d2f65a3e655291a85d36 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/sidepanel_sr.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +People=\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438 +Status=\u0421\u0442\u0430\u045A\u0435 +Builds=\u0418\u0437\u0433\u0440\u0430\u0434\u045Ae +Configure=\u041F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 +Delete=\u0423\u043A\u043B\u043E\u043D\u0438 +My\ Views=\u041C\u043E\u0458\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0438 diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_bg.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_bg.properties index de84134b005541dc9ebfef502d32c23faffa3081..8f97078287e8d2c01bb6865e7d504cbfc31f76bd 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_bg.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_bg.properties @@ -1,6 +1,37 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -Last\ Active=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u043E \u0430\u043A\u0442\u0438\u0432\u0435\u043D -Name=\u0418\u043C\u0435 -On=\u041D\u0430 -People=\u0425\u043E\u0440\u0430 +Name=\ + \u0418\u043c\u0435 +On=\ + \u041d\u0430 +People=\ + \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 +All\ People=\ + \u0412\u0441\u0438\u0447\u043a\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 +User\ Id=\ + \u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b +blurb=\ + \u0412\u043a\u043b\u044e\u0447\u0432\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u043f\u043e\u0437\u043d\u0430\u0442\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438, \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u0442\u0435\u0437\u0438, \u043a\u043e\u0438\u0442\u043e \u0442\u0435\u043a\u0443\u0449\u0430\u0442\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\ + \u043c\u043e\u0436\u0435 \u0434\u0430 \u0438\u0437\u0431\u0440\u043e\u0438, \u043a\u0430\u043a\u0442\u043e \u0438 \u0432\u0441\u0438\u0447\u043a\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 \u0443\u043a\u0430\u0437\u0430\u043d\u0438 \u0432 \u0441\u044a\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u0442\u0430 \u043f\u0440\u0438 \u043f\u043e\u0434\u0430\u0432\u0430\u043d\u0435. +Last\ Commit\ Activity=\ + \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u043f\u043e\u0434\u0430\u0432\u0430\u043d\u0438\u044f diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_de.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_de.properties index eba0e989875918c2e14920ebccb73d41e533295d..2dc1e3c71622ca9caf14be631f1d524133b17db2 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_de.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_de.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. Name=Name -Last\ Active=Letzte Aktivitt On=Job All\ People=Alle Benutzer People=Benutzer User\ Id=Jenkins Benutzer Id blurb=Beinhaltet alle bekannten Benutzer, einschlie\u00DFlich der Login-Benutzer des aktuellen Sicherheitsbereichs, sowie Namen, die in Commit-Kommentaren von Changelogs erw\u00E4hnt werden. +Last\ Commit\ Activity=Letzte SCM-Aktivit\u00E4t diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_kn.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_kn.properties deleted file mode 100644 index 7723da1d6c381dbd0c9702a10738421395545d76..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_kn.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -People=\u0C9C\u0CA8\u0CB0\u0CC1 diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_pl.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_pl.properties index 9748cfd3ffdc0336c6ddd7db22f6d7f45f9d3358..253a5acf3e58e86ae50792a8f2668f4df1259d5b 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_pl.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2004-2016, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributors # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,8 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Active=Ostatnio aktywny Name=Nazwa On=Na -People=Ludzie +People=U\u017Cytkownicy User\ Id=Identyfikator u\u017Cytkownika +Last\ Commit\ Activity=Ostatnia zmiana +blurb=Prezentuje wszystkich uwierzytelnionych u\u017Cytkownik\u00F3w w\u0142\u0105cznie z identyfikatorem oraz osoby wymienione w opisach zarejestrowanych zmian. + diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_sr.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..a44ab2742a405a3f9ef102fb9e492a1ce97a8671 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_sr.properties @@ -0,0 +1,10 @@ +# This file is under the MIT License by authors + +People=\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438 +blurb=\u0422\u0430\u0431\u0435\u043B\u0430 \u0441\u0432\u0438\u0445 Jenkins \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430, \u0443\u043A\u0459\u0443\u0447\u0443\u0458\u0443\u045B\u0438 \u0441\u0432\u0435 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0435 \u043A\u043E\u0458e \u0441\u0438\u0441\u0442\u0435\u043C \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u0458\u0435 \u043C\u043E\u0436\u0435 \u043D\u0430\u0432\u0435\u0441\u0442\u0438, \u0438 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438 \u043D\u0430\u0432\u0435\u0434\u0435\u043D\u0438 \u0443 \u043A\u043E\u043C\u0438\u0442-\u043F\u043E\u0440\u0443\u043A\u0430\u043C\u0430 \u0435\u0432\u0438\u0434\u0435\u043D\u0442\u0438\u0440\u0430\u043D\u0438 \u0443 \u0434\u043D\u0435\u0432\u043D\u0438\u043A\u0430\u043C\u0430 \u043F\u0440\u043E\u043C\u0435\u043D\u0430. +User\ Id=\u0418\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u043E\u043D\u0438 \u0431\u0440\u043E\u0458 +Name=\u0418\u043C\u0435 +Last\ Commit\ Activity=\u0417\u0430\u0434\u045A\u0435 \u0430\u043A\u0442\u0438\u0432\u0430\u043D +On=\u043D\u0430 +All\ People=\u0421\u0432\u0438 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438 +Last\ Active=\u0417\u0430\u0434\u045A\u0430 \u0430\u043A\u0442\u0438\u0432\u043D\u043E\u0441\u0442 diff --git a/core/src/main/resources/hudson/model/View/People/index_bg.properties b/core/src/main/resources/hudson/model/View/People/index_bg.properties index 630c28cfcdb84d27ce6bc1a025929a20cc8d34a8..92e26b0d18582b08dc165857b285a10b2a11d90f 100644 --- a/core/src/main/resources/hudson/model/View/People/index_bg.properties +++ b/core/src/main/resources/hudson/model/View/People/index_bg.properties @@ -1,3 +1,28 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -People=\u0425\u043E\u0440\u0430 +People=\ + \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 +# Moved to asynchPeople for performance reasons. +Moved\ to\ asyncPeople=\ + \u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0435\u043d\u043e \u0432 \u0410\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u043d\u0438 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 \u0432\u044a\u0440\u0445\u0443\ + \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438\u0442\u0435 \u0437\u0430 \u043f\u043e-\u0434\u043e\u0431\u0440\u0430 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u043d\u043e\u0441\u0442. diff --git a/core/src/main/resources/hudson/model/View/People/index_sr.properties b/core/src/main/resources/hudson/model/View/People/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..b2ba8ffa19ffe354c0d0d1bb541a9b2382df8e43 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +People=\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438 +Moved\ to\ asyncPeople=\u041F\u0440\u0435\u043C\u0435\u0448\u045B\u0435\u043D\u043E \u043D\u0430 asyncPeople diff --git a/core/src/main/resources/hudson/model/View/builds_bg.properties b/core/src/main/resources/hudson/model/View/builds_bg.properties index ef45208337a87a52381a56792c0f83a180a8fb7d..905bf14ee08d4bc7a01b007e71d71a4cb209c0b1 100644 --- a/core/src/main/resources/hudson/model/View/builds_bg.properties +++ b/core/src/main/resources/hudson/model/View/builds_bg.properties @@ -1,4 +1,26 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -Export\ as\ plain\ XML=\u0415\u043A\u0441\u043F\u043E\u0440\u0442 \u0432 XML -buildHistory=\u0418\u0441\u0442\u043E\u0440\u0438\u044F \u043E\u0442 \u0431\u0438\u043B\u0434\u043E\u0432\u0435 \u043D\u0430 {0} +Export\ as\ plain\ XML=\ + \u0418\u0437\u043d\u0430\u0441\u044f\u043d\u0435 \u0432 XML +buildHistory=\ + \u0418\u0441\u0442\u043e\u0440\u0438\u044f \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f\u0442\u0430 \u043d\u0430 \u201e{0}\u201c diff --git a/core/src/main/resources/hudson/model/View/builds_hi_IN.properties b/core/src/main/resources/hudson/model/View/builds_hi_IN.properties deleted file mode 100644 index f60018cb3e87efd11ab64ca51c62b26f80c739f7..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/View/builds_hi_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Export\ as\ plain\ XML=\u0938\u093E\u0926\u093E XML \u0915\u0947 \u0930\u0942\u092A \u092E\u0947\u0902 \u0928\u093F\u0930\u094D\u092F\u093E\u0924 diff --git a/core/src/main/resources/hudson/model/View/builds_id.properties b/core/src/main/resources/hudson/model/View/builds_id.properties deleted file mode 100644 index 7b421231a0f59993f29e3601b32c49927345cac0..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/View/builds_id.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Export\ as\ plain\ XML=Ekspor sejelas XML -buildHistory=Riwayat Pembangunan dari {0} diff --git a/core/src/main/resources/hudson/model/View/builds_ka.properties b/core/src/main/resources/hudson/model/View/builds_ka.properties deleted file mode 100644 index 584a2662a0678212df5a9dc30290c4bd47ee613b..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/model/View/builds_ka.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Export\ as\ plain\ XML=\u10D4\u10E5\u10E1\u10DE\u10DD\u10E0\u10E2\u10D8 \u10DB\u10D0\u10E0\u10E2\u10D8\u10D5 XML-\u10E8\u10D8 diff --git a/core/src/main/resources/hudson/model/View/builds_lt.properties b/core/src/main/resources/hudson/model/View/builds_lt.properties index 3ad781ecaf0fc93875c1ffa6bead70c1cd238f15..503881cfcfd72ffd00c1c8407093b9ef65d23c23 100644 --- a/core/src/main/resources/hudson/model/View/builds_lt.properties +++ b/core/src/main/resources/hudson/model/View/builds_lt.properties @@ -1,4 +1,2 @@ # This file is under the MIT License by authors - -Export\ as\ plain\ XML=Eksportuoti kaip XML buildHistory={0} surinkimo istorija diff --git a/core/src/main/resources/hudson/model/View/builds_pl.properties b/core/src/main/resources/hudson/model/View/builds_pl.properties index 95053f77ef54d3d495d5bae7f3072b1bd126d1ad..1ab9fce1207c9257347aaad86418ff90533b8d3c 100644 --- a/core/src/main/resources/hudson/model/View/builds_pl.properties +++ b/core/src/main/resources/hudson/model/View/builds_pl.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Export\ as\ plain\ XML=Eksportuj jako XML -buildHistory=Historia zada\u0144 projektu {0} +buildHistory=Historia zada\u0144 dla widoku {0} diff --git a/core/src/main/resources/hudson/model/View/builds_sr.properties b/core/src/main/resources/hudson/model/View/builds_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..e8da756a6969d908fdd6681bc6e8aae222eb4437 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/builds_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +buildHistory=\u0418\u0441\u0442\u043E\u0440\u0438\u0458\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 {0} +Export\ as\ plain\ XML=\u0418\u0437\u0432\u0435\u0437\u0438 \u0443 \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u043D\u043E\u043C XML \u0444\u043E\u0440\u043C\u0430\u0442\u0443 diff --git a/core/src/main/resources/hudson/model/View/configure.jelly b/core/src/main/resources/hudson/model/View/configure.jelly index b0c41a8387ec9370e8cbe345009491135d9774af..ac3f9f91c5b4a2ee0a1cbcc5ee5dfd50da9effeb 100644 --- a/core/src/main/resources/hudson/model/View/configure.jelly +++ b/core/src/main/resources/hudson/model/View/configure.jelly @@ -1,7 +1,7 @@ diff --git a/core/src/main/resources/hudson/model/View/index_lt.properties b/core/src/main/resources/hudson/model/View/index_lt.properties new file mode 100644 index 0000000000000000000000000000000000000000..c035444137fb427d3755b6fa84e489f58464c4a2 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/index_lt.properties @@ -0,0 +1 @@ +Dashboard=Skydelis diff --git a/core/src/main/resources/hudson/model/View/index_pl.properties b/core/src/main/resources/hudson/model/View/index_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..affec34f25a827e16097aa14be8908018ce22b70 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/index_pl.properties @@ -0,0 +1,22 @@ +# The MIT License +# +# Copyright (c) 2004-2016, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. +Dashboard=Tablica diff --git a/core/src/main/resources/hudson/model/View/index_sr.properties b/core/src/main/resources/hudson/model/View/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..b5b7c47fc69cb624c90290f3bedf74431eded241 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/index_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Dashboard=\u041A\u043E\u043D\u0442\u0440\u043E\u043B\u043D\u0438 \u043F\u0430\u043D\u0435\u043B diff --git a/core/src/main/resources/hudson/model/View/main.groovy b/core/src/main/resources/hudson/model/View/main.groovy index 449e992fd18f75cb167c458fdba3f75f1005ce4f..52a25f3a60284b822e8b8774ec7f20e017a929da 100644 --- a/core/src/main/resources/hudson/model/View/main.groovy +++ b/core/src/main/resources/hudson/model/View/main.groovy @@ -3,7 +3,9 @@ package hudson.model.View; t=namespace(lib.JenkinsTagLib) st=namespace("jelly:stapler") -if (items.isEmpty()) { +if (items == null) { + p(_('broken')) +} else if (items.isEmpty()) { if (app.items.size() != 0) { set("views",my.owner.views); set("currentView",my); diff --git a/core/src/main/resources/hudson/model/View/main.properties b/core/src/main/resources/hudson/model/View/main.properties new file mode 100644 index 0000000000000000000000000000000000000000..c974575281b6d53030b69c19cd8b1ea4a6930e0d --- /dev/null +++ b/core/src/main/resources/hudson/model/View/main.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright 2017 CloudBees, Inc. +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +broken=An error occurred when retrieving jobs for this view. Please consult the Jenkins logs for details. diff --git a/core/src/main/resources/hudson/model/View/newJob.jelly b/core/src/main/resources/hudson/model/View/newJob.jelly index ba6ae05161056b184b9373389040fc7c251e73a1..ffd1f4e44e7e6669ec3fdbc07e52d9211201c504 100644 --- a/core/src/main/resources/hudson/model/View/newJob.jelly +++ b/core/src/main/resources/hudson/model/View/newJob.jelly @@ -22,20 +22,57 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --> - - - + + + + + + - - - - + \ No newline at end of file diff --git a/core/src/main/resources/hudson/security/AuthorizationStrategy/Unsecured/help_zh_CN.html b/core/src/main/resources/hudson/security/AuthorizationStrategy/Unsecured/help_zh_CN.html index 764b333cb1e2da7d92e6320003b5a15028f89222..c505cde8bd54adc4ef652af3647d776dfdafc22e 100644 --- a/core/src/main/resources/hudson/security/AuthorizationStrategy/Unsecured/help_zh_CN.html +++ b/core/src/main/resources/hudson/security/AuthorizationStrategy/Unsecured/help_zh_CN.html @@ -1,7 +1,7 @@ -
    - 不执行任何授权,任何人都能完全控制Jenkins,这包括没有登录的匿名用户. - -

    - 这种情况对于可信任的环境(比如公司内网)非常有用,或者你只是使用授权做一些个性化的支持.这样的话,如果某人想快速的更改Jenkins,他就能够避免被强制登录. - +

    + 不执行任何授权,任何人都能完全控制Jenkins,这包括没有登录的匿名用户. + +

    + 这种情况对于可信任的环境(比如公司内网)非常有用,或者你只是使用授权做一些个性化的支持.这样的话,如果某人想快速的更改Jenkins,他就能够避免被强制登录. +

    \ No newline at end of file diff --git a/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_de.properties b/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_de.properties new file mode 100644 index 0000000000000000000000000000000000000000..4079b7c7ea4d594ed82614fb394ef9f453e27f2b --- /dev/null +++ b/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_de.properties @@ -0,0 +1,25 @@ +# The MIT License +# +# Copyright (c) 2017 Daniel Beck and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +blurb={0} \u201E{1}\u201C ist nicht mit einem Benutzerkonto in Jenkins verbunden. Wenn Sie bereits ein Benutzerkonto haben und versuchen {0} mit Ihrem Account zu verbinden: \ + Dies m\u00FCssen Sie in der Konfiguration Ihres Benutzerprofils vornehmen. +loginError=Login-Fehler: {0} ist nicht zugeordnet. diff --git a/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_sr.properties b/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..53c32244ac8f179c7dcf69dc96b79cdf1cacfe78 --- /dev/null +++ b/core/src/main/resources/hudson/security/FederatedLoginService/UnclaimedIdentityException/error_sr.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +loginError=\u0413\u0440\u0435\u0448\u043A\u0430 \u043F\u0440\u0438\u0458\u0430\u0432\u0435: {0} \u043D\u0435\u043C\u0430 \u0430\u0441\u043E\u0446\u0438\u0458\u0430\u0446\u0438\u0458\u0435 +blurb={0} "{1}" \u043D\u0438\u0458\u0435 \u043F\u043E\u0432\u0435\u0437\u0430\u043D\u043E \u0441\u0430 \u0431\u0438\u043B\u043E \u043A\u043E\u0458\u0438\u043C Jenkins \u043D\u0430\u043B\u043E\u0433\u043E\u043C. \ + \u0410\u043A\u043E \u0432\u0435\u045B \u0438\u043C\u0430\u0433\u0435 \u043D\u0430\u043B\u043E\u0433 \u0438 \u043F\u043E\u043A\u0443\u0448\u0430\u0432\u0430\u0442\u0435 \u0434\u0430 \u043F\u043E\u0432\u0435\u0436\u0435\u0442\u0435 {0} \u0441 \u045A\u0438\u043C, \ + \u043E\u0432\u043E \u043D\u0438\u0458\u0435 \u043F\u0440\u0430\u0432\u043E \u043C\u0435\u0441\u0442\u043E \u0437\u0430 \u0442\u043E. \u0420\u0430\u0434\u0438\u0458\u0435
    1. Login
    2. \u041A\u043B\u0438\u043A\u043D\u0438\u0442\u0435 \u043D\u0430 \u0432\u0430\u0448\u0435 \u0438\u043C\u0435
    3. \u041A\u043B\u0438\u043A\u043D\u0438\u0442\u0435 \u043D\u0430 "\u0423\u0440\u0435\u0434\u0438" \u043B\u0438\u043D\u043A, \u0438 \ +
    4. \u043F\u043E\u0432\u0435\u0436\u0438\u0442\u0435 \u043D\u043E\u0432\u0438 {0} \u0441\u0430 \u0442\u0435 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0435
    + diff --git a/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config.jelly b/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config.jelly new file mode 100644 index 0000000000000000000000000000000000000000..0e627effbc99edb9527bbd7dca0bce593721564d --- /dev/null +++ b/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config.jelly @@ -0,0 +1,7 @@ + + + + + + diff --git a/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_de.properties b/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_de.properties new file mode 100644 index 0000000000000000000000000000000000000000..875167ee3769e6c50bc575481380c1e9afb0d4ba --- /dev/null +++ b/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_de.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2017 Daniel Beck and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +Allow\ anonymous\ read\ access=Anonymen Nutzern Lesezugriff gew\u00E4hren diff --git a/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_sr.properties b/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..4037369d9798f35bb149e6eea535f6b83118a636 --- /dev/null +++ b/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/config_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Allow\ anonymous\ read\ access=\u0414\u043E\u0437\u0432\u043E\u043B\u0438 \u043F\u0440\u0438\u0441\u0442\u0443\u043F \u0430\u043D\u043E\u043D\u0438\u043C\u043D\u0438\u043C \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438\u043C\u0430 diff --git a/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/help-allowAnonymousRead.html b/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/help-allowAnonymousRead.html new file mode 100644 index 0000000000000000000000000000000000000000..0f357d28e154a9b5a7cbf8fb0c88a67e650bdf3a --- /dev/null +++ b/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/help-allowAnonymousRead.html @@ -0,0 +1,3 @@ +
    + If checked, this will allow users who are not authenticated to access Jenkins in a read-only mode. +
    diff --git a/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/help_zh_CN.html b/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/help_zh_CN.html index 454c73eb129bbd4cf775d3850c8b2638eab98d46..5be288ecc6122b4b8417e115d55db47531b9e3f3 100644 --- a/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/help_zh_CN.html +++ b/core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/help_zh_CN.html @@ -1,6 +1,6 @@ -
    - 这种授权模式下,每个登录用户都持有对Jenkins的全部控制权限.只有匿名用户没有全部控制权,匿名用户只有查看权限. - -

    - 这种授权模式的好处是强制用户登录后才能执行操作,这样你可以随时记录谁都做了什么操作.这种设置也适用于公共使用的Jenkins,只有你信任的人才拥有账户. +

    + 这种授权模式下,每个登录用户都持有对Jenkins的全部控制权限.只有匿名用户没有全部控制权,匿名用户只有查看权限. + +

    + 这种授权模式的好处是强制用户登录后才能执行操作,这样你可以随时记录谁都做了什么操作.这种设置也适用于公共使用的Jenkins,只有你信任的人才拥有账户.

    \ No newline at end of file diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_de.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_de.properties index e1466f58b8581c5f2079a17ecb6309ddb4c54e7d..fb043b66c9477cbbdd83981935d885085f691426 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_de.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_de.properties @@ -29,4 +29,4 @@ statsBlurb=\ an das Jenkins-Projekt senden. Global\ properties=Globale Eigenschaften Views\ Tab\ Bar=Tab Bar fr Ansichten -My\ Views\ Tab\ Bar=Tab Bar fr "Meine Ansichten" +My\ Views\ Tab\ Bar=Tab Bar fr \u201EMeine Ansichten\u201C diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_sr.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..5d8616dadac63e0781789bf7418a10706436fdd4 --- /dev/null +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/config_sr.properties @@ -0,0 +1,23 @@ +# This file is under the MIT License by authors + +Default\ view=\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u043D\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 +Home\ directory=\u0413\u043B\u0430\u0432\u043D\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C +System\ Message=\u0414\u043E\u0431\u0440\u043E\u0434\u043E\u0448\u043B\u0438 +LOADING=\u0423\u0427\u0418\u0422\u0410\u0412\u0410\u040A\u0415 +statsBlurb=\u041F\u043E\u0448\u0430\u0459\u0438 \u0430\u043D\u043E\u043D\u0438\u043C\u043D\u0435 \u043F\u043E\u0434\u0430\u0442\u043A\u0435 \u043E \u043A\u043E\u0440\u0438\u0448\u045B\u0435\u045A\u0443 \u0438 \u0438\u0437\u0432\u0435\u0448\u0442\u0430\u0458\u0438 \u043E \u0433\u0440\u0435\u0448\u043A\u0430\u043C\u0430 Jenkins-\u0430. +Global\ properties=\u0413\u043B\u043E\u0431\u0430\u043B\u043D\u0435 \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0435 +Views\ Tab\ Bar=\u041F\u0440\u0435\u0433\u043B\u0435\u0434\u0438 +My\ Views\ Tab\ Bar=\u041C\u043E\u0458\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0438 +name=\u0438\u043C\u0435 +JDKs=JDK-\u043E\u0432\u0438 +JDK\ installations=JDK \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0435 +List\ of\ JDK\ installations\ on\ this\ system=\u0421\u043F\u0438\u0441\u0430\u043A JDK \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0435 \u043D\u0430 \u043E\u0432\u043E\u043C \u0441\u0438\u0441\u0442\u0435\u043C\u0443 +no.such.JDK=\u041D\u0435 \u043F\u043E\u0441\u0442\u043E\u0458\u0438 \u0442\u0430\u043A\u0430\u0432 JDK +Configure\ System=\u041F\u043E\u0441\u0442\u0430\u0432\u0438 \u0441\u0438\u0441\u0442\u0435\u043C +Master/Slave\ Support=\u041F\u043E\u0434\u0440\u0448\u043A\u0435 \u0433\u043B\u0430\u0432\u043D\u0438\u043C \u0438 \u043F\u043E\u043C\u043E\u045B\u043D\u0438\u043C \u043C\u0430\u0448\u0438\u043D\u0430\u043C\u0430 +Slaves=\u041F\u043E\u043C\u043E\u045B\u043D\u0438 +slaves.description=\u0421\u043F\u0438\u0441\u0430\u043A \u043F\u043E\u043C\u043E\u045B\u043D\u0438\u0445 \u043C\u0430\u0448\u0438\u043D\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u043E\u0432\u0430\u043D\u0438 \u043D\u0430 \u0433\u043B\u0430\u0432\u043D\u043E\u0458 Jenkins \u043C\u0430\u0448\u0438\u043D\u0438. \u0417\u0430\u0434\u0430\u0446\u0438 \u043C\u043E\u0433\u0443 \u0431\u0438\u0442\u0438 \u043F\u043E\u0434\u0435\u0448\u0435\u043D\u0438 \u0434\u0430 \u0431\u0443\u0434\u0443 \u0438\u0437\u0432\u0440\u0448\u0435\u043D\u0438 \u043D\u0430 \u043F\u043E\u043C\u043E\u045B\u043D\u0438\u043C \u043C\u0430\u0448\u0438\u043D\u0430\u043C\u0430. +launch\ command=\u041A\u043E\u043C\u0430\u043D\u0434\u0430 \u0437\u0430 \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0435 +description=\u041E\u043F\u0438\u0441 +usage=\u0423\u043F\u043E\u0442\u0440\u0435\u0431\u0430 +remote\ FS\ root=\u041A\u043E\u0440\u0435\u043D \u0443\u0434\u0430\u0459\u0435\u043D\u043E\u0433 \u0441\u0438\u0441\u0442\u0435\u043C \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \ No newline at end of file diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-agentProtocol.html b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-agentProtocol.html new file mode 100644 index 0000000000000000000000000000000000000000..bf0c73bfb216ae9d043f38db8b768eb294d0fca1 --- /dev/null +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-agentProtocol.html @@ -0,0 +1,4 @@ +
    + Jenkins uses a TCP port to communicate with various remote agents. This option allows control + over which agent protocols are enabled. +
    \ No newline at end of file diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort.html b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort.html index 37d845e2c7f8324e8178973305ed2e1d63b00642..8681f55f8f4553c43f8502a5f4b94a6bc3520fdc 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort.html +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort.html @@ -1,7 +1,7 @@
    - Jenkins uses a TCP port to communicate with slave agents launched via JNLP. + Jenkins uses a TCP port to communicate with agents launched via JNLP. Normally this port is chosen randomly to avoid collisions, but this would - make securing the system difficult. If you are not using JNLP slaves, + make securing the system difficult. If you are not using JNLP agents, it's recommend to disable this TCP port. Alternatively, you can specify the fixed port number so that you can configure your firewall accordingly. -
    \ No newline at end of file +
    diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_de.html b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_de.html deleted file mode 100644 index bad870a7789f8fed3934a8af765ef702b5909eba..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_de.html +++ /dev/null @@ -1,8 +0,0 @@ -
    - Jenkins verwendet einen TCP-Port, um mit Slave-Knoten zu kommunizieren, die - über JNLP gestartet wurden. Normalerweise wird dieser Port zufällig - gewählt, um Kollisionen zu vermeiden - dies erschwert jedoch die Absicherung - des Systems. Wenn Sie keine JNLP-Slave-Knoten einsetzen, wird empfohlen, - diesen TCP-Port zu deaktivieren. Alternativ können Sie auch einen statischen Port - festlegen, um Ihre Firewall entsprechend leichter konfigurieren zu können. -
    \ No newline at end of file diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_pt_BR.html b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_pt_BR.html deleted file mode 100644 index 9e11fe0054075d4e05d301f4f4060dad8f2c7b72..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_pt_BR.html +++ /dev/null @@ -1,7 +0,0 @@ -
    - O Jenkins usa uma porta TCP para se comunicar com os agentes slave lançados via JNLP. - Normalmente esta porta é escolhida aleatóriamente para evitar colisões, mas isto - tornaria difícil fazer a segurança do sistema. Se você não estiver usado slaves JNLP, - é recomendado desabilitar esta porta TCP. Alternativamente, você pode especificar - um número de porta específico tal que você possa configurar seu firewall corretamente. -
    diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_tr.html b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_tr.html deleted file mode 100644 index d3de5461df137b8390ed4410486ef29ccde99516..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_tr.html +++ /dev/null @@ -1,9 +0,0 @@ -
    - Jenkins, JNLP aracılığı ile başlatılan slave'ler ile iletişiminde TCP portunu - kullanır. Her ne kadar bu port numarası, herhangi bir çakışmayı önlemek adına - rastgele verilse de, sistem güvenliğinin yönetiminde zorluk çıkaracaktır. Eğer - JNLP slave'i kullanmıyorsanız, bu TCP port numarasını devre dışı bırakınız. - Buna alternatif olarak, bu port numarasını sabit bir numara olarak belirlerseniz, - firewall kurallarını buna göre daha rahat ayarlayabilirsiniz (Port numarası sabit olduğundan, - firewall kurallarını bir defa tanımlamanız yeterli olabilecektir). -
    \ No newline at end of file diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_zh_TW.html b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_zh_TW.html deleted file mode 100644 index 6f7678ed46f8ff674f5d8bdb50e0c658a28a8a65..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_zh_TW.html +++ /dev/null @@ -1,6 +0,0 @@ -
    - Jenkins 使用 TCP 連接埠與透過 JNLP 啟動的 Slave 代理程式溝通。 - 為了避免衝突,連接埠一般是隨機挑選的,但可能造成系統資安的困擾。 - 如果您沒有任何 JNLP Slave,建議關閉這個 TCP 連接埠。 - 或是,您可以指定固定的連接埠數值,方便您調整防火牆設定。 -
    \ No newline at end of file diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity.html b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity.html index f90210098f9b618f086bc6daf2dc3db23002936f..6ededf98ffdec100a8004127f56928f5a08ac57d 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity.html +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity.html @@ -1,20 +1,15 @@
    - If enabled, you have to login with a username and a password that has the "admin" role - before changing the configuration or running a new build (look for the "login" link - at the top right portion of the page). - Configuration of user accounts is specific to the web container you are using. - (For example, in Tomcat, by default, it looks for $TOMCAT_HOME/conf/tomcat-users.xml) -

    - If you are using Jenkins in an intranet (or other "trusted" environment), it's usually - desirable to leave this checkbox off, so that each project developer can configure their own - project without bothering you. + Enabling security allows configuring authentication (how people can identify themselves) and authorization (what + permissions they get). +

    - If you are exposing Jenkins to the internet, you must turn this on. Jenkins launches - processes, so insecure Jenkins is a sure way of being hacked. + A number of options are built in. Please note that granting significant permissions to anonymous users, or allowing + users to sign up and granting permissions to all authenticated users, does not actually increase security. +

    - For more information about security and Jenkins, see - this document. -

    \ No newline at end of file + For more information about security and Jenkins, see + this document. +
    diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_de.html b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_de.html index e8f634147446236050ff6a7fc1f14a283236fb35..80c921f2d13202fc36ea4824322e3e4a8d66cc76 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_de.html +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_de.html @@ -20,5 +20,5 @@

    Weitere Informationen zum Thema "Sicherheit und Jenkins" finden Sie - hier. -

    \ No newline at end of file + hier. +
    diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_fr.html b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_fr.html index 3c10b0ecb22ba658846c3c6abe9d12f32ee28f2b..ab0092207d30ea860dd04f3f1761f5d3748e07ef 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_fr.html +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_fr.html @@ -18,5 +18,5 @@

    Pour plus d'informations sur la sécurité dans Jenkins, voir - ce document. -

    \ No newline at end of file + ce document. +
    diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_ja.html b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_ja.html index 397f50f1f639347ba14044f3ccfaad8495e1e218..2b1d388bf7f50d4c36f5da67f0181311a604bd20 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_ja.html +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_ja.html @@ -12,5 +12,5 @@ 有効でないままJenkinsのプロセスを起動すると、Jenkinsはハックされてしまいます。

    Jenkins のセキュリティの詳細については, - このドキュメントを参照してください。 - \ No newline at end of file + このドキュメントを参照してください。 + diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_pt_BR.html b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_pt_BR.html index f2dbfd9673ae9a7d45a01749d785ffe79d5e7b23..59d6eef5d0584926004d573218cfa0681318763b 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_pt_BR.html +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_pt_BR.html @@ -16,5 +16,5 @@

    Para mais informações sobre segurança e Jenkins, veja - este documento. + este documento. diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_ru.html b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_ru.html index 2d97434a060fdecc1a15e8dbebb12f6ce71cedd2..e068efd717d5b76ca864d26aa9409e9d7350f006 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_ru.html +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_ru.html @@ -18,5 +18,5 @@

    Для получения дополнительной информации о безопасности в Jenkins, прочтите - этот документ. - \ No newline at end of file + этот документ. + diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_tr.html b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_tr.html index e708863197eadd26680c1fab91084c8423a2486a..651dab0aefd18a019726fddf9ba79d5dedd05ec8 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_tr.html +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_tr.html @@ -15,6 +15,6 @@ düşünürseniz, güvenlik ayarı olamayan bir Jenkins, hacklenmenin kesin bir yoludur.

    - Güvenlik ile ilgili daha fazla bilgiyi bu dokümanda + Güvenlik ile ilgili daha fazla bilgiyi bu dokümanda bulabilirsiniz. - \ No newline at end of file + diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_zh_CN.html b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_zh_CN.html index 471c6f7ade1d5af880a86b5d49eee07eb3d90596..2da32916106343bca00248c75fd20eeae4227828 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_zh_CN.html +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_zh_CN.html @@ -10,5 +10,5 @@

    更多Jenkins安全相关信息,请看 - 这个文档. - \ No newline at end of file + 这个文档. + diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_zh_TW.html b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_zh_TW.html index bc7cb3249b99f96fa890fc4174cf5c5d5fa5f2be..290ec69bbd733be5a5482d79b36cc0201d2074ce 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_zh_TW.html +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_zh_TW.html @@ -13,6 +13,6 @@ Jenkins 會啟動處理序,所以不安全的 Jenkins 肯定是被駭的好路子。

    - 參考這份文件, + 參考這份文件, 可以看到更多有關安全性及 Jenkins 的資訊。 - \ No newline at end of file + diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index.groovy b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index.groovy index 249d4cfbe84e08544c84abeea444951b3448051d..519143e4fdfcff999da61170a13b62de78a6babe 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index.groovy +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index.groovy @@ -3,6 +3,7 @@ package hudson.security.GlobalSecurityConfiguration import hudson.security.SecurityRealm import hudson.markup.MarkupFormatterDescriptor import hudson.security.AuthorizationStrategy +import jenkins.AgentProtocol import jenkins.model.GlobalConfiguration import hudson.Functions import hudson.model.Descriptor @@ -11,7 +12,7 @@ def f=namespace(lib.FormTagLib) def l=namespace(lib.LayoutTagLib) def st=namespace("jelly:stapler") -l.layout(norefresh:true, permission:app.ADMINISTER, title:my.displayName) { +l.layout(norefresh:true, permission:app.ADMINISTER, title:my.displayName, cssclass:request.getParameter('decorate')) { l.main_panel { h1 { l.icon(class: 'icon-secure icon-xlg') @@ -25,10 +26,6 @@ l.layout(norefresh:true, permission:app.ADMINISTER, title:my.displayName) { set("descriptor", my.descriptor); f.optionalBlock( field:"useSecurity", title:_("Enable security"), checked:app.useSecurity) { - f.entry (title:_("TCP port for JNLP slave agents"), field:"slaveAgentPort") { - f.serverTcpPort() - } - f.entry (title:_("Disable remember me"), field: "disableRememberMe") { f.checkbox() } @@ -41,7 +38,49 @@ l.layout(norefresh:true, permission:app.ADMINISTER, title:my.displayName) { } } - f.dropdownDescriptorSelector(title:_("Markup Formatter"),descriptors: MarkupFormatterDescriptor.all(), field: 'markupFormatter') + f.section(title: _("Markup Formatter")) { + f.dropdownDescriptorSelector(title:_("Markup Formatter"),descriptors: MarkupFormatterDescriptor.all(), field: 'markupFormatter') + } + + f.section(title: _("Agents")) { + f.entry(title: _("TCP port for JNLP agents"), field: "slaveAgentPort") { + if (my.slaveAgentPortEnforced) { + if (my.slaveAgentPort == -1) { + text(_("slaveAgentPortEnforcedDisabled")) + } else if (my.slaveAgentPort == 0) { + text(_("slaveAgentPortEnforcedRandom")) + } else { + text(_("slaveAgentPortEnforced", my.slaveAgentPort)) + } + } else { + f.serverTcpPort() + } + } + f.advanced(title: _("Agent protocols"), align:"left") { + f.entry(title: _("Agent protocols")) { + def agentProtocols = my.agentProtocols; + table(width:"100%") { + for (AgentProtocol p : AgentProtocol.all()) { + if (p.name != null && !p.required) { + f.block() { + f.checkbox(name: "agentProtocol", + title: p.displayName, + checked: agentProtocols.contains(p.name), + json: p.name); + } + tr() { + td(colspan:"2"); + td(class:"setting-description"){ + st.include(from:p, page: "description", optional:true); + } + td(); + } + } + } + } + } + } + } Functions.getSortedDescriptorsForGlobalConfig(my.FILTER).each { Descriptor descriptor -> set("descriptor",descriptor) diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index.properties new file mode 100644 index 0000000000000000000000000000000000000000..4c959311a8f28ad3ea271a517aa8eefdd2b5d896 --- /dev/null +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index.properties @@ -0,0 +1,3 @@ +slaveAgentPortEnforced=enforced to {0,number,#} on startup through system property. +slaveAgentPortEnforcedRandom=enforced to random port on startup through system property. +slaveAgentPortEnforcedDisabled=disabled on startup through system property. diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_da.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_da.properties index 0e53ad060ca03e4103b3890b01451443715b8747..02bb05699528c596634bed1f380d8b78d53d3e0e 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_da.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_da.properties @@ -22,7 +22,6 @@ LOADING=INDL\u00C6SER Enable\ security=Sl\u00E5 sikkerhed til -TCP\ port\ for\ JNLP\ slave\ agents=TCP port til JNLP slaveagenter Markup\ Formatter= Access\ Control=Adgangskontrol Security\ Realm=Sikkerheds Realm diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_de.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_de.properties index ed694c8119c556067d012bdd6b92fd527fe7c851..42007d36944d532c9b139b937ae9b9563014058c 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_de.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_de.properties @@ -22,8 +22,7 @@ LOADING=LADE DATEN Enable\ security=Jenkins absichern -TCP\ port\ for\ JNLP\ slave\ agents=TCP-Port f\u00fcr JNLP-Slave -Disable\ remember\ me=Deaktiviere "Anmeldedaten speichern" +Disable\ remember\ me=Deaktiviere \u201EAnmeldedaten speichern\u201C Markup\ Formatter=Markup-Formatierer Access\ Control=Zugriffskontrolle Security\ Realm=Benutzerverzeichnis (Realm) diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_es.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_es.properties index 60f4150e2e6c55892e1801a0440099c49fb97e7d..87d48443d5a2e4f1be760a5a3142f7c5180769d5 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_es.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_es.properties @@ -22,9 +22,9 @@ LOADING=CARGANDO Enable\ security=Activar seguridad -TCP\ port\ for\ JNLP\ slave\ agents=Puerto TCP de JNLP para los agentes en los nodos secundarios +TCP\ port\ for\ JNLP\ agents=Puerto TCP de JNLP para los agentes en los nodos secundarios Markup\ Formatter= Access\ Control=Control de acceso -Security\ Realm=Seguuridad +Security\ Realm=Seguridad Authorization=Autorizaci\u00F3n Save=Guardar diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fi.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fi.properties index f0de13e17dd955f2dd7841e42d7060f1cbebf861..5757a35336fa1ffb182ae0d8b521783697af4505 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fi.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fi.properties @@ -21,7 +21,6 @@ # THE SOFTWARE. Enable\ security=Aktivoi kirjautuminen -TCP\ port\ for\ JNLP\ slave\ agents= Markup\ Formatter= Access\ Control=P\u00E4\u00E4synhallinta Security\ Realm= diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fr.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fr.properties index 3a8cc73e953e258597a1cede3764681e736f4ab9..d70ab48cd399f3f207d3852bfecebdd7825c7e22 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fr.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fr.properties @@ -22,7 +22,6 @@ LOADING=CHARGEMENT Enable\ security=Activer la s\u00E9curit\u00E9 -TCP\ port\ for\ JNLP\ slave\ agents=Port TCP pour les agents esclaves JNLP Markup\ Formatter= Access\ Control=Contr\u00F4le de l''acc\u00E8s Security\ Realm=Royaume pour la s\u00E9curit\u00E9 (Realm) diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_hu.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_hu.properties index 4f86f54d340b6005bf35351f068d57019514941f..2e3b82f0545a5d23f7ea31047bb8320ae5ca6d65 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_hu.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_hu.properties @@ -22,7 +22,6 @@ LOADING=BET\u00D6LT\u00C9S Enable\ security= -TCP\ port\ for\ JNLP\ slave\ agents= Markup\ Formatter= Access\ Control= Security\ Realm= diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ja.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ja.properties index 6eeaeab03992c931d865bcaee24b388609972c2b..73d37c2c966dfe15892e861d37ce93bf3fb95741 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ja.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ja.properties @@ -22,7 +22,6 @@ LOADING=\u30ed\u30fc\u30c9\u4e2d... Enable\ security=\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u6709\u52b9\u5316 -TCP\ port\ for\ JNLP\ slave\ agents=JNLP\u30b9\u30ec\u30fc\u30d6\u7528TCP\u30dd\u30fc\u30c8\u756a\u53f7 Markup\ Formatter=\u30de\u30fc\u30af\u30a2\u30c3\u30d7\u8a18\u6cd5 Access\ Control=\u30a2\u30af\u30bb\u30b9\u5236\u5fa1 Security\ Realm=\u30e6\u30fc\u30b6\u30fc\u60c5\u5831 diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_nl.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_nl.properties index 0f6020cc66fa29c868b89c3fd406c18927e3109a..38a67ec667c9d6bc1d4614619da07e84f8b3689f 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_nl.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_nl.properties @@ -22,7 +22,6 @@ LOADING=OPHALEN Enable\ security=Activeer beveiliging -TCP\ port\ for\ JNLP\ slave\ agents=TCP-poort voor JNLP-slaafnodes Markup\ Formatter= Access\ Control=Toegangscontrole Security\ Realm=Beveiligingszone diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_pt_BR.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_pt_BR.properties index 2a28726538637122933d0c6b1e38e41b6753a844..b920631d0b89fddf7febea09990a1967b6958edd 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_pt_BR.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_pt_BR.properties @@ -22,7 +22,6 @@ LOADING=Carregando Enable\ security=Habilitar segurana -TCP\ port\ for\ JNLP\ slave\ agents=Porta TCP para agentes slave JNLP Markup\ Formatter=Formatador de markup Access\ Control=Controle de acesso Security\ Realm=Dom\u00ednio (realm) de seguran\u00e7a diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ru.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ru.properties index 49891a4e3086f44408d6c634d9be54f724fe086a..156daf036bb58de7906548a57592bcd487403a39 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ru.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ru.properties @@ -22,7 +22,6 @@ LOADING=\u0417\u0410\u0413\u0420\u0423\u0417\u041A\u0410 Enable\ security=\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0437\u0430\u0449\u0438\u0442\u0443 -TCP\ port\ for\ JNLP\ slave\ agents=TCP \u043f\u043e\u0440\u0442 \u0434\u043b\u044f JNLP \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0445 \u0430\u0433\u0435\u043d\u0442\u043e\u0432 Markup\ Formatter= Access\ Control=\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u0430 Security\ Realm=\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0437\u0430\u0449\u0438\u0442\u044b (realm) diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_sr.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..abb41de481cbc87bc18d3bbbb483fe6ec2004009 --- /dev/null +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_sr.properties @@ -0,0 +1,11 @@ +# This file is under the MIT License by authors + +LOADING=\u0423\u0427\u0418\u0422\u0410\u0412\u0410\u040A\u0415 +Enable\ security=\u0423\u043A\u0459\u0443\u0447\u0438 \u0441\u0438\u0441\u0442\u0435\u043C \u0431\u0435\u0437\u0431\u0435\u0434\u043D\u043E\u0441\u0442\u0438 +Markup\ Formatter=\u0424\u043E\u0440\u043C\u0430\u0442\u0435\u0440 \u0437\u0430 Markup +Access\ Control=\u041A\u043E\u043D\u0442\u0440\u043E\u043B\u0430 \u043F\u0440\u0438\u0441\u0442\u0443\u043F\u0435 +Security\ Realm=\u041E\u0431\u043B\u0430\u0441\u0442 \u0431\u0435\u0437\u0431\u0435\u0434\u043D\u043E\u0441\u0442\u0438 (Realm) +Authorization=\u041E\u0432\u043B\u0430\u0448\u045B\u0435\u045A\u0435 +Save=\u0421\u0430\u0447\u0443\u0432\u0430\u0458 +Disable\ remember\ me=\u0418\u0441\u043A\u0459\u0443\u0447\u0438 \u043E\u0434\u043B\u0438\u043A\u0443 "\u0437\u0430\u043F\u0430\u043C\u0442\u0438 \u043C\u0435" +TCP\ port\ for\ JNLP\ agents=\u041F\u043E\u0440\u0442 TCP \u0437\u0430 JNLP \u0430\u0433\u0435\u043D\u0442\u0435 \ No newline at end of file diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_tr.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_tr.properties index 383c978db64ab1e1cfb2dfca5d0e82d80333dd08..1ef7e7eb538c5d9cf0b3f5de93adb416eb08f33e 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_tr.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_tr.properties @@ -21,7 +21,6 @@ # THE SOFTWARE. Enable\ security=G\u00fcvenli\u011fi devreye al -TCP\ port\ for\ JNLP\ slave\ agents=JNLP Slave ajanlar\u0131 i\u00e7in TCP portu Markup\ Formatter= Access\ Control=Eri\u015fim Kontrol\u00fc Security\ Realm=G\u00fcvenlik Alan\u0131 diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_zh_CN.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_zh_CN.properties index dda1fcfe45dc63a3f5c8abfd57da331a46649001..a4a5ce68ddbca2eda3172c3fd4ac26bc9f6a7e1c 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_zh_CN.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_zh_CN.properties @@ -22,7 +22,6 @@ LOADING=\u52A0\u8F7D\u4E2D Enable\ security=\u542f\u7528\u5b89\u5168 -TCP\ port\ for\ JNLP\ slave\ agents=JNLP\u8282\u70b9\u4ee3\u7406\u7684TCP\u7aef\u53e3 Markup\ Formatter= Access\ Control=\u8bbf\u95ee\u63a7\u5236 Security\ Realm=\u5b89\u5168\u57df diff --git a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_zh_TW.properties b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_zh_TW.properties index 7966bc9a90826b03e885b7e9fde80080cb5419ee..103ce2ab039014cf80d5f2c0b30a8fe1c9ec670b 100644 --- a/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_zh_TW.properties +++ b/core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_zh_TW.properties @@ -23,7 +23,6 @@ LOADING=\u8f09\u5165\u4e2d Enable\ security=\u555f\u7528\u5b89\u5168\u6027 -TCP\ port\ for\ JNLP\ slave\ agents=JNLP Slave \u4ee3\u7406\u7a0b\u5f0f TCP \u57e0 Markup\ Formatter=\u6a19\u8a18\u683c\u5f0f\u5668 Access\ Control=\u5b58\u53d6\u63a7\u5236 Security\ Realm=\u5b89\u5168\u6027\u9818\u57df diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..2f216c9c4b3dec1d20b66e005393c15b362c27a6 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_bg.properties @@ -0,0 +1,26 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +Password=\ + \u041f\u0430\u0440\u043e\u043b\u0430 +Confirm\ Password=\ + \u041f\u043e\u0442\u0432\u044a\u0440\u0436\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0430\u0440\u043e\u043b\u0430\u0442\u0430 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_pl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..5470171053b38a16b37140e8c15928365fc38a30 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_pl.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2017, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. +Password=Has\u0142o +Confirm\ Password=Powt\u00F3rz has\u0142o diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..681f4b037d9f5f8a7907123624689c7b13d15e97 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Password=\u041B\u043E\u0437\u0438\u043D\u043A\u0430 +Confirm\ Password=\u041F\u043E\u0442\u0432\u0440\u0434\u0438\u0442\u0435 \u043B\u043E\u0437\u0438\u043D\u043A\u0443 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm.jelly b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm.jelly index bb12a30aa9afbe82834f61d0ee0560be40b64c6a..a4e2f822f2e7807c37bc351832968ece7be4f329 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm.jelly +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm.jelly @@ -22,67 +22,48 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --> - + - - - - - - - - -

    ${title}

    -
    - -
    - ${data.errorMessage} -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ${%Username}:
    ${%Password}:
    ${%Confirm password}:
    ${%Full name}:
    ${%E-mail address}:
    ${%Enter text as shown}: -
    - [captcha] -
    - - - +

    ${title}

    +
    + +
    + ${data.errorMessage}
    - - +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ${%Username}:
    ${%Password}:
    ${%Confirm password}:
    ${%Full name}:
    ${%E-mail address}:
    ${%Enter text as shown}: +
    + [captcha] +
    +
    diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryFormPage.jelly b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryFormPage.jelly new file mode 100644 index 0000000000000000000000000000000000000000..8009ad6518ed8c94505bbb7bdc8f7e23aef4172b --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryFormPage.jelly @@ -0,0 +1,50 @@ + + + + + + + + + + + + + +
    + + + + +
    +
    +
    diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..c4cd36253cfb0cf4982a647eaa30aa2eee0f521c --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_bg.properties @@ -0,0 +1,36 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +E-mail\ address=\ + \u0410\u0434\u0440\u0435\u0441 \u043d\u0430 \u0435-\u043f\u043e\u0449\u0430 +Password=\ + \u041f\u0430\u0440\u043e\u043b\u0430 +Username=\ + \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b +Confirm\ password=\ + \u041f\u043e\u0442\u0432\u044a\u0440\u0436\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0430\u0440\u043e\u043b\u0430\u0442\u0430 +Enter\ text\ as\ shown=\ + \u0412\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u0438\u044f \u0442\u0435\u043a\u0441\u0442 +Sign\ up=\ + \u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043d\u0435 +Full\ name=\ + \u041f\u044a\u043b\u043d\u043e \u0438\u043c\u0435 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_de.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_de.properties index 0af21495f27222b32661a187ba3b47693063addf..fd45054c0e2624b611c1c036990446ae6f20a84d 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_de.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_de.properties @@ -4,4 +4,3 @@ Confirm\ password=Passwort-Wiederholung Full\ name=Voller Name E-mail\ address=E-Mail-Adresse Enter\ text\ as\ shown=Text wie angezeigt eingeben -Sign\ up=Registrieren diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_pl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_pl.properties index 232cf06c4bbf0baa4b121a252cb27b51e0fbcf3c..cefd8b87958f21c0e1e26ec39289df3cecb78f23 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_pl.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_pl.properties @@ -1,6 +1,26 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Copyright (c) 2004-2016, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -Confirm\ password=Has\u0142o +Confirm\ password=Powt\u00F3rz has\u0142o E-mail\ address=Adres e-mail Full\ name=Pe\u0142na nazwa Password=Has\u0142o diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..661b93a0e3135cf90b95a2b6893631ef16e289ce --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_sr.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Username=\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u043E \u0438\u043C\u0435 +Password=\u041B\u043E\u0437\u0438\u043D\u043A\u0430 +Confirm\ password=\u041F\u043E\u0442\u0432\u0440\u0434\u0438\u0442\u0435 \u043B\u043E\u0437\u0438\u043D\u043A\u0443 +Full\ name=\u0418\u043C\u0435 \u0438 \u043F\u0440\u0435\u0437\u0438\u043C\u0435 +Enter\ text\ as\ shown=\u0423\u043D\u0435\u0441\u0438\u0442\u0435 \u0442\u0435\u043A\u0441\u0442 \u043A\u0430\u043A\u043E \u0458\u0435 \u043F\u0440\u0438\u043A\u0430\u0437\u0430\u043D +E-mail\ address=\u0410\u0434\u0440\u0435\u0441\u0430 \u0435-\u043F\u043E\u0448\u0442\u0435 +Sign\ up=\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0458\u0430 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser.jelly b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser.jelly index aed3d5c5c89b8e30db8a050ad3b2ed2bf2821aae..daacc17bfc479390f379266536a1f3bbc3f79344 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser.jelly +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser.jelly @@ -27,5 +27,5 @@ THE SOFTWARE. --> - + \ No newline at end of file diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..46d7918e2d079bea09c03434b98b563c37fa6ee3 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_bg.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Create\ User=\ + \u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..a1eb18f901895a5af60e94979cda052ca8c8a24d --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/addUser_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Create\ User=\u041A\u0440\u0435\u0438\u0440\u0430\u0458 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_bg.properties index ffc13666309aa7e5a60642a081eb0c35849b0cc8..e4fb7946c9ebb369927e5ee73cd0d05f4d545ddc 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_bg.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_bg.properties @@ -1,3 +1,28 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. -Allow\ users\ to\ sign\ up=\u041F\u043E\u0437\u0432\u043E\u043B\u0438 \u0432\u0445\u043E\u0434 \u043D\u0430 \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B\u0438 +Allow\ users\ to\ sign\ up=\ + \u041f\u043e\u0437\u0432\u043e\u043b\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438\u0442\u0435 \u0434\u0430 \u0441\u0435 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u0442 +Captcha\ Support=\ + \u041f\u043e\u0434\u0434\u0440\u044a\u0436\u043a\u0430 \u043d\u0430 \u201eCaptcha\u201c +Enable\ captcha\ on\ sign\ up=\ + \u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u201eCaptcha\u201c \u043f\u0440\u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043d\u0435 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_de.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_de.properties index 15d62127fa4489afc68a8ba6134c3bbbb4f3aeb2..4d556887693bceb15329a69fdc8e6f171b6aec65 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_de.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_de.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Allow\ users\ to\ sign\ up=Benutzer drfen sich selbst registrieren +Allow\ users\ to\ sign\ up=Benutzer d\u00FCrfen sich selbst registrieren +Captcha\ Support=Captcha +Enable\ captcha\ on\ sign\ up=Captcha f\u00FCr Registrierung aktivieren diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_hi_IN.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_hi_IN.properties deleted file mode 100644 index a049b150fe79159186f92af65b95775354743c5c..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_hi_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Allow\ users\ to\ sign\ up=\u0909\u092A\u092F\u094B\u0917\u0915\u0930\u094D\u0924\u093E\u0913\u0902 \u0915\u094B \u0938\u093F\u0917\u094D\u0928 \u0909\u092A \u0915\u0930\u0928\u0947 \u0926\u0947 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_pl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_pl.properties index c90b977db44ec0ad1897ac3b1d8342bf91acfa3f..1b1b2f423f64c2461392294b4c3dc6bde826d203 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_pl.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_pl.properties @@ -1,3 +1,24 @@ -# This file is under the MIT License by authors - -Allow\ users\ to\ sign\ up=Pozw\u00F3l ludziom na rejestrowanie si\u0119 +# The MIT License +# +# Copyright (c) 2013-2017, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. +Allow\ users\ to\ sign\ up=Pozw\u00F3l u\u017Cytkownikom na rejestrowanie si\u0119 +Enable\ captcha\ on\ sign\ up=W\u0142\u0105cz captcha podczas rejestracji +Captcha\ Support=Wsparcie dla captcha diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..7da135998fcefbd98cadf4c946d520af22f88db3 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Enable\ captcha\ on\ sign\ up=\u0422\u0440\u0430\u0436\u0438 Captcha \u043F\u0440\u0438\u043B\u0438\u043A\u043E\u043C \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0458\u0435 +Captcha\ Support=\u041F\u043E\u0434\u0440\u0448\u043A\u0430 \u0437\u0430 Captcha +Allow\ users\ to\ sign\ up=\u0414\u043E\u0437\u0432\u043E\u043B\u0438 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438\u043C\u0430 \u0434\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0443\u0458\u0443 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser.jelly b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser.jelly index bc44b42accee8be4b4b2b19ed6646f5735b1376c..6ebd369ae0a1f0d7c10eaf619b13c221343d716d 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser.jelly +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser.jelly @@ -27,5 +27,5 @@ THE SOFTWARE. --> - + \ No newline at end of file diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..6fe330a0341e8dd356c414c272d64175f6259114 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_bg.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Create\ First\ Admin\ User=\ + \u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u044a\u0440\u0432\u0438\u044f \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b-\u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..ac2c4ccf6ad349e419f1f0b7f548bf78aba8cbce --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/firstUser_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Create\ First\ Admin\ User=\u041A\u0440\u0435\u0438\u0440\u0430\u0458 \u043F\u0440\u0432\u043E\u0433 \u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0442\u043E\u0440\u0430 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help-allowsSignup.html b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help-allowsSignup.html index 124f422cbad3ac502b12b1e9380f83c02dec579d..cb7b6fa7f1ae7795c937780dde005ae6c2c29afe 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help-allowsSignup.html +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help-allowsSignup.html @@ -7,5 +7,5 @@

    By default, Jenkins does not use captcha verification if the user creates an account by themself. If you'd like to enable captcha verification, install a captcha support plugin, e.g. the Jenkins - JCaptcha Plugin. + JCaptcha Plugin.

    diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help-allowsSignup_bg.html b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help-allowsSignup_bg.html new file mode 100644 index 0000000000000000000000000000000000000000..686e4f9b81c6ffe14a3f2e5d27550ec81fdd4e33 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help-allowsSignup_bg.html @@ -0,0 +1,14 @@ +
    + Стандартно Jenkins позволява на потребителите да си създават регистрации чрез + връзката за това в горния, десен ъгъл. + Ако не искате произволни хора да се регистрират, оставете полето правно. +

    + В такъв случай някой с административни права ще трябва да създава + регистрациите. +

    + Стандартно Jenkins не използва графична защита, че човек, а не скрипт създава + регистрацията. Ако такава функционалност ви трябва, инсталирайте съответната + приставка, напр. + JCaptcha + Plugin. +

    diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help-allowsSignup_zh_TW.html b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help-allowsSignup_zh_TW.html index e2535f2729b17e59e91c42bc2cbe39fa5c3f2e11..81d911bda1f7ae09c73bbd82340741692fad43f3 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help-allowsSignup_zh_TW.html +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help-allowsSignup_zh_TW.html @@ -6,5 +6,5 @@

    預設情況下,Jenkins 不會使用 CAPTCHA 驗證使用者帳號是不是由真的人建立。 如果您想要使用 CAPTCHA 驗證機制,請安裝 CAPTCHA 外掛程式,例如 Jenkins - JCaptcha Plugin。 + JCaptcha Plugin。 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help_bg.html b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help_bg.html new file mode 100644 index 0000000000000000000000000000000000000000..924283f48fc9699292ea91ecf4005af847bf0b11 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help_bg.html @@ -0,0 +1,6 @@ +

    + Използвайте списъка на потребители на Jenkins за + идентификация, вместо това да го прави външна система. Този вариант е подходящ + за по-малки инсталации, при които няма вече съществуваща база от данни с + потребители. +
    \ No newline at end of file diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help_zh_CN.html b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help_zh_CN.html index 5967d98f9ade94f91e07594c700d9f92a7d0c676..754a47f59cc02a5f667d8222f32b9f83c35a0f98 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help_zh_CN.html +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help_zh_CN.html @@ -1,5 +1,5 @@ -
    - 使用Hudson自己的用户列表验证, - 而不是外部系统代理. - 这适用于没有用户数据库小范围的设定. +
    + 使用Hudson自己的用户列表验证, + 而不是外部系统代理. + 这适用于没有用户数据库小范围的设定.
    \ No newline at end of file diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index.jelly b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index.jelly index d39afff6f9f97144928e2a2a1d9bee0c04b47c9f..9b7fe9d0fae2be471385ab3aecdaddf90f254aa0 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index.jelly +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index.jelly @@ -43,7 +43,7 @@ THE SOFTWARE. ${user.id} ${user} - + diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_bg.properties index f86036026a3b36c14ef98ea7dc5caf614b7eed94..8542ec0a26cabd25a0c30ab309491ecb82e6c37c 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_bg.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_bg.properties @@ -1,5 +1,33 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -Name=\u0418\u043C\u0435 -Users=\u041F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B\u0438 -blurb=\u0422\u0435\u0437\u0438 \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B\u0438 \u043C\u043E\u0433\u0430\u0442 \u0434\u0430 \u0432\u043B\u0438\u0437\u0430\u0442 \u0432 Jenkins. \u0422\u043E\u0432\u0430 \u0435 \u0441\u044A\u043A\u0440\u0430\u0442\u0435\u043D\u0430 \u0432\u0435\u0440\u0441\u0438\u044F \u043D\u0430 \u043D\u0430 \u0442\u043E\u0437\u0438 \u0441\u043F\u0438\u0441\u044A\u043A, \u043A\u043E\u0439\u0442\u043E \u0441\u044A\u0434\u044A\u0440\u0436\u0430 \u0441\u044A\u0449\u043E \u0438 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u0441\u044A\u0437\u0434\u0430\u0434\u0435\u043D\u0438\u0442\u0435 \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B\u0438, \u043A\u043E\u0438\u0442\u043E \u043D\u0430 \u043F\u0440\u0430\u043A\u0442\u0438\u043A\u0430 \u0441\u0430\u043C\u043E \u0441\u0430 \u043A\u043E\u043C\u0438\u0442\u043D\u0430\u043B\u0438 \u043D\u044F\u043A\u043E\u043B\u043A\u043E \u043F\u044A\u0442\u0438 \u043F\u043E \u043D\u044F\u043A\u043E\u0438 \u043F\u0440\u043E\u0435\u043A\u0442\u0438 \u0438 \u043D\u044F\u043C\u0430\u0442 \u0434\u0438\u0440\u0435\u043A\u0442\u0435\u043D \u0434\u043E\u0441\u0442\u044A\u043F \u0434\u043E Jenkins. +Name=\ + \u0418\u043c\u0435 +Users=\ + \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 +blurb=\ + \u0422\u0435\u0437\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0441\u0435 \u0432\u043f\u0438\u0448\u0430\u0442 \u0432 Jenkins. \u0422\u043e\u0432\u0430 \u0435 \u0441\u044a\u043a\u0440\u0430\u0442\u0435\u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430\ + \u0442\u043e\u0437\u0438 \u0441\u043f\u0438\u0441\u044a\u043a, \u043a\u043e\u0439\u0442\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430 \u0441\u044a\u0449\u043e \u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e\ + \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d\u0438\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438, \u043a\u043e\u0438\u0442\u043e \u043d\u044f\u043a\u043e\u0433\u0430 \u0441\u0430 \u043f\u043e\u0434\u0430\u0432\u0430\u043b\u0438 \u043f\u0440\u043e\u043c\u0435\u043d\u0438 \u043f\u043e \u043d\u044f\u043a\u043e\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0438 \u0438\ + \u043d\u044f\u043c\u0430\u0442 \u0434\u0438\u0440\u0435\u043a\u0442\u0435\u043d \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e Jenkins. +User\ Id=\ + \u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_de.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_de.properties index 432657ca1faf7c758a259f59565f1b885fe134fe..cdbc9a1a82266780b895bfe620ed9c20e875fb41 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_de.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_de.properties @@ -21,10 +21,7 @@ # THE SOFTWARE. blurb=\ -Diese Benutzer k\u00f6nnen sich bei Jenkins anmelden. Dies ist eine Untermenge \ -jener Liste, die zus\u00e4tzlich automatisch \ -angelegte Benutzer enthalten kann. Diese Benutzer haben zwar Commits zu Projekten \ -beigetragen, d\u00fcrfen sich aber nicht direkt bei Jenkins anmelden. + Diese Benutzer k\u00F6nnen sich bei Jenkins anmelden. Dies ist eine Untermenge jener Liste, die zus\u00E4tzlich automatisch angelegte Benutzer enthalten kann. Diese Benutzer haben zwar Commits zu Projekten beigetragen, d\u00FCrfen sich aber nicht direkt bei Jenkins anmelden. Name=Name -User\ Id=Benutzer Id +User\ Id=Benutzer-ID Users=Benutzer diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_es.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_es.properties index 5d03bc6eafef34ea8d7f0aa000dcc391736ec5f1..8c5b73e2c0ed9a8349c8e0913871ae849a2831f4 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_es.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_es.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. blurb=\ - Estos usuarios pueden entrar en Jenkins. Este es un subconjunto de esta list, \ + Estos usuarios pueden entrar en Jenkins. Este es un subconjunto de esta lista, \ que tambien incluyen usuarios creados autom\u00e1ticamente porque hayan hecho ''commits'' a proyectos. \ Los usuarios creados autom\u00e1ticamente no tienen acceso directo a Jenkins. Name=Nombre diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..1d1ea78072327d65825eefaad98c34204f08cd71 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pl.properties @@ -0,0 +1,25 @@ +# The MIT License +# +# Copyright (c) 2016, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. +Users=U\u017Cytkownicy +# These users can log into Jenkins. This is a sub set of this list, \ +Name=Nazwa +User\ Id=Identyfikator diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..ee02493ef6d4d9fe61e94fa4b4c77bf2380cd322 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_sr.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Users=\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438 +blurb=\ +\u041E\u0432\u0438 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0432\u0438 \u043C\u043E\u0433\u0443 \u0441\u0435 \u043F\u0440\u0438\u0458\u0430\u0432\u0438\u0442\u0438 \u043D\u0430 Jenkins, \u0448\u0442\u043E \u0458\u0435 \u043F\u043E\u0434\u0441\u043A\u0443\u043F \u043E\u0432\u043E\u0433 \u0441\u043F\u0438\u0441\u043A\u0430, \ +\u043A\u043E\u0458\u0438 \u0441\u0430\u0434\u0440\u0436\u0438 \u0438 \u0430\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0438-\u043A\u0440\u0435\u0438\u0440\u0430\u043D\u0435 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0435 \u0431\u0435\u0437 \u043A\u0438\u0440\u0435\u043A\u043D\u043E\u0433 \u043F\u0440\u0438\u0441\u0442\u0443\u043F\u0430 \u043D\u0430 Jenkins. +User\ Id=\u0418\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u043E\u043D\u0438 \u0431\u0440\u043E\u0458 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430 +Name=\u0418\u043C\u0435 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_bg.properties index 8eac1a5473c9208fe69ee5c565108e0c6f358e7a..78ad3489c1dfc8b6b40058b2e9b7ac196af9e3b9 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_bg.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_bg.properties @@ -1,3 +1,24 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -sign\ up=\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044F +sign\ up=\ + \u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043d\u0435 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_hi_IN.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_hi_IN.properties deleted file mode 100644 index a5a3bc874f30d6832d8f507959b44ec7c689c019..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_hi_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -sign\ up=\u0938\u093E\u0907\u0928 \u0905\u092A \u0915\u0930\u0947\u0902 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ka.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ka.properties deleted file mode 100644 index f2e1d6492f0cfc3fb7c3f7b0c52ce987d0d46397..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ka.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -sign\ up=\u10D0\u10DC\u10D2\u10D0\u10E0\u10D8\u10E8\u10D8\u10E1 \u10D2\u10D0\u10EE\u10E1\u10DC\u10D0 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_kn.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_kn.properties deleted file mode 100644 index 9f494ee261bba86ee8db408cbb37ad4b4b65ab01..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_kn.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -sign\ up=\u0CB8\u0CC6\u0CD6\u0CA8\u0CCD \u0C85\u0CAA\u0CCD \u0CAE\u0CBE\u0CA1\u0CBF diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_mr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_mr.properties deleted file mode 100644 index d35ce534994c507c2ad198c56ce291ecc6aadc11..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_mr.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -sign\ up=\u0928\u0935\u0947 \u0916\u093E\u0924\u0947 \u0909\u0918\u0921\u093E diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_pl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_pl.properties index 2256c9f917a5dfe3ade00d0d109e93cd626d862d..72d26aa862bacc2b623fb1eec0dda4fe80a143f2 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_pl.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -sign\ up=za\u0142\u00F3\u017C konto +sign\ up=Za\u0142\u00F3\u017C konto diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sr.properties index 35c26ea458054a9e4dfe2d747c766c9284502766..a98e2bb9c38d5b2ae07fd8e58354defa7b662af3 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -sign\ up=\u043D\u0430\u043F\u0440\u0430\u0432\u0438 \u043D\u0430\u043B\u043E\u0433 +sign\ up=\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0458\u0430 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel.jelly b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel.jelly index 49ef418e78c589de9071d272fe0aabfba0d32121..8d864d01e9d039652025073070074cfdbd2c4546 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel.jelly +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel.jelly @@ -28,7 +28,7 @@ THE SOFTWARE. - + diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_bg.properties index c70e0de0f2ac856ee49caacf59fe182dc5e283ad..0c64b93b0eb4aa87a7ee8906efb3f9f2b36a8c91 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_bg.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_bg.properties @@ -1,5 +1,28 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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=\u041E\u0431\u0440\u0430\u0442\u043D\u043E \u043A\u044A\u043C \u0442\u0430\u0431\u043B\u043E\u0442\u043E -Create\ User=\u0421\u044A\u0437\u0434\u0430\u0439 \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B -Manage\ Jenkins=\u0423\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 Jenkins +Back\ to\ Dashboard=\ + \u041a\u044a\u043c \u043e\u0441\u043d\u043e\u0432\u043d\u0438\u044f \u0435\u043a\u0440\u0430\u043d +Create\ User=\ + \u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b +Manage\ Jenkins=\ + \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 Jenkins diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_pl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..3dbafb505c116be68796a462013d0e70ae6c2987 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_pl.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Copyright (c) 2016, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. +Back\ to\ Dashboard=Powr\u00F3t do tablicy +Manage\ Jenkins=Zarz\u0105dzaj Jenkinsem +Create\ User=Stw\u00F3rz u\u017Cytkownika diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..13d517fbbc5202f3d4e4a562355414341fb7a37b --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Manage\ Jenkins=\u0423\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 Jenkins-\u043E\u043C +Create\ User=\u041A\u0440\u0435\u0438\u0440\u0430\u0458 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430 +Back\ to\ Dashboard=\u041D\u0430\u0437\u0430\u0434 \u043A\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043D\u0443 \u043F\u0430\u043D\u0435\u043B\u0443 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup.jelly b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup.jelly index 656e96c3c9eff6ac8391064b0442ef18dfec2200..f2477da1df27b8d967884626afd7833e2bf731ce 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup.jelly +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup.jelly @@ -27,5 +27,5 @@ THE SOFTWARE. --> - + diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity.jelly b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity.jelly index 01c0197a6201335932e0ffb50df2934937c44242..8daec8d38125220336aadd180767915648741af5 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity.jelly +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity.jelly @@ -27,5 +27,5 @@ THE SOFTWARE. --> - + \ No newline at end of file diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..00b146e5d08bae3238240499bedfad516054b576 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_bg.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Sign\ up=\ + \u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043d\u0435 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..f1315accaf12589e0d1c0c3898e550040396dff4 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signupWithFederatedIdentity_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Sign\ up=\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0458\u0430 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..00b146e5d08bae3238240499bedfad516054b576 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_bg.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Sign\ up=\ + \u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043d\u0435 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..f1315accaf12589e0d1c0c3898e550040396dff4 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Sign\ up=\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0458\u0430 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..41525cba68adb2ccfa37ca8b6fc2c8c29ea1b746 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_bg.properties @@ -0,0 +1,26 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Success=\ + \u0423\u0441\u043f\u0435\u0445 +description=\ + \u0412\u043f\u0438\u0441\u0430\u043d\u0438 \u0441\u0442\u0435. \u041a\u044a\u043c \u043e\u0441\u043d\u043e\u0432\u043d\u0430\u0442\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..e27a6feb9293ea45ec807da6fd3cd9dacd3a043e --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Success=\u0423\u0441\u043F\u0435\u0448\u043D\u043E +description=\u041F\u0440\u0438\u0458\u0430\u0432\u0459\u0435\u043D\u0438 \u0441\u0442\u0435. \u041D\u0430\u0437\u0430\u0434 \u043A\u0430 \u0433\u043B\u0430\u0432\u043D\u043E\u0458 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0438. diff --git a/core/src/main/resources/hudson/security/LegacyAuthorizationStrategy/help_zh_CN.html b/core/src/main/resources/hudson/security/LegacyAuthorizationStrategy/help_zh_CN.html index 368bdbd2f1bd324293d74f2b494cad4a1f33d372..6b6133460e875a080c80092342560e910efae4d4 100644 --- a/core/src/main/resources/hudson/security/LegacyAuthorizationStrategy/help_zh_CN.html +++ b/core/src/main/resources/hudson/security/LegacyAuthorizationStrategy/help_zh_CN.html @@ -1,4 +1,4 @@ -
    - 适用于Jenkins1.164以前的版本.也就是说,如果你是"admin"角色,那么你将拥有Jenkins的一切控制权,其它角色(包括匿名用户) - 只有查看权限. +
    + 适用于Jenkins1.164以前的版本.也就是说,如果你是"admin"角色,那么你将拥有Jenkins的一切控制权,其它角色(包括匿名用户) + 只有查看权限.
    \ No newline at end of file diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_bg.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_bg.properties index a37824abc66ac8eb9afa5fff7307e117a450471e..6bc00b09971b2966eb109c570cfcb994a850fcc2 100644 --- a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_bg.properties +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_bg.properties @@ -1,3 +1,30 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -Unprotected\ URLs=\u043D\u0435\u0437\u0430\u0449\u0438\u0442\u0435\u043D URL +Unprotected\ URLs=\ + \u041d\u0435\u0437\u0430\u0449\u0438\u0442\u0435\u043d \u0430\u0434\u0440\u0435\u0441 +# These URLs (and URLs starting with these prefixes plus a /) should require no authentication. \ +# If possible, configure your container to pass these requests straight to Jenkins without requiring login. +blurb=\ + \u0422\u0435\u0437\u0438 \u0430\u0434\u0440\u0435\u0441\u0438, \u043a\u0430\u043a\u0442\u043e \u0438 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u0438\u0442\u0435 \u0441 \u0434\u043e\u0431\u0430\u0432\u0435\u043d\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0435\u043d\u0430 \u0447\u0435\u0440\u0442\u0430 \u201e/\u201c \u0432 \u043a\u0440\u0430\u044f, \u043d\u0435\ + \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u0435 \u043d\u0443\u0436\u0434\u0430\u044f\u0442 \u043e\u0442 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f. \u0410\u043a\u043e \u0435 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e, \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u0442\u0435 \u043a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440\u0430 \u0437\u0430\ + \u0441\u044a\u0440\u0432\u043b\u0435\u0442\u0438 \u0434\u0430 \u043f\u0440\u0435\u0434\u0430\u0432\u0430 \u0442\u0435\u0437\u0438 \u0437\u0430\u044f\u0432\u043a\u0438 \u0434\u0438\u0440\u0435\u043a\u0442\u043d\u043e \u043d\u0430 Jenkins, \u0431\u0435\u0437 \u0434\u0430 \u0438\u0437\u0438\u0441\u043a\u0432\u0430 \u0432\u043f\u0438\u0441\u0432\u0430\u043d\u0435. diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_de.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_de.properties index 0805c8f87ce986bc58d80754318d2c4e8b2ab0fa..89b5c4ae4693efb4cb035e1e1e679d9179794e93 100644 --- a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_de.properties +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_de.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors Unprotected\ URLs=Ungesch\u00FCtzte URLs -blurb=Diese URLs (und URLs, die mit diesem Pr\u00E4fix und einem / beginnen) sollten keine Authentifizierung erfordern. Falls m\u00F6glich, konfigurieren Sie Ihren Container, diese Anfragen direkt an Jenkins durchzureichen, ohne daf\u00FCr eine Anmeldung zu ben\u00F6tigen. +blurb=Diese URLs (und URLs, die mit diesem Pr\u00E4fix und einem / beginnen) sollten keine Authentifizierung erfordern. Falls m\u00F6glich, konfigurieren Sie Ihren Servlet-Container, diese Anfragen direkt an Jenkins durchzureichen, ohne daf\u00FCr eine Anmeldung zu ben\u00F6tigen. diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_pl.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_pl.properties index 559f8a43bc4dcacfe97454f5997f4c5413d03684..a940c52cf5a153728936ac6c974c8a2403b75376 100644 --- a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_pl.properties +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_pl.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors Unprotected\ URLs=Niezabezpieczone URL -blurb=Te URL''e (i URL''e rozpoczynaj\u0105ce si\u0119 od prefiksu i /) nie powinny wymaga\u0107 autoryzacji. Je\u015Bli to mo\u017Cliwe, skonfiguruj kontener aby przes\u0142a\u0107 te \u017C\u0105dania bezpo\u015Brednio do Jenkins''a bez logowania. +blurb=Te URL''e (i URL''e rozpoczynaj\u0105ce si\u0119 od prefiksu i /) nie powinny wymaga\u0107 autoryzacji. Je\u015Bli to mo\u017Cliwe, skonfiguruj kontener aby przes\u0142a\u0107 te \u017C\u0105dania bezpo\u015Brednio do Jenkinsa bez logowania. diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_sr.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..d76a9217726af8f1e21cf2dc5a2a2488c4324722 --- /dev/null +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Unprotected\ URLs=\u041D\u0435\u0437\u0430\u0448\u0442\u0438\u045B\u0435\u043D\u0435 URL \u0430\u0434\u0440\u0435\u0441\u0435 +blurb=\u041E\u0432\u043E\u0458 \u0430\u0434\u0440\u0435\u0441\u0438, \u043A\u0430\u043E \u0438 \u043E\u0441\u0442\u0430\u043B\u0438\u043C \u0441\u0430 \u0434\u043E\u0434\u0430\u0442\u043D\u043E\u0458 \u0446\u0440\u0442\u0438 "/" \u043D\u0430 \u043A\u0440\u0430\u0458\u0443, \u043D\u0438\u0458\u0435 \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u043A\u0430\u0446\u0438\u0458\u0430. \u0410\u043A\u043E \u0458\u0435 \u0442\u043E \u043C\u043E\u0433\u0443\u045B\u0435, \u043D\u0430\u043C\u0435\u0441\u0442\u0438 \u043A\u043E\u043D\u0442\u0435\u0458\u043D\u0435\u0440 \u0434\u0430 \u0434\u0438\u0440\u0435\u043A\u0442\u043D\u043E \u043F\u0440\u0435\u043D\u043E\u0441\u0438 \u0437\u0430\u0445\u0442\u0435\u0432\u0435 \u043D\u0430 Jenkins \u0431\u0435\u0437 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0458\u0435. diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/help_bg.html b/core/src/main/resources/hudson/security/LegacySecurityRealm/help_bg.html new file mode 100644 index 0000000000000000000000000000000000000000..f715198cea96773fe2aee54be83f53e2cf13e2c7 --- /dev/null +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/help_bg.html @@ -0,0 +1,16 @@ +
    + Използване на контейнера за сървлети за идентификация на потребителите по спецификация. + Това е, което Jenkins правеше до версия 1.163, включително. Полезно е в следните случаи: + +
      +
    1. + Използвали сте Jenkins преди версия 1.164 и искате да запазите поведението. +
    2. +
    3. + Вече сте настроили контейнера да ползва правилната област за сигурност и + искате Jenkins просто да я ползва. (Понякога контейнерите имат по-добра + документация или ползват специфичен начин или реализация на връзка с област + потребители.) +
    4. +
    +
    diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/help_zh_CN.html b/core/src/main/resources/hudson/security/LegacySecurityRealm/help_zh_CN.html index eac120de565a27bb6d9fc3df702dc130de4b566d..666444d94b5c80ba6ac6191da88ea7da1bd89ea3 100644 --- a/core/src/main/resources/hudson/security/LegacySecurityRealm/help_zh_CN.html +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/help_zh_CN.html @@ -1,13 +1,13 @@ -
    - 使用Servlet容器认证用户,遵循Servlet规范. - 这是Jenkins1.163版本遗留的历史.这主要对下列情况非常有用: - -
      -
    1. - 你使用1.164之前版本的Jenkins并且愿意继续使用. -
    2. -
    3. - 你已经在你的容器上配置了很好的安全域,并且宁愿Jenkins继续使用它.(有些容器提供更好的文档或者能够定制实现用户的安全域) -
    4. -
    +
    + 使用Servlet容器认证用户,遵循Servlet规范. + 这是Jenkins1.163版本遗留的历史.这主要对下列情况非常有用: + +
      +
    1. + 你使用1.164之前版本的Jenkins并且愿意继续使用. +
    2. +
    3. + 你已经在你的容器上配置了很好的安全域,并且宁愿Jenkins继续使用它.(有些容器提供更好的文档或者能够定制实现用户的安全域) +
    4. +
    \ No newline at end of file diff --git a/core/src/main/resources/hudson/security/Messages_bg.properties b/core/src/main/resources/hudson/security/Messages_bg.properties index 8fbddade1a9b944ef94d1f83850931ce7e42d2b0..48f7068dc993719b323f49f5cf5aa67c96870b44 100644 --- a/core/src/main/resources/hudson/security/Messages_bg.properties +++ b/core/src/main/resources/hudson/security/Messages_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Bulgarian translation copyright 2015 Alexander Shopov . +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/security/Messages_de.properties b/core/src/main/resources/hudson/security/Messages_de.properties index bbfb5b50c090ca673074e785b3b1fc073decfd0f..2fe7c1b32d0b09d56b1edd25b3646a86c0c6e105 100644 --- a/core/src/main/resources/hudson/security/Messages_de.properties +++ b/core/src/main/resources/hudson/security/Messages_de.properties @@ -27,44 +27,45 @@ LegacyAuthorizationStrategy.DisplayName=Legacy-Autorisierung HudsonPrivateSecurityRealm.DisplayName=Jenkins\u2019 eingebautes Benutzerverzeichnis HudsonPrivateSecurityRealm.Details.DisplayName=Passwort HudsonPrivateSecurityRealm.Details.PasswordError=\ - Das angegebene Passwort und seine Wiederholung stimmen nicht \u00fcberein. \ - Bitte \u00fcberpr\u00fcfen Sie Ihre Eingabe. + Das angegebene Passwort und seine Wiederholung stimmen nicht \u00FCberein. \ + Bitte \u00FCberpr\u00FCfen Sie Ihre Eingabe. HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=Benutzer verwalten -HudsonPrivateSecurityRealm.ManageUserLinks.Description=Anlegen, Aktualisieren und L\u00f6schen von Benutzern, die sich an dieser Jenkins-Installation anmelden d\u00fcrfen. +HudsonPrivateSecurityRealm.ManageUserLinks.Description=Anlegen, Aktualisieren und L\u00F6schen von Benutzern, die sich an dieser Jenkins-Installation anmelden d\u00FCrfen. -HudsonPrivateSecurityRealm.CreateAccount.TextNotMatchWordInImage=Text stimmt nicht mit dem Wort im Bild \u00fcberein -HudsonPrivateSecurityRealm.CreateAccount.PasswordNotMatch=Das angegebene Passwort und seine Wiederholung stimmen nicht \u00fcberein -HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=Passwort wird ben\u00f6tigt -HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=Benutzername wird ben\u00f6tigt -HudsonPrivateSecurityRealm.CreateAccount.InvalidEmailAddress=Ung\u00fcltige E-Mail Adresse +HudsonPrivateSecurityRealm.CreateAccount.TextNotMatchWordInImage=Text stimmt nicht mit dem Wort im Bild \u00FCberein +HudsonPrivateSecurityRealm.CreateAccount.PasswordNotMatch=Das angegebene Passwort und seine Wiederholung stimmen nicht \u00FCberein +HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=Passwort wird ben\u00F6tigt +HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=Benutzername wird ben\u00F6tigt +HudsonPrivateSecurityRealm.CreateAccount.InvalidEmailAddress=Ung\u00FCltige E-Mail Adresse HudsonPrivateSecurityRealm.CreateAccount.UserNameAlreadyTaken=Benutzername ist bereits vergeben -FullControlOnceLoggedInAuthorizationStrategy.DisplayName=Angemeldete Benutzer d\u00fcrfen alle Aktionen ausf\u00fchren +FullControlOnceLoggedInAuthorizationStrategy.DisplayName=Angemeldete Benutzer d\u00FCrfen alle Aktionen ausf\u00FChren -AuthorizationStrategy.DisplayName=Jeder darf alle Aktionen ausf\u00fchren +AuthorizationStrategy.DisplayName=Jeder darf alle Aktionen ausf\u00FChren LDAPSecurityRealm.DisplayName=LDAP LDAPSecurityRealm.SyntaxOfServerField=\ Syntax der Server-Angabe ist SERVER, SERVER:PORT oder ldaps://SERVER[:PORT] LDAPSecurityRealm.UnknownHost=Unbekannter Host: {0} LDAPSecurityRealm.UnableToConnect=Keine Verbindung zu {0} : {1} -LDAPSecurityRealm.InvalidPortNumber=Ung\u00fcltige Port-Nummer +LDAPSecurityRealm.InvalidPortNumber=Ung\u00FCltige Port-Nummer LegacySecurityRealm.Displayname=An Servlet-Container delegieren UserDetailsServiceProxy.UnableToQuery=Benutzerinformationen konnten nicht abgefragt werden: {0} PAMSecurityRealm.DisplayName=Unix Benutzer-/Gruppenverzeichnis -PAMSecurityRealm.ReadPermission=Jenkins ben\u00f6tigt Leserechte f\u00fcr /etc/shadow -PAMSecurityRealm.BelongToGroup={0} mu\u00df zu Gruppe {1} geh\u00f6ren, um /etc/shadow lesen zu k\u00f6nnen. +PAMSecurityRealm.ReadPermission=Jenkins ben\u00F6tigt Leserechte f\u00FCr /etc/shadow +PAMSecurityRealm.BelongToGroup={0} muss zur Gruppe {1} geh\u00F6ren, um /etc/shadow lesen zu k\u00F6nnen. PAMSecurityRealm.RunAsUserOrBelongToGroupAndChmod=\ - Entweder mu\u00df Jenkins als {0} ausgef\u00fchrt werden, oder {1} mu\u00df zu Gruppe {2} geh\u00f6ren und \ - ''chmod g+r /etc/shadow'' mu\u00df ausgef\u00fchrt werden, damit Jenkins /etc/shadow lesen kann. + Entweder muss Jenkins als {0} ausgef\u00FChrt werden, oder {1} muss zur Gruppe {2} geh\u00F6ren und \ + ''chmod g+r /etc/shadow'' muss ausgef\u00FChrt werden, damit Jenkins /etc/shadow lesen kann. PAMSecurityRealm.Success=Erfolgreich -PAMSecurityRealm.User=Benutzer ''{0}'' +PAMSecurityRealm.User=Benutzer \u201E{0}\u201C PAMSecurityRealm.CurrentUser=Aktueller Benutzer PAMSecurityRealm.Uid=uid: {0} # not in use Permission.Permissions.Title=N/A -AccessDeniedException2.MissingPermission={0} fehlt das Recht ''{1}'' +AccessDeniedException2.MissingPermission={0} fehlt das Recht \u201E{1}\u201C +HudsonPrivateSecurityRealm.WouldYouLikeToSignUp={0} {1} ist Jenkins bisher nicht bekannt. M\u00F6chten Sie sich registrieren? diff --git a/core/src/main/resources/hudson/security/Messages_pl.properties b/core/src/main/resources/hudson/security/Messages_pl.properties index 347024e6a586fcc06fef985f97d165b6d19a3db1..cac95150ed3ceec4113bd89fc39055c1d4332d9c 100644 --- a/core/src/main/resources/hudson/security/Messages_pl.properties +++ b/core/src/main/resources/hudson/security/Messages_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2016, Damian Szczepanik +# Copyright (c) 2004-2017, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributors # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -19,5 +19,30 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -GlobalSecurityConfiguration.DisplayName=Konfiguracja globalnych zabezpiecze\u0144 -GlobalSecurityConfiguration.Description=Bezpiecze\u0144stwo Jenkinsa: okre\u015Bl, kto ma dost\u0119p i mo\u017Ce u\u017Cywa\u0107 systemu. +# Manage Users +HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=Zarz\u0105dzaj u\u017Cytkownikami +# LDAP +LDAPSecurityRealm.DisplayName=LDAP +# Create/delete/modify users that can log in to this Jenkins +HudsonPrivateSecurityRealm.ManageUserLinks.Description=Dodawaj, usuwaj i modyfikuj u\u017Cytkownik\u00F3w, kt\u00F3rzy mog\u0105 si\u0119 logowa\u0107 do Jenkinsa +GlobalSecurityConfiguration.DisplayName=Konfiguruj ustawienia bezpiecze\u0144stwa +GlobalSecurityConfiguration.Description=Zabezpiecz Jenkinsa: decyduj, kto ma do niego dost\u0119p. +HudsonPrivateSecurityRealm.Details.DisplayName=Has\u0142o +HudsonPrivateSecurityRealm.DisplayName=W\u0142asna baza danych Jenkinsa +HudsonPrivateSecurityRealm.Details.PasswordError=\ + Potw\u00F3rzone has\u0142o nie jest takie samo, jak wpisane. \ + Upewnij si\u0119, \u017Ce oba has\u0142a s\u0105 takie same. +HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=Has\u0142o jest wymagane +HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=Nazwa u\u017Cytkownika jest wymagana +HudsonPrivateSecurityRealm.CreateAccount.InvalidEmailAddress=Niepoprawny adres e-mail +HudsonPrivateSecurityRealm.CreateAccount.UserNameAlreadyTaken=Nazwa u\u017Cytkownika jest ju\u017C u\u017Cywana +AuthorizationStrategy.DisplayName=Ka\u017Cdy u\u017Cytkownik mo\u017Ce wszystko +LDAPSecurityRealm.SyntaxOfServerField=Sk\u0142adnia serwera to SERWER, SERWER:PORT lub ldaps://SERVER[:PORT] +LDAPSecurityRealm.UnknownHost=Nieznany host +LDAPSecurityRealm.InvalidPortNumber=Niepoprawna warto\u015B\u0107 portu +PAMSecurityRealm.ReadPermission=Jenkins musi mie\u0107 mo\u017Cliwo\u015B\u0107 odczytu /etc/shadow +PAMSecurityRealm.BelongToGroup={0} musi nale\u017Ce\u0107 do grupy {1} aby m\u00F3c odczyta\u0107 /etc/shadow +PAMSecurityRealm.Success=Sukces +PAMSecurityRealm.User=U\u017Cytkownik \u2018{0}\u2019 +PAMSecurityRealm.CurrentUser=Aktualny u\u017Cytkownik +Permission.Permissions.Title=nd. diff --git a/core/src/main/resources/hudson/security/Messages_sr.properties b/core/src/main/resources/hudson/security/Messages_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..0e944f27fb8cd18f9d84260b6ebb631c5e35eb02 --- /dev/null +++ b/core/src/main/resources/hudson/security/Messages_sr.properties @@ -0,0 +1,36 @@ +# This file is under the MIT License by authors + +GlobalSecurityConfiguration.DisplayName=\u0421\u0438\u0433\u0443\u0440\u043D\u043E\u0441\u043D\u0430 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 +GlobalSecurityConfiguration.Description=\u041E\u0431\u0435\u0437\u0431\u0435\u0434\u0438 Jenkins \u2014 \u043A\u043E \u0438\u043C\u0430 \u043F\u0440\u0438\u0441\u0442\u0443\u043F \u0441\u0438\u0441\u0442\u0435\u043C\u0443. +HudsonPrivateSecurityRealm.WouldYouLikeToSignUp=\u041E\u0432\u0430\u0458 {0} {1} \u0458\u0435 \u043D\u043E\u0432\u043E Jenkins-\u0443. \u0414\u0430\u043B\u0438 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u0441\u0435 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0443\u0458\u0435\u0442\u0435? +LegacyAuthorizationStrategy.DisplayName=\u0421\u0442\u0430\u0440\u0438 \u0440\u0435\u0436\u0438\u043C +HudsonPrivateSecurityRealm.DisplayName=\u0411\u0430\u0437\u0430 \u043F\u043E\u0434\u0430\u0442\u0430\u043A\u0430 \u0437\u0430 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0435 \u0443\u043D\u0443\u0442\u0430\u0440 Jenkins +HudsonPrivateSecurityRealm.Details.DisplayName=\u041B\u043E\u0437\u0438\u043D\u043A\u0430 +HudsonPrivateSecurityRealm.Details.PasswordError=\u041B\u043E\u0437\u0438\u043D\u043A\u0435 \u0441\u0435 \u043D\u0435 \u043F\u043E\u043A\u043B\u0430\u043F\u0430\u0458\u0443. \u041C\u043E\u043B\u0438\u043C\u043E \u0432\u0430\u0441, \u0443\u043D\u0435\u0441\u0438\u0442\u0435 \u043F\u043E\u043D\u043E\u0432\u043E. +HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=\u0423\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438\u043C\u0430 +HudsonPrivateSecurityRealm.ManageUserLinks.Description=\ \u041A\u0440\u0435\u0438\u0440\u0430\u0458/\u0438\u0437\u0431\u0440\u0438\u0448\u0438/\u0443\u0440\u0435\u0434\u0438 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0435 \u0441\u0430 \u043F\u0440\u0438\u0441\u0442\u0443\u043F\u043E\u043C \u043D\u0430 Jenkins +HudsonPrivateSecurityRealm.CreateAccount.TextNotMatchWordInImage=\u0422\u0435\u043A\u0441\u0442 \u043D\u0435 \u043E\u0434\u0433\u043E\u0432\u0430\u0440\u0430 \u0440\u0435\u045B \u043F\u043E\u043A\u0430\u0437\u0430\u043D \u0441\u043B\u0438\u043A\u043E\u043C +HudsonPrivateSecurityRealm.CreateAccount.PasswordNotMatch=\u041B\u043E\u0437\u0438\u043D\u043A\u0430 \u0441\u0435 \u043D\u0435 \u043F\u043E\u043A\u043B\u0430\u043F\u0430 +HudsonPrivateSecurityRealm.CreateAccount.PasswordRequired=\u041B\u043E\u0437\u0438\u043D\u043A\u0430 \u0458\u0435 \u043E\u0431\u0430\u0432\u0435\u0437\u043D\u0430 +HudsonPrivateSecurityRealm.CreateAccount.UserNameRequired=\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u043E \u0438\u043C\u0435 \u0458\u0435 \u043E\u0431\u0430\u0432\u0435\u0437\u043D\u043E +HudsonPrivateSecurityRealm.CreateAccount.InvalidEmailAddress=\u041D\u0435\u0432\u0430\u0436\u0435\u045B\u0430 \u0430\u0434\u0440\u0435\u0441\u0430 \u0435-\u043F\u043E\u0448\u0442\u0435 +HudsonPrivateSecurityRealm.CreateAccount.UserNameAlreadyTaken=\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u043E \u0438\u043C\u0435 \u0458\u0435 \u0432\u0435\u045B \u0437\u0430\u0443\u0437\u0435\u0442\u043E +FullControlOnceLoggedInAuthorizationStrategy.DisplayName=\u041F\u0440\u0438\u0458\u0430\u0432\u0459\u0435\u043D\u0438 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438 \u043C\u043E\u0433\u0443 \u0441\u0432\u0435 +AuthorizationStrategy.DisplayName=\u0421\u0432\u0438 \u043C\u043E\u0433\u0443 \u0441\u0432\u0435 +LDAPSecurityRealm.DisplayName=LDAP +LDAPSecurityRealm.SyntaxOfServerField=\u0428\u0430\u0431\u043B\u043E\u043D \u0441\u0435\u0440\u0432\u0435\u0440 \u043F\u043E\u0459\u0443 \u0458\u0435 \u0421\u0415\u0420\u0412\u0415\u0420 \u0438\u043B\u0438 \u0421\u0415\u0420\u0412\u0415\u0420:\u041F\u041E\u0420\u0422 or ldaps://\u0421\u0415\u0420\u0412\u0415\u0420[:\u041F\u041E\u0420\u0422] +LDAPSecurityRealm.UnknownHost=\u041D\u0435\u043F\u043E\u0437\u043D\u0430\u0442\u0438 \u0445\u043E\u0441\u0442: {0} +LDAPSecurityRealm.UnableToConnect=\u041D\u0438\u0458\u0435 \u043C\u043E\u0433\u0443\u045B\u0435 \u0441\u0435 \u043F\u043E\u0432\u0435\u0437\u0430\u0442\u0438 \u043D\u0430 {0} : {1} +LDAPSecurityRealm.InvalidPortNumber=\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u0430\u043D \u0431\u0440\u043E\u0458 \u043F\u043E\u0440\u0442\u0430 +LegacySecurityRealm.Displayname=\u0414\u0435\u043B\u0435\u0433\u0438\u0440\u0430\u0458 \u0441\u0435\u0440\u0432\u043B\u0435\u0442 \u043A\u043E\u043D\u0442\u0435\u0458\u043D\u0435\u0440\u0443 +UserDetailsServiceProxy.UnableToQuery=\u041D\u0438\u0458\u0435 \u043C\u043E\u0433\u0443\u045B\u0435 \u043F\u0440\u043E\u0458\u0430\u045B\u0438 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0443 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430: {0} +PAMSecurityRealm.DisplayName=\u0411\u0430\u0437\u0430 \u043F\u043E\u0434\u0430\u0442\u0430\u043A\u0430 \u043E \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438\u043C\u0430/\u0433\u0440\u0443\u043F\u0430 \u043D\u0430 Unix +PAMSecurityRealm.ReadPermission=Jenkins \u0431\u0438 \u0442\u0440\u0435\u0431\u0430\u043E \u0434\u0430 \u0431\u0443\u0434\u0435 \u0443 \u0441\u0442\u0430\u045A\u0443 \u0434\u0430 \u0443\u0447\u0438\u0442\u0430 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0443 "/etc/shadow". +PAMSecurityRealm.BelongToGroup={0} \u043C\u043E\u0440\u0430 \u043F\u0440\u0438\u043F\u0430\u0434\u0430\u0442\u0438 \u0433\u0440\u0443\u043F\u0438 {1} \u0434\u0430 \u0431\u0438 \u0443\u0447\u0438\u0442\u0430\u043E /etc/shadow +PAMSecurityRealm.RunAsUserOrBelongToGroupAndChmod=Jenkins \u0442\u0440\u0435\u0431\u0430 \u0431\u0438\u0442\u0438 \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u0442 \u043A\u0430\u043E {0} \u0438\u043B\u0438 {1} \u0442\u0440\u0435\u0431\u0430 \u043F\u0438\u0440\u0430\u0434\u0430\u0442\u0438 \u0433\u0440\u0443\u043F\u0438 {2} \u0438 \u2018chmod g+r /etc/shadow\u2019 \u0442\u0440\u0435\u0431\u0430 \u0431\u0438\u0442\u0438 \u0438\u0437\u0432\u0440\u0448\u0435\u043D\u043E \u0434\u0430 \u0431\u0438 Jenkins \u0443\u0447\u0438\u0442\u0430\u043E /etc/shadow +PAMSecurityRealm.Success=\u0423\u0441\u043F\u0435\u0448\u043D\u043E +PAMSecurityRealm.User=\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u043A '{0}' +PAMSecurityRealm.Uid=\u0418\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u043E\u043D\u0438 \u0431\u0440\u043E\u0458 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u0430: {0} +PAMSecurityRealm.CurrentUser=\u0422\u0440\u0435\u043D\u0443\u0442\u043D\u0438 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A +Permission.Permissions.Title=\u041D/\u0414 +AccessDeniedException2.MissingPermission={0} \u0444\u0430\u043B\u0438 \u043E\u0432\u043B\u0430\u0448\u045B\u0435\u045A\u0435 {1} \ No newline at end of file diff --git a/core/src/main/resources/hudson/security/Messages_zh_CN.properties b/core/src/main/resources/hudson/security/Messages_zh_CN.properties index a69de52c6a64dbe61012e10ba4dbe025d128172e..7a91ed9afed42813bf5cc8a2c3886ab53ecce0af 100644 --- a/core/src/main/resources/hudson/security/Messages_zh_CN.properties +++ b/core/src/main/resources/hudson/security/Messages_zh_CN.properties @@ -1,59 +1,52 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant, Seiji Sogabe -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -LegacyAuthorizationStrategy.DisplayName=\u9057\u7559\u6a21\u5f0f - -HudsonPrivateSecurityRealm.DisplayName=Jenkins\u4e13\u6709\u7528\u6237\u6570\u636e\u5e93 -HudsonPrivateSecurityRealm.Details.DisplayName=\u5bc6\u7801 -HudsonPrivateSecurityRealm.Details.PasswordError=\ - \u786e\u8ba4\u5bc6\u7801\u4e0e\u7b2c\u4e00\u6b21\u8f93\u5165\u7684\u4e0d\u4e00\u81f4. \ - \u8bf7\u786e\u8ba4\u4e24\u6b21\u5bc6\u7801\u8f93\u5165\u76f8\u540c. -HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=\u7ba1\u7406\u7528\u6237 -HudsonPrivateSecurityRealm.ManageUserLinks.Description=\u521b\u5efa/\u5220\u9664/\u4fee\u6539Jenkins\u7528\u6237 - -FullControlOnceLoggedInAuthorizationStrategy.DisplayName=\u767b\u5f55\u7528\u6237\u53ef\u4ee5\u505a\u4efb\u4f55\u4e8b - -AuthorizationStrategy.DisplayName=\u4efb\u4f55\u7528\u6237\u53ef\u4ee5\u505a\u4efb\u4f55\u4e8b(\u6ca1\u6709\u4efb\u4f55\u9650\u5236) - -LDAPSecurityRealm.DisplayName=LDAP -LDAPSecurityRealm.SyntaxOfServerField=Syntax of server field is SERVER or SERVER:PORT or ldaps://SERVER[:PORT] -LDAPSecurityRealm.UnknownHost=Unknown host: {0} -LDAPSecurityRealm.UnableToConnect=Unable to connect to {0} : {1} -LDAPSecurityRealm.InvalidPortNumber=Invalid port number - -LegacySecurityRealm.Displayname=Servlet\u5bb9\u5668\u4ee3\u7406 - -UserDetailsServiceProxy.UnableToQuery=\u6ca1\u6709\u68c0\u7d22\u5230\u8fd9\u4e2a\u7528\u6237\u4fe1\u606f: {0} - -PAMSecurityRealm.DisplayName=Unix\u7528\u6237/\u7ec4\u6570\u636e\u5e93 -PAMSecurityRealm.ReadPermission=Jenkins\u9700\u8981\u6709/etc/shadow\u8bfb\u7684\u6743\u9650 -PAMSecurityRealm.BelongToGroup={0}\u5fc5\u987b\u5c5e\u4e8e{1}\u7ec4\u6765\u8bfb\u53d6/etc/shadow -PAMSecurityRealm.RunAsUserOrBelongToGroupAndChmod=\ - Either Jenkins needs to run as {0} or {1} needs to belong to group {2} and ''chmod g+r /etc/shadow'' needs to be done to enable Jenkins to read /etc/shadow -PAMSecurityRealm.Success=\u6210\u529f -PAMSecurityRealm.User=\u7528\u6237 ''{0}'' -PAMSecurityRealm.CurrentUser=\u5f53\u524d\u7528\u6237 -PAMSecurityRealm.Uid=uid: {0} - -# not in use -Permission.Permissions.Title=N/A -AccessDeniedException2.MissingPermission={0}\u6ca1\u6709{1}\u6743\u9650 +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant, Seiji Sogabe +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +LegacyAuthorizationStrategy.DisplayName=\u9057\u7559\u6A21\u5F0F + +HudsonPrivateSecurityRealm.DisplayName=Jenkins\u4E13\u6709\u7528\u6237\u6570\u636E\u5E93 +HudsonPrivateSecurityRealm.Details.DisplayName=\u5BC6\u7801 +HudsonPrivateSecurityRealm.Details.PasswordError=\ + \u786E\u8BA4\u5BC6\u7801\u4E0E\u7B2C\u4E00\u6B21\u8F93\u5165\u7684\u4E0D\u4E00\u81F4. \ + \u8BF7\u786E\u8BA4\u4E24\u6B21\u5BC6\u7801\u8F93\u5165\u76F8\u540C. +HudsonPrivateSecurityRealm.ManageUserLinks.DisplayName=\u7BA1\u7406\u7528\u6237 +HudsonPrivateSecurityRealm.ManageUserLinks.Description=\u521B\u5EFA/\u5220\u9664/\u4FEE\u6539Jenkins\u7528\u6237 + +FullControlOnceLoggedInAuthorizationStrategy.DisplayName=\u767B\u5F55\u7528\u6237\u53EF\u4EE5\u505A\u4EFB\u4F55\u4E8B + +AuthorizationStrategy.DisplayName=\u4EFB\u4F55\u7528\u6237\u53EF\u4EE5\u505A\u4EFB\u4F55\u4E8B(\u6CA1\u6709\u4EFB\u4F55\u9650\u5236) + +LegacySecurityRealm.Displayname=Servlet\u5BB9\u5668\u4EE3\u7406 + +UserDetailsServiceProxy.UnableToQuery=\u6CA1\u6709\u68C0\u7D22\u5230\u8FD9\u4E2A\u7528\u6237\u4FE1\u606F: {0} + +PAMSecurityRealm.DisplayName=Unix\u7528\u6237/\u7EC4\u6570\u636E\u5E93 +PAMSecurityRealm.ReadPermission=Jenkins\u9700\u8981\u6709/etc/shadow\u8BFB\u7684\u6743\u9650 +PAMSecurityRealm.BelongToGroup={0}\u5FC5\u987B\u5C5E\u4E8E{1}\u7EC4\u6765\u8BFB\u53D6/etc/shadow +PAMSecurityRealm.RunAsUserOrBelongToGroupAndChmod=\ +PAMSecurityRealm.Success=\u6210\u529F +PAMSecurityRealm.User=\u7528\u6237 ''{0}'' +PAMSecurityRealm.CurrentUser=\u5F53\u524D\u7528\u6237 +PAMSecurityRealm.Uid=uid: {0} + +# not in use +Permission.Permissions.Title=N/A +AccessDeniedException2.MissingPermission={0}\u6CA1\u6709{1}\u6743\u9650 diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink.jelly b/core/src/main/resources/hudson/security/SecurityRealm/loginLink.jelly index 63de7d90a34a2557a3ca6ebd0110f72e5b2adb03..8b065c318b2c5b4f40aff81e366be098fe93c470 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink.jelly +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink.jelly @@ -25,9 +25,5 @@ THE SOFTWARE. - - - - - ${%login} + ${%login} diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_bg.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_bg.properties index 13f77447402faded9c48b60a492bf8f30fbf0b01..c63343d4501e174352700c8f62cbe55586e17c46 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_bg.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=\u0432\u0445\u043E\u0434 +login=\ + \u0432\u0445\u043e\u0434 diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_eo.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_eo.properties deleted file mode 100644 index b9027c72cd4d89b8852fa8d7166dcfff7306c000..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_eo.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -login=Ensaluti diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_fy_NL.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_fy_NL.properties deleted file mode 100644 index 43335b2496f14b369014da09495aca48dd8b72ae..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_fy_NL.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -login=jnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnbnbnbnbnbnbjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhyyyyyyyyyyyyyyyyyyyyyyyyyyyuuuuuuuuuuuuuuuuuuuuuuuuyuuuuuuuuuuuuuuuyuuuuuuuuuuuuuuuuuuuuuuuuuttttttttttttttttttttttttttcfdffffffffgggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ga_IE.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ga_IE.properties deleted file mode 100644 index 0b43476673ed3fefeaa268d40fd38747c6c46dea..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ga_IE.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -login=Log\u00E1il isteach diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_gl.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_gl.properties deleted file mode 100644 index 648f672bb891f1761c0a108e83d43bfa2cacd85a..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_gl.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -login=Acceder diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_hi_IN.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_hi_IN.properties deleted file mode 100644 index de1c5c8dcd2a8dc1dd89253bb6302074c2408d6e..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_hi_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -login=\u092A\u094D\u0930\u0935\u0947\u0936 \u0915\u0930\u0947 diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_is.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_is.properties deleted file mode 100644 index 2b54c6f26d60302a64650a7b7bc1782af302209a..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_is.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -login=innskr\u00E1 diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ka.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ka.properties deleted file mode 100644 index 609b1be4e7c3a72aba80a54e6bf3658a008d7af0..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ka.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -login=\u10E8\u10D4\u10E1\u10D5\u10DA\u10D0 diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_kn.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_kn.properties deleted file mode 100644 index 189cc0339b7ca15f56eb1a3eba978eb67b15dc7a..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_kn.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -login=\u0CB2\u0CBE\u0C97\u0CCD \u0C87\u0CA8\u0CCD \u0CAE\u0CBE\u0CA1\u0CBF diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_mr.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_mr.properties deleted file mode 100644 index 77408a2085bb0b3d7f1f7c5629beabdf20b45e27..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_mr.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -login=\u0932\u0949\u0917 \u0911\u0928 \u0915\u0930\u093E diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pl.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pl.properties index a17c45ef4e3e9efccbcba8a4c8a8c681631d36a8..8df91bd9295e680fdf53a47af04db6fca77117e0 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pl.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=zaloguj si\u0119 +login=Logowanie diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sq.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sq.properties deleted file mode 100644 index 1f4769096ec55392a1247442cac0fe56b7186504..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sq.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -login=hyrje diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sr.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sr.properties index d57edbe1596c5720c5239d8f0f8b3cf2ae38c86b..c7e7a1693ed818feeb9746e42b3dec95098fb470 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sr.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -login=Prijavi se +login=\u041F\u0440\u0438\u0458\u0430\u0432\u0438 \u0441\u0435 diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_te.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_te.properties deleted file mode 100644 index c36a0f83b6d96c6a0441aa3cb4649275efbdb98e..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_te.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -login=\u0C32\u0C3E\u0C17\u0C3F\u0C28\u0C4D diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_th.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_th.properties deleted file mode 100644 index ea49dedf8d9f88578955b255467d80b7aafd02a4..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_th.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -login=\u0E25\u0E47\u0E2D\u0E01\u0E2D\u0E34\u0E19 diff --git a/core/src/main/resources/hudson/security/SecurityRealm/signup_de.properties b/core/src/main/resources/hudson/security/SecurityRealm/signup_de.properties new file mode 100644 index 0000000000000000000000000000000000000000..9bb35dac39ba74a9d4686a9aa3866c43066c1b83 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/signup_de.properties @@ -0,0 +1,25 @@ +# The MIT License +# +# Copyright (c) 2017 Daniel Beck and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Sign\ up=Registrieren +This\ is\ not\ supported\ in\ the\ current\ configuration.=Dies ist in der aktuellen Konfiguration nicht unterst\u00FCtzt. +Signup\ not\ supported=Registrierung nicht unterst\u00FCtzt. diff --git a/core/src/main/resources/hudson/security/SecurityRealm/signup_pl.properties b/core/src/main/resources/hudson/security/SecurityRealm/signup_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..b8c44f57f31bf722302b1bd3e603335e03acf319 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/signup_pl.properties @@ -0,0 +1,25 @@ +# The MIT License +# +# Copyright (c) 2017, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +Signup\ not\ supported==Rejestracja nie jest wspierana +This\ is\ not\ supported\ in\ the\ current\ configuration.=Niedost\u0119pne dla aktualnej konfiguracji. +Sign\ up=Zarejestruj diff --git a/core/src/main/resources/hudson/security/SecurityRealm/signup_sr.properties b/core/src/main/resources/hudson/security/SecurityRealm/signup_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..b84ffe86ae4cfbcb0ec2b576b3186802314c1954 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/signup_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Signup\ not\ supported=\u041F\u0440\u0438\u0458\u0430\u0432\u0430 \u043D\u0438\u0458\u0435 \u043C\u043E\u0433\u0443\u045B\u0435 +Sign\ up=\u041F\u0440\u0438\u0458\u0430\u0432\u0438 \u0441\u0435 +This\ is\ not\ supported\ in\ the\ current\ configuration.=\u041D\u0438\u0458\u0435 \u043F\u043E\u0434\u0440\u0436\u0430\u043D\u043E \u0437\u0430 \u0442\u0435\u043A\u0443\u045B\u0443 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0458\u0443 diff --git a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_sr.properties b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..28f532fc9e5289979365484fc00dc05852520f45 --- /dev/null +++ b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Enable\ proxy\ compatibility=\u041E\u043C\u043E\u0433\u0443\u045B\u0438 \u043A\u043E\u043C\u043F\u0430\u0442\u0438\u0431\u0438\u043B\u0438\u043D\u043E\u0441\u0442 proxy-\u0430 diff --git a/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config.groovy b/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config.groovy index 5d71a4b807d2e9351a8471239bcef73089275321..0951384d93f6db4d90143399e0bf5da9f0ec8d97 100644 --- a/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config.groovy +++ b/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config.groovy @@ -6,10 +6,12 @@ def f=namespace(lib.FormTagLib) def all = CrumbIssuer.all() if (!all.isEmpty()) { - f.optionalBlock(field:"csrf", title:_("Prevent Cross Site Request Forgery exploits"), checked: app.useCrumbs ) { - f.entry(title:_("Crumbs")) { - table(style:"width:100%") { - f.descriptorRadioList(title:_("Crumb Algorithm"), varName:"issuer", instance:app.crumbIssuer, descriptors:all) + f.section(title: _("CSRF Protection")) { + f.optionalBlock(field:"csrf", title:_("Prevent Cross Site Request Forgery exploits"), checked: app.useCrumbs ) { + f.entry(title:_("Crumbs")) { + table(style:"width:100%") { + f.descriptorRadioList(title:_("Crumb Algorithm"), varName:"issuer", instance:app.crumbIssuer, descriptors:all) + } } } } diff --git a/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_sr.properties b/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..e81a8855eac1824cc63e19e9902323323f47e10b --- /dev/null +++ b/core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/config_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Prevent\ Cross\ Site\ Request\ Forgery\ exploits=\u0421\u043F\u0440\u0435\u0447\u0438 Cross Site Request Forgery \u043F\u0440\u043E\u0432\u0430\u043B\u0435 +Crumbs=\u041C\u0440\u0432\u0438\u0446\u0435 +Crumb\ Algorithm=\u0410\u043B\u0433\u043E\u0440\u0438\u0442\u0430\u043C \u043C\u0440\u0432\u0438\u0446\u0430 \ No newline at end of file diff --git a/core/src/main/resources/hudson/security/csrf/Messages_bg.properties b/core/src/main/resources/hudson/security/csrf/Messages_bg.properties index c44141cacdd957f7b17fbba0964bd1b1b590ce69..e42f9fceae54ce53c9ad2c88cad709b6a65e2bcd 100644 --- a/core/src/main/resources/hudson/security/csrf/Messages_bg.properties +++ b/core/src/main/resources/hudson/security/csrf/Messages_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Bulgarian translation copyright 2015 Alexander Shopov . +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/core/src/main/resources/hudson/security/csrf/Messages_sr.properties b/core/src/main/resources/hudson/security/csrf/Messages_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..b67ab3e3df42129c13d5f416e0ea888b0e2525ce --- /dev/null +++ b/core/src/main/resources/hudson/security/csrf/Messages_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +DefaultCrumbIssuer.DisplayName=\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u043D\u0438 \u0438\u0437\u0434\u0430\u0432\u0430\u0447 \u043C\u0440\u0432\u0438\u0446\u0430 \ No newline at end of file diff --git a/core/src/main/resources/hudson/slaves/AbstractCloudImpl/help-instanceCapStr.html b/core/src/main/resources/hudson/slaves/AbstractCloudImpl/help-instanceCapStr.html index 08a970a6bf9051f76a3e2ca0af4f0ec23e9fdc92..75a258c36e5076fc109dd4363f469adb8a398f6e 100644 --- a/core/src/main/resources/hudson/slaves/AbstractCloudImpl/help-instanceCapStr.html +++ b/core/src/main/resources/hudson/slaves/AbstractCloudImpl/help-instanceCapStr.html @@ -1,5 +1,5 @@
    - You can place the upward limit to the number of slaves that Jenkins may launch from this cloud. + You can place the upward limit to the number of agents that Jenkins may launch from this cloud. This is useful for avoiding surprises in the billing statement.

    diff --git a/core/src/main/resources/hudson/slaves/AbstractCloudImpl/help-instanceCapStr_zh_TW.html b/core/src/main/resources/hudson/slaves/AbstractCloudImpl/help-instanceCapStr_zh_TW.html deleted file mode 100644 index a8a73747dfceed6968d51f1f91cba5c0e0a118f7..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/AbstractCloudImpl/help-instanceCapStr_zh_TW.html +++ /dev/null @@ -1,11 +0,0 @@ -

    - 您可以設定 Jenkins 在這片雲中可以啟動的 Slave 上限數目。 - 可以避免收到帳單時受到太大的震憾。 - -

    - 以輸入 3 為例,Jenkins 在雲端執行個體數沒達上限前才能再啟動一個新的。 - 在這個方式下,最糟就算 Jenkins 起了執行個體後就置之不理,您還是有能同時執行的個體數上限。 - -

    - 不填的話代表不設上限。 -

    diff --git a/core/src/main/resources/hudson/slaves/Cloud/index.jelly b/core/src/main/resources/hudson/slaves/Cloud/index.jelly new file mode 100644 index 0000000000000000000000000000000000000000..88691cc3235b1009bda0cf189c3f1b976c741193 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/Cloud/index.jelly @@ -0,0 +1,42 @@ + + + + + + + + +

    ${%Cloud} ${it.name}

    + + + + + + + + +
    +
    +
    diff --git a/core/src/main/resources/hudson/slaves/Cloud/sidepanel.jelly b/core/src/main/resources/hudson/slaves/Cloud/sidepanel.jelly new file mode 100644 index 0000000000000000000000000000000000000000..7a47b57953c70ba217be619c8ff6fd0f294425e3 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/Cloud/sidepanel.jelly @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + diff --git a/core/src/main/resources/hudson/slaves/CommandConnector/config_sr.properties b/core/src/main/resources/hudson/slaves/CommandConnector/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..67a16da6ab6c0c3496e316b353bf41ad98ec2e99 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/CommandConnector/config_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Launch\ command=\u0418\u0437\u0432\u0440\u0448\u0438 \u043F\u0440\u043E\u0433\u0440\u0430\u043C \ No newline at end of file diff --git a/core/src/main/resources/hudson/slaves/CommandLauncher/config_sr.properties b/core/src/main/resources/hudson/slaves/CommandLauncher/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..f7053d115b3b9fc20527432f3615086f9eb5cb8b --- /dev/null +++ b/core/src/main/resources/hudson/slaves/CommandLauncher/config_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Launch\ command=\u041A\u043E\u043C\u0430\u043D\u0434\u0430 \u0437\u0430 \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0435 diff --git a/core/src/main/resources/hudson/slaves/CommandLauncher/help-command.html b/core/src/main/resources/hudson/slaves/CommandLauncher/help-command.html index 7177d11330b66c754a9fd2600ef82ba64aad2002..ad61686f9fcf2878546f1e7b10d78f87c0d11ca2 100644 --- a/core/src/main/resources/hudson/slaves/CommandLauncher/help-command.html +++ b/core/src/main/resources/hudson/slaves/CommandLauncher/help-command.html @@ -1,8 +1,8 @@
    - Command to be used to launch a slave agent program, which controls the slave + Command to be used to launch an agent program, which controls the agent computer and communicates with the master. Jenkins assumes that the executed program launches the slave.jar program on the correct - slave machine. + machine.

    A copy of slave.jar can be downloaded from here. @@ -11,9 +11,9 @@ In a simple case, this could be something like "ssh hostname java -jar ~/bin/slave.jar". - However, it is often a good idea to write a small shell script, like the following, on a slave + However, it is often a good idea to write a small shell script, like the following, on an agent so that you can control the location of Java and/or slave.jar, as well as set up any - environment variables specific to this slave node, such as PATH. + environment variables specific to this node, such as PATH.

     #!/bin/sh
    @@ -21,7 +21,7 @@ exec java -jar ~/bin/slave.jar
     

    - You can use any command to run a process on the slave machine, such as RSH, + You can use any command to run a process on the agent machine, such as RSH, as long as stdin/stdout of this process will be connected to "java -jar ~/bin/slave.jar" eventually. diff --git a/core/src/main/resources/hudson/slaves/CommandLauncher/help-command_de.html b/core/src/main/resources/hudson/slaves/CommandLauncher/help-command_de.html deleted file mode 100644 index 699a7272084a61483750401b9e962c4d1205ffbd..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/CommandLauncher/help-command_de.html +++ /dev/null @@ -1,42 +0,0 @@ -

    - Befehl, um einen Slave-Agenten zu starten, der den Slave-Knoten kontrolliert - und mit dem Master-Knoten kommuniziert. - -

    - Wenn in diesem Feld ein Befehl angegeben ist, so wird dieser auf dem Master-Knoten - ausgeführt. Jenkins nimmt in diesem Fall an, daß der ausgeführte Befehl - das Programm slave.jar auf dem jeweiligen Slave-Knoten startet. - -

    - slave.jar befindet sich als WEB-INF/slave.jar. - -

    - Ein einfachen Fällen, könnte der Befehl zum Beispiel so aussehen: - "ssh hostname java -jar ~/bin/slave.jar". - - Trotzdem ist es meistens eine gute Idee, ein kleines Shell-Skript wie das - folgende auf dem Slave-Knoten einzusetzen. Dies ermöglicht zum einen, den Pfad der - verwendeten Java-Installation und/oder des Archives slave.jar - zu kontrollieren, als auch Umgebungsvariablen zu setzen, die spezifisch für - den jeweiligen Slave-Knoten sind (etwa PATH). - -

    -#!/bin/sh
    -exec java -jar ~/bin/slave.jar
    -
    - -

    - Sie können jeden beliebigen Befehl verwenden, um einen Prozess auf dem - Slave-Knoten zu starten, z.B. rsh, solange die Standardein- und ausgabe - (STDIN, STDOUT) dieses Prozesses mit "java -jar ~/bin/slave.jar" verbunden sind. -

    - - In einer größeren Installation könnte man außerdem in Betracht ziehen, - slave.jar von einem gemeinsamen Netzlaufwerk zu laden, so daß die - komplette Installation einfacher aktualisiert werden kann. - -

    - Tipp: Eine Einstellung von "ssh -v hostname" kann hilfreich bei der Analyse von - Verbindungsproblemen sein. - -

    diff --git a/core/src/main/resources/hudson/slaves/CommandLauncher/help-command_pt_BR.html b/core/src/main/resources/hudson/slaves/CommandLauncher/help-command_pt_BR.html deleted file mode 100644 index 406267125f0a11bea95f984bf019865d6aa29522..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/CommandLauncher/help-command_pt_BR.html +++ /dev/null @@ -1,53 +0,0 @@ -
    - Comando para ser usado para lançar o program agente na máquina slave, o qual controla o - computador slave e se comunica com o master. - -

    Agentes slave JNLP

    -

    - Deixe este campo vazio se você quiser lançar os agentes slave via JNLP. - Com esta configuração, a página de informações do slave (jenkins/computer/***/) - terá um ícone de lançamento JNLP, e você poderá clicar no link da máquina slave - correta para lançar o agente slave via JNLP. -

    - Este modo é conveniente para slaves Windows que frequentemente não tem um mecanismo - de execução remota. - -

    Agentes slave ssh/rsh

    -

    - Quando um comando real é especificado neste campo, - este comando é executado na máquina - master, e o Jenkins assume que o programa executado lança o programa slave.jar - na máquina slave correta. - - -

    - Uma cópia de slave.jar pode ser encontrada em WEB-INF/slave.jar dentro de - jenkins.war. - -

    - Em um simples caso, isto poderia ser - algo como "ssh hostname java -jar ~/bin/slave.jar". - - Entretanto, é uma boa idéia escrever um pequeno shell script, como o seguinte, em um slave - tal que você possa controlar a localização do Java e/ou slave.jar, bem como configurar - qualquer variável de ambiente específica para este nó slave, tal como PATH. - -

    -#!/bin/sh
    -exec java -jar ~/bin/slave.jar
    -
    - -

    - Você pode usar qualquer comando para executar um processo na máquina slave, tal como RSH, - desde que as entrada/saída padrão (stdin/stdout) deste processo estejam eventualmente - conectadas a "java -jar ~/bin/slave.jar". - -

    - Em uma grande implantação, também é valioso considerar carregar slave.jar de - uma localização comum montada via NFS, assim você não tem que atualizar este arquivo toda vez - que você atualizar o Jenkins. - -

    - Definir isto como "ssh -v hostname" pode ser útil para depurar questões de - conectividade. -

    diff --git a/core/src/main/resources/hudson/slaves/CommandLauncher/help-command_tr.html b/core/src/main/resources/hudson/slaves/CommandLauncher/help-command_tr.html deleted file mode 100644 index 98943c41928c7c8703b54c8b1d5686c86684a5e1..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/CommandLauncher/help-command_tr.html +++ /dev/null @@ -1,38 +0,0 @@ -
    - Slave ajanı, slave bilgisayarı kontrol eder ve master bilgisayar ile iletişiminden - sorumludur. Buraya yazılacak komut, slave ajanı çalıştıracak komuttur. - -

    - Jenkins, burada belirtilen komutun, doğru slave üzerinde slave.jar'ı doğru şekilde - çalıştıracağını varsayar ve bu komutu master üzerinde çalıştırır. - - -

    - slave.jar'ın bir kopyası, jenkins.war'ın içerisinde WEB-INF - klasörü altında bulunabilir. - -

    - En basit şekilde, yazılacak komut "ssh hostname java -jar ~/bin/slave.jar" - şeklinde olmalıdır. - - Yinede aşağıdaki gibi bir shell script yazarsanız, Java'nın ve slave.jar'ın yerlerini - ve bu slave'e özgü olabilecek ortam değişkenlerini (mesela PATH), kolaylıkla - yönetebilirsiniz. - -

    -#!/bin/sh
    -exec java -jar ~/bin/slave.jar
    -
    - -

    - ?alıştırılacak komutun stdin/stdout metodları "java -jar ~/bin/slave.jar" ile - ilişkili olduğu sürece, slave makinede RSH gibi komutları çalıştırabilirsiniz. - -

    - Daha geniş bir sistemde, slave.jar dosyasını ortak bir dizinden (NFS-mounted) - okutursanız, Husdon'ı her güncellediğinizde slave'leri ayrı ayrı güncellemek zorunda kalmazsınız. - -

    - Bu kısımda "ssh -v hostname" şeklinde bir kullanım, bağlantıda oluşabilecek sorunları - çözmede yardımcı olacaktır. -

    diff --git a/core/src/main/resources/hudson/slaves/CommandLauncher/help-command_zh_TW.html b/core/src/main/resources/hudson/slaves/CommandLauncher/help-command_zh_TW.html deleted file mode 100644 index af1e220f352fb434cce7960bb8475261856452c6..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/CommandLauncher/help-command_zh_TW.html +++ /dev/null @@ -1,29 +0,0 @@ -
    - 啟動 Slave 代理程式的指令,可以控制 Slave 電腦並與 Master 溝通。 - Jenkins 假設執行的程式會在正式的 Slave 機器上啟動 slave.jar。 - -

    - 可以由這裡下載 slave.jar。 - -

    - 簡單一點就像 "ssh 主機名稱 java -jar ~/bin/slave.jar"。 - - 但是,一般會建議您在 Slave 上面寫一個小 Shell Script,控制 Java 及 slave.jar 的位置, - 也能設定 PATH 這類節點間不盡相同的環境變數。就像: - -

    -#!/bin/sh
    -exec java -jar ~/bin/slave.jar
    -
    - -

    - 您可以使用任何指令執行 Slave 機器上的程式,例如 RSH。 - 只要最後程式的 stdin 及 stdout 被連到 "java -jar ~/bin/slave.jar" 就好。 - -

    - 大型部署環境下,可以考慮從掛載 NFS 的共通位置中載入 slave.jar, - 就不用每次升級 Jenkins 時還要同步更新每部機器上的這個檔案。 - -

    - 設定成 "ssh -v 主機名稱" 可以幫助您處理連線問題。 -

    diff --git a/core/src/main/resources/hudson/slaves/CommandLauncher/help.properties b/core/src/main/resources/hudson/slaves/CommandLauncher/help.properties index e4d34a73f132adb67ee519a26dd63d205b8ce344..ea17495f1d071d95edc2eb9428ac4656dee9c87b 100644 --- a/core/src/main/resources/hudson/slaves/CommandLauncher/help.properties +++ b/core/src/main/resources/hudson/slaves/CommandLauncher/help.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Starts a slave by having Jenkins execute a command from the master. \ - Use this when the master is capable of remotely executing a process on a slave, such as through ssh/rsh. +blurb=Starts an agent by having Jenkins execute a command from the master. \ + Use this when the master is capable of remotely executing a process on another machine, e.g. via SSH or RSH. diff --git a/core/src/main/resources/hudson/slaves/CommandLauncher/help_da.properties b/core/src/main/resources/hudson/slaves/CommandLauncher/help_da.properties deleted file mode 100644 index 0c16c82c0780222b14f61d56f462ae051c21ca2b..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/CommandLauncher/help_da.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -blurb=Starter en ny slave ved at Jenkins k\u00f8rer en kommando p\u00e5 master''en. \ -Brug dette n\u00e5r master''en er i stand til at fjernafvikle en proces p\u00e5 slaven, for eksempel igennem ssh/rsh. diff --git a/core/src/main/resources/hudson/slaves/CommandLauncher/help_de.properties b/core/src/main/resources/hudson/slaves/CommandLauncher/help_de.properties index 68a036e25270b2545b4b51abb0deaabc2efedcdc..0093fdac95fa205d6bc00d6b13f01b8e89181d41 100644 --- a/core/src/main/resources/hudson/slaves/CommandLauncher/help_de.properties +++ b/core/src/main/resources/hudson/slaves/CommandLauncher/help_de.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Seiji Sogabe +# Copyright (c) 2017 Daniel Beck and a number of other of contributors # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,7 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\ - Startet einen Slave, indem Jenkins vom Master aus einen Befehl auf dem Slave ausfhrt. \ - Verwenden Sie diese Option, wenn Jenkins Befehle auf entfernten Slaves ausfhren \ - kann, z.B. ber ssh/rsh. +blurb=Startet einen Agenten durch Ausf\u00FChrung eines Befehls auf dem Master-Knoten. \ + Verwenden Sie diese Methode, wenn der Master-Knoten einen Prozess auf einem anderen System, z.B. via SSH oder RSH, ausf\u00FChren kann. diff --git a/core/src/main/resources/hudson/slaves/CommandLauncher/help_fr.properties b/core/src/main/resources/hudson/slaves/CommandLauncher/help_fr.properties deleted file mode 100644 index 724e3797a69535f0b971f555442b8bf0f8625bc0..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/CommandLauncher/help_fr.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Seiji Sogabe, Eric Lefevre-Ardant -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -blurb=Lance un esclave en demandant Jenkins d''excuter une commande partir de la machine matre. \ - Utilisez cela quand le matre est capable d''excuter distance des processus sur la machine esclave, par exemple par ssh/rsh. diff --git a/core/src/main/resources/hudson/slaves/CommandLauncher/help_ja.properties b/core/src/main/resources/hudson/slaves/CommandLauncher/help_ja.properties deleted file mode 100644 index c1dd1e4e0344b42c43cf579ef34b387554e36ec8..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/CommandLauncher/help_ja.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Seiji Sogabe -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -blurb=\u30DE\u30B9\u30BF\u304B\u3089\u30B3\u30DE\u30F3\u30C9\u3092\u5B9F\u884C\u3057\u3066\u30B9\u30EC\u30FC\u30D6\u3092\u8D77\u52D5\u3057\u307E\u3059\u3002\ - ssh\u3084rsh\u7D4C\u7531\u7B49\u3067\u3001\u30DE\u30B9\u30BF\u304C\u30B9\u30EC\u30FC\u30D6\u306E\u30D7\u30ED\u30BB\u30B9\u3092\u30EA\u30E2\u30FC\u30C8\u304B\u3089\u5B9F\u884C\u3067\u304D\u308B\u5834\u5408\u306B\u4F7F\u7528\u3057\u307E\u3059\u3002 diff --git a/core/src/main/resources/hudson/slaves/CommandLauncher/help_sr.properties b/core/src/main/resources/hudson/slaves/CommandLauncher/help_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..1f0dde07739dabebc261922fc594c560b4db6f52 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/CommandLauncher/help_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +blurb=\u041F\u043E\u043A\u0440\u0435\u043D\u0435 \u0430\u0433\u0435\u043D\u0442\u0430 \u0442\u0430\u043A\u043E \u0448\u0442\u043E Jenkins \u0438\u0437\u0432\u0440\u0448\u0438 \u043A\u043E\u043C\u0430\u043D\u0434\u0443 \u0441\u0430 \u0433\u043B\u0430\u0432\u043D\u0435 \u043C\u0430\u0448\u0438\u043D\u0435. \u041A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u043E\u0432\u0443 \u043E\u043F\u0446\u0438\u0458\u0443 \u043A\u0430\u0434 \u0433\u043E\u0434 \u0433\u043B\u0430\u0432\u043D\u0430 \u043C\u0430\u0448\u0438\u043D\u0430 \u0458\u0435 \u0443 \u0441\u0442\u0430\u045A\u0443 \u0434\u0430 \u0438\u0437\u0432\u0440\u0448\u0438 \u043F\u0440\u043E\u0446\u0435\u0441 \u043D\u0430 \u0434\u0440\u0443\u0433\u043E\u0458 \u043C\u0430\u0448\u0438\u043D\u0438, \u043D\u043F\u0440. \u043F\u0440\u0435\u043A\u043E SSH \u0438\u043B\u0438 RSH. diff --git a/core/src/main/resources/hudson/slaves/CommandLauncher/help_zh_TW.properties b/core/src/main/resources/hudson/slaves/CommandLauncher/help_zh_TW.properties deleted file mode 100644 index 7900696b3b1c19f7dad52dc1627195f81c199345..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/CommandLauncher/help_zh_TW.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -blurb=\u8b93 Jenkins \u5728 Master \u4e0a\u57f7\u884c\u6307\u4ee4\u555f\u52d5 Slave\u3002\ - \u9069\u7528\u65bc\u53ef\u4ee5\u9060\u7aef\u57f7\u884c Slave \u7a0b\u5f0f\u7684 Master\uff0c\u4f8b\u5982\u900f\u904e ssh \u6216 rsh\u3002 diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main.jelly b/core/src/main/resources/hudson/slaves/ComputerLauncher/main.jelly index 698a2674ee1989d132e78c4e546eb547f951b760..70b5aa9137a6c55e8315839b89dc113bbabc3427 100644 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main.jelly +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main.jelly @@ -34,7 +34,7 @@ THE SOFTWARE.
    - +
    @@ -42,7 +42,7 @@ THE SOFTWARE.
    - +
    diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_bg.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_bg.properties deleted file mode 100644 index 6f764d513ee3ce16d3e680cd355a061cf09a7318..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_bg.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Launch\ slave\ agent=\u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0439 \u0430\u0433\u0435\u043D\u0442\u0430 \u043D\u0430 \u043C\u0430\u0448\u0438\u043D\u0430\u0442\u0430 diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_da.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_da.properties index 16c281121633f1d2bdb0e5925d13e727af4aed21..51d84878fdaf84726355e4068bee9664994958e6 100644 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_da.properties +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_da.properties @@ -20,7 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Launch\ slave\ agent=Start slave agenter launchingDescription=Denne node er ved at starte op See\ log\ for\ more\ details=Se loggen for flere detaljer -Relaunch\ slave\ agent=Genstart slave agent diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_de.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_de.properties index 0646fb1fb33400e819ad1983fde44e53ab723f9d..ec43bed6aff9f7e3ac8f1e98dec2361161756682 100644 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_de.properties +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_de.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. See\ log\ for\ more\ details=Mehr dazu im Systemprotokoll -Launch\ slave\ agent=Slave-Agenten starten -launchingDescription=Dieser Knoten ist offline, weil Jenkins den dortigen Slave-Agenten nicht starten konnte. -Relaunch\ slave\ agent=Slave-Agenten neu starten +Relaunch\ agent=Agent neu starten +Launch\ agent=Agent starten +launchingDescription=Dieser Agent wird gerade gestartet. diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_es.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_es.properties index c999de630b7855eae7f8442fb33de4074c38bbfe..6d65f4a03fa16a54d4fa49229787881e435df778 100644 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_es.properties +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_es.properties @@ -22,5 +22,5 @@ launchingDescription=Este nodo va a ser ejecutado. See\ log\ for\ more\ details=Echa un vistazo al log para ver mas detalles -Launch\ slave\ agent=Lanzar agente esclavo -Relaunch\ slave\ agent=Relanzar agente esclavo +Launch\ agent=Lanzar agente +Relaunch\ agent=Relanzar agente diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_fr.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_fr.properties index 9607e04b059631b2c3797902c18ab34fb7eed93b..5b28b80fdc476abbed8c74cfad7f6fe10ab35714 100644 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_fr.properties +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_fr.properties @@ -21,4 +21,3 @@ # THE SOFTWARE. See\ log\ for\ more\ details=Voir les logs pour plus de dtails -Launch\ slave\ agent=Lancer l''agent esclave diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_ja.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_ja.properties index 7d1cb847a6bbf7accb271df9cf3066fb8359df54..1b6052a5e5646fac975e129e862abbcb18d0b730 100644 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_ja.properties +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_ja.properties @@ -21,6 +21,4 @@ # THE SOFTWARE. See\ log\ for\ more\ details=\u8A73\u7D30\u306F\u30ED\u30B0\u3092\u53C2\u7167 -Launch\ slave\ agent=\u30B9\u30EC\u30FC\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u8D77\u52D5 -Relaunch\ slave\ agent=\u30B9\u30EC\u30FC\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u518D\u8D77\u52D5 launchingDescription=\u3053\u306E\u30CE\u30FC\u30C9\u306F\u8D77\u52D5\u6E08\u307F\u3067\u3059\u3002 diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_pt_BR.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_pt_BR.properties index 58f89245df93db3de92ad1b365f43ce71bb74cd9..4fc0b8c1b0a44c58ec90947705d6827f2beb3962 100644 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_pt_BR.properties @@ -20,8 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Relaunch\ slave\ agent=Relan\u00e7ar o agente slave # This node is being launched. launchingDescription=Este n\u00f3 est\u00e1 sendo lan\u00e7ado -Launch\ slave\ agent=Lan\u00e7ar agente slave See\ log\ for\ more\ details=Veja o log para mais detalhes diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_ru.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_ru.properties deleted file mode 100644 index 90db7b8554da8501962c2f519f8e79b33a81ae1f..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_ru.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Launch\ slave\ agent=\u0412\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0443\u0437\u0435\u043B diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_sr.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..23f7fceb55abd588e379e5fed687044ea740dbcf --- /dev/null +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_sr.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +launchingDescription=\u041E\u0432\u0430 \u043C\u0430\u0448\u0438\u043D\u0430 \u0441\u0435 \u043F\u043E\u043A\u0440\u0435\u045B\u0435 +See\ log\ for\ more\ details=\u041F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 \u0436\u0443\u0440\u043D\u0430\u043B \u0437\u0430 \u0432\u0438\u0448\u0435 \u0434\u0435\u0442\u0430\u0459\u0430 +Relaunch\ agent=\u041F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0438 \u0430\u0433\u0435\u043D\u0442 +Launch\ agent=\u041F\u043E\u043A\u0440\u0435\u043D\u0438 \u0430\u0433\u0435\u043D\u0442 +description=\u041E\u0432\u0430 \u043C\u0430\u0448\u0438\u043D\u0430 \u045B\u0435 \u0431\u0438\u0442\u0438 \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u0430. diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_sv_SE.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_sv_SE.properties index 42f78c2c362ef40fd109546595783cf95799ccf6..61a5469b2318742d81c26b12215c932f6d562f9a 100644 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_sv_SE.properties +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_sv_SE.properties @@ -20,6 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Launch\ slave\ agent=Starta agent See\ log\ for\ more\ details=Se loggen f\u00F6r mer information description=Denna nod \u00E4r fr\u00E5nkopplad eftersom Jenkins kunde inte starta agenten p\u00E5 noden. diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_zh_TW.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_zh_TW.properties index 8505469b0969a0dba2e01ccfa63ef31183da04c8..787a6ef670694e80117edf514073031bb741f53b 100644 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_zh_TW.properties @@ -22,5 +22,3 @@ launchingDescription=\u672C\u7BC0\u9EDE\u6B63\u5728\u555F\u52D5\u4E2D\u3002 See\ log\ for\ more\ details=\u67E5\u770B\u65E5\u8A8C\u53D6\u5F97\u8A73\u7D30\u8CC7\u6599 -Relaunch\ slave\ agent=\u91CD\u65B0\u555F\u52D5 Slave \u4EE3\u7406\u7A0B\u5F0F -Launch\ slave\ agent=\u555F\u52D5 Slave \u4EE3\u7406\u7A0B\u5F0F diff --git a/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config.jelly b/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config.jelly index 843cb9d3c9c30162f5c8fa28f020ce9b0abc21b0..798f805eed268a7a088148c9dd1b8d4797ca322f 100644 --- a/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config.jelly +++ b/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config.jelly @@ -25,5 +25,5 @@ THE SOFTWARE. - + diff --git a/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_sr.properties b/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..147ac620f18b6184b4922674a1ce155506121653 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/DelegatingComputerLauncher/config_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Actual\ launch\ method=\u041C\u0435\u0442\u043E\u0434 \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0430 diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries.jelly b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries.jelly index 667e123f29eaf03ea62eccdf28b61f2aa63980c1..c06a9e1d3522a8a1c46e35b92566c13d88f9ed0c 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries.jelly +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries.jelly @@ -47,9 +47,10 @@ THE SOFTWARE. + - + @@ -63,10 +64,11 @@ THE SOFTWARE. - + + - + - + diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_ru.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_ru.properties index 453808d5bc19d6c3153049f616fc13d2d3b246be..5a6688a923fa90e62904606209384b35b2655074 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_ru.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_ru.properties @@ -20,14 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Master/Slave\ Support=\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u0433\u043b\u0430\u0432\u043d\u044b\u0439/\u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0439 Master=\u0413\u043b\u0430\u0432\u043d\u044b\u0439 Name=\u0418\u043c\u044f Description=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 This\ Jenkins\ server=\u0421\u0435\u0440\u0432\u0435\u0440 Jenkins \#\ of\ executors=\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432-\u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0435\u0439 Local\ FS\ root=\u041a\u043e\u0440\u0435\u043d\u044c \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0439 \u0424\u0421 -Slaves=\u041f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0435 Name\ is\ mandatory=\u0418\u043c\u044f \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044f \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u043d\u043e Number\ of\ executors\ is\ mandatory.=\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0435\u0439 \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u043d\u043e Remote\ root\ directory=\u041a\u043e\u0440\u0435\u043d\u044c \u0443\u0434\u0430\u043b\u0435\u043d\u043d\u043e\u0439 \u0424\u0421 diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_sr.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..080510945b9c451fdab2b21ba227d1ce88edd614 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_sr.properties @@ -0,0 +1,18 @@ +# This file is under the MIT License by authors + +Description=\u041E\u043F\u0438\u0441 +\#\ of\ executors=\u0431\u0440\u043E\u0458 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 +Remote\ root\ directory=\u0423\u0434\u0430\u0459\u0435\u043D\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C \u043A\u043E\u0440\u0435\u043D\u0430 +Labels=\u041B\u0430\u0431\u0435\u043B\u0435 +Launch\ method=\u041C\u0435\u0442\u043E\u0434 \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0430 +Availability=\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u043E\u0441\u0442 +Node\ Properties=\u041F\u043E\u0441\u0442\u0430\u0432\u043A\u0435 \u043C\u0430\u0448\u0438\u043D\u0435 +Master=\u0413\u043B\u0430\u0432\u043D\u0430 +Name=\u0418\u043C\u0435 +This\ Jenkins\ server=\u041E\u0432\u0430 Jenkins \u043C\u0430\u0448\u0438\u043D\u0430 +Local\ FS\ root=\u041A\u043E\u0440\u0435\u043D \u043B\u043E\u043A\u0430\u043B\u043D\u043E\u0433 \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430 +Name\ is\ mandatory=\u0418\u043C\u0435 \u0458\u0435 \u043E\u0431\u0430\u0432\u0435\u0437\u043D\u043E +Number\ of\ executors\ is\ mandatory.=\u0411\u0440\u043E\u0458 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 \u0458\u0435 \u043E\u0431\u0430\u0432\u0435\u0437\u043D\u043E +Remote\ directory\ is\ mandatory.=\u0423\u0434\u0430\u0459\u0435\u043D\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C \u043A\u043E\u0440\u0435\u043D\u0430 \u0458\u0435 \u043E\u0431\u0430\u0432\u0435\u0437\u043D\u043E +Usage=\u0423\u043F\u043E\u0442\u0440\u0435\u0431\u0430 +Save=\u0421\u0430\u0447\u0443\u0432\u0430\u0458 diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail.properties b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail.properties index 273ee6a2e6aea0fcac06dfdff86368f486b0cfac..70c380808ff77399815a4182564d0328627aa7fc 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. detail=\ - Adds a plain, dumb slave to Jenkins. This is called "dumb" because Jenkins doesn\u2019t provide \ - higher level of integration with these slaves, such as dynamic provisioning. \ - Select this type if no other slave types apply — for example such as when you are adding \ + Adds a plain, permanent agent to Jenkins. This is called "permanent" because Jenkins doesn\u2019t provide \ + higher level of integration with these agents, such as dynamic provisioning. \ + Select this type if no other agent types apply — for example such as when you are adding \ a physical computer, virtual machines managed outside Jenkins, etc. diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_da.properties b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_da.properties deleted file mode 100644 index 71e4c731a47a6948f3300f1e386d62af7c71aa0f..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_da.properties +++ /dev/null @@ -1,26 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -detail=Tilf\u00f8jer en almindelig dum slave til Jenkins. Disse slaver kaldes ''dumme'' da Jenkins ikke \ -tilbyder et h\u00f8jere niveau af kontrol over disse slaver, s\u00e5som dynamisk provisionering. \ -V\u00e6lg denne type hvis ingen anden slavetype passer — for eksempel hvis du \ -tilf\u00f8jer en fysisk computer/ virtuel maskine bestyret udenfor Jenkins, mv. diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_de.properties b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_de.properties index 0941e4501820a9e2c2a5293ab72f85e786407a3d..8d295ba08263c16bf0b96ffc6990ec482fbd8b8f 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_de.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_de.properties @@ -1,17 +1,17 @@ # The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi -# +# +# Copyright (c) 2017 Daniel Beck and a number of other of contributors +# # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: -# +# # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. -# +# # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -detail=F\u00FCgt einen einfachen, simplen Slave-Knoten hinzu. Der Knotentyp hei\u00DFt "dumb" (=einfach, simpel), da er \u00FCber keine enge Integration mit Jenkins verf\u00FCgt, wie etwa dynamische Aktualisierungen. Verwenden Sie diesen Knotentyp, wenn keine anderen Knotentypen passen — zum Beispiel wenn Sie einen real existierenden Rechner hinzuf\u00FCgen oder virtuelle Maschinen erg\u00E4nzen, die ausserhalb von Jenkins verwaltet werden, usw. +detail=Einfachen, statischen Agenten zu Jenkins hinzuf\u00FCgen. Statisch, da Jenkins keine weitere Integration mit diesen Agenten, wie z.B. dynamische Provisionierung, anbietet. W\u00E4hlen Sie diesen Typ, wenn kein anderer Agenten-Typ zutrifft, beispielsweise, wenn Sie einen (physischen) Computer oder au\u00DFerhalb von Jenkins verwaltete virtuelle Maschinen hinzuf\u00FCgen. diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_es.properties b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_es.properties index fee95acacc0fde8817efa09d30afe7957e46a453..97159a95122da634b740310e35c93251e4d7a2c4 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_es.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_es.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. detail=\ - Aadir un esclavo pasivo a Jenkins. Es llamado ''pasivo'' porque Jenkins no provee ningun tipo de \ - integracin de alto nivel con estos esclavos, como pueda ser aprovisionamiento dinmico. \ + Aadir un agente permanente a Jenkins. Es llamado ''permanente'' porque Jenkins no provee ningun tipo de \ + integracin de alto nivel con estos agentes, como pueda ser aprovisionamiento dinmico. \ Selecciona este tipo si no hay ningn otro tipo mas adecuado. Por ejemplo cuando se aaden \ maquinas fsicas o virtuales gestionadas desde fuera de Jenkins, etc. diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_fr.properties b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_fr.properties deleted file mode 100644 index 6aabb89a4ed8d1824d4ca5b8d519d029b92afba8..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_fr.properties +++ /dev/null @@ -1,27 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -detail=\ - Ajoute un esclave simple Jenkins. Cet esclave est dit "passif" ("dumb") car Jenkins ne fournit pas \ - d''intgration d''un niveau plus lev pour ce type d''esclave, comme le provisioning dynamique. \ - Slectionnez ce type si aucun autre type d''esclave ne s''applique — par exemple quand vous \ - ajoutez un ordinateur physique, une machine virtuelle gre sparment de Jenkins, etc. diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_ja.properties b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_ja.properties deleted file mode 100644 index 9e288307c57f9653181670b65407baeb9ed1b9c5..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_ja.properties +++ /dev/null @@ -1,27 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -detail=\ - \u30B7\u30F3\u30D7\u30EB\u3067\u57FA\u672C\u7684\u306A\u6A5F\u80FD\u3060\u3051\u3092\u6301\u3064\u30B9\u30EC\u30FC\u30D6\u3092\u8FFD\u52A0\u3057\u307E\u3059\u3002\u51E6\u7406\u91CF\u306B\u5FDC\u3058\u3066\u52D5\u7684\u306B\u30B9\u30EC\u30FC\u30D6\u3092\u8FFD\u52A0\u3059\u308B\u3088\u3046\u306A\u3001\ - \u9AD8\u30EC\u30D9\u30EB\u306E\u6A5F\u80FD\u3092\u63D0\u4F9B\u3057\u306A\u3044\u305F\u3081"\u30C0\u30E0(dumb)"\u3068\u547C\u3070\u308C\u307E\u3059\u3002\ - \u30B3\u30F3\u30D4\u30E5\u30FC\u30BF\u30FC\u3082\u3057\u304F\u306F\u3001Jenkins\u304C\u7BA1\u7406\u3057\u306A\u3044\u4EEE\u60F3\u30DE\u30B7\u30F3\u3092\u8FFD\u52A0\u3059\u308B\u3088\u3046\u306A\u3068\u304D\u306B\u3001\u4ED6\u306E\u30B9\u30EC\u30FC\u30D6\u3092\u5229\u7528\u3067\u304D\u306A\u3051\u308C\u3070\u3001\ - \u3053\u306E\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044\u3002 diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_pt_BR.properties b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_pt_BR.properties deleted file mode 100644 index 7a0e6597c5a77e93f8a247b90fe2293b81311598..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_pt_BR.properties +++ /dev/null @@ -1,28 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc., Cleiber Silva, Fernando Boaglio -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -# \ -# Adds a plain, dumb slave to Jenkins. This is called "dumb" because Jenkins doesn''t provide \ -# higher level of integration with these slaves, such as dynamic provisioning. \ -# Select this type if no other slave types apply — for example such as when you are adding \ -# a physical computer, virtual machines managed outside Jenkins, etc. -detail=Adiciona um slave simples e burro ao Jenkins. \u00c9 chamado "burro" porque o Jenkins n\u00e3o prov\u00ea um maior n\u00edvel de integra\u00e7\u00e3o com estes slaves, como um provisionamento din\u00e2mico. Selecione este tipo se nenhum outro slave se aplica; por exemplo como quando voc\u00ea est\u00e1 adicionando um computador f\u00edsico, m\u00e1quinas virtuais gerenci\u00e1veis fora do Jenkins, etc. diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_sr.properties b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..6b58ffb55f2387a366ba08dce5127f0f598b56bd --- /dev/null +++ b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +detail=\ +\u0414\u043E\u0434\u0430 \u043E\u0431\u0438\u0447\u0430\u043D, \u0442\u0440\u0430\u0458\u043D\u0438 \u0430\u0433\u0435\u043D\u0442 Jenkins-\u0443. \u0422\u0440\u0430\u0458\u043D\u043E \u0458\u0435 \u0437\u0430\u0448\u0442\u043E \u043D\u0435\u0434\u0430\u0458\u0435 \u0432\u0435\u045B\u0438 \u043D\u0438\u0432\u043E \u0438\u043D\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u0458\u0435 \u0441\u0430 \u043E\u0432\u0438\u043C \u0430\u0433\u0435\u043D\u0442\u0438\u043C\u0430, \u043A\u0430\u043E \u0434\u0438\u043D\u0430\u043C\u0438\u0447\u043D\u043E \u0441\u043D\u0430\u0431\u0434\u0435\u0432\u0430\u045A\u0435. \u0418\u0437\u0430\u0431\u0435\u0440\u0438\u0442\u0435 \u043E\u0432\u043E \u0430\u043A\u043E \u0434\u0440\u0443\u0433\u0435 \u0432\u0440\u0441\u0442\u0435 \u0430\u0433\u0435\u043D\u0430\u0442\u0430 \u043D\u0435 \u043E\u0434\u0433\u043E\u0432\u0430\u0440\u0430\u0458\u0443 — \u043D\u043F\u0440. \u043A\u0430\u0442 \u0434\u043E\u0434\u0430\u0458\u0435\u0442\u0435 \u0440\u0430\u0447\u0443\u043D\u0430\u0440 \u0438\u043B\u0438 \u0432\u0438\u0440\u0442\u0443\u0435\u043B\u043D\u0435 \u043C\u0430\u0448\u0438\u043D\u0435 \u0441\u043F\u043E\u0459\u043E\u043C Jenkins-\u0430. diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_sv_SE.properties b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_sv_SE.properties deleted file mode 100644 index 08870374414d2d84ec3a124127816a6645d9f2ff..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_sv_SE.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -detail=L\u00E4gger till en normal dum slav till Jenkins. Denna kallas "dum" eftersom Jenkins inte tillhandah\u00E5ller en h\u00F6gniv\u00E5integrering med slavarna, s\u00E5som dynamisk provisionering. V\u00E4lj denna typ om inga andra slavtyper g\u00E5r att till\u00E4mpa – som t ex n\u00E4r du l\u00E4gger till en fysisk dator, virtuella maskiner som hanteras utanf\u00F6r Jenkins, osv. diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_zh_TW.properties b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_zh_TW.properties deleted file mode 100644 index ea5e453e15851c7360af58f4434c94dc81f4eb70..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_zh_TW.properties +++ /dev/null @@ -1,26 +0,0 @@ -# The MIT License -# -# Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -detail=\ - \u65b0\u589e\u967d\u6625 Slave \u5230 Jenkins \u88e1\u3002\ - \u4e4b\u6240\u4ee5\u53eb\u505a\u300c\u967d\u6625\u300d\uff0c\u662f\u56e0\u70ba Jenkins \u6c92\u6709\u63d0\u4f9b\u9019\u985e Slave \u4e00\u4e9b\u9032\u968e\u6574\u5408\u529f\u80fd\uff0c\u4f8b\u5982\u52d5\u614b\u4f48\u5efa\u3002\ - \u6c92\u6709\u5176\u4ed6\u9069\u5408\u7684 Slave \u985e\u578b\u6642\u53ef\u4ee5\u4f7f\u7528\uff0c\u4f8b\u5982\u591a\u52a0\u4e86\u4e00\u90e8\u96fb\u8166\uff0c\u6216\u662f\u4e0d\u53d7 Jenkins \u7ba1\u7406\u7684\u865b\u64ec\u6a5f\u5668...\u3002 diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config.jelly b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config.jelly index 9cd7fbc2e62435eea4c88448b14e1f1b1419eb8e..b2becef5dcbae82e4b2d81bc94e03c8c0480af7d 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config.jelly +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config.jelly @@ -24,13 +24,13 @@ THE SOFTWARE. - + - + - + diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ca.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ca.properties index 1c81470a77b6901969a22d007479a63166045e89..312c2fd01a5d5f2c5c30ded838e1c5b35fee9792 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ca.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ca.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -name=nom -value=valor +Name=nom +Value=valor diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_da.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_da.properties index c433ae0a8283f0b787d3f3b0789c1d4095603083..86e73838343fb23f0c5a23e58e18e70af065073a 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_da.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_da.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -name=navn -value=v\u00e6rdi -List\ of\ key-value\ pairs=Liste af n\u00f8gle-v\u00e6rdi par +Name=navn +Value=v\u00e6rdi +List\ of\ variables=Liste af n\u00f8gle-v\u00e6rdi par diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_de.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_de.properties index b5a66fb4912a6d9bc65a7d1e03d691b3ae2758d5..ccbb48667ec81422ff4b107d94ca690cde686cd9 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_de.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_de.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -List\ of\ key-value\ pairs=Liste der Schlssel/Wert-Paare -name=Name -value=Wert +List\ of\ variables=Liste der Variablen +Name=Name +Value=Wert diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_es.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_es.properties index a490ffc34e43802560013be904a59464b81e183f..b0f51c8581bc34247add4e7c3188d68ffea359be 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_es.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_es.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -List\ of\ key-value\ pairs=Lista de nombre-valores -name=nombre -value=valor +List\ of\ variables=Lista de nombre-valores +Name=nombre +Value=valor diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_es_AR.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_es_AR.properties index c0989a3782f7782872b7f628d988a344137d295c..7ff0c10db68597b0ab9a2731aeab137691b01beb 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_es_AR.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_es_AR.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -name=nombre -value=valor +Name=nombre +Value=valor diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_fi.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_fi.properties index 95f1c7a0dcb99ead2f3e30411f640d7b0f8a8498..5ee81b48f516ea68ed111b57ae00ad481f66a8d1 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_fi.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_fi.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -List\ of\ key-value\ pairs=Lista avain-arvo pareja -name=nimi -value=arvo +List\ of\ variables=Lista avain-arvo pareja +Name=nimi +Value=arvo diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_fr.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_fr.properties index 1512c60d9f95ce1b3c1edadc1313470ca78313a6..5c0bd6de9375bc5fb0df18ef2f4f42f3b597f661 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_fr.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_fr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -List\ of\ key-value\ pairs=Liste des paires cl-valeur -name=nom -value=valeur +List\ of\ variables=Liste des paires cl-valeur +Name=nom +Value=valeur diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_he.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_he.properties index d732df9452c0885f6fd4d03420653ec75064a7cf..fced55bf18541ccb917b1827139d628b5f52b026 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_he.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_he.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -List\ of\ key-value\ pairs=\u05E8\u05E9\u05D9\u05DE\u05D4 \u05E9\u05DC \u05E9\u05D3\u05D4-\u05E2\u05E8\u05DA -name=\u05E9\u05DD -value=\u05E2\u05E8\u05DA +List\ of\ variables=\u05E8\u05E9\u05D9\u05DE\u05D4 \u05E9\u05DC \u05E9\u05D3\u05D4-\u05E2\u05E8\u05DA +Name=\u05E9\u05DD +Value=\u05E2\u05E8\u05DA diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_it.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_it.properties index 155f8ee2f4234c347cb5aa37ccce62d751c4006c..becdcdad03241462274272b46658931da2c7dd0a 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_it.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_it.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -List\ of\ key-value\ pairs=Lista di coppie chiave-valore -name=nome -value=valore +List\ of\ variables=Lista di coppie chiave-valore +Name=nome +Value=valore diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ja.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ja.properties index c5a5bf79f8081ea9834bb01bab9bf9749ccd27e0..d4ee4ce65bfbf0f86c875c90211ab47ade28e75a 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ja.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -List\ of\ key-value\ pairs=\u30AD\u30FC\u3068\u5024\u306E\u30EA\u30B9\u30C8 -name=\u30AD\u30FC -value=\u5024 +List\ of\ variables=\u30AD\u30FC\u3068\u5024\u306E\u30EA\u30B9\u30C8 +Name=\u30AD\u30FC +Value=\u5024 diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ko.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ko.properties index 328e56c2d4dbf58ad9f613b059093382a29ee648..3118f5607d5cdd329ece03f7d20c00ce1197acc5 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ko.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ko.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -List\ of\ key-value\ pairs=\uD0A4-\uAC12 \uBAA9\uB85D -name=\uC774\uB984 -value=\uAC12 +List\ of\ variables=\uD0A4-\uAC12 \uBAA9\uB85D +Name=\uC774\uB984 +Value=\uAC12 diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_lt.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_lt.properties index 106fcf98020beddd716dfc35c46f2e7852dc85dc..9c2b27879ab93369e39202435fba7c5798e798e9 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_lt.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_lt.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -name=pavadinimas -value=reik\u0161m\u0117 +Name=pavadinimas +Value=reik\u0161m\u0117 diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_nb_NO.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_nb_NO.properties index 934d2f3a66fcc9a82532f41136d38324cf6df1bf..63f92aa21357edb88e8ac5cf50f1e25d342e7d06 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_nb_NO.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_nb_NO.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -List\ of\ key-value\ pairs=Liste over n\u00F8kkel-verdi par -name=N\u00F8kkel -value=Verdi +List\ of\ variables=Liste over n\u00F8kkel-verdi par +Name=N\u00F8kkel +Value=Verdi diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_nl.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_nl.properties index ccdff27ce16fc33c44a4f4723c658f5d928d98d9..47de859a2bf1bee4901c661a05209ecf73e2cf42 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_nl.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_nl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -List\ of\ key-value\ pairs=Lijst van sleutel-waarde-paren -name=naam -value=waarde +List\ of\ variables=Lijst van sleutel-waarde-paren +Name=naam +Value=waarde diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pl.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pl.properties index 6590886f6c3cf0de82ad77d734e7ebde83daa66e..7774f0d27f61cc629dc14568d871c7ff654245b9 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pl.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pl.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -List\ of\ key-value\ pairs=Lista par klucz-warto\u015B\u0107 -name=nazwa -value=warto\u015B\u0107 +List\ of\ variables=Lista par klucz-warto\u015B\u0107 +Name=nazwa +Value=warto\u015B\u0107 diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pt_BR.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pt_BR.properties index c1c03bf6e81b8bc2fd296b51e053b4730c859cf2..4d580ac490070e92059698ebf01af0fc478b1216 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -value=valor -name=nome -List\ of\ key-value\ pairs=Lista de pares de chave-valor +Value=valor +Name=nome +List\ of\ variables=Lista de pares de chave-valor diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pt_PT.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pt_PT.properties index 7454a85ecc1619672586a1ff29f4604030b9c50b..a1bab80dd3eae8424359c599e1409085ea70dec2 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pt_PT.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pt_PT.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -List\ of\ key-value\ pairs=Lista de pares chave-valor -name=nome -value=valor +List\ of\ variables=Lista de pares chave-valor +Name=nome +Value=valor diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ru.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ru.properties index 369f0bf0333ac8b8c292e913ac2e38ad6c16372d..bdb277f7a12eba9a8d7d51dd68e58a366311ba43 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ru.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -List\ of\ key-value\ pairs=\u0421\u043F\u0438\u0441\u043E\u043A \u043F\u0430\u0440 "\u043A\u043B\u044E\u0447-\u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435" -name=\u0438\u043C\u044F -value=\u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 +List\ of\ variables=\u0421\u043F\u0438\u0441\u043E\u043A \u043F\u0430\u0440 "\u043A\u043B\u044E\u0447-\u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435" +Name=\u0438\u043C\u044F +Value=\u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sk.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sk.properties index 7cbfa3b0551e7f01f1b39a66ac528054574befa1..5d8d7592e304a403b8520fc14a592ba1d6bfd6a0 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sk.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sk.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -List\ of\ key-value\ pairs=Zoznam p\u00E1rov k\u013E\u00FA\u010D - hodnota -name=k\u013E\u00FA\u010D -value=hodnota +List\ of\ variables=Zoznam p\u00E1rov k\u013E\u00FA\u010D - hodnota +Name=k\u013E\u00FA\u010D +Value=hodnota diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sr.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..a656ba685a96f4f732f557b722f37d24f19780cd --- /dev/null +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +List\ of\ variables=\u0421\u043F\u0438\u0441\u0430\u043A \u043F\u0440\u043E\u043C\u0435\u043D\u0459\u0438\u0432\u0430 +Name=\u0418\u043C\u0435 +Value=\u0412\u0440\u0435\u0434\u043D\u043E\u0441\u0442 diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sv_SE.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sv_SE.properties index 89f32c98c574f80e39ab8288e09cf511641a1676..2c29646a5c9e13d17116f981f9f55e117e175a9d 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sv_SE.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sv_SE.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -List\ of\ key-value\ pairs=Lista p\u00E5 nyckel-v\u00E4rde par -name=namn -value=v\u00E4rde +List\ of\ variables=Lista p\u00E5 nyckel-v\u00E4rde par +Name=namn +Value=v\u00E4rde diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_zh_CN.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_zh_CN.properties index 3d6d6b76d85e84db99919385e6c87e10b4477e9b..e70d102c3c05bc4a0c620292d2b83c3f6b34bb8d 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_zh_CN.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_zh_CN.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -List\ of\ key-value\ pairs=\u952E\u503C\u5BF9\u5217\u8868 -name=\u952E -value=\u503c +List\ of\ variables=\u952E\u503C\u5BF9\u5217\u8868 +Name=\u952E +Value=\u503c diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_zh_TW.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_zh_TW.properties index 7176ec4fa6182791a0c86dae55170ac24a28dfbc..ad09037b0f8e56686241b3e4b2db542bc6e5cf01 100644 --- a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_zh_TW.properties @@ -21,6 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -List\ of\ key-value\ pairs=Key-Value \u5c0d\u61c9\u6e05\u55ae -name=\u540d\u7a31 -value=\u503c +List\ of\ variables=Key-Value \u5c0d\u61c9\u6e05\u55ae +Name=\u540d\u7a31 +Value=\u503c diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/config.jelly b/core/src/main/resources/hudson/slaves/JNLPLauncher/config.jelly index b1d938a50dce1984caf5769c75a31e864e0ff0fb..d0765ddb5b5ef9462fa721c6d2f2ed5322371076 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/config.jelly +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/config.jelly @@ -24,6 +24,10 @@ THE SOFTWARE. + + + + diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/config_sr.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..f33e2853a0de8ed3b651a8b914f2f3ba5b5f6849 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Tunnel\ connection\ through=\u041F\u043E\u0432\u0435\u0436\u0438 \u043F\u043E\u043C\u043E\u045B\u0435\u043C \u0442\u0443\u043D\u0435\u043B\u0430 +JVM\ options=JVM \u043E\u043F\u0446\u0438\u0458\u0435 diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs.html b/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs.html index a790e8cb3c2a4d2f653aada47322d6ec3c9d6a1d..085afd9482112d1e404f3e1f2f07bf1a2682d515 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs.html +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs.html @@ -1,5 +1,5 @@
    - If the slave JVM should be launched with additional VM arguments, such as "-Xmx256m", + If the agent JVM should be launched with additional VM arguments, such as "-Xmx256m", specify those here. List of all the options are available here.
    \ No newline at end of file diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_de.html b/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_de.html deleted file mode 100644 index cba877b87d5bbf6f2d1dfde691588949c996dd19..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_de.html +++ /dev/null @@ -1,5 +0,0 @@ -
    - Soll die Slave-JVM mit zusätzlichen VM-Argumenten gestartet werden, z.B. "-Xmx256m", - können Sie diese hier angeben. Eine Liste aller unterstützten Optionen finden Sie - hier. -
    \ No newline at end of file diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_zh_TW.html b/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_zh_TW.html deleted file mode 100644 index c60736e61b84f4f335ee15215d1a6dd8fdf2dac5..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_zh_TW.html +++ /dev/null @@ -1,4 +0,0 @@ -
    - 要是 Slave JVM 啟動時需要指定 "-Xmx256m" 這類額外的 VM 參數,可以在這裡設定。 - 在這裡可以看到所有選項。 -
    \ No newline at end of file diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/help.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/help.properties index b0c7d4df397006357fab55c274c84e5010293562..2b2bb03e0499f296ed0b121871a64e7f37e3f613 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/help.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/help.properties @@ -20,7 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Starts a slave by launching an agent program through JNLP. \ - The launch in this case is initiated by the slave, \ - thus slaves need not be IP reachable from the master (e.g. behind the firewall.) \ - It is still possible to start a launch without GUI, for example as a Windows service. \ No newline at end of file +blurb=Allows an agent to be launched using Java Web Start.
    \ + In this case, a JNLP file must be opened on the agent machine, which will \ + establish a TCP connection to the Jenkins master.
    \ + This means that the agent need not be reachable from the master; the agent \ + just needs to be able to reach the master. If you have enabled security via \ + the Configure Global Security page, you can customize the port on \ + which the Jenkins master will listen for incoming JNLP agent connections.
    \ + By default, the JNLP agent will launch a GUI, but it's also possible to run \ + a JNLP agent without a GUI, e.g. as a Window service. diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_da.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/help_da.properties deleted file mode 100644 index 9a21976acd5d5bc58540cc5ff84d307d7180dd34..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_da.properties +++ /dev/null @@ -1,26 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -blurb=Starter en slave via et agentprogram gennem JNLP. \ -Slave opstarten bliver i dette tilf\u00e6lde initieret af slaven, \ -s\u00e5ledes beh\u00f8ver slaven i dette tilf\u00e6lde ikke at v\u00e6re IP tilg\u00e6ngelig fra master''en (f.eks. bag en firewall.) \ -Det er ogs\u00e5 her muligt at starte slaven uden GUI, for eksempel som en Windows service. diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_es.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/help_es.properties index 76bb39241adc9160114a1bfbb2b96e80eb0233f7..26aee9fd3a1fb2bf83bcab1b346fe4dd540dd0ea 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_es.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/help_es.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Arranca un esclavo ejecutando un programa agente usando JNLP.\ - De modo que el esclavo inicia la ejecucin, por lo que los esclavos no necesitan una IP accesible desde el master. \ +blurb=Arranca un agente haciendo uso de JNLP.\ + De modo que el agente inicia la ejecucin, por lo que los agentes no necesitan una IP accesible desde el master. \ Incluso es posible arrancar una ejecucin sin GUI, como puede ser un servicio Windows. diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_fr.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/help_fr.properties deleted file mode 100644 index 796bd6c0064f51289b45bc032159923f40f8ca16..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_fr.properties +++ /dev/null @@ -1,26 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Seiji Sogabe, Eric Lefevre-Ardant -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -blurb=Lance un esclave en dmarrant un agent par JNLP. \ - Le lancement dans ce cas est initi par l''esclave ; \ - ainsi, les esclaves n''ont pas besoin d''tre accessibles par IP par la machine matre (par exemple s''ils sont derrire un firewall.) \ - Il reste possible de lancer un dmarrage sans GUI, par exemple par un service Windows. diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_ja.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/help_ja.properties deleted file mode 100644 index 6318fac04eb15e690d90a1a0e450a4765627102c..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_ja.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Seiji Sogabe -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -blurb=JNLP\u7D4C\u7531\u3067\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u30D7\u30ED\u30B0\u30E9\u30E0\u3092\u5B9F\u884C\u3059\u308B\u3053\u3068\u3067\u30B9\u30EC\u30FC\u30D6\u3092\u8D77\u52D5\u3057\u307E\u3059\u3002\ - \u3053\u306E\u5834\u5408\u8D77\u52D5\u306F\u30B9\u30EC\u30FC\u30D6\u304B\u3089\u958B\u59CB\u3059\u308B\u306E\u3067\u3001\u30B9\u30EC\u30FC\u30D6\u306F\u30DE\u30B9\u30BF\u304B\u3089IP\u30EA\u30FC\u30C1\u30E3\u30D6\u30EB\u3067\u3042\u308B\u5FC5\u8981\u306F\u3042\u308A\u307E\u305B\u3093(\u4F8B \u30D5\u30A1\u30A4\u30A2\u30FC\u30A6\u30A9\u30FC\u30EB\u306E\u4E2D\u306A\u3069)\u3002\ - \u4F8B\u3048\u3070Windows\u30B5\u30FC\u30D3\u30B9\u306A\u3069\u3001GUI\u306A\u3057\u3067\u3082\u8D77\u52D5\u3059\u308B\u3053\u3068\u304C\u3067\u304D\u307E\u3059\u3002 diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_pt_BR.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/help_pt_BR.properties deleted file mode 100644 index 7aee9cf2b8d5b1554154435be65ced2328512d1b..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_pt_BR.properties +++ /dev/null @@ -1,31 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc., Cleiber Silva, Fernando Boaglio -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -# Starts a slave by launching an agent program through JNLP. \ -# The launch in this case is initiated by the slave, \ -# thus slaves need not be IP reachable from the master (e.g. behind the firewall.) \ -# It is still possible to start a launch without GUI, for example as a Windows service. -blurb=Iniciar um slave pelo programa agente JNLP. \ - Nesse caso, o lan\u00e7amento \u00e9 iniciado pelo slave, \ - porem o endere\u00e7o IP do Slave precisa ser alcan\u00e7avel pelo master (ex.: firewall ou proxy), - Tamb\u00e9m \u00e9 possivel lan\u00e7ar sem GUI, por exemplo como um servi\u00e7o do Windows. - diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_sr.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/help_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..fba74a2438d697f47ff671f19b8d3f06b9aad048 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/help_sr.properties @@ -0,0 +1,11 @@ +# This file is under the MIT License by authors + +blurb=\u041E\u043C\u043E\u0433\u0443\u045B\u0430\u0432\u0430 \u0434\u0430 \u0441\u0435 \u043F\u043E\u043A\u0440\u0435\u043D\u0435 \u0430\u0433\u0435\u043D\u0442 \u043F\u0440\u0435\u043A\u043E Java Web Start.
    \ + \u0423 \u0442\u043E\u043C \u0441\u043B\u0443\u0447\u0430\u0458\u0443, JNLP \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u043C\u043E\u0440\u0430 \u0431\u0438\u0442\u0438 \u043E\u0442\u0432\u043E\u0440\u0435\u043D\u0430 \u043D\u0430 \u043C\u0430\u0448\u0438\u043D\u0438 \u0430\u0433\u0435\u043D\u0442\u0430, \u043A\u043E\u0458\u0430 \u045B\u0435 \u0431\u0438\u0442\u0438 \ + \u043F\u043E\u0432\u0435\u0436\u0435\u043D\u0430 TCP \u0432\u0435\u0437\u043E\u043C \u043D\u0430 Jenkins \u043C\u0430\u0441\u0442\u0435\u0440.
    \ + \u0410\u0433\u0435\u043D\u0442 \u043D\u0435 \u043C\u043E\u0440\u0430 \u0431\u0438\u0442\u0438 \u0434\u043E\u0441\u0442\u0443\u043F\u0430\u043D \u043C\u0430\u0441\u0442\u0435\u0440\u043E\u043C; \u0430\u0433\u0435\u043D\u0442 \ + \u0458\u0435\u0434\u0438\u043D\u043E \u043C\u043E\u0440\u0430 \u0431\u0438\u0442\u0438 \u0443 \u0441\u0442\u0430\u045A\u0443 \u0434\u0430 \u043D\u0430\u0452\u0435 \u043C\u0430\u0441\u0442\u0435\u0440\u0430. \u0410\u043A\u043E \u0441\u0442\u0435 \u043E\u043C\u043E\u0433\u0443\u045B\u0438\u043B\u0438 \u0431\u0435\u0437\u0431\u0435\u0434\u043D\u0438 \u0440\u0435\u0436\u0438\u043C \ + \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0438 \u041F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0431\u0435\u0437\u0431\u0435\u0434\u043D\u043E\u0441\u0442\u0438, \u043C\u043E\u0436\u0435\u0442\u0435 \u043D\u0430\u0432\u0435\u0441\u0442\u0438 \u043F\u043E\u0440\u0442 \u043F\u0440\u0435\u043A\u043E \ + \u043A\u043E\u0458\u0435 \u045B\u0435 \u043C\u0430\u0441\u0442\u0435\u0440 Jenkins \u043C\u0430\u0448\u0438\u043D\u0430 \u0441\u043B\u0443\u0448\u0430\u0442\u0438 \u0437\u0430 \u0434\u043E\u043B\u0430\u0437\u0435\u045B\u0435 JNLP \u0432\u0435\u0437\u0435.
    \ + JNLP \u0430\u0433\u0435\u043D\u0442 \u045B\u0435 \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u0438 \u0433\u0440\u0430\u0444\u0438\u0447\u043A\u0438 \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0458\u0441, \u043C\u0435\u0452\u0443\u0442\u0438\u043C \u043C\u043E\u0433\u0443\u045B\u0435 \u0458\u0435 \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u0438 \ + JNLP \u0430\u0433\u0435\u043D\u0442\u0430 \u0431\u0435\u0437 \u0433\u0440\u0430\u0444\u0438\u0447\u043A\u043E\u0433 \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0438\u0458\u0441\u0430, \u043D\u043F\u0440. \u043A\u0430\u043E Windows \u0441\u0435\u0440\u0432\u0438\u0441. \ No newline at end of file diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_zh_TW.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/help_zh_TW.properties deleted file mode 100644 index 19db6e81fff70bda6de1a97642bf2032e3591ab9..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/help_zh_TW.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -blurb=\u900f\u904e JNLP \u555f\u52d5 Slave \u4ee3\u7406\u7a0b\u5f0f\u3002\ - \u7531 Slave \u4e3b\u52d5\u7684\u555f\u52d5\u65b9\u5f0f\uff0cMaster \u4e0d\u7528\u76f4\u63a5 IP \u9023\u7dda\u5230 Slave (\u4f8b\u5982\u5728\u9632\u706b\u7246\u5f8c)\u3002\ - \u9019\u7a2e\u65b9\u5f0f\u4e00\u6a23\u53ef\u4ee5\u4e0d\u900f\u904e GUI \u555f\u52d5\uff0c\u4f8b\u5982\u5b89\u88dd\u6210 Windows \u670d\u52d9\u3002 diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main.jelly b/core/src/main/resources/hudson/slaves/JNLPLauncher/main.jelly index 1e99285e5ce8366044bc2d1eb71203a80ab74afc..e5ddc0ba4607b5e68439eabfe35e84084176c050 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main.jelly +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main.jelly @@ -34,7 +34,7 @@ THE SOFTWARE.

    - ${%Connect slave to Jenkins one of these ways:} + ${%Connect agent to Jenkins one of these ways:}

    • @@ -42,31 +42,31 @@ THE SOFTWARE. ${%launch agent} - ${%Launch agent from browser on slave} + ${%Launch agent from browser}

    • - ${%Run from slave command line:} + ${%Run from agent command line:}

      javaws ${h.inferHudsonURL(request)}${it.url}slave-agent.jnlp
    • - ${%Or if the slave is headless:} + ${%Or if the agent is headless:}

      -
      java${it.launcher.vmargs == null ? '' : ' ' + it.launcher.vmargs} -jar slave.jar -jnlpUrl ${h.inferHudsonURL(request)}${it.url}slave-agent.jnlp
      +
      java${it.launcher.vmargs == null ? '' : ' ' + it.launcher.vmargs} -jar slave.jar -jnlpUrl ${h.inferHudsonURL(request)}${it.url}slave-agent.jnlp ${it.launcher.getWorkDirOptions(it)}
    • - ${%Run from slave command line:} + ${%Run from agent command line:}

      -
      java${it.launcher.vmargs == null ? '' : ' ' + it.launcher.vmargs} -jar slave.jar -jnlpUrl ${h.inferHudsonURL(request)}${it.url}slave-agent.jnlp -secret ${it.jnlpMac}
      +
      java${it.launcher.vmargs == null ? '' : ' ' + it.launcher.vmargs} -jar slave.jar -jnlpUrl ${h.inferHudsonURL(request)}${it.url}slave-agent.jnlp -secret ${it.jnlpMac} ${it.launcher.getWorkDirOptions(it)}
    • diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main.properties index b73c1bc2b2dafe03dda0e76910b6fda1c4d6d4b1..a221fc6c6a0cf2475bbf711d04a590e6dd084350 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -slaveAgentPort.disabled=TCP port for JNLP slave agents is disabled. configure.link.text=Go to security configuration screen and change it +slaveAgentPort.disabled=JNLP agent port is disabled and agents cannot connect this way. \ No newline at end of file diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_da.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_da.properties index af983756bd328c28a0db5cc16bed5eceece40878..e34b1b1c5354e987b3bb11fec330a267abbc334e 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_da.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_da.properties @@ -20,10 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Connect\ slave\ to\ Jenkins\ one\ of\ these\ ways\:=Forbind Jenkins til slaver p\u00e5 en af f\u00f8lgende m\u00e5der: launch\ agent=start agent Connected\ via\ JNLP\ agent.=Forbundet via JNLP agent. -Or\ if\ the\ slave\ is\ headless\:=Eller hvis slaven er hovedl\u00f8s: -Run\ from\ slave\ command\ line\:=K\u00f8r fra slavens kommandolinje: -slaveAgentPort.disabled=TCP port for JNLP slave agent er sl\u00e5et fra. -Launch\ agent\ from\ browser\ on\ slave=Start agent fra browser p\u00e5 slaven diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_de.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_de.properties index c3c9a4be4a06b6628c5c881d1ee39b340cd4c6f8..92fdae4babc92b62962868e46b6514403310d8ea 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_de.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_de.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -slaveAgentPort.disabled=TCP-Port fr JNLP-Slaves ist deaktiviert. -configure.link.text=Zur globalen Sicherheitskonfiguration wechseln und ndern -Connect\ slave\ to\ Jenkins\ one\ of\ these\ ways\:=Der Slave kann eine Verbindung zum Jenkins-Master mit einer der folgenden Mglichkeiten aufbauen: +configure.link.text=Zur globalen Sicherheitskonfiguration wechseln und \u00E4ndern launch\ agent=Agent starten -Launch\ agent\ from\ browser\ on\ slave=Agent aus einem Webbrowser auf den Slave starten -Run\ from\ slave\ command\ line\:=Agent aus der Kommandozeile heraus starten: -Or\ if\ the\ slave\ is\ headless\:=Oder falls der Slave keine GUI anbietet ("headless"-Modus): -Connected\ via\ JNLP\ agent.=Verbunden ber JNLP-Agent. +Connected\ via\ JNLP\ agent.=Verbunden \u00FCber JNLP-Agent. +slaveAgentPort.disabled=JNLP=Agenten k\u00F6nnen nicht verbinden, da der JNLP-Port deaktiviert ist. +Launch\ agent\ from\ browser=JNLP-Agent via Webbrowser starten +Connect\ agent\ to\ Jenkins\ one\ of\ these\ ways\:=M\u00F6glichkeiten, den Agent mit Jenkins zu verbinden: +Run\ from\ agent\ command\ line\:=Auf der Befehlszeile ausf\u00FChren: +Or\ if\ the\ agent\ is\ headless\:=Wenn der Agent ohne grafische Oberfl\u00E4che benutzt wird: diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_es.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_es.properties index b47a4cb7bde055d96b82114412aa7523184cef73..390cf03a391b488ce4a606b0694d9506ca6421e3 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_es.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_es.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -slaveAgentPort.disabled=El puerto TCP para los agentes esclavos via JNLP est deshabilitado. +slaveAgentPort.disabled=El puerto TCP para los agentes via JNLP est deshabilitado. launch\ agent=Lanzar agente -Or\ if\ the\ slave\ is\ headless\:=O si el esclavo no tiene pantalla -Run\ from\ slave\ command\ line\:=Ejecutar desde la lnea de comandos del esclavo -Launch\ agent\ from\ browser\ on\ slave=Lanzar el agente desde el navegador en el esclavo -Connect\ slave\ to\ Jenkins\ one\ of\ these\ ways\:=Conectar el esclavo a Jenkins usando uno de estos mtodos +Or\ if\ the\ agent\ is\ headless\:=O si el agente no tiene pantalla +Run\ from\ agent\ command\ line\:=Ejecutar agente desde la lnea de comandos del nodo +Launch\ agent\ from\ browser=Lanzar el agente desde el navegador en el nodo +Connect\ agent\ to\ Jenkins\ one\ of\ these\ ways\:=Conectar el agente a Jenkins usando uno de estos mtodos Connected\ via\ JNLP\ agent.=Conectado a travs del agente JNLP diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_fr.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_fr.properties index d8483c0298cfd237766a818dded97e6a54d43378..e0bca578cf312f99aface6dc7f5d4e714bb33934 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_fr.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_fr.properties @@ -20,9 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -slaveAgentPort.disabled=Le port TCP pour l''esclave JNLP est d\u00E9sactiv\u00E9. -Launch\ agent\ from\ browser\ on\ slave=Lancer l''agent \u00E0 partir du navigateur sur l''esclave -Run\ from\ slave\ command\ line:=Ex\u00E9cuter l''esclave \u00E0 partir de l\u2019interpr\u00E8te de commandes +Run\ from\ agent\ command\ line:=Ex\u00E9cuter l''esclave \u00E0 partir de l\u2019interpr\u00E8te de commandes launch\ agent=lancer l''agent -Connect\ slave\ to\ Jenkins\ one\ of\ these\ ways:=Connecter l''esclave \u00E0 Jenkins avec l''une des mani\u00E8res suivantes: +Connect\ agent\ to\ Jenkins\ one\ of\ these\ ways:=Connecter l''esclave \u00E0 Jenkins avec l''une des mani\u00E8res suivantes: Connected\ via\ JNLP\ agent.=Connect\u00E9 via l\u2019agent JNLP. diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ja.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ja.properties index 224e55109519603cb861184b75a51f7425811310..49e9af614f09ac63ebe9e7544d5f7779cd0d886c 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ja.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ja.properties @@ -20,11 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -slaveAgentPort.disabled=JNLP\u30b9\u30ec\u30fc\u30d6\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u7528\u306eTCP\u30dd\u30fc\u30c8\u306f\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093\u3002 -Connect\ slave\ to\ Jenkins\ one\ of\ these\ ways\:=\u6b21\u306e\u3044\u305a\u308c\u304b\u306e\u65b9\u6cd5\u3067\u30b9\u30ec\u30fc\u30d6\u3092Jenkins\u306b\u63a5\u7d9a\u3057\u307e\u3059\u3002 launch\ agent=\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u306e\u8d77\u52d5 -Launch\ agent\ from\ browser\ on\ slave=\u30b9\u30ec\u30fc\u30d6\u4e0a\u306e\u30d6\u30e9\u30a6\u30b6\u304b\u3089\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u3092\u8d77\u52d5 -Run\ from\ slave\ command\ line\:=\u30b9\u30ec\u30fc\u30d6\u3067\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u304b\u3089\u8d77\u52d5: -Or\ if\ the\ slave\ is\ headless\:=\u3082\u3057\u304f\u306f\u3001\u30b9\u30ec\u30fc\u30d6\u3067X\u304c\u8d77\u52d5\u3057\u3066\u3044\u306a\u3044\u5834\u5408: Connected\ via\ JNLP\ agent.=JNLP\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u7d4c\u7531\u3067\u63a5\u7d9a -configure.link.text=\u30b0\u30ed\u30fc\u30d0\u30eb\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u306e\u8a2d\u5b9a\u30da\u30fc\u30b8\u3067\u5909\u66f4\u3057\u3066\u304f\u3060\u3055\u3044\u3002 \ No newline at end of file +configure.link.text=\u30b0\u30ed\u30fc\u30d0\u30eb\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u306e\u8a2d\u5b9a\u30da\u30fc\u30b8\u3067\u5909\u66f4\u3057\u3066\u304f\u3060\u3055\u3044\u3002 diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_pt_BR.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_pt_BR.properties index a20ddaa4b963ff0478a2d0510dd2b08ec06f9f6f..af9f3c2747aa242b72047ca0921c064994365d65 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_pt_BR.properties @@ -20,13 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Or\ if\ the\ slave\ is\ headless\:=Ou, se o slave \u00e9 sem master -Connect\ slave\ to\ Jenkins\ one\ of\ these\ ways\:=Conecta slave ao Jenkins por uma dessas maneiras: -Run\ from\ slave\ command\ line\:=Executar comando de linha pelo slave launch\ agent=Lan\u00e7ar agente # TCP port for JNLP slave agents is disabled. slaveAgentPort.disabled=Porta TCP para JNLP est\u00e1 desativada -Launch\ agent\ from\ browser\ on\ slave=Lan\u00e7ar agente de um navegador do slave Connected\ via\ JNLP\ agent.=Conectado via JNLP agente. # Go to security configuration screen and change it configure.link.text=V\u00e1 para a p\u00e1gina de configura\u00e7\u00e3o de seguran\u00e7a para alterar diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ru.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ru.properties index ce15ab9cf4ab408fe262b9615c0141c9dfa0371f..0fc4329cd29aadfb7d1a4b6c657d4b8836a03517 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ru.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ru.properties @@ -20,8 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Connect\ slave\ to\ Jenkins\ one\ of\ these\ ways:=\u041F\u043E\u0434\u043A\u043B\u044E\u0447\u0438\u0442\u044C slave \u043A Jenkins \u043E\u0434\u043D\u0438\u043C \u0438\u0437 \u0441\u043F\u043E\u0441\u043E\u0431\u043E\u0432: Connected\ via\ JNLP\ agent.=\u041F\u043E\u0434\u043A\u043B\u044E\u0447\u0435\u043D \u0447\u0435\u0440\u0435\u0437 JNLP \u0430\u0433\u0435\u043D\u0442\u0430. -Launch\ agent\ from\ browser\ on\ slave=\u0417\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u0430\u0433\u0435\u043D\u0442\u0430 \u0438\u0437 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430 \u043D\u0430 slave -Run\ from\ slave\ command\ line:=\u0412\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u044C \u0432 \u043A\u043E\u043C\u043C\u0430\u043D\u0434\u043D\u043E\u0439 \u0441\u0442\u0440\u043E\u043A\u0435 \u043F\u043E\u0434\u0447\u0438\u043D\u0435\u043D\u043D\u043E\u0433\u043E \u0443\u0437\u043B\u0430 +Run\ from\ agent\ command\ line:=\u0412\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u044C \u0432 \u043A\u043E\u043C\u043C\u0430\u043D\u0434\u043D\u043E\u0439 \u0441\u0442\u0440\u043E\u043A\u0435 \u043F\u043E\u0434\u0447\u0438\u043D\u0435\u043D\u043D\u043E\u0433\u043E \u0443\u0437\u043B\u0430 launch\ agent=\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u0430\u0433\u0435\u043D\u0442\u0430 diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_sr.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..c3626b46510ecb0ca7ff43b93ff7770cd3387cb0 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_sr.properties @@ -0,0 +1,12 @@ +# This file is under the MIT License by authors + +slaveAgentPort.disabled=\u041F\u043E\u0440\u0442 TCP \u0437\u0430 JNLP \u0458\u0435 \u0437\u0430\u0442\u0432\u043E\u0440\u0435\u043D +configure.link.text=\u0418\u0442\u0438\u0442\u0435 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0443 \u0437\u0430 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0431\u0435\u0437\u0431\u0435\u0434\u043D\u043E\u0441\u0442\u0438 \u0438 \u043F\u0440\u043E\u043C\u0435\u043D\u0438\u0442\u0435 \u0433\u0430 +Connect\ agent\ to\ Jenkins\ one\ of\ these\ ways\:=\u041F\u043E\u0432\u0435\u0436\u0438\u0442\u0435 \u0441\u0435 \u0441\u0430 Jenkins-\u043E\u043C \u043F\u0443\u0442\u0435\u043C: +launch\ agent=\u043F\u043E\u043A\u0440\u0435\u043D\u0438 \u0430\u0433\u0435\u043D\u0442\u0430 +Launch\ agent\ from\ browser=\u041F\u043E\u043A\u0440\u0435\u043D\u0438 \u0441\u0430 \u0432\u0435\u0431-\u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0447\u0430 +Run\ from\ agent\ command\ line\:=\u0418\u0437\u0432\u0440\u0448\u0438 \u0441\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u0435 \u043B\u0438\u043D\u0438\u0458\u0435: +Or\ if\ the\ agent\ is\ headless\:=\u0418\u043B\u0438, \u0430\u043A\u043E \u0430\u0433\u0435\u043D\u0442 \u043D\u0435 \u0438\u043C\u0430 \u0435\u043A\u0440\u0430\u043D\u0430 +Connected\ via\ JNLP\ agent.=\u041F\u043E\u0432\u0435\u0437\u0430\u043D\u043E \u043F\u0443\u0442\u0435\u043C JNLP \u0430\u0433\u0435\u043D\u0442\u0430. +Run\ from\ agent\ command\ line=\u0418\u0437\u0432\u0440\u0448\u0438 \u0441\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u0435 \u043B\u0438\u043D\u0438\u0458\u0435 +Connect\ agent\ to\ Jenkins\ one\ of\ these\ ways=\u041F\u043E\u0432\u0435\u0436\u0438\u0442\u0435 \u0441\u0435 \u0441\u0430 Jenkins-\u043E\u043C \u043F\u0443\u0442\u0435\u043C diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_zh_TW.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_zh_TW.properties index 821a4ee9cbc68d6d8a47f708d5a714d7ab964150..7c50bf1b268182bc26ff1e28ab478e7b04300257 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_zh_TW.properties @@ -20,10 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -slaveAgentPort.disabled=JNLP Slave \u4ee3\u7406\u7a0b\u5f0f\u7684 TCP \u9023\u63a5\u57e0\u5df2\u95dc\u9589\u3002 -Connect\ slave\ to\ Jenkins\ one\ of\ these\ ways\:=\u53ef\u4ee5\u7528\u4e0b\u9762\u9019\u4e9b\u65b9\u6cd5\u5c07 Slave \u9023\u5230 Jenkins: launch\ agent=\u555f\u52d5\u4ee3\u7406\u7a0b\u5f0f -Launch\ agent\ from\ browser\ on\ slave=\u5728 Slave \u7684\u700f\u89bd\u5668\u4e0a\u555f\u52d5\u4ee3\u7406\u7a0b\u5f0f -Run\ from\ slave\ command\ line\:=\u7531 Slave \u547d\u4ee4\u5217\u57f7\u884c: -Or\ if\ the\ slave\ is\ headless\:=\u5982\u679c Slave \u6c92\u6709\u5468\u908a: Connected\ via\ JNLP\ agent.=\u5C07\u7531 JNLP \u4EE3\u7406\u7A0B\u5F0F\u5EFA\u7ACB\u9023\u7DDA\u3002 diff --git a/core/src/main/resources/hudson/slaves/Messages.properties b/core/src/main/resources/hudson/slaves/Messages.properties index 7f55e6ed669140795fd40bc02f98f698c422b158..6143662cfa511a0eae01c0aa8bad9b45a06dc19c 100644 --- a/core/src/main/resources/hudson/slaves/Messages.properties +++ b/core/src/main/resources/hudson/slaves/Messages.properties @@ -20,24 +20,25 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -RetentionStrategy.Always.displayName=Keep this slave on-line as much as possible -RetentionStrategy.Demand.displayName=Take this slave on-line when in demand and off-line when idle +RetentionStrategy.Always.displayName=Keep this agent online as much as possible +RetentionStrategy.Demand.displayName=Take this agent online when in demand, and offline when idle RetentionStrategy.Demand.OfflineIdle=Offline because computer was idle; it will be relaunched when needed. -CommandLauncher.displayName=Launch slave via execution of command on the Master -JNLPLauncher.displayName=Launch slave agents via Java Web Start -ComputerLauncher.unexpectedError=Unexpected error in launching a slave. This is probably a bug in Jenkins -ComputerLauncher.abortedLaunch=Launching slave process aborted. +CommandLauncher.displayName=Launch agent via execution of command on the master +JNLPLauncher.displayName=Launch agent via Java Web Start +ComputerLauncher.unexpectedError=Unexpected error in launching an agent. This is probably a bug in Jenkins +ComputerLauncher.abortedLaunch=Launching agent process aborted. CommandLauncher.NoLaunchCommand=No launch command specified ConnectionActivityMonitor.OfflineCause=Repeated ping attempts failed -DumbSlave.displayName=Dumb Slave +DumbSlave.displayName=Permanent Agent NodeProvisioner.EmptyString= -OfflineCause.LaunchFailed=This node is offline because Jenkins failed to launch the slave agent on it. +OfflineCause.LaunchFailed=This agent is offline because Jenkins failed to launch the agent process on it. OfflineCause.connection_was_broken_=Connection was broken: {0} SimpleScheduledRetentionStrategy.FinishedUpTime=Computer has finished its scheduled uptime -SimpleScheduledRetentionStrategy.displayName=Take this slave on-line according to a schedule +SimpleScheduledRetentionStrategy.displayName=Take this agent online according to a schedule EnvironmentVariablesNodeProperty.displayName=Environment variables SlaveComputer.DisconnectedBy=Disconnected by {0}{1} -NodeDescripter.CheckName.Mandatory=Name is mandatory +NodeDescriptor.CheckName.Mandatory=Name is mandatory ComputerLauncher.NoJavaFound=Java version {0} was found but 1.6 or later is needed. ComputerLauncher.JavaVersionResult={0} -version returned {1}. -ComputerLauncher.UknownJavaVersion=Couldn\u2019t figure out the Java version of {0} +ComputerLauncher.UnknownJavaVersion=Couldn\u2019t figure out the Java version of {0} +Cloud.ProvisionPermission.Description=Provision new nodes diff --git a/core/src/main/resources/hudson/slaves/Messages_bg.properties b/core/src/main/resources/hudson/slaves/Messages_bg.properties index dccd5efbbdc2681db99acbdbe9e67a6c1d10e87f..6d537b2277f9a2ac10b1d815f296692659eb5b40 100644 --- a/core/src/main/resources/hudson/slaves/Messages_bg.properties +++ b/core/src/main/resources/hudson/slaves/Messages_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Bulgarian translation copyright 2015 Alexander Shopov . +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,38 +20,18 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -RetentionStrategy.Always.displayName=\ - \u0422\u043e\u0437\u0438 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440 \u0434\u0430 \u0435 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0439-\u0434\u044a\u043b\u0433\u043e \u043d\u0430 \u043b\u0438\u043d\u0438\u044f. -RetentionStrategy.Demand.displayName=\ - \u0422\u043e\u0437\u0438 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440 \u0434\u0430 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f \u043f\u0440\u0438 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442 \u0438 \u0438\u0437\u043a\u043b\u044e\u0447\u0435\u043d \u0432 \u0434\u0440\u0443\u0433\u043e\u0442\u043e\ - \u0432\u0440\u0435\u043c\u0435. RetentionStrategy.Demand.OfflineIdle=\ \u041d\u0435 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f, \u0437\u0430\u0449\u043e\u0442\u043e \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u044a\u0442 \u0431\u0435\u0437\u0434\u0435\u0439\u0441\u0442\u0432\u0430. \u0429\u0435 \u0441\u0435 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430 \u043f\u0440\u0438 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442. -CommandLauncher.displayName=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u0438\u044f \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440 \u0447\u0440\u0435\u0437 \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u043e\u0442 \u043e\u0441\u043d\u043e\u0432\u043d\u0438\u044f. -JNLPLauncher.displayName=\ - \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u0438\u044f Jenkins \u0447\u0440\u0435\u0437 Java Web Start -ComputerLauncher.unexpectedError=\ - \u041d\u0435\u043e\u0447\u0430\u043a\u0432\u0430\u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u0438\u044f Jenkins. \u0422\u043e\u0432\u0430 \u0432\u0435\u0440\u043e\u044f\u0442\u043d\u043e \u0435\ - \u0433\u0440\u0435\u0448\u043a\u0430 \u0432 \u0441\u0430\u043c\u0438\u044f Jenkins -ComputerLauncher.abortedLaunch=\ - \u041f\u0440\u0435\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u043e \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u0438\u044f Jenkins. CommandLauncher.NoLaunchCommand=\ \u041d\u0435 \u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u0437\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435. ConnectionActivityMonitor.OfflineCause=\ \u041c\u043d\u043e\u0433\u043e\u043a\u0440\u0430\u0442\u043d\u0438\u0442\u0435 \u043e\u043f\u0438\u0442\u0438 \u0437\u0430 \u0432\u0440\u044a\u0437\u043a\u0430 \u0447\u0440\u0435\u0437 \u043a\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u0430 \u201eping\u201c \u0441\u0430 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u0438 -DumbSlave.displayName=\ - \u0418\u0437\u0446\u044f\u043b\u043e \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d Jenkins -NodeProvisioner.EmptyString= -OfflineCause.LaunchFailed=\ - \u041c\u0430\u0448\u0438\u043d\u0430\u0442\u0430 \u0435 \u0434\u043e\u043a\u043b\u0430\u0434\u0432\u0430\u043d\u0430 \u043a\u0430\u0442\u043e \u0438\u0437\u043a\u043b\u044e\u0447\u0435\u043d\u0430, \u0437\u0430\u0449\u043e\u0442\u043e \u043e\u043f\u0438\u0442\u044a\u0442 \u0437\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\ - \u043f\u0440\u043e\u0446\u0435\u0441 \u043d\u0430 Jenkins \u0431\u0435 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u0435\u043d. +NodeProvisioner.EmptyString=\ + OfflineCause.connection_was_broken_=\ \u0412\u0440\u044a\u0437\u043a\u0430\u0442\u0430 \u0431\u0435 \u043f\u0440\u0435\u043a\u044a\u0441\u043d\u0430\u0442\u0430: {0} SimpleScheduledRetentionStrategy.FinishedUpTime=\ \u041a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u044a\u0442 \u043f\u0440\u0438\u0432\u044a\u0440\u0448\u0438 \u043f\u043b\u0430\u043d\u0438\u0440\u0430\u043d\u043e\u0442\u043e \u0432\u0440\u0435\u043c\u0435 \u0437\u0430 \u0440\u0430\u0431\u043e\u0442\u0430 -SimpleScheduledRetentionStrategy.displayName=\ - \u0412\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u0438\u044f Jenkins \u043f\u043e \u043f\u043b\u0430\u043d EnvironmentVariablesNodeProperty.displayName=\ \u041f\u0440\u043e\u043c\u0435\u043d\u043b\u0438\u0432\u0438 \u043d\u0430 \u0441\u0440\u0435\u0434\u0430\u0442\u0430 SlaveComputer.DisconnectedBy=\ @@ -64,3 +44,31 @@ ComputerLauncher.JavaVersionResult=\ \u041a\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u0430 \u201e{0} -version\u201c \u0432\u044a\u0440\u043d\u0430 \u201e{1}\u201c. ComputerLauncher.UknownJavaVersion=\ \u0412\u0435\u0440\u0441\u0438\u044f\u0442\u0430 \u043d\u0430 Java \u043d\u0430 \u201e{0}\u201c \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0430 +# Unexpected error in launching an agent. This is probably a bug in Jenkins +ComputerLauncher.unexpectedError=\ + \u041d\u0435\u043e\u0447\u0430\u043a\u0432\u0430\u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0430\u0433\u0435\u043d\u0442\u0430. \u0422\u043e\u0432\u0430 \u0432\u0435\u0440\u043e\u044f\u0442\u043d\u043e \u0435 \u0433\u0440\u0435\u0448\u043a\u0430 \u0432 Jenkins +# Permanent Agent +DumbSlave.displayName=\ + \u041f\u043e\u0441\u0442\u043e\u044f\u043d\u0435\u043d \u0430\u0433\u0435\u043d\u0442 +# Take this agent online when in demand, and offline when idle +RetentionStrategy.Demand.displayName=\ + \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u043e\u0437\u0438 \u0430\u0433\u0435\u043d\u0442 \u043f\u0440\u0438 \u043d\u0443\u0436\u0434\u0430. \u041a\u043e\u0433\u0430\u0442\u043e \u0430\u0433\u0435\u043d\u0442\u044a\u0442 \u0431\u0435\u0437\u0434\u0435\u0439\u0441\u0442\u0432\u0430, \u0434\u0430\ + \u0441\u0435 \u0438\u0437\u0432\u0435\u0436\u0434\u0430 \u0438\u0437\u0432\u044a\u043d \u043b\u0438\u043d\u0438\u044f. +# Launch agent via Java Web Start +JNLPLauncher.displayName=\ + \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442 \u0441 Java Web Start +# Keep this agent online as much as possible +RetentionStrategy.Always.displayName=\ + \u0410\u0433\u0435\u043d\u0442\u044a\u0442 \u0434\u0430 \u0435 \u043e\u043d\u043b\u0430\u0439\u043d \u043a\u043e\u043b\u043a\u043e\u0442\u043e \u043c\u043e\u0436\u0435 \u043f\u043e-\u0434\u044a\u043b\u0433\u043e +# Launch agent via execution of command on the master +CommandLauncher.displayName=\ + \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442 \u0447\u0440\u0435\u0437 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u0438\u044f \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440 +# This agent is offline because Jenkins failed to launch the agent process on it. +OfflineCause.LaunchFailed=\ + \u0410\u0433\u0435\u043d\u0442\u044a\u0442 \u043d\u0435 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f, \u0437\u0430\u0449\u043e\u0442\u043e Jenkins \u043d\u0435 \u0443\u0441\u043f\u044f \u0434\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0430 \u043c\u0443. +# Take this agent online according to a schedule +SimpleScheduledRetentionStrategy.displayName=\ + \u0410\u0433\u0435\u043d\u0442\u044a\u0442 \u0434\u0430 \u0435 \u043d\u0430 \u0438 \u0438\u0437\u0432\u044a\u043d \u043b\u0438\u043d\u0438\u044f \u043f\u043e \u0440\u0430\u0437\u043f\u0438\u0441\u0430\u043d\u0438\u0435 +# Launching agent process aborted. +ComputerLauncher.abortedLaunch=\ + \u041f\u0440\u043e\u0446\u0435\u0441\u044a\u0442 \u0437\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0433\u0435\u043d\u0442\u0430 \u043f\u0440\u0438\u043a\u043b\u044e\u0447\u0438 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e diff --git a/core/src/main/resources/hudson/slaves/Messages_da.properties b/core/src/main/resources/hudson/slaves/Messages_da.properties index dc7acae2fd4e48001c236c58cf024ec4aa498dbe..ab97271a14fa67b5e5c5efee98ff8b6469294c06 100644 --- a/core/src/main/resources/hudson/slaves/Messages_da.properties +++ b/core/src/main/resources/hudson/slaves/Messages_da.properties @@ -20,19 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -SimpleScheduledRetentionStrategy.displayName=Bring denne slave online efter en tidsplan -RetentionStrategy.Always.displayName=Hold denne slave online s\u00e5 meget som muligt RetentionStrategy.Demand.OfflineIdle=Offline da computeren var i tomgang; vil blive genstartet n\u00e5r n\u00f8dvendigt. SimpleScheduledRetentionStrategy.FinishedUpTime=Computeren har afsluttet sin planlagte oppetid EnvironmentVariablesNodeProperty.displayName=Milj\u00f8variable -DumbSlave.displayName=Dum Slave -ComputerLauncher.abortedLaunch=Opstart af slaveproces afbrudt. -JNLPLauncher.displayName=Start slaveagenter via JNLP CommandLauncher.NoLaunchCommand=Ingen opstartskommando givet ConnectionActivityMonitor.OfflineCause=Gentagne pingfors\u00f8g fejlede -OfflineCause.LaunchFailed=Denne node er offline da Jenkins ikke kunne starte slaveagenten p\u00e5 den. -RetentionStrategy.Demand.displayName=Bring denne slavenode online efter behov, og offline n\u00e5r i tomgang -CommandLauncher.displayName=Start slave ved at k\u00f8re en kommando p\u00e5 master''en SlaveComputer.DisconnectedBy=Frakoblet af {0}{1} -ComputerLauncher.unexpectedError=Uforudset fejl under slaveopstart. Dette skyldes formentlig en fejl i Jenkins NodeProvisioner.EmptyString= diff --git a/core/src/main/resources/hudson/slaves/Messages_de.properties b/core/src/main/resources/hudson/slaves/Messages_de.properties index e1a50ba29395cd42d438e31a8f6230f77c59db5f..4b7b396a93ad95b4fce00e8cf3b38b18f8cd37d4 100644 --- a/core/src/main/resources/hudson/slaves/Messages_de.properties +++ b/core/src/main/resources/hudson/slaves/Messages_de.properties @@ -20,19 +20,25 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ConnectionActivityMonitor.OfflineCause=Ping-Versuche scheiterten wiederholt -RetentionStrategy.Always.displayName=Slave immer angeschaltet lassen -RetentionStrategy.Demand.displayName=Slave nur bei Bedarf anschalten, ansonsten abschalten -RetentionStrategy.Demand.OfflineIdle=Slave war im Leerlauf -CommandLauncher.displayName=Starte Slave durch Ausfhrung eines Kommandos auf dem Master -JNLPLauncher.displayName=Starte Slave-Agenten ber JNLP -ComputerLauncher.unexpectedError=Unerwarteter Fehler beim Starten eines Slave-Prozesses aufgetreten. Vermutlich handelt es sich um einen Fehler in Jenkins. -ComputerLauncher.abortedLaunch=Start eines Slave-Prozesses abgebrochen. +Cloud.ProvisionPermission.Description=Neue Agenten provisionieren +CommandLauncher.displayName=Agent durch Ausf\u00FChrung eines Befehls auf dem Master-Knoten starten CommandLauncher.NoLaunchCommand=Kein Startkommando angegeben. -DumbSlave.displayName=Dumb slave -OfflineCause.LaunchFailed=Dieser Knoten ist nicht verfgbar, weil Jenkins den Slave nicht starten konnte. -SimpleScheduledRetentionStrategy.displayName=Slave zeitgesteuert anschalten -SimpleScheduledRetentionStrategy.FinishedUpTime=Slave hat seine geplante Online-Zeit beendet. +ComputerLauncher.abortedLaunch=Start des Agenten-Prozesses abgebrochen +ComputerLauncher.JavaVersionResult={0} -version ergab {1}. +ComputerLauncher.NoJavaFound=Java-Version {0} gefunden, aber 1.7 oder neuer ist n\u00F6tig. +ComputerLauncher.unexpectedError=Unerwarteter Fehler beim Start des Agenten. Das ist vermutlich ein Bug in Jenkins. +ComputerLauncher.UnknownJavaVersion=Konnte Java-Version von {0} nicht bestimmen. +ConnectionActivityMonitor.OfflineCause=Ping-Versuche scheiterten wiederholt +DumbSlave.displayName=Statischer Agent EnvironmentVariablesNodeProperty.displayName=Umgebungsvariablen +JNLPLauncher.displayName=Agent via Java Web Start starten +NodeDescriptor.CheckName.Mandatory=Name ist ein Pflichtfeld. NodeProvisioner.EmptyString= +OfflineCause.connection_was_broken_=Verbindung wurde unterbrochen: {0} +OfflineCause.LaunchFailed=Dieser Agent ist offline, da Jenkins den Agenten-Prozess nicht starten konnte. +RetentionStrategy.Always.displayName=Diesen Agenten dauerhaft online halten +RetentionStrategy.Demand.displayName=Agent bei Bedarf online nehmen und bei Inaktivit\u00E4t offline nehmen +RetentionStrategy.Demand.OfflineIdle=Dieser Agent ist offline da er inaktiv war. Er wird bei Bedarf wieder gestartet. +SimpleScheduledRetentionStrategy.displayName=Agenten basierend auf Zeitplan online nehmen +SimpleScheduledRetentionStrategy.FinishedUpTime=Geplante Laufzeit wurde erreicht. SlaveComputer.DisconnectedBy=Getrennt durch Benutzer {0}{1} diff --git a/core/src/main/resources/hudson/slaves/Messages_es.properties b/core/src/main/resources/hudson/slaves/Messages_es.properties index 3b70c0bce8870df1a3866355d847bb399eb5bdff..e12811db84e957a531372db7b7ee7d7982af80c8 100644 --- a/core/src/main/resources/hudson/slaves/Messages_es.properties +++ b/core/src/main/resources/hudson/slaves/Messages_es.properties @@ -20,19 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -RetentionStrategy.Always.displayName=Mantener este nodo en lnea el mximo de tiempo posible -RetentionStrategy.Demand.displayName=Poner este nodo en lnea cuando haya demanda, y fuera de lnea cuando no hayan trabajos RetentionStrategy.Demand.OfflineIdle=Fuera de lnea porque no es necesario, el servicio se volver a iniciar cuando haya demanda -CommandLauncher.displayName=Arrancar el nodo ejecutando un comando desde el nodo principal -JNLPLauncher.displayName=Ejecutar el agente en el nodo secundario utilizando JNLP -ComputerLauncher.unexpectedError=Error inesperado al lanzar un nodo secundario. Posiblemente sea un error de Jenkins (bug) -ComputerLauncher.abortedLaunch=El inicio del agente en el nodo secundario ha sido abortado. CommandLauncher.NoLaunchCommand=No se ha especificado ningn comando ConnectionActivityMonitor.OfflineCause=No hubo respuesta a ''ping'' despues de varios intentos -DumbSlave.displayName=Secundario pasivo -OfflineCause.LaunchFailed=Este nodo est fuera de lnea porque Jenkins no pudo iniciar el agente esclavo. SimpleScheduledRetentionStrategy.FinishedUpTime=El nodo ha finalizado el tiempo programado de estar on-line -SimpleScheduledRetentionStrategy.displayName=Programar cundo se debe poner este nodo secundario en lnea. EnvironmentVariablesNodeProperty.displayName=Variables de entorno SlaveComputer.DisconnectedBy=Desconectado por {0}{1} NodeProvisioner.EmptyString= diff --git a/core/src/main/resources/hudson/slaves/Messages_fr.properties b/core/src/main/resources/hudson/slaves/Messages_fr.properties index bbf337332212bc419d64b2c9bfaa09392dba47e8..d044dac640a5c330e07b89dde9cc707f3449ccf8 100644 --- a/core/src/main/resources/hudson/slaves/Messages_fr.properties +++ b/core/src/main/resources/hudson/slaves/Messages_fr.properties @@ -20,14 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -RetentionStrategy.Always.displayName=Garder cet esclave en ligne autant que possible -RetentionStrategy.Demand.displayName=Mettre cet esclave en ligne \u00e0 la demande et hors-ligne si inutilis\u00e9 -CommandLauncher.displayName=Lancer l''esclave via l''ex\u00e9cution d''une commande sur le ma\u00eetre -JNLPLauncher.displayName=Lancer les agents esclaves par JNLP -ComputerLauncher.unexpectedError=Erreur inattendue au lancement d''un esclave. Probablement un bug dans Jenkins -ComputerLauncher.abortedLaunch=Lancement de l''esclave annul\u00e9. CommandLauncher.NoLaunchCommand=Aucune commande de lancement sp\u00e9cifi\u00e9e -DumbSlave.displayName=Esclave passif -OfflineCause.LaunchFailed=Ce noeud est d\u00e9connect\u00e9 parce que Jenkins n''a pas r\u00e9ussi \u00e0 lancer l''agent esclave dessus. -SimpleScheduledRetentionStrategy.displayName=D\u00e9connecte cet esclave selon des horaires EnvironmentVariablesNodeProperty.displayName=Variables d''environnement diff --git a/core/src/main/resources/hudson/slaves/Messages_ja.properties b/core/src/main/resources/hudson/slaves/Messages_ja.properties index c8eeb5f76269b70ea68bd0c78c89614d0b4a675c..a5bf2adebc8cbe015b5741d24336cabf6f805b29 100644 --- a/core/src/main/resources/hudson/slaves/Messages_ja.properties +++ b/core/src/main/resources/hudson/slaves/Messages_ja.properties @@ -20,20 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -RetentionStrategy.Always.displayName=\u53ef\u80fd\u306a\u9650\u308a\u30aa\u30f3\u30e9\u30a4\u30f3\u306e\u307e\u307e\u306b\u3059\u308b -RetentionStrategy.Demand.displayName=\u8981\u6c42\u6642\u306b\u306f\u30aa\u30f3\u30e9\u30a4\u30f3\u306b\u3057\u3001\u5f85\u6a5f\u4e2d\u306b\u306f\u30aa\u30d5\u30e9\u30a4\u30f3\u306b\u3059\u308b RetentionStrategy.Demand.OfflineIdle=\u30b3\u30f3\u30d4\u30e5\u30fc\u30bf\u304c\u5f85\u6a5f\u4e2d\u306a\u306e\u3067\u30aa\u30d5\u30e9\u30a4\u30f3\u3067\u3059\u3002\u5fc5\u8981\u306b\u306a\u3063\u305f\u3089\u518d\u3073\u8d77\u52d5\u3057\u307e\u3059\u3002 -CommandLauncher.displayName=\u30de\u30b9\u30bf\u30fc\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u30b9\u30ec\u30fc\u30d6\u3092\u8d77\u52d5 -JNLPLauncher.displayName=JNLP\u7d4c\u7531\u3067\u30b9\u30ec\u30fc\u30d6\u3092\u8d77\u52d5 -ComputerLauncher.unexpectedError=\u30b9\u30ec\u30fc\u30d6\u306e\u8d77\u52d5\u4e2d\u306b\u4e88\u671f\u3057\u306a\u3044\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u3053\u308c\u306f\u305f\u3076\u3093Jenkins\u306e\u30d0\u30b0\u3067\u3059\u3002 -ComputerLauncher.abortedLaunch=\u30b9\u30ec\u30fc\u30d6\u306e\u8d77\u52d5\u30d7\u30ed\u30bb\u30b9\u304c\u4e2d\u65ad\u3057\u307e\u3057\u305f\u3002 CommandLauncher.NoLaunchCommand=\u8d77\u52d5\u30b3\u30de\u30f3\u30c9\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002 ConnectionActivityMonitor.OfflineCause=\u4f55\u5ea6\u3082ping\u304c\u5931\u6557\u3057\u307e\u3057\u305f\u3002 -DumbSlave.displayName=\u30c0\u30e0\u30b9\u30ec\u30fc\u30d6 NodeProvisioner.EmptyString= -OfflineCause.LaunchFailed=\u30b9\u30ec\u30fc\u30d6\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u306e\u8d77\u52d5\u306b\u5931\u6557\u3057\u305f\u305f\u3081\u3001\u3053\u306e\u30ce\u30fc\u30c9\u306f\u30aa\u30d5\u30e9\u30a4\u30f3\u3067\u3059\u3002 SimpleScheduledRetentionStrategy.FinishedUpTime=\u30b3\u30f3\u30d4\u30e5\u30fc\u30bf\u306e\u52d5\u4f5c\u53ef\u80fd\u6642\u9593\u304c\u7d42\u4e86\u3057\u307e\u3057\u305f\u3002 -SimpleScheduledRetentionStrategy.displayName=\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u306b\u5f93\u3063\u3066\u30aa\u30f3\u30e9\u30a4\u30f3\u306b\u3059\u308b EnvironmentVariablesNodeProperty.displayName=\u74b0\u5883\u5909\u6570 SlaveComputer.DisconnectedBy={0}\u304c\u30aa\u30d5\u30e9\u30a4\u30f3\u306b\u3057\u3066\u3044\u307e\u3059\u3002{1} NodeDescripter.CheckName.Mandatory=\u30ce\u30fc\u30c9\u540d\u306f\u5fc5\u9808\u3067\u3059\u3002 diff --git a/core/src/main/resources/hudson/slaves/Messages_pl.properties b/core/src/main/resources/hudson/slaves/Messages_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..f09693fdf41d16fa33b9216a089d6a834cb75036 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/Messages_pl.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2016, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. +# Environment variables +EnvironmentVariablesNodeProperty.displayName=Zmienne \u015Brodowiskowe diff --git a/core/src/main/resources/hudson/slaves/Messages_pt_BR.properties b/core/src/main/resources/hudson/slaves/Messages_pt_BR.properties index 090702e6599bf1222d1ac67a5f06a973bc676866..9cd2f871d914b6342801fb196798b7983fff0cea 100644 --- a/core/src/main/resources/hudson/slaves/Messages_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/Messages_pt_BR.properties @@ -20,16 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -RetentionStrategy.Always.displayName=Manter este slave ligado tanto quanto for poss\u00edvel -RetentionStrategy.Demand.displayName=Deixar este slave ligado quando em demanda e desligado quando inativo -CommandLauncher.displayName=Lan\u00e7ar o slave via execu\u00e7\u00e3o de comando no Master -JNLPLauncher.displayName=Lan\u00e7ar os agentes slave via JNLP -ComputerLauncher.unexpectedError=Erro ErrorUnexpected no lan\u00e7amento de um slave. Este \u00e9 provavelmente um bug no Jenkins -ComputerLauncher.abortedLaunch=Processo de lan\u00e7amento de slave abortado. -# Take this slave on-line according to a schedule -SimpleScheduledRetentionStrategy.displayName=Colocar o slave online de acordo com o agendamento -# This node is offline because Jenkins failed to launch the slave agent on it. -OfflineCause.LaunchFailed=Esse n\u00f3 est\u00e1 offline porque Jenkins falhou ao lan\u00e7ar o agente slave # No launch command specified CommandLauncher.NoLaunchCommand=Sem nenhum comando de lan\u00e7amento especificado # Offline because computer was idle; it will be relaunched when needed. @@ -43,8 +33,6 @@ SimpleScheduledRetentionStrategy.FinishedUpTime=O computador terminou o seu temp NodeProvisioner.EmptyString= # Environment variables EnvironmentVariablesNodeProperty.displayName=Vari\u00e1veis de ambiente -# Dumb Slave -DumbSlave.displayName=Slave burro # Java version {0} was found but 1.6 or later is needed. ComputerLauncher.NoJavaFound=A vers\u00e3o {0} do Java foi encontrada, mas a vers\u00e3o 1.6 ou mais nova \u00e9 necess\u00e1ria. # Couldn\u2019t figure out the Java version of {0} diff --git a/core/src/main/resources/hudson/slaves/Messages_sr.properties b/core/src/main/resources/hudson/slaves/Messages_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..7c3235dec4fde016849efe32e30572d8186cc5d1 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/Messages_sr.properties @@ -0,0 +1,24 @@ +# This file is under the MIT License by authors + +RetentionStrategy.Always.displayName=\u0414\u0440\u0436\u0438 \u043E\u0432\u043E\u0433 \u0430\u0433\u0435\u043D\u0442\u0430 \u043F\u043E\u0432\u0435\u0437\u0430\u043D\u043E\u0433 \u043A\u043E\u043B\u0438\u043A\u043E \u0433\u043E\u0434 \u043C\u043E\u0433\u0443\u045B\u0435 +RetentionStrategy.Demand.displayName=\u041F\u043E\u0432\u0435\u0436\u0438 \u043E\u0432\u043E\u0433 \u0430\u0433\u0435\u043D\u0442\u0430 \u043A\u0430\u0434\u0430 \u0431\u0443\u0434\u0435 \u0431\u0438\u043B\u043E \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E, \u0430 \u043F\u0440\u0435\u043A\u0438\u043D\u0438 \u0432\u0435\u0437\u0443 \u043A\u0430\u0434\u0430 \u0437\u0430\u0441\u0442\u043E\u0458\u0438. +RetentionStrategy.Demand.OfflineIdle=\u041D\u0438\u0458\u0435 \u043F\u043E\u0432\u0435\u0437\u0430\u043D\u043E, \u0458\u0435\u0440 \u0458\u0435 \u043C\u0430\u0448\u0438\u043D\u0430 \u0437\u0430\u0441\u0442\u043E\u0458\u0430\u043D\u0430. \u0411\u0438\u045B\u0435 \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u0442 \u043A\u0430\u0434\u0430 \u0431\u0443\u0434\u0435 \u0431\u0438\u043B\u043E \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E. +CommandLauncher.displayName=\u041F\u043E\u043A\u0440\u0435\u043D\u0438 \u0430\u0433\u0435\u043D\u0442\u0430 \u0438\u0437\u0432\u0440\u0448\u0430\u0432\u0430\u045A\u0443 \u043A\u043E\u043C\u0430\u043D\u0434\u0435 \u043D\u0430 \u0433\u043B\u0430\u0432\u043D\u043E\u0458 \u043C\u0430\u0448\u0438\u043D\u0438 +JNLPLauncher.displayName=\u041F\u043E\u043A\u0440\u0435\u043D\u0438 \u0430\u0433\u0435\u043D\u0442\u0430 \u0441\u0430 Java Web Start +ComputerLauncher.unexpectedError=\u041D\u0435\u043E\u0447\u0435\u043A\u0438\u0432\u0430\u043D\u0430 \u0433\u0440\u0435\u0448\u043A\u0430 \u043F\u0440\u0438\u043B\u0438\u043A\u043E\u043C \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0435 \u0430\u0433\u0435\u043D\u0442\u0430. \u041E\u0432\u043E \u0458\u0435 \u0432\u0435\u0440\u043E\u0432\u0430\u0442\u043D\u043E \u0433\u0440\u0435\u0448\u043A\u0430 \u0443 Jenkins. +ComputerLauncher.abortedLaunch=\u041F\u0440\u043E\u0446\u0435\u0441 \u0437\u0430 \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0435 \u0430\u0433\u0435\u043D\u0442\u0430 \u0458\u0435 \u043F\u0440\u0435\u043A\u0438\u043D\u0443\u0442. +ConnectionActivityMonitor.OfflineCause=\u041F\u043E\u043D\u043E\u0432\u0459\u0435\u043D\u0438 \u043F\u043E\u043A\u0443\u0448\u0430\u0458\u0438 \u0434\u0430 \u0441\u0435 \u0441\u0442\u0443\u043F\u0438 \u043A\u043E\u043D\u0442\u0430\u043A\u0442 \u043F\u0440\u0435\u043A\u043E \u043A\u043E\u043C\u0430\u043D\u0434\u0435 "ping" \u0441\u0443 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0438. +CommandLauncher.NoLaunchCommand=\u041D\u0438\u0458\u0435 \u043D\u0430\u0432\u0435\u0434\u0435\u043D\u043E \u043A\u043E\u043C\u0430\u043D\u0434\u0430 \u0437\u0430 \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0435. +DumbSlave.displayName=\u0421\u0442\u0430\u043B\u043D\u0438 \u0430\u0433\u0435\u043D\u0442 +NodeProvisioner.EmptyString= +OfflineCause.LaunchFailed=\u0410\u0433\u0435\u043D\u0442 \u043D\u0438\u0458\u0435 \u043F\u0440\u0438\u043A\u0459\u0443\u0447\u0435\u043D \u0458\u0435\u0440 Jenkins \u043D\u0438\u0458\u0435 \u0443\u0441\u043F\u0435\u043E \u0434\u0430 \u043F\u043E\u043A\u0440\u0435\u043D\u0435 \u043F\u0440\u043E\u0446\u0435\u0441 \u043D\u0430 \u045A\u0435\u0433\u0430. +OfflineCause.connection_was_broken_=\u0412\u0435\u0437\u0430 \u0458\u0435 \u043F\u0440\u0435\u043A\u0438\u043D\u0443\u0442\u0430: {0} +SimpleScheduledRetentionStrategy.FinishedUpTime=\u041C\u0430\u0448\u0438\u043D\u0430 \u0458\u0435 \u0437\u0430\u0432\u0440\u0448\u0438\u043B\u0430 \u043F\u043B\u0430\u043D\u0438\u0440\u0430\u043D\u043E \u0432\u0440\u0435\u043C\u0435 \u0440\u0430\u0434\u0430 +SimpleScheduledRetentionStrategy.displayName=\u041F\u043E\u0432\u0435\u0436\u0438 \u0430\u0433\u0435\u043D\u0442\u0430 \u043F\u0440\u0435\u043C\u0430 \u0440\u0430\u0441\u043F\u043E\u0440\u0435\u0434\u0443 +EnvironmentVariablesNodeProperty.displayName=\u0413\u043B\u043E\u0431\u0430\u043B\u043D\u0430 \u043F\u0440\u043E\u043C\u0435\u043D\u0459\u0438\u0432\u0430 +SlaveComputer.DisconnectedBy=\u041F\u0440\u0435\u043A\u0438\u043D\u0443\u0442\u0430 \u0432\u0435\u0437\u0430 \u043E\u0434 \u0441\u0442\u0440\u0430\u043D\u0435 {0}{1} +NodeDescripter.CheckName.Mandatory=\u0418\u043C\u0435 \u0458\u0435 \u043E\u0431\u0430\u0432\u0435\u0437\u043D\u043E +ComputerLauncher.NoJavaFound=\u041F\u0440\u043E\u043D\u0430\u0452\u0435\u043D\u043E \u0458\u0435 Java \u0432\u0435\u0440\u0437\u0438\u0458\u0430 {0}, \u043C\u0435\u0452\u0443\u0442\u0438\u043C \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E \u0458\u0435 \u0432\u0435\u0440\u0437\u0438\u0458\u0430 1.6. +ComputerLauncher.JavaVersionResult=\u041A\u043E\u043C\u0430\u043D\u0434\u0430 {0} -version \u0458\u0435 \u0432\u0440\u0430\u0442\u0438\u043B\u043E {1}. +ComputerLauncher.UknownJavaVersion=\u041D\u0438\u0458\u0435 \u043C\u043E\u0433\u0443\u045B\u0435 \u043E\u0434\u0440\u0435\u0434\u0438\u0438\u0442\u0438 Java \u0432\u0435\u0440\u0437\u0438\u0458\u0443 {0} +Cloud.ProvisionPermission.Description=\u041E\u0434\u0440\u0435\u0434\u0438 \u043D\u043E\u0432\u0435 \u043C\u0430\u0448\u0438\u043D\u0435 \ No newline at end of file diff --git a/core/src/main/resources/hudson/slaves/Messages_tr.properties b/core/src/main/resources/hudson/slaves/Messages_tr.properties deleted file mode 100644 index 316c3dd85c998bb5d8af369acc0dea9df7629505..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/Messages_tr.properties +++ /dev/null @@ -1,28 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -RetentionStrategy.Always.displayName=Bu slave''i m\u00fcmk\u00fcn oldu\u011funca on-line konumda tut -RetentionStrategy.Demand.displayName=Bu slave''i ihtiya\u00e7 an\u0131nda on-line, bekleme durumlar\u0131nda off-line konuma getir. -CommandLauncher.displayName=Master''da \u00e7al\u0131\u015ft\u0131r\u0131lan bir komut ile bu slave''i harekete ge\u00e7ir -JNLPLauncher.displayName=JNLP yard\u0131m\u0131 ile slave ajan\u0131 harekete ge\u00e7ir -ComputerLauncher.unexpectedError=Slave harekete ge\u00e7irilirken umulmad\u0131k bir hata olu\u015ftu. Jenkins''daki bir bug''dan dolay\u0131 olabilir. -ComputerLauncher.abortedLaunch=Slave''i harekete ge\u00e7irme i\u015flemi iptal edildi. \ No newline at end of file diff --git a/core/src/main/resources/hudson/slaves/Messages_zh_TW.properties b/core/src/main/resources/hudson/slaves/Messages_zh_TW.properties index c7fb50e753dc604086db9b6faeadd37290b98235..833fe2031343813dedb9f6623a391b475dc8f79d 100644 --- a/core/src/main/resources/hudson/slaves/Messages_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/Messages_zh_TW.properties @@ -20,29 +20,20 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -CommandLauncher.displayName=\u5728 Master \u4e0a\u57f7\u884c\u6307\u4ee4\u555f\u52d5 Slave CommandLauncher.NoLaunchCommand=\u6c92\u6709\u6307\u5b9a\u555f\u52d5\u6307\u4ee4 -ComputerLauncher.abortedLaunch=Slave \u555f\u52d5\u7a0b\u5e8f\u5df2\u4e2d\u6b62\u3002 -ComputerLauncher.unexpectedError=\u555f\u52d5 Slave \u6642\u767c\u751f\u9810\u671f\u5916\u7684\u932f\u8aa4\u3002\u53ef\u80fd\u662f Jenkins \u672c\u8eab\u7684 Bug ComputerLauncher.JavaVersionResult={0} -version \u56de\u50b3 {1}\u3002 ComputerLauncher.NoJavaFound=\u627e\u5230 Java {0} \u7248\uff0c\u4e0d\u904e\u6211\u5011\u8981\u7684\u662f 1.5 \u6216\u66f4\u65b0\u7684\u7248\u672c\u3002 ComputerLauncher.UknownJavaVersion=\u4e0d\u77e5\u9053 {0} \u7684 Java \u7248\u672c ConnectionActivityMonitor.OfflineCause=\u91cd\u8907 Ping \u5931\u6557 -DumbSlave.displayName=\u967d\u6625 Slave EnvironmentVariablesNodeProperty.displayName=\u74b0\u5883\u8b8a\u6578 -JNLPLauncher.displayName=\u900f\u904e Java Web Start \u555f\u52d5 Slave \u4ee3\u7406\u7a0b\u5f0f NodeDescripter.CheckName.Mandatory=\u4e00\u5b9a\u8981\u8f38\u5165\u540d\u7a31 -OfflineCause.LaunchFailed=\u7bc0\u9ede\u96e2\u7dda\uff0c\u56e0\u70ba Jenkins \u7121\u6cd5\u555f\u52d5\u4e0a\u9762\u7684 Slave \u4ee3\u7406\u7a0b\u5f0f\u3002 -RetentionStrategy.Always.displayName=\u76e1\u53ef\u80fd\u8b93 Slave \u4e0a\u7dda RetentionStrategy.Demand.OfflineIdle=\u96fb\u8166\u9592\u7f6e\u96e2\u7dda\uff0c\u9700\u8981\u6642\u624d\u6703\u88ab\u555f\u52d5\u3002 -RetentionStrategy.Demand.displayName=\u9700\u8981\u6642\u624d\u8b93 Slave \u4e0a\u7dda\uff0c\u9592\u7f6e\u6642\u5c31\u96e2\u7dda\u3002 -SimpleScheduledRetentionStrategy.displayName=\u4f9d\u64da\u6392\u7a0b\u8b93 Slave \u4e0a\u7dda SimpleScheduledRetentionStrategy.FinishedUpTime=\u96fb\u8166\u5df2\u7d93\u505a\u6eff\u4e86\u6392\u5b9a\u7684\u4e0a\u7dda\u6642\u9593 SlaveComputer.DisconnectedBy=\u7531 {0} \u4e2d\u65b7\u9023\u7dda{1} diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_de.properties b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_de.properties index 8bbec34fbf1dcb328c18194be64509e47853d728..70ae2479d6a2315220e63145e0c6fd5e2ab7e748 100644 --- a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_de.properties +++ b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_de.properties @@ -1,23 +1,23 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Seiji Sogabe, Simon Wiest -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Seiji Sogabe, Simon Wiest +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + Connection\ was\ broken=Verbindung abgebrochen \ No newline at end of file diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_sr.properties b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..c90bb813262f987a28ec2f09f0ea24f854c42f81 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Connection\ was\ broken=\u0412\u0435\u0437\u0430 \u0458\u0435 \u043F\u0440\u0435\u043A\u0438\u043D\u0443\u0442\u0430 diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_bg.properties b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_bg.properties index 4a2c20e29224581d9acb4ff56d555469a11e1fcb..ccdd23736684ee480ef00cf6175d7d26f078d2b8 100644 --- a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_bg.properties +++ b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -See\ log\ for\ more\ details=\u041F\u0440\u0435\u0433\u043B\u0435\u0434 \u043D\u0430 \u043B\u043E\u0433\u0430 \u0437\u0430 \u043F\u043E\u0432\u0435\u0447\u0435 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F +See\ log\ for\ more\ details=\ + \u0417\u0430 \u043f\u043e\u0432\u0435\u0447\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u0439\u0442\u0435 \u0436\u0443\u0440\u043d\u0430\u043b\u0430 diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_sr.properties b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..5095bc44ec1b20cac211f924b3180d486c211ba0 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +See\ log\ for\ more\ details=\u041F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 \u0436\u0443\u0440\u043D\u0430\u043B \u0437\u0430 \u0432\u0438\u0448\u0435 \u0434\u0435\u0442\u0430\u0459\u0430 diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_sr.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..6e5107cd17cfe6b103d30bd6a889a0f6e59e9046 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_sr.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +In\ demand\ delay=\u041A\u0430\u0448\u045A\u0435\u045A\u0435 \u043D\u0430\u043A\u043E\u043D \u043F\u043E\u0441\u0442\u0430\u0432\u0459\u0430\u045A\u0430 \u0437\u0430\u0434\u0430\u0442\u043A\u0430 +In\ demand\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=\u041A\u0430\u0448\u045A\u0435\u045A\u0435 \u043D\u0430\u043A\u043E\u043D \u043F\u043E\u0441\u0442\u0430\u0432\u0459\u0430\u045A\u0430 \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0430 \u043C\u043E\u0440\u0430 \u0431\u0438\u0442\u0438 \u043D\u0430\u0432\u0435\u0434\u0435\u043D\u043E. +Idle\ delay=\u041A\u0430\u0448\u045A\u0435\u045A\u0435 \u043D\u0430\u043A\u043E\u043D \u0437\u0430\u0432\u0440\u0448\u0435\u0442\u043A\u0430 +Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=\u041A\u0430\u0448\u045A\u0435\u045A\u0435 \u043D\u0430\u043A\u043E\u043D \u0437\u0430\u0432\u0440\u0448\u0435\u0442\u043A\u0430 \u043C\u043E\u0440\u0430 \u0431\u0438\u0442\u0438 \u043D\u0430\u0432\u0435\u0434\u0435\u043D\u043E. diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Scheduled/config_sr.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Scheduled/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..b95c745f05aee69fdfdbeb423e77542da3458c87 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Scheduled/config_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Startup\ Schedule=\u0420\u0430\u0441\u043F\u043E\u0440\u0435\u0434 \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0430 +Shutdown\ Schedule=\u0420\u0430\u0441\u043F\u043E\u0440\u0435\u0434 \u0433\u0430\u0448\u0435\u045A\u0430 diff --git a/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config.jelly b/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config.jelly index e06ed7537b2800b927f7ec7d1899b5e99e5da996..3ef03e52aab3629e3073254811f2ca4783770f4d 100644 --- a/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config.jelly +++ b/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config.jelly @@ -35,7 +35,7 @@ THE SOFTWARE. name="retentionStrategy.upTimeMins" value="${instance.upTimeMins}" checkMessage="${%Scheduled Uptime is mandatory and must be a number.}"/> - + diff --git a/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_da.properties b/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_da.properties index e7e0e0e452585f2e1791d533b5223e230a674487..525c94f6a199dcaefa7aca1cb1006357b807a33f 100644 --- a/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_da.properties +++ b/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_da.properties @@ -22,6 +22,6 @@ Scheduled\ Uptime\ is\ mandatory\ and\ must\ be\ a\ number.=Planlagt oppetid er obligatorisk og skal v\u00e6re et tal. Scheduled\ Uptime=Planlagt oppetid -Keep\ on-line\ while\ jobs\ are\ running=Hold on-line n\u00e5r jobs k\u00f8rer +Keep\ online\ while\ jobs\ are\ running=Hold on-line n\u00e5r jobs k\u00f8rer Startup\ Schedule=Opstartstidsplan uptime.description=Antal minutter noden skal holdes oppe. Hvis dette er l\u00e6ngere end opstartstidsplanen vil noden altid v\u00e6re online. diff --git a/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_de.properties b/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_de.properties index 35f248248399f8ea47369ff28e98d78505dabe0c..75077a36095a3ca3005ad3d96a3f84792c7d4ff8 100644 --- a/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_de.properties +++ b/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_de.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Startup\ Schedule=Anschaltzeitplan -Scheduled\ Uptime=Verfgbare Zeit -Scheduled\ Uptime\ is\ mandatory\ and\ must\ be\ a\ number.=Verfgbare Zeit muss angegeben werden und eine Zahl sein. -Keep\ on-line\ while\ jobs\ are\ running=Slave angeschaltet lassen, solange Jobs laufen. +Scheduled\ Uptime=Verf\u00FCgbare Zeit +Scheduled\ Uptime\ is\ mandatory\ and\ must\ be\ a\ number.=Verf\u00FCgbare Zeit muss angegeben werden und eine Zahl sein. uptime.description=\ - Dies ist die Zeit in Minuten, die dieser Knoten verfgbar bleibt. Ist der Zeitraum lnger als die Zeitabstnde im Zeitplan, dann ist der Knoten dauerhaft verfgbar. + Dies ist die Zeit in Minuten, die dieser Knoten verf\u00FCgbar bleibt. Ist der Zeitraum l\u00E4nger als die Zeitabst\u00E4nde im Zeitplan, dann ist der Knoten dauerhaft verf\u00FCgbar. +Keep\ online\ while\ jobs\ are\ running=Agenten online halten, w\u00E4hrend Builds ausgef\u00FChrt werden diff --git a/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_es.properties b/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_es.properties index 54a97e1b5d1d41d0db33ca793866eb706fa86c55..5275f2d573ff4d590a8649c7933fbd1a10af6d8f 100644 --- a/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_es.properties +++ b/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_es.properties @@ -23,5 +23,5 @@ Startup\ Schedule=Tiempo de inicio programado Scheduled\ Uptime=Tiempo de ejecucin programado Scheduled\ Uptime\ is\ mandatory\ and\ must\ be\ a\ number.=El tiempo de ejecucin programado es obligatorio y debe ser un nmero -Keep\ on-line\ while\ jobs\ are\ running=Mantener en lnea mientras hayan tareas en ejecucin +Keep\ online\ while\ jobs\ are\ running=Mantener en lnea mientras hayan tareas en ejecucin uptime.description=El nmero de minutos para mantener el nodo activo. Si es mayor que el tiempo programado para arrancar, el nodo estar permanentemente en lnea diff --git a/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_fr.properties b/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_fr.properties index 8cadc09c4942f2b3a9d3d4913bbaebe916d175fe..7e776863eb4f4fd53d74ad25a5751f70645d5982 100644 --- a/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_fr.properties +++ b/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_fr.properties @@ -24,4 +24,4 @@ Startup\ Schedule=D Scheduled\ Uptime=Dure du mode actif Scheduled\ Uptime\ is\ mandatory\ and\ must\ be\ a\ number.=Le Uptime pr\u00E9vu est obligatoire et doit \u00EAtre un nombre. Scheduled\ Uptime\ is\ mandatory.=La dure est obligatoire. -Keep\ on-line\ while\ jobs\ are\ running=Garder actif tant que des jobs sont en cours. +Keep\ online\ while\ jobs\ are\ running=Garder actif tant que des jobs sont en cours. diff --git a/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_ja.properties b/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_ja.properties index 28cb24e19eeddd5e3499133952184a29f7a85719..efbad4f8bd6899d5aafdbde79bd9d6f9433f2a03 100644 --- a/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_ja.properties +++ b/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_ja.properties @@ -23,6 +23,6 @@ Startup\ Schedule=\u8D77\u52D5\u30B9\u30B1\u30B8\u30E5\u30FC\u30EB Scheduled\ Uptime=\u52D5\u4F5C\u53EF\u80FD\u6642\u9593 Scheduled\ Uptime\ is\ mandatory\ and\ must\ be\ a\ number.=\u52D5\u4F5C\u53EF\u80FD\u6642\u9593\u306F\u3001\u5FC5\u9808\u304B\u3064\u6570\u5B57\u3067\u3059\u3002 -Keep\ on-line\ while\ jobs\ are\ running=\u30B8\u30E7\u30D6\u8D77\u52D5\u4E2D\u306F\u30AA\u30F3\u30E9\u30A4\u30F3\u3092\u7DAD\u6301 +Keep\ online\ while\ jobs\ are\ running=\u30B8\u30E7\u30D6\u8D77\u52D5\u4E2D\u306F\u30AA\u30F3\u30E9\u30A4\u30F3\u3092\u7DAD\u6301 uptime.description=\ - \u30CE\u30FC\u30C9\u3092\u30AA\u30F3\u30E9\u30A4\u30F3\u306E\u307E\u307E\u7DAD\u6301\u3059\u308B\u6642\u9593(\u5206)\u3067\u3059\u3002\u3053\u306E\u5024\u304C\u8D77\u52D5\u30B9\u30B1\u30B8\u30E5\u30FC\u30EB\u306E\u9593\u9694\u3088\u308A\u9577\u3051\u308C\u3070\u3001\u30CE\u30FC\u30C9\u306F\u5E38\u306B\u30AA\u30F3\u30E9\u30A4\u30F3\u306E\u307E\u307E\u306B\u306A\u308A\u307E\u3059\u3002\u3000 \ No newline at end of file + \u30CE\u30FC\u30C9\u3092\u30AA\u30F3\u30E9\u30A4\u30F3\u306E\u307E\u307E\u7DAD\u6301\u3059\u308B\u6642\u9593(\u5206)\u3067\u3059\u3002\u3053\u306E\u5024\u304C\u8D77\u52D5\u30B9\u30B1\u30B8\u30E5\u30FC\u30EB\u306E\u9593\u9694\u3088\u308A\u9577\u3051\u308C\u3070\u3001\u30CE\u30FC\u30C9\u306F\u5E38\u306B\u30AA\u30F3\u30E9\u30A4\u30F3\u306E\u307E\u307E\u306B\u306A\u308A\u307E\u3059\u3002\u3000 diff --git a/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_pt_BR.properties b/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_pt_BR.properties index 4022c771703cc360f39aac4136d04a145ef32323..39bd2696607ff99e237efeb555616ca83fec51f3 100644 --- a/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_pt_BR.properties @@ -25,5 +25,5 @@ Startup\ Schedule=Agenda de inicializa # \ # The number of minutes to keep the node up for. If this is longer than the startup schedule, then the node will remain constantly on-line. uptime.description=O n\u00famero de minutos para manter o n\u00f3 no ar -Keep\ on-line\ while\ jobs\ are\ running=Manter on-line enquanto estiverem rodando jobs +Keep\ online\ while\ jobs\ are\ running=Manter on-line enquanto estiverem rodando jobs Scheduled\ Uptime\ is\ mandatory\ and\ must\ be\ a\ number.=Agenda de uptime \u00e9 obrigat\u00f3ria e precisa ser um n\u00famero. diff --git a/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_sr.properties b/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..4a372ed19400c05dce9b0cc8f5b1453db4402fc1 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_sr.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Startup\ Schedule=\u0420\u0430\u0441\u043F\u043E\u0440\u0435\u0434 \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0430 +Scheduled\ Uptime=\u0420\u0430\u0441\u043F\u043E\u0440\u0435\u0434 \u0432\u0440\u0435\u043C\u0435\u043D\u0430 \u043D\u0435\u043F\u0440\u0435\u043A\u0438\u0434\u043D\u043E\u0433 \u0440\u0430\u0434\u0430 +uptime.description=\u041A\u043E\u043B\u0438\u043A\u043E \u043C\u0438\u043D\u0443\u0442\u0430 \u045B\u0435 \u0441\u0435 \u043E\u0434\u0440\u0436\u0430\u0432\u0430\u0442\u0438 \u0432\u0435\u0437\u0443 \u0441\u0430 \u043C\u0430\u0448\u0438\u043D\u043E\u043C. \u0410\u043A\u043E \u043F\u0440\u0435\u043A\u043E\u0440\u0430\u0447\u0443\u0458\u0435 \u0440\u0430\u0441\u043F\u043E\u0440\u0435\u0434 \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0430, \u043E\u043D\u0434\u0430 \u045B\u0435 \u043C\u0430\u0448\u0438\u043D\u0430 \u043E\u0441\u0442\u0430\u0442\u0438 \u043F\u043E\u0432\u0435\u0437\u0430\u043D\u0430. +Scheduled\ Uptime\ is\ mandatory\ and\ must\ be\ a\ number.= +Keep\ online\ while\ jobs\ are\ running=\u041E\u0434\u0440\u0436\u0438 \u0432\u0435\u0437\u0443 \u0434\u043E\u043A \u0441\u0435 \u0438\u0437\u0432\u0440\u0448\u0430\u0432\u0430\u0458\u0443 \u0437\u0430\u0434\u0430\u0446\u0438 diff --git a/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_zh_TW.properties b/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_zh_TW.properties index f29f194e2d04dc9eaff4e97feaf699e0c382a51c..87e353f0c6fcf76dd53dbd31b54b378df717c94f 100644 --- a/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_zh_TW.properties @@ -24,4 +24,4 @@ Startup\ Schedule=\u555F\u52D5\u6392\u7A0B Scheduled\ Uptime=\u6392\u5B9A\u7684\u904B\u4F5C\u6642\u9593 uptime.description=\u7BC0\u9EDE\u4E0A\u7DDA\u7684\u5206\u9418\u6578\u3002\u5982\u679C\u8D85\u904E\u4E0B\u6B21\u555F\u52D5\u6392\u7A0B\u7684\u6642\u9593\uFF0C\u9019\u500B\u7BC0\u9EDE\u5C31\u6703\u4E00\u76F4\u5728\u7DDA\u4E0A\u3002 Scheduled\ Uptime\ is\ mandatory\ and\ must\ be\ a\ number.=\u6392\u5B9A\u7684\u904B\u4F5C\u6642\u9593\u4E00\u5B9A\u8981\u8F38\u5165\u6578\u5B57\u3002 -Keep\ on-line\ while\ jobs\ are\ running=\u9084\u6709 Job \u57F7\u884C\u6642\u4FDD\u6301\u5728\u4E0A\u7DDA\u72C0\u614B +Keep\ online\ while\ jobs\ are\ running=\u9084\u6709 Job \u57F7\u884C\u6642\u4FDD\u6301\u5728\u4E0A\u7DDA\u72C0\u614B diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/already-launched.jelly b/core/src/main/resources/hudson/slaves/SlaveComputer/already-launched.jelly index 497c61514fa1b4b58176b2fed809f0da55881435..cd905e18abd314fb9fa679f5b4f8de9b895590c1 100644 --- a/core/src/main/resources/hudson/slaves/SlaveComputer/already-launched.jelly +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/already-launched.jelly @@ -3,7 +3,7 @@ - The slave has been already launched. + The agent has been already launched. diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/disconnect_bg.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/disconnect_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..d3ab8094c7852c1cfcffe60d44f8c7587d278222 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/disconnect_bg.properties @@ -0,0 +1,31 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +Yes=\ + \u0414\u0430 +disconnect=\ + \u0418\u0437\u0432\u044a\u043d \u043b\u0438\u043d\u0438\u044f +# You can optionally explain why you are taking this node offline, so that others can see why: +blurb=\ + \u041c\u043e\u0436\u0435 \u0434\u0430 \u043e\u0431\u044f\u0441\u043d\u0438\u0442\u0435 \u043d\u0430 \u0434\u0440\u0443\u0433\u0438\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 \u0437\u0430\u0449\u043e \u0432\u0430\u0434\u0438\u0442\u0435 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u0430 \u0438\u0437\u0432\u044a\u043d \u043b\u0438\u043d\u0438\u044f: +Are\ you\ sure\ about\ disconnecting?=\ + \u0421\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440\u0430 \u0438\u0437\u0432\u044a\u043d \u043b\u0438\u043d\u0438\u044f? diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/disconnect_de.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/disconnect_de.properties index 4956c0ef8ef88414b3e17ed0f93ab2734fffbb2e..bdca7cea47b693f5e1b777800e83645f373ee478 100644 --- a/core/src/main/resources/hudson/slaves/SlaveComputer/disconnect_de.properties +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/disconnect_de.properties @@ -22,7 +22,7 @@ disconnect=Trennen blurb=\ - Sie knnen optional kurz erklren, warum Sie den Knoten abschalten. Dieser Text ist \ - sichtbar fr andere Benutzer: -Are\ you\ sure\ about\ disconnecting?=Mchten Sie die Verbindung zum Slave wirklich trennen? + Sie k\u00F6nnen optional kurz erkl\u00E4ren, warum Sie den Knoten abschalten. Dieser Text ist \ + sichtbar f\u00FCr andere Benutzer: Yes=Ja +Are\ you\ sure\ about\ disconnecting?=M\u00F6chten Sie wirklich trennen? diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/disconnect_sr.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/disconnect_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..8dd7d8cc41e09cfddd71ec4eeca90d876be31680 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/disconnect_sr.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +disconnect=\u043F\u0440\u0435\u043A\u0438\u043D\u0438 \u0432\u0435\u0437\u0443 +Are\ you\ sure\ about\ disconnecting?=\u0414\u0430 \u043B\u0438 \u0441\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043D\u0438 \u0434\u0430 \u0436\u0435\u0438\u043B\u0438\u0442\u0435 \u0434\u0430 \u043F\u0440\u0435\u043A\u0438\u043D\u0435\u0442\u0435 \u0432\u0435\u0437\u0443? +Yes=\u0414\u0430 +blurb=\u041C\u043E\u0436\u0435\u0442\u0435 \u043E\u043F\u0446\u0438\u043E\u043D\u043E \u043D\u0430\u0432\u0435\u0441\u0442\u0430 \u0440\u0430\u0437\u043B\u043E\u0433 \u0437\u0430\u0448\u0442\u043E \u0441\u0435 \u043F\u0440\u0435\u043A\u0438\u0434\u0430 \u0432\u0435\u0437\u0430: diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/log_bg.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/log_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..cc395f5fcb68be1a05fe68b97b911e48fd1687f0 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/log_bg.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Log\ Records=\ + \u0416\u0443\u0440\u043d\u0430\u043b\u043d\u0438 \u0437\u0430\u043f\u0438\u0441\u0438 diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/log_de.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/log_de.properties new file mode 100644 index 0000000000000000000000000000000000000000..4324c8667876ecfab27c621c4067ef2458d1bd21 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/log_de.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2017 Daniel Beck and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Log\ Records=Log-Aufzeichnungen diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/log_sr.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/log_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..342f76eea2c02c11e790cbdbcc839e2bcf664d9f --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/log_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Log\ Records=\u0416\u0443\u0440\u043D\u0430\u043B \u043F\u043E\u0434\u0430\u0446\u0438 \ No newline at end of file diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_bg.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_bg.properties index 008958ca66733bda2ba49240ca5c0f74fc5a2a15..91b3578924953a79adbe844b46de363e5b9316af 100644 --- a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_bg.properties +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,5 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Log=\u041B\u043E\u0433 -System\ Information=\u0421\u0438\u0441\u0442\u0435\u043C\u043D\u0430 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F +Log=\ + \u0416\u0443\u0440\u043d\u0430\u043b +System\ Information=\ + \u0421\u0438\u0441\u0442\u0435\u043c\u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f +Disconnect=\ + \u041f\u0440\u0435\u043a\u044a\u0441\u0432\u0430\u043d\u0435 \u043d\u0430 \u0432\u0440\u044a\u0437\u043a\u0430\u0442\u0430 diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_eo.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_eo.properties deleted file mode 100644 index 0e738b9d276a88c4808a4401392801c360d8b977..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_eo.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -System\ Information=Sisteminformacio diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_sr.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..072ff6db922c12bd1bed8b8182ae3f0999992860 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Log=\u0416\u0443\u0440\u043D\u0430\u043B +System\ Information=\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0435 \u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0443 +Disconnect=\u041F\u0440\u0435\u043A\u0438\u043D\u0438 \u0432\u0435\u0437\u0443 diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel_sr.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..5986eb659ef0f052be6ed5a5629c916bd0409b57 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel_sr.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +System\ Information=\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0435 \u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0443 +Back\ to\ List=\u041D\u0430\u0437\u0430\u0434 \u043A\u0430 \u0441\u043F\u0438\u0441\u043A\u0443 +Status=\u0421\u0442\u0430\u045A\u0435 +Log=\u0416\u0443\u0440\u043D\u0430\u043B +Disconnect=\u041F\u0440\u0435\u043A\u0438\u043D\u0438 \u0432\u0435\u0437\u0443 +Build\ History=\u0418\u0441\u0442\u043E\u0440\u0438\u0458\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \ No newline at end of file diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/slave-agent.jnlp.jelly b/core/src/main/resources/hudson/slaves/SlaveComputer/slave-agent.jnlp.jelly index 9f25865224223b8e63fcf30e7a13b63c6dd66d91..1f55586f1d10e078a82c541154a67d5ed5d9afdc 100644 --- a/core/src/main/resources/hudson/slaves/SlaveComputer/slave-agent.jnlp.jelly +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/slave-agent.jnlp.jelly @@ -37,7 +37,7 @@ THE SOFTWARE. codebase="${rootURL}computer/${h.encode(it.node.nodeName)}/"> - Slave Agent for ${it.displayName} + Agent for ${it.displayName} Jenkins project @@ -50,14 +50,13 @@ THE SOFTWARE. - + - + - @@ -67,6 +66,22 @@ THE SOFTWARE. -tunnel ${it.launcher.tunnel} + + -workDir + + + ${it.node.remoteFS} + + + ${it.launcher.workDirSettings.workDirPath} + + + -internalDir + ${it.launcher.workDirSettings.internalDir} + + -failIfWorkDirIsMissing + + -url ${rootURL} diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo.jelly b/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo.jelly index f9b93b6e8c3b6e0b8f4743b93bf5035cf27c2e59..279fc74807f66d8c1557bc41a743ce89c2dd1dbd 100644 --- a/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo.jelly +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo.jelly @@ -53,7 +53,7 @@ THE SOFTWARE. - ${%System Information is unavailable when slave is offline.} + ${%System Information is unavailable when agent is offline.} diff --git a/core/src/main/resources/jenkins/diagnostics/PinningIsBlockingBundledPluginMonitor/message_pt_BR.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_bg.properties similarity index 51% rename from core/src/main/resources/jenkins/diagnostics/PinningIsBlockingBundledPluginMonitor/message_pt_BR.properties rename to core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_bg.properties index c2aeee6083202e372cc14b42319596d5658e8b81..71fab9b73b9b2c9397c6121b25dc83efcb3fd90e 100644 --- a/core/src/main/resources/jenkins/diagnostics/PinningIsBlockingBundledPluginMonitor/message_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributers +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,11 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -# This version of Jenkins comes with new versions of the following plugins that are currently \ -# pinned in \ -# the plugin manager. \ -# It is recommended to upgrade them to at least the version bundled with Jenkins. -blurb=Essa vers\u00e3o do Jenkins vem com as vers\u00f5es novas dos seguintes plugins \ - pinned no \ - gerenciador de plugin. \ - \u00c9 recomendado atualizar para pelo menos a vers\u00e0o que vem junto com o Jenkins. +System\ Information\ is\ unavailable\ when\ slave\ is\ offline.=\ + \u041a\u043e\u0433\u0430\u0442\u043e \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u0438\u044f\u0442 \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440 \u043d\u0435 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f, \u043b\u0438\u043f\u0441\u0432\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430. +System\ Information=\ +\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430 +System\ Information\ is\ unavailable\ when\ agent\ is\ offline.=\ + \u041a\u043e\u0433\u0430\u0442\u043e \u0430\u0433\u0435\u043d\u0442\u044a\u0442 \u043d\u0435 \u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f, \u043b\u0438\u043f\u0441\u0432\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430. diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_de.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_de.properties index 5765fa2ceee3a270495aeb9759eaed42b23bb759..857db73278f031d13771dc154ff4fefc3c3d5d17 100644 --- a/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_de.properties +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_de.properties @@ -21,6 +21,4 @@ # THE SOFTWARE. System\ Information=Systeminformationen -System\ Properties=Systemeigenschaften -Environment\ Variables=Umgebungsvariablen -Thread\ Dump=Thread Dump +System\ Information\ is\ unavailable\ when\ agent\ is\ offline.=Systeminformationen sind nicht verf\u00FCgbar, wenn der Agent offline ist. diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_ja.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_ja.properties index 68f9d62e9faee33956e3337a4b58bb5ff8babfbe..946b7ac4cb260f3c39aca5948b35f66bba464e7f 100644 --- a/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_ja.properties +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_ja.properties @@ -21,5 +21,3 @@ # THE SOFTWARE. System\ Information=\u30b7\u30b9\u30c6\u30e0\u60c5\u5831 -System\ Information\ is\ unavailable\ when\ slave\ is\ offline.=\ -\u30b9\u30ec\u30fc\u30d6\u304c\u30aa\u30d5\u30e9\u30a4\u30f3\u306e\u5834\u5408\u306b\u306f\u3001\u30b7\u30b9\u30c6\u30e0\u60c5\u5831\u306f\u5229\u7528\u3067\u304d\u307e\u305b\u3093\u3002 \ No newline at end of file diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_pt_BR.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_pt_BR.properties index 7ca948edf62492e507731fcc2b2fc0a52972983d..54e0a66aa7c226b166e6b7c006fc14357ad34d6c 100644 --- a/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_pt_BR.properties @@ -21,4 +21,3 @@ # THE SOFTWARE. System\ Information=Informa\u00e7t\u00e3o de sistema -System\ Information\ is\ unavailable\ when\ slave\ is\ offline.=As informa\u00e7\u00f5es do sistema n\u00e3o est\u00e3o dispon\u00edveis quando o sistema est\u00e1 offline. diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_sr.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..a5f7432961709b0955223c6b87bba81f3bdd2da6 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_sr.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +System\ Information=\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0435 \u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0443 +System\ Information\ is\ unavailable\ when\ agent\ is\ offline.=\u041D\u0438\u0458\u0435 \u043C\u043E\u0433\u0443\u045B\u0435 \u0443\u0447\u0438\u0442\u0430\u0442\u0438 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0435 \u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0443 \u043A\u0430\u0434 \u0458\u0435 \u043C\u0430\u0448\u043D\u0438\u0430 \u043D\u0435\u043F\u043E\u0432\u0435\u0437\u0430\u043D\u0430. +System\ Information\ is\ unavailable\ when\ slave\ is\ offline.=\u041D\u0438\u0458\u0435 \u043C\u043E\u0433\u0443\u045B\u0435 \u0443\u0447\u0438\u0442\u0430\u0442\u0438 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0435 \u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0443 \u043A\u0430\u0434 \u0458\u0435 \u043F\u043E\u043C\u043E\u045B\u043D\u0430 \u043C\u0430\u0448\u043D\u0438\u0430 \u043D\u0435\u043F\u043E\u0432\u0435\u0437\u0430\u043D\u0430. +System\ Properties=\u041F\u043E\u0441\u0442\u0430\u0432\u043A\u0435 \u0441\u0438\u0441\u0442\u0435\u043C\u0430 +Environment\ Variables=\u0413\u043B\u043E\u0431\u0430\u043B\u043D\u0435 \u043F\u0440\u043E\u043C\u0435\u043D\u0459\u0438\u0432\u0435 +Thread\ Dump=\u0414\u0435\u043F\u043E\u043D\u0438\u0458\u0430 \u043D\u0438\u0442\u043E\u0432\u0430 diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/threadDump_bg.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/threadDump_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..9603430d1a76792a35b018e6ffa7333baf62ca17 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/threadDump_bg.properties @@ -0,0 +1,27 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +# {0} Thread Dump +title=\ + \u0421\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043d\u0430 \u043d\u0438\u0448\u043a\u0430 {0} +Thread\ Dump=\ + \u0421\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043d\u0430 \u043d\u0438\u0448\u043a\u0430 diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/threadDump_de.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/threadDump_de.properties index 6dc1884ce59426e72f0c73f655c1f6b4acd8e3d9..11b66c852d16e4003bf412268fe5b080195a94dc 100644 --- a/core/src/main/resources/hudson/slaves/SlaveComputer/threadDump_de.properties +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/threadDump_de.properties @@ -1,23 +1,23 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNEC - -title={0} Thread Dump -Thread\ Dump=Thread Dump +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNEC + +title={0} Thread Dump +Thread\ Dump=Thread Dump diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/threadDump_sr.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/threadDump_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..59ba3a01f64d01682935dfd97ecf4fdb516b0ba9 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/threadDump_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +title={0} \u0414\u0435\u043F\u043E\u043D\u0438\u0458\u0430 \u043D\u0438\u0442\u043E\u0432\u0430 +Thread\ Dump={0} \u0414\u0435\u043F\u043E\u043D\u0438\u0458\u0430 \u043D\u0438\u0442\u043E\u0432\u0430 diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/config_de.properties b/core/src/main/resources/hudson/tasks/ArtifactArchiver/config_de.properties index 314c9909e7a0fb22f2788e0b4150db32de38e2d9..ded29a42789f600b41a50f3a3872b5ffcb1eae6f 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/config_de.properties +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/config_de.properties @@ -21,5 +21,9 @@ # THE SOFTWARE. Files\ to\ archive=Dateien, die archiviert werden sollen -Excludes=Ausschl\u00fcsse -Fingerprint\ all\ archived\ artifacts=Erzeuge Fingerabdr\u00fccke von allen archivierten Artefakten +Excludes=Ausschl\u00FCsse +Fingerprint\ all\ archived\ artifacts=Erzeuge Fingerabdr\u00FCcke von allen archivierten Artefakten +allowEmptyArchive=Den Build nicht als fehlgeschlagen markieren, wenn nichts archiviert wird. +caseSensitive=Gro\u00DF- und Kleinschreibung im Dateisuchmuster ber\u00FCcksichtigen +defaultExcludes=Standard-Ausschlussmuster verwenden +onlyIfSuccessful=Artefakte nur archivieren, wenn der Build erfolgreich ist diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/config_pl.properties b/core/src/main/resources/hudson/tasks/ArtifactArchiver/config_pl.properties index 3752d192fa74fd5b3cc09d5d2a502a2ab0d65c51..75d09b7600c68e7f15a4beb685b43fa393e10449 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/config_pl.properties +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/config_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright 2014 Jesse Glick. +# Copyright 2014-2016 Jesse Glick, Damian Szczepanik # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,4 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Fingerprint\ all\ archived\ artifacts=Odcisk palca wszystkich zarchiwizowanych artefakt\u00f3w +Fingerprint\ all\ archived\ artifacts=Odcisk palca wszystkich zarchiwizowanych artefakt\u00F3w +Files\ to\ archive=Pliki do zarchiwizowania +# Do not fail build if archiving returns nothing +allowEmptyArchive=Nie oznaczaj zadania niepowodzeniem, je\u015Bli nie odnaleziono plik\u00F3w do zarchiwizowania +Excludes=Pliki do pomini\u0119cia +# Treat include and exclude patterns as case sensitive +caseSensitive=Uwzgl\u0119dniaj wielko\u015B\u0107 liter przy filtrowaniu plik\u00F3w do zarchiwizowania +# Archive artifacts only if build is successful +onlyIfSuccessful=Archiwizuj pliki tylko, je\u015Bli zadanie zako\u0144czy\u0142o si\u0119 powodzeniem +# Use default excludes +defaultExcludes=U\u017Cywaj domy\u015Blnego filtru dla plik\u00F3w, kt\u00F3re nale\u017Cy pomin\u0105\u0107 diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/config_sr.properties b/core/src/main/resources/hudson/tasks/ArtifactArchiver/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..09d2f6b36348493159abb1cd99b9b3fb7a8a1530 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/config_sr.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Files\ to\ archive=\u0414\u0430\u0442\u043E\u0442\u0435\u043A\u0435 \u0437\u0430 \u0430\u0440\u0445\u0438\u0432\u0430\u045A\u0435 +Excludes=\u0418\u0437\u0441\u043A\u0459\u0443\u0447\u0435\u045A\u0430 +allowEmptyArchive=\u041D\u0435\u043C\u043E\u0458 \u043E\u043A\u043E\u043D\u0447\u0430\u0442\u0438 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 \u0430\u043A\u043E \u0430\u0440\u0445\u0438\u0432\u0430\u0442\u043E\u0440 \u043D\u0435 \u0443\u0441\u043F\u0435 +onlyIfSuccessful=\u0410\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u0458 \u0430\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0435 \u0441\u0430\u043C\u043E \u043A\u0430\u0434\u0430 \u0458\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u0430 +Fingerprint\ all\ archived\ artifacts=\u0423\u0437\u043C\u0438 \u043E\u0442\u0438\u0441\u043A\u0435 \u0441\u0432\u0438\u0445 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043D\u0438\u043C \u0430\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0438\u043C\u0430 +defaultExcludes=\u041A\u043E\u0440\u0438\u0441\u0442\u0438 \u0443\u043E\u0431\u0438\u0447\u0430\u0458\u0435\u043D\u0430 \u0438\u0437\u0443\u0437\u0438\u043C\u0430\u045A\u0430 +caseSensitive=\u0422\u0440\u0435\u0442\u0438\u0440\u0430\u0458 \u043F\u0435\u043B\u0438\u043A\u0430 \u0438 \u043C\u0430\u043B\u0430 \u0441\u043B\u043E\u0432\u0430 \u043F\u043E \u0438\u0437\u0443\u0437\u0438\u043C\u0430\u045A\u0430 \u0438 \u0443\u0437\u0438\u043C\u0430\u045A\u0430 \u0448\u0430\u0431\u043B\u043E\u043D\u0435 \u0458\u0435\u0434\u043D\u0430\u0438\u043C diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-defaultExcludes_sr.properties b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-defaultExcludes_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..1ca86e02143950b1835a0525a02dbdaaf25644e6 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-defaultExcludes_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +p1=\u0410\u0440\u0445\u0438\u0432\u0430\u0442\u043E\u0440 \u0430\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0438 \u043A\u043E\u0440\u0438\u0441\u0442\u0438 Ant org.apache.tools.ant.DirectoryScanner, \u0448\u0442\u043E \u0438\u0441\u043A\u0459\u0443\u0447\u0443\u0458\u0435 \u043D\u0430\u0440\u0435\u0434\u043D\u0435 \u0448\u0430\u0431\u043B\u043E\u043D\u0435: +p2=\u041E\u0432\u0430 \u043E\u043F\u0446\u0438\u0458\u0430 \u043F\u0440\u0443\u0436\u0438 \u043C\u043E\u0433\u0443\u045B\u043D\u043E\u0441\u0442 \u0434\u0430 \u0441\u0435 \u0443\u043A\u0459\u0443\u0447\u0435 \u0438\u043B\u0438 \u0438\u0441\u043A\u0459\u0443\u0447\u0435 Ant \u0438\u0437\u0443\u0437\u0438\u043C\u0430\u045A\u0430. \ No newline at end of file diff --git a/core/src/main/resources/hudson/tasks/BatchFile/config.jelly b/core/src/main/resources/hudson/tasks/BatchFile/config.jelly index 35e5f89c41f8d4e87cee4fe4ddda4607cc91727f..19fbdcef646d218856ddb69b2dff12fd7bedf283 100644 --- a/core/src/main/resources/hudson/tasks/BatchFile/config.jelly +++ b/core/src/main/resources/hudson/tasks/BatchFile/config.jelly @@ -28,4 +28,9 @@ THE SOFTWARE. description="${%description(rootURL)}"> + + + + + diff --git a/core/src/main/resources/hudson/tasks/BatchFile/config_de.properties b/core/src/main/resources/hudson/tasks/BatchFile/config_de.properties index 5c68ffca34c70f6a2ef036c3ffe4f9ad5f5048c7..ca2beda6e1bdd1474c1a8eaf19df0393d71d535b 100644 --- a/core/src/main/resources/hudson/tasks/BatchFile/config_de.properties +++ b/core/src/main/resources/hudson/tasks/BatchFile/config_de.properties @@ -1,3 +1,3 @@ Command=Kommando -description=\ -Liste der verfgbaren Umgebungsvariablen +description=Liste verf\u00FCgbarer Umgebungsvariablen +ERRORLEVEL\ to\ set\ build\ unstable=ERRORLEVEL, mit dem der Build als instabil markiert wird diff --git a/core/src/main/resources/hudson/tasks/BatchFile/config_sr.properties b/core/src/main/resources/hudson/tasks/BatchFile/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..cccacf6fa85480cab21e00a57e4d91af7633de8a --- /dev/null +++ b/core/src/main/resources/hudson/tasks/BatchFile/config_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Command=\u041A\u043E\u043C\u0430\u043D\u0434\u0430 +description=\u041F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458 \u0441\u043F\u0438\u0441\u0430\u043A \u043F\u0440\u043E\u043C\u0435\u043D\u0459\u0438\u0432\u0430 diff --git a/core/src/main/resources/hudson/tasks/BatchFile/help-unstableReturn.html b/core/src/main/resources/hudson/tasks/BatchFile/help-unstableReturn.html new file mode 100644 index 0000000000000000000000000000000000000000..0ee113e9e0c52d48a06f7b2406e64d7b9d00c80d --- /dev/null +++ b/core/src/main/resources/hudson/tasks/BatchFile/help-unstableReturn.html @@ -0,0 +1,9 @@ +
      + If set, the batch errorlevel result that will be interpreted as an unstable build result. + If the final errorlevel matches the value, the build results will be set to unstable and + next steps will be continued. Supported values match the widest errorlevel range for Windows + like systems. In Windows NT4 and beyond the ERRORLEVEL is stored as a four byte, signed integer, + yielding maximum and minimum values of 2147483647 and -2147483648, respectively. Older versions + of Windows use 2 bytes. DOS like systems use single byte, yielding errorlevels between 0-255. + The value 0 is ignored and does not make the build unstable to keep the default behaviour consistent. +
      diff --git a/core/src/main/resources/hudson/tasks/BuildTrigger/config_de.properties b/core/src/main/resources/hudson/tasks/BuildTrigger/config_de.properties index 1f56a5b8c6adcdaf44a82231fc304dd8ab6e8062..76d3309d9099c06ff1fff01da5e1012ed9a43476 100644 --- a/core/src/main/resources/hudson/tasks/BuildTrigger/config_de.properties +++ b/core/src/main/resources/hudson/tasks/BuildTrigger/config_de.properties @@ -1,26 +1,26 @@ -# The MIT License -# -# Copyright (c) 2004-2015, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Projects\ to\ build=Zu bauende Projekte -Trigger\ only\ if\ build\ is\ stable=Nur auslsen, wenn der Build stabil ist -Trigger\ even\ if\ the\ build\ is\ unstable=Auslsen, selbst wenn der Build instabil ist +# The MIT License +# +# Copyright (c) 2004-2015, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Projects\ to\ build=Zu bauende Projekte +Trigger\ only\ if\ build\ is\ stable=Nur auslsen, wenn der Build stabil ist +Trigger\ even\ if\ the\ build\ is\ unstable=Auslsen, selbst wenn der Build instabil ist Trigger\ even\ if\ the\ build\ fails=Auslsen, selbst wenn der Build fehlschlgt \ No newline at end of file diff --git a/core/src/main/resources/hudson/tasks/BuildTrigger/config_sr.properties b/core/src/main/resources/hudson/tasks/BuildTrigger/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..0065e35dc1fbe08bed686f135821bf303299bb41 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/BuildTrigger/config_sr.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Trigger\ only\ if\ build\ is\ stable=\u0418\u0437\u0430\u0437\u043E\u0432\u0438 \u0441\u0430\u043C\u043E \u0430\u043A\u043E \u0458\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0441\u0442\u0430\u0431\u0438\u043B\u043D\u0430 +Trigger\ even\ if\ the\ build\ is\ unstable=\u0418\u0437\u0430\u0437\u043E\u0432\u0438 \u0447\u0430\u043A \u0438 \u0430\u043A\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0458\u0435 \u043D\u0435\u0441\u0442\u0430\u0431\u0438\u043B\u043D\u0430 +Trigger\ even\ if\ the\ build\ fails=\u0418\u0437\u0430\u0437\u043E\u0432\u0438 \u0447\u0430\u043A \u0438 \u0430\u043A\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u043D\u0435\u0431\u0443\u0434\u0435 \u0443\u0441\u043F\u0435\u043B\u0430 +Projects\ to\ build=\u041F\u0440\u043E\u0458\u0435\u043A\u0442\u0438 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_sr.properties b/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..2af320ae8fa9fc3a91676e825625f9ca1b62b96c --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_sr.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Recorded\ Fingerprints=\u0417\u0430\u0431\u0435\u043B\u0435\u0436\u0435\u043D\u0435 \u043E\u0441\u0442\u0438\u0441\u043A\u0435 +File=\u0414\u0430\u0442\u043E\u0442\u0435\u043A\u0430 +Original\ owner=\u041E\u0440\u0438\u0433\u0438\u043D\u0430\u043B\u043D\u0438 \u0432\u043B\u0430\u0441\u043D\u0438\u043A +Age=\u0421\u0442\u0430\u0440\u043E\u0441\u0442 +outside\ Jenkins=\u0441\u043F\u043E\u0459\u043E\u043C Jenkins-\u0430 +this\ build=\u043E\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 +more\ details=\u0414\u0435\u0442\u0430\u0459\u0438 \ No newline at end of file diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/config_sr.properties b/core/src/main/resources/hudson/tasks/Fingerprinter/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..0c97635891ca966630bafa58c07a5a50a7b7de9b --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/config_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Files\ to\ fingerprint=\u0414\u0430\u0442\u043E\u0442\u0435\u043A\u0435 \u0437\u0430 \u043E\u0442\u0438\u0441\u0430\u043A diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/help.html b/core/src/main/resources/hudson/tasks/Fingerprinter/help.html index b84d67f0c3125df8d0d933c5bdcbfd5674e88613..cdbcdd57c89ba07435ffee33fb8d578b31e41db5 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/help.html +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/help.html @@ -26,6 +26,6 @@ is used) need to use this and record fingerprints.

      - See this document + See this document for more details. diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/help_de.html b/core/src/main/resources/hudson/tasks/Fingerprinter/help_de.html index a605400804debdc7aa9fd5c302255a53c0780422..5416a582857f4e29ffc66e828f695222054a32bb 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/help_de.html +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/help_de.html @@ -27,5 +27,5 @@ Projekt, in dem eine Datei produziert wird, sondern alle Projekte, welche die Datei verwenden) diese Funktion verenden und Fingerabdrücke aufzeichnen.

      - Weitere Informationen (auf Englisch) + Weitere Informationen (auf Englisch) diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/help_fr.html b/core/src/main/resources/hudson/tasks/Fingerprinter/help_fr.html index 0a353d46feabf8f2e8701b58a8c3a695dc161fe6..ab9fadd307163a3979c3b687527bc2858ab0eb26 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/help_fr.html +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/help_fr.html @@ -33,6 +33,6 @@

      Voir - ce document + ce document pour plus de details. diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/help_ja.html b/core/src/main/resources/hudson/tasks/Fingerprinter/help_ja.html index 6f4e235eb30f2f80b1988579aba342fc55754d4e..373c21c411dda07ad84fecc97882228435de1a1a 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/help_ja.html +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/help_ja.html @@ -26,7 +26,7 @@ ファイルを利用するプロジェクト)すべてで,ファイル指紋を記録する必要があります。

      より詳しくは - このドキュメントを + このドキュメントを 参照してください。 diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/help_pt_BR.html b/core/src/main/resources/hudson/tasks/Fingerprinter/help_pt_BR.html index 6087ebb004e1a242d0abc840c05d6fde99ea8909..5c113191f7be82d1d715f0646d02c350f786f19c 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/help_pt_BR.html +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/help_pt_BR.html @@ -26,6 +26,6 @@ é usado) necessitam usar isto e gravar os fingerprints.

      - Veja esta documentação + Veja esta documentação para mais detalhes. diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/help_ru.html b/core/src/main/resources/hudson/tasks/Fingerprinter/help_ru.html index 60aecef37a03524498f173fd1d2eecebfedb9766..057832d20c67288655d8694beb4bc2a26cda5959 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/help_ru.html +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/help_ru.html @@ -26,6 +26,6 @@ должны также включить эту опцию и сохранять свои отпечатки.

      - Прочтите этот документ + Прочтите этот документ если вы хотите узнать больше. diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/help_tr.html b/core/src/main/resources/hudson/tasks/Fingerprinter/help_tr.html index 8464d5a98a7749cff2730ebe11cd5a7a090652c5..36e010f00d4271bed915467d9619dc700de2fbc8 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/help_tr.html +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/help_tr.html @@ -25,5 +25,5 @@ aynı zamanda bu dosyayı kullanan projelerin de) bunu kullanması ve parmakizlerini kaydetmesi gereklidir.

      - Daha fazla bilgi için lütfen tıklayın + Daha fazla bilgi için lütfen tıklayın diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/help_zh_TW.html b/core/src/main/resources/hudson/tasks/Fingerprinter/help_zh_TW.html index 87133e07f0ca180bcb971ad47c8caf5c4995bf6f..b38287df9e3c5f5c98dbb0fb3be6775dc1273552 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/help_zh_TW.html +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/help_zh_TW.html @@ -24,5 +24,5 @@ 都要開啟指紋記錄功能。

      - 詳情請參考這份文件。 + 詳情請參考這份文件。 diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_bg.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_bg.properties index 090901ab68dfe431bb0a57b8c44960a6215b1b89..39f0694dfcae5db7461f880d41c6fc87532f766f 100644 --- a/core/src/main/resources/hudson/tasks/LogRotator/config_bg.properties +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,6 +20,25 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Days\ to\ keep\ artifacts=\u0414\u043D\u0438, \u043F\u0440\u0435\u0437 \u043A\u043E\u0438\u0442\u043E \u0434\u0430 \u0441\u0435 \u043F\u0430\u0437\u044F\u0442 \u0430\u0440\u0442\u0438\u0444\u0430\u043A\u0442\u0438\u0442\u0435 -Days\ to\ keep\ builds=\u0414\u043D\u0438, \u043F\u0440\u0435\u0437 \u043A\u043E\u0438\u0442\u043E \u0434\u0430 \u0441\u0435 \u043F\u0430\u0437\u044F\u0442 \u0431\u0438\u043B\u0434\u043E\u0432\u0435\u0442\u0435 -if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=\u0430\u043A\u043E \u043D\u0435 \u0435 \u043F\u0440\u0430\u0437\u043D\u043E, \u0434\u0430 \u0441\u0435 \u043F\u0430\u0437\u044F\u0442 \u0441\u0430\u043C\u043E \u0442\u043E\u043B\u043A\u043E\u0432\u0430 \u0437\u0430\u043F\u0438\u0441\u0438 \u0437\u0430 \u0431\u0438\u043B\u0434\u043E\u0432\u0435 +Days\ to\ keep\ artifacts=\ + \u0411\u0440\u043e\u0439 \u0434\u043d\u0438 \u0437\u0430 \u0441\u044a\u0445\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u0438 +Days\ to\ keep\ builds=\ + \u0411\u0440\u043e\u0439 \u0434\u043d\u0438 \u0437\u0430 \u0441\u044a\u0445\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=\ + \u043f\u0440\u0438 \u043f\u043e\u043f\u044a\u043b\u043d\u0435\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 \u0441\u0435 \u0441\u044a\u0445\u0440\u0430\u043d\u044f\u0432\u0430\u0442 \u043d\u0435 \u043f\u043e\u0432\u0435\u0447\u0435 \u043e\u0442 \u0442\u043e\u0437\u0438 \u0431\u0440\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 \u0437\u0430\ + \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ builds\ have\ their\ artifacts\ retained=\ + \u043f\u0440\u0438 \u043f\u043e\u043f\u044a\u043b\u043d\u0435\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 \u0441\u0435 \u0441\u044a\u0445\u0440\u0430\u043d\u044f\u0432\u0430\u0442 \u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u0438 \u043e\u0442 \u043d\u0435 \u043f\u043e\u0432\u0435\u0447\u0435 \u043e\u0442 \u0442\u043e\u0437\u0438 \u0431\u0440\u043e\u0439\ + \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f +Max\ \#\ of\ builds\ to\ keep=\ + \u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u0435\u043d \u0431\u0440\u043e\u0439 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f \u043f\u0440\u0435\u0434\u0438 \u0438\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 +if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=\ + \u043f\u0440\u0438 \u043f\u043e\u043f\u044a\u043b\u043d\u0435\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 \u0437\u0430\u043f\u0438\u0441\u0438\u0442\u0435 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f\u0442\u0430 \u0441\u0435 \u0441\u044a\u0445\u0440\u0430\u043d\u044f\u0432\u0430\u0442 \u043d\u0435 \u043f\u043e\u0432\u0435\u0447\u0435 \u043e\u0442\ + \u043f\u043e\u0441\u043e\u0447\u0435\u043d\u0438\u044f \u0431\u0440\u043e\u0439 \u0434\u043d\u0438 +if\ not\ empty,\ artifacts\ from\ builds\ older\ than\ this\ number\ of\ days\ will\ be\ deleted,\ but\ the\ logs,\ history,\ reports,\ etc\ for\ the\ build\ will\ be\ kept=\ + \u043f\u0440\u0438 \u043f\u043e\u043f\u044a\u043b\u043d\u0435\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 \u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u0438\u0442\u0435 \u043e\u0442 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f\u0442\u0430 \u0441\u0435 \u0441\u044a\u0445\u0440\u0430\u043d\u044f\u0432\u0430\u0442 \u043d\u0435 \u043f\u043e\u0432\u0435\u0447\u0435 \u043e\u0442\ + \u043f\u043e\u0441\u043e\u0447\u0435\u043d\u0438\u044f \u0431\u0440\u043e\u0439 \u0434\u043d\u0438, \u043d\u043e \u0437\u0430\u043f\u0438\u0441\u0438\u0442\u0435 (\u0436\u0443\u0440\u043d\u0430\u043b\u0438, \u0438\u0441\u0442\u043e\u0440\u0438\u044f, \u0434\u043e\u043a\u043b\u0430\u0434\u0438) \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f\u0442\u0430\ + \u0441\u0435 \u0441\u044a\u0445\u0440\u0430\u043d\u044f\u0432\u0430\u0442 \u0437\u0430\u0432\u0438\u043d\u0430\u0433\u0438 +Max\ \#\ of\ builds\ to\ keep\ with\ artifacts=\ + \u043f\u0440\u0438 \u043f\u043e\u043f\u044a\u043b\u043d\u0435\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 \u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u0438\u0442\u0435 \u043e\u0442 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f\u0442\u0430 \u0441\u0435 \u0441\u044a\u0445\u0440\u0430\u043d\u044f\u0432\u0430\u0442 \u043d\u0435 \u043f\u043e\u0432\u0435\u0447\u0435 \u043e\u0442\ + \u043f\u043e\u0441\u043e\u0447\u0435\u043d\u0438\u044f \u0431\u0440\u043e\u0439 \u0434\u043d\u0438 diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_de.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_de.properties index cdc87a4b96b09eae824bd1c628224596289890ac..e95cb152a06e56940dc24b0dd6593231bb101223 100644 --- a/core/src/main/resources/hudson/tasks/LogRotator/config_de.properties +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_de.properties @@ -32,6 +32,6 @@ Days\ to\ keep\ artifacts=Anzahl der Tage, die Artefakte aufbewahrt werden if\ not\ empty,\ artifacts\ from\ builds\ older\ than\ this\ number\ of\ days\ will\ be\ deleted,\ but\ the\ logs,\ history,\ reports,\ etc\ for\ the\ build\ will\ be\ kept=\ (Optional) Artefakte werden nur bis zu diesem Alter in Tagen aufbewahrt. Protokolle, Verlaufsdaten, Berichte usw. eines Builds werden jedoch weiter behalten. -Max\ #\ of\ builds\ to\ keep\ with\ artifacts=Maximale Anzahl an Builds mit Artefakten, die aufbewahrt werden if\ not\ empty,\ only\ up\ to\ this\ number\ of\ builds\ have\ their\ artifacts\ retained=\ (Optional) Maximale Anzahl an Build-Artefakten, die aufbewahrt werden. Protokolle, Verlaufsdaten, Berichte usw. eines Builds werden jedoch weiter behalten. +Max\ \#\ of\ builds\ to\ keep\ with\ artifacts=Maximale Anzahl an Builds, deren Artefakte aufbewahrt werden diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_pl.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_pl.properties index a6aa76c5ae8168a39936a2dd471caab07da785a1..ff13ee9006df17a7fc434d80b3ac0875e709e1b0 100644 --- a/core/src/main/resources/hudson/tasks/LogRotator/config_pl.properties +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_pl.properties @@ -1,4 +1,30 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Copyright (c) 2004-2016, Sun Microsystems, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. Days\ to\ keep\ artifacts=Ilo\u015B\u0107 dni przechowywania artefaktu -Days\ to\ keep\ builds=Ilo\u015B\u0107 dni przechowywania builda +Days\ to\ keep\ builds=Maksymalny czas przechowywania w dniach +if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=Je\u015Bli nie jest puste, zadania s\u0105 przechowywane tyle dni, ile podano +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=Je\u015Bli nie jest puste, przechowywanych jest tyle zada\u0144, ile podano +Max\ \#\ of\ builds\ to\ keep\ with\ artifacts=Maksymalna ilo\u015B\u0107 zada\u0144 przechowywanych z artefaktami +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ builds\ have\ their\ artifacts\ retained=Je\u015Bli nie jest puste, przechowywanych jest tyle zada\u0144 z artefaktami, ile podano +if\ not\ empty,\ artifacts\ from\ builds\ older\ than\ this\ number\ of\ days\ will\ be\ deleted,\ but\ the\ logs,\ history,\ reports,\ etc\ for\ the\ build\ will\ be\ kept=Je\u015Bli nie jest puste, artefakty z zada\u0144 starsze ni\u017C podana ilo\u015B\u0107 dni b\u0119d\u0105 usuni\u0119te, ale rejestr zdarze\u0144, historia, raporty itp b\u0119d\u0105 zachowane +Max\ \#\ of\ builds\ to\ keep=Maksymalna ilo\u015B\u0107 zada\u0144 do przechowania diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_sr.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..60ccb45301a83d175466af95215560639ea8e40f --- /dev/null +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_sr.properties @@ -0,0 +1,10 @@ +# This file is under the MIT License by authors + +Days\ to\ keep\ builds=\u0411\u0440\u043E\u0458 \u0434\u0430\u043D\u0430 \u0437\u0430 \u0447\u0443\u0432\u0430\u045A\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 +if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=\u0410\u043A\u043E \u0458\u0435 \u043D\u0430\u0432\u0435\u0434\u0435\u043D\u043E, \u0431\u0440\u043E\u0458 \u0434\u0430\u043D\u0430 \u0437\u0430 \u0447\u0443\u0432\u0430\u045A\u0435 \u0438\u0441\u043A\u0430\u0437\u0435 \u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0438. +Max\ \#\ of\ builds\ to\ keep=\u041A\u043E\u043B\u0438\u043A\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0437\u0430 \u0447\u0443\u0432\u0430\u045A\u0435 +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=\u0410\u043A\u043E \u0458\u0435 \u043D\u0430\u0432\u0435\u0434\u0435\u043D\u043E, \u0431\u0440\u043E\u0458 \u0437\u0430\u043F\u0438\u0441\u0430 \u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0438 \u0437\u0430 \u0447\u0443\u0432\u0430\u045A\u0435. +if\ not\ empty,\ artifacts\ from\ builds\ older\ than\ this\ number\ of\ days\ will\ be\ deleted,\ but\ the\ logs,\ history,\ reports,\ etc\ for\ the\ build\ will\ be\ kept= +Max\ \#\ of\ builds\ to\ keep\ with\ artifacts=\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u0430\u043D \u0431\u0440\u043E\u0458 \u0438\u0437\u0433\u0440\u0430\u045A\u0430 \u043A\u043E\u0458\u0430 \u045B\u0435 \u0431\u0438\u0442\u0438 \u0441\u0430\u0447\u0443\u0432\u0430\u043D\u0430 \u0437\u0430\u0458\u0435\u0434\u043D\u043E \u0441\u0430 \u0430\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0438\u043C\u0430 +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ builds\ have\ their\ artifacts\ retained=\u0410\u043A\u043E \u0458\u0435 \u043D\u0430\u0432\u0435\u0434\u0435\u043D\u043E, \u0431\u0440\u043E\u0458 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0447\u0438\u0458\u0438 \u0430\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0438 \u045B\u0435 \u0431\u0438\u0442\u0438 \u0441\u0430\u0447\u0443\u0432\u0430\u045A\u0438. +Days\ to\ keep\ artifacts=\u041A\u043E\u043B\u0438\u043A\u043E \u0434\u0430\u043D\u0430 \u0434\u0430 \u0441\u0435 \u0447\u0443\u0432\u0430\u0458\u0443 \u0430\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0438 diff --git a/core/src/main/resources/hudson/tasks/Maven/MavenInstallation/config_sr.properties b/core/src/main/resources/hudson/tasks/Maven/MavenInstallation/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..2fbb8bde38001bf90e43c02d70be99315bd965fa --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Maven/MavenInstallation/config_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=\u0418\u043C\u0435 diff --git a/core/src/main/resources/hudson/tasks/Maven/config.jelly b/core/src/main/resources/hudson/tasks/Maven/config.jelly index 4ec0da1d82d5dd1319ce8e68f2de1f4fdab431b3..e2c26ad4e757f5bbe97fbf3a20520714b2810b35 100644 --- a/core/src/main/resources/hudson/tasks/Maven/config.jelly +++ b/core/src/main/resources/hudson/tasks/Maven/config.jelly @@ -47,11 +47,14 @@ THE SOFTWARE. + + + - + - + - \ No newline at end of file + diff --git a/core/src/main/resources/hudson/tasks/Maven/config_bg.properties b/core/src/main/resources/hudson/tasks/Maven/config_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..11dff5faa966a23f0888f0fd89e2b28d36c65b0e --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Maven/config_bg.properties @@ -0,0 +1,42 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Default=\ + \u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438 +JVM\ Options=\ + \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0437\u0430 JVM +Settings\ file=\ + \u0424\u0430\u0439\u043b \u0441 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 +Goals=\ + \u0426\u0435\u043b\u0438 +POM=\ + POM +Global\ Settings\ file=\ + \u0424\u0430\u0439\u043b \u0441 \u0433\u043b\u043e\u0431\u0430\u043b\u043d\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 +Use\ private\ Maven\ repository=\ + \u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0447\u0430\u0441\u0442\u043d\u043e \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u043d\u0430 Maven +Properties=\ + \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 +Maven\ Version=\ + \u0412\u0435\u0440\u0441\u0438\u044f \u043d\u0430 Maven +Inject\ build\ variables=\ + \u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u043c\u0435\u043d\u043b\u0438\u0432\u0438 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e diff --git a/core/src/main/resources/hudson/tasks/Maven/config_de.properties b/core/src/main/resources/hudson/tasks/Maven/config_de.properties index aea56f22f937b6c8c08f97a815ab01bcd4b87949..ac62d78eda6717ea6ef1000659eb7ec8d69ca5ad 100644 --- a/core/src/main/resources/hudson/tasks/Maven/config_de.properties +++ b/core/src/main/resources/hudson/tasks/Maven/config_de.properties @@ -29,3 +29,4 @@ JVM\ Options=JVM-Optionen Use\ private\ Maven\ repository=Privates Maven-Repository verwenden Settings\ file=Settings-Datei Global\ Settings\ file=Globale Settings-Datei +Inject\ build\ variables=Build-Variablen als System-Properties \u00FCbergeben diff --git a/core/src/main/resources/hudson/tasks/Maven/config_sr.properties b/core/src/main/resources/hudson/tasks/Maven/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..670a5b13eaaf981358cb4d6e855fa47848dbfc27 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Maven/config_sr.properties @@ -0,0 +1,12 @@ +# This file is under the MIT License by authors + +Maven\ Version=\u0412\u0435\u0440\u0437\u0438\u0458\u0430 Maven-\u0430 +Default=\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u043D\u043E +Goals=\u0426\u0438\u0459\u0435\u0432\u0438 +POM=POM +Properties=\u041F\u043E\u0441\u0442\u0430\u0432\u043A\u0435 +JVM\ Options=\u041F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 JVM +Inject\ build\ variables=\u0423\u0431\u0430\u0446\u0438\u0432\u0430\u045A\u0435 \u043F\u0440\u043E\u043C\u0435\u043D\u0459\u0438\u0432\u0430 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 +Use\ private\ Maven\ repository=\u041A\u043E\u0440\u0438\u0441\u0442\u0438 \u043F\u0440\u0438\u0432\u0430\u0442\u043D\u043E Maven \u0441\u043F\u0440\u0435\u043C\u0438\u0448\u0442\u0435 +Settings\ file=\u0414\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 +Global\ Settings\ file=\u0414\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u0438\u0445 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 diff --git a/core/src/main/resources/hudson/tasks/Maven/help-injectBuildVariables.html b/core/src/main/resources/hudson/tasks/Maven/help-injectBuildVariables.html new file mode 100644 index 0000000000000000000000000000000000000000..6bf14bbfb23543dae13e4371c2e5818989b3499f --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Maven/help-injectBuildVariables.html @@ -0,0 +1,5 @@ +

      + Pass all build variables into maven process in form of java properties. This is seldom needed as Jenkins provides it as + environment variables anyway. Preferred way to access Jenkins build variables is to explicitly map it to property in + Properties section (MY_VAR=${MY_VAR}). +
      diff --git a/core/src/main/resources/hudson/tasks/Maven/help_de.properties b/core/src/main/resources/hudson/tasks/Maven/help_de.properties index a0ed3f3b672c2700134c5179bf88fe9fefd709c2..a710db891ff50cf1ac937ddd1ea94a7b284390e1 100644 --- a/core/src/main/resources/hudson/tasks/Maven/help_de.properties +++ b/core/src/main/resources/hudson/tasks/Maven/help_de.properties @@ -4,7 +4,7 @@ para1=F\u00fcr Projekte, die Maven als Build-System benutzen. Dies veranlasst Je Manche Versionen von Maven beinhalten einen Fehler, durch den der Ergebniscode \ nicht immer korrekt zur\u00fcckgeliefert wird. para2=Jenkins \u00fcbergibt \ - zahlreiche Umgebungsvariablen an Maven, auf die Sie innerhalb Mavens mittels "$'{'env.VARIABLENAME}" zugreifen k\u00f6nnen. + zahlreiche Umgebungsvariablen an Maven, auf die Sie innerhalb Mavens mittels $'{'env.VARIABLENAME} zugreifen k\u00f6nnen. para3=Die gleichen Umgebungsvariablen k\u00f6nnen in Kommandozeilenargumenten verwendet werden (genauso als ob Sie \ Kommandos in einer Shell ausf\u00fchren w\u00fcrden), wie beispielsweise \ -DresultsFile=$'{'WORKSPACE}/$'{'BUILD_TAG}.results.txt \ No newline at end of file diff --git a/core/src/main/resources/hudson/tasks/Maven/help_sr.properties b/core/src/main/resources/hudson/tasks/Maven/help_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..c1657bcbbf13dda58cf8b4c61afe22c1f98e81f1 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Maven/help_sr.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +para1=\u0417\u0430 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0435 \u043A\u043E\u0458\u0438 \u043A\u043E\u0440\u0438\u0441\u0442\u0435 \u0441\u0438\u0441\u0442\u0435\u043C \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 Maven. \u041E\u0432\u043E \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0435 \u045B\u0435 \u0443\u043A\u0430\u0437\u0430\u0442\u0438 \u0434\u0430 Jenkins \u043A\u043E\u0440\u0438\u0441\u0442\u0438 Maven \u0441\u0430 \u0434\u0430\u0442\u0438\u043C \u0446\u0438\u0459\u0435\u0432\u0438\u043C\u0430 \u0438 \u043E\u043F\u0446\u0438\u0458\u0430\u043C\u0430. \u0410\u043A\u043E Maven \u0437\u0430\u0432\u0440\u0448\u0438 \u0441\u0430 \u043D\u0435\u043D\u0443\u043B\u043D\u0438\u043C \u043A\u043E\u0434\u043E\u043C, \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u045B\u0435 \u0441\u0435 \u0441\u043C\u0430\u0442\u0440\u0430\u0442\u0438 \u043D\u0435\u0443\u0441\u043F\u0435\u043D\u043E\u0433. \u041C\u0435\u0452\u0443\u0442\u0438\u043C \u043D\u0435\u043A\u0435 \u0432\u0435\u0440\u0437\u0438\u0458\u0435 Maven \u0438\u043C\u0430\u0458\u0443 \u0433\u0440\u0435\u0448\u043A\u0443 \u043A\u043E\u0458\u0430 \u0432\u0440\u0430\u045B\u0430 \u043F\u043E\u0433\u0440\u0435\u0448\u0430\u043D \u043A\u043E\u0434 \u043F\u043E \u0437\u0430\u0432\u0440\u0448\u0435\u0442\u043A\u0443. +para2=Jenkins \u043F\u0440\u0435\u043D\u0435\u0441\u0435 \ + \u0440\u0430\u0437\u043D\u0430 \u043F\u0440\u043E\u043C\u0435\u043D\u0459\u0438\u0432\u0430 Maven-\u0443, \u043A\u043E\u0458\u0430 \u0441\u0443 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430 \u043F\u043E \u0448\u0430\u0431\u043B\u043E\u043D\u0443 "$'{'env.VARIABLENAME}". +para3=\u0422\u0435 \u0438\u0441\u0442\u0435 \u043F\u0440\u043E\u043C\u0435\u043D\u0459\u0438\u0432\u0435 \u043C\u043E\u0433\u0443 \u0441\u0435 \u043A\u043E\u0440\u0438\u0441\u0442\u0438 \u043F\u0440\u0435\u043A\u043E \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u0435 \u043B\u0438\u043D\u0438\u0458\u0435 (\u0430\u043A\u043E \u043F\u043E\u0437\u043E\u0432\u0435\u0442\u0435 Maven \u0441\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u0435 \u043B\u0438\u043D\u0438\u0458\u0435). \u041D\u0430 \u043F\u0440\u0438\u043C\u0435\u0440, \u043C\u043E\u0436\u0435\u0442\u0435 \u0434\u0430 \u043E\u0434\u0440\u0435\u0434\u0438\u0442\u0435 diff --git a/core/src/main/resources/hudson/tasks/Messages.properties b/core/src/main/resources/hudson/tasks/Messages.properties index f7ceb03840cf05f6cd5796681f514f8148e9f3e5..fa673df13c5ce42cfda48a76f6f1b83e3446543d 100644 --- a/core/src/main/resources/hudson/tasks/Messages.properties +++ b/core/src/main/resources/hudson/tasks/Messages.properties @@ -39,6 +39,8 @@ If you really did mean to archive all the files in the workspace, please specify ArtifactArchiver.NoMatchFound=No artifacts found that match the file pattern "{0}". Configuration error? BatchFile.DisplayName=Execute Windows batch command +BatchFile.invalid_exit_code_range=Invalid errorlevel value: {0}. Check help section +BatchFile.invalid_exit_code_zero=ERRORLEVEL zero is ignored and does not make the build unstable BuildTrigger.Disabled={0} is disabled. Triggering skipped BuildTrigger.DisplayName=Build other projects @@ -47,9 +49,7 @@ BuildTrigger.NoSuchProject=No such project \u2018{0}\u2019. Did you mean \u2018{ BuildTrigger.NoProjectSpecified=No project specified BuildTrigger.NotBuildable={0} is not buildable BuildTrigger.Triggering=Triggering a new build of {0} -BuildTrigger.warning_access_control_for_builds_in_glo=Warning: \u2018Access Control for Builds\u2019 in global security configuration is empty, so falling back to legacy behavior of permitting any downstream builds to be triggered -BuildTrigger.warning_this_build_has_no_associated_aut=Warning: this build has no associated authentication, so build permissions may be lacking, and downstream projects which cannot even be seen by an anonymous user will be silently skipped -BuildTrigger.warning_you_have_no_plugins_providing_ac=Warning: you have no plugins providing access control for builds, so falling back to legacy behavior of permitting any downstream builds to be triggered +BuildTrigger.ok_ancestor_is_null=Ancestor/Context Unknown: the project specified cannot be validated BuildTrigger.you_have_no_permission_to_build_=You have no permission to build {0} CommandInterpreter.CommandFailed=command execution failed @@ -80,3 +80,5 @@ Maven.NotMavenDirectory={0} doesn\u2019t look like a Maven directory Maven.NoExecutable=Couldn\u2019t find any executable in {0} Shell.DisplayName=Execute shell +Shell.invalid_exit_code_range=Invalid exit code value: {0}. Check help section +Shell.invalid_exit_code_zero=Exit code zero is ignored and does not make the build unstable diff --git a/core/src/main/resources/hudson/tasks/Messages_bg.properties b/core/src/main/resources/hudson/tasks/Messages_bg.properties index fae5360a119828efc5f420ccf6740a9539eed3c4..910a69bd582f159aa40b59fa3ac07f5d5d5b897e 100644 --- a/core/src/main/resources/hudson/tasks/Messages_bg.properties +++ b/core/src/main/resources/hudson/tasks/Messages_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Bulgarian translation copyright 2015 Alexander Shopov . +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -44,9 +44,9 @@ ArtifactArchiver.SkipBecauseOnlyIfSuccessful=\ ArtifactArchiver.FailedToArchive=\ \u041d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u0438: {0} ArtifactArchiver.NoIncludes=\ - \u041d\u0435 \u0441\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u0438 \u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u0438 \u0437\u0430 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0435.\n\\u041f\u0440\u043e\u0431\u0432\u0430\u0439\u0442\u0435\ - \u0434\u0430 \u0443\u043a\u0430\u0436\u0435\u0442\u0435 \u0448\u0430\u0431\u043b\u043e\u043d \u0437\u0430 \u0438\u043c\u0435 \u043d\u0430 \u0444\u0430\u0439\u043b \u0432 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435.\n\\u0410\u043a\u043e\ - \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u0442\u0435 \u0432\u0441\u0438\u0447\u043a\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u043e\u0442 \u0440\u0430\u0431\u043e\u0442\u043d\u043e\u0442\u043e \u043c\u044f\u0441\u0442\u043e, \u0443\u043a\u0430\u0436\u0435\u0442\u0435 \u201e**\u201c. + \u041d\u0435 \u0441\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u0438 \u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u0438 \u0437\u0430 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0435.\n\ + \u041f\u0440\u043e\u0431\u0432\u0430\u0439\u0442\u0435 \u0434\u0430 \u0443\u043a\u0430\u0436\u0435\u0442\u0435 \u0448\u0430\u0431\u043b\u043e\u043d \u0437\u0430 \u0438\u043c\u0435 \u043d\u0430 \u0444\u0430\u0439\u043b \u0432 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435.\n\ + \u0410\u043a\u043e \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u0442\u0435 \u0432\u0441\u0438\u0447\u043a\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u043e\u0442 \u0440\u0430\u0431\u043e\u0442\u043d\u043e\u0442\u043e \u043c\u044f\u0441\u0442\u043e, \u0443\u043a\u0430\u0436\u0435\u0442\u0435 \u201e**\u201c. ArtifactArchiver.NoMatchFound=\ \u041d\u0438\u043a\u043e\u0439 \u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442 \u043d\u0435 \u0441\u044a\u0432\u043f\u0430\u0434\u0430 \u0441 \u0448\u0430\u0431\u043b\u043e\u043d\u0430 \u201e{0}\u201c. \u0422\u043e\u0432\u0430 \u0433\u0440\u0435\u0448\u043a\u0430 \u0432 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435 \u043b\u0438 \u0435? @@ -59,7 +59,7 @@ BuildTrigger.DisplayName=\ \u0418\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0434\u0440\u0443\u0433\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0438 BuildTrigger.InQueue=\ \u201e{0}\u201c \u0432\u0435\u0447\u0435 \u0435 \u0432 \u043e\u043f\u0430\u0448\u043a\u0430\u0442\u0430 -BuildTrigger.NoSuchProject= +BuildTrigger.NoSuchProject=\ \u041d\u044f\u043c\u0430 \u043f\u0440\u043e\u0435\u043a\u0442 \u043d\u0430 \u0438\u043c\u0435 \u201e{0}\u201c. \u201e{1}\u201c \u043b\u0438 \u0438\u043c\u0430\u0442\u0435 \u043f\u0440\u0435\u0434\u0432\u0438\u0434? BuildTrigger.NoProjectSpecified=\ \u041d\u0435 \u0435 \u0443\u043a\u0430\u0437\u0430\u043d \u043f\u0440\u043e\u0435\u043a\u0442 @@ -67,18 +67,6 @@ BuildTrigger.NotBuildable=\ \u201e{0}\u201c \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u0438 BuildTrigger.Triggering=\ \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043d\u043e\u0432\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u201e{0}\u201c -BuildTrigger.warning_access_control_for_builds_in_glo=\ - \u041f\u0420\u0415\u0414\u0423\u041f\u0420\u0415\u0416\u0414\u0415\u041d\u0418\u0415: \u041f\u043e\u043b\u0435\u0442\u043e \u201e\u041f\u0440\u0430\u0432\u0430 \u0437\u0430 \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f\u0442\u0430\u201c \u0432 \u043e\u0431\u0449\u0438\u0442\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\ - \u0437\u0430 \u0441\u0438\u0433\u0443\u0440\u043d\u043e\u0441\u0442\u0442\u0430 \u043d\u0435 \u0435 \u043f\u043e\u043f\u044a\u043b\u043d\u0435\u043d\u043e. \u0429\u0435 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 \u043e\u0441\u0442\u0430\u0440\u044f\u043b\u043e\u0442\u043e \u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043d\u0430\ - \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u0437\u0430\u0434\u0430\u0447\u0438, \u0437\u0430\u0432\u0438\u0441\u0435\u0449\u0438 \u043e\u0442 \u0442\u0430\u0437\u0438 -BuildTrigger.warning_this_build_has_no_associated_aut=\ - \u041f\u0420\u0415\u0414\u0423\u041f\u0420\u0415\u0416\u0414\u0415\u041d\u0418\u0415: \u043b\u0438\u043f\u0441\u0432\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u0437\u0430 \u0442\u043e\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435, \u0437\u0430\u0442\u043e\u0432\u0430 \u0438 \u043f\u0440\u0430\u0432\u0430\u0442\u0430 \u043a\u044a\u043c\ - \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e \u043d\u044f\u043c\u0430 \u0434\u0430 \u0441\u0430 \u043f\u044a\u043b\u043d\u0438. \u0417\u0430\u0432\u0438\u0441\u0435\u0449\u0438\u0442\u0435 \u043e\u0442 \u0442\u043e\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u0438, \u043a\u043e\u0438\u0442\u043e\ - \u043d\u0435 \u0441\u0435 \u0432\u0438\u0436\u0434\u0430\u0442 \u043e\u0442 \u0430\u043d\u043e\u043d\u0438\u043c\u043d\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438, \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u043f\u0440\u043e\u043f\u0443\u0441\u043d\u0430\u0442\u0438. -BuildTrigger.warning_you_have_no_plugins_providing_ac=\ - \u041f\u0420\u0415\u0414\u0423\u041f\u0420\u0415\u0416\u0414\u0415\u041d\u0418\u0415: \u043b\u0438\u043f\u0441\u0432\u0430\u0442 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438 \u0437\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u043f\u0440\u0430\u0432\u0430 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f. \u0429\u0435\ - \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 \u043e\u0441\u0442\u0430\u0440\u044f\u043b\u043e\u0442\u043e \u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043d\u0430 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u0438\ - \u0437\u0430\u0434\u0430\u0447\u0438, \u0437\u0430\u0432\u0438\u0441\u0435\u0449\u0438 \u043e\u0442 \u0442\u0430\u0437\u0438 BuildTrigger.you_have_no_permission_to_build_=\ \u041d\u044f\u043c\u0430\u0442\u0435 \u043f\u0440\u0430\u0432\u0430 \u0434\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u0438\u0442\u0435 \u201e{0}\u201c @@ -134,3 +122,6 @@ Maven.NoExecutable=\ Shell.DisplayName=\ \u0418\u0437\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0435\u043d \u0438\u043d\u0442\u0435\u0440\u043f\u0440\u0435\u0442\u0430\u0442\u043e\u0440 +# Ancestor/Context Unknown: the project specified cannot be validated +BuildTrigger.ok_ancestor_is_null=\ + \u041d\u0435\u043f\u043e\u0437\u043d\u0430\u0442 \u0440\u043e\u0434\u0438\u0442\u0435\u043b/\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442: \u0443\u043a\u0430\u0437\u0430\u043d\u0438\u044f\u0442 \u043f\u0440\u043e\u0435\u043a\u0442 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043f\u0440\u043e\u0432\u0435\u0440\u0438 diff --git a/core/src/main/resources/hudson/tasks/Messages_de.properties b/core/src/main/resources/hudson/tasks/Messages_de.properties index f46359ad8978a4f5386dba0d3b68503308edea95..9c2c5d095b2ce97366ec04cbd893614c604a5ce2 100644 --- a/core/src/main/resources/hudson/tasks/Messages_de.properties +++ b/core/src/main/resources/hudson/tasks/Messages_de.properties @@ -21,54 +21,61 @@ # THE SOFTWARE. Ant.DisplayName=Ant aufrufen -Ant.ExecFailed=Befehlsausf\u00fchrung fehlgeschlagen. -Ant.ExecutableNotFound=Die ausf\u00fchrbaren Programme der Ant-Installation "{0}" konnten nicht gefunden werden. -Ant.GlobalConfigNeeded=Eventuell m\u00fcssen Sie noch Ihre Ant-Installationen konfigurieren. +Ant.ExecFailed=Befehlsausf\u00FChrung fehlgeschlagen. +Ant.ExecutableNotFound=Die ausf\u00FChrbaren Programme der Ant-Installation \u201E{0}\u201C konnten nicht gefunden werden. +Ant.GlobalConfigNeeded=Eventuell m\u00FCssen Sie noch Ihre Ant-Installationen konfigurieren. Ant.NotADirectory={0} ist kein Verzeichnis Ant.NotAntDirectory={0} sieht nicht wie ein Ant-Verzeichnis aus. -Ant.ProjectConfigNeeded=Eventuell m\u00fcssen Sie f\u00fcr den Job noch eine Ihrer Ant-Installationen ausw\u00e4hlen. +Ant.ProjectConfigNeeded=Eventuell m\u00FCssen Sie f\u00FCr das Projekt noch eine Ihrer Ant-Installationen ausw\u00E4hlen. ArtifactArchiver.ARCHIVING_ARTIFACTS=Archiviere Artefakte ArtifactArchiver.DisplayName=Artefakte archivieren ArtifactArchiver.FailedToArchive=Artefakte konnten nicht archiviert werden: {0} -ArtifactArchiver.NoIncludes=Es sind keine Artefakte zur Archivierung konfiguriert.\n\u00dcberpr\u00fcfen Sie, ob in den Einstellungen ein Dateisuchmuster angegeben ist.\nWenn Sie alle Dateien archivieren m\u00f6chten, geben Sie "**" an. -ArtifactArchiver.NoMatchFound=Keine Artefakte gefunden, die mit dem Dateisuchmuster "{0}" \u00fcbereinstimmen. Ein Konfigurationsfehler? +ArtifactArchiver.NoIncludes=Es sind keine Artefakte zur Archivierung konfiguriert.\n\u00DCberpr\u00FCfen Sie, ob in den Einstellungen ein Dateisuchmuster angegeben ist.\nWenn Sie alle Dateien archivieren m\u00F6chten, geben Sie ** an. +ArtifactArchiver.NoMatchFound=Keine Artefakte gefunden, die mit dem Dateisuchmuster \u201E{0}\u201C \u00FCbereinstimmen. Ein Konfigurationsfehler? +ArtifactArchiver.SkipBecauseOnlyIfSuccessful=Archivierung wird \u00FCbersprungen, da der Build nicht erfolgreich ist. -BatchFile.DisplayName=Windows Batch-Datei ausf\u00fchren +BatchFile.DisplayName=Windows Batch-Datei ausf\u00FChren +BatchFile.invalid_exit_code_range= Ung\u00FCltiger Wert f\u00FCr ERRORLEVEL: {0} +BatchFile.invalid_exit_code_zero=ERRORLEVEL 0 wird ignoriert und markiert den Build nicht als instabil. -BuildTrigger.Disabled={0} ist deaktiviert. Keine Ausl\u00f6sung des Builds. +BuildTrigger.Disabled={0} ist deaktiviert. Keine Ausl\u00F6sung des Builds. BuildTrigger.DisplayName=Weitere Projekte bauen BuildTrigger.InQueue={0} ist bereits geplant. -BuildTrigger.NoSuchProject=Kein Projekt ''{0}'' gefunden. Meinten Sie ''{1}''? +BuildTrigger.NoSuchProject=Kein Projekt \u201E{0}\u201C gefunden. Meinten Sie \u201E{1}\u201C? BuildTrigger.NoProjectSpecified=Kein Projekt angegeben BuildTrigger.NotBuildable={0} kann nicht gebaut werden. -BuildTrigger.Triggering=L\u00f6se einen neuen Build von {0} aus +BuildTrigger.Triggering=L\u00F6se einen neuen Build von {0} aus +BuildTrigger.you_have_no_permission_to_build_=Sie haben nicht die Berechtigung, Builds von {0} zu starten. +BuildTrigger.ok_ancestor_is_null=Der angegebene Projektname kann im aktuellen Kontext nicht gepr\u00FCft werden. -CommandInterpreter.CommandFailed=Befehlsausf\u00fchrung fehlgeschlagen -CommandInterpreter.UnableToDelete=Kann Skriptdatei {0} nicht l\u00f6schen +CommandInterpreter.CommandFailed=Befehlsausf\u00FChrung fehlgeschlagen +CommandInterpreter.UnableToDelete=Kann Skriptdatei {0} nicht l\u00F6schen CommandInterpreter.UnableToProduceScript=Kann keine Skriptdatei erstellen Fingerprinter.Aborted=Abgebrochen -Fingerprinter.Action.DisplayName=Fingerabdr\u00fccke ansehen -Fingerprinter.DigestFailed=Berechnung der Pr\u00fcfsumme f\u00fcr {0} fehlgeschlagen -Fingerprinter.DisplayName=Fingerabdr\u00fccke von Dateien aufzeichnen, um deren Verwendung zu verfolgen -Fingerprinter.Failed=Aufzeichnen der Fingerabdr\u00fccke fehlgeschlagen -Fingerprinter.FailedFor=Aufzeichnen des Fingerabdrucks f\u00fcr {0} fehlgeschlagen -Fingerprinter.Recording=Zeichne Fingerabr\u00fccke auf +Fingerprinter.Action.DisplayName=Fingerabdr\u00FCcke ansehen +Fingerprinter.DigestFailed=Berechnung der Pr\u00FCfsumme f\u00FCr {0} fehlgeschlagen +Fingerprinter.DisplayName=Fingerabdr\u00FCcke von Dateien aufzeichnen, um deren Verwendung zu verfolgen +Fingerprinter.Failed=Aufzeichnen der Fingerabdr\u00FCcke fehlgeschlagen +Fingerprinter.FailedFor=Aufzeichnen des Fingerabdrucks f\u00FCr {0} fehlgeschlagen +Fingerprinter.Recording=Zeichne Fingerabr\u00FCcke auf InstallFromApache=Installiere von Apache -JavadocArchiver.DisplayName=Javadoc ver\u00f6ffentlichen +JavadocArchiver.DisplayName=Javadoc ver\u00F6ffentlichen JavadocArchiver.DisplayName.Generic=Dokumentation JavadocArchiver.DisplayName.Javadoc=Javadocs JavadocArchiver.NoMatchFound=Keine Javadocs in {0} gefunden: {1} -JavadocArchiver.Publishing=Ver\u00f6ffentliche Javadocs +JavadocArchiver.Publishing=Ver\u00F6ffentliche Javadocs JavadocArchiver.UnableToCopy=Kann Javadocs nicht von {0} nach {1} kopieren +TestJavadocArchiver.DisplayName.Javadoc=Javadoc f\u00FCr Tests Maven.DisplayName=Maven Goals aufrufen -Maven.ExecFailed=Befehlsausf\u00fchrung fehlgeschlagen +Maven.ExecFailed=Befehlsausf\u00FChrung fehlgeschlagen Maven.NotMavenDirectory={0} sieht nicht wie ein Maven-Verzeichnis aus. -Maven.NoExecutable=Konnte keine ausf\u00fchrbare Datei in {0} finden -Maven.NotADirectory={0} ist kein Verzeichnis +Maven.NoExecutable=Konnte keine ausf\u00FChrbare Datei in {0} finden -Shell.DisplayName=Shell ausf\u00fchren +Shell.DisplayName=Shell ausf\u00FChren +Shell.invalid_exit_code_zero=Exit-Code 0 wird ignoriert und den Build nicht als instabil markieren. +Shell.invalid_exit_code_range=Ung\u00FCltiger Wert f\u00FCr Exit-Code: {0} diff --git a/core/src/main/resources/jenkins/management/Messages_eo.properties b/core/src/main/resources/hudson/tasks/Messages_pl.properties similarity index 62% rename from core/src/main/resources/jenkins/management/Messages_eo.properties rename to core/src/main/resources/hudson/tasks/Messages_pl.properties index 08b583fd162ee632943886aeba06e55cba49629b..649fb965a12070b5a60adfdd4f6afec3de0ad82c 100644 --- a/core/src/main/resources/jenkins/management/Messages_eo.properties +++ b/core/src/main/resources/hudson/tasks/Messages_pl.properties @@ -1,7 +1,6 @@ -# # The MIT License # -# Copyright (c) 2012, CloudBees, Intl., Nicolas De loof +# Copyright (c) 2016-2017, Damian Szczepanik # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,15 +19,12 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -# - -PluginsLink.Description=Aldoni, forigi, invalidi a\u00FB permesi modulojn kiu povas pluigi funkciecon de Jenkins. -ConfigureLink.DisplayName=Konfiguri sistemon -ConfigureLink.Description=Konfiguri universalajn seta\u011Dojn kaj vojojn -ReloadLink.Description=For\u0135eti tuta la \u015Dar\u011Ditaj dataoj el memoro kaj re\u015Dar\u011Di \u0109io el storo.\n\ - Utile dum vi modifikis konfiguraj dosieroj direkte en la storo. -SystemInfoLink.Description=Vidas diversaj medioinformoj kiu helpas riparebli problemoj. -PluginsLink.DisplayName=Administri modulojn -ReloadLink.DisplayName=Re\u015Dar\u011Di konfiguron el storo -SystemInfoLink.DisplayName=Sistema informo - +BuildTrigger.NoProjectSpecified=Nie podano \u017Cadnego projektu +BuildTrigger.NoSuchProject=Nie odnaleziono projektu ''{0}''. Czy chodzi\u0142o o ''{1}''? +ArtifactArchiver.DisplayName=Zachowaj w artifactory +BuildTrigger.DisplayName=Uruchom inne zadania +Ant.DisplayName=Uruchom Ant'a +Ant.GlobalConfigNeeded=By\u0107 mo\u017Ce musisz skonfigurowa\u0107, gdzie jest instalacja Ant'a? +Ant.NotADirectory={0} nie jest katalogiem +Ant.NotAntDirectory={0} nie wygl\u0105da, aby by\u0142 katalogiem Ant'a +Ant.ProjectConfigNeeded=By\u0107 mo\u017Ce musisz skonfigurowa\u0107 projekt, aby wybra\u0107 jedn\u0105 z instalacji Ant'a? diff --git a/core/src/main/resources/hudson/tasks/Messages_pt_BR.properties b/core/src/main/resources/hudson/tasks/Messages_pt_BR.properties index 20d435e91ade7a97fc9f8853de345e3c19ccd15d..654a51657407fbd748920d5c0829acacab6daede 100644 --- a/core/src/main/resources/hudson/tasks/Messages_pt_BR.properties +++ b/core/src/main/resources/hudson/tasks/Messages_pt_BR.properties @@ -78,11 +78,5 @@ JavadocArchiver.NoMatchFound=Nenhum javadoc encontrado {0}: {1} ArtifactArchiver.SkipBecauseOnlyIfSuccessful=Arquivamento ignorado devido ao t\u00e9rmino do build sem sucesso # No project specified BuildTrigger.NoProjectSpecified=Nenhum projeto especificado -# Warning: \u2018Access Control for Builds\u2019 in global security configuration is empty, so falling back to legacy behavior of permitting any downstream builds to be triggered -BuildTrigger.warning_access_control_for_builds_in_glo=Aten\u00e7\u00e3o: o \u2018Controle de acesso para Builds\u2019 nas configura\u00e7\u00f5es de seguran\u00e7a globais est\u00e1 vazio, portanto retornando para o comportamento legado de permitir que quaisquer builds decendentes sejam disparados -# Warning: this build has no associated authentication, so build permissions may be lacking, and downstream projects which cannot even be seen by an anonymous user will be silently skipped -BuildTrigger.warning_this_build_has_no_associated_aut=Aten\u00e7\u00e3o: este build n\u00e3o possui authentica\u00e7\u00e3o associada, portanto permiss\u1ebds de build podem estar faltando, e projetos descendentes que n\u00e3o podem sequer ser vistos por um usu\u00e1rio an\u00f4nimo ser\u00e3o ignorados silenciosamente -# Warning: you have no plugins providing access control for builds, so falling back to legacy behavior of permitting any downstream builds to be triggered -BuildTrigger.warning_you_have_no_plugins_providing_ac=Aten\u00e7\u00e3o: voc\u00ea n\u00e3o possui plugins fornecendo controle de accesso para builds, portanto retornando para o comportamento legado de permitir que quaisquer builds descendentes sejam disparados # You have no permission to build {0} BuildTrigger.you_have_no_permission_to_build_=Voc\u00ea n\u00e3o tem permiss\u00e3o para construir {0} diff --git a/core/src/main/resources/hudson/tasks/Messages_sr.properties b/core/src/main/resources/hudson/tasks/Messages_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..e2ff5d5fca93fb5bd042f00beb0f98ec5d79fcab --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Messages_sr.properties @@ -0,0 +1,52 @@ +# This file is under the MIT License by authors + +Ant.DisplayName=\u041F\u043E\u043A\u0440\u0435\u043D\u0438 Ant +Ant.ExecFailed=\u0438\u0437\u0431\u0440\u0448\u0430\u0432\u0430\u045A\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u0435 \u043D\u0438\u0458\u0435 \u0443\u0441\u043F\u0435\u043B\u043E. +Ant.ExecutableNotFound=\u0423 \u043D\u0430\u0432\u0435\u0434\u0435\u043D\u043E\u0458 \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0438 Ant "{0}" \u043D\u0438\u0458\u0435 \u043F\u0440\u043E\u043D\u0430\u0452\u0435\u043D\u043E \u043A\u043E\u043C\u0430\u043D\u0434\u0430. +Ant.GlobalConfigNeeded=\u041F\u043E\u043A\u0443\u0448\u0430\u0458\u0442\u0435 \u043F\u043E\u043D\u043E\u0432\u043E \u0434\u0430 \u043D\u0430\u0432\u0435\u0434\u0435\u0442\u0435 \u043B\u043E\u043A\u0430\u0446\u0438\u0458\u0443 Ant \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0435. +Ant.NotADirectory={0} \u043D\u0438\u0458\u0435 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C +Ant.NotAntDirectory={0} \u043D\u0438\u0458\u0435 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C \u0437\u0430 Ant +Ant.ProjectConfigNeeded=\u041F\u043E\u043A\u0443\u0448\u0430\u0458\u0442\u0435 \u0434\u0430 \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u0437\u0430\u0434\u0430\u0442\u0430\u043A \u0434\u0430 \u0438\u0437\u0430\u0431\u0435\u0440\u0435\u0442\u0435 \u043C\u0435\u0441\u0442\u043E \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0435 Ant. +ArtifactArchiver.ARCHIVING_ARTIFACTS=\u0410\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045A\u0435 \u0430\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0438 +ArtifactArchiver.DisplayName=\u0410\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u0458 \u0430\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0438 +ArtifactArchiver.SkipBecauseOnlyIfSuccessful=\u041F\u0440\u0435\u0441\u043A\u043E\u045B\u0430\u0432\u0430 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045A\u0435 \u0437\u0430\u0448\u0442\u043E \u0458\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0430 +ArtifactArchiver.FailedToArchive=\u041D\u0435\u0443\u0441\u043F\u0440\u0435\u0448\u043D\u043E \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045A\u0435 \u0430\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0438: {0} +ArtifactArchiver.NoIncludes=\u041D\u0435\u043C\u0430 \u043D\u0430\u0432\u0435\u0434\u0435\u043D\u0438\u0445 \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 \u0437\u0430 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045A\u0435.\n\ +\u0418\u0437\u0433\u043B\u0435\u0434\u0430 \u0434\u0430 \u043D\u0438\u0441\u0442\u0435 \u043D\u0430\u0432\u0435\u043B\u0438 \u0448\u0430\u0431\u043B\u043E\u043D \u0438\u043C\u0435\u043D\u0430 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435. \u041C\u043E\u043B\u0438\u043C\u043E \u0432\u0430\u0441, \u0432\u0440\u0430\u0442\u0438\u0442\u0435 \u0441\u0435 \u043D\u0430 \u0442\u0430\u0458 \u0435\u043A\u0440\u0430\u043D \u0438 \u0443\u043D\u0435\u0441\u0438\u0442\u0435 \u0433\u0430.\n\ +\u0410\u043A\u043E \u0437\u0430\u0438\u0441\u0442\u0430 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u0441\u0432\u0435 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435 \u0443 \u0440\u0430\u0434\u043D\u043E\u043C \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0443, \u0443\u043D\u0435\u0441\u0438\u0442\u0435 "**" +ArtifactArchiver.NoMatchFound=\u041D\u0438 \u0458\u0435\u0434\u0430\u043D \u0430\u0440\u0442\u0435\u0444\u0430\u043A\u0442 \u0441\u0435 \u043D\u0435 \u043F\u043E\u043A\u043B\u0430\u043F\u0430 \u0441\u0430 \u0448\u0430\u0431\u043B\u043E\u043D\u043E\u043C "{0}". \u0414\u0430\u043B\u0438 \u0438\u043C\u0430 \u0433\u0440\u0435\u0448\u0430\u043A\u0430 \u0443 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0443? +BatchFile.DisplayName=\u0418\u0437\u0432\u0440\u0448\u0438 Windows \u043A\u043E\u043C\u0430\u043D\u0434\u0443 +BuildTrigger.Disabled={0} \u0458\u0435 \u043E\u0431\u0443\u0441\u0442\u0430\u0432\u0459\u0435\u043D\u043E \u0438 \u043D\u0435\u043C\u043E\u0436\u0435 \u0441\u0435 \u0438\u0437\u0430\u0437\u043E\u0432\u0430\u0442\u0438 +BuildTrigger.DisplayName=\u0418\u0437\u0433\u0440\u0430\u0434\u0438 \u0434\u0440\u0443\u0433\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0435 +BuildTrigger.InQueue={0} \u0458\u0435 \u0432\u0435\u045B \u0443 \u0440\u0435\u0434\u0443 +BuildTrigger.NoSuchProject=\u041D\u0435\u043C\u0430 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 ''{0}''. \u0414\u0430\u043B\u0438 \u0441\u0442\u0435 \u043C\u0438\u0441\u043B\u0438\u043B\u0438 ''{1}''? +BuildTrigger.NoProjectSpecified=\u041D\u0438\u0458\u0435 \u043D\u0430\u0432\u0435\u0434\u0435\u043D \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 +BuildTrigger.NotBuildable={0} \u043D\u0435\u043C\u043E\u0436\u0435 \u0441\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u0438\u0442\u0438 +BuildTrigger.Triggering=\u041F\u043E\u0447\u0438\u045A\u0435 \u043D\u043E\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0437\u0430 {0} +BuildTrigger.ok_ancestor_is_null=\u041D\u0435\u043F\u043E\u0437\u043D\u0430\u0442 \u0440\u043E\u0434\u0438\u0442\u0435\u043B/\u043A\u043E\u043D\u0442\u0435\u043A\u0441\u0442: \u043D\u0430\u0432\u0435\u0434\u0435\u043D \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 \u043D\u0435\u043C\u043E\u0436\u0435 \u0431\u0438\u0442\u0438 \u043F\u0440\u043E\u0432\u0435\u0440\u0435\u043D +BuildTrigger.you_have_no_permission_to_build_=\u041D\u0435\u043C\u0430\u0442\u0435 \u043F\u0440\u0430\u0432\u043E \u0434\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u0438\u0442\u0435 {0} +CommandInterpreter.CommandFailed=\u0418\u0437\u0432\u0440\u0448\u0430\u0432\u0430\u045A\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u0435 \u043D\u0438\u0458\u0435 \u0443\u0441\u043F\u0435\u043B\u043E +CommandInterpreter.UnableToDelete=\u041D\u0438\u0458\u0435 \u043C\u043E\u0433\u0443\u045B\u0435 \u0438\u0437\u0431\u0440\u0438\u0441\u0430\u0442\u0438 \u0441\u043A\u0440\u0438\u043F\u0442 {0} +CommandInterpreter.UnableToProduceScript=\u041D\u0438\u0458\u0435 \u043C\u043E\u0433\u0443\u045B\u0435 \u043A\u0440\u0435\u0438\u0440\u0430\u0442\u0438 \u0441\u043A\u0440\u0438\u043F\u0442 {0} +Fingerprinter.Aborted=\u041F\u0440\u0435\u043A\u0438\u043D\u0443\u0442\u043E +Fingerprinter.Action.DisplayName=\u041F\u0440\u0435\u0433\u043B\u0435\u0434 \u0434\u0438\u0433\u0438\u0442\u0430\u043B\u043D\u0438\u0445 \u043E\u0442\u0438\u0441\u0430\u043A\u0430 +Fingerprinter.DigestFailed=\u041D\u0438\u0458\u0435 \u0443\u0441\u043F\u0435\u043B\u043E \u043E\u0431\u0440\u0430\u0447\u0443\u043D \u043D\u0430 \u0434\u0438\u0433\u0438\u0442\u0430\u043B\u043D\u043E\u043C \u043E\u0442\u0438\u0441\u043A\u0443 {0} +Fingerprinter.DisplayName=\u0421\u043D\u0438\u043C\u0438 \u0434\u0438\u0433\u0438\u0442\u0430\u043B\u043D\u0435 \u043E\u0442\u0438\u0441\u043A\u0435 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u0434\u0430 \u043F\u0440\u0430\u0442\u0438\u0442\u0435 \u045A\u0438\u0445\u043E\u0432\u0443 \u0443\u043F\u043E\u0442\u0435\u0431\u0440\u0443 +Fingerprinter.Failed=\u041D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u043E \u0441\u043D\u0438\u043C\u0430\u045A\u0435 \u0434\u0438\u0433\u0438\u0442\u0430\u043B\u043D\u0438\u0445 \u043E\u0442\u0438\u0441\u043A\u0430 +Fingerprinter.FailedFor=\u041D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u043E \u0441\u043D\u0438\u043C\u0430\u045A\u0435 \u0434\u0438\u0433\u0438\u0442\u0430\u043B\u043D\u0438\u0443 \u043E\u0442\u0438\u0441\u043A\u0443 \u0437\u0430 {0} +Fingerprinter.Recording=\u0421\u043D\u0438\u043C\u0430\u045A\u0435 \u0434\u0438\u0433\u0438\u0442\u0430\u043B\u043D\u0438\u0445 \u043E\u0442\u0438\u0441\u043A\u0430 +InstallFromApache=\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u045A\u0435 \u043E\u0434 \u0441\u0430\u0438\u0442\u0430 Apache +JavadocArchiver.DisplayName=\u041F\u0443\u0431\u043B\u0438\u043A\u0443\u0458\u0442\u0435 Javadoc +JavadocArchiver.DisplayName.Javadoc=Javadoc +JavadocArchiver.DisplayName.Generic=\u0414\u043E\u043A\u0443\u043C\u0435\u043D\u0442 +TestJavadocArchiver.DisplayName.Javadoc=Test Javadoc +JavadocArchiver.NoMatchFound=\u041D\u0438\u0458\u0435 \u043F\u0440\u043E\u043D\u0430\u0452\u0435\u043D Javadoc {0}: {1} +JavadocArchiver.Publishing=\u041F\u0443\u0431\u043B\u0438\u043A\u043E\u0432\u0430\u045A\u0435 Javadoc +JavadocArchiver.UnableToCopy=Javadoc \u043D\u0435\u043C\u043E\u0436\u0435 \u0431\u0438\u0442\u0438 \u0438\u0441\u043A\u043E\u043F\u0438\u0440\u0430\u043D \u043E\u0434 {0} \u043D\u0430 {1} +Maven.DisplayName=\u0418\u0437\u0432\u0440\u0448\u0438 \u0432\u0440\u0445\u043E\u0432\u043D\u0435 Maven \u0446\u0438\u0459\u0435\u0432\u0435 +Maven.ExecFailed=\u0438\u0437\u0432\u0440\u0448\u0430\u0432\u0430\u045A\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u0435 \u0458\u0435 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u043E +Maven.NotMavenDirectory={0} \u043D\u0435 \u043B\u0438\u0447\u0438 \u043D\u0430 Maven \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C +Maven.NoExecutable=\u041D\u0438\u0458\u0435 \u043F\u0440\u043E\u043D\u0430\u0452\u0435\u043D\u043E \u0438\u0437\u0432\u0440\u0448\u043D\u0430 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u0443 {0} +Shell.DisplayName=\u0418\u0437\u0432\u0440\u0448\u0438 shell \u043A\u043E\u043C\u0430\u043D\u0434\u0443 +Maven.NotADirectory={0} \u043D\u0438\u0458\u0435 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C +Indien= diff --git a/core/src/main/resources/hudson/tasks/Shell/config.groovy b/core/src/main/resources/hudson/tasks/Shell/config.groovy index 3e81fb53d44e2344e43687acabae6b4f0c81d85b..58c4880bf22ffecd7f705e8eeb18addc32c335e2 100644 --- a/core/src/main/resources/hudson/tasks/Shell/config.groovy +++ b/core/src/main/resources/hudson/tasks/Shell/config.groovy @@ -27,3 +27,10 @@ f=namespace(lib.FormTagLib) f.entry(title:_("Command"),description:_("description",rootURL)) { f.textarea(name: "command", value: instance?.command, class: "fixed-width", 'codemirror-mode': 'shell', 'codemirror-config': "mode: 'text/x-sh'") } + +f.advanced() { + f.entry(title:_("Exit code to set build unstable"), field: "unstableReturn") { + f.number(clazz:"positive-number", value: instance?.unstableReturn, min:1, max:255, step:1) + } + +} diff --git a/core/src/main/resources/hudson/tasks/Shell/config.properties b/core/src/main/resources/hudson/tasks/Shell/config.properties index 5918ee6a1abad32630f30d40ae2c1a95e000c199..0d7b36f4a5a187009b57a54bbcab48a69a31434b 100644 --- a/core/src/main/resources/hudson/tasks/Shell/config.properties +++ b/core/src/main/resources/hudson/tasks/Shell/config.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description=See the list of available environment variables \ No newline at end of file +description=See the list of available environment variables diff --git a/core/src/main/resources/hudson/tasks/Shell/config_sr.properties b/core/src/main/resources/hudson/tasks/Shell/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..1b4980ff65f0b0cb6022d17b6023366771e0455d --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Shell/config_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +description=\u041F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 \u0441\u043F\u0438\u0441\u0430\u043A \u043F\u0440\u043E\u043C\u0435\u043D\u0459\u0438\u0432\u0430 +Command=\u041A\u043E\u043C\u0430\u043D\u0434\u0430 \ No newline at end of file diff --git a/core/src/main/resources/hudson/tasks/Shell/global_sr.properties b/core/src/main/resources/hudson/tasks/Shell/global_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..aa7f83e47ac5d202177f531b0b894e3aff2fc950 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Shell/global_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Shell=\u0409\u0443\u0441\u043A\u0430 +Shell\ executable=\u041F\u0443\u0442 \u0434\u043E \u0459\u0443\u0441\u043A\u0435 \ No newline at end of file diff --git a/core/src/main/resources/hudson/tasks/Shell/help-unstableReturn.html b/core/src/main/resources/hudson/tasks/Shell/help-unstableReturn.html new file mode 100644 index 0000000000000000000000000000000000000000..bc6426fa3dfb02a2e8e09105f0b368d91b04e16c --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Shell/help-unstableReturn.html @@ -0,0 +1,5 @@ +
      + If set, the shell exit code that will be interpreted as an unstable build result. If the exit code matches the value, + the build results will be set to 'unstable' and next steps will be continued. On Unix-like it is a value between 0-255. + The value 0 is ignored and does not make the build unstable to keep the default behaviour consistent. +
      diff --git a/core/src/main/resources/hudson/tools/AbstractCommandInstaller/config_sr.properties b/core/src/main/resources/hudson/tools/AbstractCommandInstaller/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..de532cad164042ca3914b5615f757736977827b3 --- /dev/null +++ b/core/src/main/resources/hudson/tools/AbstractCommandInstaller/config_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Command=\u041A\u043E\u043C\u0430\u043D\u0434\u0430 +Tool\ Home=\u0413\u043B\u0430\u0432\u043D\u0438 \u043A\u0430\u0442\u0430\u043B\u043E\u0433 \u0430\u043B\u0430\u0442\u0430 diff --git a/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command.html b/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command.html index a313706d701c2102b116676afceb0951a9d6634b..d84dbd5713e2271f62dcfc47187b20ad6fab40b3 100644 --- a/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command.html +++ b/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command.html @@ -1,4 +1,4 @@
      - Command to run on the slave node to install the tool. + Command to run on the agent node to install the tool. The command will always be run, so it should be a quick no-op if the tool is already installed.
      diff --git a/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command_de.html b/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command_de.html deleted file mode 100644 index c2ea0fec7a2ca9541079f67b8b84fd3fe0177fa9..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command_de.html +++ /dev/null @@ -1,5 +0,0 @@ -
      - Kommando, das auf dem Slave ausgeführt wird, um das Hilfsprogramm zu installieren. - Dieses Kommando wird bei jedem Build ausgeführt - es sollte also eine schnelle, neutrale Operation sein, - wenn das Hilfsprogramm bereits auf dem Slave installiert ist. -
      diff --git a/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command_zh_CN.html b/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command_zh_CN.html index c98784a54c59154132a3f9025fca166eca29c9ce..648904897aafeba41d67c4d63c6001f6924a6419 100644 --- a/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command_zh_CN.html +++ b/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command_zh_CN.html @@ -1,4 +1,4 @@ -
      - 在子节点上使用命令安装工具, - 命令会一直运行,如果工具已经安装了,就要这个命令迅速的运行完成并且没有任何操作. -
      +
      + 在子节点上使用命令安装工具, + 命令会一直运行,如果工具已经安装了,就要这个命令迅速的运行完成并且没有任何操作. +
      diff --git a/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command_zh_TW.html b/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command_zh_TW.html deleted file mode 100644 index e9d06e036cd2d78d320351e36728674e07015d09..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command_zh_TW.html +++ /dev/null @@ -1,4 +0,0 @@ -
      - 在 Slave 節點上安裝工具要執行的指令。 - 每次都會執行這個指令,所以如果工具已經安裝好了,指令應該要不做任何事盡快結束。 -
      diff --git a/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-toolHome_zh_CN.html b/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-toolHome_zh_CN.html index 870a2b330d82ea874e2a9cecf6a26e5bb724278c..133842fd340b837a07baf02dd4e74266a2fa4fdd 100644 --- a/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-toolHome_zh_CN.html +++ b/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-toolHome_zh_CN.html @@ -1,4 +1,4 @@ -
      - 安装工具的目录. - (如果需要吧工具解压到磁盘上,可能是一个绝对路径.) -
      +
      + 安装工具的目录. + (如果需要吧工具解压到磁盘上,可能是一个绝对路径.) +
      diff --git a/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help_de.html b/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help_de.html index 64f14fecfc9299ad83ae1721395394c344cd50a1..da52cbe61d4eebfbada6274dc57b212495df20e9 100644 --- a/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help_de.html +++ b/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help_de.html @@ -1,6 +1,6 @@

      Startet ein Shell-Kommando Ihrer Wahl, um das Hilfsprogramm zu installieren. - Unter Ubuntu könnte das beispielsweise so aussehen (unter der Annahme, daß + Unter Ubuntu könnte das beispielsweise so aussehen (unter der Annahme, dass der Jenkins-Benutzer in /etc/sudoers gelistet ist):

      diff --git a/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help_zh_CN.html b/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help_zh_CN.html index c11feb02928847de48e1f5160451e55945586e5b..1815c2a214098114382ada648d8627e352757393 100644 --- a/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help_zh_CN.html +++ b/core/src/main/resources/hudson/tools/AbstractCommandInstaller/help_zh_CN.html @@ -1,21 +1,21 @@ -

      - 运行Shell命令来安装你选择的工具.用Ubunte举例, - 假设Jenkins用户在/etc/sudoers内: -

      -
      sudo apt-get --yes install openjdk-6-jdk
      -

      - (这个例子中指定 /usr/lib/jvm/java-6-openjdk 作为工具安装目录.) -

      -

      - 其它情况的例子,在(x86) Linux下安装JDK6, - 你可以使用DLJ: -

      -
      bin=jdk-6u13-dlj-linux-i586.bin
      -if [ \! -f $bin ]
      -then
      -    wget --no-verbose http://download.java.net/dlj/binaries/$bin
      -    sh $bin --unpack --accept-license
      -fi
      -

      - (这个例子中指定 jdk1.6.0_13 作为安装目录DLJ:.) -

      +

      + 运行Shell命令来安装你选择的工具.用Ubunte举例, + 假设Jenkins用户在/etc/sudoers内: +

      +
      sudo apt-get --yes install openjdk-6-jdk
      +

      + (这个例子中指定 /usr/lib/jvm/java-6-openjdk 作为工具安装目录.) +

      +

      + 其它情况的例子,在(x86) Linux下安装JDK6, + 你可以使用DLJ: +

      +
      bin=jdk-6u13-dlj-linux-i586.bin
      +if [ \! -f $bin ]
      +then
      +    wget --no-verbose http://download.java.net/dlj/binaries/$bin
      +    sh $bin --unpack --accept-license
      +fi
      +

      + (这个例子中指定 jdk1.6.0_13 作为安装目录DLJ:.) +

      diff --git a/core/src/main/resources/hudson/tools/DownloadFromUrlInstaller/config_sr.properties b/core/src/main/resources/hudson/tools/DownloadFromUrlInstaller/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..b1e0ab0aa0c5230304c692af0438d41657c31ce7 --- /dev/null +++ b/core/src/main/resources/hudson/tools/DownloadFromUrlInstaller/config_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Version=\u0412\u0435\u0440\u0437\u0438\u0458\u0430 diff --git a/core/src/main/resources/hudson/tools/InstallSourceProperty/config_de.properties b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_de.properties index 1c6dbf61f9a22d64dc6d2d630a994bbd8674471c..2e5b756d0d2c5592eb1ce43fa1fdbae5ed08539c 100644 --- a/core/src/main/resources/hudson/tools/InstallSourceProperty/config_de.properties +++ b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_de.properties @@ -1,24 +1,24 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Add\ Installer=Installationsverfahren hinzufgen +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +Add\ Installer=Installationsverfahren hinzufgen Delete\ Installer=Installationsverfahren entfernen \ No newline at end of file diff --git a/core/src/main/resources/hudson/tools/InstallSourceProperty/config_sr.properties b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..0e2e34192b93f02e1f9dda2dc40b94e1f35b3b72 --- /dev/null +++ b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Delete\ Installer=\u0423\u043A\u043B\u043E\u043D\u0438 \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0442\u043E\u0440 +Add\ Installer=\u0414\u043E\u0434\u0430\u0458\u0442\u0435 \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0442\u043E\u0440 diff --git a/core/src/main/resources/hudson/tools/InstallSourceProperty/config_zh_CN.properties b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_zh_CN.properties index b7378656a38f7815a980412e92919418579c6bcc..e349cd159c34d1691bef536ccd4ff54ad82012fc 100644 --- a/core/src/main/resources/hudson/tools/InstallSourceProperty/config_zh_CN.properties +++ b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_zh_CN.properties @@ -1,24 +1,24 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Add\ Installer=\u65b0\u589e\u5b89\u88c5 +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +Add\ Installer=\u65b0\u589e\u5b89\u88c5 Delete\ Installer=\u5220\u9664\u5b89\u88c5 \ No newline at end of file diff --git a/core/src/main/resources/hudson/tools/InstallSourceProperty/help.html b/core/src/main/resources/hudson/tools/InstallSourceProperty/help.html index 25ecfe6d61409031d8c1d1223978113af3a5ffaf..bd817db61d2522bd06dc2beb646f799acbd14f32 100644 --- a/core/src/main/resources/hudson/tools/InstallSourceProperty/help.html +++ b/core/src/main/resources/hudson/tools/InstallSourceProperty/help.html @@ -10,5 +10,5 @@ For a platform-independent tool (such as Ant), configuring multiple installers for a single tool makes not much sense, but for a platform dependent tool, multiple installer configurations allow you to run a different set up script - depending on the slave environment. + depending on the agent environment. diff --git a/core/src/main/resources/hudson/tools/InstallSourceProperty/help_de.html b/core/src/main/resources/hudson/tools/InstallSourceProperty/help_de.html deleted file mode 100644 index 18f3f9c8fb5b04bdb7537350150ee802d784d9a4..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tools/InstallSourceProperty/help_de.html +++ /dev/null @@ -1,14 +0,0 @@ -
      - Verwenden diese Option, wenn Jenkins bei Bedarf automatisch Hilfsprogramme - am angegebenen Ort installieren soll. - -

      - Wenn Sie diese Option anwählen, müssen Sie für jedes Hilfsprogramm eines - oder mehrere Installationsverfahren konfigurieren. - -

      - Für ein plattformunabhängiges Hilfsprogramm (z.B. Apache Ant) ist es wenig - sinnvoll, mehrere Installationsverfahren anzugeben. Bei einem plattformabhängigen - Hilfsprogramm hingegen, können Sie so gezielt das Installationsverfahren der - jeweiligen Slave-Plattform anpassen. -

      diff --git a/core/src/main/resources/hudson/tools/InstallSourceProperty/help_zh_TW.html b/core/src/main/resources/hudson/tools/InstallSourceProperty/help_zh_TW.html deleted file mode 100644 index 40248d0da3c7c72e47cf527c5043765d0c0ae054..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tools/InstallSourceProperty/help_zh_TW.html +++ /dev/null @@ -1,10 +0,0 @@ -
      - 這個功能能讓 Jenkins 依您的需求,將工具安裝到您上面設定的地方去。 - -

      - 選用這個功能用,您需要設定一系列的工具「安裝程式」,每個安裝程式都定義 Jenkins 該如何安裝這項工具。 - -

      - 對不限定平台的工具 (例如 Ant) 設定多個「安裝程式」並不合理。 - 但是對平台相關的工具來說,多個安裝程式設定,讓您可以依 Slave 環境不同執行專屬的安裝 Script。 -

      diff --git a/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/credentialOK_sr.properties b/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/credentialOK_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..fef7da675572e9d473493dd306b3dec4e8d50790 --- /dev/null +++ b/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/credentialOK_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Credential\ is\ saved=\u0421\u0430\u0447\u0443\u0432\u0430\u043D\u043E \u0458\u0435 \u0430\u043A\u0440\u0435\u0434\u0438\u0442\u0438\u0432\u0430\u0442 +Close=\u0417\u0430\u0432\u0440\u0448\u0438 diff --git a/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential.properties b/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential.properties index 677be849089a933b85725468b8c28fef24d0b2e2..b71d56349f14c94cd79fd93af63cbc8848d1ab52 100644 --- a/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential.properties +++ b/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description=To access older versions of JDK, you need to have Oracle Account. \ No newline at end of file +description=To access older versions of JDK, you need to have Oracle Account. \ No newline at end of file diff --git a/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_de.properties b/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_de.properties index f3146f3e65147ef410f1bf20ea2b31d43ff4b05f..672bfce5c0063883939954a91adc151952e40f31 100644 --- a/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_de.properties +++ b/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_de.properties @@ -4,4 +4,4 @@ Enter\ Your\ Oracle\ Account=Bitte Oracle-Account eintragen OK=Ok Password=Passwort Username=Benutzername -description=Um \u00E4ltere Versionen des JDKs zu erlangen, ben\u00F6tigen Sie einen Oracle Account. +description=Um \u00E4ltere Versionen des JDKs zu erlangen, ben\u00F6tigen Sie einen Oracle Account. diff --git a/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_es.properties b/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_es.properties index ef8b59b2ce4eba493215ceb9d411b98bec1795ea..7d6223c69f9bb5199dab10f1720526526b73a11d 100644 --- a/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_es.properties +++ b/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_es.properties @@ -22,7 +22,7 @@ Password=Contrasea Username=Usuario -# To access older versions of JDK, you need to have Oracle Account. -description=Desafortunadamente Oracle exige que para descargar antiguas versiones del JDK uses una Cuenta de Oracle. +# To access older versions of JDK, you need to have Oracle Account. +description=Desafortunadamente Oracle exige que para descargar antiguas versiones del JDK uses una Cuenta de Oracle. Enter\ Your\ Oracle\ Account=Introduce un usuario y contrasea vlidos OK=Aceptar diff --git a/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_ja.properties b/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_ja.properties index a223567c493bdf42e9f4b52907459e5be386e523..219b0f812778a17d2a85ba0c4fc4c316389a74c1 100644 --- a/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_ja.properties +++ b/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_ja.properties @@ -24,5 +24,5 @@ Enter\ Your\ Oracle\ Account=Oracle\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u5165\u5 Username=\u30e6\u30fc\u30b6\u540d Password=\u30d1\u30b9\u30ef\u30fc\u30c9 description=\ - JDK\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u3001Oracle\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u304c\u5fc5\u8981\u3067\u3059\u3002 + JDK\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u3001Oracle\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u304c\u5fc5\u8981\u3067\u3059\u3002 OK=OK diff --git a/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_pt_BR.properties b/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_pt_BR.properties index b02b3afbb5cda8b5701f6eed13304ba377caa280..92d284a3511d8524e91b5911c48c227e8cd2e342 100644 --- a/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_pt_BR.properties +++ b/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_pt_BR.properties @@ -24,5 +24,5 @@ Username=Usu\u00e1rio Password=Senha OK=OK Enter\ Your\ Oracle\ Account=Informe sua conta da Oracle -# To access older versions of JDK, you need to have Oracle Account. -description=Para acessar vers\u00f5es antigas do JDK, voc\u00ea deve possuir uma conta da Oracle. +# To access older versions of JDK, you need to have Oracle Account. +description=Para acessar vers\u00f5es antigas do JDK, voc\u00ea deve possuir uma conta da Oracle. diff --git a/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_sr.properties b/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..c77ad735c4501ffe448c1e9988b503e216f6add9 --- /dev/null +++ b/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_sr.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Enter\ Your\ Oracle\ Account=\u0423\u043D\u0435\u0441\u0438\u0442\u0435 \u0432\u0430\u0448 Oracle \u043D\u0430\u043B\u043E\u0433 +description=\u0414\u0430 \u043F\u0440\u0438\u0441\u0442\u0443\u043F\u0438\u0442\u0435 \u0441\u0442\u0430\u0440\u0438\u0458\u0438\u043C \u0432\u0435\u0440\u0437\u0438\u0458\u0430\u043C\u0430 JDK, \u043C\u043E\u0440\u0430\u0442\u0435 \u0438\u043C\u0430\u0442\u0438 Oracle \u043D\u0430\u043B\u043E\u0433. +Username=\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u043E \u0438\u043C\u0435 +Password=\u041B\u043E\u0437\u0438\u043D\u043A\u0430 +OK=\u0423\u0440\u0435\u0434\u0443 diff --git a/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_zh_TW.properties b/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_zh_TW.properties index 96e6a016e9d9f135fab18a37c4e39004dd767fa3..a3262debbe5edf35fddeda7e5a2c2587d30ab3b3 100644 --- a/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_zh_TW.properties +++ b/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_zh_TW.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Enter\ Your\ Oracle\ Account=\u8f38\u5165\u60a8\u7684 Oracle \u5e33\u865f -description=\u60a8\u8981\u6709 Oracle \u5e33\u865f\u624d\u80fd\u62ff\u5230\u820a\u7248 JDK\u3002 +description=\u60a8\u8981\u6709 Oracle \u5e33\u865f\u624d\u80fd\u62ff\u5230\u820a\u7248 JDK\u3002 Username=\u4f7f\u7528\u8005\u540d\u7a31 Password=\u5bc6\u78bc OK=\u78ba\u5b9a diff --git a/core/src/main/resources/hudson/tools/JDKInstaller/config_sr.properties b/core/src/main/resources/hudson/tools/JDKInstaller/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..5d1762543aff2701514aa739d2ab9c6559362fb3 --- /dev/null +++ b/core/src/main/resources/hudson/tools/JDKInstaller/config_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Version=\u0412\u0435\u0440\u0437\u0438\u0458\u0430 +I\ agree\ to\ the\ Java\ SE\ Development\ Kit\ License\ Agreement=\u041F\u0440\u0438\u0441\u0442\u0430\u0458\u0435\u043C \u043D\u0430 \u0443\u0433\u043E\u0432\u043E\u0440 \u043E \u043B\u0438\u0446\u0435\u043D\u0446\u0438 Java SE Development Kit diff --git a/core/src/main/resources/hudson/tools/Messages.properties b/core/src/main/resources/hudson/tools/Messages.properties index e5d553866d776c1b9fbf76b01eeccece24fcbd36..a59e064de78dec0a38f361709807922d7bebcb47 100644 --- a/core/src/main/resources/hudson/tools/Messages.properties +++ b/core/src/main/resources/hudson/tools/Messages.properties @@ -36,4 +36,5 @@ InstallSourceProperty.DescriptorImpl.displayName=Install automatically JDKInstaller.DescriptorImpl.displayName=Install from java.sun.com JDKInstaller.DescriptorImpl.doCheckId=Define JDK ID JDKInstaller.DescriptorImpl.doCheckAcceptLicense=You must agree to the license to download the JDK. -ToolDescriptor.NotADirectory={0} is not a directory on the Jenkins master (but perhaps it exists on some slaves) +ToolDescriptor.NotADirectory={0} is not a directory on the Jenkins master (but perhaps it exists on some agents) +CannotBeInstalled=Installer "{0}" cannot be used to install "{1}" on the node "{2}" diff --git a/core/src/main/resources/hudson/tools/Messages_bg.properties b/core/src/main/resources/hudson/tools/Messages_bg.properties index 478d54594f5caec53a82d8f9b0c874f07a00bbc1..299ea8527ef96737ab8e170d9ed3c3f7874a270f 100644 --- a/core/src/main/resources/hudson/tools/Messages_bg.properties +++ b/core/src/main/resources/hudson/tools/Messages_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Bulgarian translation copyright 2015 Alexander Shopov . +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -56,6 +56,7 @@ JDKInstaller.DescriptorImpl.doCheckId=\ \u0423\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u0430 \u043d\u0430 JDK (\u0440\u0430\u0437\u0432\u043e\u0439\u043d\u0438\u0442\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438 \u0437\u0430 Java) JDKInstaller.DescriptorImpl.doCheckAcceptLicense=\ \u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u043f\u0440\u0438\u0435\u043c\u0435\u0442\u0435 \u043b\u0438\u0446\u0435\u043d\u0437\u0430, \u0437\u0430 \u0434\u0430 \u0441\u0432\u0430\u043b\u0438\u0442\u0435 JDK (\u0440\u0430\u0437\u0432\u043e\u0439\u043d\u0438\u0442\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438 \u0437\u0430 Java). +# {0} is not a directory on the Jenkins master (but perhaps it exists on some agents) ToolDescriptor.NotADirectory=\ - \u201e{0}\u201c \u043d\u0435 \u0435 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u0438\u044f \u0441\u044a\u0440\u0432\u044a\u0440 \u043d\u0430 Jenkins (\u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e \u0435 \u0434\u0430 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430\ - \u043d\u0430 \u043d\u044f\u043a\u043e\u0438 \u043e\u0442 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u0438\u0442\u0435 \u043c\u0430\u0448\u0438\u043d\u0438) + \u201e{0}\u201c \u043d\u0435 \u0435 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u0438\u044f \u043a\u043e\u043c\u043f\u044e\u0442\u044a\u0440 \u043d\u0430 Jenkins, \u043d\u043e \u0432\u0435\u0440\u043e\u044f\u0442\u043d\u043e \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430\ + \u043d\u0430 \u043d\u044f\u043a\u043e\u0438 \u043e\u0442 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u0438\u0442\u0435 \u043a\u043e\u043c\u043f\u044e\u0442\u0440\u0438 diff --git a/core/src/main/resources/hudson/tools/Messages_de.properties b/core/src/main/resources/hudson/tools/Messages_de.properties index 5fde3fe02739ac0d8dcd693fb310e619db29f75f..c4ae69317ab1056783b6dd634d9012909f609fdd 100644 --- a/core/src/main/resources/hudson/tools/Messages_de.properties +++ b/core/src/main/resources/hudson/tools/Messages_de.properties @@ -21,18 +21,20 @@ # THE SOFTWARE. ToolLocationNodeProperty.displayName=Verzeichnisse von Hilfsprogrammen anpassen -CommandInstaller.DescriptorImpl.displayName=Shell-Kommando ausfhren +CommandInstaller.DescriptorImpl.displayName=Shell-Kommando ausf\u00FChren CommandInstaller.no_command=Ein Kommando muss angegeben werden. CommandInstaller.no_toolHome=Ein Stammverzeichnis muss angegeben werden. -BatchCommandInstaller.DescriptorImpl.displayName=Windows Batch-Datei ausfhren +BatchCommandInstaller.DescriptorImpl.displayName=Windows Batch-Datei ausf\u00FChren ZipExtractionInstaller.DescriptorImpl.displayName=Entpacke *.zip/*.tar.gz-Archiv ZipExtractionInstaller.bad_connection=Der Server verweigerte den Verbindungsaufbau -ZipExtractionInstaller.malformed_url=Ungltige URL +ZipExtractionInstaller.malformed_url=Ung\u00FCltige URL ZipExtractionInstaller.could_not_connect=URL konnte nicht kontaktiert werden. InstallSourceProperty.DescriptorImpl.displayName=Automatisch installieren JDKInstaller.DescriptorImpl.displayName=Installiere von java.sun.com JDKInstaller.DescriptorImpl.doCheckId=JDK-ID definieren -JDKInstaller.DescriptorImpl.doCheckAcceptLicense=Sie mssen der Lizenzvereinbarung zustimmen, um das JDK herunterzuladen. +JDKInstaller.DescriptorImpl.doCheckAcceptLicense=Sie m\u00FCssen der Lizenzvereinbarung zustimmen, um das JDK herunterzuladen. JDKInstaller.FailedToInstallJDK=JDK konnte nicht installiert werden. JDKInstaller.RequireOracleAccount=F\u00FCr die Installation des JDK ben\u00F6tigen Sie einen Oracle Account. Bitte geben Sie Benutzername/Passwort ein JDKInstaller.UnableToInstallUntilLicenseAccepted=JDK kann nicht automatisch installiert werden, solange die Lizenzvereinbarung nicht akzeptiert wurde. +CannotBeInstalled=Das Installationsverfahren \u201E{0}\u201C kann nicht verwendet werden, um \u201E{1}\u201C auf dem Knoten \u201E{2}\u201C zu installieren. +ToolDescriptor.NotADirectory=Das Verzeichnis {0} existiert nicht auf dem Master-Knoten (aber vielleicht auf Agenten) diff --git a/core/src/main/resources/hudson/tools/Messages_ja.properties b/core/src/main/resources/hudson/tools/Messages_ja.properties index ac2fff6e077dddf9bec7aba51d3ad875f23ecc02..2e82dec80a1a3be71dd03e1314673dc0d7bf7ca3 100644 --- a/core/src/main/resources/hudson/tools/Messages_ja.properties +++ b/core/src/main/resources/hudson/tools/Messages_ja.properties @@ -37,4 +37,3 @@ InstallSourceProperty.DescriptorImpl.displayName=\u81ea\u52d5\u30a4\u30f3\u30b9\ JDKInstaller.DescriptorImpl.displayName=java.sun.com\u304b\u3089\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb JDKInstaller.DescriptorImpl.doCheckId=JDK\u306eID\u3092\u5b9a\u7fa9\u3057\u3066\u304f\u3060\u3055\u3044\u3002 JDKInstaller.DescriptorImpl.doCheckAcceptLicense=JDK\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4f7f\u7528\u8a31\u8afe\u306b\u540c\u610f\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 -ToolDescriptor.NotADirectory=\u30de\u30b9\u30bf\u30fc\u4e0a\u306e{0}\u306f\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u306f\u3042\u308a\u307e\u305b\u3093(\u30b9\u30ec\u30fc\u30d6\u306b\u306f\u3042\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093)\u3002 \ No newline at end of file diff --git a/core/src/main/resources/hudson/tools/Messages_pl.properties b/core/src/main/resources/hudson/tools/Messages_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..6668add87103bdee77156bdc47acb3760e6962d8 --- /dev/null +++ b/core/src/main/resources/hudson/tools/Messages_pl.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2016, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. +# Tool Locations +ToolLocationNodeProperty.displayName=Lokalizacja narz\u0119dzi diff --git a/core/src/main/resources/hudson/tools/Messages_pt_BR.properties b/core/src/main/resources/hudson/tools/Messages_pt_BR.properties index 91d0955134a311cb96177b22975b0311d96fd2e0..b69eff530a86f19684693da67e29731f32b6e3f2 100644 --- a/core/src/main/resources/hudson/tools/Messages_pt_BR.properties +++ b/core/src/main/resources/hudson/tools/Messages_pt_BR.properties @@ -52,5 +52,4 @@ CommandInstaller.no_toolHome=\u00c9 necess\u00e1rio fornecer um diret\u00f3rio h JDKInstaller.RequireOracleAccount=Instalar o JDK exige uma conta na Oracle. Por favor informe seu usu\u00e1ro/senha # Run Batch Command BatchCommandInstaller.DescriptorImpl.displayName=Executar comando em lotes -# {0} is not a directory on the Jenkins master (but perhaps it exists on some slaves) -ToolDescriptor.NotADirectory={0} n\u00e3o \u00e9 um diret\u00f3rio no Jenkins master (por\u00e9m pode existir em alguns slaves) + diff --git a/core/src/main/resources/hudson/tools/Messages_sr.properties b/core/src/main/resources/hudson/tools/Messages_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..4266f9e1801f13cc0a909213e70fc21fbbc4d36e --- /dev/null +++ b/core/src/main/resources/hudson/tools/Messages_sr.properties @@ -0,0 +1,19 @@ +# This file is under the MIT License by authors + +ToolLocationNodeProperty.displayName=\u041B\u043E\u043A\u0430\u0446\u0438\u0458\u0435 \u0430\u043B\u0430\u0442\u0430 +CommandInstaller.DescriptorImpl.displayName=\u0418\u0437\u0432\u0440\u0448\u0438 shell \u043A\u043E\u043C\u0430\u043D\u0434\u0443 +CommandInstaller.no_command=\u041C\u043E\u0440\u0430\u0442\u0435 \u043D\u0430\u0432\u0435\u0441\u0442\u0438 \u043A\u043E\u043C\u0430\u043D\u0434\u0443 \u0437\u0430 \u0438\u0437\u0432\u0440\u0448\u0430\u0432\u0430\u045A\u0435 +CommandInstaller.no_toolHome=\u041C\u043E\u0440\u0430\u0442\u0435 \u043D\u0430\u0432\u0435\u0441\u0442\u0438 \u0433\u043B\u0430\u0432\u043D\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C \u0437\u0430 \u0430\u043B\u0430\u0442\u0435. +BatchCommandInstaller.DescriptorImpl.displayName=\u0418\u0437\u0432\u0440\u0448\u0438 batch \u043A\u043E\u043C\u0430\u043D\u0434\u0443 +JDKInstaller.FailedToInstallJDK=\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u045A\u0435 JDK \u043D\u0438\u0458\u0435 \u0443\u0441\u043F\u0435\u043B\u043E. Exit code={0} +JDKInstaller.RequireOracleAccount=\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u045A\u0435 JDK-\u0430 \u0437\u0430\u0445\u0442\u0435\u0432\u0430 Oracle \u043D\u0430\u043B\u043E\u0433. \u041C\u043E\u043B\u0438\u043C\u043E \u0443\u043D\u0435\u0441\u0438\u0442\u0435 \u043A\u043E\u0440\u0438\u0438\u0441\u043D\u0438\u0447\u043A\u043E \u0438\u043C\u0435/\u043B\u043E\u0437\u0438\u043D\u043A\u0443 +JDKInstaller.UnableToInstallUntilLicenseAccepted=\u041C\u043E\u0440\u0430\u0442\u0435 \u043F\u0440\u0438\u0445\u0432\u0430\u0442\u0438\u0442\u0438 \u043B\u0438\u0446\u0435\u043D\u0446\u0443 \u0437\u0430 \u0430\u0443\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043A\u0443 \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0443 JDK-\u0430. +ZipExtractionInstaller.DescriptorImpl.displayName=\u0420\u0430\u0441\u043A\u043F\u0430\u043A\u0443\u0458 *.zip/*.tar.gz +ZipExtractionInstaller.malformed_url=\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u043D\u0430 URL \u0430\u0434\u0440\u0435\u0441\u0430. +ZipExtractionInstaller.bad_connection=\u0421\u0435\u0440\u0432\u0435\u0440 \u0458\u0435 \u043E\u0434\u0431\u0438\u043E \u043F\u043E\u0432\u0435\u0437\u0438\u0432\u0430\u045A\u0435. +ZipExtractionInstaller.could_not_connect=\u041D\u0438\u0458\u0435 \u043C\u043E\u0433\u043B\u043E \u0443\u0441\u043F\u043E\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u0435\u0437\u0443 \u0441\u0430 URL-\u0430\u0434\u0440\u0435\u0441\u043E\u043C. +InstallSourceProperty.DescriptorImpl.displayName=\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0458 \u0430\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u043E +JDKInstaller.DescriptorImpl.displayName=\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0458 \u0441\u0430 \u0430\u0434\u0440\u0435\u0441\u0435 java.sun.com +JDKInstaller.DescriptorImpl.doCheckId=\u041D\u0430\u0432\u0435\u0434\u0438 JDK ID +JDKInstaller.DescriptorImpl.doCheckAcceptLicense=\u041C\u043E\u0440\u0430\u0442\u0435 \u043F\u0440\u0438\u0445\u0432\u0430\u0442\u0438\u0442\u0438 \u043B\u0438\u0446\u0435\u043D\u0446\u0443 \u0434\u0430 \u043F\u0440\u0435\u0443\u0437\u043C\u0435\u0442\u0435 JDK. +ToolDescriptor.NotADirectory={0} \u043D\u0438\u0458\u0435 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C \u043D\u0430 Jenkins \u043C\u0430\u0448\u0438\u043D\u0438 (\u0430\u043B\u0438 \u043C\u043E\u0433\u0443\u045B\u0435 \u0434\u0430 \u043F\u043E\u0441\u0442\u043E\u0458\u0438 \u043D\u0430 \u043D\u0435\u043A\u0438\u043C \u043E\u0434 \u0430\u0433\u0435\u043D\u0430\u0442\u0430) \ No newline at end of file diff --git a/core/src/main/resources/hudson/tools/Messages_zh_CN.properties b/core/src/main/resources/hudson/tools/Messages_zh_CN.properties index 2bec02c1b1036826d1512ee8b5890374e2d3f6ec..03c08991d1500617e2539b03617c02cedc6b1c3a 100644 --- a/core/src/main/resources/hudson/tools/Messages_zh_CN.properties +++ b/core/src/main/resources/hudson/tools/Messages_zh_CN.properties @@ -1,36 +1,35 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Seiji Sogabe -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -ToolLocationNodeProperty.displayName=Tool Locations -CommandInstaller.DescriptorImpl.displayName=\u8fd0\u884c\u547d\u4ee4 -CommandInstaller.no_command=\u5fc5\u987b\u63d0\u4f9b\u4e00\u4e2a\u8fd0\u884c\u547d\u4ee4. -CommandInstaller.no_toolHome=\u5fc5\u987b\u63d0\u4f9b\u4e00\u4e2a\u5de5\u5177\u6839\u76ee\u5f55. -JDKInstaller.FailedToInstallJDK=\u5b89\u88c5JDK\u5931\u8d25. \u9519\u8bef\u4ee3\u7801={0} -JDKInstaller.UnableToInstallUntilLicenseAccepted=\u6ca1\u6709\u63a5\u53d7\u8bb8\u53ef\u4e4b\u524d\u4e0d\u80fd\u591f\u81ea\u52a8\u5b89\u88c5. -ZipExtractionInstaller.DescriptorImpl.displayName=\u89e3\u538b *.zip/*.tar.gz -ZipExtractionInstaller.bad_connection=\u670d\u52a1\u5668\u62d2\u7edd\u94fe\u63a5. -ZipExtractionInstaller.malformed_url=\u9519\u8bef\u7684URL. -ZipExtractionInstaller.could_not_connect=\u4e0d\u80fd\u94fe\u63a5URL. -InstallSourceProperty.DescriptorImpl.displayName=\u81ea\u52a8\u5b89\u88c5 -JDKInstaller.DescriptorImpl.displayName=\u4ece java.sun.com\u5b89\u88c5 -JDKInstaller.DescriptorImpl.doCheckId=\u5b9a\u4e49JDK ID -JDKInstaller.DescriptorImpl.doCheckAcceptLicense=\u4f60\u5fc5\u987b\u63a5\u53d7\u8bb8\u53ef\u624d\u80fd\u4e0b\u8f7dJDK. \ No newline at end of file +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Seiji Sogabe +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +CommandInstaller.DescriptorImpl.displayName=\u8FD0\u884C\u547D\u4EE4 +CommandInstaller.no_command=\u5FC5\u987B\u63D0\u4F9B\u4E00\u4E2A\u8FD0\u884C\u547D\u4EE4. +CommandInstaller.no_toolHome=\u5FC5\u987B\u63D0\u4F9B\u4E00\u4E2A\u5DE5\u5177\u6839\u76EE\u5F55. +JDKInstaller.FailedToInstallJDK=\u5B89\u88C5JDK\u5931\u8D25. \u9519\u8BEF\u4EE3\u7801={0} +JDKInstaller.UnableToInstallUntilLicenseAccepted=\u6CA1\u6709\u63A5\u53D7\u8BB8\u53EF\u4E4B\u524D\u4E0D\u80FD\u591F\u81EA\u52A8\u5B89\u88C5. +ZipExtractionInstaller.DescriptorImpl.displayName=\u89E3\u538B *.zip/*.tar.gz +ZipExtractionInstaller.bad_connection=\u670D\u52A1\u5668\u62D2\u7EDD\u94FE\u63A5. +ZipExtractionInstaller.malformed_url=\u9519\u8BEF\u7684URL. +ZipExtractionInstaller.could_not_connect=\u4E0D\u80FD\u94FE\u63A5URL. +InstallSourceProperty.DescriptorImpl.displayName=\u81EA\u52A8\u5B89\u88C5 +JDKInstaller.DescriptorImpl.displayName=\u4ECE java.sun.com\u5B89\u88C5 +JDKInstaller.DescriptorImpl.doCheckId=\u5B9A\u4E49JDK ID +JDKInstaller.DescriptorImpl.doCheckAcceptLicense=\u4F60\u5FC5\u987B\u63A5\u53D7\u8BB8\u53EF\u624D\u80FD\u4E0B\u8F7DJDK. \ No newline at end of file diff --git a/core/src/main/resources/hudson/tools/ToolInstallation/config_sr.properties b/core/src/main/resources/hudson/tools/ToolInstallation/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..43f1c62da537908e9df3c48c18f610413f97dee2 --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolInstallation/config_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Name=\u0418\u043C\u0435 +Installation\ directory=\u0414\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0435 diff --git a/core/src/main/resources/hudson/tools/ToolInstallation/global_it.properties b/core/src/main/resources/hudson/tools/ToolInstallation/global_it.properties index be121007ec769174a2697810649d08da197fe0fe..b9ee28a825bf4c3adb22d85281643b6a82915014 100644 --- a/core/src/main/resources/hudson/tools/ToolInstallation/global_it.properties +++ b/core/src/main/resources/hudson/tools/ToolInstallation/global_it.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -description=Lista delle {0} installazioni su questo sistema +description=Lista delle installazioni {0} su questo sistema label.add=Aggiungi {0} label.delete=Rimuovi {0} title={0} installazioni diff --git a/core/src/main/resources/hudson/tools/ToolInstallation/global_sr.properties b/core/src/main/resources/hudson/tools/ToolInstallation/global_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..29ed2bdfe933b09d45e961cfc95a619a8eb5813e --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolInstallation/global_sr.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +title={0} \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0435 +description=\u0421\u043F\u0438\u0441\u0430\u043A {0} \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430 \u043D\u0430 \u043E\u0432\u043E\u043C \u0441\u0438\u0441\u0442\u0435\u043C\u0443 +label.add=\u0414\u043E\u0434\u0430\u0458 {0} +label.delete=\u0423\u043A\u043B\u043E\u043D\u0438 {0} diff --git a/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_sr.properties b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..75b78b9087645bed789acb2668c963df21d1dc9d --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +List\ of\ tool\ locations=\u0421\u043F\u0438\u0441\u0430\u043A \u043B\u043E\u043A\u0430\u0446\u0438\u0458\u0435 \u0430\u043B\u0430\u0442\u0430 +Name=\u0418\u043C\u0435 +Home=\u0413\u043B\u0430\u0432\u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0430 diff --git a/core/src/main/resources/hudson/tools/ZipExtractionInstaller/config_sr.properties b/core/src/main/resources/hudson/tools/ZipExtractionInstaller/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..5e571ab0d946787af58e4f3b7035628508e1c46a --- /dev/null +++ b/core/src/main/resources/hudson/tools/ZipExtractionInstaller/config_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Download\ URL\ for\ binary\ archive=URL-\u0430\u0434\u0440\u0435\u0441\u0430 \u0437\u0430 \u043F\u0440\u0435\u0443\u0437\u0438\u043C\u0430\u045A\u0435 \u0430\u0440\u0445\u0438\u0432\u0443 +Subdirectory\ of\ extracted\ archive=\u041F\u043E\u0434\u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C \u0440\u0430\u0441\u043F\u0430\u043A\u043E\u0432\u0430\u043D\u0435 \u0430\u0440\u0445\u0438\u0432\u0435 diff --git a/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-subdir_zh_CN.html b/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-subdir_zh_CN.html index 078d18a7e51b843844159b2558cac40f421b56fe..2bd6d150d189bea6d3026a451a0ff3590b3218a1 100644 --- a/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-subdir_zh_CN.html +++ b/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-subdir_zh_CN.html @@ -1,3 +1,3 @@ -
      - 可选子目录,用来放置下载文件和解压文件的目录。 -
      +
      + 可选子目录,用来放置下载文件和解压文件的目录。 +
      diff --git a/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url.html b/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url.html index d6934a776ffd875c6f4ccef6a768b6e90dc0692f..9637265029d9721bcb0bde1e6ebd32b149bcf31e 100644 --- a/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url.html +++ b/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url.html @@ -3,5 +3,5 @@ Should be either a ZIP or a GZip-compressed TAR file. The timestamp on the server will be compared to the local version (if any) so you can publish updates easily. - The URL must be accessible from the Jenkins master but need not be accessible from slaves. + The URL must be accessible from the Jenkins master but need not be accessible from agents. diff --git a/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url_de.html b/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url_de.html deleted file mode 100644 index 40c7f1ed63207eba085c9aebf7b374f4cea63eb9..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url_de.html +++ /dev/null @@ -1,12 +0,0 @@ -
      - URL, von der das Hilfsprogramm als binäres Archiv heruntergeladen werden kann. - Es werden ZIP- und GZIP-komprimierte TAR-Archive unterstützt. - -

      - Der Zeitstempel des Archivs auf dem Server wird mit der lokal installierten Version - (soweit vorhanden) verglichen, so daß Updates einfach veröffentlicht werden können. - -

      - Die URL muß vom Jenkins-Master aus erreichbar sein, nicht aber von jedem einzelnen - Slave-Knoten. -

      diff --git a/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url_zh_CN.html b/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url_zh_CN.html index f7c2dfcbfc582dcdf8d528a6c7566283671fadff..1f1fe1d8c0db170c558237e24f4743da66b41d88 100644 --- a/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url_zh_CN.html +++ b/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url_zh_CN.html @@ -1,5 +1,5 @@ -
      - 从URL下载的工具包(二进制)应该是一个ZIP文件或者GZip压缩过的TAR文件. - 服务器上的时间戳会比对本地版本(如果有的话),所以你可以轻松的发布升级. - URL必须从Jenkins的主节点访问,但是不需要从子节点访问. -
      +
      + 从URL下载的工具包(二进制)应该是一个ZIP文件或者GZip压缩过的TAR文件. + 服务器上的时间戳会比对本地版本(如果有的话),所以你可以轻松的发布升级. + URL必须从Jenkins的主节点访问,但是不需要从子节点访问. +
      diff --git a/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url_zh_TW.html b/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url_zh_TW.html deleted file mode 100644 index 06a1b92db6ad7700c66f032bc6a14ea5c92a8647..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url_zh_TW.html +++ /dev/null @@ -1,6 +0,0 @@ -
      - 可以下載工具壓縮檔的 URL。 - 只支援 ZIP 或是 GZip 壓縮過的 TAR 檔。 - 伺服器上的檔案時間會跟本地版本 (如果有的話) 比較,所以您可以很輕鬆的發佈更新。 - URL 要能從 Jenkins Master 連到,不過 Slave 連不到也沒關係。 -
      diff --git a/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help_zh_CN.html b/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help_zh_CN.html index 07d98d5b0dc8225c8886d15f3b68f36f879d9e58..a8a451caf2ae0283fd820142f7acf248c82e5902 100644 --- a/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help_zh_CN.html +++ b/core/src/main/resources/hudson/tools/ZipExtractionInstaller/help_zh_CN.html @@ -1,6 +1,6 @@ -
      - 下载工具包并安装在Jenkins下的工作目录中. - 例如:http://apache.promopeddler.com/ant/binaries/apache-ant-1.7.1-bin.zip - (选择离你最近的镜像服务器) - 并指定一个子目录apache-ant-1.7.1. -
      +
      + 下载工具包并安装在Jenkins下的工作目录中. + 例如:http://apache.promopeddler.com/ant/binaries/apache-ant-1.7.1-bin.zip + (选择离你最近的镜像服务器) + 并指定一个子目录apache-ant-1.7.1. +
      diff --git a/core/src/main/resources/hudson/tools/label.jelly b/core/src/main/resources/hudson/tools/label.jelly index 83d70f14ed068e7023b9224efb7292628a0b36f9..1ec52e77192ec4097fba9d3362e868f5000c991d 100644 --- a/core/src/main/resources/hudson/tools/label.jelly +++ b/core/src/main/resources/hudson/tools/label.jelly @@ -25,7 +25,7 @@ THE SOFTWARE. Puts the input field for allowing an user to limit this installer to a certain label. - Meant to be used from config.jelly of ToolInstaller subypes. + Meant to be used from config.jelly of ToolInstaller subtypes. diff --git a/core/src/main/resources/hudson/tools/label_bg.properties b/core/src/main/resources/hudson/tools/label_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..4e5c521f335599c7a57fbdd49b3b4eaafa9c3189 --- /dev/null +++ b/core/src/main/resources/hudson/tools/label_bg.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Label=\ + \u0415\u0442\u0438\u043a\u0435\u0442 diff --git a/core/src/main/resources/hudson/tools/label_sr.properties b/core/src/main/resources/hudson/tools/label_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..33f28373715a29a2ea7637dd0d3f67422d43f7b4 --- /dev/null +++ b/core/src/main/resources/hudson/tools/label_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Label=\u041B\u0430\u0431\u0435\u043B\u0430 diff --git a/core/src/main/resources/hudson/triggers/Messages.properties b/core/src/main/resources/hudson/triggers/Messages.properties index b883be434fbc5c8eef51c597d8dfe9cfd07367ca..3b6e1a42538040d126e45df2caaa1b407f446dce 100644 --- a/core/src/main/resources/hudson/triggers/Messages.properties +++ b/core/src/main/resources/hudson/triggers/Messages.properties @@ -23,10 +23,15 @@ SCMTrigger.DisplayName=Poll SCM SCMTrigger.getDisplayName={0} Polling Log SCMTrigger.BuildAction.DisplayName=Polling Log +SCMTrigger.no_schedules_no_hooks=Post commit hooks are being ignored and no schedules so will never run due to SCM changes +SCMTrigger.no_schedules_hooks=No schedules so will only run due to SCM changes if triggered by a post-commit hook SCMTrigger.SCMTriggerCause.ShortDescription=Started by an SCM change TimerTrigger.DisplayName=Build periodically TimerTrigger.MissingWhitespace=You appear to be missing whitespace between * and *. TimerTrigger.no_schedules_so_will_never_run=No schedules so will never run TimerTrigger.TimerTriggerCause.ShortDescription=Started by timer TimerTrigger.would_last_have_run_at_would_next_run_at=Would last have run at {0}; would next run at {1}. +TimerTrigger.the_specified_cron_tab_is_rare_or_impossible=This schedule will match dates only rarely (e.g. February 29) or \ + never (e.g. June 31), so this job may be triggered very rarely, if at all. Trigger.init=Initializing timer for triggers +SCMTrigger.AdministrativeMonitorImpl.DisplayName=Too Many SCM Polling Threads diff --git a/core/src/main/resources/hudson/triggers/Messages_bg.properties b/core/src/main/resources/hudson/triggers/Messages_bg.properties index 676b066393b287f0e833b8faadecd8ae38e25808..cc701ff73deb692c791b40437b3d8a9193f774a5 100644 --- a/core/src/main/resources/hudson/triggers/Messages_bg.properties +++ b/core/src/main/resources/hudson/triggers/Messages_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Bulgarian translation copyright 2015 Alexander Shopov . +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -32,11 +32,11 @@ TimerTrigger.DisplayName=\ \u041f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 TimerTrigger.MissingWhitespace=\ \u041b\u0438\u043f\u0441\u0432\u0430 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b \u043c\u0435\u0436\u0434\u0443 \u0434\u0432\u0430\u0442\u0430 \u0437\u043d\u0430\u043a\u0430 \u201e*\u201c. -TimerTrigger.no_schedules_so_will_never_ru\u00a7n=\ - \u041d\u044f\u043c\u0430 \u043f\u043b\u0430\u043d \u0437\u0430 \u0438\u0437\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u0435, \u043d\u0438\u0449\u043e \u043d\u044f\u043c\u0430 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u044a\u043b\u043d\u0438. TimerTrigger.TimerTriggerCause.ShortDescription=\ \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d \u043e\u0442 \u0445\u0440\u043e\u043d\u043e\u043c\u0435\u0442\u044a\u0440 TimerTrigger.would_last_have_run_at_would_next_run_at=\ \u041f\u0440\u0435\u0434\u0438\u0448\u043d\u043e\u0442\u043e \u0438\u0437\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u0435 \u0431\u0438 \u0431\u0438\u043b\u043e \u0432 {0}. \u0421\u043b\u0435\u0434\u0432\u0430\u0449\u043e\u0442\u043e \u0438\u0437\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u0435 \u0441\u043b\u0435\u0434\u0432\u0430 \u0434\u0430 \u0435 \u0432 {1}. Trigger.init=\ \u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0432\u0440\u0435\u043c\u0435\u0442\u043e \u043d\u0430 \u0445\u0440\u043e\u043d\u043e\u043c\u0435\u0442\u0440\u0438\u0442\u0435 +TimerTrigger.no_schedules_so_will_never_run=\ + \u041d\u0438\u043a\u043e\u0433\u0430 \u043d\u044f\u043c\u0430 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u044a\u043b\u043d\u0438, \u0437\u0430\u0449\u043e\u0442\u043e \u043b\u0438\u043f\u0441\u0432\u0430 \u0445\u0440\u043e\u043d\u043e\u043c\u0435\u0442\u044a\u0440. diff --git a/core/src/main/resources/hudson/triggers/Messages_de.properties b/core/src/main/resources/hudson/triggers/Messages_de.properties index 980049540ac745511e7ca08aee59e5dc5b196415..5d1915ba8c8a37c32af0a4ab1ff4fbddded5147d 100644 --- a/core/src/main/resources/hudson/triggers/Messages_de.properties +++ b/core/src/main/resources/hudson/triggers/Messages_de.properties @@ -23,10 +23,14 @@ SCMTrigger.DisplayName=Source Code Management System abfragen SCMTrigger.getDisplayName={0} Abfrage-Protokoll SCMTrigger.BuildAction.DisplayName=Abfrage-Protokoll -SCMTrigger.SCMTriggerCause.ShortDescription=Build wurde durch eine SCM-nderung ausgelst. +SCMTrigger.SCMTriggerCause.ShortDescription=Build wurde durch eine SCM-\u00C4nderung ausgel\u00F6st. TimerTrigger.DisplayName=Builds zeitgesteuert starten TimerTrigger.MissingWhitespace=Es scheinen Leerzeichen zwischen * und * zu fehlen. -TimerTrigger.no_schedules_so_will_never_run=Kein Zeitplan vorhanden, somit wird der Job nie ausgef\u00fchrt werden. -TimerTrigger.TimerTriggerCause.ShortDescription=Build wurde zeitgesteuert ausgelst. -TimerTrigger.would_last_have_run_at_would_next_run_at=Letzter Lauf am {0}; Nchster Lauf am {1}. -Trigger.init=Initialsiere Timer fr Build-Auslser \ No newline at end of file +TimerTrigger.no_schedules_so_will_never_run=Kein Zeitplan vorhanden, somit wird der Job nie ausgef\u00FChrt werden. +TimerTrigger.TimerTriggerCause.ShortDescription=Build wurde zeitgesteuert ausgel\u00F6st. +TimerTrigger.would_last_have_run_at_would_next_run_at=Letzter Lauf am {0}; N\u00E4chster Lauf am {1}. +Trigger.init=Initialisiere Timer f\u00FCr Build-Ausl\u00F6ser +SCMTrigger.no_schedules_no_hooks=Kein Zeitplan und Post-Commit-Benachrichtigungen werden ignoriert, deshalb wird dieses Projekt nie durch SCM-\u00C4nderungen gestartet werden. +SCMTrigger.no_schedules_hooks=Kein Zeitplan, deshalb kann dieses Projekt durch SCM-\u00C4nderungen nur mittels Post-Commit-Benachrichtigungen gestartet werden. +SCMTrigger.AdministrativeMonitorImpl.DisplayName=Zu viele SCM-Polling-Threads +TimerTrigger.the_specified_cron_tab_is_rare_or_impossible=Dieser Zeitplan wird das Projekt nur sehr selten (z.b. 29.2.) oder nie (z.B. 31.6.) starten. diff --git a/core/src/main/resources/hudson/model/Computer/_script_tr.properties b/core/src/main/resources/hudson/triggers/Messages_pl.properties similarity index 54% rename from core/src/main/resources/hudson/model/Computer/_script_tr.properties rename to core/src/main/resources/hudson/triggers/Messages_pl.properties index 710d98527e40e91cc12ed5b9cef2898ef20fb9bc..68191b91ca6f26464ac4d9133e9c741ab6582fd0 100644 --- a/core/src/main/resources/hudson/model/Computer/_script_tr.properties +++ b/core/src/main/resources/hudson/triggers/Messages_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag +# Copyright (c) 2016, Damian Szczepanik # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -19,5 +19,14 @@ # 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. - -This\ execution\ happens\ in\ the\ slave\ agent\ JVM.=Bu \u00e7al\u0131\u015fma slave ajan\u0131n\u0131n JVM''i \u00fczerinde yap\u0131lmaktad\u0131r. +SCMTrigger.DisplayName=Pobierz z repozytorium kodu +SCMTrigger.getDisplayName={0} Rejestr pobrania z repozytorium kodu +SCMTrigger.BuildAction.DisplayName=Rejestr pobrania z repozytorium kodu +SCMTrigger.SCMTriggerCause.ShortDescription=Uruchomione przez zmian\u0119 w repozytorium kodu +TimerTrigger.DisplayName=Buduj cyklicznie +TimerTrigger.MissingWhitespace=Wygl\u0105da, \u017Ce brakuje odst\u0119pu mi\u0119dzy * a *. +TimerTrigger.no_schedules_so_will_never_run=Brak harmonogramu, wi\u0119c nie zostanie nigdy uruchomiony +TimerTrigger.TimerTriggerCause.ShortDescription=Uruchomione przez zegar +TimerTrigger.would_last_have_run_at_would_next_run_at=Ostatnio uruchomione o {0}; kolejne uruchomienie o {1}. +Trigger.init=Inicjalizowanie zegara dla wyzwalaczy +SCMTrigger.AdministrativeMonitorImpl.DisplayName=Zbyt wiele w\u0105tk\u00F3w repozytorium kodu diff --git a/core/src/main/resources/hudson/triggers/Messages_ru.properties b/core/src/main/resources/hudson/triggers/Messages_ru.properties index af16907aa59b9fbd4e4153126ae83517f26694d8..6a9f38a647c482f7f8c6d09cadcd72abe7852ab4 100644 --- a/core/src/main/resources/hudson/triggers/Messages_ru.properties +++ b/core/src/main/resources/hudson/triggers/Messages_ru.properties @@ -1,24 +1,13 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - +SCMTrigger.AdministrativeMonitorImpl.DisplayName=\u0421\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u043f\u043e\u0442\u043e\u043a\u043e\u0432 \u043e\u043f\u0440\u043e\u0441\u0430 SCM +SCMTrigger.BuildAction.DisplayName=\u041b\u043e\u0433 \u043e\u043f\u0440\u043e\u0441\u0430 SCMTrigger.DisplayName=\u041e\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u0442\u044c SCM \u043e\u0431 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f\u0445 -TimerTrigger.DisplayName=\u0421\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u0435\u0441\u043a\u0438 \ No newline at end of file +SCMTrigger.SCMTriggerCause.ShortDescription=\u0417\u0430\u043f\u0443\u0449\u0435\u043d \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435\u043c \u0432 SCM +SCMTrigger.getDisplayName=\u041b\u043e\u0433 \u043e\u043f\u0440\u043e\u0441\u0430 {0} + +TimerTrigger.DisplayName=\u0417\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u0435\u0441\u043a\u0438 +TimerTrigger.MissingWhitespace=\u041f\u043e\u0445\u043e\u0436\u0435, \u043d\u0435 \u0445\u0432\u0430\u0442\u0430\u0435\u0442 \u043f\u0440\u043e\u0431\u0435\u043b\u0430 \u043c\u0435\u0436\u0434\u0443 * \u0438 *. +TimerTrigger.TimerTriggerCause.ShortDescription=\u0417\u0430\u043f\u0443\u0449\u0435\u043d \u043f\u043e \u0442\u0430\u0439\u043c\u0435\u0440\u0443 +TimerTrigger.no_schedules_so_will_never_run=\u041d\u0435\u0442 \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0437\u0430\u043f\u0443\u0441\u043a\u043e\u0432 +TimerTrigger.would_last_have_run_at_would_next_run_at=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0437\u0430\u043f\u0443\u0441\u043a: {0}; \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0437\u0430\u043f\u0443\u0441\u043a: {1}. + +Trigger.init=\u0418\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u0442\u0430\u0439\u043c\u0435\u0440\u0430 \u0434\u043b\u044f \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u043e\u0432 diff --git a/core/src/main/resources/hudson/triggers/Messages_sr.properties b/core/src/main/resources/hudson/triggers/Messages_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..bae7a834ffdf1c7e5e670c9fd98fdee0d5d2c8ca --- /dev/null +++ b/core/src/main/resources/hudson/triggers/Messages_sr.properties @@ -0,0 +1,12 @@ +# This file is under the MIT License by authors + +SCMTrigger.DisplayName=\u0410\u043D\u043A\u0435\u0442\u0438\u0440\u0430\u0458 \u0441\u0438\u0441\u0442\u0435\u043C \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 \u0438\u0437\u0432\u043E\u0440\u043D\u043E\u0433 \u043A\u043E\u0434\u0430 +SCMTrigger.getDisplayName=\u0416\u0443\u0440\u043D\u0430\u043B \u0430\u043D\u043A\u0435\u0442\u0438\u0440\u0430\u045A\u0430 {0} +SCMTrigger.BuildAction.DisplayName=\u0416\u0443\u0440\u043D\u0430\u043B \u0430\u043D\u043A\u0435\u0442\u0438\u0440\u0430\u045A\u0430 +SCMTrigger.SCMTriggerCause.ShortDescription=\u041F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u043E \u043D\u0430\u043A\u043E\u043D \u043F\u0440\u043E\u043C\u0435\u043D\u0438 \u0443 \u0441\u0438\u0441\u0442\u0435\u043C\u0443 \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 \u0438\u0437\u0431\u043E\u0440\u043D\u043E\u0433 \u043A\u043E\u0434\u0430 +TimerTrigger.DisplayName=\u041F\u0435\u0440\u0438\u043E\u0434\u0438\u0447\u043D\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 +TimerTrigger.MissingWhitespace=\u0418\u043C\u0430 \u043F\u0440\u0430\u0437\u043D\u043E\u0433 \u043C\u0435\u0441\u0442\u0430 \u0438\u0437\u043C\u0435\u0452\u0443 * \u0437\u043D\u0430\u043A\u043E\u0432\u0430. +TimerTrigger.no_schedules_so_will_never_run=\u041D\u0435\u043C\u0430 \u0440\u0430\u0441\u043F\u043E\u0440\u0435\u0434\u0430, \u043D\u0435\u045B\u0435 \u0441\u0435 \u043D\u0438\u0448\u0442\u0430 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0438 +TimerTrigger.TimerTriggerCause.ShortDescription=\u041F\u043E\u0447\u0435\u0442\u043E \u0448\u0442\u043E\u043F\u0435\u0440\u0438\u0446\u043E\u043C +TimerTrigger.would_last_have_run_at_would_next_run_at=\u041F\u0440\u0435\u0442\u0445\u043E\u0434\u043D\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0431\u0438 \u0431\u0438\u043B\u0430 {0}. \u0421\u043B\u0435\u0434\u0435\u045B\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0431\u0438 \u0441\u043B\u0435\u0434\u0435\u043B\u043E {1}. +Trigger.init=\u0421\u0442\u0430\u0440\u0442\u043E\u0432\u0430\u045A\u0435 \u0448\u0442\u043E\u043F\u0435\u0440\u0438\u0446\u0435 \ No newline at end of file diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message.jelly b/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message.jelly index 462f3cd455f0289025c30a401d88fb887c8738df..cb63cf539b7266dcfa06427983ee5edad642e3b1 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message.jelly +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message.jelly @@ -24,5 +24,5 @@ THE SOFTWARE.
      - ${%blurb} + ${%blurb(rootURL)}
      \ No newline at end of file diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message.properties index a92bb1b0f1632f34bec134e6bc5067a50d9a72e2..408f1cfe1e6751da3b812a16b37eeab1f987dc58 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message.properties +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message.properties @@ -22,5 +22,5 @@ blurb=There are more SCM polling activities scheduled than handled, so \ the threads are not keeping up with the demands. \ - Check if your polling is \ + Check if your polling is \ hanging, and/or increase the number of threads if necessary. diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_da.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_da.properties deleted file mode 100644 index 4b91ae81e285c610e5128c70df8c7d2b65da6d54..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_da.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -blurb=Der er flere kildekodestyrings (SCM) pollinger i k\u00f8 end systemet kan n\u00e5 at h\u00e5ndtere, s\u00e5 \ -tr\u00e5dene kan ikke f\u00f8lge med eftersp\u00f8rgslen. \ diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_de.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_de.properties index 6b641227dc4156b4fb33d90336aa57bcae09d534..cce915419e9e6ebaf3d832b41254ee647590fbb8 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_de.properties +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_de.properties @@ -1,5 +1,5 @@ blurb=\ Es sind mehr SCM-Abfragen geplant als bearbeitet werden knnen. \ - berprfen Sie, ob \ + berprfen Sie, ob \ SCM-Abfragen hngengeblieben sind, und/oder erhhen Sie gegebenenfalls die \ Anzahl an Threads.. diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_es.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_es.properties index 50d4bf0a9db847dd1b7885cd7b71e0d7cd825ccb..4d1985ea751d30f110644653c1a655233978f841 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_es.properties +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_es.properties @@ -22,7 +22,7 @@ blurb=Hay ms peticiones sobre los repositorios en la cola, que en proceso, \ esto puede significar que el numero de hilos (threads) no sea suficiente para la demanda exigida. \ - Comprueba que la cola de peticiones no est \ + Comprueba que la cola de peticiones no est \ colgada, y/o aumenta el numero de hilos (threads) si fuera necesario. diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_ja.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_ja.properties index 1c25dfc04d0d56233767660902a4013124cbcc74..3dd9681894784afab5f2e8fa052e8daa4654e85f 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_ja.properties +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_ja.properties @@ -22,4 +22,4 @@ blurb=\ SCM\u306e\u30dd\u30fc\u30ea\u30f3\u30b0\u304c\u51e6\u7406\u3067\u304d\u308b\u80fd\u529b\u4ee5\u4e0a\u306b\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3055\u308c\u3066\u3044\u308b\u305f\u3081\u3001\u30b9\u30ec\u30c3\u30c9\u304c\u8981\u6c42\u306b\u5bfe\u5fdc\u3067\u304d\u3066\u3044\u307e\u305b\u3093\u3002 \ - \u30dd\u30fc\u30ea\u30f3\u30b0\u304c\u30cf\u30f3\u30b0\u30a2\u30c3\u30d7\u3057\u3066\u3044\u306a\u3044\u304b\u78ba\u8a8d\u3057\u3066\u3001\u5fc5\u8981\u3067\u3042\u308c\u3070\u30b9\u30ec\u30c3\u30c9\u6570\u3092\u5897\u3084\u3057\u3066\u304f\u3060\u3055\u3044\u3002. + \u30dd\u30fc\u30ea\u30f3\u30b0\u304c\u30cf\u30f3\u30b0\u30a2\u30c3\u30d7\u3057\u3066\u3044\u306a\u3044\u304b\u78ba\u8a8d\u3057\u3066\u3001\u5fc5\u8981\u3067\u3042\u308c\u3070\u30b9\u30ec\u30c3\u30c9\u6570\u3092\u5897\u3084\u3057\u3066\u304f\u3060\u3055\u3044\u3002. diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_pt_BR.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_pt_BR.properties index fc3eddddecaa50f50a8351dffc2816f4ba54cbc5..abfbedfc5ade65015b806d8872b39d8af0d0de8b 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_pt_BR.properties +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_pt_BR.properties @@ -24,5 +24,5 @@ # the threads are not keeping up with the demands. \ # Check if your polling is \ # hanging, and/or increase the number of threads if necessary. -blurb=Existem mais atividades de verifica\u00E7\u00E3o de SCM agendadas do que gerenciadas, por isso as threads n\u00E3o est\u00E3o acompanhando as demandas. Verifique se as verifica\u00E7\u00F5es est\u00E3o pendentes e aumente o n\u00FAmero de threads se necess\u00E1rio. +blurb=Existem mais atividades de verifica\u00E7\u00E3o de SCM agendadas do que gerenciadas, por isso as threads n\u00E3o est\u00E3o acompanhando as demandas. Verifique se as verifica\u00E7\u00F5es est\u00E3o pendentes e aumente o n\u00FAmero de threads se necess\u00E1rio. diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_sr.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..8f04dad6a131ac1d3f0e5c2eb1141aa7cc61d7e4 --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +blurb=\u041D\u0435\u043C\u0430 \u0434\u043E\u0432\u043E\u0459\u043D\u043E \u043D\u0438\u0442\u043E\u0432\u0430 \u0437\u0430 \u0442\u0440\u0435\u043D\u0443\u0442\u043D\u0438 \u0431\u0440\u043E\u0458 \u0430\u043D\u043A\u0435\u0442\u0438\u0440\u0430\u045A\u0430 \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u0437\u0430 \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 \u0438\u0437\u0432\u043E\u0440\u043D\u043E\u0433 \u043A\u043E\u0434\u0430.\u041F\u0440\u043E\u0432\u0435\u0440\u0438\u0442\u0435 \u0434\u0430 \u0430\u043D\u043A\u0435\u0442\u0438\u0440\u0430\u045A\u0435 \u043D\u0438\u0458\u0435 \u0438\u0437\u0432\u0438\u0441\u0438\u043B\u043E, \u0438 \u043F\u043E\u0432\u0435\u045B\u0430\u0458\u0442\u0435 \u0432\u0440\u043E\u0458 \u043D\u0438\u0442\u043E\u0432\u0430 \u0430\u043A\u043E \u0458\u0435 \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E. diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_zh_TW.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_zh_TW.properties index 246bc3fbfeaea0fcea41e3cae1d8189d9a9f195a..a94992b95a64343ecff739399d99dcc42bad9ffb 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_zh_TW.properties +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/AdministrativeMonitorImpl/message_zh_TW.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. blurb=\u6392\u5b9a\u7684 SCM \u8f2a\u8a62\u6d3b\u52d5\u6bd4\u88ab\u8655\u7406\u7684\u9084\u8981\u591a\uff0cThread \u6578\u91cf\u8ddf\u4e0d\u4e0a\u9700\u6c42\u91cf\u3002\ - \ + \ \u6aa2\u67e5\u60a8\u7684\u8f2a\u8a62\u4f5c\u696d\u662f\u4e0d\u662f\u5361\u4f4f\u4e86\uff0c\u6216\u8996\u60c5\u6cc1\u589e\u52a0 Thread \u6578\u76ee\u3002 diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_sr.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..f43b5d6be0c928f22a475c8c55944778269a1fd5 --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Polling\ Log=\u0416\u0443\u0440\u043D\u0430\u043B \u0430\u043D\u043A\u0435\u0442\u0438\u0440\u0430\u045A\u0430 +View\ as\ plain\ text=\u041F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458 \u043A\u0430\u043E \u043E\u0431\u0438\u0447\u0430\u043D \u0442\u0435\u043A\u0441\u0442 +blurb=\u041D\u0430 \u043E\u0432\u043E\u0458 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0438 \u0441\u0435 \u043D\u0430\u043B\u0430\u0436\u0438 \u0436\u0443\u0440\u043D\u0430\u043B \u0430\u043D\u043A\u0435\u0442\u0438\u0440\u0430\u045A\u0430 \u043A\u043E\u0458\u0438 \u0458\u0435 \u0438\u0437\u0430\u0437\u0432\u0430\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443. diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/DescriptorImpl/index_sr.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/DescriptorImpl/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..2e80cfed42c3f455444ec0ef29e09c2ac01647e6 --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/DescriptorImpl/index_sr.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Current\ SCM\ Polling\ Activities=\u0422\u0440\u0435\u043D\u0443\u0442\u043D\u043E \u0430\u043D\u043A\u0435\u0442\u0438\u0440\u0430\u045A\u0435 \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 \u0438\u0437\u0432\u043E\u0440\u043D\u043E\u0433 \u043A\u043E\u0434\u0430 +clogged= +No\ polling\ activity\ is\ in\ progress.=\u041D\u0435\u043C\u0430 \u0442\u0435\u043A\u0443\u045B\u0435\u0433 \u0430\u043D\u043A\u0435\u0442\u0438\u0440\u0430\u045A\u0430. +The\ following\ polling\ activities\ are\ currently\ in\ progress\:=\u0422\u0440\u0435\u043D\u0443\u0442\u043D\u043E \u0430\u043D\u043A\u0435\u0442\u0438\u0440\u0430\u045A\u0435: +Project=\u041F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 +Running\ for=\u0423 \u0442\u043E\u043A\u0443 \u043E\u0434 diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_bg.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_bg.properties index 04a00fee1b0277693cac43d72f9c641b343ca43b..c0af5effc4dc8ee926a7034bc929b679129e1c71 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_bg.properties +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_bg.properties @@ -1,4 +1,26 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -Polling\ has\ not\ run\ yet.=\u0410\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u0430\u0442\u0430 \u043F\u0440\u043E\u0432\u0435\u0440\u043A\u0430 \u043D\u0435 \u0435 \u043C\u0438\u043D\u0430\u043B\u0430 \u0432\u0441\u0435 \u043E\u0449\u0435. -title="{0}" +Polling\ has\ not\ run\ yet.=\ + \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u0430\u0442\u0430 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u0432\u0441\u0435 \u043e\u0449\u0435 \u043d\u0435 \u0435 \u043c\u0438\u043d\u0430\u043b\u0430. +title=\ + {0} diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_sr.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..200fb78789e5e90cfc19ccb4e3d5ac428d87c43e --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +title={0} +Polling\ has\ not\ run\ yet.=\u0410\u043D\u043A\u0435\u0442\u0438\u0440\u0430\u045A\u0435 \u043D\u0438\u0458\u0435 \u0458\u043E\u0448 \u0438\u0437\u0432\u0435\u0434\u0435\u043D\u043E diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/config.jelly b/core/src/main/resources/hudson/triggers/SCMTrigger/config.jelly index d9d8f944427587ef8527a7a0f61c2a9688a7c062..5eeba93429e3331b950d85ede036ca41214a6ab4 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/config.jelly +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/config.jelly @@ -25,7 +25,7 @@ THE SOFTWARE. - + diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/config_de.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/config_de.properties index 3bcb3642b736524be4c983bb4b4e7128ee8fafc7..4f94a3d34f0ab188208497e616269aa34e60c25b 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/config_de.properties +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/config_de.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Schedule=Zeitplan +Ignore\ post-commit\ hooks=Post-Commit-Benachrichtigungen ignorieren diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_id.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/config_pl.properties similarity index 94% rename from core/src/main/resources/hudson/views/LastDurationColumn/column_id.properties rename to core/src/main/resources/hudson/triggers/SCMTrigger/config_pl.properties index 5972548e141c524d60fb50918bbd98e6678d0cbb..ce553b93e066d2a952de71fc09c55453699d7e82 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/column_id.properties +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/config_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2016, Damian Szczepanik # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -19,5 +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. - -N/A=N/A +Schedule=Harmonogram diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/config_sr.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..197650f6bc511431da3cd74a5a0e53266f07ab0c --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/config_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Schedule=\u0420\u0430\u0441\u043F\u043E\u0440\u0435\u0434 +Ignore\ post-commit\ hooks=\u0418\u0437\u0433\u043D\u043E\u0440\u0438\u0448\u0438 \u043F\u043E\u0441\u043B\u0435 \u043A\u043E\u043C\u0438\u0442\u043D\u0435 hook-\u043E\u0432\u0435 diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/global_sr.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/global_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..bf10b5aeb8f6e1b313b994c113658a1cd47b0651 --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/global_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +SCM\ Polling=\u0410\u043D\u043A\u0435\u0442\u0438\u0440\u0430\u045A\u0435 \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 \u0438\u0437\u0432\u043E\u0440\u043D\u043E\u0433 \u043A\u043E\u0434\u0430 +Max\ #\ of\ concurrent\ polling=\u041C\u0430\u043A\u0441. \u0431\u0440\u043E\u0458 \u043F\u0430\u0440\u0430\u043B\u0435\u043B\u043D\u043E\u0433 \u0430\u043D\u043A\u0435\u0442\u0438\u0440\u0430\u045A\u0430 diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/help.html b/core/src/main/resources/hudson/triggers/SCMTrigger/help.html index bc1da6300c4f5c9be917a73a2cff23b72736803a..f4243eb26fbcd7d5d3bcfb3ad860a6c9f447f6e5 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/help.html +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/help.html @@ -5,5 +5,5 @@ Note that this is going to be an expensive operation for CVS, as every polling requires Jenkins to scan the entire workspace and verify it with the server. Consider setting up a "push" trigger to avoid this overhead, as described in - this document + this document diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/help_de.html b/core/src/main/resources/hudson/triggers/SCMTrigger/help_de.html index c0bfa8607983cafdc2e4239ef60de48583966ae7..ec159cbc7a9d963ff7580266175c1abdea60203d 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/help_de.html +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/help_de.html @@ -5,8 +5,8 @@

      Bedenken Sie, dass dies für das Versionsverwaltungssystem CVS eine äußerst ressourcenintensive Operation darstellt, da Jenkins bei jeder Abfrage den - kompletten Arbeitsbereich überprüfen und mit dem CVS-Server abgleichen muß. + kompletten Arbeitsbereich überprüfen und mit dem CVS-Server abgleichen muss. Ziehen Sie daher alternativ einen "Push"-Auslöser in Betracht, wie er in - diesem Dokument beschrieben + diesem Dokument beschrieben wird. diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/help_fr.html b/core/src/main/resources/hudson/triggers/SCMTrigger/help_fr.html index e8a9b9c1d2d031d277b1590f84bc7c412575beb0..0804b0992ec91514430669822967d013568feacd 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/help_fr.html +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/help_fr.html @@ -3,10 +3,10 @@ version.

      - Notez que cette opération est consommatrice de ressources pour CVS, + Notez que cette opération est consommatrice de ressources pour le SCM, car chaque scrutation signifie que Jenkins va scanner l'ensemble du workspace et le comparer avec le serveur. Envisagez d'utiliser un trigger de type 'push' pour éviter cette surcharge, comme décrit dans - ce document. + ce document. diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/help_ja.html b/core/src/main/resources/hudson/triggers/SCMTrigger/help_ja.html index 4be674d0a0bee2243d1ae5ca31f24c418cf92ac2..6e94ae93ca9931c9def95731a33b35621d782155 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/help_ja.html +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/help_ja.html @@ -5,6 +5,6 @@ ポーリング毎に、Jenkinsはワークスペースをスキャンしてサーバーと検証する必要があるので、 CVSにとって負荷の高い操作ということに注意してください。 このオーバーヘッドを避けるために、 - このドキュメントにあるように、 + このドキュメントにあるように、 "push"トリガーの設定を検討してください。 diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/help_pt_BR.html b/core/src/main/resources/hudson/triggers/SCMTrigger/help_pt_BR.html index ffbfbca42fdcdd75fd9daa2588cce257e84315b4..9de5639081ada3ba4575da190cacacf42b6dc0dc 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/help_pt_BR.html +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/help_pt_BR.html @@ -5,5 +5,5 @@ Note que isto vai ser uma operação custosa para o CVS, como toda consulta requer que o Jenkins examine o workspace inteiro e verifique-o com o servidor. Considere configurar um disparador de construção periódico ("Construir periodicamente") para evitar esta sobrecarga, como descrito - nesta documentação + nesta documentação diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/help_ru.html b/core/src/main/resources/hudson/triggers/SCMTrigger/help_ru.html index 9b3a4a550f634c711f48bcd82d90c5f4d0ac2592..459ed73f0c0bbca156cfdce36d4a8ae7db046d24 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/help_ru.html +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/help_ru.html @@ -6,5 +6,5 @@ на SCM, так как каждый опрос представляет собой сканирование сборочной директории и сверка содержимого с данными на сервере. Лучшим вариантом будет настройка вашей SCM на инициацию сборки при внесении в неё изменений, как описано - в этом документе. + в этом документе. diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/help_tr.html b/core/src/main/resources/hudson/triggers/SCMTrigger/help_tr.html index a03b8733d05e66e2b84090032fc3cd248e0236a9..f2fb31adf406552863bb196da60832ffb92ce8ea 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/help_tr.html +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/help_tr.html @@ -4,6 +4,6 @@

      Unutmayın, bu işlem CVS için biraz yüklü olacaktır, çünkü her kontrolde Jenkins tüm çalışma alanını tarayacak ve bunu CVS sunucusu ile karşılaştıracaktır. - Bunun yerine bu dokümanda anlatıldığı gibi + Bunun yerine bu dokümanda anlatıldığı gibi "push" tetikleyicisini ayarlayın. diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/help_zh_TW.html b/core/src/main/resources/hudson/triggers/SCMTrigger/help_zh_TW.html index ea6c91cd2d436184cd9771396972cbdcd7e68868..75edc639e210260950592fae3185a756455d6812 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/help_zh_TW.html +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/help_zh_TW.html @@ -3,6 +3,6 @@

      請注意,這對 CVS 而言代價很高,每次輪詢 Jenkins 都要掃描整個工作區,並與伺服器比對。 - 建議參考這份文件設定 + 建議參考這份文件設定 "push" 觸發程序,避免額外負擔。 diff --git a/core/src/main/resources/hudson/triggers/TimerTrigger/config_pl.properties b/core/src/main/resources/hudson/triggers/TimerTrigger/config_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..ce553b93e066d2a952de71fc09c55453699d7e82 --- /dev/null +++ b/core/src/main/resources/hudson/triggers/TimerTrigger/config_pl.properties @@ -0,0 +1,22 @@ +# The MIT License +# +# Copyright (c) 2016, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. +Schedule=Harmonogram diff --git a/core/src/main/resources/hudson/triggers/TimerTrigger/config_sr.properties b/core/src/main/resources/hudson/triggers/TimerTrigger/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..04f58629e45cdf8407174d4a27da32c5ff2e0ec1 --- /dev/null +++ b/core/src/main/resources/hudson/triggers/TimerTrigger/config_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Schedule=\u0420\u0430\u0441\u043F\u043E\u0440\u0435\u0434 diff --git a/core/src/main/resources/hudson/triggers/TimerTrigger/help-spec.html b/core/src/main/resources/hudson/triggers/TimerTrigger/help-spec.jelly similarity index 70% rename from core/src/main/resources/hudson/triggers/TimerTrigger/help-spec.html rename to core/src/main/resources/hudson/triggers/TimerTrigger/help-spec.jelly index 4ce69c94b967bc3055369d7a2929e3192164d259..5acdecd0f09faa58149da43a1fa7ebd23d34c708 100644 --- a/core/src/main/resources/hudson/triggers/TimerTrigger/help-spec.html +++ b/core/src/main/resources/hudson/triggers/TimerTrigger/help-spec.jelly @@ -1,3 +1,5 @@ + +

      This field follows the syntax of cron (with minor differences). Specifically, each line consists of 5 fields separated by TAB or whitespace: @@ -73,9 +75,40 @@ H/15 * * * * # every ten minutes in the first half of every hour (three times, perhaps at :04, :14, :24) H(0-29)/10 * * * * -# once every two hours every weekday (perhaps at 10:38 AM, 12:38 PM, 2:38 PM, 4:38 PM) -H 9-16/2 * * 1-5 +# once every two hours at 45 minutes past the hour starting at 9:45 AM and finishing at 3:45 PM every weekday. +45 9-16/2 * * 1-5 +# once in every two hours slot between 9 AM and 5 PM every weekday (perhaps at 10:38 AM, 12:38 PM, 2:38 PM, 4:38 PM) +H H(9-16)/2 * * 1-5 # once a day on the 1st and 15th of every month except December H H 1,15 1-11 * +

      Time zone specification

      + +

      + Periodic tasks are normally executed at the scheduled time in the time zone of + the Jenkins master JVM (currently ${currentTimeZone.getID()}). + This behavior can optionally be changed by specifying an alternative time zone in the + first line of the field. + Time zone specification starts with TZ=, followed by the ID of a time zone. +

      +

      + Complete example of a schedule with a time zone specification: +

      +
      +    TZ=Europe/London
      +    # This job needs to be run in the morning, London time
      +    H 8 * * *
      +    # Butlers do not have a five o'clock, so we run the job again
      +    H(0-30) 17 * * *
      +  
      +

      + The supported time zones depend on the Java runtime Jenkins is running on. The list of supported time zone IDs on this instance is: +

      + +
        + +
      • ${timeZone}
      • +
        +
      +
      \ No newline at end of file diff --git a/core/src/main/resources/hudson/triggers/TimerTrigger/help.html b/core/src/main/resources/hudson/triggers/TimerTrigger/help.html index 2317422c3105686803f0741782071291f5113687..2cfdb20b5c4480dbf0d70e0e30cbe9d9d9cc0c11 100644 --- a/core/src/main/resources/hudson/triggers/TimerTrigger/help.html +++ b/core/src/main/resources/hudson/triggers/TimerTrigger/help.html @@ -11,7 +11,7 @@ this feature. However, the point of continuous integration is to start a build as soon as a change is made, to provide a quick feedback to the change. To do that you need to - hook up SCM change notification to Jenkins. + hook up SCM change notification to Jenkins.

      So, before using this feature, stop and ask yourself if this is really what you want. diff --git a/core/src/main/resources/hudson/triggers/TimerTrigger/help_de.html b/core/src/main/resources/hudson/triggers/TimerTrigger/help_de.html index 24e6c7f2335182a81c356e321610139f384a4181..446b3928a27a6a20a41afc9bee3f2faafef89cb2 100644 --- a/core/src/main/resources/hudson/triggers/TimerTrigger/help_de.html +++ b/core/src/main/resources/hudson/triggers/TimerTrigger/help_de.html @@ -12,7 +12,7 @@ kontinuierlichen Integration liegt jedoch darin, einen neuen Build zu starten, sobald eine Änderung im Code vorgenommen wurde, um möglichst schnell eine Rückmeldung zu bekommen. Dazu müssen sie eine - Änderungsabfrage (SCM change + Änderungsabfrage (SCM change notification) in Jenkins einrichten.

      diff --git a/core/src/main/resources/hudson/triggers/TimerTrigger/help_fr.html b/core/src/main/resources/hudson/triggers/TimerTrigger/help_fr.html index 79a3de804ca3b620335b5dc02db53ca62ffb8ed7..80ae28b35cffbd121832c8283b7d805956ca4708 100644 --- a/core/src/main/resources/hudson/triggers/TimerTrigger/help_fr.html +++ b/core/src/main/resources/hudson/triggers/TimerTrigger/help_fr.html @@ -4,18 +4,18 @@ afin d'exécuter le projet périodiquement.

      - Cette fonction est prévue principalement pour utiliser Jenkins comme un + Cette fonction est prévue principalement pour utiliser Jenkins en remplacement de cron. Elle n'est pas faite pour la construction continue de projets logiciel. Quand quelqu'un débute avec l'intégration continue, il est souvent tellement habitué à l'idée d'un lancement de build toutes les nuits ou toutes les semaines, qu'il préfère utiliser cette fonctionnalité. - Néanmoins, l'intérêt de l'intégration continue est de lancer une build à + Néanmoins, l'intérêt de l'intégration continue est de lancer un build à chaque changement dans la base de code, afin de donner un retour rapide sur ce changement. Pour cela, vous devez - associer la notification des changements de l'outil de gestion de version à Jenkins.. + associer la notification des changements de l'outil de gestion de version à Jenkins..

      Donc, avant d'utiliser cette fonctionnalité, demandez-vous si c'est bien diff --git a/core/src/main/resources/hudson/triggers/TimerTrigger/help_ja.html b/core/src/main/resources/hudson/triggers/TimerTrigger/help_ja.html index f5f5393cff068af81e08c9468e40306940455c83..a11c40031bb7d4b04c794feffecb85652085fc97 100644 --- a/core/src/main/resources/hudson/triggers/TimerTrigger/help_ja.html +++ b/core/src/main/resources/hudson/triggers/TimerTrigger/help_ja.html @@ -10,7 +10,7 @@ この機能を使用します。しかしながら、継続的インテグレーションのポイントは、 変更したらすぐにビルドを開始し、変更へのフィードバックをすばやくすることです。 そうするには、 - SCMの変更通知をJenkinsに中継する必要があります。 + SCMの変更通知をJenkinsに中継する必要があります。

      上記の通り、この機能を使用する前に、この機能が本当にあなたが必要とするものなのか、 diff --git a/core/src/main/resources/hudson/triggers/TimerTrigger/help_pt_BR.html b/core/src/main/resources/hudson/triggers/TimerTrigger/help_pt_BR.html index b83f673b38e8d7b96f241099f50b1afdde8700c6..9c8cc68dba74abc4f624c411840b5f5292897421 100644 --- a/core/src/main/resources/hudson/triggers/TimerTrigger/help_pt_BR.html +++ b/core/src/main/resources/hudson/triggers/TimerTrigger/help_pt_BR.html @@ -11,7 +11,7 @@ usam esta funcionalidade. Porém, o ponto principal da integração contínua é iniciar uma construção tão logo uma mudança seja feita, para fornecer um feedback rápido sobre a mudança. Para fazer isto você precisa - ligar a notificação de mudança do SCM ao Jenkins.. + ligar a notificação de mudança do SCM ao Jenkins..

      Assim, antes de usar esta funcionalidade, pare e pergunte a si mesmo se isto é o que realmente você quer. diff --git a/core/src/main/resources/hudson/triggers/TimerTrigger/help_ru.html b/core/src/main/resources/hudson/triggers/TimerTrigger/help_ru.html index 91c0eb2289fd22be79ade92beb9036ddbbb1c8ba..28e0eece9b8f2e603ab6b62237e2878c8ee892f4 100644 --- a/core/src/main/resources/hudson/triggers/TimerTrigger/help_ru.html +++ b/core/src/main/resources/hudson/triggers/TimerTrigger/help_ru.html @@ -14,7 +14,7 @@ ࠧࠡ��稪��. �⮡� ��������� Jenkins �뫮 ������ ⠪��, ����ன� - �����饭�� �� ��஭� SCM. + �����饭�� �� ��஭� SCM.

      ��������, ��। ⥬ ��� �ᯮ�짮���� ��� �㭪��, ��⠭������ � ���� ᥡ�, diff --git a/core/src/main/resources/hudson/triggers/TimerTrigger/help_tr.html b/core/src/main/resources/hudson/triggers/TimerTrigger/help_tr.html index b8782162b051357ef3816d55826d7d7de515b5c5..8d257bd71c6777cb65c77493b790890254a79eae 100644 --- a/core/src/main/resources/hudson/triggers/TimerTrigger/help_tr.html +++ b/core/src/main/resources/hudson/triggers/TimerTrigger/help_tr.html @@ -10,7 +10,7 @@ planlanabilir. Bu özellik de bu amaç için kullanılabilse de, sürekli entegrasyonun asıl noktasının herhangi bir değişiklik olur olmaz yapılandırmanın başlatılması olduğu ve bu değişikliğe ait geri bildirimin çabucak verilmesi gerektiği unutulmamalıdır. - Bunun için SCM değişikliklerini Jenkins'a bildirecek mekanizmanın + Bunun için SCM değişikliklerini Jenkins'a bildirecek mekanizmanın ayarlanması gerekir.

      Yani, bu özelliği kullanmadan önce yapmak istediğinizin bu yöntem ile mi yapılması gerektiğini sorgulayın. diff --git a/core/src/main/resources/hudson/triggers/TimerTrigger/help_zh_TW.html b/core/src/main/resources/hudson/triggers/TimerTrigger/help_zh_TW.html index 806fefbadd2d3362e2219587852cd54db351b9eb..0809ad1abb342b3f15fe1fa1855748ef162cffbc 100644 --- a/core/src/main/resources/hudson/triggers/TimerTrigger/help_zh_TW.html +++ b/core/src/main/resources/hudson/triggers/TimerTrigger/help_zh_TW.html @@ -6,7 +6,7 @@ 大家第一次接觸持續整合 (Continuous Integration; CI) 時,常會有 Nightly 或 Weekly 建置的刻板印象,認為就該用這個功能為建置挑個良辰吉時。 但是,CI 的中心思想是個仁...不是啦,CI 的中心思想是在異動後盡快建置,讓大家馬上就能知道這次變更所造成的影響。 - 要達到這個目的,可以讓 SCM 在異動後主動通知 Jenkins。 + 要達到這個目的,可以讓 SCM 在異動後主動通知 Jenkins

      所以,在使用這個功能前,先停下來問問自己: 「我到底想要幹嘛?」 diff --git a/core/src/main/resources/hudson/util/AWTProblem/index.jelly b/core/src/main/resources/hudson/util/AWTProblem/index.jelly index c5acf32c36df703099d7d654a87208063ccc02b7..ec8df8e3292a309d6c52e778b26f634c2769a70b 100644 --- a/core/src/main/resources/hudson/util/AWTProblem/index.jelly +++ b/core/src/main/resources/hudson/util/AWTProblem/index.jelly @@ -24,6 +24,7 @@ THE SOFTWARE. + diff --git a/core/src/main/resources/hudson/util/AWTProblem/index.properties b/core/src/main/resources/hudson/util/AWTProblem/index.properties index af43e1ac98b62105f50a66bdadae7ffa7b1fa33e..817ba2c967c4dd57cd1133df7d21e7ecb8fada4b 100644 --- a/core/src/main/resources/hudson/util/AWTProblem/index.properties +++ b/core/src/main/resources/hudson/util/AWTProblem/index.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -errorMessage=AWT is not properly configured on this server. Perhaps you need to run your container with "-Djava.awt.headless=true"? See also: https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+got+java.awt.headless+problem +errorMessage=AWT is not properly configured on this server. Perhaps you need to run your container with "-Djava.awt.headless=true"? See also: https://jenkins.io/redirect/troubleshooting/java.awt.headless diff --git a/core/src/main/resources/hudson/util/AWTProblem/index_de.properties b/core/src/main/resources/hudson/util/AWTProblem/index_de.properties index 3a1957a76013d0f4904889c5df361e511d09a62b..250307f6ba2aef08a02cde474421a66f15e6e709 100644 --- a/core/src/main/resources/hudson/util/AWTProblem/index_de.properties +++ b/core/src/main/resources/hudson/util/AWTProblem/index_de.properties @@ -1,4 +1,4 @@ Error=Fehler errorMessage=\ AWT ist auf diesem Server nicht vollstndig konfiguriert. Eventuell \ - sollten Sie Ihren Server-Container mit der Option "-Djava.awt.headless=true" starten. + sollten Sie Ihren Servlet-Container mit der Option -Djava.awt.headless=true starten. diff --git a/core/src/main/resources/hudson/util/AWTProblem/index_sr.properties b/core/src/main/resources/hudson/util/AWTProblem/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..41e88a682a4399a701591b711b96be91c23b5a7d --- /dev/null +++ b/core/src/main/resources/hudson/util/AWTProblem/index_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Error=\u0413\u0440\u0435\u0448\u043A\u0430 +errorMessage=AWT \u043D\u0438\u0458\u0435 \u043F\u0440\u0430\u0432\u0438\u043B\u043D\u043E \u043F\u043E\u0441\u0442\u0430\u0432\u0459\u0435\u043D\u043E \u043D\u0430 \u043E\u0432\u043E\u0458 \u043C\u0430\u0448\u0438\u043D\u0438. \u041C\u043E\u0436\u0434\u0430 \u0431\u0438 \u0442\u0440\u0435\u0431\u0430\u043B\u0438 \u043F\u043E\u0447\u0435\u0442\u0438 \u043A\u043E\u043D\u0442\u0435\u0458\u043D\u0435\u0440\u0435 \u0441\u0430 \u043E\u043F\u0446\u0438\u0458\u043E\u043C "-Djava.awt.headless=true"? \u0418\u0441\u0442\u043E \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435: https://jenkins.io/redirect/troubleshooting/java.awt.headless diff --git a/core/src/main/resources/hudson/util/AdministrativeError/message.jelly b/core/src/main/resources/hudson/util/AdministrativeError/message.jelly index bb30dc1ee7fc93a7b085ef794a744d6aa0d138b7..3b48c00afbd3035e3b57cc95d5ec44891d7c13f4 100644 --- a/core/src/main/resources/hudson/util/AdministrativeError/message.jelly +++ b/core/src/main/resources/hudson/util/AdministrativeError/message.jelly @@ -26,6 +26,6 @@ THE SOFTWARE.

      \ No newline at end of file diff --git a/core/src/main/resources/hudson/util/AdministrativeError/message_de.properties b/core/src/main/resources/hudson/util/AdministrativeError/message_de.properties index 2b27281eccf0e97dc49f8da3b77e60e70554443e..c216359fe65298792a8b172e9b554aedd2777e96 100644 --- a/core/src/main/resources/hudson/util/AdministrativeError/message_de.properties +++ b/core/src/main/resources/hudson/util/AdministrativeError/message_de.properties @@ -1,23 +1,23 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + See\ the\ log\ for\ more\ details=Im Protokoll knnen weitere Hinweise stehen. \ No newline at end of file diff --git a/core/src/main/resources/hudson/util/AdministrativeError/message_sr.properties b/core/src/main/resources/hudson/util/AdministrativeError/message_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..7b02204db79c0ef5191c339e392f9b2bbed698c7 --- /dev/null +++ b/core/src/main/resources/hudson/util/AdministrativeError/message_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +See\ the\ log\ for\ more\ details=\u041F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 \u0436\u0443\u0440\u043D\u0430\u043B \u0437\u0430 \u0458\u043E\u0448 \u0434\u0435\u0442\u0430\u0459\u0430 diff --git a/core/src/main/resources/hudson/util/DoubleLaunchChecker/index.jelly b/core/src/main/resources/hudson/util/DoubleLaunchChecker/index.jelly index d126380218e4129fde7afb300744b7d0cc7ca54c..cfbbda0abd35915aeb50924c83ddd625b3406655 100644 --- a/core/src/main/resources/hudson/util/DoubleLaunchChecker/index.jelly +++ b/core/src/main/resources/hudson/util/DoubleLaunchChecker/index.jelly @@ -45,7 +45,7 @@ THE SOFTWARE.
    -
    +
    diff --git a/core/src/main/resources/hudson/util/DoubleLaunchChecker/index_de.properties b/core/src/main/resources/hudson/util/DoubleLaunchChecker/index_de.properties index 4a7568ddc7dee9758666a5be974c3cab9df315dc..101a741fe95d704e4c354b62823fe58dd36d4916 100644 --- a/core/src/main/resources/hudson/util/DoubleLaunchChecker/index_de.properties +++ b/core/src/main/resources/hudson/util/DoubleLaunchChecker/index_de.properties @@ -22,9 +22,9 @@ Error=Fehler message=\ - Jenkins hat festgestellt, da mehr als eine Instanz von Jenkins mit dem \ - gleichen Jenkins Home-Verzeichnis ''{0}'' zu laufen scheinen. \ - Dies verwirrt Jenkins und wird sehr wahrscheinlich zu merkwrdigem Verhalten fhren. \ + Jenkins hat festgestellt, dass mehr als eine Instanz von Jenkins mit dem \ + gleichen Jenkins Home-Verzeichnis \u201E{0}\u201C zu laufen scheinen. \ + Dies verwirrt Jenkins und wird sehr wahrscheinlich zu merkw\u00FCrdigem Verhalten f\u00FChren. \ Bitte beheben Sie diese Situation. This\ Jenkins=Diese Jenkins-Instanz Other\ Jenkins=Die andere Jenkins-Instanz diff --git a/core/src/main/resources/hudson/util/DoubleLaunchChecker/index_sr.properties b/core/src/main/resources/hudson/util/DoubleLaunchChecker/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..d250950537cae703f6ee1bb9b51e1cba86a6225f --- /dev/null +++ b/core/src/main/resources/hudson/util/DoubleLaunchChecker/index_sr.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Error=\u0413\u0440\u0435\u0448\u043A\u0430 +message=Jenkins \u0458\u0435 \u043E\u0442\u043A\u0440\u0438\u043E \u0434\u0430 \u0441\u0442\u0435 \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u043B\u0438 \u0432\u0438\u0448\u0435 \u0438\u043D\u0441\u0442\u0430\u043D\u0446\u0430 Jenkins-\u0430 \u043A\u043E\u0458\u0435 \u0434\u0435\u043B\u0435 \u0438\u0441\u0442\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C "{0}". \u0414\u0430 \u043D\u0435\u0431\u0438 \u0431\u0438\u043B\u043E \u0447\u0443\u0434\u043D\u043E\u0433 \u043F\u043E\u043D\u0430\u0448\u0430\u045A\u0430 Jenkins-\u0430 \u0438\u0441\u043F\u0440\u0430\u0432\u0438\u0442\u0435 \u043F\u0440\u043E\u0431\u043B\u0435\u043C \u043E\u0434\u043C\u0430\u0445. +This\ Jenkins=\u041E\u0432\u0430\u0458 Jenkins +Other\ Jenkins=\u0414\u0440\u0443\u0433\u0438 Jenkins +label=\u0418\u0437\u0433\u043D\u043E\u0440\u0438\u0448\u0438 \u043F\u0440\u043E\u0431\u043B\u0435\u043C \u0438 \u043D\u0430\u0441\u0442\u0430\u0432\u0438 \u043A\u043E\u0440\u0438\u0448\u045B\u0435\u045A\u0435\u043C Jenkins-\u0430. diff --git a/core/src/main/resources/hudson/util/HudsonFailedToLoad/index.jelly b/core/src/main/resources/hudson/util/HudsonFailedToLoad/index.jelly index a69eb1d4db749e636d0d261424ab559e288fa77a..3c868da831464a1eee1f2fa58847056419f06694 100644 --- a/core/src/main/resources/hudson/util/HudsonFailedToLoad/index.jelly +++ b/core/src/main/resources/hudson/util/HudsonFailedToLoad/index.jelly @@ -24,6 +24,7 @@ THE SOFTWARE. + diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_eu.properties b/core/src/main/resources/hudson/util/HudsonFailedToLoad/index_pl.properties similarity index 93% rename from core/src/main/resources/hudson/security/SecurityRealm/loginLink_eu.properties rename to core/src/main/resources/hudson/util/HudsonFailedToLoad/index_pl.properties index 59fe83ec094efa6521cf1c01f5ce01c851d2ca48..b7180e6120de4f850bd646a8cc10357e2c64ed1e 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_eu.properties +++ b/core/src/main/resources/hudson/util/HudsonFailedToLoad/index_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2017, Damian Szczepanik # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -19,5 +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. - -login=sartu +Error=Wyst\u0105pi\u0142 b\u0142\u0105d diff --git a/core/src/main/resources/hudson/util/HudsonFailedToLoad/index_sr.properties b/core/src/main/resources/hudson/util/HudsonFailedToLoad/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..eabbc4121e5d2db79760cfd41634218d6ab3e7e6 --- /dev/null +++ b/core/src/main/resources/hudson/util/HudsonFailedToLoad/index_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Error=\u0413\u0440\u0435\u0448\u043A\u0430 diff --git a/core/src/main/resources/hudson/util/HudsonIsLoading/index_cs.properties b/core/src/main/resources/hudson/util/HudsonIsLoading/index_cs.properties new file mode 100644 index 0000000000000000000000000000000000000000..a81c0e7598561d779dd236490536c745dfcbcf8e --- /dev/null +++ b/core/src/main/resources/hudson/util/HudsonIsLoading/index_cs.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Please\ wait\ while\ Jenkins\ is\ getting\ ready\ to\ work=Po\u010Dkejte pros\u00EDm, ne\u017E aplikace Jenkins zcela nab\u011Bhne +Your\ browser\ will\ reload\ automatically\ when\ Jenkins\ is\ ready.=Jakmile bude Jenkins p\u0159ipraven, str\u00E1nka se automaticky obnov\u00ED. diff --git a/core/src/main/resources/hudson/util/HudsonIsLoading/index_lt.properties b/core/src/main/resources/hudson/util/HudsonIsLoading/index_lt.properties index c8b6f0f5c819e6e7da988613352ce7cb64ced886..2813056a234133de3e593ce2b62074d49c98243a 100644 --- a/core/src/main/resources/hudson/util/HudsonIsLoading/index_lt.properties +++ b/core/src/main/resources/hudson/util/HudsonIsLoading/index_lt.properties @@ -1,24 +1,6 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. +# This file is under the MIT License by authors -Please\ wait\ while\ Jenkins\ is\ getting\ ready\ to\ work=\u012Ejungti automatin\u012F atnaujinim\u0105 -Your\ browser\ will\ reload\ automatically\ when\ Jenkins\ is\ ready.=Nauja u\u017Eduotis +# /jenkins-core/src/main/resources/hudson/util/HudsonIsLoading/index_lt.properties + +Please\ wait\ while\ Jenkins\ is\ getting\ ready\ to\ work=Jenkins ruo\u0161iamas darbui, pra\u0161ome palaukti +Your\ browser\ will\ reload\ automatically\ when\ Jenkins\ is\ ready.=Kuomet Jenkins bus paruo\u0161tas, J\u016Bs\u0173 nar\u0161ykl\u0117 persikraus automati\u0161kai. diff --git a/core/src/main/resources/hudson/util/HudsonIsLoading/index_sr.properties b/core/src/main/resources/hudson/util/HudsonIsLoading/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..50eaf9d58e86f7ad736ff112ae4537e22e960b9e --- /dev/null +++ b/core/src/main/resources/hudson/util/HudsonIsLoading/index_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Your\ browser\ will\ reload\ automatically\ when\ Jenkins\ is\ ready.=\u0412\u0430\u0448 \u0432\u0435\u0431-\u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0447 \u045B\u0435 \u0441\u0435 \u0430\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0438 \u043E\u0441\u0432\u0435\u0436\u0438\u0442\u0438 \u043A\u0430\u0434\u0430 \u0431\u0443\u0434\u0435 Jenkins \u0431\u0438\u043E \u0441\u043F\u0440\u0435\u043C\u0430\u043D. +Please\ wait\ while\ Jenkins\ is\ getting\ ready\ to\ work=\u041C\u043E\u043B\u0438\u043C\u043E \u0432\u0430\u0441, \u0441\u0430\u0447\u0435\u043A\u0430\u0458\u0442\u0435 \u0434\u043E\u043A \u0441\u0435 Jenkins \u043F\u0440\u0438\u043F\u0440\u0435\u043C\u0430. diff --git a/core/src/main/resources/hudson/util/HudsonIsRestarting/index_es.properties b/core/src/main/resources/hudson/util/HudsonIsRestarting/index_es.properties index 88216029dceec3dbb119647ce5837b9998d15ee5..1c2b0dc351e24b3c6e1d8efad97df802dd759c4e 100644 --- a/core/src/main/resources/hudson/util/HudsonIsRestarting/index_es.properties +++ b/core/src/main/resources/hudson/util/HudsonIsRestarting/index_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Please\ wait\ while\ Jenkins\ is\ restarting=Por favor espera hasta que jenkins acabe de reiniciarse. +Please\ wait\ while\ Jenkins\ is\ restarting=Por favor espera hasta que Jenkins acabe de reiniciarse. Your\ browser\ will\ reload\ automatically\ when\ Jenkins\ is\ ready.=Su navegador recargar esta pgina cuando Jenkins est listo. diff --git a/core/src/main/resources/hudson/util/HudsonIsRestarting/index_sr.properties b/core/src/main/resources/hudson/util/HudsonIsRestarting/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..4e15203825ee374211cf74c10edb6822a5d784e1 --- /dev/null +++ b/core/src/main/resources/hudson/util/HudsonIsRestarting/index_sr.properties @@ -0,0 +1,4 @@ +# 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\u045B\u0435 Jenkins. +Your\ browser\ will\ reload\ automatically\ when\ Jenkins\ is\ ready.=\u0412\u0430\u0448 \u0432\u0435\u0431-\u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0447 \u045B\u0435 \u0441\u0435 \u0430\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0438 \u043E\u0441\u0432\u0435\u0436\u0438\u0442\u0438 \u043A\u0430\u0434\u0430 \u0431\u0443\u0434\u0435 Jenkins \u0431\u0438\u043E \u0441\u043F\u0440\u0435\u043C\u0430\u043D. diff --git a/core/src/main/resources/hudson/util/IncompatibleAntVersionDetected/index.jelly b/core/src/main/resources/hudson/util/IncompatibleAntVersionDetected/index.jelly index 6c88a89b9069d403010558449f40f3a93ca583a9..e516ea80253c676482022ee1a20bac5ee132b2ce 100644 --- a/core/src/main/resources/hudson/util/IncompatibleAntVersionDetected/index.jelly +++ b/core/src/main/resources/hudson/util/IncompatibleAntVersionDetected/index.jelly @@ -24,6 +24,7 @@ THE SOFTWARE. + diff --git a/core/src/main/resources/hudson/util/IncompatibleAntVersionDetected/index_de.properties b/core/src/main/resources/hudson/util/IncompatibleAntVersionDetected/index_de.properties index cb3b69e442c00111fc06e171b51b710dc1672198..27d2269f2bbe5deae392b8629d086540d7452621 100644 --- a/core/src/main/resources/hudson/util/IncompatibleAntVersionDetected/index_de.properties +++ b/core/src/main/resources/hudson/util/IncompatibleAntVersionDetected/index_de.properties @@ -22,9 +22,9 @@ Error=Fehler errorMessage=\ - Ihr Servlet-Container ldt selbst eine ltere Version von Ant und hindert damit \ + Ihr Servlet-Container l\u00E4dt selbst eine \u00E4ltere Version von Ant und hindert damit \ Jenkins daran, seine eigene, neuere Version zu verwenden \ (Ant Klassen werden aus {0} geladen).
    \ - Eventuell knnen Sie die Ant-Version Ihres Containers mit einer Version aus \ - Jenkins' WEB-INF/lib-Verzeichnis berschreiben oder die Classloader-Delegation \ - auf den Modus "Kinder zuerst (child first)" umstellen, so da Jenkins seine Version zuerst findet? + Eventuell k\u00F6nnen Sie die Ant-Version Ihres Servlet-Containers mit einer Version aus \ + Jenkins' WEB-INF/lib-Verzeichnis \u00FCberschreiben oder die Classloader-Delegation \ + auf den Modus \u201EKinder zuerst (child first)\u201C umstellen, so dass Jenkins seine Version zuerst findet? diff --git a/core/src/main/resources/hudson/util/IncompatibleAntVersionDetected/index_sr.properties b/core/src/main/resources/hudson/util/IncompatibleAntVersionDetected/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..05bb055a5f0db4cbee370efdb0515d76abbc92e6 --- /dev/null +++ b/core/src/main/resources/hudson/util/IncompatibleAntVersionDetected/index_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Error=\u0413\u0440\u0435\u0448\u043A\u0430 +errorMessage=Jenkins \u0458\u0435 \u043E\u0442\u043A\u0440\u0438\u043E \u0434\u0430 \u0432\u0430\u0448 \u043A\u043E\u043D\u0442\u0435\u0458\u043D\u0435\u0440 \u043D\u0435 \u043F\u043E\u0434\u0440\u0436\u0430\u0432\u0430 Ant\ +(Ant \u043A\u043B\u0430\u0441\u0435 \u0443\u0447\u0438\u0442\u0430\u043D\u0435 \u043E\u0434 {0}) diff --git a/core/src/main/resources/hudson/util/IncompatibleServletVersionDetected/index.jelly b/core/src/main/resources/hudson/util/IncompatibleServletVersionDetected/index.jelly index 76407ab939e962a48adf6dd4955f250687434b94..926a5cfd795e7293b21bcdab9e699ed273e3b587 100644 --- a/core/src/main/resources/hudson/util/IncompatibleServletVersionDetected/index.jelly +++ b/core/src/main/resources/hudson/util/IncompatibleServletVersionDetected/index.jelly @@ -24,6 +24,7 @@ THE SOFTWARE. + diff --git a/core/src/main/resources/hudson/util/IncompatibleServletVersionDetected/index_de.properties b/core/src/main/resources/hudson/util/IncompatibleServletVersionDetected/index_de.properties index 26a702f3f673b2a8d9c6efab52639b3cab7fc386..23759e6bac9382ac6ae6a43f28fdbd39ee8107eb 100644 --- a/core/src/main/resources/hudson/util/IncompatibleServletVersionDetected/index_de.properties +++ b/core/src/main/resources/hudson/util/IncompatibleServletVersionDetected/index_de.properties @@ -22,5 +22,5 @@ Error=Fehler errorMessage=\ - Jenkins hat festgestellt, da Ihr Servlet-Container die Servlet-Spezifikation 2.4 nicht untersttzt \ + Jenkins hat festgestellt, dass Ihr Servlet-Container die Servlet-Spezifikation 2.4 nicht unterst\u00FCtzt \ (Servlet API wird geladen von {0}). diff --git a/core/src/main/resources/hudson/util/IncompatibleServletVersionDetected/index_sr.properties b/core/src/main/resources/hudson/util/IncompatibleServletVersionDetected/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..09631cb8e93f865ffe1e858201f4ab4647dcdffb --- /dev/null +++ b/core/src/main/resources/hudson/util/IncompatibleServletVersionDetected/index_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Error=\u0413\u0440\u0435\u0448\u043A\u0430 +errorMessage=Jenkins \u0458\u0435 \u043E\u0442\u043A\u0440\u0438\u043E \u0434\u0430 \u0432\u0430\u0448 \u043A\u043E\u043D\u0442\u0435\u0458\u043D\u0435\u0440 \u043D\u0435 \u043F\u043E\u0434\u0440\u0436\u0430\u0432\u0430 Servlet 2.4\ +(API \u0441\u0435\u0440\u0432\u043B\u0435\u0442\u0430 \u0443\u0447\u0438\u0442\u0430\u043D\u043E \u043E\u0434 {0}) diff --git a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index.jelly b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index.jelly index ee1d8a07975d1f12c62d70eb557f6dabd8d013f1..c9baaa5ce28544b35ba1acaefe0099df8c2eaa9a 100644 --- a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index.jelly +++ b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index.jelly @@ -24,6 +24,7 @@ THE SOFTWARE. + diff --git a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_de.properties b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_de.properties index 6ddf791bee7fc28f2ff7e6086e248cff5e5a9600..5b55c0c15ebf7b50a75970b5f281d34adbce3a26 100644 --- a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_de.properties +++ b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_de.properties @@ -1,33 +1,33 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe, Simon Wiest -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Error=Fehler -OS\ Name=Betriebssystem -VM\ Name=VM Name -Vendor=Hersteller -Version=Version -Detected\ JVM=Gefundene JVM -errorMessage=\ - Die gefundene Java Virtual Machine (JVM) wird von Jenkins nicht untersttzt. \ - Jenkins ist auf die Bibliothek XStream angewiesen, welche aber nicht mit der \ - gefundenen JVM funktioniert. \ - Mehr dazu... +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe, Simon Wiest +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Error=Fehler +OS\ Name=Betriebssystem +VM\ Name=VM Name +Vendor=Hersteller +Version=Version +Detected\ JVM=Gefundene JVM +errorMessage=\ + Die gefundene Java Virtual Machine (JVM) wird von Jenkins nicht untersttzt. \ + Jenkins ist auf die Bibliothek XStream angewiesen, welche aber nicht mit der \ + gefundenen JVM funktioniert. \ + Mehr dazu... diff --git a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_sr.properties b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..c969814074eca5d21854f53be466666155719d1d --- /dev/null +++ b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_sr.properties @@ -0,0 +1,10 @@ +# This file is under the MIT License by authors + +Error=\u0413\u0440\u0435\u0448\u043A\u0430 +errorMessage=Jenkins \u0458\u0435 \u043F\u0440\u043E\u043D\u0430\u0448\u0430\u043E \u0434\u0430 \u0432\u0430\u0448\u0430 JVM \u043D\u0438\u0458\u0435 \u043F\u043E\u0434\u0440\u0436\u0430\u043D\u0430, \u0437\u0431\u043E\u0433 \u043D\u0435\u043A\u0438\u0445 \u0431\u0438\u0431\u043B\u0438\u043E\u0442\u0435\u043A\u0430 \u043E\u0434 \u043A\u043E\u0458\u0435 Jenkins \u0437\u0430\u0432\u0438\u0441\u0438.\ +\u041F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 this FAQ \u0433\u0434\u0435 \u0438\u043C\u0430 \u0432\u0438\u043F\u0435 \u0434\u0435\u0442\u0430\u0459\u0430. +Detected\ JVM= +Vendor=\u041F\u0440\u043E\u0438\u0437\u0432\u043E\u0452\u0430\u0447 +Version=\u0412\u0435\u0440\u0437\u0438\u0458\u0430 +VM\ Name=\u0418\u043C\u0435 \u0432\u0438\u0440\u0442\u0443\u0435\u043B\u043D\u0435 \u043C\u0430\u0448\u0438\u043D\u0435 +OS\ Name=\u0418\u043C\u0435 \u043E\u043F\u0435\u0440\u0430\u0442\u0438\u0432\u043D\u043E\u0433 \u0441\u0438\u0441\u0442\u0435\u043C\u0430 diff --git a/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index.jelly b/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index.jelly index e3ef38d31bc26051b04ef084e3342eed674f15cb..0dc65cfc2836b5cba8478c0795dabf591c7c54e6 100644 --- a/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index.jelly +++ b/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index.jelly @@ -24,6 +24,7 @@ THE SOFTWARE. + diff --git a/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index.properties b/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index.properties index 2b3a0363502f3b932d6da2313a190be0e1b4b2ba..4a5267880447cdbd7810f72d258bf153d4ce85bf 100644 --- a/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index.properties +++ b/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index.properties @@ -25,9 +25,9 @@ errorMessage.1=\ as indicated by the stack trace below. Most likely cause of this \ problem is that the security manger is on. If that was intended, \ you need to grant sufficient permissions for Jenkins to run. Otherwise, \ - or if you have no idea what a security manager is, then the easiest \ + or if you don''t know what a security manager is, then the easiest \ way to fix the problem is simply to turn the security manager off. errorMessage.2=\ For how to turn off security manager in your container, refer to \ - \ + \ Container-specific documentations of Jenkins. diff --git a/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_de.properties b/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_de.properties index 23904e44e7da5649f269d08d33d21e96e62eca89..2e701993d076ce125d4c32b31d616fe23b0875e0 100644 --- a/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_de.properties +++ b/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_de.properties @@ -1,33 +1,32 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Error=Fehler -errorMessage.1=\ - Jenkins scheint nicht gengend Ausfhrungsrechte zu besitzen (vgl. untenstehenden \ - Stacktrace). Eine hufige Ursache dafr ist ein aktivierter Security Manager. \ - Ist dieser absichtlich aktiviert, mssen Sie Jenkins ausreichende Ausfhrungsrechte \ - zuteilen. Falls nicht (oder Sie keinen blassen Schimmer haben, was ein "Security \ - Manager" ist), ist es am Einfachsten, den Security Manager abzuschalten. -errorMessage.2=\ - Wie Sie den Security Manager Ihres Web-Containers abschalten, entnehmen Sie \ - der containerspezifischen \ - Jenkins-Dokumentation. +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Error=Fehler +errorMessage.1=\ + Jenkins scheint nicht gen\u00FCgend Ausf\u00FChrungsrechte zu besitzen (vgl. untenstehenden \ + Stack-Trace). Eine h\u00E4ufige Ursache daf\u00FCr ist ein aktivierter Security Manager. \ + Ist dieser absichtlich aktiviert, m\u00FCssen Sie Jenkins ausreichende Ausf\u00FChrungsrechte \ + zuteilen. Falls nicht, ist es am einfachsten, den Security Manager abzuschalten. +errorMessage.2=\ + Wie Sie den Security Manager Ihres Servlet-Containers abschalten, entnehmen Sie \ + der containerspezifischen \ + Jenkins-Dokumentation. diff --git a/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_es.properties b/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_es.properties index 066f6b967bb28d8672b781ebe4b5473d91bce9a5..ec945dcc8675037a959c621302ff2b3fc31df8dd 100644 --- a/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_es.properties +++ b/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_es.properties @@ -24,7 +24,7 @@ errorMessage.1=\ Se ha detectado que Jenkins no tiene suficientes permisos para ejecutarse. \ Probablemente pueda ser que el ''security manager'' de tu contenedor de ''servlet'' est activado. errorMessage.2=\ - Echa un vistazo a \ + Echa un vistazo a \ Container-specific documentations para saber cmo desactivar esta restriccin. Error=Error diff --git a/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_ja.properties b/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_ja.properties index 867969217058a621cc3e9c8b1060dbe6f621c322..ae3a8711670e1661f5078641358a4584fd2d5c20 100644 --- a/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_ja.properties +++ b/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_ja.properties @@ -29,5 +29,5 @@ errorMessage.1=\ \u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u30DE\u30CD\u30FC\u30B8\u30E3\u30FC\u3092\u7121\u52B9\u306B\u3057\u3066\u3057\u307E\u3046\u306E\u304C\u4E00\u756A\u7C21\u5358\u3067\u3059\u3002 errorMessage.2=\ \u4F7F\u7528\u3057\u3066\u3044\u308B\u30B3\u30F3\u30C6\u30CA\u30FC\u3067\u306E\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u30DE\u30CD\u30FC\u30B8\u30E3\u30FC\u306E\u7121\u52B9\u5316\u306E\u65B9\u6CD5 \u306B\u3064\u3044\u3066\u306F\u3001\ - \ + \ Container-specific documentations\u3092\u53C2\u7167\u3057\u3066\u304F\u3060\u3055\u3044\u3002 diff --git a/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_pt_BR.properties b/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_pt_BR.properties index c1090b7185e10f385b8dc5aa23219d39967ed950..2f5904304a4cfd37205ef82ba7e39f254cc3f7eb 100644 --- a/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_pt_BR.properties +++ b/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_pt_BR.properties @@ -34,7 +34,7 @@ de seguran\u00e7a, poder\u00e1 desativ\u00e1-lo. Error=Erro # \ # For how to turn off security manager in your container, refer to \ -# \ +# \ # Container-specific documentations of Jenkins. errorMessage.2=Para desativar o gerenciador de seguran\u00e7a, \ Documenta\u00e7\u00e3o especifica sobre containers do Jenkins diff --git a/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_sr.properties b/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..011f3bd6120f7fece1ba6649e204e790f4b17bc4 --- /dev/null +++ b/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_sr.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Error=\u0413\u0440\u0435\u0448\u043A\u0430 +errorMessage.1=Jenkins je \u043E\u0442\u043A\u0440\u0438o \u0434\u0430 \u043D\u0435\u043C\u0430 \u043E\u0432\u043B\u0430\u0448\u045B\u0435\u045A\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u0440\u0448\u0430\u0432\u0430, \u0435\u0432\u0438\u0434\u0435\u043D\u0442\u0438\u0440\u0430\u043D\u043E \u043F\u0440\u0430\u0442\u0435\u045B\u043E\u0458 \u0442\u0440\u0430\u0441\u0438 \u0441\u0442\u0435\u043A\u043E\u043C. \u0412\u0435\u0440\u043E\u0432\u0430\u0442\u043D\u043E \u0458\u0435 \u0437\u0431\u043E\u0433 \u043D\u0435\u043A\u043E\u0433 \u043D\u0430\u0434\u0437\u043E\u0440\u043D\u043E\u0433 \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u0430, \u043A\u043E\u0458\u0438 \u0431\u0438 \u0442\u0440\u0435\u0431\u043E \u0434\u0430 \u0441\u0435 \u043F\u043E\u0434\u0435\u0441\u0438 \u0438\u043B\u0438 \u0438\u0441\u043A\u0459\u0443\u0447\u0438. +errorMessage.2=\u0423\u043F\u0443\u0441\u0442\u0432\u043E \u043A\u0430\u043A\u043E \u0443\u0433\u0430\u0441\u0438\u0442\u0438 security manager \u0443 \u0432\u0430\u0448\u0435\u043C \u043A\u043E\u043D\u0442\u0435\u0458\u043D\u0435\u0440\u0443 \u0441\u0435 \u043D\u0430\u043B\u0430\u0437\u0438 \u0443 \u0447\u043B\u0430\u043D\u043A\u0443 \ + \ + \u0414\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0438\u0458\u0430 \u043A\u043E\u043D\u0442\u0435\u0458\u043D\u0435\u0440\u0430 \u0443 Jenkins-\u0443. +de= diff --git a/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_zh_TW.properties b/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_zh_TW.properties index ba7f9a6deda85204ac1abcdb05d5df7e94465773..dd369fb349d6da48302b2a5c666541f0002660a5 100644 --- a/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_zh_TW.properties +++ b/core/src/main/resources/hudson/util/InsufficientPermissionDetected/index_zh_TW.properties @@ -28,5 +28,5 @@ errorMessage.1=\ \u8981\u662f\u60a8\u9023 Security Manager \u662f\u4ec0\u9ebc\u90fd\u4e0d\u77e5\u9053\uff0c\u6700\u7c21\u55ae\u7684\u8655\u7406\u65b9\u6cd5\u5c31\u662f\u628a\u5b83\u95dc\u6389\u3002 errorMessage.2=\ \u95dc\u9589\u60a8 Container \u7684 Security Manager \u7684\u65b9\u6cd5\u53ef\u4ee5\u53c3\u8003 Jenkins \u7684 \ - \ + \ Container \u76f8\u95dc\u6587\u4ef6\u3002 diff --git a/core/src/main/resources/hudson/util/JNADoublyLoaded/index.properties b/core/src/main/resources/hudson/util/JNADoublyLoaded/index.properties index ddf728cf8345708e64990d4a5905a1c4eaefdf77..cf8fe45ca348e0a7cc751358cb6c2d80d401a42f 100644 --- a/core/src/main/resources/hudson/util/JNADoublyLoaded/index.properties +++ b/core/src/main/resources/hudson/util/JNADoublyLoaded/index.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. blurb=Another instance of JNA is already loaded in another classloader, thereby making it impossible for Jenkins \ - to load its own copy. See Wiki for more details. + to load its own copy. See Wiki for more details. diff --git a/core/src/main/resources/hudson/util/JNADoublyLoaded/index_de.properties b/core/src/main/resources/hudson/util/JNADoublyLoaded/index_de.properties index 1db31ab5b94683c4ae8c08a7153e6821abe80915..c043e4f426af51ef0c3e26b564ddfdda8e1fe553 100644 --- a/core/src/main/resources/hudson/util/JNADoublyLoaded/index_de.properties +++ b/core/src/main/resources/hudson/util/JNADoublyLoaded/index_de.properties @@ -24,5 +24,5 @@ Failed\ to\ load\ JNA=Java Native Access (JNA) konnte nicht geladen werden blurb=\ Eine JNA-Instanz wurde bereits von einem anderen Classloader geladen. \ Dies hindert Jenkins daran, seine eigene JNA-Instanz zu laden. \ - Mehr... + Mehr... diff --git a/core/src/main/resources/hudson/util/JNADoublyLoaded/index_es.properties b/core/src/main/resources/hudson/util/JNADoublyLoaded/index_es.properties index abf2dd43d0f43cd250061f8ffe04f28dd03d4dcf..f04bc938f6ee111a2e135acee961bd1c125d1191 100644 --- a/core/src/main/resources/hudson/util/JNADoublyLoaded/index_es.properties +++ b/core/src/main/resources/hudson/util/JNADoublyLoaded/index_es.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. blurb=Otra instancia de JNA est en ejecucin, echa un vistazo a esta \ - pagina para ver mas detalles. + pagina para ver mas detalles. Failed\ to\ load\ JNA=Fallo al cargar JNA diff --git a/core/src/main/resources/hudson/util/JNADoublyLoaded/index_ja.properties b/core/src/main/resources/hudson/util/JNADoublyLoaded/index_ja.properties index de457be680ff5c1cad6f9b57cc4d82ea62ec531b..fb66f542ea6889004a30b76338041a9fd78d430f 100644 --- a/core/src/main/resources/hudson/util/JNADoublyLoaded/index_ja.properties +++ b/core/src/main/resources/hudson/util/JNADoublyLoaded/index_ja.properties @@ -22,4 +22,4 @@ Failed\ to\ load\ JNA=Java Native Access (JNA) \u306E\u30ED\u30FC\u30C9\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002 blurb=\u5225\u306E\u30AF\u30E9\u30B9\u30ED\u30FC\u30C0\u30FC\u304CJNA\u306E\u30A4\u30F3\u30B9\u30BF\u30F3\u30B9\u3092\u65E2\u306B\u30ED\u30FC\u30C9\u3057\u3066\u3044\u307E\u3059\u3002\u305D\u306E\u305F\u3081\u3001Jenkins\u304C\u30ED\u30FC\u30C9\u3059\u308B\u3053\u3068\u304C\u3067\u304D\u307E\u305B\u3093\u3002\ - \u8A73\u7D30\u306F\u3001Wiki\u3092\u53C2\u7167\u3057\u3066\u304F\u3060\u3055\u3044\u3002 + \u8A73\u7D30\u306F\u3001Wiki\u3092\u53C2\u7167\u3057\u3066\u304F\u3060\u3055\u3044\u3002 diff --git a/core/src/main/resources/hudson/util/JNADoublyLoaded/index_pt_BR.properties b/core/src/main/resources/hudson/util/JNADoublyLoaded/index_pt_BR.properties index 02cc07bbdac9f0607e7e92022c7e1647cb0c4204..8238947faa20545f2c5e8c13ceb542fbdec9fe1d 100644 --- a/core/src/main/resources/hudson/util/JNADoublyLoaded/index_pt_BR.properties +++ b/core/src/main/resources/hudson/util/JNADoublyLoaded/index_pt_BR.properties @@ -22,6 +22,6 @@ Failed\ to\ load\ JNA= # Another instance of JNA is already loaded in another classloader, thereby making it impossible for Jenkins \ -# to load its own copy. See Wiki for more details. +# to load its own copy. See Wiki for more details. blurb=Outra inst\u00e2ncia do JNA j\u00e1 est\u00e1 carregada em outro Classloader, impossibilitando ao Jenkins \ diff --git a/core/src/main/resources/hudson/util/JNADoublyLoaded/index_sr.properties b/core/src/main/resources/hudson/util/JNADoublyLoaded/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..89c5a8befb816d83e6c3179652ae60585533dccc --- /dev/null +++ b/core/src/main/resources/hudson/util/JNADoublyLoaded/index_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Failed\ to\ load\ JNA=\u041D\u0438\u0458\u0435 \u043C\u043E\u0433\u043B\u043E \u0443\u0447\u0438\u0442\u0430\u0442\u0438 JNA +blurb=\u0414\u0440\u0443\u0433\u0430 \u0438\u043D\u0441\u0442\u0430\u043D\u0446\u0430 JNA \u0458\u0435 \u0432\u0435\u045B \u0443\u0447\u0438\u0442\u0430\u043D\u0430 \u0443 classloader, \u043F\u043E\u0442\u043E\u043C Jenkins \u043D\u0435\u043C\u043E\u0436\u0435 \u0443\u0447\u0438\u0442\u0430\u0442\u0438 \u0441\u0432\u043E\u0458\u0443 \u043A\u043E\u043F\u0438\u0458\u0443. \u041F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 \u0412\u0438\u043A\u0438 \u0437\u0430 \u0432\u0438\u0448\u0435 \u0434\u0435\u0442\u0430\u0459\u0430. diff --git a/core/src/main/resources/hudson/util/JNADoublyLoaded/index_zh_TW.properties b/core/src/main/resources/hudson/util/JNADoublyLoaded/index_zh_TW.properties index 7508e81be4b1e2c3ca2635e697471dc01388d410..9d12da7613fdbbdb0a9bd9741a799ec67ab7104e 100644 --- a/core/src/main/resources/hudson/util/JNADoublyLoaded/index_zh_TW.properties +++ b/core/src/main/resources/hudson/util/JNADoublyLoaded/index_zh_TW.properties @@ -23,4 +23,4 @@ Failed\ to\ load\ JNA=JNA \u8f09\u5165\u5931\u6557 blurb=\ \u5df2\u7d93\u6709\u5176\u4ed6 ClassLoader \u8f09\u5165\u4e86 JNA\uff0cJenkins \u56e0\u6b64\u7121\u6cd5\u8f09\u5165\u81ea\u5df1\u7684\u7248\u672c\u3002\ - \u8acb\u53c3\u8003 Wiki \u4e0a\u7684\u8a73\u7d30\u8cc7\u6599\u3002 + \u8acb\u53c3\u8003 Wiki \u4e0a\u7684\u8a73\u7d30\u8cc7\u6599\u3002 diff --git a/core/src/main/resources/hudson/util/JenkinsReloadFailed/index.groovy b/core/src/main/resources/hudson/util/JenkinsReloadFailed/index.groovy index 761ec1c4e0b0a41d491b42eeacf554748b9e8ebd..9405ab55c63f1b2d2af5631c6bc095e7c24c408b 100644 --- a/core/src/main/resources/hudson/util/JenkinsReloadFailed/index.groovy +++ b/core/src/main/resources/hudson/util/JenkinsReloadFailed/index.groovy @@ -1,6 +1,9 @@ import hudson.Functions def l = namespace(lib.LayoutTagLib) +def st = namespace("jelly:stapler") + +st.statusCode(value: 500) l.layout { l.header(title:"Jenkins") diff --git a/core/src/main/resources/hudson/util/JenkinsReloadFailed/index_sr.properties b/core/src/main/resources/hudson/util/JenkinsReloadFailed/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..2a99f9eb88d6b9bbd5d963e270fcd3a4faf5c8ac --- /dev/null +++ b/core/src/main/resources/hudson/util/JenkinsReloadFailed/index_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Error=\u0413\u0440\u0435\u0448\u043A\u0430 +msg=Jenkins \u0458\u0435 \u0431\u0438\u043E \u043F\u0440\u0435\u043A\u0438\u043D\u0443\u0442 \u0434\u043E\u043A \u0458\u0435 \u043F\u043E\u043D\u043E\u0432\u043E \u0438\u0447\u0438\u0442\u0430\u0432\u0430\u043E \u043F\u043E\u0442\u0430\u043A\u0435 \u0441\u0430 \u0434\u0438\u0441\u043A\u0430, \u0438 \u043F\u043E\u0442\u043E\u043C \u0442\u043E\u0433\u0430 \u0458\u0435 \u0441\u0442\u0430\u043E \u0434\u0430 \u0431\u0438 \u0441\u0435 \u0441\u043F\u0440\u0435\u0447\u0438\u043B\u043E \u0433\u0443\u0431\u0438\u0442\u0430\u043A \u043F\u043E\u0434\u0430\u0442\u0430\u043A\u0430. \u041C\u043E\u043B\u0438\u043C\u043E \u0432\u0430\u0441, \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0438\u0442\u0435 Jenkins. \ No newline at end of file diff --git a/core/src/main/resources/hudson/util/Messages_bg.properties b/core/src/main/resources/hudson/util/Messages_bg.properties index 54e52ee25b6ba3052b7b67fd73297ed278f34977..0877faf1c27a67664d93e914acf05af8daf3b8e8 100644 --- a/core/src/main/resources/hudson/util/Messages_bg.properties +++ b/core/src/main/resources/hudson/util/Messages_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Bulgarian translation copyright 2015 Alexander Shopov . +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, 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/util/Messages_de.properties b/core/src/main/resources/hudson/util/Messages_de.properties index c7f1661a3b62487d92c3320c127526e9c7209362..b22708e155eb3502197a6d5f7b7b53702c793cad 100644 --- a/core/src/main/resources/hudson/util/Messages_de.properties +++ b/core/src/main/resources/hudson/util/Messages_de.properties @@ -23,6 +23,8 @@ ClockDifference.InSync=synchron ClockDifference.Ahead={0} vorgehend ClockDifference.Behind={0} nachgehend -ClockDifference.Failed=berprfung fehlgeschlagen +ClockDifference.Failed=\u00DCberpr\u00FCfung fehlgeschlagen FormValidation.ValidateRequired=Erforderlich -FormValidation.Error.Details=(Details anzeigen) \ No newline at end of file +FormValidation.Error.Details=(Details anzeigen) +FormFieldValidator.did_not_manage_to_validate_may_be_too_sl=Konnte \u201E{0}\u201C nicht \u00FCberpr\u00FCfen (vermutlich zu langsam) +HttpResponses.Saved=Gespeichert diff --git a/core/src/main/resources/hudson/model/Slave/help-launcher_zh_TW.properties b/core/src/main/resources/hudson/util/Messages_pl.properties similarity index 75% rename from core/src/main/resources/hudson/model/Slave/help-launcher_zh_TW.properties rename to core/src/main/resources/hudson/util/Messages_pl.properties index 53d4c8d02152394c3f0b99c9f3033088bf9caa64..9f4d414f74abc3b10b7e0ac1b948a3ab364594c6 100644 --- a/core/src/main/resources/hudson/model/Slave/help-launcher_zh_TW.properties +++ b/core/src/main/resources/hudson/util/Messages_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang +# Copyright (c) 2004-2017, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributors # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -19,5 +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. - -Controls\ how\ Jenkins\ starts\ this\ slave.=\u63a7\u5236 Jenkins \u4f7f\u7528\u4ec0\u9ebc\u65b9\u5f0f\u555f\u52d5 Slave\u3002 +ClockDifference.InSync=Zsynchronizowany +ClockDifference.Failed=Nie uda\u0142o si\u0119 zweryfikowa\u0107 +HttpResponses.Saved=Zapisano +FormValidation.ValidateRequired=Wymagane +FormValidation.Error.Details=(wy\u015Bwietl szczeg\u00F3\u0142y) diff --git a/core/src/main/resources/hudson/util/Messages_sr.properties b/core/src/main/resources/hudson/util/Messages_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..a813bf1695eef8857567f0c9726bf6a9d63503bf --- /dev/null +++ b/core/src/main/resources/hudson/util/Messages_sr.properties @@ -0,0 +1,10 @@ +# This file is under the MIT License by authors + +ClockDifference.InSync=\u0421\u0438\u043D\u0445\u0440\u043E\u043D\u0438\u0437\u043E\u0432\u0430\u043D\u043E +ClockDifference.Ahead={0} \u0438\u0441\u043F\u0440\u0435\u0434 +ClockDifference.Behind={0} \u0438\u0437\u0430 +ClockDifference.Failed=\u041F\u0440\u043E\u0432\u0435\u0440\u0430 \u043D\u0438\u0458\u0435 \u0443\u0441\u043F\u0435\u043B\u0430. +FormFieldValidator.did_not_manage_to_validate_may_be_too_sl=\u041F\u0440\u043E\u0432\u0435\u0440\u0430 {0} \u043D\u0438\u0458\u0435 \u0443\u0441\u043F\u0435\u043B\u043E. \u041C\u043E\u0433\u0443\u045B\u0435 \u0458\u0435 \u0434\u0430 Jenkins \u043D\u0438\u0458\u0435 \u0434\u043E\u0432\u043E\u0459\u043D\u043E \u0431\u0440\u0437. +FormValidation.Error.Details=(\u043F\u0440\u0438\u0434\u0430\u0436\u0438 \u0434\u0435\u0442\u0430\u0459\u0435) +FormValidation.ValidateRequired=\u041E\u0431\u0430\u0432\u0435\u0437\u043D\u043E +HttpResponses.Saved=\u0421\u0430\u0447\u0443\u0432\u0430\u043D\u043E \ No newline at end of file diff --git a/core/src/main/resources/hudson/util/NoHomeDir/index.jelly b/core/src/main/resources/hudson/util/NoHomeDir/index.jelly index a75b653e04531f719bcde13f25187e04f01bdd6e..0476004a78585d0532bd39215387df955003ee1b 100644 --- a/core/src/main/resources/hudson/util/NoHomeDir/index.jelly +++ b/core/src/main/resources/hudson/util/NoHomeDir/index.jelly @@ -24,6 +24,7 @@ THE SOFTWARE. + diff --git a/core/src/main/resources/hudson/util/NoHomeDir/index.properties b/core/src/main/resources/hudson/util/NoHomeDir/index.properties index e389ec998adc075b7c15539523a4bd11a446ef74..c54b6adbcc2207f486bbeb39ca9581e7e68cfdd4 100644 --- a/core/src/main/resources/hudson/util/NoHomeDir/index.properties +++ b/core/src/main/resources/hudson/util/NoHomeDir/index.properties @@ -25,6 +25,6 @@ errorMessage.1=\ errorMessage.2=\ To change the home directory, use JENKINS_HOME environment variable or set the \ JENKINS_HOME system property. \ - See Container-specific documentation \ + See Container-specific documentation \ for more details of how to do this. diff --git a/core/src/main/resources/hudson/util/NoHomeDir/index_de.properties b/core/src/main/resources/hudson/util/NoHomeDir/index_de.properties index c834d9aa69debb583a6a485f37c2cf2a87c61bdb..055a854e3555836b3227877693886685e62371e2 100644 --- a/core/src/main/resources/hudson/util/NoHomeDir/index_de.properties +++ b/core/src/main/resources/hudson/util/NoHomeDir/index_de.properties @@ -1,32 +1,32 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Error=Fehler -errorMessage.1=\ - Das Stammverzeichnis ''{0}'' konnte nicht angelegt werden. In den meisten Fllen ist \ - dies ein Dateirechte-Problem. -errorMessage.2=\ - Um das Stammverzeichnis zu ndern, verwenden Sie die Umgebungsvariable JENKINS_HOME \ - oder die Java-Systemeigenschaft JENKINS_HOME. Weitere Details entnehmen Sie \ - der containerspezifischen \ - Jenkins-Dokumentation. - +# The MIT License +# +# Copyright (c) 2004-2010, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Error=Fehler +errorMessage.1=\ + Das Stammverzeichnis \u201E{0}\u201C konnte nicht angelegt werden. In den meisten Fllen ist \ + dies ein Dateirechte-Problem. +errorMessage.2=\ + Um das Stammverzeichnis zu ndern, verwenden Sie die Umgebungsvariable JENKINS_HOME \ + oder die Java-Systemeigenschaft JENKINS_HOME. Weitere Details entnehmen Sie \ + der containerspezifischen \ + Jenkins-Dokumentation. + diff --git a/core/src/main/resources/hudson/util/NoHomeDir/index_es.properties b/core/src/main/resources/hudson/util/NoHomeDir/index_es.properties index 3aa1b32d84166bff0eacb0b7dcdca7c5058cd672..2cdd09a469d5de9c7ced719bb2474de9ed58a821 100644 --- a/core/src/main/resources/hudson/util/NoHomeDir/index_es.properties +++ b/core/src/main/resources/hudson/util/NoHomeDir/index_es.properties @@ -24,6 +24,6 @@ errorMessage.1=\ No fu posible crear el directorio principal ''{0}''. Normalmente es un problema de permisos. errorMessage.2=\ Para cambiar el directorio principal usa la variable de entorno JENKINS_HOME \ - Tienes mas detalles de cmo hacerlo en: Container-specific documentation + Tienes mas detalles de cmo hacerlo en: Container-specific documentation Error=Error diff --git a/core/src/main/resources/hudson/util/NoHomeDir/index_ja.properties b/core/src/main/resources/hudson/util/NoHomeDir/index_ja.properties index 253da02eef438e15fe51c5047d48b854af4f80c4..9a4622cb1c32a7102507c360587be69e45021e24 100644 --- a/core/src/main/resources/hudson/util/NoHomeDir/index_ja.properties +++ b/core/src/main/resources/hudson/util/NoHomeDir/index_ja.properties @@ -26,7 +26,7 @@ errorMessage.1=\ errorMessage.2=\ \u30DB\u30FC\u30E0\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u5909\u66F4\u3059\u308B\u306B\u306F\u3001\u74B0\u5883\u5909\u6570\u306EJENKINS_HOME\u304B\u3001\u30B7\u30B9\u30C6\u30E0\u30D7\u30ED\u30D1\u30C6\u30A3\u306E \ JENKINS_HOME\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044\u3002\ - \u8A2D\u5B9A\u65B9\u6CD5\u306B\u3064\u3044\u3066\u306F\u3001Container-specific documentation \ + \u8A2D\u5B9A\u65B9\u6CD5\u306B\u3064\u3044\u3066\u306F\u3001Container-specific documentation \ \u3092\u53C2\u7167\u3057\u3066\u304F\u3060\u3055\u3044\u3002 diff --git a/core/src/main/resources/hudson/util/NoHomeDir/index_pt_BR.properties b/core/src/main/resources/hudson/util/NoHomeDir/index_pt_BR.properties index bc1d89c225c9f506df282970b85e5417eec02ca0..ea8295abc9c8b9d473adeb0d471b21ee3ca595a6 100644 --- a/core/src/main/resources/hudson/util/NoHomeDir/index_pt_BR.properties +++ b/core/src/main/resources/hudson/util/NoHomeDir/index_pt_BR.properties @@ -25,8 +25,8 @@ Error=Erro errorMessage.1=N\u00e3o foi poss\u00edvel criar o diret\u00f3rio principal "{0}". Provavelmente um por problema de permiss\u00e3o. # To change the home directory, use JENKINS_HOME environment variable or set the \ # JENKINS_HOME system property. \ -# See Container-specific documentation \ +# See Container-specific documentation \ # for more details of how to do this. errorMessage.2= Para mudar o diret\u00f3rio principal, use a vari\u00e1vel de ambiente JENKINS_HOME \ - Veja a documenta\u00e7\u00e3o especifica para o servidor \ + Veja a documenta\u00e7\u00e3o especifica para o servidor \ para mais detalhes de como fazer isto. diff --git a/core/src/main/resources/hudson/util/NoHomeDir/index_sr.properties b/core/src/main/resources/hudson/util/NoHomeDir/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..57863766bfeb0d97e006ef102f79f8050aa47a68 --- /dev/null +++ b/core/src/main/resources/hudson/util/NoHomeDir/index_sr.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Error=\u0413\u0440\u0435\u0448\u043A\u0430 +errorMessage.1=\u041D\u0438\u0458\u0435 \u043C\u043E\u0433\u0443\u045B\u0435 \u043A\u0440\u0435\u0438\u0440\u0430\u0442\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C \u2018{0}\u2019, \u0432\u0435\u0440\u043E\u0432\u0430\u0442\u043D\u043E \u0437\u0431\u043E\u0433 \u043D\u0435\u0434\u043E\u0441\u0442\u0430\u0442\u043A\u0430 \u043F\u0440\u0430\u0432\u0430. +errorMessage.2=\ + \u0414\u0430 \u043F\u0440\u043E\u043C\u0435\u043D\u0438\u0442\u0435 \u0433\u043B\u0430\u0432\u043D\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C, \u043A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0435 JENKINS_HOME \u043F\u0440\u043E\u043C\u0435\u043D\u0459\u0438\u0432\u0443 \u0438\u043B\u0438 \ + JENKINS_HOME \u0441\u0438\u0441\u0442\u0435\u043C\u0441\u043A\u0443 \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0443. \ + \u041F\u0440\u043E\u0447\u0438\u0442\u0430\u0458\u0442\u0435 \u0414\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0438\u0458\u0443 \u043E \u043A\u043E\u043D\u0442\u0435\u0458\u043D\u0435\u0440\u0438\u043C\u0430 \ + \u0437\u0430 \u0458\u043E\u0448 \u0434\u0435\u0442\u0430\u0459\u0430. \ No newline at end of file diff --git a/core/src/main/resources/hudson/util/NoHomeDir/index_zh_TW.properties b/core/src/main/resources/hudson/util/NoHomeDir/index_zh_TW.properties index 2ea36193a27041f0297b95724a1bd09bea331486..9ffa047ddcfcc312345bc9b0837cd02853bd08f9 100644 --- a/core/src/main/resources/hudson/util/NoHomeDir/index_zh_TW.properties +++ b/core/src/main/resources/hudson/util/NoHomeDir/index_zh_TW.properties @@ -26,4 +26,4 @@ errorMessage.1=\ errorMessage.2=\ \u8981\u4fee\u6539\u4e3b\u76ee\u9304\uff0c\u8acb\u8a2d\u5b9a JENKINS_HOME \u74b0\u5883\u8b8a\u6578\u6216 JENKINS_HOME \u7cfb\u7d71\u5c6c\u6027\u3002\ \u8a73\u7d30\u4f5c\u6cd5\u8acb\u53c3\u8003 \ - Container \u76f8\u95dc\u6587\u4ef6\u3002 + Container \u76f8\u95dc\u6587\u4ef6\u3002 diff --git a/core/src/main/resources/hudson/util/NoTempDir/index.jelly b/core/src/main/resources/hudson/util/NoTempDir/index.jelly index c78d70f11caed032e645095a7ebdb1cdc6b64db4..f6b27dcef0c3d160d64267853ffb764d4d9febf7 100644 --- a/core/src/main/resources/hudson/util/NoTempDir/index.jelly +++ b/core/src/main/resources/hudson/util/NoTempDir/index.jelly @@ -24,6 +24,7 @@ THE SOFTWARE. + diff --git a/core/src/main/resources/hudson/util/NoTempDir/index_de.properties b/core/src/main/resources/hudson/util/NoTempDir/index_de.properties index 5126e6cfba873c514471dc3dc6740cfb6ce31070..38c05c348280d11ece5b57a19a57b90e5b25115a 100644 --- a/core/src/main/resources/hudson/util/NoTempDir/index_de.properties +++ b/core/src/main/resources/hudson/util/NoTempDir/index_de.properties @@ -22,6 +22,6 @@ Error=Fehler description=\ - Es konnte keine temporre Datei angelegt werden. In den meisten Fllen wird dies durch eine \ - Fehlkonfiguration des Containers verursacht. Die JVM ist so konfiguriert, da "{0}" als \ - Arbeitsverzeichnis fr temporre Dateien verwendet werden soll. Existiert dieses Verzeichnis und ist es beschreibbar? + Es konnte keine tempor\u00E4re Datei angelegt werden. In den meisten F\u00E4llen wird dies durch eine \ + Fehlkonfiguration des Servlet-Containers verursacht. Die JVM ist so konfiguriert, dass \u201E{0}\u201C als \ + Arbeitsverzeichnis f\u00FCr tempor\u00E4re Dateien verwendet werden soll. Existiert dieses Verzeichnis und ist es beschreibbar? diff --git a/core/src/main/resources/hudson/util/NoTempDir/index_sr.properties b/core/src/main/resources/hudson/util/NoTempDir/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..b4cd0a780b197673274e1296d5e39c05be428134 --- /dev/null +++ b/core/src/main/resources/hudson/util/NoTempDir/index_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Error=\u0413\u0440\u0435\u0448\u043A\u0430 +description=\ + \u041D\u0438\u0458\u0435 \u043C\u043E\u0433\u0443\u045B\u0435 \u043A\u0440\u0435\u0438\u0440\u0430\u0442\u0438 \u043F\u0440\u0438\u0432\u0440\u0435\u043C\u0435\u043D\u0443 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0443, \u0432\u0435\u0440\u043E\u0432\u0430\u0442\u043D\u043E \u0437\u0431\u043E\u0433 \u043B\u043E\u0448\u0430 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A \u043A\u043E\u043D\u0442\u0435\u0458\u043D\u0435\u0440\u043E\u043C. JVM \u043A\u043E\u0440\u0438\u0441\u0442\u0438 "{0}" \u0437\u0430 \u043F\u0440\u0438\u0432\u0440\u0435\u043C\u0435\u043D\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C. \u0414\u0430\u043B\u0438 \u043F\u043E\u0441\u0442\u043E\u0458\u0438, \u0438 \u0434\u0430\u043B\u0438 \u0458\u0435 \u043C\u043E\u0433\u0443\u045B\u0435 \u043F\u0438\u0441\u0430\u0442\u0438 \u043F\u043E \u045A\u0435\u043C\u0443? diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column.jelly b/core/src/main/resources/hudson/views/BuildButtonColumn/column.jelly index 48b22533fbd1672b66009858a8c42b83383c2470..f57d537f2e58c8c6821a7fe214fdff08c1a5781a 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column.jelly +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column.jelly @@ -30,11 +30,11 @@ THE SOFTWARE. - + - + @@ -46,7 +46,7 @@ THE SOFTWARE. diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column.properties index 9557233e6b7bf393c9b2541b88d3fe9498ffd4d7..bf14a6abb2dbc9c0f170f713f3701118f379e2bc 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build_scheduled=Build scheduled -Schedule_a_build=Schedule a build for {0} -Schedule_a_build_with_parameters=Schedule a build with parameters for {0} +Task_scheduled={0} scheduled +Schedule_a_task=Schedule a {1} for {0} +Schedule_a_task_with_parameters=Schedule a {1} with parameters for {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ar.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_ar.properties deleted file mode 100644 index ecd7fa7c47f75c24b8d89ca78d3bab78da069994..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ar.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=\u0627\u0644\u0628\u0646\u0627\u0621 \u0645\u0642\u0631\u0631 -Schedule_a_build=\u062A\u062D\u062F\u064A\u062F \u0645\u0648\u0639\u062F \u0644\u0644\u0628\u0646\u0627\u0621\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ca.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_ca.properties deleted file mode 100644 index f951cfe05a0bde53c2af9fe4ef0e7418bd48c85a..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ca.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=S''ha planificat el muntatge -Schedule_a_build=Planifica un muntatge per {0} -Schedule_a_build_with_parameters=Planifica un muntatge amb par\u00E0metres per {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_cs.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_cs.properties deleted file mode 100644 index b4c7da1f5f1e9f4cb0fb47d7cf13430589434b3d..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_cs.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=Build napl\u00E1nov\u00E1n -Schedule_a_build=Napl\u00E1novat build pro {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_de.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_de.properties deleted file mode 100644 index a85db0e735d233ef0ad271e77bc90722897db994..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_de.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest, Martin Eigenbrodt -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=Build geplant -Schedule_a_build=Build planen f\u00FCr {0} -Schedule_a_build_with_parameters=Build mit Parametern planen f\u00FCr {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_el.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_el.properties deleted file mode 100644 index c31c100730f6ccab5c9f377de4ddd732b719453c..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_el.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Schedule_a_build=\u0395\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 \u0394\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2 \u03B3\u03B9\u03B1 {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_eo.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_eo.properties deleted file mode 100644 index 9a226e1ff5540441c1d35212a83892878de5aefe..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_eo.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Schedule_a_build=Enhorarigi konstruon por {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_es.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_es.properties deleted file mode 100644 index 039c98f4bff8b94540955c2f2d34bde3a46eac52..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_es.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=Ejecuci\u00F3n programada -Schedule_a_build=Programar una construcci\u00F3n de {0} -Schedule_a_build_with_parameters=Planificar una construcci\u00F3n con parametros de {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_es_AR.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_es_AR.properties deleted file mode 100644 index 014de880f19c86952d61d7bd5a699030565fe02f..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_es_AR.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Build_scheduled=Corrida en espera -Schedule_a_build=Activar una corrida de {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_et.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_et.properties deleted file mode 100644 index 689c082d1c0d860af040f9872eca80416c1fdc72..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_et.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Build_scheduled=Ehitus planeeritud -Schedule_a_build=Plaani uus t\u00F6\u00F6\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_eu.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_eu.properties deleted file mode 100644 index 7d21004037a2faf671d7157d31f105738ee31088..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_eu.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Build_scheduled=Exekuzioa planifikatu da -Schedule_a_build=Eraikuntza antolatu\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_fi.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_fi.properties deleted file mode 100644 index c29801ba3b57e7d0de90b0b34ef8c9f9c39972a9..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_fi.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=Ajastettu buildi -Schedule_a_build=Aloita k\u00E4\u00E4nn\u00F6s\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_fr.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_fr.properties deleted file mode 100644 index 3ae8f854b6bec9a03d4fcd77e273ff5cd8529451..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_fr.properties +++ /dev/null @@ -1,26 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant, Martin Eigenbrodt -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=Prochaines ex\u00E9cutions - -Schedule_a_build=Programmer une construction pour {0} -Schedule_a_build_with_parameters=Planifier une construction avec des param\u00E8tres pour {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ga_IE.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_ga_IE.properties deleted file mode 100644 index 73e43fa66bc8d06d26a9d50ff73fe4c91daff831..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ga_IE.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Schedule_a_build=Sceideal t\u00F3g\u00E1il\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_he.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_he.properties deleted file mode 100644 index 16e0cef6b33089b3cdab0503a2fb989206ef79d5..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_he.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=\u05D1\u05E0\u05D9\u05D4 \u05DE\u05EA\u05D5\u05D6\u05DE\u05E0\u05EA -Schedule_a_build=\u05EA\u05D6\u05DE\u05DF \u05D1\u05E0\u05D9\u05D4\u003a {0} -Schedule_a_build_with_parameters=\u05EA\u05D6\u05DE\u05DF \u05D1\u05E0\u05D9\u05D4 \u05E2\u05DD \u05E4\u05E8\u05DE\u05D8\u05E8\u05D9\u05DD\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_hi_IN.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_hi_IN.properties deleted file mode 100644 index 5e60575fecb889c000853db8cad6763e6d6fc2f7..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_hi_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Schedule_a_build=Build \u0915\u0940 \u0938\u092E\u092F \u0938\u093E\u0930\u0923\u0940 \u092C\u0928\u093E\u092F\u0947\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_hu.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_hu.properties deleted file mode 100644 index 612478b4f0457d9780f201ce3cf80c2132cc5b7b..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_hu.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=Build \u00FCtemezve -Schedule_a_build=Build \u00FCtemez\u00E9se\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_id.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_id.properties deleted file mode 100644 index 72dbfb41f9c33a557e3e6dcd45843c301a0a0c98..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_id.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Build_scheduled=Pekerjaan terjadwal -Schedule_a_build=Jadwalkan pekerjaan\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_is.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_is.properties deleted file mode 100644 index d3d4d38df05dbf269549b2435eef9403e3e2ad0b..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_is.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Schedule_a_build=Setja keyrslu \u00ED r\u00F6\u00F0 fyrir {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_it.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_it.properties deleted file mode 100644 index 7f47abbc68a5209d242e840eda72742f3b12249c..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_it.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=Build pianificata -Schedule_a_build=Pianifica una build per {0} -Schedule_a_build_with_parameters=Pianifica una build personalizzata per {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ja.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_ja.properties deleted file mode 100644 index ba9f00f5dd46933e15599faf675d6aa924d91c5b..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ja.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2013, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe, id:cactusman, Martin Eigenbrodt -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Schedule_a_build=\u30d3\u30eb\u30c9\u5b9f\u884c\u003a {0} -Schedule_a_build_with_parameters=\u30d1\u30e9\u30e1\u30fc\u30bf\u4ed8\u304d\u30d3\u30eb\u30c9\u5b9f\u884c\u003a {0} -Build_scheduled=\u30d3\u30eb\u30c9\u306f\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3055\u308c\u307e\u3057\u305f\u3002 diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_kn.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_kn.properties deleted file mode 100644 index 3b703fea3d55c943beb6071f4ab1c196c438e344..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_kn.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Build_scheduled=\u0CA8\u0CBF\u0C97\u0CA6\u0CBF\u0CA4 \u0CA8\u0CBF\u0CB0\u0CCD\u0CAE\u0CBE\u0CA3 \u003a {0} -Schedule_a_build=\u0C92\u0C82\u0CA6\u0CC1 \u0CA8\u0CBF\u0CB0\u0CCD\u0CAE\u0CBE\u0CA3 \u0CB5\u0CC6\u0CD5\u0CB3\u0CBE\u0CAA\u0C9F\u0CCD\u0C9F\u0CBF\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ko.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_ko.properties deleted file mode 100644 index d97a057e194cbde3fe9fff23cbac830a7c73185d..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ko.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Sung Kim, id:cactusman, Martin Eigenbrodt -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=\uBE4C\uB4DC\uAC00 \uC608\uC57D\uB418\uC5C8\uC2B5\uB2C8\uB2E4. -Schedule_a_build=\uBE4C\uB4DC \uC989\uC2DC \uC2E4\uD589\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_lt.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_lt.properties deleted file mode 100644 index 77fe4d6a89ec0d6921bd3210b54134cad397f67b..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_lt.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=Kompiliavimo tvarkara\u0161tis -Schedule_a_build=Planuoti u\u017Eduot\u012F\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_lv.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_lv.properties deleted file mode 100644 index c539dc58807eca61a08d2feef3e296c319bf8c13..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_lv.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=B\u016Bv\u0113jums iepl\u0101nots -Schedule_a_build=Iepl\u0101not b\u016Bv\u0113jumu\u003a {0} -Schedule_a_build_with_parameters=Iepl\u0101not parametriz\u0113tu b\u016Bv\u0113jumu\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_mk.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_mk.properties deleted file mode 100644 index f57328abaf96403e97a717c358ff4f0d719084b3..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_mk.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Schedule_a_build=\u0417\u0430\u043A\u0430\u0436\u0438 build-\u0430\u045A\u0435\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_mr.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_mr.properties deleted file mode 100644 index b29f7be1cd83b342f0777de2064a45298c893668..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_mr.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Schedule_a_build=\u092A\u0941\u0922\u0940\u0932 \u092C\u093E\u0902\u0927\u094D\u0915\u093E\u092E\u091A\u0940 \u0935\u0947\u0933 \u0920\u0930\u0935\u093E\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_nb_NO.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_nb_NO.properties deleted file mode 100644 index d066866c0d63a2f378ffa1f116cc67479e2f40cc..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_nb_NO.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=Bygg planlagt -Schedule_a_build=Planlegg et bygg for {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_nl.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_nl.properties deleted file mode 100644 index 3dfee37435428be952afc305ed6468ab5d2df332..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_nl.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh, Martin Eigenbrodt -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=Build geplanned -Schedule_a_build=Plan een project voor {0} -Schedule_a_build_with_parameters=Plan een build met parameters voor {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_pl.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_pl.properties deleted file mode 100644 index e462d92c6208773205588489ed17a81e56832514..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_pl.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=Budowanie zosta\u0142o zaplanowane -Schedule_a_build=Dodaj budowanie do kolejki dla {0} -Schedule_a_build_with_parameters=Zbuduj z parametrami dla {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_pt_BR.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_pt_BR.properties deleted file mode 100644 index 04959a2886aeaf07f7b4b90b51e70cba8a457400..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_pt_BR.properties +++ /dev/null @@ -1,27 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, -# Reginaldo L. Russinholi, Martin Eigenbrodt, Cleiber Silva, Fernando Boaglio, -# Bruno Meneguello -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=Builds agendados -Schedule_a_build=Agendar um build\u003a {0} -Schedule_a_build_with_parameters=Agendar compila\u00e7\u00e3o com par\u00e2metros\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_pt_PT.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_pt_PT.properties deleted file mode 100644 index e23e3567c34574bbd4db8adc91cbaf7e4b45998f..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_pt_PT.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=Compila\u00E7\u00E3o agendada -Schedule_a_build=Agendar uma compila\u00E7\u00E3o\u003a {0} -Schedule_a_build_with_parameters=Agendar compila\u00E7\u00E3o com par\u00E2metros\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ro.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_ro.properties deleted file mode 100644 index b461a98be284a04e8b94e70b8596dc7de70168c8..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ro.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=Build programat -Schedule_a_build=Programeaz\u0103 un build pentru {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ru.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_ru.properties deleted file mode 100644 index ff02568785e49052df923b06ff80ba034cf82332..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ru.properties +++ /dev/null @@ -1,27 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov, Martin Eigenbrodt -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=\u0421\u0431\u043e\u0440\u043a\u0430 \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0430 - -!!! NB Change my previsous translation of this field to this value!!! -Schedule_a_build=\u0417\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0431\u043e\u0440\u043a\u0443\u003a {0} -Schedule_a_build_with_parameters=\u0417\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0431\u043e\u0440\u043a\u0443 \u0441 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430\u043c\u0438\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_sk.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_sk.properties deleted file mode 100644 index 6dde922e369186590ddd1575badb80a1edd28f0d..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_sk.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=Napl\u00E1novan\u00E9 zostavenia -Schedule_a_build=Napl\u00E1nuj zostavenie pre {0} -Schedule_a_build_with_parameters=Napl\u00E1nuj zostavenie s parametrami pre {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_sl.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_sl.properties deleted file mode 100644 index 1038c11c9147ff65085a5ef3b8fcb1dfa4080c7a..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_sl.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Schedule_a_build=Na\u010Drtuj build\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_sr.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_sr.properties deleted file mode 100644 index 98c763b42ce4280a77c7f6bec05e9523f67bb62a..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_sr.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Build_scheduled=Plan pokretanja -Schedule_a_build=Zaka\u017Ei gradnju \u0437\u0430 {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_sv_SE.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_sv_SE.properties deleted file mode 100644 index 1b20eb77db88c6a6b75b0c842c81f974fe589fc8..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_sv_SE.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=Bygge schemalagt -Schedule_a_build=Schemal\u00E4gg ett bygge f\u00FCr {0} -Schedule_a_build_with_parameters=Schemal\u00E4gg ett bygge med parametrar f\u00FCr {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_te.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_te.properties deleted file mode 100644 index f8a5ebae595475d21e8e3821c4867c4e71040a76..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_te.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Build_scheduled=Build varusa kramamu lo unchabadinadi -Schedule_a_build=Build ni varusa kramamu lo pettumu\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_tr.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_tr.properties deleted file mode 100644 index bbfd79a2061fce1c60cc74a605778de8606565c2..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_tr.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag, Martin Eigenbrodt -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=Yap\u0131land\u0131rma planland\u0131 -Schedule_a_build=Bir\ yap\u0131land\u0131rma\ planla\u003a {0} -Schedule_a_build_with_parameters=Parametreli yap\u0131land\u0131rma planla\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_uk.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_uk.properties deleted file mode 100644 index 506c29ee130434f7acae8cf752e4b59fd68f7572..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_uk.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=\u0417\u0431\u0456\u0440\u043A\u0438 \u0437\u0430\u043F\u043B\u0430\u043D\u043E\u0432\u0430\u043D\u0430 -Schedule_a_build=\u0417\u0430\u043F\u043B\u0430\u043D\u0443\u0432\u0430\u0442\u0438 \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0443\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_zh_CN.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_zh_CN.properties deleted file mode 100644 index c5222b638b6e2fff56fbeed2447e7bfa010ff4c8..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_zh_CN.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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_scheduled=\u6784\u5EFA\u8BA1\u5212 -Schedule_a_build=\u8ba1\u5212\u4e00\u6b21\u6784\u5efa\u003a {0} -Schedule_a_build_with_parameters=\u8BA1\u5212\u4E00\u6B21\u5E26\u53C2\u6570\u7684\u6784\u5EFA\u003a {0} diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_zh_TW.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_zh_TW.properties deleted file mode 100644 index fc76ede1fd470e2f550680499b5d1b8786293850..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_zh_TW.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Schedule_a_build=\u6392\u7a0b\u5efa\u7f6e\u4f5c\u696d -Build_scheduled=\u5efa\u7f6e\u5df2\u52a0\u9032\u6392\u7a0b\u003a {0} -Schedule_a_build_with_parameters=\u53C3\u6578\u5316\u5EFA\u7F6E\u003a {0} diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs.jelly b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs.jelly index 10b55865f6aef2cf8ce977f243f4b32a87362a0c..e49686bf358c1081a0432af8452f4c83839d9002 100644 --- a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs.jelly +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs.jelly @@ -26,8 +26,8 @@ THE SOFTWARE. - - + + +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -New\ View=\u041D\u043E\u0432 \u0438\u0437\u0433\u043B\u0435\u0434 +New\ View=\ + \u041d\u043e\u0432 \u0438\u0437\u0433\u043b\u0435\u0434 diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_hi_IN.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_hi_IN.properties deleted file mode 100644 index 999b8eb4988e6cf142967b69749a425d2b1adad1..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_hi_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -New\ View=\u0928\u092F\u093E \u0926\u094D\u0930\u0936\u094D\u092F diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_kn.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_kn.properties deleted file mode 100644 index 6026558a3976807ad7ac05d0419bdc6c3fad5d0b..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_kn.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -New\ View=\u0CB9\u0CCA\u0CB8 \u0CA8\u0CC6\u0CC2\u0CD5\u0C9F diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_sr.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_sr.properties index e072208cd44cfcb66986afab9efe2ae273b658e8..f8ec299e020f6eb33f50a540d14d21a6d7cfde3b 100644 --- a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_sr.properties +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -New\ View=Novi pogled +New\ View=\u041D\u043E\u0432\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs.jelly b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs.jelly index 10b55865f6aef2cf8ce977f243f4b32a87362a0c..e49686bf358c1081a0432af8452f4c83839d9002 100644 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs.jelly +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs.jelly @@ -26,8 +26,8 @@ THE SOFTWARE. - - + + # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -New\ View=\u041D\u043E\u0432 \u0438\u0437\u0433\u043B\u0435\u0434 +New\ View=\ + \u041d\u043e\u0432 \u0438\u0437\u0433\u043b\u0435\u0434 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_bn_IN.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_bn_IN.properties deleted file mode 100644 index 88b57a3b7d5efcd6e8bbc83d5c05bae890957925..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_bn_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -New\ View=\u09A8\u09C2\u09A4\u09A8 \u09A6\u09C3\u09B6\u09CD\u09AF diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_eu.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_eu.properties deleted file mode 100644 index a4fbb0f5b08390a3d2411a74eb1b429afd4a9106..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_eu.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -New\ View=Ikuspegi Berria diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_hi_IN.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_hi_IN.properties deleted file mode 100644 index 8f46a0e8040dbfb5ac2768766ab6f7d55137115f..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_hi_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -New\ View=\u0928\u092F\u093E \u0926\u0947\u0916\u0947\u0902 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_id.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_id.properties deleted file mode 100644 index 31adcab0545d1bbe16b05bc27cf24b20a926a147..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_id.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -New\ View=Tampilan Baru diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_is.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_is.properties deleted file mode 100644 index c6e2f17dbf6287f87b749cbeb2dd4a5b46f9fbcd..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_is.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -New\ View=N\u00FD s\u00FDn diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ka.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ka.properties deleted file mode 100644 index c647fa13d81f24186079875b870b7e0f306ecd80..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ka.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -New\ View=\u10D0\u10EE\u10D0\u10DA\u10D8 \u10EE\u10D4\u10D3\u10D8 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_kn.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_kn.properties deleted file mode 100644 index 71849fb2f9cb892c2306410772429130310cfdc5..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_kn.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -New\ View=\u0CB9\u0CC6\u0CC2\u0CB8 \u0CA8\u0CC6\u0CC2\u0CD5\u0C9F diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_mr.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_mr.properties deleted file mode 100644 index 9c7039b531a8237a24308d90277a71522483b243..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_mr.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -New\ View=\u0928\u0935\u0940\u0928 \u0926\u0947\u0916\u093E\u0935\u093E diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_pa_IN.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_pa_IN.properties deleted file mode 100644 index 555978e51f75f20d2b6634ffa5a83764150daa48..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_pa_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -New\ View=NAVIN DIKH diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sr.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sr.properties index d115f683741c97018bc0e2bb4d4392948aa4c4f9..f8ec299e020f6eb33f50a540d14d21a6d7cfde3b 100644 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sr.properties +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -New\ View=Novi prikaz +New\ View=\u041D\u043E\u0432\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ta.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ta.properties deleted file mode 100644 index 87dbedcf52a3b1946d2c1288e44cda294183bfec..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ta.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -New\ View=\u0BAA\u0BC1\u0BA4\u0BC1\u0BAA\u0BCD \u0BAA\u0BBE\u0BB0\u0BCD\u0BB5\u0BC8 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_te.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_te.properties deleted file mode 100644 index 5ffc4d26f73a44f0cc865c65743836485c20cbe0..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_te.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -New\ View=Kotha View diff --git a/core/src/main/resources/hudson/views/GlobalDefaultViewConfiguration/config_bg.properties b/core/src/main/resources/hudson/views/GlobalDefaultViewConfiguration/config_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..d92ae346a92272810b8de0a81455a6f5f30b3ad9 --- /dev/null +++ b/core/src/main/resources/hudson/views/GlobalDefaultViewConfiguration/config_bg.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Default\ view=\ + \u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0435\u043d \u0438\u0437\u0433\u043b\u0435\u0434 diff --git a/core/src/main/resources/hudson/views/GlobalDefaultViewConfiguration/config_sr.properties b/core/src/main/resources/hudson/views/GlobalDefaultViewConfiguration/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..136fa5e10584f72524ce606e5ab38b93d6eebf7b --- /dev/null +++ b/core/src/main/resources/hudson/views/GlobalDefaultViewConfiguration/config_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Default\ view=\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u043D\u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434 \ No newline at end of file diff --git a/core/src/main/resources/hudson/views/JobColumn/columnHeader_pl.properties b/core/src/main/resources/hudson/views/JobColumn/columnHeader_pl.properties deleted file mode 100644 index 77f02c61ead12390af15905876aef653ba8e527d..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/JobColumn/columnHeader_pl.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Job=Zadanie diff --git a/core/src/main/resources/hudson/views/JobColumn/columnHeader_sr.properties b/core/src/main/resources/hudson/views/JobColumn/columnHeader_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..c573467a68a04843b02f6138d52aed3f8d358ee2 --- /dev/null +++ b/core/src/main/resources/hudson/views/JobColumn/columnHeader_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Job=\u0417\u0430\u0434\u0430\u0442\u0430\u043A diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_bg.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_bg.properties index a4eb002195025e81f2dde2ccaf92c7dd3840d557..bc3f6e1c227a0c7b3d4840735845d4b12c8361bd 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_bg.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u0430 \u043F\u0440\u043E\u0434\u044A\u043B\u0436\u0438\u0442\u0435\u043B\u043D\u043E\u0441\u0442 +Last\ Duration=\ + \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0430 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u043e\u0441\u0442 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_bn_IN.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_bn_IN.properties deleted file mode 100644 index cb28a94b8f3cf6f69ea306e6fa7b24d81bf1a502..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_bn_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Duration=\u0985\u09A8\u09CD\u09A4\u09BF\u09AE \u09A6\u09C8\u09B0\u09CD\u0998 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_en_GB.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_en_GB.properties deleted file mode 100644 index 09f2e20a2ae901a32d065d9726b34bb273f004f0..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_en_GB.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - - diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_eo.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_eo.properties deleted file mode 100644 index 77f4229e05dc3e1f219332fbf06f582c5710a8c2..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_eo.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Last\ Duration=Lasta tempoda\u016Dro diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_eu.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_eu.properties deleted file mode 100644 index 55f90ba09e6ffde49ea1aae10d3ad27480144843..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_eu.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Last\ Duration=Azken iraupena diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ga_IE.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ga_IE.properties deleted file mode 100644 index ded0866443838fb9bc999eda2a4db4e525c94fbf..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ga_IE.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Duration=Tr\u00E9imhse is d\u00E9ana\u00ED diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_hi_IN.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_hi_IN.properties deleted file mode 100644 index 21bc4b9e389e009a9db0b5232e2b7b3b8be74c83..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_hi_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Duration=\u0905\u0902\u0924\u093F\u092E \u0905\u0935\u0927\u093F diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_id.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_id.properties deleted file mode 100644 index 34159ad354bef3f10a5ab4e35e3afcc7f6059ff7..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_id.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Last\ Duration=Durasi Terakhir diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_is.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_is.properties deleted file mode 100644 index 0fe198388fc13e37815ad28844cbb054fbc85b40..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_is.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Last\ Duration=T\u00EDmi s\u00ED\u00F0ustu keyrslu diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ka.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ka.properties deleted file mode 100644 index 0ed0259ab9e3212ba2d55b3e549e1937e4c5aa58..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ka.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Duration=\u10D1\u10DD\u10DA\u10DD \u10EE\u10D0\u10DC\u10D2\u10E0\u10EB\u10DA\u10D8\u10D5\u10DD\u10D1\u10D0 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_kn.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_kn.properties deleted file mode 100644 index daee4f9e487d4c97b04c03b85d207cf7c80af2c5..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_kn.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Duration=\u0C95\u0CC6\u0CC2\u0CA8\u0CC6\u0CAF \u0C85\u0CB5\u0CA7\u0CBF diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_mk.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_mk.properties deleted file mode 100644 index 8aed61546c7568019b6f6fd62068df34b2417675..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_mk.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Duration=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u043E \u0442\u0440\u0430\u0435\u045A\u0435 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_mr.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_mr.properties deleted file mode 100644 index 08128c3efe6db7ee28a4fcf4d1d280968da107d4..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_mr.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Last\ Duration=\u0936\u0947\u0935\u091F\u091A\u093E \u0932\u093E\u0917\u0932\u0947\u0932\u093E \u0935\u0947\u0933 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_pa_IN.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_pa_IN.properties deleted file mode 100644 index 6ef6c5171a271d910d33f62f5eff3be1a29e2030..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_pa_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Duration=AAKHRI SAMAA diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_pl.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_pl.properties index 772faa8053d15631a2b02fae7bfae90766908531..450a3a885331801399a4686781191284b9a5db12 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_pl.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=Czas ostatniego budowania +Last\ Duration=Czas trwania diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_si.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_si.properties deleted file mode 100644 index 59bf05cbdc3f4fe57eb4527b5503e4fe8296b2da..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_si.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Duration=\u0D85\u0DB1\u0DCA\u0DAD\u0DD2\u0DB8\u0DA7 \u0DC4\u0DAF\u0DB4\u0DD4 \u0DB4\u0DD0\u0D9A\u0DDA\u0DA2 \u0D91\u0D9A\u0DA7 \u0D9C\u0DD2\u0DBA \u0D9A\u0DCF\u0DBD\u0DBA diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sr.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sr.properties index 0dc0c40cfeb37d6c14adfecce606279e48d74c6b..04663dcd00f8252d8e77da63d77be0ba241d8419 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sr.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Last\ Duration=Poslednje trajanje +Last\ Duration=\u0422\u0440\u0430\u0458\u0430\u045A\u0435 \u0437\u0430\u0434\u045A\u0435\u0433 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ta.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ta.properties deleted file mode 100644 index effd893d515fae07475770ea4d047859d655ec82..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ta.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Duration=\u0B87\u0BB1\u0BC1\u0BA4\u0BBF\u0BAF\u0BBE\u0BA9 \u0BA8\u0BC7\u0BB0\u0BAE\u0BCD diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_te.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_te.properties deleted file mode 100644 index 18e7bee27e94b9a2c15a24668d9f58a17447b133..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_te.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Duration=Chivari sari thesukunna Samayamu diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_bg.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_bg.properties index c7bb92380325cf6254a331f7f808bfc01855d6e4..16104e2cd096e9e02147fea03489f4af2be5134e 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/column_bg.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_bg.properties @@ -1,3 +1,24 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -N/A=\u043D\u0435 \u0435 \u043D\u0430\u043B\u0438\u0447\u043D\u043E +N/A=\ + \u043b\u0438\u043f\u0441\u0432\u0430 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_eu.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_eu.properties deleted file mode 100644 index b713e36a50a9657e30b0bbdfb60007863ee2c994..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastDurationColumn/column_eu.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -N/A=Z/E diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_hi_IN.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_hi_IN.properties deleted file mode 100644 index f3c680fc63c453da093ad7b788146dde822ca7c3..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastDurationColumn/column_hi_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -N/A=\u0932\u093E\u0917\u0941 \u0928\u0939\u0940\u0902 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_is.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_is.properties deleted file mode 100644 index a0d087bb22257dd94fe7897e93560169bbd16ca1..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastDurationColumn/column_is.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -N/A=\u00C1 ekki vi\u00F0 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_kn.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_kn.properties deleted file mode 100644 index a8191ffeda4ca162b73d05aa0fee0ca7a8320265..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastDurationColumn/column_kn.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -N/A=Idu illa diff --git a/core/src/main/resources/hudson/model/View/People/index_eu.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_sr.properties similarity index 73% rename from core/src/main/resources/hudson/model/View/People/index_eu.properties rename to core/src/main/resources/hudson/views/LastDurationColumn/column_sr.properties index e366a8bd48ed730938b96a451f94c7a66bbfd95b..8a2491e155deeae4f4576167a8c063bdfd7e621f 100644 --- a/core/src/main/resources/hudson/model/View/People/index_eu.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -People=Gendea +N/A=\u041D/\u0414 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_bg.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_bg.properties index 1193a2c148987f1167497f8faeb39df4db518243..ce8b3902b9829e1d6892f8e6ff002567240fcb19 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_bg.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=\u041F\u043E\u0441\u043B\u0435\u0434\u0435\u043D \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u0435\u043D +Last\ Failure=\ + \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_bn_IN.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_bn_IN.properties deleted file mode 100644 index 5aec2800fa247bf7973a65f3762714e5e96b3073..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_bn_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Failure=\u0985\u09A8\u09CD\u09A4\u09BF\u09AE \u09AC\u09CD\u09AF\u09B0\u09CD\u09A5 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_en_GB.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_en_GB.properties deleted file mode 100644 index 09f2e20a2ae901a32d065d9726b34bb273f004f0..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_en_GB.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - - diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_eo.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_eo.properties deleted file mode 100644 index 792c18edbd78a4783a5807c09b48e3754549729a..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_eo.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Last\ Failure=Lasta malsukceso diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_eu.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_eu.properties deleted file mode 100644 index b8ae1463e2116cd628a8b518aa874a2cd53e5582..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_eu.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Last\ Failure=Azken porrota diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ga_IE.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ga_IE.properties deleted file mode 100644 index d6cd1a3f01f536e3a7792235b710af0918207093..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ga_IE.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Failure=Leagan is d\u00E9ana\u00ED a theip diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_hi_IN.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_hi_IN.properties deleted file mode 100644 index 4472961ccf5498784385713b976bc861edcfe00b..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_hi_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Failure=\u0905\u0902\u0924\u093F\u092E \u0935\u093F\u092B\u0932\u0924\u093E diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_id.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_id.properties deleted file mode 100644 index f2337c8148ff198a530b5ce7a0603ef787d81476..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_id.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Last\ Failure=Kegagalan Terakhir diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_is.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_is.properties deleted file mode 100644 index 99df53b2d6ab14a066ac101e69ea337951924747..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_is.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Last\ Failure=S\u00ED\u00F0ast mistekist diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ka.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ka.properties deleted file mode 100644 index d8b0c7ce0c72b92b514ae9a4c090ab384b5ad899..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ka.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Failure=\u10D1\u10DD\u10DA\u10DD \u10EC\u10D0\u10E0\u10E3\u10DB\u10D0\u10E2\u10D4\u10D1\u10DA\u10DD\u10D1\u10D0 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_kn.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_kn.properties deleted file mode 100644 index 271aef45c5854be90d69aa2e6e813e0cf166d258..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_kn.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Failure=\u0C95\u0CC6\u0CC2\u0CA8\u0CC6\u0CAF \u0CB5\u0CC6\u0CD6\u0CAB\u0CB2\u0CCD\u0CAF diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_mr.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_mr.properties deleted file mode 100644 index 71dcc99ebacf0c90ab75b0703d04bf1dc06bd517..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_mr.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Last\ Failure=\u0936\u0947\u0935\u091F\u091A\u0947 \u0905\u092A\u092F\u0936 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_pa_IN.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_pa_IN.properties deleted file mode 100644 index 338b40099118dcffe48ca78091d23e758db55b9b..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_pa_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Failure=AAKHRI HAAR diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_si.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_si.properties deleted file mode 100644 index cfb624416f598b8f762a3dcd7f11ca4be0f36c65..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_si.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Failure=\u0D85\u0DB1\u0DCA\u0DAD\u0DD2\u0DB8\u0DA7 \u0DC0\u0DD0\u0DBB\u0DAF\u0DD2\u0DA0\u0DCA\u0DA0 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sr.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sr.properties index a26e6b3c24da85ae819949dc03197044e41d519b..8109ac216398c309bb8e6e247f627a353bc9c222 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sr.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Last\ Failure=Poslednja gre\u0161ka +Last\ Failure=\u0417\u0430\u0434\u045A\u0435 \u0441\u0430 \u0433\u0440\u0435\u0448\u043A\u0430\u043C\u0430 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ta.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ta.properties deleted file mode 100644 index 0b3da453d0c3a6c3c313b54cc1fb3d044313805a..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ta.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Failure=\u0B87\u0BB1\u0BC1\u0BA4\u0BBF\u0BAF\u0BBE\u0BA9 \u0BA4\u0BCB\u0BB2\u0BCD\u0BB5\u0BBF diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_te.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_te.properties deleted file mode 100644 index 6f4a1e52084955d16241103f4b250b55a911a7bd..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_te.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Failure=Chivari sari viphalamindi diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_bg.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_bg.properties index bf85796b54605134c665d9a6cfa65b4d90fb84e9..16104e2cd096e9e02147fea03489f4af2be5134e 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/column_bg.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_bg.properties @@ -1,3 +1,24 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -N/A=- +N/A=\ + \u043b\u0438\u043f\u0441\u0432\u0430 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_hi_IN.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_hi_IN.properties deleted file mode 100644 index f16653e889393f422b49626b251ed8d349343050..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastFailureColumn/column_hi_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -N/A=\u0932\u093E\u0917\u0942 \u0928\u0939\u0940\u0902 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_is.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_is.properties deleted file mode 100644 index a0d087bb22257dd94fe7897e93560169bbd16ca1..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastFailureColumn/column_is.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -N/A=\u00C1 ekki vi\u00F0 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_kn.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_kn.properties deleted file mode 100644 index dd5e1f1782feb1154fd4165a3e927ac7d6770a53..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastFailureColumn/column_kn.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -N/A=\u0CB8\u0C82\u0CAC\u0C82\u0CA6\u0CBF\u0CB8\u0CBF\u0CB2 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_mr.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_mr.properties deleted file mode 100644 index 522a62dc4b43ee0fc8888967c24d951962b75b11..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastFailureColumn/column_mr.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -N/A=\u0932\u093E\u0917\u0942 \u0928\u093E\u0939\u0940 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_sr.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_sr.properties index 5506e1cdd2ff593eaa7aad1920e6c4ae696e137c..8a2491e155deeae4f4576167a8c063bdfd7e621f 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/column_sr.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -N/A=Nije dostupno +N/A=\u041D/\u0414 diff --git a/core/src/main/resources/hudson/views/LastStableColumn/columnHeader_bg.properties b/core/src/main/resources/hudson/views/LastStableColumn/columnHeader_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..8eaf3a2bd444f3da15b263d01a76d1a87e2b6298 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastStableColumn/columnHeader_bg.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Last\ Stable=\ + \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e \u0441\u0442\u0430\u0431\u0438\u043b\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 diff --git a/core/src/main/resources/hudson/views/LastStableColumn/columnHeader_sr.properties b/core/src/main/resources/hudson/views/LastStableColumn/columnHeader_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..3d3642c740dd8bcd38b879fdff869b4168a8bdde --- /dev/null +++ b/core/src/main/resources/hudson/views/LastStableColumn/columnHeader_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Stable=\u0417\u0430\u0434\u045A\u0435 \u0441\u0442\u0430\u0431\u0438\u043B\u043D\u0430 diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_bg.properties b/core/src/main/resources/hudson/views/LastStableColumn/column_bg.properties similarity index 79% rename from core/src/main/resources/hudson/views/BuildButtonColumn/column_bg.properties rename to core/src/main/resources/hudson/views/LastStableColumn/column_bg.properties index 400d3577717b2ee3bd4b528e8b5c82c35c465495..16104e2cd096e9e02147fea03489f4af2be5134e 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_bg.properties +++ b/core/src/main/resources/hudson/views/LastStableColumn/column_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build_scheduled=\u0411\u0438\u043B\u0434\u0430 \u0431\u0435\u0448\u0435 \u043D\u0430\u0441\u0440\u043E\u0447\u0435\u043D -Schedule_a_build=\u041D\u0430\u0441\u0440\u043E\u0447\u0438 \u0431\u0438\u043B\u0434 \u0437\u0430 {0} +N/A=\ + \u043b\u0438\u043f\u0441\u0432\u0430 diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_bn_IN.properties b/core/src/main/resources/hudson/views/LastStableColumn/column_sr.properties similarity index 73% rename from core/src/main/resources/hudson/model/ComputerSet/index_bn_IN.properties rename to core/src/main/resources/hudson/views/LastStableColumn/column_sr.properties index da7fb5ad97a058cbb6c0636eb6f35a2d64ce43a1..8a2491e155deeae4f4576167a8c063bdfd7e621f 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_bn_IN.properties +++ b/core/src/main/resources/hudson/views/LastStableColumn/column_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Name=e +N/A=\u041D/\u0414 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_bg.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_bg.properties index 20e2cc8d349342de9443039b6231bf81a865a8ca..1510b1a47f723400467e8694ddb6bf94901cce95 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_bg.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=\u041F\u043E\u0441\u043B\u0435\u0434\u0435\u043D \u0443\u0441\u043F\u0435\u0448\u0435\u043D +Last\ Success=\ + \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_bn_IN.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_bn_IN.properties deleted file mode 100644 index 42b30523114b743ef4f878c50d92874b53569008..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_bn_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Success=\u0985\u09A8\u09CD\u09A4\u09BF\u09AE \u09B8\u09AB\u09B2 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_en_GB.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_en_GB.properties deleted file mode 100644 index 09f2e20a2ae901a32d065d9726b34bb273f004f0..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_en_GB.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - - diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_eo.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_eo.properties deleted file mode 100644 index 1b62bd4a2d2817635304796551a40e946b2c3bc4..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_eo.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Last\ Success=Lasta sukceso diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_eu.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_eu.properties deleted file mode 100644 index fd7f978bfc33577f53d0745bcb2e63e8aa10d9cb..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_eu.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Last\ Success=Azken arrakasta diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ga_IE.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ga_IE.properties deleted file mode 100644 index 6175d68e23fa03225b012ffe534b13a061b83820..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ga_IE.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Success=Leagan is d\u00E9ana\u00ED a d''\u00E9irigh leis diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_hi_IN.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_hi_IN.properties deleted file mode 100644 index d024e7cff5970d5ea8e4cd393bd740b95d8b7997..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_hi_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Success=\u0905\u0902\u0924\u093F\u092E \u0938\u092B\u0932\u0924\u093E diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_id.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_id.properties deleted file mode 100644 index c4322a0f0b212e6e70f858e620c0942c846fdab7..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_id.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Last\ Success=Kesuksesan Terakhir diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_is.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_is.properties deleted file mode 100644 index 8585ec314e2d131a6f66b3d7bfdf0654059381f2..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_is.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Last\ Success=S\u00ED\u00F0ast heppna\u00F0 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ka.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ka.properties deleted file mode 100644 index dcaa6bc2623ca93ba9ddb6d1ace42fb93fc8905f..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ka.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Success=\u10D1\u10DD\u10DA\u10DD \u10EC\u10D0\u10E0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D0 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_kn.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_kn.properties deleted file mode 100644 index 9f463c178066d6117d69a7b91aecfc001d055227..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_kn.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Success=\u0C95\u0CC6\u0CC2\u0CA8\u0CC6\u0CAF \u0CAF\u0CB6\u0CB8\u0CCD\u0CB8\u0CC1 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_mr.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_mr.properties deleted file mode 100644 index dc2601e05b61251276be35985c0f5b2136f1ffd0..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_mr.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Last\ Success=\u0936\u0947\u0935\u091F\u091A\u0947 \u092F\u0936 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_pa_IN.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_pa_IN.properties deleted file mode 100644 index 2c1951ed2130e08b793db5135aef2a8fc3580b50..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_pa_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Success=AAKHRI SAFALTA diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_si.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_si.properties deleted file mode 100644 index d8411d309f53b3a1daf6b7e9272bfee8731bb12a..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_si.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Success=\u0D85\u0DB1\u0DCA\u0DAD\u0DD2\u0DB8\u0DA7 \u0DC4\u0DAF\u0DB4\u0DD4 \u0DC4\u0DDC\u0DB3 \u0DB4\u0DD0\u0D9A\u0DDA\u0DA2 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sr.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sr.properties index 6dd5d603403254bae2b0a58c8ad928c97526ef60..977d468796a48149d71aebc91dee00c19ca02d0b 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sr.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Last\ Success=Poslednje uspe\u0161no +Last\ Success=\u0417\u0430\u0434\u045A\u0435 \u0443\u0441\u043F\u0435\u0448\u043Da diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ta.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ta.properties deleted file mode 100644 index 34afcd3e2c6ab742e53b73c870036dde793e86f5..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ta.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Success=\u0B87\u0BB1\u0BC1\u0BA4\u0BBF\u0BAF\u0BBE\u0BA9 \u0BB5\u0BC6\u0BB1\u0BCD\u0BB1\u0BBF diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_te.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_te.properties deleted file mode 100644 index bbf6d053a13929ac0e69fcc2d1b34187eb2ac9a1..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_te.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Last\ Success=Chivari sari pani chesindi diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_bg.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_bg.properties index c7bb92380325cf6254a331f7f808bfc01855d6e4..16104e2cd096e9e02147fea03489f4af2be5134e 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/column_bg.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_bg.properties @@ -1,3 +1,24 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -N/A=\u043D\u0435 \u0435 \u043D\u0430\u043B\u0438\u0447\u043D\u043E +N/A=\ + \u043b\u0438\u043f\u0441\u0432\u0430 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_eo.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_eo.properties deleted file mode 100644 index 20ca946e6c646093dae8711e24d2f075ed512586..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/column_eo.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -N/A=--- diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_eu.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_eu.properties deleted file mode 100644 index b713e36a50a9657e30b0bbdfb60007863ee2c994..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/column_eu.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -N/A=Z/E diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_hi_IN.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_hi_IN.properties deleted file mode 100644 index f3c680fc63c453da093ad7b788146dde822ca7c3..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/column_hi_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -N/A=\u0932\u093E\u0917\u0941 \u0928\u0939\u0940\u0902 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_id.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_id.properties deleted file mode 100644 index 86fd1005bb177a5c8f81712ebdf5138d3e41489c..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/column_id.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -N/A=Kosong diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_is.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_is.properties deleted file mode 100644 index a0d087bb22257dd94fe7897e93560169bbd16ca1..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/column_is.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -N/A=\u00C1 ekki vi\u00F0 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_kn.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_kn.properties deleted file mode 100644 index 337202c2e1fa89329543cec6f6da8c4e58491e50..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/column_kn.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -N/A=idu illa diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_bn_IN.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_sr.properties similarity index 73% rename from core/src/main/resources/hudson/security/SecurityRealm/loginLink_bn_IN.properties rename to core/src/main/resources/hudson/views/LastSuccessColumn/column_sr.properties index f1834aef083606a889e7b5253266c36b33ab85f4..8a2491e155deeae4f4576167a8c063bdfd7e621f 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_bn_IN.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -login=eee +N/A=\u041D/\u0414 diff --git a/core/src/main/resources/hudson/views/Messages.properties b/core/src/main/resources/hudson/views/Messages.properties index eef88e72663ed764506e094b2adf5dddfc1137b6..34cfb87fbd2e9051e9cf743f7a6912031807e227 100644 --- a/core/src/main/resources/hudson/views/Messages.properties +++ b/core/src/main/resources/hudson/views/Messages.properties @@ -30,3 +30,5 @@ StatusColumn.DisplayName=Status WeatherColumn.DisplayName=Weather DefaultViewsTabsBar.DisplayName=Default Views TabBar DefaultMyViewsTabsBar.DisplayName=Default My Views TabBar + +GlobalDefaultViewConfiguration.ViewDoesNotExist=The specified view does not exist: {0} diff --git a/core/src/main/resources/hudson/views/Messages_bg.properties b/core/src/main/resources/hudson/views/Messages_bg.properties index 517870597a0dce58459be144d546c1d9210b0442..69a1733513e235d58fb549bf37b2b9f20ca3a19e 100644 --- a/core/src/main/resources/hudson/views/Messages_bg.properties +++ b/core/src/main/resources/hudson/views/Messages_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Bulgarian translation copyright 2015 Alexander Shopov . +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, 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/views/Messages_de.properties b/core/src/main/resources/hudson/views/Messages_de.properties index c030ebc410cbae90e3b14f68cd070f8b073bcd60..16a61512392f121ccd2b83f197be6c335383fef5 100644 --- a/core/src/main/resources/hudson/views/Messages_de.properties +++ b/core/src/main/resources/hudson/views/Messages_de.properties @@ -20,7 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -BuildButtonColumn.DisplayName=Build-Schaltflche +BuildButtonColumn.DisplayName=Build-Schaltfl\u00E4che +DefaultMyViewsTabsBar.DisplayName=Standard-Tab-Leiste f\u00FCr meine Ansichten +DefaultViewsTabsBar.DisplayName=Standard-Tab-Leiste f\u00FCr Ansichten +JobColumn.DisplayName=Name LastDurationColumn.DisplayName=Letzte Dauer LastFailureColumn.DisplayName=Letzter Fehlschlag LastStableColumn.DisplayName=Letzter stabiler Build diff --git a/core/src/main/resources/hudson/views/Messages_pl.properties b/core/src/main/resources/hudson/views/Messages_pl.properties index 088bf10ca230014164cfc1d1eb346b085b8de59b..e1d95e801cd70cbd3d0e10976fa83b05c05ba9d5 100644 --- a/core/src/main/resources/hudson/views/Messages_pl.properties +++ b/core/src/main/resources/hudson/views/Messages_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2016, Damian Szczepanik +# Copyright (c) 2016-2017, Damian Szczepanik # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -19,5 +19,12 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. - JobColumn.DisplayName=Nazwa +LastSuccessColumn.DisplayName=Ostatni sukces +LastDurationColumn.DisplayName=Ostatni czas trwania +WeatherColumn.DisplayName=Prognoza +StatusColumn.DisplayName=Status +LastStableColumn.DisplayName=Ostatnie stabilne +BuildButtonColumn.DisplayName=Przycisk budowania +LastFailureColumn.DisplayName=Ostatnie niepowodzenie +DefaultViewsTabsBar.DisplayName=Domy\u015Blny widok pasek kart diff --git a/core/src/main/resources/hudson/views/Messages_sr.properties b/core/src/main/resources/hudson/views/Messages_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..0ed7e3366a9995a8a8589eed382a7703d96da81c --- /dev/null +++ b/core/src/main/resources/hudson/views/Messages_sr.properties @@ -0,0 +1,12 @@ +# This file is under the MIT License by authors + +BuildButtonColumn.DisplayName=\u0414\u0443\u0433\u043C\u0435 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 +JobColumn.DisplayName=\u0418\u043C\u0435 +LastFailureColumn.DisplayName=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u0430 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 +LastDurationColumn.DisplayName=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u043E \u0442\u0440\u0430\u0458\u0430\u045A\u0435 +LastSuccessColumn.DisplayName=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 +LastStableColumn.DisplayName=\u041F\u043E\u0441\u043B\u0435\u0434\u045A\u0430 \u0441\u0442\u0430\u0431\u0438\u043B\u043D\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 +StatusColumn.DisplayName=\u0421\u0442\u0430\u045A\u0435 +WeatherColumn.DisplayName=\u0412\u0440\u0435\u043C\u0435\u043D\u0441\u043A\u0430 \u043F\u0440\u043E\u0433\u043D\u043E\u0437\u0430 +DefaultViewsTabsBar.DisplayName=\u0422\u0440\u0430\u043A\u0430 \u0437\u0430 \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u043D\u0435 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0435 +DefaultMyViewsTabsBar.DisplayName=\u0422\u0440\u0430\u043A\u0430 \u0437\u0430 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u0435 \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u043D\u0435 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0435 \ No newline at end of file diff --git a/core/src/main/resources/hudson/views/MyViewsTabBar/GlobalConfigurationImpl/config_bg.properties b/core/src/main/resources/hudson/views/MyViewsTabBar/GlobalConfigurationImpl/config_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..49ebba10eb7cd725fe9ca702ff4e014fbae83bb3 --- /dev/null +++ b/core/src/main/resources/hudson/views/MyViewsTabBar/GlobalConfigurationImpl/config_bg.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +My\ Views\ Tab\ Bar=\ + \u041b\u0435\u043d\u0442\u0430 \u0437\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u0438\u0437\u0433\u043b\u0435\u0434\u0438 diff --git a/core/src/main/resources/hudson/views/MyViewsTabBar/GlobalConfigurationImpl/config_sr.properties b/core/src/main/resources/hudson/views/MyViewsTabBar/GlobalConfigurationImpl/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..c99dc05905aac7591d1a80df3d152f69425a494c --- /dev/null +++ b/core/src/main/resources/hudson/views/MyViewsTabBar/GlobalConfigurationImpl/config_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +My\ Views\ Tab\ Bar=\u0422\u0440\u0430\u043A\u0430 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u0438\u0445 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430 +Views\ Tab\ Bar=\u0422\u0440\u0430\u043A\u0430 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430 \ No newline at end of file diff --git a/core/src/main/resources/hudson/views/MyViewsTabBar/GlobalConfigurationImpl/help-myViewsTabBar_bg.html b/core/src/main/resources/hudson/views/MyViewsTabBar/GlobalConfigurationImpl/help-myViewsTabBar_bg.html new file mode 100644 index 0000000000000000000000000000000000000000..e37a61aa9b7f5cf4089ca748ae81d70223f88a53 --- /dev/null +++ b/core/src/main/resources/hudson/views/MyViewsTabBar/GlobalConfigurationImpl/help-myViewsTabBar_bg.html @@ -0,0 +1,7 @@ +
    + Ако сте създали множество собствени изгледи в „Моите изгледи“, лентата за + изгледите става прекалено дълга. Точката за разширение „MyViewsTabBar“ дава + възможност на приставките да предоставят собствена реализация на лентата. + Това падащо меню съдържа наличните реализации за лентата. Само една от тях + може да е включена. Изберете я от падащия списък. +
    \ No newline at end of file diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_bg.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_bg.properties index 21599b2bde9f3ea0b04bfd06bce085e372d01d13..2eec4596f7604db9a1376ad0d619a4f105c43e3c 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_bg.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=\u0421\u044A\u0441\u0442\u043E\u044F\u043D\u0438\u0435 \u043D\u0430 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0438\u044F \u0431\u0438\u043B\u0434 +Status\ of\ the\ last\ build=\ + \u0421\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043d\u0430 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u043e\u0442\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 +S=\ + \u0421 diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_eo.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_eo.properties deleted file mode 100644 index 7e4734219330d41e8dea80b7c39d431465d35bc0..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_eo.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Status\ of\ the\ last\ build=Statuso de la lasta konstruo diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_eu.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_eu.properties deleted file mode 100644 index f7478bebb82cfed51d9655ededcaee5e52d996c9..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_eu.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Status\ of\ the\ last\ build=Azken lanaren egoera diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ga_IE.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ga_IE.properties deleted file mode 100644 index c731e281aab63d65387d861268cf0f9409aa715e..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ga_IE.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Status\ of\ the\ last\ build=St\u00E1das an leagain is d\u00E9ana\u00ED diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_hi_IN.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_hi_IN.properties deleted file mode 100644 index 9fa8c933eb89734a8f4941ad91a3e380dccfd889..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_hi_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Status\ of\ the\ last\ build=\u0905\u0902\u0924\u093F\u092E \u0928\u093F\u0930\u094D\u092E\u093E\u0923 \u0915\u0940 \u0938\u094D\u0925\u093F\u0924\u093F diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_id.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_id.properties deleted file mode 100644 index 530ff481566e907fa2c1301ea7014fe9d31ce433..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_id.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Status\ of\ the\ last\ build=Status pembangunan terakhir diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_is.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_is.properties deleted file mode 100644 index 31fb689712a557f072416c6c9f3b55981a7f4d6f..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_is.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Status\ of\ the\ last\ build=Sta\u00F0a s\u00ED\u00F0ustu keyrslu diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_kn.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_kn.properties deleted file mode 100644 index c564139a4be11d89f1bf1e3c2062f758dd2a4821..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_kn.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Status\ of\ the\ last\ build=\u0C95\u0CC6\u0CC2\u0CA8\u0CC6\u0CAF \u0CA8\u0CBF\u0CB0\u0CCD\u0CAE\u0CBE\u0CA3 \u0CB8\u0CCD\u0CA5\u0CBF\u0CA4\u0CBF diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_mr.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_mr.properties deleted file mode 100644 index b8a553410a200c8cc66621092668067aff5c14e3..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_mr.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Status\ of\ the\ last\ build=\u092E\u093E\u0917\u0940\u0932 \u092C\u093E\u0902\u0927\u0915\u093E\u092E\u093E\u091A\u0947 \u0938\u094D\u0925\u093F\u0924\u0940 diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pa_IN.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pa_IN.properties deleted file mode 100644 index ab8419f40224595a40cbb33f3faa17d9aa526657..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pa_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Status\ of\ the\ last\ build=AAKRI BANNTAR DA HAAL diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pl.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pl.properties index 5e9c9c7f7bc159d9e998017227ac3c8f2376542d..03e5ddcf764fecf498b3bdc3a843d6d9e9473a87 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pl.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2004-2016, Sun Microsystems, Inc., Damian Szczepanik # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=Status ostatniego budowania +Status\ of\ the\ last\ build=Status ostatniego zadania +S=S diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_si.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_si.properties deleted file mode 100644 index 82b7fa259fe0eacd88fecf628a4f7853c8634df8..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_si.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Status\ of\ the\ last\ build=\u0D85\u0DB1\u0DCA\u0DAD\u0DD2\u0DB8\u0DA7 \u0DC4\u0DAF\u0DB4\u0DD4 \u0DB4\u0DD0\u0D9A\u0DDA\u0DA2 \u0D91\u0D9A\u0DDA \u0DAD\u0DAD\u0DCA\u0DC0\u0DBA diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_sr.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_sr.properties index 23fd1afde124d3f9be116e602bc9a9460808c0f6..cd82ecab210a3691fd8f11af285fe1ec58e4bc33 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_sr.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Status\ of\ the\ last\ build=Status poslednje gradnje +Status\ of\ the\ last\ build=\u0421\u0442\u0430\u045A\u0435 \u043F\u043E\u0441\u043B\u0435\u0434\u045A\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ta.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ta.properties deleted file mode 100644 index 5d7f3eb6dfbb67dffc2dd47d2d83d3b1dedc56f7..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ta.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Status\ of\ the\ last\ build=\u0B95\u0B9F\u0BA8\u0BCD\u0BA4 \u0B89\u0BB0\u0BC1\u0BB5\u0BBE\u0B95\u0BCD\u0B95\u0BAA\u0BCD\u0BAA\u0BA3\u0BBF\u0BAF\u0BBF\u0BA9\u0BCD \u0BA8\u0BBF\u0BB2\u0BC8 diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_te.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_te.properties deleted file mode 100644 index ac0cd80d7592cb47526b86d5757f29f67f291f20..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_te.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Status\ of\ the\ last\ build=Chivari build yokka sthithi diff --git a/core/src/main/resources/hudson/views/ViewsTabBar/GlobalConfigurationImpl/config_bg.properties b/core/src/main/resources/hudson/views/ViewsTabBar/GlobalConfigurationImpl/config_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..274d1ccc14e84955e2c4175f12a95f77901ef1e8 --- /dev/null +++ b/core/src/main/resources/hudson/views/ViewsTabBar/GlobalConfigurationImpl/config_bg.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Views\ Tab\ Bar=\ + \u041b\u0435\u043d\u0442\u0430 \u0437\u0430 \u0438\u0437\u0433\u043b\u0435\u0434\u0438 diff --git a/core/src/main/resources/hudson/views/ViewsTabBar/GlobalConfigurationImpl/config_sr.properties b/core/src/main/resources/hudson/views/ViewsTabBar/GlobalConfigurationImpl/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..d8d6bba6d01168738ef81d8dd61a97636244094a --- /dev/null +++ b/core/src/main/resources/hudson/views/ViewsTabBar/GlobalConfigurationImpl/config_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Views\ Tab\ Bar=\u0422\u0440\u0430\u043A\u0430 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430 \ No newline at end of file diff --git a/core/src/main/resources/hudson/views/ViewsTabBar/GlobalConfigurationImpl/help-viewsTabBar_bg.html b/core/src/main/resources/hudson/views/ViewsTabBar/GlobalConfigurationImpl/help-viewsTabBar_bg.html new file mode 100644 index 0000000000000000000000000000000000000000..2c4e9cc5a5ad271d9c0c563e5931aa81b5f0af58 --- /dev/null +++ b/core/src/main/resources/hudson/views/ViewsTabBar/GlobalConfigurationImpl/help-viewsTabBar_bg.html @@ -0,0 +1,8 @@ +
    + + Ако сте създали множество собствени изгледи, стандартната лента за изгледите + става прекалено дълга. Точката за разширение „ViewsToolBar“ дава възможност + на приставките да предоставят собствена реализация на лентата. Това падащо + меню съдържа наличните реализации за лентата. Само една от тях може да е + включена. Изберете я от падащия списък. +
    \ No newline at end of file diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_bg.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_bg.properties index d2eff49e0b5a3a505ffec731c8ec94aebac7c5f0..e956271eda99289f1a177f9c44630a8bc406f175 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_bg.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_bg.properties @@ -1,3 +1,26 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u0410\u0433\u0440\u0435\u0433\u0438\u0440\u0430\u043D \u0441\u0442\u0430\u0442\u0443\u0441 \u043E\u0442 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0438\u0442\u0435 \u0431\u0438\u043B\u0434\u043E\u0432\u0435 +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\ + \u0421\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043d\u0430 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0442\u0435 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f +W=\ + \u0421 diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_eo.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_eo.properties deleted file mode 100644 index 989bd3edf9dffc5b7fb766974fbf3a86f39dd4a5..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_eo.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Vetera raporto montranta la resumitan statuson de la lasta konstruoj diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_eu.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_eu.properties deleted file mode 100644 index 36f5c3620518d969eb92b3509c104fa6ceea102c..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_eu.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Lan berria ohartzen du eguraldiaren iragarpena diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ga_IE.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ga_IE.properties deleted file mode 100644 index 09b7b613a5e82d93e7973755f7bf98e76468653a..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ga_IE.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Tuairisc a thaispe\u00E1nann an st\u00E1das ginear\u00E1lta diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_hi_IN.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_hi_IN.properties deleted file mode 100644 index 07a89374680b019c049f1abcea07f18d641361ca..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_hi_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u092E\u094C\u0938\u092E \u092E\u0947\u0902 \u0939\u0940 \u092C\u0928\u093E\u0924\u093E \u0939\u0948 \u0915\u0940 \u0915\u0941\u0932 \u0938\u094D\u0925\u093F\u0924\u093F \u0926\u093F\u0916\u093E\u0928\u0947 \u0935\u093E\u0932\u0940 \u0930\u093F\u092A\u094B\u0930\u094D\u091F diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_id.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_id.properties deleted file mode 100644 index c3ec4d9c9009cfe83e2c041f3f8e9b7728f55340..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_id.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Laporan cuaca memperlihatkan status teragregasi dari pembangunan terakhir diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_is.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_is.properties deleted file mode 100644 index a0f894ec8e0bcc5f46ca99fb8696909bd4fea2de..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_is.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Ve\u00F0ursp\u00E1 sem s\u00FDnir sameina\u00F0a st\u00F6\u00F0u n\u00FDlegra keyrslna diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_kn.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_kn.properties deleted file mode 100644 index 882e8a14d74d9ead7fbe4ddd32d992170d44905d..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_kn.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u0C87\u0CA4\u0CCD\u0CA4\u0CBF\u0CD5\u0C9A\u0CBF\u0CA8 \u0CAC\u0CBF\u0CB2\u0CCD\u0CA1\u0CCD\u0C97\u0CB3 \u0C92\u0C9F\u0CCD\u0C9F\u0CC1\u0C97\u0CC2\u0CA1\u0CBF\u0CB8\u0CBF\u0CA6 \u0CB8\u0CCD\u0CA5\u0CBF\u0CA4\u0CBF \u0CA4\u0CC6\u0CC2\u0CD5\u0CB0\u0CBF\u0CB8\u0CC1\u0CB5 \u0CB9\u0CB5\u0CBE\u0CAE\u0CBE\u0CA8 \u0CB5\u0CB0\u0CA6\u0CBF diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_mr.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_mr.properties deleted file mode 100644 index 5a8142f1527107521d06ef40c6ec67aa1f66d0aa..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_mr.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u092E\u093E\u0917\u0940\u0932 \u092C\u093E\u0902\u0927\u0915\u093E\u092E\u093E\u091A\u0947 \u0938\u0902\u092F\u0941\u0915\u094D\u0924 \u0938\u094D\u0925\u093F\u0924\u0940 \u0926\u0930\u094D\u0936\u093F\u0935\u094D\u0923\u093E\u0930\u0947 \u0939\u0935\u093E\u092E\u093E\u0928 diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pl.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pl.properties index 50c75740e6f938ea551b823a842ee5634f7686e9..c72e61f1b9be6f2a35c5abfec5fd048b3ad0036e 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pl.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2004-2016, Sun Microsystems, Inc., Damian Szczepanik # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Raport z ostatnich budowa\u0144 +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Raport z ostatnich zada\u0144 +W=P diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_si.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_si.properties deleted file mode 100644 index 7e0b32632ca7981edb408c61dcf8d66fbf825444..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_si.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u0D9A\u0DCF\u0DBD\u0D9C\u0DD4\u0DAB \u0DC3\u0DBD\u0D9A\u0DD4\u0DAB\u0DD4 \u0DC0\u0DBD\u0DD2\u0DB1\u0DCA \u0DB4\u0DD9\u0DB1\u0DCA\u0DB1\u0DB1\u0DCA\u0DB1\u0DDA \u0DBD\u0D9F\u0DAF\u0DD2 \u0DC4\u0DAF\u0DB4\u0DD4 \u0DB4\u0DD0\u0D9A\u0DDA\u0DA2 \u0DC0\u0DBD \u0DC3\u0DB8\u0DD4\u0DC4 \u0DAD\u0DAD\u0DCA\u0DC0\u0DBA\u0DBA\u0DD2 diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sr.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sr.properties index 9e5e28e3a5aee799ac4192f8c12eb497039c817a..a82a73c5f89719d74fccb5792ba94674fd6ce645 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sr.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sr.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Vremenski izve\u0161taj prikazuje prikupljen status posljednjih verzija +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u0412\u0440\u0435\u043C\u0435\u043D\u0441\u043A\u0430 \u043F\u0440\u043E\u0433\u043D\u043E\u0437\u0430 \u043A\u043E\u0458\u0430 \u043F\u0440\u0438\u043A\u0430\u0436\u0435 \u0443\u043E\u043F\u0448\u0442\u0438 \u0441\u0442\u0430\u045A\u0435 \u043F\u043E\u0441\u043B\u0435\u0434\u045A\u0438\u0445 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ta.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ta.properties deleted file mode 100644 index 85eb0159955acf15a5b56bdb9e5944dcd7b57af0..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ta.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u0B85\u0BA3\u0BCD\u0BAE\u0BC8\u0BAF \u0B89\u0BB0\u0BC1\u0BB5\u0BBE\u0B95\u0BCD\u0B95\u0BAA\u0BCD\u0BAA\u0BA3\u0BBF\u0B95\u0BB3\u0BBF\u0BA9\u0BCD \u0BB5\u0BBE\u0BA9\u0BBF\u0BB2\u0BC8 diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_te.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_te.properties deleted file mode 100644 index 39a9e236ea02f4430de079f0daa76ce3dd4dbf80..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_te.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Etivali Builds yokka samuhika nivedika diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_bg.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_bg.properties deleted file mode 100644 index da63260520d130864997b2eccfa449b8ed9a6409..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_bg.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -cancel\ this\ build=\u043E\u0442\u043A\u0430\u0436\u0438 -pending=\u0438\u0437\u0447\u0430\u043A\u0432\u0430\u043D\u0435 diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_cs.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_cs.properties deleted file mode 100644 index c0646b71a5bdb5c5fe8010fac92a02074098a54e..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_cs.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -cancel\ this\ build=zru\u0161it tento build -pending=prob\u00EDh\u00E1 diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_da.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_da.properties deleted file mode 100644 index 10a3abc1df881e407408528f5ef787f17d7779cc..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_da.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -cancel\ this\ build=annuller dette byg -pending=venter diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_de.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_de.properties deleted file mode 100644 index f3c9aa3dc458f1758b7a0d1aa8da398226ae2a3d..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_de.properties +++ /dev/null @@ -1,2 +0,0 @@ -pending=in Bearbeitung -cancel\ this\ build=Build abbrechen \ No newline at end of file diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_el.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_el.properties deleted file mode 100644 index 3eb4e28aa724ebaf8a8ee5e90f281b6b46a87b04..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_el.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -pending=\u03C3\u03B5 \u03B5\u03BA\u03BA\u03C1\u03B5\u03BC\u03CC\u03C4\u03B7\u03C4\u03B1 diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_es.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_es.properties deleted file mode 100644 index 003d058296fb0a987bf81b034627169e7d368c92..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_es.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -pending=pendiente -cancel\ this\ build=Cancelar esta ejecucin diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_et.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_et.properties deleted file mode 100644 index c8e942804d3aaecb273c1f1bdde3598e695522f6..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_et.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -cancel\ this\ build=katkesta see ehitust\u00F6\u00F6 -pending=ootel diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_he.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_he.properties deleted file mode 100644 index 5025e0e460c01f732b75bca664cd7d0e25c03882..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_he.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -cancel\ this\ build=\u05D1\u05D8\u05DC \u05D1\u05E0\u05D9\u05D4 \u05D6\u05D5 -pending=\u05DE\u05DE\u05EA\u05D9\u05DF diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_hu.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_hu.properties deleted file mode 100644 index fd157020d9849e8716187552d9a3a7e7e5430c3a..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_hu.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -cancel\ this\ build=build megszak\u00EDt\u00E1sa -pending=folyamatban diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_id.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_id.properties deleted file mode 100644 index c29c8cb335efc8d8f6af5d6be90e7854d2e41a7a..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_id.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -pending=ditunda diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_it.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_it.properties deleted file mode 100644 index d210c738dddb99925128c654aef573ca70e59741..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_it.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -cancel\ this\ build=Annulla questo build -pending=in attesa diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_ja.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_ja.properties deleted file mode 100644 index 9241f393f7f2b62257c03ae9c37e23a635ceb224..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_ja.properties +++ /dev/null @@ -1,26 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -pending=\u4fdd\u7559 -cancel\ this\ build=\u3053\u306e\u30d3\u30eb\u30c9\u3092\u4e2d\u6b62 -Expected\ build\ number=\u6b21\u30d3\u30eb\u30c9No - diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_ko.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_ko.properties deleted file mode 100644 index 53a941f547a9155066bf31776bb47556e121e39f..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_ko.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -cancel\ this\ build=\uBE4C\uB4DC\uCDE8\uC18C -pending=\uB300\uAE30\uC5F4 diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_lv.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_lv.properties deleted file mode 100644 index 4d2e4035b29ed2c1877ee677a6b5b03f20daee64..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_lv.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -cancel\ this\ build=atcelt \u0161o b\u016Bv\u0113jumu -pending=gaida diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_nb_NO.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_nb_NO.properties deleted file mode 100644 index 3e0077b87f7a55d7313d1446e7626dc99ce4f684..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_nb_NO.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -cancel\ this\ build=avbryt dette bygge -pending=venter diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_nl.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_nl.properties deleted file mode 100644 index 1c159f0f3293b7a1710e7f77144981d8e4af15a6..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_nl.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -pending=gepland -cancel\ this\ build=annuleer deze bouw poging diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_pl.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_pl.properties deleted file mode 100644 index e306eb89d1040bdf666dc8c0260347683941c378..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_pl.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -cancel\ this\ build=anuluj build -pending=oczekiwanie diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_pt_BR.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_pt_BR.properties deleted file mode 100644 index 5e1396527f7821c700c7474e8b4dfc7300cb66d9..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_pt_BR.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc., Cleiber Silva, Fernando Boaglio -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -pending=Pendente -cancel\ this\ build=Cancelar essa builds diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_pt_PT.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_pt_PT.properties deleted file mode 100644 index 86a3ce75953fc64e93f70c61f784d1a201379499..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_pt_PT.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -cancel\ this\ build=cancelar este build -pending=pendente diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_ru.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_ru.properties deleted file mode 100644 index 0c6637083db3e801ccd5b8e1f7d3cdcdad27559c..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_ru.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -cancel\ this\ build=\u041E\u0442\u043C\u0435\u043D\u0438\u0442\u044C \u0441\u0431\u043E\u0440\u043A\u0443 -pending=\u041E\u0436\u0438\u0434\u0430\u043D\u0438\u0435 diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_sk.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_sk.properties deleted file mode 100644 index 88d64d1702adc3d1c6ed767eb00a5b1f21ab2dbf..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_sk.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -cancel\ this\ build=zru\u0161 toto zostavenie -pending=\u010Dakaj\u00FAci diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_sl.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_sl.properties deleted file mode 100644 index 665e2f556842f2f11c7e56f4aee9164a2af8be0a..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_sl.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -cancel\ this\ build=Prekini build -pending=v izvajanju diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_sv_SE.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_sv_SE.properties deleted file mode 100644 index d4bd376631d32f774960421611f9f40fe7647cea..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_sv_SE.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -cancel\ this\ build=Avbryt detta bygge -pending=P\u00E5g\u00E5ende diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_tr.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_tr.properties deleted file mode 100644 index 371372020afd56c9ad5488b529c265373e82ff38..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_tr.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -cancel\ this\ build=Yap\u0131land\u0131rmay\u0131 durdur -pending=ask\u0131da diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_uk.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_uk.properties deleted file mode 100644 index 9dbd7335fce70f4c729d6c22b9b08760ded33ebf..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_uk.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -cancel\ this\ build=\u0437\u0443\u043F\u0438\u043D\u0438\u0442\u0438 \u0446\u0435\u0439 \u0431\u0456\u043B\u0434 -pending=\u0427\u0435\u043A\u0430\u0454 diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_zh_CN.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_zh_CN.properties deleted file mode 100644 index 1c18f80d56f0efb7e3d6150644916271cea3345c..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_zh_CN.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -cancel\ this\ build=\u53D6\u6D88\u6B64\u6784\u5EFA -pending=\u8FDE\u63A5\u7B49\u5F85\u4E2D diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_zh_TW.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_zh_TW.properties deleted file mode 100644 index 51313958ab299d05299c4cabeaa5c29efd4dc877..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_zh_TW.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -cancel\ this\ build=\u53d6\u6d88\u9019\u6b21\u5efa\u7f6e -pending=\u64f1\u7f6e\u4e2d diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry.jelly b/core/src/main/resources/hudson/widgets/HistoryWidget/entry.jelly index 215cb4d54a339fe7c29e4369de4f90896450c7ef..42212f8583678db862275323a427bc0d38a12389 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry.jelly +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry.jelly @@ -61,8 +61,8 @@ THE SOFTWARE.
    - - + +
    diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry.properties new file mode 100644 index 0000000000000000000000000000000000000000..6aa3af4cc19b3750c49d1c803ab7b18c9f7551c5 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry.properties @@ -0,0 +1 @@ +confirm=Are you sure you want to abort {0}? diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_bg.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_bg.properties index 75285c4330bd15251abea45c569d3e43518b71be..210cd27a86c6e57f69f27c2bb9b95ece818681ac 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_bg.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u041A\u043E\u043D\u0437\u043E\u043B\u0435\u043D \u0438\u0437\u0445\u043E\u0434 +Console\ Output=\ + \u041a\u043e\u043d\u0437\u043e\u043b\u0435\u043d \u0438\u0437\u0445\u043e\u0434 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_de.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_de.properties index b69dbaf245d3f4dbd48963942802c8e1b137dabe..4a7b2d438a581ebdace1fb28d20d0ba2d18a41fb 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_de.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_de.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Console\ Output=Konsolenausgabe +confirm=M\u00F6chten Sie {0} wirklich abbrechen? diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_eu.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_eu.properties deleted file mode 100644 index 28f63d8ab0bd34a9431a76848b363ce8664b5ab9..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_eu.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Console\ Output=Kontsolaren irteera diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_gl.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_gl.properties deleted file mode 100644 index 06ff63b37278b4a7017060b1d612f80c52065eaf..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_gl.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Console\ Output=Mensaxes da terminal diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_kn.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_kn.properties deleted file mode 100644 index 03f9bf6188de134244fb40be4241ac15cba93c51..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_kn.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Console\ Output=\u0C95\u0CBE\u0C82\u0CB8\u0CCB\u0CB2\u0CC6 \u0C94\u0C9F\u0CCD\u0CAA\u0CC1\u0C9F\u0CCD diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_pl.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_pl.properties index 3dc5cc2c1e0a9998e457438159491881f0a17c35..d648319d06bf1b55c02d28b3e4547e6dc6d99f38 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_pl.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Wyj\u015Bcie konsoli +Console\ Output=Logi konsoli diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_sr.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_sr.properties index 1695ebc85e80a6304df2939da855403a729a27c9..c44ac8dff6a868776511419ed5a3dcb34f6fb73f 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_sr.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_sr.properties @@ -1,3 +1,4 @@ # This file is under the MIT License by authors -Console\ Output=Konzolni Output +confirm=\u0414\u0430 \u043B\u0438 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u043E\u0442\u043A\u0430\u0436\u0435\u0442\u0435 \u043F\u043B\u0430\u043D\u0438\u0440\u0430\u043D\u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443 {0}? +Console\ Output=\u041A\u043E\u043D\u0437\u043E\u043B\u043D\u0438 \u0438\u0441\u0445\u043E\u0434 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_th.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_th.properties deleted file mode 100644 index 527edc86e5e861adf8ac99560987f39d0c6722a9..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_th.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -Console\ Output=\u0E40\u0E2D\u0E32\u0E17\u0E4C\u0E1E\u0E38\u0E17\u0E17\u0E35\u0E48\u0E41\u0E2A\u0E14\u0E07\u0E43\u0E19\u0E04\u0E2D\u0E19\u0E42\u0E0B\u0E25 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index.jelly b/core/src/main/resources/hudson/widgets/HistoryWidget/index.jelly index fbb461b9ce3d87db46d140a2f3ac62271b7cb801..b4ffcd388584e4272b98c3f7f5e8980ac123fde4 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index.jelly +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index.jelly @@ -119,6 +119,6 @@ THE SOFTWARE.
    diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_bg.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_bg.properties index 5797ac76ce0efdb95f1c6519de80672760aa965f..4711b43705b5feb4c195543d06062698e643bdc4 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_bg.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,7 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -More\ ...=\u041F\u043E\u0432\u0435\u0447\u0435... -for\ all=\u0437\u0430 \u0432\u0441\u0438\u0447\u043A\u0438 -for\ failures=\u0437\u0430 \u043F\u0440\u043E\u043F\u0430\u0434\u0430\u0449\u0438\u0442\u0435 -trend=\u0442\u0440\u0435\u043D\u0434 +for\ all=\ + \u0437\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 +for\ failures=\ + \u0437\u0430 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u0438\u0442\u0435 +trend=\ + \u0442\u0440\u0435\u043d\u0434 +Clear=\ + \u0418\u0437\u0447\u0438\u0441\u0442\u0432\u0430\u043d\u0435 +find=\ + \u0422\u044a\u0440\u0441\u0435\u043d\u0435 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_bn_IN.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_bn_IN.properties deleted file mode 100644 index 40b5e920870c8d7e6f65715dce47922cf593979d..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_bn_IN.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -for\ all=\u09B8\u0995\u09B2\u09C7\u09B0 \u099C\u09A8\u09CD\u09AF diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_ca.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_ca.properties index e1a3bacfbf3a5d0be7e7f48c80bd9f0fccd34580..6c691a2a9b12f215f37aefe30dbb798868ef6071 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_ca.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_ca.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -More\ ...=Mes... +More\ ...=M\u00E9s... for\ all=per a tot for\ failures=per a les fallades trend=tend\u00E8ncia diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_de.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_de.properties index 8160d2a74aea6b2b3f5676e200c8477b2369d8f8..5cf034dce4590db8da7326018cf35ca2a522fa60 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_de.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_de.properties @@ -23,4 +23,5 @@ trend=Trend for\ all=aller Builds for\ failures=der Fehlschl\u00E4ge -More\ ...=Mehr... +find=suchen +Clear=Zur\u00FCcksetzen diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_gl.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_gl.properties deleted file mode 100644 index 9f42a0e6f3256eecc354429abbdca5e279264bd3..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_gl.properties +++ /dev/null @@ -1,6 +0,0 @@ -# This file is under the MIT License by authors - -More\ ...=M\u00E1is ... -for\ all=de todo -for\ failures=dos erros -trend=tendencia diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_gu_IN.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_gu_IN.properties deleted file mode 100644 index 7b8c5e730c279477a93da2ce964f130eb1acdca2..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_gu_IN.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -for\ all=\u0AAC\u0AA7\u0ABE \u0AAE\u0ABE\u0A9F\u0AC7 -for\ failures=\u0AA8\u0ABF\u0AB7\u0ACD\u0AAB\u0AB3 \u0AAE\u0ABE\u0A9F\u0AC7 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_hi_IN.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_hi_IN.properties deleted file mode 100644 index ee89a02b95b2a9005b67f2d91b8d3b9f193bebb9..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_hi_IN.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -trend=\u092A\u094D\u0930\u0935\u0943\u0924\u094D\u0924\u093F - diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_id.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_id.properties deleted file mode 100644 index e6b9ef51f0798320532a67c50b12d640d1ca05c4..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_id.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -More\ ...=Selanjutnya ... diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_is.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_is.properties deleted file mode 100644 index 49bf018a7dae2e01605a436ef999799af15a7099..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_is.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -More\ ...=Meira ... -for\ all=fyrir allar keyrslur -for\ failures=fyrir misteknar keyrslur diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_kn.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_kn.properties deleted file mode 100644 index 2726574b64433143e60e09a8a1ae76722d9db356..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_kn.properties +++ /dev/null @@ -1,5 +0,0 @@ -# This file is under the MIT License by authors - -for\ all=\u0C8E\u0CB2\u0CCD\u0CB2\u0CBE\u0CA6\u0C95\u0CC1 -for\ failures=\u0C8E\u0CB2\u0CBE \u0CB8\u0CCB\u0CB2\u0CBF\u0C97\u0CC6 -trend=\u0C97\u0CA4\u0CBF\u0CB5\u0CBF\u0CA7\u0CBF diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_mr.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_mr.properties deleted file mode 100644 index 77fae8e6546cf0d9384129b6aa2b278d500a1a87..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_mr.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -More\ ...=\u0905\u0927\u093F\u0915 ... diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_pl.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_pl.properties index 7e8a35df856c71e215874ffa6f21dc7ff53c1be8..5bae63c7f74bb45054f53d80c530100bcd74e5eb 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_pl.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2004-2016, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributors # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,6 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -More\ ...=Wi\u0119cej ... for\ all=Dla wszystkich for\ failures=dla nieudanych +Clear=wyszy\u015B\u0107 +trend=trend +find=szukaj diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_si.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_si.properties deleted file mode 100644 index 2960b3dc94e4fabb1a3764949d87914801b56536..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_si.properties +++ /dev/null @@ -1,3 +0,0 @@ -# This file is under the MIT License by authors - -trend=\u0DB1\u0DD0\u0DB9\u0DD4\u0DBB\u0DD4\u0DC0 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_sr.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_sr.properties index 7c753aa453a0ccabfd8f3b3fb5961e6ac41ef2f3..f3e3827619ab97300caa7489638f81de77ba40d1 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_sr.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_sr.properties @@ -1,5 +1,8 @@ # This file is under the MIT License by authors -More\ ...=Vi\u0161e -for\ all=za sve -for\ failures=za otkaze +for\ all=\u0437\u0430 \u0441\u0432\u0435 +for\ failures=\u0437\u0430 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0438\u0435 +trend=\u0442\u0440\u0435\u043D\u0434 +Clear=\u0418\u0437\u0431\u0440\u0438\u0448\u0438 +find=\u043F\u043E\u0442\u0440\u0430\u0436\u0438 +More\ ...=\u0412\u0438\u0448\u0435 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_th.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_th.properties deleted file mode 100644 index ac87a46e46d8180eb54e2e2d965018fba0f024e0..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_th.properties +++ /dev/null @@ -1,5 +0,0 @@ -# This file is under the MIT License by authors - -for\ all=\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 -for\ failures=\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E04\u0E27\u0E32\u0E21\u0E25\u0E49\u0E21\u0E40\u0E2B\u0E25\u0E27 -trend=\u0E41\u0E19\u0E27\u0E42\u0E19\u0E49\u0E21 diff --git a/core/src/main/resources/hudson/widgets/Messages_bg.properties b/core/src/main/resources/hudson/widgets/Messages_bg.properties index 861f6002f359a8b9f1cf55048558dc8a0bdb5df5..32947f29e176c8f63acebf8b967e3cb1dd4d4c6f 100644 --- a/core/src/main/resources/hudson/widgets/Messages_bg.properties +++ b/core/src/main/resources/hudson/widgets/Messages_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Bulgarian translation copyright 2015 Alexander Shopov . +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, 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/widgets/Messages_sr.properties b/core/src/main/resources/hudson/widgets/Messages_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..ba1355710a585afc9a6e407ad387c75a5b57172c --- /dev/null +++ b/core/src/main/resources/hudson/widgets/Messages_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +BuildHistoryWidget.DisplayName=\u0418\u0441\u0442\u043E\u0440\u0438\u0458\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \ No newline at end of file diff --git a/core/src/main/resources/jenkins/CLI/WarnWhenEnabled/message.jelly b/core/src/main/resources/jenkins/CLI/WarnWhenEnabled/message.jelly new file mode 100644 index 0000000000000000000000000000000000000000..5f93d73ee710a380c262e9e00b4e2047347af8de --- /dev/null +++ b/core/src/main/resources/jenkins/CLI/WarnWhenEnabled/message.jelly @@ -0,0 +1,37 @@ + + + + + +
    +
    +
    + + +
    + ${%blurb} +
    +
    +
    diff --git a/core/src/main/resources/jenkins/CLI/WarnWhenEnabled/message.properties b/core/src/main/resources/jenkins/CLI/WarnWhenEnabled/message.properties new file mode 100644 index 0000000000000000000000000000000000000000..2b6c3980d584a874806a5d931e1a6d9aa35b7332 --- /dev/null +++ b/core/src/main/resources/jenkins/CLI/WarnWhenEnabled/message.properties @@ -0,0 +1,26 @@ +# The MIT License +# +# Copyright 2017 CloudBees, Inc. +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +blurb=\ + Allowing Jenkins CLI to work in -remoting mode is considered dangerous and usually unnecessary. \ + You are advised to disable this mode. \ + Please refer to the
    CLI documentation for details. diff --git a/core/src/main/resources/jenkins/CLI/config.jelly b/core/src/main/resources/jenkins/CLI/config.jelly new file mode 100644 index 0000000000000000000000000000000000000000..001bca27db7e562028d9d47f3eb31e9e6edc2fea --- /dev/null +++ b/core/src/main/resources/jenkins/CLI/config.jelly @@ -0,0 +1,33 @@ + + + + + + + + + + + diff --git a/core/src/main/resources/jenkins/CLI/help-enabled.html b/core/src/main/resources/jenkins/CLI/help-enabled.html new file mode 100644 index 0000000000000000000000000000000000000000..8301e1fdebc15aa5f1d5c625961c1215ee18a1b5 --- /dev/null +++ b/core/src/main/resources/jenkins/CLI/help-enabled.html @@ -0,0 +1,8 @@ +
    + Whether to enable the historical Jenkins CLI mode over remoting + (-remoting option in the client). + While this may be necessary to support certain commands or command options, + it is considered intrinsically insecure. + (-http mode is always available, + and -ssh mode is available whenever the SSH service is enabled.) +
    diff --git a/core/src/main/resources/jenkins/diagnosis/HsErrPidList/index.properties b/core/src/main/resources/jenkins/diagnosis/HsErrPidList/index.properties index d7049c659a135c0a45262a3174162b47aaf79fa4..6417ea3d5b01d2c15a8cff54892b0923b2fb6317 100644 --- a/core/src/main/resources/jenkins/diagnosis/HsErrPidList/index.properties +++ b/core/src/main/resources/jenkins/diagnosis/HsErrPidList/index.properties @@ -1,5 +1,5 @@ blurb=The following JVM crash reports are found for this Jenkins instance. \ - If you think this is a problem in Jenkins, please report it. \ + If you think this is a problem in Jenkins, please report it. \ Jenkins relies on some heuristics to find these files. For more reliable discovery, please consider adding \ -XX:ErrorFile=/path/to/hs_err_pid%p.log as your JVM argument. ago={0} ago \ No newline at end of file diff --git a/core/src/main/resources/jenkins/diagnosis/HsErrPidList/index_de.properties b/core/src/main/resources/jenkins/diagnosis/HsErrPidList/index_de.properties new file mode 100644 index 0000000000000000000000000000000000000000..3e2a157315f15f529fd24e1fa5af394a7f5952f9 --- /dev/null +++ b/core/src/main/resources/jenkins/diagnosis/HsErrPidList/index_de.properties @@ -0,0 +1,31 @@ +# The MIT License +# +# Copyright (c) 2017 Daniel Beck and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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=L\u00F6schen +Date=Datum +Name=Name +Java\ VM\ Crash\ Reports=Absturzprotokolle der Java-VM +blurb=Die folgenden Absturzprotokolle der Java-VM wurden f\u00FCr diese Jenkins-Instanz gefunden. \ + Wenn Sie dies f\u00FCr ein Problem in Jenkins halten, erstellen Sie bitte einen Bug-Report. \ + Jenkins verwendet Heuristiken, um diese Dateien zu finden. Bitte f\u00FCgen Sie -XX:ErrorFile=/path/to/hs_err_pid%p.log als Argument f\u00FCr den Jenkins-Java-Prozess, \ + um die Erkennung zu verbessern. +ago=vor {0} diff --git a/core/src/main/resources/jenkins/diagnosis/HsErrPidList/index_ja.properties b/core/src/main/resources/jenkins/diagnosis/HsErrPidList/index_ja.properties index 87ab4dcf68d75edbd5c8e10bda7246a588754f53..5c8c783f41ec0744f90a091a419859524865b4e5 100644 --- a/core/src/main/resources/jenkins/diagnosis/HsErrPidList/index_ja.properties +++ b/core/src/main/resources/jenkins/diagnosis/HsErrPidList/index_ja.properties @@ -25,7 +25,7 @@ Name=\u540d\u524d Date=\u5e74\u6708\u65e5 Delete=\u524a\u9664 blurb=Jenkins\u306eJVM\u30af\u30e9\u30c3\u30b7\u30e5\u30ec\u30dd\u30fc\u30c8\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u3002\ - Jenkins\u306e\u554f\u984c\u3067\u3042\u308c\u3070\u3001\u5831\u544a\u3057\u3066\u304f\u3060\u3055\u3044\u3002 \ + Jenkins\u306e\u554f\u984c\u3067\u3042\u308c\u3070\u3001\u5831\u544a\u3057\u3066\u304f\u3060\u3055\u3044\u3002 \ Jenkins relies on some heuristics to find these files. \u3088\u308a\u6b63\u78ba\u306b\u898b\u3064\u3051\u308b\u306b\u306f\u3001\ JVM\u30aa\u30d7\u30b7\u30e7\u30f3\u306b-XX:ErrorFile=/path/to/hs_err_pid%p.log\u3092\u8ffd\u52a0\u3057\u3066\u304f\u3060\u3055\u3044\u3002 ago={0} \u524d \ No newline at end of file diff --git a/core/src/main/resources/jenkins/diagnosis/HsErrPidList/index_lt.properties b/core/src/main/resources/jenkins/diagnosis/HsErrPidList/index_lt.properties new file mode 100644 index 0000000000000000000000000000000000000000..ee0f9a71063dc6cad3cb04c80247440e74f766ab --- /dev/null +++ b/core/src/main/resources/jenkins/diagnosis/HsErrPidList/index_lt.properties @@ -0,0 +1,9 @@ +blurb=\u0160ios JVM l\u016b\u017eimo ataskaitos rastos \u0161iame Jenkinse. \ + Jei manote, kad problema Jenkinse, pra\u0161ome apie tai prane\u0161ti. \ + Jenkinsas remiasi heuristika ie\u0161kodamas \u0161i\u0173 fail\u0173. Patikimesniam aptikimui galite prid\u0117ti \ + -XX:ErrorFile=/path/to/hs_err_pid%p.log kaip j\u016bs\u0173 JVM argument\u0105. +ago=prie\u0161 {0} +Name=Pavadinimas +Date=Data +Java\ VM\ Crash\ Reports=Java VM l\u016b\u017eimo ataskaitos +Delete=Trinti diff --git a/core/src/main/resources/jenkins/diagnosis/HsErrPidList/index_pt_BR.properties b/core/src/main/resources/jenkins/diagnosis/HsErrPidList/index_pt_BR.properties index 4a71982704b407f1d335951abd7c836eb034a34f..9015d61b2531b4c71093d88161fb065f5ab220de 100644 --- a/core/src/main/resources/jenkins/diagnosis/HsErrPidList/index_pt_BR.properties +++ b/core/src/main/resources/jenkins/diagnosis/HsErrPidList/index_pt_BR.properties @@ -21,11 +21,11 @@ # THE SOFTWARE. # The following JVM crash reports are found for this Jenkins instance. \ -# If you think this is a problem in Jenkins, please report it. \ +# If you think this is a problem in Jenkins, please report it. \ # Jenkins relies on some heuristics to find these files. For more reliable discovery, please consider adding \ # -XX:ErrorFile=/path/to/hs_err_pid%p.log as your JVM argument. blurb=Os seguintes relat\u00f3rios de erro da JVM foram encontrados para esta inst\u00e2ncia do Jenkins. \ - Caso voc\u00ea acredite que este seja um problema no Jenkins, por favor reporte. \ + Caso voc\u00ea acredite que este seja um problema no Jenkins, por favor reporte. \ O Jenkins depende de algumas heuristicas para encontrar estes arquivos. Para uma descoberta mais garantida, \ por favor considere adicionar -XX:ErrorFile=/caminho/para/hs_err_pid%p.log como argumento para sua JVM. Delete=Excluir diff --git a/core/src/main/resources/jenkins/diagnosis/HsErrPidList/index_sr.properties b/core/src/main/resources/jenkins/diagnosis/HsErrPidList/index_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..6e2c57314e7ce1f4e08fd7624809d6b2c5aae1ff --- /dev/null +++ b/core/src/main/resources/jenkins/diagnosis/HsErrPidList/index_sr.properties @@ -0,0 +1,11 @@ +# This file is under the MIT License by authors + +Java\ VM\ Crash\ Reports=\u0418\u0437\u0432\u0435\u0448\u0440\u0430\u0458\u0438 JVM \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0438\u043C\u0430 +blurb=\u041D\u0430\u0452\u0435\u043D\u0438 \u0441\u0443 \u0438\u0437\u0432\u0435\u0448\u0440\u0430\u0458\u0438 JVM \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0438\u043C\u0430 \u0437\u0430 \u043E\u0432\u0443 Jenkins \u043C\u0430\u0448\u0438\u043D\u0443. \ + \u0410\u043A\u043E \u043C\u0438\u0441\u043B\u0438\u0442\u0435 \u0434\u0430 \u0441\u0442\u0435 \u043D\u0430\u0448\u043B\u0438 \u043F\u0440\u043E\u0431\u043B\u0435\u043C \u0441\u0430 Jenkins-\u043E\u043C, \u043C\u043E\u043B\u0438\u043C\u043E \u043F\u0440\u0438\u0458\u0430\u0432\u0438 \u0433\u0430. \ + Jenkins \u043A\u043E\u0440\u0438\u0441\u0442\u0438 \u043D\u0435\u043A\u043E\u043B\u0438\u043A\u043E \u0445\u0435\u0443\u0440\u0438\u0441\u0442\u0438\u043A\u0435 \u0434\u0430 \u043F\u0440\u043E\u043D\u0430\u0452\u0435 \u043E\u0432\u0435 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435. \u041A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0435 JVM \u043E\u043F\u0446\u0438\u0458\u0443 \ + -XX:ErrorFile=/path/to/hs_err_pid%p.log \u0437\u0430 \u043F\u043E\u0443\u0437\u0434\u0430\u043D\u0438\u0458\u0435 \u043F\u0440\u0435\u0442\u0440\u0430\u0436\u0438\u0432\u0430\u045A\u0435. +Name=\u0418\u043C\u0435 +Date=\u0414\u0430\u0442\u0443\u043C +ago=\u043F\u0440\u0435 {0} +Delete=\u0418\u0437\u0431\u0440\u0438\u0448\u0438 diff --git a/core/src/main/resources/jenkins/diagnosis/HsErrPidList/message_de.properties b/core/src/main/resources/jenkins/diagnosis/HsErrPidList/message_de.properties new file mode 100644 index 0000000000000000000000000000000000000000..7a46010765a1c0c1d12743c083c3786b01e2f798 --- /dev/null +++ b/core/src/main/resources/jenkins/diagnosis/HsErrPidList/message_de.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2017 Daniel Beck and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +blurb=Diese Instanz scheint abgest\u00FCrzt zu sein. Bitte pr\u00FCfen Sie die Logs. diff --git a/core/src/main/resources/jenkins/diagnosis/HsErrPidList/message_lt.properties b/core/src/main/resources/jenkins/diagnosis/HsErrPidList/message_lt.properties new file mode 100644 index 0000000000000000000000000000000000000000..f1d4ebb62d19e8874400b102e64e5aaf74f51b25 --- /dev/null +++ b/core/src/main/resources/jenkins/diagnosis/HsErrPidList/message_lt.properties @@ -0,0 +1 @@ +blurb=Pana\u0161u, kad \u0161is Jenkinsas nul\u016b\u017eo. Pra\u0161ome patikrinti \u017eurnal\u0105. diff --git a/core/src/main/resources/jenkins/diagnosis/HsErrPidList/message_sr.properties b/core/src/main/resources/jenkins/diagnosis/HsErrPidList/message_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..e58a04dbd01d60ed4bb092a05aaf7c46cefe7f86 --- /dev/null +++ b/core/src/main/resources/jenkins/diagnosis/HsErrPidList/message_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +blurb=Jenkins \u0458\u0435 \u043F\u0440\u0435\u0441\u0442\u0430\u043E \u0434\u0430 \u0440\u0430\u0434\u0438. \u041C\u043E\u043B\u0438\u043C\u043E \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 \u0436\u0443\u0440\u043D\u0430\u043B. diff --git a/core/src/main/resources/jenkins/diagnostics/CompletedInitializationMonitor/message.jelly b/core/src/main/resources/jenkins/diagnostics/CompletedInitializationMonitor/message.jelly new file mode 100644 index 0000000000000000000000000000000000000000..29f65bb8890a837df9d599f94e8081f6a4c95530 --- /dev/null +++ b/core/src/main/resources/jenkins/diagnostics/CompletedInitializationMonitor/message.jelly @@ -0,0 +1,12 @@ + + +
    + ${%Warning!} + ${%blurb(app.initLevel)} + ${%Example: usage of} @Initializer(after = InitMilestone.COMPLETED) ${%in a plugin} + (${%See documentation}). + ${%Please} ${%report a bug} ${%in the Jenkins bugtracker}. + + +
    +
    diff --git a/core/src/main/resources/jenkins/diagnostics/CompletedInitializationMonitor/message.properties b/core/src/main/resources/jenkins/diagnostics/CompletedInitializationMonitor/message.properties new file mode 100644 index 0000000000000000000000000000000000000000..c34fa2df469d857f2db20092ca270de69aba3f5e --- /dev/null +++ b/core/src/main/resources/jenkins/diagnostics/CompletedInitializationMonitor/message.properties @@ -0,0 +1,6 @@ +blurb= Jenkins initialization has not reached the COMPLETED initialization milestone after the configuration reload. \ + Current state is: \"{0}\". \ + Such invalid state may cause undefined incorrect behavior of Jenkins plugins. \ + It is likely an issue with the jenkins initialization or reloading task graph. + + diff --git a/core/src/main/resources/jenkins/diagnostics/CompletedInitializationMonitor/message_sr.properties b/core/src/main/resources/jenkins/diagnostics/CompletedInitializationMonitor/message_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..8635ae34b570fad63316b5f00913409cf73df0e5 --- /dev/null +++ b/core/src/main/resources/jenkins/diagnostics/CompletedInitializationMonitor/message_sr.properties @@ -0,0 +1,12 @@ +# This file is under the MIT License by authors + +Warning!=\u0423\u043F\u043E\u0437\u043E\u0440\u0435\u045A\u0435! +blurb=\u0418\u043D\u0438\u0446\u0438\u0430\u043B\u0438\u0437\u0430\u0446\u0438\u0458\u0430 Jenkins-\u0430 \u043D\u0438\u0458\u0435 \u0434\u043E\u0441\u0442\u0438\u0433\u043B\u043E \u0434\u043E \u0444\u0430\u0437\u0435 COMPLETED \u043F\u043E\u0441\u043B\u0435 \u043F\u043E\u043D\u043E\u0432\u043E\u0433 \u0443\u0447\u0438\u0442\u0430\u045A\u0435 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430. \ + \u0422\u0440\u0435\u043D\u0443\u0442\u043D\u043E \u0441\u0442\u0430\u045A\u0435 \u0458\u0435: "{0}". \ + \u041E\u0432\u0430\u043A\u0432\u043E \u043D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u043D\u043E \u0441\u0442\u0430\u045A\u0435 \u043C\u043E\u0436\u0435 \u0434\u043E\u0432\u0435\u0441\u0442\u0438 \u0434\u043E \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0430 \u0441\u0430 Jenkins \u043C\u043E\u0434\u0443\u043B\u0438\u043C\u0430. \ + \u0412\u0435\u0440\u043E\u0432\u0430\u0442\u043D\u043E \u0438\u043C\u0430 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0430 \u0441\u0430 \u0438\u043D\u0438\u0446\u0438\u0430\u043B\u0438\u0437\u0430\u0446\u0438\u0458\u043E\u043C \u0438\u043B\u0438 \u0443\u0447\u0438\u0442\u0430\u045A\u0430 task graph. +Example\:\ usage\ of=\u041F\u0440\u0438\u043C\u0435\u0440: +in\ a\ plugin=\u0443 \u043C\u043E\u0434\u0443\u043B\u0438 +Please=\u041C\u043E\u043B\u0438\u043C\u043E \u0432\u0430\u0441, +report\ a\ bug=\u043F\u0440\u0438\u0432\u0430\u0458\u0438 \u0433\u0440\u0435\u0448\u043A\u0443 +in\ the\ Jenkins\ bugtracker=\u043D\u0430 \u0441\u0438\u0441\u0442\u0435\u043C \u0437\u0430 \u043F\u0440\u0430\u045B\u0435\u045A\u0435 \u0433\u0440\u0435\u0448\u0430\u043A\u0430 diff --git a/core/src/main/resources/jenkins/diagnostics/Messages.properties b/core/src/main/resources/jenkins/diagnostics/Messages.properties new file mode 100644 index 0000000000000000000000000000000000000000..38362ae234a080525b6e242188ddf4a589b5a575 --- /dev/null +++ b/core/src/main/resources/jenkins/diagnostics/Messages.properties @@ -0,0 +1,3 @@ +CompletedInitializationMonitor.DisplayName=Jenkins Initialization Monitor +SecurityIsOffMonitor.DisplayName=Disabled Security +URICheckEncodingMonitor.DisplayName=Check URI Encoding diff --git a/core/src/main/resources/jenkins/diagnostics/Messages_de.properties b/core/src/main/resources/jenkins/diagnostics/Messages_de.properties new file mode 100644 index 0000000000000000000000000000000000000000..e2aac0df3bf50a19eef0c150d2258acbc3de18aa --- /dev/null +++ b/core/src/main/resources/jenkins/diagnostics/Messages_de.properties @@ -0,0 +1,25 @@ +# The MIT License +# +# Copyright (c) 2017 Daniel Beck and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +URICheckEncodingMonitor.DisplayName=Pr\u00FCfung der URI-Kodierung +SecurityIsOffMonitor.DisplayName=Deaktivierte Sicherheitsfunktionen +CompletedInitializationMonitor.DisplayName=Jenkins-Initialisierung pr\u00FCfen diff --git a/core/src/main/resources/jenkins/diagnostics/PinningIsBlockingBundledPluginMonitor/message.jelly b/core/src/main/resources/jenkins/diagnostics/PinningIsBlockingBundledPluginMonitor/message.jelly deleted file mode 100644 index c91dfb8516953af0aae559f5dc3b44db42c881ca..0000000000000000000000000000000000000000 --- a/core/src/main/resources/jenkins/diagnostics/PinningIsBlockingBundledPluginMonitor/message.jelly +++ /dev/null @@ -1,13 +0,0 @@ - - -
    -

    - ${%blurb} -

    -
      - -
    • ${p.longName}
    • -
      -
    -
    -
    diff --git a/core/src/main/resources/jenkins/diagnostics/PinningIsBlockingBundledPluginMonitor/message.properties b/core/src/main/resources/jenkins/diagnostics/PinningIsBlockingBundledPluginMonitor/message.properties deleted file mode 100644 index c1fc741c55c806b76d197c4b9dbdc3bddad85211..0000000000000000000000000000000000000000 --- a/core/src/main/resources/jenkins/diagnostics/PinningIsBlockingBundledPluginMonitor/message.properties +++ /dev/null @@ -1,4 +0,0 @@ -blurb=This version of Jenkins comes with new versions of the following plugins that are currently \ - pinned in \ - the plugin manager. \ - It is recommended to upgrade them to at least the version bundled with Jenkins. diff --git a/core/src/main/resources/jenkins/diagnostics/PinningIsBlockingBundledPluginMonitor/message_ja.properties b/core/src/main/resources/jenkins/diagnostics/PinningIsBlockingBundledPluginMonitor/message_ja.properties deleted file mode 100644 index b0eb2a9b606174b1117c21dfbf600f4fa8aa8d50..0000000000000000000000000000000000000000 --- a/core/src/main/resources/jenkins/diagnostics/PinningIsBlockingBundledPluginMonitor/message_ja.properties +++ /dev/null @@ -1,32 +0,0 @@ -# The MIT License -# -# Copyright (c) 2015, Seiji Sogabe -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - -# This version of Jenkins comes with new versions of the following plugins that are currently \ -# pinned in \ -# the plugin manager. \ -# It is recommended to upgrade them to at least the version bundled with Jenkins. - - -blurb=\u3053\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u306eJenkins\u3067\u306f\u3001\u30d7\u30e9\u30b0\u30a4\u30f3\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u3067\ -\u30d4\u30f3\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u6b21\u306e\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\ -\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u307e\u3059\u3002\ -\u30d4\u30f3\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u3001\u5c11\u306a\u304f\u3068\u3082Jenkins\u306b\u30d0\u30f3\u30c9\u30eb\u3055\u308c\u3066\u3044\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306b\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u3059\u308b\u3053\u3068\u3092\u63a8\u5968\u3057\u307e\u3059\u3002 diff --git a/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message.properties b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message.properties index 8f9e0d816eaade3d499cd136c6f1c51d3fe55d6d..2766958d4edf3b3820fdfe5aa7ca4748acf3a4ed 100644 --- a/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message.properties +++ b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message.properties @@ -21,5 +21,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. # -blurb=Unsecured Jenkins allows anyone on the network to launch processes on your behalf. \ - Consider at least enabling authentication to discourage misuse. \ No newline at end of file +blurb=Jenkins is currently unsecured and allows anyone on the network to launch processes on your behalf. \ + It is recommended to set up security and to limit anonymous access even on private networks. diff --git a/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_cs.properties b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_cs.properties new file mode 100644 index 0000000000000000000000000000000000000000..2cae869ce180d72f3ce6cb7a5bde144d9eb110b1 --- /dev/null +++ b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_cs.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Setup\ Security=Nastaven\u00ED zabezpe\u010Den\u00ED +Dismiss=Rozum\u00EDm +blurb=Nezabezpe\u010Den\u00FD b\u011Bh aplikace Jenkins umo\u017E\u0148uje komukoliv na s\u00EDti spou\u0161t\u011Bt procesy va\u0161\u00EDm \ + jm\u00E9nem. Pro omezen\u00ED tohoto zneu\u017Eit\u00ED pros\u00EDm zva\u017Ete zapnut\u00ED autentizace do aplikace Jenkins. diff --git a/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_lt.properties b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_lt.properties new file mode 100644 index 0000000000000000000000000000000000000000..43f1984922f5744b373de8429a340a053a7628b8 --- /dev/null +++ b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_lt.properties @@ -0,0 +1,4 @@ +blurb=Neapsaugotas Jenkinsas leid\u017eia bet kam tinkle paleisti procesus j\u016bs\u0173 vardu. \ + Apsvarstykite galimyb\u0119 bent jau \u012fjungti autentikacij\u0105, kad b\u016bt\u0173 sunkiau piktnaud\u017eiauti. +Setup\ Security=Nustatyti saugum\u0105 +Dismiss=Praleisti diff --git a/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_pl.properties b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..4a432255090f40c2120da143d828c23225725740 --- /dev/null +++ b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_pl.properties @@ -0,0 +1,4 @@ +blurb=Dost\u0119p do niezabezpieczonego Jenkinsa pozwala ka\u017Cdemu w sieci wykonywa\u0107 akcje w twoim imieniu. \ + Rozwa\u017C przynajmniej w\u0142\u0105czenie uwierzytelnienia by zniech\u0119ci\u0107 do nadu\u017Cy\u0107. +Setup\ Security=W\u0142\u0105cz uwierzytelnienie +Dismiss=Ignoruj diff --git a/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_sr.properties b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..170a58076ae490438bdfecb49d5a763f8f8eaac3 --- /dev/null +++ b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_sr.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Setup\ Security=\u041F\u043E\u0441\u0442\u0430\u0432\u0438 \u0431\u0435\u0437\u0431\u0435\u0434\u043D\u043E\u0441\u0442 +Dismiss=\u041E\u0442\u043A\u0430\u0436\u0438 +blurb=\u041D\u0435\u043E\u0431\u0435\u0437\u0431\u0435\u0436\u0435\u043D\u0435 \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0435 Jenkins-\u0430 \u0434\u0430\u0458\u0435 \u0431\u0438\u043B\u043E \u043A\u043E\u043C\u0435 \u043D\u0430 \u043C\u0440\u0435\u0436\u0438 \u043F\u0440\u0438\u0441\u0442\u0443\u043F \u043F\u043E\u043A\u0440\u0435\u0442\u0430\u045A\u0443 \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0430. \ + \u0422\u0440\u0435\u0431\u0430\u043B\u043E \u0431\u0438 \u0431\u0430\u0440\u0435\u043C \u0443\u043A\u0459\u0443\u0447\u0438\u0442\u0438 \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u043A\u0430\u0446\u0438\u0458\u0443 \u0434\u0430 \u0441\u0435 \u043F\u0440\u0435\u0447\u0438 \u0437\u043B\u043E\u0443\u043F\u043E\u0442\u0440\u0435\u0431\u0430. diff --git a/core/src/main/resources/jenkins/diagnostics/URICheckEncodingMonitor/message.jelly b/core/src/main/resources/jenkins/diagnostics/URICheckEncodingMonitor/message.jelly new file mode 100644 index 0000000000000000000000000000000000000000..cb5cb59c60f127dab585d1a9928f603e4e7736dd --- /dev/null +++ b/core/src/main/resources/jenkins/diagnostics/URICheckEncodingMonitor/message.jelly @@ -0,0 +1,16 @@ + + + + + + + diff --git a/core/src/main/resources/jenkins/install/SetupWizard/authenticate-security-token.jelly b/core/src/main/resources/jenkins/install/SetupWizard/authenticate-security-token.jelly new file mode 100644 index 0000000000000000000000000000000000000000..a02fba2d8e9445085a7d030797f6005de55b9697 --- /dev/null +++ b/core/src/main/resources/jenkins/install/SetupWizard/authenticate-security-token.jelly @@ -0,0 +1,45 @@ + + + + + + +
    + +
    + +
    +
    +
    +
    + +
    \ No newline at end of file diff --git a/core/src/main/resources/jenkins/install/SetupWizard/authenticate-security-token.properties b/core/src/main/resources/jenkins/install/SetupWizard/authenticate-security-token.properties new file mode 100644 index 0000000000000000000000000000000000000000..417fce51c27e738802c35f857d8fe948c4fee733 --- /dev/null +++ b/core/src/main/resources/jenkins/install/SetupWizard/authenticate-security-token.properties @@ -0,0 +1,9 @@ +authenticate-security-token.getting.started=Getting Started +authenticate-security-token.unlock.jenkins=Unlock Jenkins +jenkins.install.findSecurityTokenMessage=To ensure Jenkins is securely set up by the administrator, \ +a password has been written to the log (not sure where to find it?) and this file on the server:

    {0}

    +authenticate-security-token.copy.password=Please copy the password from either location and paste it below. +authenticate-security-token.error=ERROR: +authenticate-security-token.password.incorrect=The password entered is incorrect, please check the file for the correct password +authenticate-security-token.password.administrator=Administrator password +authenticate-security-token.continue=Continue diff --git a/core/src/main/resources/jenkins/install/SetupWizard/authenticate-security-token_de.properties b/core/src/main/resources/jenkins/install/SetupWizard/authenticate-security-token_de.properties new file mode 100644 index 0000000000000000000000000000000000000000..9b666c0bc331240f9fcbee7c2a004cb07b544930 --- /dev/null +++ b/core/src/main/resources/jenkins/install/SetupWizard/authenticate-security-token_de.properties @@ -0,0 +1,31 @@ +# The MIT License +# +# Copyright (c) 2017 Daniel Beck and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +authenticate-security-token.error=FEHLER: +authenticate-security-token.getting.started= +authenticate-security-token.password.administrator=Administrator-Passwort +authenticate-security-token.copy.password=Bitte kopieren Sie dass Passwort von einer dieser Quellen und f\u00FCgen Sie es unten ein. +authenticate-security-token.unlock.jenkins=Jenkins entsperren +authenticate-security-token.continue=Weiter +jenkins.install.findSecurityTokenMessage=Um sicher zu stellen, dass Jenkins von einem autorisierten Administrator sicher initialisiert wird, wurde ein zuf\u00E4llig generiertes Passwort in das Log\ + (wo ist das?) und diese Datei auf dem Server geschrieben:

    {0}

    +authenticate-security-token.password.incorrect=Das angegebene Passwort ist nicht korrekt. diff --git a/core/src/main/resources/jenkins/install/SetupWizard/authenticate-security-token_fr.properties b/core/src/main/resources/jenkins/install/SetupWizard/authenticate-security-token_fr.properties new file mode 100644 index 0000000000000000000000000000000000000000..4a62fa8f78b28a82ed9b5f8446fa49d0daf6951b --- /dev/null +++ b/core/src/main/resources/jenkins/install/SetupWizard/authenticate-security-token_fr.properties @@ -0,0 +1,13 @@ +authenticate-security-token.getting.started=D\u00e9marrage +authenticate-security-token.unlock.jenkins=D\u00e9bloquer Jenkins +jenkins.install.findSecurityTokenMessage=Pour \u00eatre s\u00fbr que que Jenkins soit configur\u00e9 de fa\u00e7on s\u00e9curis\u00e9e \ +par un administrateur, un mot de passe a \u00e9t\u00e9 g\u00e9n\u00e9r\u00e9 dans le fichier de logs \ +(o\u00f9 le trouver) \ +ainsi que dans ce fichier sur le serveur :

    {0}

    +authenticate-security-token.copy.password=Veuillez copier le mot de passe depuis un des 2 endroits et le coller \ +ci-dessous. +authenticate-security-token.error=ERREUR: +authenticate-security-token.password.incorrect=Le mot de passe saisi est incorrect, veuillez v\u00e9rifier \ +dans le fichier le mot de passe correct +authenticate-security-token.password.administrator=Mot de passe administrateur +authenticate-security-token.continue=Continuer \ No newline at end of file diff --git a/core/src/main/resources/jenkins/install/SetupWizard/authenticate-security-token_lt.properties b/core/src/main/resources/jenkins/install/SetupWizard/authenticate-security-token_lt.properties new file mode 100644 index 0000000000000000000000000000000000000000..04d18031fd7c24677da64409d3df7bc1e03e14c4 --- /dev/null +++ b/core/src/main/resources/jenkins/install/SetupWizard/authenticate-security-token_lt.properties @@ -0,0 +1,9 @@ +authenticate-security-token.getting.started=\u012evadas +authenticate-security-token.unlock.jenkins=Atrakinti Jenkins\u0105 +jenkins.install.findSecurityTokenMessage=Kad u\u017etikrintum\u0117me kad Jenkins\u0105 saugiai paruo\u0161\u0117 administratorius, \ +slapta\u017eodis buvo \u012fra\u0161ytas \u012f \u017eurnal\u0105 (ne\u017einote, kur j\u012f rasti?) ir \u0161\u012f fail\u0105 serveryje:

    {0}

    +authenticate-security-token.copy.password=Pra\u0161ome nukopijuoti slapta\u017eiod\u012f i\u0161 bet kurios vietos \u012f \u017eemiau esant\u012f lauk\u0105. +authenticate-security-token.error=KLAIDA: +authenticate-security-token.password.incorrect=\u012evestas neteisingas slapta\u017eodis, pra\u0161ome patikrinti fail\u0105 ir rasti teising\u0105 slapta\u017eod\u012f +authenticate-security-token.password.administrator=Administratoriaus slapta\u017eodis +authenticate-security-token.continue=T\u0119sti diff --git a/core/src/main/resources/jenkins/install/SetupWizard/authenticate-security-token_pl.properties b/core/src/main/resources/jenkins/install/SetupWizard/authenticate-security-token_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..4ec407750d0c5ce851aa4ccc5f268750c2bdaf55 --- /dev/null +++ b/core/src/main/resources/jenkins/install/SetupWizard/authenticate-security-token_pl.properties @@ -0,0 +1,30 @@ +# The MIT License +# +# Copyright (c) 2017, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. +authenticate-security-token.getting.started=Zaczynamy +authenticate-security-token.unlock.jenkins=Odblokuj Jenkinsa +jenkins.install.findSecurityTokenMessage=Aby zapewni\u0107, \u017Ce Jenkins jest bezpiecznie uruchomiony przez administratora, \ +has\u0142o zosta\u0142o zapisane do pliku log\u00F3w (nie masz pewno\u015Bci, gdzie go znale\u017A\u0107?) oraz w pliku na serwerze:

    {0}

    +authenticate-security-token.copy.password=Skopiuj has\u0142o z jednej z powy\u017Cszych lokalizacji i wklej poni\u017Cej. +authenticate-security-token.error=B\u0142\u0105d: +authenticate-security-token.password.incorrect=Has\u0142o nie jest poprawne, sprawd\u017A ponownie celem wprowadzenia poprawnego has\u0142a +authenticate-security-token.password.administrator=Has\u0142o administratorskie: +authenticate-security-token.continue=Kontynuuj diff --git a/core/src/main/resources/jenkins/install/SetupWizard/authenticate-security-token_sr.properties b/core/src/main/resources/jenkins/install/SetupWizard/authenticate-security-token_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..de25ba64e87f38cb5ffd96d85d5c639c21989c86 --- /dev/null +++ b/core/src/main/resources/jenkins/install/SetupWizard/authenticate-security-token_sr.properties @@ -0,0 +1,11 @@ +# This file is under the MIT License by authors + +authenticate-security-token.getting.started=\u041F\u043E\u0447\u0435\u0442\u0430\u043A +authenticate-security-token.unlock.jenkins=\u041E\u0442\u043A\u0459\u0443\u0447\u0430\u0458 Jenkins +jenkins.install.findSecurityTokenMessage=\u0414\u0430 \u0431\u0443\u0434\u0435 \u0431\u0438\u043E \u043F\u0440\u0438\u0441\u0442\u0443\u043F Jenkins-\u0443 \u043E\u0431\u0435\u0437\u0431\u0435\u0452\u0435\u043D, \ +\u043B\u043E\u0437\u0438\u043D\u043A\u0430 \u0458\u0435 \u0431\u0438\u043B\u0430 \u0438\u0437\u043F\u0438\u0441\u0430\u043D\u0430 \u0436\u0443\u0440\u043D\u0430\u043B\u0443 (\u043D\u0438\u0441\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043D\u0438 \u0433\u0434\u0435 \u0441\u0435 \u0442\u043E \u043D\u0430\u043B\u0430\u0437\u0438?) \u0438 \u0443 \u043E\u0432\u043E\u0458 \u0434\u0430\u0442\u043E\u0442\u0435\u0446\u0438 \u043D\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0443:

    {0}

    +authenticate-security-token.copy.password=\u041C\u043E\u043B\u0438\u043C\u043E \u0438\u0441\u043A\u043E\u043F\u0438\u0440\u0430\u0458\u0442\u0435 \u043B\u043E\u0437\u0438\u043D\u043A\u0443 \u0441\u0430 \u0458\u0435\u0434\u043D\u0443 \u043E\u0434 \u0442\u0438\u0445 \u043B\u043E\u043A\u0430\u0446\u0438\u0458\u0430 \u0438 \u0443\u0431\u0430\u0446\u0438\u0458\u0435 \u0443 \u043E\u0434\u0433\u043E\u0432\u0430\u0440\u0443\u0458\u0443\u045B\u0435 \u043F\u043E\u0459\u0435. +authenticate-security-token.error=\u0413\u0420\u0415\u0428\u041A\u0410: +authenticate-security-token.password.incorrect=\u041D\u0430\u0432\u0435\u0434\u0435\u043D\u0430 \u043B\u043E\u0437\u0438\u043D\u043A\u0430 \u0441\u0435 \u043D\u0435 \u043F\u043E\u043A\u043B\u0430\u043F\u0430, \u043C\u043E\u043B\u0438\u043C\u043E \u0432\u0430\u0441 \u043F\u043E\u0442\u0440\u0430\u0436\u0438\u0442\u0435 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0443 \u0437\u0430 \u0442\u0430\u0447\u043D\u0443 \u043B\u043E\u0437\u0438\u043D\u043A\u0443. +authenticate-security-token.password.administrator=\u041B\u043E\u0437\u0438\u043D\u043A\u0430 \u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0442\u043E\u0440\u0430 +authenticate-security-token.continue=\u041D\u0430\u0441\u0442\u0430\u0432\u0438 diff --git a/core/src/main/resources/jenkins/install/SetupWizard/client-scripts.jelly b/core/src/main/resources/jenkins/install/SetupWizard/client-scripts.jelly new file mode 100644 index 0000000000000000000000000000000000000000..dcaa4219a11e0ce947b43a08fdacec0a386370fc --- /dev/null +++ b/core/src/main/resources/jenkins/install/SetupWizard/client-scripts.jelly @@ -0,0 +1,7 @@ + + + + + +
    + + + + \ No newline at end of file diff --git a/core/src/main/resources/jenkins/install/SetupWizard/setupWizardFirstUser.properties b/core/src/main/resources/jenkins/install/SetupWizard/setupWizardFirstUser.properties new file mode 100644 index 0000000000000000000000000000000000000000..75ce472514bcc2537286e4a4eed35e7d0d911182 --- /dev/null +++ b/core/src/main/resources/jenkins/install/SetupWizard/setupWizardFirstUser.properties @@ -0,0 +1 @@ +Create\ First\ Admin\ User=Create First Admin User \ No newline at end of file diff --git a/core/src/main/resources/jenkins/install/SetupWizard/setupWizardFirstUser_de.properties b/core/src/main/resources/jenkins/install/SetupWizard/setupWizardFirstUser_de.properties new file mode 100644 index 0000000000000000000000000000000000000000..62409c2eaa05cc57ce82c4599923b82fd2b1e094 --- /dev/null +++ b/core/src/main/resources/jenkins/install/SetupWizard/setupWizardFirstUser_de.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Copyright (c) 2017 Daniel Beck and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +# Create First Admin User +Create\ First\ Admin\ User=Erstes Administrator-Konto erstellen diff --git a/core/src/main/resources/jenkins/install/SetupWizard/setupWizardFirstUser_fr.properties b/core/src/main/resources/jenkins/install/SetupWizard/setupWizardFirstUser_fr.properties new file mode 100644 index 0000000000000000000000000000000000000000..3769685377be96ae94467b9f683921d36b1eb475 --- /dev/null +++ b/core/src/main/resources/jenkins/install/SetupWizard/setupWizardFirstUser_fr.properties @@ -0,0 +1 @@ +Create\ First\ Admin\ User=Cr\u00e9er le 1er utilisateur Administrateur \ No newline at end of file diff --git a/core/src/main/resources/jenkins/install/SetupWizard/setupWizardFirstUser_lt.properties b/core/src/main/resources/jenkins/install/SetupWizard/setupWizardFirstUser_lt.properties new file mode 100644 index 0000000000000000000000000000000000000000..140b61fc0402671e3801586d0872d678b14bc939 --- /dev/null +++ b/core/src/main/resources/jenkins/install/SetupWizard/setupWizardFirstUser_lt.properties @@ -0,0 +1 @@ +Create\ First\ Admin\ User=Sukurti pirm\u0105 administratoriaus naudotoj\u0105 diff --git a/core/src/main/resources/jenkins/install/SetupWizard/setupWizardFirstUser_pl.properties b/core/src/main/resources/jenkins/install/SetupWizard/setupWizardFirstUser_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..12f565e07d090c594e0f62409dd084446bc762f8 --- /dev/null +++ b/core/src/main/resources/jenkins/install/SetupWizard/setupWizardFirstUser_pl.properties @@ -0,0 +1,22 @@ +# The MIT License +# +# Copyright (c) 2017, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. +Create\ First\ Admin\ User=Stw\u00F3rz pierwszego administratora diff --git a/core/src/main/resources/jenkins/install/SetupWizard/setupWizardFirstUser_sr.properties b/core/src/main/resources/jenkins/install/SetupWizard/setupWizardFirstUser_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..6d39904f8d076c404ab83c42cb5462edb91c6c6a --- /dev/null +++ b/core/src/main/resources/jenkins/install/SetupWizard/setupWizardFirstUser_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Create\ First\ Admin\ User=\u041A\u0440\u0435\u0438\u0440\u0430\u0458\u0442\u0435 \u043F\u0440\u0432\u043E\u0433 \u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0442\u043E\u0440\u0430 diff --git a/core/src/main/resources/jenkins/install/SetupWizard/wizard-ui.jelly b/core/src/main/resources/jenkins/install/SetupWizard/wizard-ui.jelly new file mode 100644 index 0000000000000000000000000000000000000000..b25f58b27394a55bfafdad76655445d38ee59dba --- /dev/null +++ b/core/src/main/resources/jenkins/install/SetupWizard/wizard-ui.jelly @@ -0,0 +1,15 @@ + + + + + + + + diff --git a/core/src/main/resources/jenkins/install/UpgradeWizard/client-scripts.jelly b/core/src/main/resources/jenkins/install/UpgradeWizard/client-scripts.jelly new file mode 100644 index 0000000000000000000000000000000000000000..6a538a59c0c2334b4380aaca34279d02fc3d84d3 --- /dev/null +++ b/core/src/main/resources/jenkins/install/UpgradeWizard/client-scripts.jelly @@ -0,0 +1,86 @@ + + + + +
    +
    + + %{Snooze} + +
    + ${%msg.before(app.VERSION)} + ${%msg.link} + ${%msg.after} +
    +
    +
    + + +
    + +
    +
    diff --git a/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer.properties b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer.properties new file mode 100644 index 0000000000000000000000000000000000000000..60f6fe569480c5a58b2b391b1c5c96d075c485c8 --- /dev/null +++ b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer.properties @@ -0,0 +1 @@ +tooltip=There are {0} active administrative monitors. \ No newline at end of file diff --git a/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_de.properties b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_de.properties new file mode 100644 index 0000000000000000000000000000000000000000..df9d5a8ab8ffaca8aea3aac9e7d643a73717bdde --- /dev/null +++ b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_de.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Copyright (c) 2017 Daniel Beck and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Manage\ Jenkins=Jenkins verwalten +tooltip={0,choice,0#Keine Administrator-Warnungen sind|1#{0} Administrator-Warnung ist|1<{0} Administrator-Warnungen sind} aktiv. diff --git a/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_pl.properties b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..573e01739bfdfa934251810fa442ca83717d0040 --- /dev/null +++ b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_pl.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Copyright (c) 2016-2017, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. +# There are {0} active administrative monitors. +tooltip=Znaleziono {0} aktywnych powiadomie\u0144 dla administrator\u00F3w +Manage\ Jenkins=Zarz\u0105dzaj Jenkinsem diff --git a/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/resources.css b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/resources.css new file mode 100644 index 0000000000000000000000000000000000000000..5f2ad55fbe84aa2ae246635c1898a8b6428e8101 --- /dev/null +++ b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/resources.css @@ -0,0 +1,69 @@ +#visible-am-container { + float: right; +} +#visible-am-button { + text-align: center; + font-size: 20px; + font-weight: bold; + background-color: #e01716; + color: #fff;; + margin: 0; + line-height: 40px; + text-decoration: none; + min-width: 2em; + display: inline-block; + position: relative; + transition: all .1s; +} +#visible-am-button:hover, #visible-am-button:focus, #visible-am-button:active { + background: #e23635; +} +#visible-am-container.visible #visible-am-button { + box-shadow: inset 0px 1px 14px rgba(0,0,0,.5); +} +#visible-am-container div#visible-am-list { + position: absolute; + top: 35px; + right: 2%; + margin-left:2%; + height: auto; + z-index: 0; + padding: 2em; + text-align: left; + display: block; + background-color: #fff; + border-radius: 5px; + box-shadow: 0 7px 20px rgba(0,0,0,.1); + transition: all .15s cubic-bezier(.84,.03,.21,.96); + opacity: 0; + transform: scale(0); +} +#visible-am-container.visible div#visible-am-list { + opacity: 1; + transform: scale(1); + z-index: 1000; +} +#visible-am-container #visible-am-button:after { + content: ''; + display: inline-block; + position: absolute; + bottom: -5px; + left: 32%; + width: 0; + height: 0; + border-left: 7px solid transparent; + border-right: 7px solid transparent; + border-bottom: 7px solid #fff; + opacity: 0; + transition: all .05s; +} +#visible-am-container.visible #visible-am-button:after { + opacity: 1; + bottom: 4px; + transition: all .25s; +} +#visible-am-container .am-message { + display: block; + line-height: 1.4em; + margin-bottom: 1.4em; +} \ No newline at end of file diff --git a/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/resources.js b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/resources.js new file mode 100644 index 0000000000000000000000000000000000000000..a11957cfea9b6c21110dca0a74d70437d7487edf --- /dev/null +++ b/core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/resources.js @@ -0,0 +1,39 @@ +function amCloser(e) { + var list = document.getElementById('visible-am-list'); + var el = e.target; + while (el) { + if (el === list) { + return; // clicked in the list + } + el = el.parentElement; + } + hideVisibleAmList(); +}; +function amEscCloser(e) { + if (e.keyCode == 27) { + amCloser(e); + } +}; +function amContainer() { + return document.getElementById('visible-am-container'); +}; +function hideVisibleAmList(e) { + amContainer().classList.remove('visible'); + document.removeEventListener('click', amCloser); + document.removeEventListener('keydown', amEscCloser); +} +function showVisibleAmList(e) { + amContainer().classList.add('visible'); + setTimeout(function() { + document.addEventListener('click', amCloser); + document.addEventListener('keydown', amEscCloser); + }, 1); +} +function toggleVisibleAmList(e) { + if (amContainer().classList.contains('visible')) { + hideVisibleAmList(e); + } else { + showVisibleAmList(e); + } + e.preventDefault(); +} \ No newline at end of file diff --git a/core/src/main/resources/jenkins/management/Messages.properties b/core/src/main/resources/jenkins/management/Messages.properties index 67893483393818b080888b1f456e4abc1c3bfd2c..9913ab66d28ffbf30f008a5b5359ce374ac5941e 100644 --- a/core/src/main/resources/jenkins/management/Messages.properties +++ b/core/src/main/resources/jenkins/management/Messages.properties @@ -25,6 +25,9 @@ ConfigureLink.DisplayName=Configure System ConfigureLink.Description=Configure global settings and paths. +ConfigureTools.DisplayName=Global Tool Configuration +ConfigureTools.Description=Configure tools, their locations and automatic installers. + ReloadLink.DisplayName=Reload Configuration from Disk ReloadLink.Description=Discard all the loaded data in memory and reload everything from file system.\n\ Useful when you modified config files directly on disk. @@ -53,3 +56,5 @@ NodesLink.Description=Add, remove, control and monitor the various nodes that Je ShutdownLink.DisplayName_prepare=Prepare for Shutdown ShutdownLink.DisplayName_cancel=Cancel Shutdown ShutdownLink.Description=Stops executing new builds, so that the system can be eventually shut down safely. + +AdministrativeMonitorsDecorator.DisplayName=Administrative Monitors Notifier diff --git a/core/src/main/resources/jenkins/management/Messages_bg.properties b/core/src/main/resources/jenkins/management/Messages_bg.properties index 960e9bf8edf588e2cb45dae13f10a76a95a219b9..b605e22c46dba4e5fb4166ae14aa5423d1ce83cc 100644 --- a/core/src/main/resources/jenkins/management/Messages_bg.properties +++ b/core/src/main/resources/jenkins/management/Messages_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Bulgarian translation copyright 2015 Alexander Shopov . +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -77,3 +77,9 @@ ShutdownLink.DisplayName_cancel=\ ShutdownLink.Description=\ \u041d\u0435\u0434\u043e\u043f\u0443\u0441\u043a\u0430\u043d\u0435 \u043d\u0430 \u043d\u043e\u0432\u0438 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u044f, \u0437\u0430 \u0434\u0430 \u043c\u043e\u0436\u0435 \u0432 \u0434\u0430\u0434\u0435\u043d \u043c\u043e\u043c\u0435\u043d\u0442 \u043c\u0430\u0448\u0438\u043d\u0430\u0442\u0430 \u0434\u0430 \u0431\u044a\u0434\u0435\ \u0441\u043f\u0440\u044f\u043d\u0430. +# Configure tools, their locations and automatic installers. +ConfigureTools.Description=\ + \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438\u0442\u0435, \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u0442\u0430 \u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e\u0442\u043e \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435. +# Global Tool Configuration +ConfigureTools.DisplayName=\ + \u041e\u0431\u0449\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438\u0442\u0435 diff --git a/core/src/main/resources/jenkins/management/Messages_de.properties b/core/src/main/resources/jenkins/management/Messages_de.properties index b4a96115ab65990401e19c55c9bd0e80b7a2be3b..4ba968c4eb0d01b78299ba37bb348068709f2474 100644 --- a/core/src/main/resources/jenkins/management/Messages_de.properties +++ b/core/src/main/resources/jenkins/management/Messages_de.properties @@ -40,5 +40,10 @@ PluginsLink.Description=Plugins installieren, deinstallieren, aktivieren oder de StatisticsLink.DisplayName=Nutzungsstatistiken StatisticsLink.Description=Ressourcenauslastung \u00FCberwachen und \u00FCberpr\u00FCfen, ob weitere Build-Knoten sinnvoll w\u00E4ren. NodesLink.DisplayName=Knoten verwalten -NodesLink.Description=Knoten hinzuf\u00FCgen, entfernen, steuern und \u00FCberwachen, auf denen Jenkins Jobs verteilt ausf\u00FChren kann. +NodesLink.Description=Knoten hinzuf\u00FCgen, entfernen, steuern und \u00FCberwachen, auf denen Jenkins Projekte verteilt ausf\u00FChren kann. CliLink.Description=Jenkins aus der Kommandozeile oder skriptgesteuert nutzen und verwalten. +CliLink.DisplayName=Jenkins CLI +SystemLogLink.DisplayName=Systemlog +AdministrativeMonitorsDecorator.DisplayName=Anzeige aktiver Administrator-Warnungen +ConfigureTools.DisplayName=Konfiguration der Hilfsprogramme +ConfigureTools.Description=Hilfsprogramme, ihre Installationsverzeichnisse und Installationsverfahren konfigurieren diff --git a/core/src/main/resources/jenkins/management/Messages_fr.properties b/core/src/main/resources/jenkins/management/Messages_fr.properties index 45bddad13df722305d8699d5ee46a56bca314321..4449f47d3cc9fd6149a125c6146aec5a0150ca50 100644 --- a/core/src/main/resources/jenkins/management/Messages_fr.properties +++ b/core/src/main/resources/jenkins/management/Messages_fr.properties @@ -25,6 +25,9 @@ ConfigureLink.DisplayName=Configurer le syst\u00e8me ConfigureLink.Description=Configurer les param\u00e8tres g\u00e9n\u00e9raux et les chemins de fichiers. +ConfigureTools.DisplayName=Configuration globale des outils +ConfigureTools.Description=Configurer les outils, leur localisation et les installeurs automatiques. + ReloadLink.DisplayName=Recharger la configuration \u00e0 partir du disque ReloadLink.Description=Supprimer toutes les donn\u00e9es en m\u00e9moire et recharger tout \u00e0 partir du syst\u00e8me de fichiers.\n\ Utile quand vous modifiez les fichiers de configuration directement sur le disque. diff --git a/core/src/main/resources/jenkins/management/Messages_lt.properties b/core/src/main/resources/jenkins/management/Messages_lt.properties new file mode 100644 index 0000000000000000000000000000000000000000..929aa43e71f172085bbe47cfc3cd6babaaef61a4 --- /dev/null +++ b/core/src/main/resources/jenkins/management/Messages_lt.properties @@ -0,0 +1,32 @@ +# This file is under the MIT License by authors + +CliLink.Description=Prieiti/tvarkyti Jenkins\u0105 i\u0161 j\u016Bs\u0173 aplinkos arba skripto. +CliLink.DisplayName=Jenkins CLI + +ConfigureLink.Description=Konfig\u016Bruoti globalius nustatymus ir kelius. +ConfigureLink.DisplayName=Konfig\u016Bruoti sistem\u0105 + +ConsoleLink.Description=Vykdo nurodyt\u0105 skript\u0105 administravimui/problem\u0173-aptikimui/diagnostikai. +ConsoleLink.DisplayName=Skript\u0173 konsol\u0117 + +NodesLink.Description=Prid\u0117ti, i\u0161imti, valdyti ir steb\u0117ti skirtingus mazgus, kuriuose Jenkinsas vykdo darbus. +NodesLink.DisplayName=Valdyti mazgus + +PluginsLink.Description=Prid\u0117ti, i\u0161imti, i\u0161jungti ir \u012Fjungti priedus, kurie gali papildyti Jenkinso funkcionalum\u0105. +PluginsLink.DisplayName=Valdyti priedus + +ReloadLink.Description=I\u0161mesti visus \u012F atmint\u012F \u012Fkeltus duomenis ir visk\u0105 \u012Fkelti i\u0161 naujo i\u0161 fail\u0173 sistemos.\nNaudinga, kai failus pakeit\u0117te tiesiai diske. +ReloadLink.DisplayName=I\u0161 naujo \u012Fkelti konfig\u016Bracij\u0105 i\u0161 disko + +ShutdownLink.Description=Sustabdo nauj\u0173 darb\u0173 vykdym\u0105, kad b\u016Bt\u0173 galima saugiai i\u0161jungti sistem\u0105. +ShutdownLink.DisplayName_cancel=Nutraukti i\u0161jungim\u0105 +ShutdownLink.DisplayName_prepare=Pasiruo\u0161ti i\u0161jungimui + +StatisticsLink.Description=Patikrinkite j\u016Bs\u0173 resurs\u0173 naudojim\u0105 ir pa\u017Ei\u016Br\u0117kite, ar jums reikia daugiau kompiuteri\u0173 darbams. +StatisticsLink.DisplayName=Apkrovos statistika + +SystemInfoLink.Description=Rodo \u012Fvairi\u0105 aplinkos informacij\u0105, kuri padeda aptikti problemas. +SystemInfoLink.DisplayName=Sistemos informacija + +SystemLogLink.Description=Sistemos \u017Eurnale kaupiama informacija i\u0161 java.util.logging i\u0161vesties, susijusios su Jenkinsu. +SystemLogLink.DisplayName=Sistemos \u017Eurnalas diff --git a/core/src/main/resources/jenkins/management/Messages_pl.properties b/core/src/main/resources/jenkins/management/Messages_pl.properties index bcd68eabf1b17254a6296916ec581dbece0a5ab7..bae564f04c786bfad970ece5f1698f9cf87b9231 100644 --- a/core/src/main/resources/jenkins/management/Messages_pl.properties +++ b/core/src/main/resources/jenkins/management/Messages_pl.properties @@ -1,7 +1,6 @@ -# # The MIT License # -# Copyright (c) 2012, CloudBees, Intl., Nicolas De loof +# Copyright (c) 2012-2016, CloudBees, Intl., Nicolas De loof, Damian Szczepanik # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,7 +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. -# ConfigureLink.DisplayName=Skonfiguruj system ConfigureLink.Description=Konfiguruj ustawienia globalne i \u015Bcie\u017Cki. @@ -29,14 +27,14 @@ ReloadLink.DisplayName=Odczytaj ponownie konfiguracj\u0119 z dysku ReloadLink.Description=Porzu\u0107 wszystkie dane za\u0142adowane w pami\u0119ci i za\u0142aduj wszystko z systemu plik\u00F3w.\n\ Opcja u\u017Cyteczna gdy zmodyfikowano pliki konfiguracyjne bezpo\u015Brednio z dysku. -PluginsLink.DisplayName=Zarz\u0105dzaj dodatkami +PluginsLink.DisplayName=Zarz\u0105dzaj wtyczkami PluginsLink.Description=Dodaj, usu\u0144, wy\u0142\u0105cz lub w\u0142\u0105cz wtyczki kt\u00F3re mog\u0105 rozszerzy\u0107 funkcjonalno\u015B\u0107 Jenkinsa. SystemInfoLink.DisplayName=Informacje o systemie SystemInfoLink.Description=Wy\u015Bwietla wiele \u015Brodowiskowych informacji pomocnych przy rozwi\u0105zywaniu problem\u00F3w. StatisticsLink.DisplayName=Statystyki obci\u0105\u017Cenia -StatisticsLink.Description=Sprawd\u017A obci\u0105\u017Cenie zasob\u00F3w systemowych i dowiedz si\u0119, czy nie potrzebujesz wi\u0119cej maszyn do budowania. +StatisticsLink.Description=Sprawd\u017A obci\u0105\u017Cenie zasob\u00F3w systemowych i dowiedz si\u0119, czy nie potrzebujesz wi\u0119cej maszyn do uruchamiania zada\u0144. SystemLogLink.DisplayName=Dziennik systemowy SystemLogLink.Description=Dziennik systemowy gromadzi wywoy\u0142ania java.util.logging powi\u0105zane z Jenkinsem. @@ -53,3 +51,7 @@ NodesLink.Description=Dodawaj, usuwaj, kontroluj i monitoruj r\u00F3\u017Cne w\u ShutdownLink.DisplayName_prepare=Przygotuj do wy\u0142\u0105czenia ShutdownLink.DisplayName_cancel=Anuluj wy\u0142\u0105czenie ShutdownLink.Description=Zatrzyma wykonanie nowych build\u00F3w, tak by system m\u00F3g\u0142by\u0107 bezpiecznie wy\u0142\u0105czony. +# Global Tool Configuration +ConfigureTools.DisplayName=Globalne narz\u0119dzia do konfiguracji +# Configure tools, their locations and automatic installers. +ConfigureTools.Description=Konfiguruj narz\u0119dzia, \u015Bcie\u017Cki do nich i automatyczne instalatory diff --git a/core/src/main/resources/jenkins/management/Messages_sr.properties b/core/src/main/resources/jenkins/management/Messages_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..276429a4ad27305c3a32f57347b9c36813092206 --- /dev/null +++ b/core/src/main/resources/jenkins/management/Messages_sr.properties @@ -0,0 +1,26 @@ +# This file is under the MIT License by authors + +ConfigureLink.DisplayName=\u041F\u043E\u0441\u0442\u0430\u0432\u0438 \u0441\u0438\u0441\u0442\u0435\u043C\u0441\u043A\u0430 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 +ConfigureLink.Description=\u041E\u0431\u0448\u0442\u0430 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0438 \u043F\u0443\u0442\u0435\u0432\u0438. +ConfigureTools.DisplayName=\u041E\u0431\u0448\u0442\u0435 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0435 \u0430\u043B\u0430\u0442\u0430 +ConfigureTools.Description=\u041F\u043E\u0441\u0442\u0430\u0432\u0438 \u0430\u043B\u0430\u0442\u0435, \u043B\u043E\u043A\u0430\u0446\u0438\u0458\u0435, \u0438 \u0430\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0443 \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0443 +ReloadLink.DisplayName=\u041F\u043E\u043D\u043E\u0432\u043E \u0443\u0447\u0438\u0442\u0430\u0458 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0441\u0430 \u0434\u0438\u0441\u043A\u0430 +ReloadLink.Description=\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0441\u0430 \u043C\u0435\u043C\u043E\u0440\u0438\u0458\u0435 \u0438 \u0443\u0447\u0438\u0442\u0430\u0458 \u0441\u0430 \u0434\u0438\u0441\u043A\u0430.\n \u041A\u043E\u0440\u0438\u0441\u043D\u043E \u043A\u0430\u0434\u0430 \u0441\u0442\u0435 \u043F\u0440\u043E\u043C\u0435\u043D\u0438\u043B\u0438 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \u0434\u0438\u0440\u0435\u043A\u0442\u043D\u043E \u043D\u0430 \u0434\u0438\u0441\u043A\u0443. +PluginsLink.Description=\u0414\u043E\u0434\u0430\u0458\u0442\u0435, \u0443\u043A\u043B\u043E\u043D\u0438\u0442\u0435, \u0438\u043B\u0438 \u043E\u043D\u0435\u043C\u043E\u0433\u0443\u045B\u0438\u0442\u0435 \u043C\u043E\u0434\u0443\u043B\u0435 \u043A\u043E\u0458\u0435 \u043F\u0440\u043E\u0448\u0438\u0440\u0443\u0458\u0443 \u043C\u043E\u0433\u0443\u045B\u043D\u043E\u0441\u0442\u0435 Jenkins-\u0430. +PluginsLink.DisplayName=\u041F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0435 \u043C\u043E\u0434\u0443\u043B\u0430 +SystemInfoLink.DisplayName=\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0435 \u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0443 +SystemInfoLink.Description=\u041F\u0440\u0438\u043A\u0430\u0437\u0443\u0458\u0435 \u0440\u0430\u0437\u043D\u0443 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0443 \u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0443 \u0434\u0430 \u0431\u0443 \u043F\u043E\u043C\u0430\u0433\u0430\u043B\u043E \u0441\u0430 \u0440\u0435\u0448\u0430\u0432\u0430\u045A\u0435\u043C \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0438\u043C\u0430. +SystemLogLink.DisplayName=\u0416\u0443\u0440\u043D\u0430\u043B \u0441\u0438\u0441\u0442\u0435\u043C\u0430 +SystemLogLink.Description=\u0416\u0443\u0440\u043D\u0430\u043B \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u0437\u0430\u043F\u0438\u0441\u0443\u0458\u0435 \u0438\u0441\u0445\u043E\u0434 java.util.logging \u043A\u043E\u0458\u0438 \u0441\u0435 \u043E\u0434\u043D\u043E\u0441\u0438 \u043D\u0430 Jenkins. +StatisticsLink.DisplayName=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0435 \u043E \u043E\u043F\u0442\u0435\u0440\u0435\u045B\u0435\u045A\u0443 +StatisticsLink.Description=\u041F\u0440\u043E\u0432\u0435\u0440\u0438\u0442\u0435 \u043E\u043F\u0442\u0435\u0440\u0435\u045B\u0435\u045A\u0435 \u043D\u0430\u0434 \u0440\u0435\u0441\u0443\u0440\u0441\u0438\u043C\u0430 \u0434\u0430 \u0431\u0438 \u0441\u0442\u0435 \u043E\u0434\u0440\u0435\u0434\u0438\u043B\u0438 \u0430\u043A\u043E \u0458\u0435 \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E \u0432\u0438\u0448\u0435 \u043C\u0430\u0448\u0438\u043D\u0430 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443. +CliLink.Description=\u0414\u043E\u0441\u0442\u0443\u043F\u0438\u0442\u0435 \u0438 \u0443\u043F\u0440\u0430\u0432\u0459\u0430\u0458\u0442\u0435 Jenkins-\u043E\u043C \u0441\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u0435 \u043B\u0438\u043D\u0438\u0458\u0435 \u0438\u043B\u0438 \u0441\u043A\u0440\u0438\u043F\u0442\u043E\u043C. +CliLink.DisplayName=Jenkins \u0441\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u0435 \u043B\u0438\u043D\u0438\u0458\u0435 +ConsoleLink.DisplayName=\u041A\u043E\u043D\u0437\u043E\u043B\u0430 +ConsoleLink.Description=\u0418\u0437\u0432\u0440\u0448\u0430\u0432\u0430 \u0441\u043A\u0440\u0438\u043F\u0442\u043E\u0432\u0435 \u0437\u0430 \u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0458\u0443 \u0438 \u043E\u0442\u043A\u0440\u0438\u0432\u0430\u045A\u0435 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0430. +NodesLink.DisplayName=\u0423\u043F\u0440\u0430\u0432\u0438 \u043C\u0430\u0448\u0438\u043D\u0430\u043C\u0430 +NodesLink.Description=\u0414\u043E\u0434\u0430\u0458\u0442\u0435, \u0443\u043A\u043B\u043E\u043D\u0438\u0442\u0435, \u0438 \u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 \u043C\u0430\u0448\u0438\u043D\u0435 \u043D\u0430 \u043A\u0438\u043C \u0441\u0435 \u0438\u0437\u0432\u0440\u0448\u0430\u0432\u0430\u0458\u0443 \u0437\u0430\u0434\u0430\u0446\u0438. +ShutdownLink.DisplayName_prepare=\u041F\u0440\u0438\u043F\u0440\u0435\u043C\u0438 \u0437\u0430 \u0433\u0430\u0448\u0435\u045A\u0435 +ShutdownLink.Description=\u0417\u0430\u0443\u0441\u0442\u0430\u0432\u0438 \u0438\u0437\u0432\u0440\u0448\u0430\u0432\u0430\u045A\u0435 \u043D\u043E\u0432\u0438\u0445 \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0430, \u0434\u0430 \u0431\u0438 \u0441\u0438\u0441\u0442\u0435\u043C \u043C\u043E\u0433\u0430\u043E \u0431\u0438\u0442\u0438 \u0431\u0435\u0437\u0431\u0435\u0434\u043D\u043E \u0438\u0441\u043A\u0459\u0443\u0447\u0435\u043D. +ShutdownLink.DisplayName_cancel=\u041E\u0442\u043A\u0430\u0436\u0438 \u0433\u0430\u0448\u0435\u045A\u0435 +Manage\ Jenkins=\u0423\u043F\u0440\u0430\u0432\u0459\u0430\u045A\u0435 Jenkins-\u043E\u043C \ No newline at end of file diff --git a/core/src/main/resources/jenkins/management/PluginsLink/info_pl.properties b/core/src/main/resources/jenkins/management/PluginsLink/info_pl.properties index 29bc40f579b7cf0ca0f8659407021331db317bf8..57020cf14bc8e37a2c963fbbbd3af777dfc648d2 100644 --- a/core/src/main/resources/jenkins/management/PluginsLink/info_pl.properties +++ b/core/src/main/resources/jenkins/management/PluginsLink/info_pl.properties @@ -22,4 +22,4 @@ # THE SOFTWARE. # -updates\ available=uaktualnienia s\u0105 dost\u0119pne +updates\ available=aktualizacje s\u0105 dost\u0119pne diff --git a/core/src/main/resources/jenkins/management/PluginsLink/info_sr.properties b/core/src/main/resources/jenkins/management/PluginsLink/info_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..0182d883887045a76fb84fe9f883ed0b7639fdf4 --- /dev/null +++ b/core/src/main/resources/jenkins/management/PluginsLink/info_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +updates\ available=\u0418\u043C\u0430 \u043D\u043E\u0432\u0438\u0445 \u043D\u0430\u0434\u0433\u0440\u0430\u0434\u045A\u0430 diff --git a/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_de.properties b/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_de.properties new file mode 100644 index 0000000000000000000000000000000000000000..89815e430dc546958ba5fcd6424bdf583ff69abc --- /dev/null +++ b/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_de.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2017 Daniel Beck and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Strategy=Strategie diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_eo.properties b/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_pl.properties similarity index 94% rename from core/src/main/resources/hudson/views/LastFailureColumn/column_eo.properties rename to core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_pl.properties index 20ca946e6c646093dae8711e24d2f075ed512586..ec1e22b953f1fca7f0cc43effc36b7424a94831a 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/column_eo.properties +++ b/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_pl.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Copyright (c) 2016, Damian Szczepanik # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -19,5 +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. - -N/A=--- +Strategy=Strategia diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_id.properties b/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_sr.properties similarity index 55% rename from core/src/main/resources/hudson/PluginManager/tabBar_id.properties rename to core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_sr.properties index 3bc33faeaf1574ce11d0e553efd2a34426c8aaf1..a0f4b42884f54a098f6f5107abc201bfeaba1d55 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_id.properties +++ b/core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_sr.properties @@ -1,4 +1,3 @@ # This file is under the MIT License by authors -Available=Tersedia -Installed=Terpasang +Strategy=\u0420\u0435\u0436\u0438\u043C diff --git a/core/src/main/resources/jenkins/model/BuildDiscarderProperty/help.html b/core/src/main/resources/jenkins/model/BuildDiscarderProperty/help.html index 7a50890f34982cbcbb18fb41bfff21bd6fe6c3dd..15ee4f5f338d5a1ba81afdcf7fa74d87d78d8a12 100644 --- a/core/src/main/resources/jenkins/model/BuildDiscarderProperty/help.html +++ b/core/src/main/resources/jenkins/model/BuildDiscarderProperty/help.html @@ -1,19 +1,51 @@
    - This controls the disk consumption of Jenkins by managing how long you'd like to keep - records of the builds (such as console output, build artifacts, and so on.) - Jenkins offers two criteria: - + This determines when, if ever, build records for this project should be + discarded. Build records include the console output, archived artifacts, and + any other metadata related to a particular build. +

    + Keeping fewer builds means less disk space will be used in the Build Record + Root Directory, which is specified on the Configure System screen. +

    + + Jenkins offers two options for determining when builds should be discarded:

    1. - Driven by age. You can have Jenkins delete a record if it reaches a certain age - (for example, 7 days old.) + Build age: discard builds if they reach a certain age; for example, seven + days old.
    2. - Driven by number. You can have Jenkins make sure that it only maintains up to - N build records. If a new build is started, the oldest record will - be simply removed. + Build count: discard the oldest build if a certain number of builds + already exist.
    + These two options can be active at the same time, so you can keep builds for + 14 days, but only up to a limit of 50 builds, for example. If either limit is + exceeded, then any builds beyond that limit will be discarded. +

    + You can also ensure that important builds are kept forever, regardless of the + setting here — click the Keep this build forever button on the + build page. +
    + The last stable and last successful build are also excluded from these rules. + +


    + + In the Advanced section, the same options can be specified, but + specifically for build artifacts. If enabled, build artifacts will be + discarded for any builds which exceed the defined limits. The builds + themselves will still be kept; only the associated artifacts, if any, will be + deleted. +

    + For example, if a project builds some software and produces a large installer, + which is archived, you may wish to always keep the console log and information + about which source control commit was built, while for disk space reasons, you + may want to keep only the last three installers that were built. +
    + This can make sense for projects where you can easily recreate the same + artifacts later by building the same source control commit again. + +


    - Jenkins also allows you to mark an individual build as 'Keep this log forever', to - exclude certain important builds from being discarded automatically. - The last stable and last successful build are always kept as well. -
    \ No newline at end of file + Note that Jenkins does not discard items immediately when this configuration + is updated, or as soon as any of the configured values are exceeded; these + rules are evaluated each time that a build of this project completes. +
    diff --git a/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary.groovy b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary.groovy index ec48cb9efaf362b6b4e0defe98c1f9c8e889172d..b75b2386f95bfcb7aaf612ec9f2a95f333255b65 100644 --- a/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary.groovy +++ b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary.groovy @@ -1,4 +1,9 @@ package jenkins.model.CauseOfInterruption.UserInterruption; // by default we just print the short description. -raw(_("blurb",my.user.fullName, rootURL+'/'+my.user.url)) \ No newline at end of file +def user = my.userOrNull +if (user != null) { + raw(_("blurb", user.fullName, rootURL+'/'+user.url)) +} else { + raw(_("userNotFound", my.userId)) +} diff --git a/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary.properties b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary.properties index 1f1f63c2bced9e8dcbda322ad0c3d6127ab5f4c4..1ada7d261b140d9a47bbaa4da7cdffd44a4b9b8e 100644 --- a/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary.properties +++ b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary.properties @@ -1 +1,2 @@ -blurb=Aborted by user {0} \ No newline at end of file +blurb=Aborted by user {0} +userNotFound=Aborted by user {0} diff --git a/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_ja.properties b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_ja.properties index e2d2051a6e1b5c013e972a401894689fff2e3a17..3cd254db98c9992dd0aa682f0c28c4106dd2b9da 100644 --- a/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_ja.properties +++ b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_ja.properties @@ -1 +1,2 @@ -blurb=\u30e6\u30fc\u30b6\u30fc {0} \u306b\u3088\u308a\u4e2d\u65ad \ No newline at end of file +blurb=\u30e6\u30fc\u30b6\u30fc {0} \u306b\u3088\u308a\u4e2d\u65ad +userNotFound=\u30e6\u30fc\u30b6\u30fc {0} \u306b\u3088\u308a\u4e2d\u65ad diff --git a/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_pl.properties b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_pl.properties index 0095ece665717b8c3e01065e4517b9530baa7cbc..d2c91f76b00ac81566300ef4844379c61cf9dadd 100644 --- a/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_pl.properties +++ b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_pl.properties @@ -1 +1,2 @@ -blurb=Przerwane przez u\u017Cytkownika {0} \ No newline at end of file +blurb=Przerwane przez u\u017cytkownika {0} +userNotFound=Przerwane przez u\u017cytkownika {0} diff --git a/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_sr.properties b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..a88ce0631cae526ce3dc5bf038f65a498bd59a6a --- /dev/null +++ b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +blurb=\u041e\u0442\u043a\u0430\u0437\u0430\u043d\u043e \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a\u043e\u043c {0} +userNotFound=\u041e\u0442\u043a\u0430\u0437\u0430\u043d\u043e \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a\u043e\u043c {0} diff --git a/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_zh_TW.properties b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_zh_TW.properties index db917957563b21c1f8043f882355428694831555..3b2ac62c063258e245c2815a36ef9baac269d8b5 100644 --- a/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/CauseOfInterruption/UserInterruption/summary_zh_TW.properties @@ -22,3 +22,4 @@ # THE SOFTWARE. blurb=\u7531\u4f7f\u7528\u8005 {0} \u4e2d\u6b62 +userNotFound=\u7531\u4f7f\u7528\u8005 {0} \u4e2d\u6b62 diff --git a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv.groovy b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv.groovy index bfcc1c0335b723dcba95c3263667f536396c11f3..31cdf2c1ff7b5a8450db3a1602e34e7a1b67c1e0 100644 --- a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv.groovy +++ b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv.groovy @@ -3,7 +3,7 @@ package jenkins.model.CoreEnvironmentContributor; def l = namespace(lib.JenkinsTagLib) // also advertises those contributed by Run.getCharacteristicEnvVars() -["BUILD_NUMBER","BUILD_ID","BUILD_DISPLAY_NAME","JOB_NAME","BUILD_TAG","EXECUTOR_NUMBER","NODE_NAME","NODE_LABELS","WORKSPACE","JENKINS_HOME","JENKINS_URL","BUILD_URL","JOB_URL"].each { name -> +["BUILD_NUMBER","BUILD_ID","BUILD_DISPLAY_NAME","JOB_NAME", "JOB_BASE_NAME","BUILD_TAG","EXECUTOR_NUMBER","NODE_NAME","NODE_LABELS","WORKSPACE","JENKINS_HOME","JENKINS_URL","BUILD_URL","JOB_URL"].each { name -> l.buildEnvVar(name:name) { raw(_("${name}.blurb")) } diff --git a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv.properties b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv.properties index c8040aad7af6a0dc443c596ad471b9b704c29623..72c8c0ae3bb9819afa9131fa933233a604083ec6 100644 --- a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv.properties +++ b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv.properties @@ -1,14 +1,15 @@ BUILD_NUMBER.blurb=The current build number, such as "153" BUILD_ID.blurb=The current build ID, identical to BUILD_NUMBER for builds created in 1.597+, but a YYYY-MM-DD_hh-mm-ss timestamp for older builds BUILD_DISPLAY_NAME.blurb=The display name of the current build, which is something like "#153" by default. -JOB_NAME.blurb=Name of the project of this build, such as "foo" or "foo/bar". (To strip off folder paths from a Bourne shell script, try: $'{'JOB_NAME##*/}) -BUILD_TAG.blurb=String of "jenkins-$'{'JOB_NAME}-$'{'BUILD_NUMBER}". Convenient to put into a resource file, a jar file, etc for easier identification. +JOB_NAME.blurb=Name of the project of this build, such as "foo" or "foo/bar". +JOB_BASE_NAME.blurb=Short Name of the project of this build stripping off folder paths, such as "foo" for "bar/foo". +BUILD_TAG.blurb=String of "jenkins-$'{'JOB_NAME}-$'{'BUILD_NUMBER}". All forward slashes ('/') in the JOB_NAME are replaced with dashes ('-'). Convenient to put into a resource file, a jar file, etc for easier identification. EXECUTOR_NUMBER.blurb=\ The unique number that identifies the current executor \ (among executors of the same machine) that\u2019s \ carrying out this build. This is the number you see in \ the "build executor status", except that the number starts from 0, not 1. -NODE_NAME.blurb=Name of the slave if the build is on a slave, or "master" if run on master +NODE_NAME.blurb=Name of the agent if the build is on an agent, or "master" if run on master NODE_LABELS.blurb=Whitespace-separated list of labels that the node is assigned. WORKSPACE.blurb=The absolute path of the directory assigned to the build as a workspace. JENKINS_HOME.blurb=The absolute path of the directory assigned on the master node for Jenkins to store data. diff --git a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_de.properties b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_de.properties index bbd98cb35aa269abc84b937b4a4646c9637a14fa..9b427752c91cb5bdac821b4452216395960137ed 100644 --- a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_de.properties +++ b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_de.properties @@ -1,5 +1,5 @@ BUILD_NUMBER.blurb=Die aktuelle Build-Nummer, z.B. "153". -BUILD_ID.blurb=Die aktuelle Build-ID, z.B. "2005-08-22_23-59-59" (YYYY-MM-DD_hh-mm-ss). +BUILD_ID.blurb=Die aktuelle Build-ID. In Builds ab Jenkins 1.597 ist dies die Build-Nummer, vorher ein Zeitstempel im Format YYYY-MM-DD_hh-mm-ss. BUILD_DISPLAY_NAME.blurb=Der Anzeigename des aktuellen Builds, standardmig z.B. "#153". JOB_NAME.blurb=Projektname des Builds, z.B. "foo" oder "foo/bar". (Um in einem Bourne Shell-Script den Pfadanteil abzuschneiden, probieren Sie: $'{'JOB_NAME##*/}) BUILD_TAG.blurb=Eine Zeichenkette in der Form "jenkins-$'{'JOB_NAME}-$'{'BUILD_NUMBER}". \ @@ -8,9 +8,8 @@ BUILD_TAG.blurb=Eine Zeichenkette in der Form "jenkins-$'{'JOB_NAME}-$ EXECUTOR_NUMBER.blurb=Die laufende Nummer des Build-Prozessors, der den aktuellen Build ausf\u00FChrt \ (aus den Build-Prozessoren desselben Rechners). \ Dies ist die Nummer, die Sie auch im Build-Prozessor Status sehen - \ - mit der Ausnahme, da\u00DF bei der Umgebungsvariable die Z\u00E4hlung bei 0 und nicht \ + mit der Ausnahme, dass bei der Umgebungsvariable die Z\u00E4hlung bei 0 und nicht \ bei 1 beginnt. -NODE_NAME.blurb=Name des Build-Slaves, wenn auf einem Build-Slave gebaut wird, oder "master" wenn auf dem Master-Server gebaut wird. NODE_LABELS.blurb=Durch Leerzeichen getrennte Liste von Labels, die dem Knoten zugeordnet sind. WORKSPACE.blurb=Der absolute Pfad zum Arbeitsbereich. JENKINS_HOME.blurb=Der absolute Pfad des Verzeichnisses, in dem der Master-Server seine Daten speichert. diff --git a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_fr.properties b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_fr.properties index 7026f87f9db9dc503de23ab0d76004a9b9a6b489..6228f7a887a9779e579b97432a14c8bdc1551f75 100644 --- a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_fr.properties +++ b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_fr.properties @@ -1,5 +1,4 @@ BUILD_NUMBER.blurb=Le num\u00E9ro du build courant, par exemple "153" -BUILD_ID.blurb=L'identifiant du build courant, par exemple "2005-08-22_23-59-59" (YYYY-MM-DD_hh-mm-ss) JOB_NAME.blurb=Nom du projet de ce build, par exemple "foo" BUILD_TAG.blurb=Le texte "jenkins-$'{'JOB_NAME}-$'{'BUILD_NUMBER}", facile \u00E0 placer dans \ un fichier de ressource, ou un jar, pour identification future. @@ -7,7 +6,6 @@ EXECUTOR_NUMBER.blurb=Le num\u00E9ro unique qui identifie l'ex\u00E9cuteur coura (parmi les ex\u00E9cuteurs d'une m\u00EAme machine) qui a contruit ce build. \ Il s'agit du num\u00E9ro que vous voyez dans le "statut de l'ex\u00E9cuteur du build", \ sauf que la num\u00E9rotation commence \u00E0 0 et non \u00E0 1. -NODE_NAME.blurb= NODE_LABELS.blurb= WORKSPACE.blurb=Le chemin absolu vers le r\u00E9pertoire de travail. JENKINS_HOME.blurb= diff --git a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_ja.properties b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_ja.properties index d66e0424dfe9d2dcc9d3fe6cb76dcea70c3a5181..c161b5b39cfae47f3ebd27e6bfddf5c810dd16e5 100644 --- a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_ja.properties +++ b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_ja.properties @@ -1,11 +1,9 @@ BUILD_NUMBER.blurb=\u5F53\u8A72\u30D3\u30EB\u30C9\u306E\u756A\u53F7\u3002\u4F8B "153" -BUILD_ID.blurb=\u5F53\u8A72\u30D3\u30EB\u30C9ID\u3002\u4F8B "2005-08-22_23-59-59" (YYYY-MM-DD_hh-mm-ss) JOB_NAME.blurb=\u30D3\u30EB\u30C9\u306E\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u540D\u3002\u4F8B "foo" BUILD_TAG.blurb=\u6587\u5B57\u5217 "jenkins-$'{'JOB_NAME}-$'{'BUILD_NUMBER}"\u3002\ \u7C21\u6613\u306A\u8B58\u5225\u5B50\u3068\u3057\u3066\u3001\u30EA\u30BD\u30FC\u30B9\u30D5\u30A1\u30A4\u30EB\u3084jar\u30D5\u30A1\u30A4\u30EB\u306A\u3069\u306B\u4ED8\u4E0E\u3059\u308B\u306E\u306B\u4FBF\u5229\u3067\u3059\u3002 EXECUTOR_NUMBER.blurb=\u3053\u306E\u30D3\u30EB\u30C9\u3092\u5B9F\u884C\u3057\u3066\u3044\u308B\u73FE\u5728\u306E\u30A8\u30B0\u30BC\u30AD\u30E5\u30FC\u30BF\u30FC\u3092\u8B58\u5225\u3059\u308B(\u540C\u4E00\u30DE\u30B7\u30F3\u306E\u4E2D\u3067)\u30E6\u30CB\u30FC\u30AF\u306A\u756A\u53F7\u3002\ "\u30D3\u30EB\u30C9\u5B9F\u884C\u72B6\u614B"\u306B\u8868\u793A\u3055\u308C\u3066\u3044\u308B\u6570\u5B57\u3067\u3059\u304C\u30011\u3067\u306F\u306A\u304F0\u304B\u3089\u59CB\u307E\u308B\u6570\u5B57\u3067\u3059\u3002 -NODE_NAME.blurb=\u30D3\u30EB\u30C9\u304C\u5B9F\u884C\u3055\u308C\u308B\u30B9\u30EC\u30FC\u30D6\u306E\u540D\u79F0\u3002\u30DE\u30B9\u30BF\u30FC\u3067\u5B9F\u884C\u3055\u308C\u308B\u5834\u5408\u306F"master"\u3002 NODE_LABELS.blurb=\u30CE\u30FC\u30C9\u306B\u8A2D\u5B9A\u3055\u308C\u305F\u30E9\u30D9\u30EB\u306E\u30EA\u30B9\u30C8\uFF08\u30B9\u30DA\u30FC\u30B9\u533A\u5207\u308A)\u3002 WORKSPACE.blurb=\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u306E\u7D76\u5BFE\u30D1\u30B9\u3002 JENKINS_HOME.blurb= diff --git a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_nl.properties b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_nl.properties index cd999280d16febafa49abe3542269ad6d2cc6410..e1a907a0958e95fe9ce27436001cb62e980af272 100644 --- a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_nl.properties +++ b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_nl.properties @@ -1,5 +1,4 @@ BUILD_NUMBER.blurb=Het nummer van de huidige bouwpoging, v.b. "153" -BUILD_ID.blurb=Het identificatienummer van de huidige bouwpoging, v.b. "2005-08-22_23-59-59" (YYYY-MM-DD_hh-mm-ss) JOB_NAME.blurb=Naam van het project dat gebouwd wordt door deze bouwpoging, v.b. "foo" BUILD_TAG.blurb=Het label :"jenkins-$'{'JOB_NAME}-$'{'BUILD_NUMBER}". Dit label is typisch handig om \ ter identificatie op te nemen in een "resource"-bestand, archieven (zoals jar,war,ear,...), ... . @@ -7,7 +6,6 @@ EXECUTOR_NUMBER.blurb=Het unieke nummer, waarmee uw huidige uitvoerder ge\u00EFd Dit is het nummer dat u terugvindt in de "Status uitvoerders"-tabel op de hoofdpagina. \ Merk wel dat in die tabel geteld wordt vanaf 1. Uitvoerder 1 in de "Status uitvoerders"-tabel \ komt dus overeen met een "EXECUTOR_NUMBER" gelijk aan 0. -NODE_NAME.blurb= NODE_LABELS.blurb= WORKSPACE.blurb=Het absolute pad naar de werkplaats. JENKINS_HOME.blurb= diff --git a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_sr.properties b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..8772ef9dd5816fa629121bf83e8823d6fb440c94 --- /dev/null +++ b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_sr.properties @@ -0,0 +1,16 @@ +# This file is under the MIT License by authors + +BUILD_NUMBER.blurb=\u0422\u0440\u0435\u043D\u0443\u0442\u043D\u0438 \u0431\u0440\u043E\u0458 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435, \u043A\u0430\u043E \u043D\u043F\u0440. "153" +BUILD_ID.blurb=ID \u0442\u0440\u0435\u043D\u0443\u0442\u043D\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435, \u0438\u0434\u0435\u043D\u0442\u0438\u0447\u0430\u043D BUILD_NUMBER \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 \u043F\u043E\u0441\u043B\u0435 \u0432\u0435\u0440\u0437\u0438\u0458\u0435 1.597, \u0430 \u0448\u0430\u0431\u043B\u043E\u043D\u0443 YYYY-MM-DD_hh-mm-ss \u0437\u0430 \u0441\u0442\u0430\u0440\u0438\u0458\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435. +BUILD_DISPLAY_NAME.blurb=\u0418\u043C\u0435 \u0442\u0440\u0435\u043D\u0443\u0442\u043D\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435, \u0448\u0442\u043E \u0438\u043D\u0430\u0447\u0435 \u043B\u0438\u0447\u0438 \u043D\u0430 "#153". +JOB_NAME.blurb=\u0418\u043C\u0435 \u0437\u0430\u0434\u0430\u0442\u043A\u0430 \u0437\u0430 \u043E\u0432\u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0443, \u043D\u043F\u0440. "foo" \u0438\u043B\u0438 "foo/bar". +JOB_BASE_NAME.blurb=\u041A\u0440\u0430\u0442\u043A\u043E \u0438\u043C\u0435 \u043E\u0434 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0437\u0430 \u043E\u0432\u043E \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 (\u043D\u0435 \u043F\u0443\u043D\u043E \u043F\u0443\u0442\u0430\u045A\u0435), \u043D\u043F\u0440. "foo" for "bar/foo". +BUILD_TAG.blurb=\u041D\u0438\u0437 "jenkins-$'{'JOB_NAME}-$'{'BUILD_NUMBER}". \u0421\u0432\u0435 \u043A\u043E\u0441\u0435 \u0446\u0440\u0442\u0435 ('/') \u0443 JOB_NAME \u0441\u0443 \u0437\u0430\u043C\u0435\u045A\u0435\u043D\u0438 \u0446\u0440\u0442\u0438\u0446\u0430\u043C\u0430 ('-'). \u041F\u043E\u0433\u043E\u0434\u043D\u043E \u0458\u0435 \u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0443 resource, jar, \u0438\u0442\u0434. \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435 \u0437\u0430. +EXECUTOR_NUMBER.blurb=\u0408\u0435\u0434\u0438\u043D\u0441\u0442\u0432\u0435\u043D\u0438 \u0431\u0440\u043E\u0458 \u043A\u043E\u0458\u0438 \u0438\u043D\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0443\u0458\u0435 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 (\u043E\u0434 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 \u043D\u0430 \u0438\u0441\u0442\u043E\u0458 \u043C\u0430\u0448\u0438\u043D\u0438) \u043E\u0432\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435. \u0411\u0440\u043E\u0458\u0430 \u0441\u043B\u0438\u0447\u0430\u043D \u043E\u0432\u043E\u043C\u0435, \u043A\u043E\u0458\u0438 \u043F\u043E\u0447\u0438\u045A\u0435 \u0441\u0430 0 \u0430 \u043D\u0435 1, \u0458\u0435 \u043F\u0440\u0438\u043A\u0430\u0437\u0430\u043D \u043F\u0440\u0438 "\u0441\u0442\u0430\u045A\u0435 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435". +NODE_NAME.blurb=\u0418\u043C\u0435 \u0430\u0433\u0435\u043D\u0442\u0430 \u0430\u043A\u043E \u0441\u0435 \u0438\u0437\u0432\u0440\u0448\u0430\u0432\u0430 \u043D\u0430 \u0442\u0430\u043A\u0432\u043E\u0458 \u043C\u0430\u0448\u0438\u043D\u0438, \u0438\u043B\u0438 "master" \u0430\u043A\u043E \u043D\u0430 \u0442\u0430\u043A\u0432\u043E\u0458. +NODE_LABELS.blurb= +WORKSPACE.blurb=\u0420\u0430\u0437\u043C\u0430\u043A-\u043E\u0434\u0432\u043E\u0458\u0435\u043D\u0438 \u0441\u043F\u0438\u0441\u0430\u043A \u043B\u0430\u0431\u0435\u043B\u0430 \u0434\u043E\u0434\u0435\u0459\u0435\u043D\u043E \u043C\u0430\u0448\u0438\u043D\u0438. +JENKINS_HOME.blurb=\u041F\u0443\u043D\u043E \u043F\u0443\u0442\u0430\u045A\u0435 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C\u0443 \u0434\u043E\u0434\u0435\u0459\u0435\u043D\u043E \u0433\u043B\u0430\u0432\u043D\u043E\u0458 \u043C\u0430\u0448\u0438\u043D\u0438, \u0433\u0434\u0435 \u045B\u0435 Jenkins \u0447\u0443\u0432\u0430\u0442\u0438 \u0441\u0432\u043E\u0458\u0435 \u043F\u043E\u0434\u0430\u0442\u043A\u0435. +JENKINS_URL.blurb=\u041A\u043E\u043C\u043F\u043B\u0435\u0442\u043D\u0430 Jenkins URL-\u0430\u0434\u0440\u0435\u0441\u0430, \u043A\u0430\u043E http://server:port/jenkins/ (\u0441\u0430\u043C\u043E \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u043E \u0430\u043A\u043E \u0458\u0435 Jenkins URL \u043F\u043E\u0441\u0442\u0430\u0432\u0459\u0435\u043D\u043E \u0443 \u0441\u0438\u0441\u0442\u0435\u043C\u0441\u043A\u0438\u043C \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430) +BUILD_URL.blurb=\u041A\u043E\u043C\u043F\u043B\u0435\u0442\u043D\u0430 URL-\u0430\u0434\u0440\u0435\u0441\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435, \u043D\u043F\u0440. http://server:port/jenkins/job/foo/15/ (Jenkins URL \u043C\u043E\u0440\u0430 \u0431\u0438\u0442\u0438 \u043F\u043E\u0441\u0442\u0430\u0432\u0459\u0435\u043D\u043E) +JOB_URL.blurb=\u041A\u043E\u043C\u043F\u043B\u0435\u0442\u043D\u0430 URL-\u0430\u0434\u0440\u0435\u0441\u0430 \u0437\u0430\u0434\u0430\u0442\u043A\u0430, \u043D\u043F\u0440. http://server:port/jenkins/job/foo/ (Jenkins URL \u043C\u043E\u0440\u0430 \u0431\u0438\u0442\u0438 \u043F\u043E\u0441\u0442\u0430\u0432\u0459\u0435\u043D\u043E) \ No newline at end of file diff --git a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_tr.properties b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_tr.properties deleted file mode 100644 index b0a753fdc1456047cfd0fecab053ecdf76736b4c..0000000000000000000000000000000000000000 --- a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_tr.properties +++ /dev/null @@ -1,12 +0,0 @@ -BUILD_NUMBER.blurb= -BUILD_ID.blurb= -JOB_NAME.blurb= -BUILD_TAG.blurb= -EXECUTOR_NUMBER.blurb= -NODE_NAME.blurb= -NODE_LABELS.blurb= -WORKSPACE.blurb= -JENKINS_HOME.blurb= -JENKINS_URL.blurb= -BUILD_URL.blurb= -JOB_URL.blurb= diff --git a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_zh_TW.properties b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_zh_TW.properties index 3c9e7ba68a4fcd33ba3a94f12a15ccb1df85418d..c123e3f639af2a30d4713494f763a0e788b8dbf4 100644 --- a/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_zh_TW.properties @@ -22,13 +22,11 @@ # THE SOFTWARE. BUILD_NUMBER.blurb=\u76ee\u524d\u5efa\u7f6e\u7de8\u865f\uff0c\u4f8b\u5982 "153" -BUILD_ID.blurb=\u76ee\u524d\u5efa\u7f6e ID\uff0c\u4f8b\u5982 "2005-08-22_23-59-59" (YYYY-MM-DD_hh-mm-ss) JOB_NAME.blurb=\u5efa\u7f6e\u7684\u5c08\u6848\u540d\u7a31\uff0c\u4f8b\u5982 "foo" \u6216 "foo/bar" BUILD_TAG.blurb="jenkins-$'{'JOB_NAME}-$'{'BUILD_NUMBER}" \u5b57\u4e32\u3002\u65b9\u4fbf\u653e\u5230\u8cc7\u6e90\u6a94\u3001JAR \u6a94...\u88e1\uff0c\u5e6b\u52a9\u8b58\u5225\u3002 EXECUTOR_NUMBER.blurb=\ \u57f7\u884c\u672c\u6b21\u5efa\u7f6e\u7684\u57f7\u884c\u7a0b\u5f0f\u7de8\u865f\uff0c\u53ef\u7528\u4f86\u9451\u5225\u540c\u6a5f\u5668\u4e0a\u7684\u4e0d\u540c\u57f7\u884c\u7a0b\u5f0f\u3002\ \u4e5f\u5c31\u662f\u60a8\u5728\u300c\u5efa\u7f6e\u57f7\u884c\u7a0b\u5f0f\u72c0\u614b\u300d\u88e1\u770b\u5230\u7684\u865f\u78bc\uff0c\u53ea\u662f\u9019\u88e1\u5f9e 0 \u958b\u59cb\u7b97\uff0c\u4e0d\u662f 1\u3002 -NODE_NAME.blurb=\u5982\u679c\u5efa\u7f6e\u662f\u5728 Slave \u7bc0\u9ede\u4e0a\u57f7\u884c\uff0c\u5c31\u662f\u7bc0\u9ede\u7684\u540d\u7a31; \u5982\u679c\u5728 Master \u4e0a\u8dd1\u5c31\u986f\u793a "master" NODE_LABELS.blurb=\u4ee5\u7a7a\u767d\u5206\u9694\u7684\u7bc0\u9ede\u6a19\u7c64\u6e05\u55ae\u3002 WORKSPACE.blurb=\u5efa\u7f6e\u5de5\u4f5c\u5340\u76ee\u9304\u7684\u7d55\u5c0d\u8def\u5f91\u3002 JENKINS_HOME.blurb=Master \u7bc0\u9ede\u8cc7\u6599\u5b58\u653e\u76ee\u9304\u7684\u7d55\u5c0d\u8def\u5f91\u3002 diff --git a/core/src/main/resources/jenkins/model/DownloadSettings/Warning/message_lt.properties b/core/src/main/resources/jenkins/model/DownloadSettings/Warning/message_lt.properties new file mode 100644 index 0000000000000000000000000000000000000000..c6c204e38e4588200af58c22e7818109e5453d0c --- /dev/null +++ b/core/src/main/resources/jenkins/model/DownloadSettings/Warning/message_lt.properties @@ -0,0 +1,5 @@ +blurb=\ + J\u016bs dabar naudojate nar\u0161ykl\u0117s atsiuntim\u0105, kad gautum\u0117te metaduomenis Jenkinso priedams ir \u012frankiams. \ + Tai turi patikimumo problem\u0173 ir n\u0117ra visi\u0161kai saugu. \ + Apsvarstykite persijungim\u0105 \u012f serverio-pus\u0117s atsiuntim\u0105. +Dismiss=Praleisti diff --git a/core/src/main/resources/jenkins/model/DownloadSettings/Warning/message_sr.properties b/core/src/main/resources/jenkins/model/DownloadSettings/Warning/message_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..e8fb16b532d010fb9f5563435cdb223dca5b2327 --- /dev/null +++ b/core/src/main/resources/jenkins/model/DownloadSettings/Warning/message_sr.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +blurb=\ + \u0422\u0440\u0435\u043D\u0443\u0442\u043D\u043E \u0432\u0435\u0431-\u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0447\u0435\u043C \u043F\u0440\u0435\u0443\u0437\u0438\u0430\u0442\u0435 \u043C\u0435\u0442\u0430\u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435 \u043E Jenkins \u043C\u043E\u0434\u0443\u043B\u0438\u043C\u0430 \u0438 \u0430\u043B\u0430\u0442\u0438\u043C\u0430. \ + \u0418\u043C\u0430 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0430\u0442\u0430 \u0441\u0430 \u043E\u0432\u0438\u043C \u043C\u0435\u0442\u043E\u0434\u043E\u043C, \u0438 \u043D\u0435 \u0441\u043C\u0430\u0442\u0440\u0430 \u0441\u0435 \u043F\u043E\u0442\u043F\u0443\u043D\u043E \u0441\u0438\u0433\u0443\u0440\u043D\u0438\u043C. \ + \u0420\u0430\u0437\u043C\u043E\u0442\u0440\u0438\u0442\u0435 \u043F\u0440\u0435\u0443\u0437\u0438\u043C\u0430\u045A\u0435 \u0441\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u043E\u043C. +Dismiss=\u041E\u0442\u043A\u0430\u0436\u0438 diff --git a/core/src/main/resources/jenkins/model/DownloadSettings/config.groovy b/core/src/main/resources/jenkins/model/DownloadSettings/config.groovy index 6b0751e5634286586463211f2dd690d829b11321..f7662819453eb8ae0c33790c0e7c02d876e9fd1b 100644 --- a/core/src/main/resources/jenkins/model/DownloadSettings/config.groovy +++ b/core/src/main/resources/jenkins/model/DownloadSettings/config.groovy @@ -2,7 +2,8 @@ package jenkins.security.DownloadSettings def f = namespace(lib.FormTagLib) -// TODO avoid indentation somehow -f.entry(field: "useBrowser") { - f.checkbox(title: _("Use browser for metadata download")) +f.section(title:_("Plugin Manager")) { + f.entry(field: "useBrowser") { + f.checkbox(title: _("Use browser for metadata download")) + } } diff --git a/core/src/main/resources/jenkins/model/DownloadSettings/config_sr.properties b/core/src/main/resources/jenkins/model/DownloadSettings/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..76414275dddfa182587716623810ea00896f2cd5 --- /dev/null +++ b/core/src/main/resources/jenkins/model/DownloadSettings/config_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Use\ Browser=\u041A\u043E\u0440\u0438\u0441\u0442\u0438 \u0432\u0435\u0431-\u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0447 +Use\ browser\ for\ metadata\ download=\u041F\u0440\u0435\u0443\u0437\u0438\u043C\u0430\u0458 \u043C\u0435\u0442\u0430\u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435 \u0432\u0435\u0431-\u043F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0447\u0435\u043C \ No newline at end of file diff --git a/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/config_sr.properties b/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..29a7fbccd48a0ecfc0adfc93139a7199d0d499e9 --- /dev/null +++ b/core/src/main/resources/jenkins/model/GlobalCloudConfiguration/config_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Delete\ cloud=\u0423\u043A\u043B\u043E\u043D\u0438 cloud +Cloud=Cloud +Add\ a\ new\ cloud=\u0414\u043E\u0434\u0430\u0458 \u043D\u043E\u0432\u0438 cloud \ No newline at end of file diff --git a/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_sr.properties b/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..f3244eb9c96937e2d0ec21edb67755e153439341 --- /dev/null +++ b/core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Global\ properties=\u0413\u043B\u043E\u0431\u0430\u043B\u043D\u0430 \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0430 \ No newline at end of file diff --git a/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_fr.properties b/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_fr.properties new file mode 100644 index 0000000000000000000000000000000000000000..f561adbdff3e933714b40c5b52973b675a5c756f --- /dev/null +++ b/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_fr.properties @@ -0,0 +1,3 @@ +useNamingStrategy=Restreindre le nommage de projet +namingStrategyTitel=Strat\u00E9gie de nommage +strategy=Strat\u00E9gie \ No newline at end of file diff --git a/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_sr.properties b/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..b8a5aa7afa74a18e35ecf4a58cfbabc588aad59f --- /dev/null +++ b/core/src/main/resources/jenkins/model/GlobalProjectNamingStrategyConfiguration/config_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +useNamingStrategy=\u041A\u043E\u0440\u0438\u0441\u0442\u0438 \u0448\u0435\u043C\u0443 \u0438\u043C\u0435\u043D\u043E\u0432\u0430\u045A\u0430 \u0437\u0430 \u043D\u0430\u0437\u0438\u0432 \u0437\u0430\u0434\u0430\u0442\u0430\u043A\u0430 +namingStrategyTitel=\u0428\u0435\u043C\u0430 \u0438\u043C\u0435\u043D\u043E\u0432\u0430\u045A\u0430 +strategy=\u0428\u0435\u043C\u0430 \ No newline at end of file diff --git a/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_sr.properties b/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..dd06cd0724c3b45e18356f64e95bf157941982c5 --- /dev/null +++ b/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Quiet\ period=\u041F\u0435\u0440\u0438\u043E\u0434 \u045B\u0443\u0442\u0430\u045A\u0430 diff --git a/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/help-quietPeriod.html b/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/help-quietPeriod.html index fb8b2665a6f65933d1d052eab4db1b45a7566c85..1012ea55afbcb679b6951c1305da55b11bc7b8f2 100644 --- a/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/help-quietPeriod.html +++ b/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/help-quietPeriod.html @@ -1,21 +1,23 @@
    - If set, a newly scheduled build waits for this many seconds before actually being built. - This is useful for: -
      -
    • - Collapsing multiple CVS change notification e-mails into one (some CVS changelog - e-mail generation scripts generate multiple e-mails in quick succession when - a commit spans across directories). -
    • -
    • - If your coding style is such that you commit one logical change in a few cvs/svn - operations, then setting a longer quiet period would prevent Jenkins from building - it prematurely and reporting a failure. -
    • -
    • - Throttling builds. If your Jenkins installation is too busy with too many builds, - setting a longer quiet period can reduce the number of builds. -
    • -
    - If not explicitly set at project-level, the system-wide default value is used. -
    \ No newline at end of file + When this option is checked, newly triggered builds of this project will be + added to the queue, but Jenkins will wait for the specified period of time + before actually starting the build. +

    + For example, if your builds take a long time to execute, you may want to + prevent multiple source control commits that are made at approximately the + same time from triggering multiple builds. Enabling the quiet period would + prevent a build from being started as soon as Jenkins discovers the first + commit; this would give the developer the chance to push more commits which + would be included in the build when it starts. This reduces the size of the + queue, meaning that developers would get feedback faster for their series of + commits, and the load on the Jenkins system would be reduced. +

    + If a new build of this project is triggered while a build is already sitting + in the queue, waiting for its quiet period to end, the quiet period will not + be reset. The newly triggered build will not be added to the queue, unless + this project is parameterized and the build has different parameters to the + build already in the queue. +

    + If this option is not checked, then the system-wide default value from the + Configure System screen will be used. +

    diff --git a/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/help-quietPeriod_de.html b/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/help-quietPeriod_de.html index c3091d33ee1d45406affa4f996c15de4525228c5..2d9143797d8c8bd48d46ab7f9faf642ae6c80857 100644 --- a/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/help-quietPeriod_de.html +++ b/core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/help-quietPeriod_de.html @@ -11,7 +11,7 @@
  5. Ihr Programmierstil es erfordert, eine logische Änderung in mehreren CVS/SVN-Operationen durchzuführen. Eine verlängerte Ruheperiode verhindert - in diesem Falle, daß Jenkins einen Build verfrüht startet und einen Fehlschlag + in diesem Falle, dass Jenkins einen Build verfrüht startet und einen Fehlschlag meldet.
  6. @@ -22,4 +22,4 @@ Ein systemweiter Vorgabewert wird verwendet, wenn nicht auf Projektebene ein expliziter Wert angegeben wird. - \ No newline at end of file + diff --git a/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_sr.properties b/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..583c36f8a6981229d0ca8fb037e8883da4ca04eb --- /dev/null +++ b/core/src/main/resources/jenkins/model/GlobalSCMRetryCountConfiguration/config_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +SCM\ checkout\ retry\ count=\u0411\u0440\u043E\u0458 \u043F\u043E\u043A\u0443\u0448\u0430\u0458\u0430 \u043F\u0440\u0435\u0443\u0437\u0438\u043C\u0430\u045A\u0435 \u0438\u0437\u0432\u043E\u0440\u043D\u043E\u0433 \u043A\u043E\u0434\u0430 \ No newline at end of file diff --git a/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message.jelly b/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message.jelly new file mode 100644 index 0000000000000000000000000000000000000000..bc2149f7529667ab145820eb68a84a4f14a222df --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message.jelly @@ -0,0 +1,34 @@ + + + +
    + ${%description(it.systemPropertyName, it.expectedPort)} +
    +
    + +
    +
    +
    +
    diff --git a/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message.properties b/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message.properties new file mode 100644 index 0000000000000000000000000000000000000000..e4f6f0fd8c5ca473867295db5fec2f9658826165 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message.properties @@ -0,0 +1,2 @@ +description=JNLP Agent Port has been changed but was specified through system property {0} on startup. Its value will be reset to {1,number,#} on restart. +reset=Reset to {0,number,#} diff --git a/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_de.properties b/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_de.properties new file mode 100644 index 0000000000000000000000000000000000000000..8df926efe946f01efa9abaad342df0f10e4f7fed --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/EnforceSlaveAgentPortAdministrativeMonitor/message_de.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Copyright (c) 2017 Daniel Beck and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +description=Der JNLP-Agent-Port wurde ver\u00E4ndert, obwohl er durch die System-Eigenschaft {0} beim Start festgelegt wurde. Der Wert wird beim Neustart auf {1,number,#} zur\u00FCckgesetzt. +reset=Auf {0,number,#} zur\u00FCcksetzen diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_de.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_de.properties index 2366387d0e11ea19a50e99281be8509eea0cb562..3866fab827affbb7edf85f00cf71b545a9e7d57a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_de.properties @@ -23,4 +23,5 @@ \#\ of\ executors=Anzahl der Build-Prozessoren Labels=Labels Node\ Properties=Eigenschaften des Knotens -Save=Speichern \ No newline at end of file +Save=Speichern +Description=Beschreibung diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_lt.properties new file mode 100644 index 0000000000000000000000000000000000000000..342570a4e1b9d14752a8193fb86abbd7cded86e7 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_lt.properties @@ -0,0 +1,5 @@ +\#\ of\ executors=# vykdytoj\u0173 +Labels=Etiket\u0117s +Node\ Properties=Mazgo savyb\u0117s +Save=\u012era\u0161yti +Description=Apra\u0161ymas diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ru.properties index 96ccad842c759e5f67ab6dd830715a98a0386fce..9b7a6556f57fbbaf03d16c3fe892cc5548a7e8ff 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ru.properties @@ -21,6 +21,7 @@ # THE SOFTWARE. \#\ of\ executors=\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432-\u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0435\u0439 +Description=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 Labels=\u041c\u0435\u0442\u043a\u0438 Node\ Properties=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0443\u0437\u043b\u0430 Save=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..7329797f439b498777c6825858cbd99e86f76b9c --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_sr.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Labels=\u041B\u0430\u0431\u0435\u043B\u0435 +Node\ Properties=\u041F\u043E\u0441\u0442\u0430\u0432\u043A\u0435 \u043C\u0430\u0448\u0438\u043D\u0435 +Save=\u0421\u0430\u0447\u0443\u0432\u0430\u0458 +\#\ of\ executors=\u0431\u0440\u043E\u0458 \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435\u0459\u0430 +Description=\u041E\u043F\u0438\u0441 diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_ko.properties index 0a3081fdd17eb64b002bf721a872bb23415b5d52..f62b0bcd815d860d6933c88c822dbda2ffce1062 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_cli_ko.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_ko.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors Available\ Commands=\uC0AC\uC6A9\uAC00\uB2A5\uD55C \uBA85\uB839\uB4E4 -blurb=Jenkins\uC758 \uB2E4\uC591\uD55C \uAE30\uB2A5\uC744 command-line \uD234\uC744 \uC0AC\uC6A9\uD558\uC5EC \uC811\uADFC\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4. \uC774\uAE30\uB2A5\uC5D0 \uB300\uD55C \uB354 \uC790\uC138\uD55C \uB0B4\uC6A9\uC740\uC774 Wiki\uB97C \uBCF4\uC138\uC694. \uC2DC\uC791\uD558\uB824\uBA74, jenkins-cli.jar\uC744 \uB2E4\uC6B4\uB85C\uB4DC \uD55C\uB4A4 \uB2E4\uC74C\uACFC \uAC19\uC774 \uC2E4\uD589\uD569\uB2C8\uB2E4: +blurb=Jenkins\uC758 \uB2E4\uC591\uD55C \uAE30\uB2A5\uC744 command-line \uD234\uC744 \uC0AC\uC6A9\uD558\uC5EC \uC811\uADFC\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4. \uC774\uAE30\uB2A5\uC5D0 \uB300\uD55C \uB354 \uC790\uC138\uD55C \uB0B4\uC6A9\uC740\uC774 Wiki\uB97C \uBCF4\uC138\uC694. \uC2DC\uC791\uD558\uB824\uBA74, jenkins-cli.jar\uC744 \uB2E4\uC6B4\uB85C\uB4DC \uD55C\uB4A4 \uB2E4\uC74C\uACFC \uAC19\uC774 \uC2E4\uD589\uD569\uB2C8\uB2E4: diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..9eb1d202ee067eb6fe942fdc6bd0d5a404d41566 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Jenkins\ CLI=Jenkins \u0441\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u0435 \u043B\u0438\u043D\u0438\u0458\u0435 +Available\ Commands=\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u0435 \ No newline at end of file diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_sv_SE.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_sv_SE.properties index cc07ca27c0d54fa5b68d9d4471da6244136f26cf..515acb75fc994c9838238a0d689f98404ac2a811 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_cli_sv_SE.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_sv_SE.properties @@ -2,4 +2,4 @@ Available\ Commands=Tillg\u00E4ngliga kommandon Jenkins\ CLI=Jenkins CLI (kommandorads\u00E5tkomst) -blurb=Du kan komma \u00E5t diverse funktioner i Jenkins genom ett kommandoradsverktyg. Se Wikin f\u00F6r mer detaljer av den h\u00E4r funktionen. F\u00F6r att komma ig\u00E5ng, ladda ner jenkins-cli.jar och k\u00F6r enligt f\u00F6ljande: +blurb=Du kan komma \u00E5t diverse funktioner i Jenkins genom ett kommandoradsverktyg. Se Wikin f\u00F6r mer detaljer av den h\u00E4r funktionen. F\u00F6r att komma ig\u00E5ng, ladda ner jenkins-cli.jar och k\u00F6r enligt f\u00F6ljande: diff --git a/core/src/main/resources/jenkins/model/Jenkins/_restart_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/_restart_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..74184c4dcc0b7d69a808b896c885801672d739a0 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/_restart_bg.properties @@ -0,0 +1,28 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +Yes=\ + \u0414\u0430 +Are\ you\ sure\ about\ restarting\ Jenkins?=\ + \u0421\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0442\u0435 Jenkins? +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=\ + \u0421 \u0442\u0435\u043a\u0443\u0449\u0438\u0442\u0435 \u0441\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 Jenkins \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430. diff --git a/core/src/main/resources/jenkins/model/Jenkins/_restart_de.properties b/core/src/main/resources/jenkins/model/Jenkins/_restart_de.properties index cac071fddedf3babe7a88d7ce53cf6f683add926..6530fd02ee0512b1225b95e34d07044c1542f02e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_restart_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_restart_de.properties @@ -1,2 +1,3 @@ -Are\ you\ sure\ about\ restarting\ Jenkins?=Mchten Sie Jenkins wirklich neu starten? +Are\ you\ sure\ about\ restarting\ Jenkins?=M\u00F6chten Sie Jenkins wirklich neu starten? Yes=Ja +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Jenkins kann sich wie konfiguriert nicht selbst neu starten. diff --git a/core/src/main/resources/jenkins/model/Jenkins/_restart_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/_restart_lt.properties new file mode 100644 index 0000000000000000000000000000000000000000..8d9d9476c750b9111b4677e0794d0e95cf3cc089 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/_restart_lt.properties @@ -0,0 +1,3 @@ +Yes=Taip +Are\ you\ sure\ about\ restarting\ Jenkins?=Ar tikrai norite i\u0161 naujo paleisti Jenkins\u0105? +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Jenkinsas toks, koks dabar yra sukonfig\u016bruotas, negali pats sav\u0119s paleisti i\u0161 naujo. diff --git a/core/src/main/resources/jenkins/model/Jenkins/_restart_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/_restart_pl.properties new file mode 100644 index 0000000000000000000000000000000000000000..e3cd86fa188f8f99f805289896e384e88ef3dd2b --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/_restart_pl.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Copyright (c) 2017, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. +Are\ you\ sure\ about\ restarting\ Jenkins?=Czy na pewno chcesz ponownie uruchomi\u0107 Jenkinsa? +Yes=Tak +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Aktualna konfiguracja uniemo\u017Cliwia Jenkinsowi samodzielne ponowne uruchomienie. diff --git a/core/src/main/resources/jenkins/model/Jenkins/_restart_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/_restart_ru.properties index a498e2f0dbfdc749560c6189b7032008fa92edd3..4307ac559364bb8456a4992eb9bde68d4edb4bf8 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_restart_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_restart_ru.properties @@ -1,4 +1,5 @@ # This file is under the MIT License by authors -Are\ you\ sure\ about\ restarting\ Jenkins?=\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C Jenkins? +Are\ you\ sure\ about\ restarting\ Jenkins?=\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c Jenkins? Yes=\u0414\u0430 +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=\u0421\u043e\u0433\u043b\u0430\u0441\u043d\u043e \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u043c, Jenkins \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c\u0441\u044f \u0441\u0430\u043c. \ No newline at end of file diff --git a/core/src/main/resources/jenkins/model/Jenkins/_restart_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/_restart_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..fa62a6b2c3380c2555f06d7baacbe968062448b0 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/_restart_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Are\ you\ sure\ about\ restarting\ Jenkins?=\u0414\u0430\u043B\u0438 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u0435 Jenkins? +Yes=\u0414\u0430 +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=\u041D\u0435\u043C\u043E\u0436\u0435 \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u0438 Jenkins \u043F\u043E \u043E\u0432\u0438\u043C \u043F\u043E\u0441\u0442\u0430\u0432\u0446\u0438\u043C\u0430 diff --git a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..0aee9fd59206203971cc97206ca6267599b14782 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_bg.properties @@ -0,0 +1,29 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=\ + \u0421 \u0442\u0435\u043a\u0443\u0449\u0438\u0442\u0435 \u0441\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 Jenkins \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430. +Yes=\ + \u0414\u0430 +Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=\ + \u0421\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0442\u0435 Jenkins? \u0422\u043e\u0439 \u0449\u0435 \u0441\u0435 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430 \u0441\ + \u043f\u0440\u0438\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u0442\u0435\u043a\u0443\u0449\u0438 \u0437\u0430\u0434\u0430\u0447\u0438. diff --git a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_de.properties b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_de.properties index af6820899e6cbf41ae72f1263a2b421e33e42aee..e702bd5f2da6a2877e68406aa8f7d715e6db9cd2 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_de.properties @@ -21,6 +21,7 @@ # THE SOFTWARE. Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=\ - Mchten Sie Jenkins wirklich neu starten? Jenkins wird neu starten, \ + M\u00F6chten Sie Jenkins wirklich neu starten? Jenkins wird neu starten, \ sobald alle laufenden Jobs abgeschlossen wurden. Yes=Ja +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Jenkins kann sich wie konfiguriert nicht selbst neu starten. diff --git a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_lt.properties new file mode 100644 index 0000000000000000000000000000000000000000..5c38c9a87a2ea6857392ce7c05f778771f2323b0 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_lt.properties @@ -0,0 +1,3 @@ +Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=Ar tikrai norite i\u0161 naujo paleisti Jenkins\u0105? Jenkinsas bus paleistas i\u0161 naujo, kai visi vykdomi darbai bus baigti. +Yes=Taip +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Toks, kaip dabar sukonfig\u016bruotas, Jenkinas negali pats sav\u0119s paleisti i\u0161 naujo. diff --git a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_ru.properties index 6bb8af1af1dd3ef9837e38a612036f87a1fd3f3b..2f018764b19fcfe155838f1da09016281b6d013e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_ru.properties @@ -1,4 +1,3 @@ -# This file is under the MIT License by authors - -Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B \u043D\u0430 \u0441\u0447\u0435\u0442 \u043F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0438 Jenkins? Jenkins \u0431\u0443\u0434\u0435\u0442 \u043F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043D, \u043A\u043E\u0433\u0434\u0430 \u0432\u0441\u0435 \u0437\u0430\u043F\u0443\u0449\u0435\u043D\u043D\u044B\u0435 \u0437\u0430\u0434\u0430\u0447\u0438 \u0437\u0430\u0432\u0435\u0440\u0448\u0430\u0442\u0441\u044F. +Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b \u043d\u0430 \u0441\u0447\u0435\u0442 \u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 Jenkins? Jenkins \u0431\u0443\u0434\u0435\u0442 \u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d, \u043a\u043e\u0433\u0434\u0430 \u0432\u0441\u0435 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043d\u044b\u0435 \u0437\u0430\u0434\u0430\u0447\u0438 \u0437\u0430\u0432\u0435\u0440\u0448\u0430\u0442\u0441\u044f. Yes=\u0414\u0430 +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=\u0412 \u0442\u0435\u043a\u0443\u0449\u0435\u0439 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 Jenkins \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c\u0441\u044f \u0441\u0430\u043c. \ No newline at end of file diff --git a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..430f57df18031ffddbe0713ff71decc9e492cfc4 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=\u0414\u0430 \u043B\u0438 \u0436\u0435\u043B\u0438\u0442\u0435 \u0434\u0430 \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0435\u0442\u0435 Jenkins \u043A\u0430\u0434 \u0441\u0432\u0435 \u0442\u0435\u043A\u0443\u045B\u0435 \u043F\u043E\u0441\u043B\u043E\u0432\u0435 \u0431\u0443\u0434\u0443 \u0431\u0438\u043B\u0435 \u0433\u043E\u0442\u043E\u0432\u0435? +Yes=\u0414\u0430 +Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=\u041D\u0435\u043C\u043E\u0436\u0435 \u0441\u0435 \u043F\u043E\u043D\u043E\u0432\u043E \u043F\u043E\u043A\u0440\u0435\u043D\u0443\u0442\u0438 Jenkins \u0437\u0430 \u043E\u0432\u0438\u043C \u043F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0438\u043C\u0430. diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_sv_SE.properties b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_bg.properties similarity index 83% rename from core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_sv_SE.properties rename to core/src/main/resources/jenkins/model/Jenkins/accessDenied_bg.properties index a1827f1712ad630b15d0331af3ba0f910260c0af..fd265916bd4fba86cf539ca625e170cf698b0082 100644 --- a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_sv_SE.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=Detta \u00E4r en central del i Jenkins. Jenkins kommer att bygga ditt projekt med valfri versionshanterare och med vilket byggsystem som helst, och detta kan \u00E4ven anv\u00E4ndas f\u00F6r n\u00E5got annat \u00E4n mjukvarubyggen. +Access\ Denied=\ + \u041e\u0442\u043a\u0430\u0437\u0430\u043d \u0434\u043e\u0441\u0442\u044a\u043f +Jenkins\ Login=\ + \u0412\u043f\u0438\u0441\u0432\u0430\u043d\u0435 \u0432 Jenkins diff --git a/core/src/main/resources/jenkins/model/Jenkins/accessDenied_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_lt.properties new file mode 100644 index 0000000000000000000000000000000000000000..8edee3fe6237b18373730240ca9cd1f8691cbae8 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_lt.properties @@ -0,0 +1,2 @@ +Jenkins\ Login=Jenkins prisijungimas +Access\ Denied=Prieiga atmesta diff --git a/core/src/main/resources/jenkins/model/Jenkins/accessDenied_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_ru.properties new file mode 100644 index 0000000000000000000000000000000000000000..6606e23c61841ff5ffaecf3d75205afcb9ae956b --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_ru.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Access\ Denied=\u0414\u043e\u0441\u0442\u0443\u043f \u0437\u0430\u043f\u0440\u0435\u0449\u0451\u043d +Jenkins\ Login=\u0412\u0445\u043e\u0434 \u0432 Jenkins \ No newline at end of file diff --git a/core/src/main/resources/jenkins/model/Jenkins/accessDenied_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..5dc7a3e054e7f795713472732350e61dfc830f48 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Jenkins\ Login=\u041F\u0440\u0438\u0458\u0430\u0432\u0430 \u043D\u0430 Jenkins +Access\ Denied=\u041F\u0440\u0438\u0441\u0442\u0443\u043F \u043E\u0434\u0431\u0438\u0458\u0435\u043D diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure.jelly b/core/src/main/resources/jenkins/model/Jenkins/configure.jelly index fee18794ffb6c67ed69e7ef1b72c91ccc26bb0b7..e95226abb1f1350f8aade9d7c456aba381018cfe 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure.jelly +++ b/core/src/main/resources/jenkins/model/Jenkins/configure.jelly @@ -62,7 +62,7 @@ THE SOFTWARE. - + diff --git a/core/src/main/resources/jenkins/model/Jenkins/configureExecutors.jelly b/core/src/main/resources/jenkins/model/Jenkins/configureExecutors.jelly index 921dc65e3e6b17f319caf0b207c777fed38de425..751bea6574aa53e80a64e7e15ad3973976448ce4 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configureExecutors.jelly +++ b/core/src/main/resources/jenkins/model/Jenkins/configureExecutors.jelly @@ -36,12 +36,12 @@ THE SOFTWARE. This page has moved

    - Starting 1.271, slave configuration is split into individual configuration page per slave, + Starting 1.271, agent configuration is split into individual configuration page per agent, accessible from here.

      -
    • To configure existing slaves, click the above link, click their name, and then click the config link from the left
    • -
    • To add a new slave, click the above link, and click "add new slave"
    • +
    • To configure existing agents, click the above link, click their name, and then click the config link from the left
    • +
    • To add a new agent, click the above link, and click "add new agent"
    diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_bg.properties index 6b96eea0407b1b23db27a2b064e3ad7fb85de1b3..dac6a7bdc1f63db4a22782e12b237faa8a989d2d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_bg.properties @@ -1,7 +1,38 @@ -# This file is under the MIT License by authors +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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\ Record\ Root\ Directory=\u0411\u0430\u0437\u043E\u0432\u0430 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u044F \u043D\u0430 \u0431\u0438\u043B\u0434\u0430 -Home\ directory=\u041D\u0430\u0447\u0430\u043B\u043D\u0430 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u044F -LOADING=\u0417\u0410\u0420\u0415\u0416\u0414\u0410\u041D\u0415 -System\ Message=\u0421\u0438\u0441\u0442\u0435\u043C\u043D\u043E \u0441\u044A\u043E\u0431\u0449\u0435\u043D\u0438\u0435 -Workspace\ Root\ Directory=\u0411\u0430\u0437\u043E\u0432\u0430 \u0440\u0430\u0431\u043E\u0442\u043D\u0430 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u044F +Build\ Record\ Root\ Directory=\ + \u0411\u0430\u0437\u043e\u0432\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u043d\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435\u0442\u043e +Home\ directory=\ + \u0414\u043e\u043c\u0430\u0448\u043d\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f +LOADING=\ + \u0417\u0410\u0420\u0415\u0416\u0414\u0410\u041d\u0415 +System\ Message=\ + \u0421\u0438\u0441\u0442\u0435\u043c\u043d\u043e \u0441\u044a\u043e\u0431\u0449\u0435\u043d\u0438\u0435 +Workspace\ Root\ Directory=\ + \u0411\u0430\u0437\u043e\u0432\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u043d\u043e\u0442\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e +Configure\ System=\ + \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430 +Save=\ + \u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 +Apply=\ + \u041f\u0440\u0438\u043b\u0430\u0433\u0430\u043d\u0435 diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_de.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_de.properties index 932ac4b95ec83362f9ed2bf19e2c40acd33b785c..d7f2d5c3d8c64428dc77d49fede782cfa743e97a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_de.properties @@ -27,3 +27,5 @@ Save=Speichern Workspace\ Root\ Directory=Workspace Wurzelverzeichnis Build\ Record\ Root\ Directory=Verzeichnis f\u00FCr aufgezeichnete Builds +Configure\ System=Systemkonfiguration +Apply=\u00DCbernehmen diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_fr.properties index dba2e1dcfcfaff1298bd8860bc9f7d70d405e9e3..8683592c013be7ec3b8607e9d9e3ea49b57ce8a0 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_fr.properties @@ -20,9 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Home\ directory=Rpertoire Home -System\ Message=Message du systme +Home\ directory=R\u00E9pertoire Home +System\ Message=Message du syst\u00E8me Workspace\ Root\ Directory=R\u00E9pertoire racine de l''espace de travail (workspace) Save=Enregistrer +Apply=Appliquer Build\ Record\ Root\ Directory=R\u00E9pertoire racine des constructions LOADING=CHARGEMENT diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_hi_IN.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_hi_IN.properties deleted file mode 100644 index 6c367df275df3958ccdc4413277e6c6aa418af1a..0000000000000000000000000000000000000000 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_hi_IN.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Home\ directory=\u0928\u093F\u091C\u0940 \u0928\u093F\u0930\u094D\u0926\u0947\u0936\u093F\u0915\u093E -System\ Message=\u0938\u093F\u0938\u094D\u091F\u092E \u0938\u0902\u0926\u0947\u0936 diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_lt.properties index 5ec9b9de628388fa220291c72782d2295cb90f04..371e6713db7ada607c492a7e2597c596fffc5787 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_lt.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_lt.properties @@ -1,6 +1,8 @@ -# This file is under the MIT License by authors - -Home\ directory=Nam\u0173 katalogas -LOADING=KRAUNASI -System\ Message=Sistemin\u0117 \u017Einut\u0117 -Workspace\ Root\ Directory=Darbastalio \u0160aknin\u0117 Direktorija +Home\ directory=Nam\u0173 aplankas +LOADING=\u012eKELIAMA +System\ Message=Sisteminis prane\u0161imas +Workspace\ Root\ Directory=Darbastalio \u0161akninis aplankas +Build\ Record\ Root\ Directory=Vykdymo \u012fra\u0161o \u0161akninis aplankas +Configure\ System=Konfig\u016bruoti sistem\u0105 +Save=\u012era\u0161yti +Apply=Pritaikyti diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_pl.properties index 52107feb39aee4181fb67e46b47060900f5b8ed3..2f392154fcd423e3b07b6d74bb59267309027ad0 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_pl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_pl.properties @@ -1,7 +1,29 @@ -# This file is under the MIT License by authors - +# The MIT License +# +# Copyright (c) 2004-2017, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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\ Record\ Root\ Directory=Katalog bazowy zadania budowy Home\ directory=Katalog domowy LOADING=Wczytywanie System\ Message=Komunikat systemowy Workspace\ Root\ Directory=Katalog bazowy przestrzeni roboczej +Save=Zapisz +Apply=Zastosuj +Configure\ System=Skonfiguruj system diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_ru.properties index ac73f79225f7875c043cbd82236621a08a2559ac..dd7942dd69ad8dfcd7f9b08675c5184158c5c133 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_ru.properties @@ -1,28 +1,8 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# 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. - +Apply=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c +Configure\ System=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u044b Home\ directory=\u0414\u043e\u043c\u0430\u0448\u043d\u044f\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f -System\ Message=\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u044b -Build\ Record\ Root\ Directory=\u041A\u043E\u0440\u043D\u0435\u0432\u0430\u044F \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u044F \u0437\u0430\u043F\u0438\u0441\u0438 \u0441\u0431\u043E\u0440\u043A\u0438 -Save=\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C -Workspace\ Root\ Directory=\u041A\u043E\u0440\u043D\u0435\u0432\u0430\u044F \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u044F \u0440\u0430\u0431\u043E\u0447\u0435\u0439 \u043E\u0431\u043B\u0430\u0441\u0442\u0438 -LOADING=\u0417\u0410\u0413\u0420\u0423\u0417\u041A\u0410 +System\ Message=\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 +Build\ Record\ Root\ Directory=\u041a\u043e\u0440\u043d\u0435\u0432\u0430\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0438 \u0441\u0431\u043e\u0440\u043a\u0438 +Save=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c +Workspace\ Root\ Directory=\u041a\u043e\u0440\u043d\u0435\u0432\u0430\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u0441\u0431\u043e\u0440\u043e\u043a +LOADING=\u0417\u0410\u0413\u0420\u0423\u0417\u041a\u0410 diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_sr.properties index ba97cef5b0f09abf3f280dd48f9d6c066d7a8cb5..c6e2ed92554df6c393065fa12d66bfaea9e13797 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_sr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_sr.properties @@ -1,7 +1,10 @@ # This file is under the MIT License by authors -Build\ Record\ Root\ Directory=Osnovni direktorijum build rezultata -Home\ directory=Pocetni direktorijum -LOADING=Ucitavanje -System\ Message=Sistemska poruka -Workspace\ Root\ Directory=Osnovni direktorijum okruzenja +Build\ Record\ Root\ Directory=\u041E\u0441\u043D\u043E\u0432\u043D\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C \u0440\u0435\u0437\u0443\u043B\u0430\u0442\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435 +Home\ directory=\u041F\u043E\u045B\u0435\u0442\u043D\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C +LOADING=\u0423\u0427\u0418\u0422\u0410\u0412\u0410\u040A\u0415 +System\ Message=\u0421\u0438\u0441\u0442\u0435\u043C\u0441\u043A\u0430 \u043F\u043E\u0440\u0443\u043A\u0430 +Workspace\ Root\ Directory=\u0413\u043B\u0430\u0432\u043D\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0458\u0443\u043C \u0440\u0430\u0434\u043D\u043E\u0433 \u043F\u0440\u043E\u0441\u0442\u043E\u0440\u0430 +Configure\ System=\u041F\u043E\u0434\u0435\u0448\u0430\u0432\u0430\u045A\u0435 \u0441\u0438\u0441\u0442\u0435\u043C\u043E\u043C +Save=\u0421\u0430\u0447\u0443\u0432\u0430\u0458 +Apply=\u041F\u0440\u0438\u043C\u0435\u043D\u0438 diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_bg.properties index 6e827c7d05508156b59abd948c95ba3dae22a34e..f1691452f783b0a0dbf9f6d736f7fdb1846640d0 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_bg.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,5 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restore\ the\ previous\ version\ of\ Jenkins=\u0412\u044A\u0437\u0441\u0442\u0430\u043D\u043E\u0432\u044F\u0432\u0430\u043D\u0435 \u043D\u0430 \u043F\u0440\u0435\u0434\u0438\u0448\u043D\u0430\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044F \u043D\u0430 Jenkins -buttonText=\u0412\u044A\u0437\u0441\u0442\u0430\u043D\u043E\u0432\u044F\u0432\u0430\u043D\u0435 \u0434\u043E {0} +Restore\ the\ previous\ version\ of\ Jenkins=\ + \u0412\u0440\u044a\u0449\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0435\u0434\u0438\u0448\u043d\u0430\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430 Jenkins +buttonText=\ + \u0412\u0440\u044a\u0449\u0430\u043d\u0435 \u043a\u044a\u043c {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_id.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_id.properties deleted file mode 100644 index 12c93cf77bc0bfeddb65202258359c0657850635..0000000000000000000000000000000000000000 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_id.properties +++ /dev/null @@ -1,4 +0,0 @@ -# This file is under the MIT License by authors - -Restore\ the\ previous\ version\ of\ Jenkins=Kembalikan versi Jenkins sebelumnya -buttonText=Kembalikan ke {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_lt.properties new file mode 100644 index 0000000000000000000000000000000000000000..88b48e9acf7dacbb88686bbe752bfc755d7d8993 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_lt.properties @@ -0,0 +1,2 @@ +buttonText=Nuleisti versij\u0105 iki {0} +Restore\ the\ previous\ version\ of\ Jenkins=Atstatyti ankstesn\u0119 Jenkinso versij\u0105 diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_pl.properties index 4e6685245c8e350f39a038863c2bff10595f39da..02a32fa88e48bebc55b33eca3c044073f26499d5 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_pl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_pl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restore\ the\ previous\ version\ of\ Jenkins=Przywr\u00F3\u0107 poprzedni\u0105 wersj\u0119 Jenkins''a +Restore\ the\ previous\ version\ of\ Jenkins=Przywr\u00F3\u0107 poprzedni\u0105 wersj\u0119 Jenkinsa buttonText=Obni\u017C do {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..d04470f1d0c87a9dc8374ed465f097b426c5cf8b --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +buttonText=\u0412\u0440\u0430\u0442\u0438 \u043D\u0430\u0437\u0430\u0434 \u043D\u0430 {0} +Restore\ the\ previous\ version\ of\ Jenkins=\u0412\u0440\u0430\u0442\u0438 \u043D\u0430 \u043F\u0440\u0435\u0442\u043D\u043E\u0434\u043D\u0443 \u0432\u0435\u0440\u0437\u0438\u0458\u0443 Jenkins-\u0430 diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck.properties index b51a3f3bfcab22f89c59bd4cafa36bb308bf12b1..f8e7628ab1836477e6760f732f0e88c93a7f7fa7 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck.properties @@ -24,4 +24,4 @@ description=\ Got a jar file but don\u2019t know which version it is?
    \ Find that out by checking the fingerprint against \ the database in Jenkins -fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint +fingerprint.link=https://jenkins.io/redirect/fingerprint diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..f3c3260e49c569dc339ad6bd738971b8bc89fcfc --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_bg.properties @@ -0,0 +1,40 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Check=\ + \u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 +File\ to\ check=\ + \u0424\u0430\u0439\u043b \u0437\u0430 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 +Check\ File\ Fingerprint=\ + \u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043d\u0430 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u044f \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u044a\u043a \u043d\u0430 \u0444\u0430\u0439\u043b\u0430 +# \ +# Got a jar file but don\u2019t know which version it is?
    \ +# Find that out by checking the fingerprint against \ +# the database in Jenkins +description=\ + \u041d\u0435 \u0437\u043d\u0430\u0435\u0442\u0435 \u0432\u0435\u0440\u0441\u0438\u044f\u0442\u0430 \u043d\u0430 \u043d\u044f\u043a\u043e\u0439 \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u0435\u043d \u201e.jar\u201c \u0444\u0430\u0439\u043b?
    + \u041f\u0440\u043e\u0432\u0435\u0440\u0435\u0442\u0435 \u0437\u0430 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u044f \u043c\u0443 \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u044a\u043a \u0432 \u0431\u0430\u0437\u0430\u0442\u0430 \u043d\u0430 Jenkins. +# https://jenkins.io/redirect/fingerprint +fingerprint.link=\ + https://jenkins.io/redirect/fingerprint +more\ details=\ + \u041e\u0449\u0435 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u0438 diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_cs.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_cs.properties index 5ed5ac44c3ab278074a0670e28f654185e3985cd..e31d158af49ae2918c6e3561462797a50040e1ab 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_cs.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_cs.properties @@ -5,5 +5,5 @@ Check\ File\ Fingerprint=Ov\u011B\u0159it otisk souboru File\ to\ check=Soubor k ov\u011B\u0159en\u00ED description=M\u00E1te jar soubor ale nev\u00EDte k jak\u00E9 verzi pat\u0159\u00ED?
    Ov\u011B\u0159te si jej v Jenkinsov\u011B datab\u00E1zi otisk\u016F -fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint +fingerprint.link=https://jenkins.io/redirect/fingerprint more\ details=dal\u0161\u00ED informace diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_da.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_da.properties index 4a824aea26f97262c71c91e9c133875bb4106a67..09123b219271537112a129ef35cf3cd2822432bf 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_da.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_da.properties @@ -22,7 +22,7 @@ Check\ File\ Fingerprint=Check filfingeraftryk File\ to\ check=Fil der skal checkes -fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint +fingerprint.link=https://jenkins.io/redirect/fingerprint description=\ Har du f\u00e5et en jar fil, men ved ikke hvilken version den har?
    \ Find ud af det ved at checke imod filfingeraftryksdatabasen i Jenkins diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_de.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_de.properties index f5ed8a4da03cb4044b5f474e62761020f4ba8bd8..2dad94b0b58e01f58d7b4e20cb0f9f13de780b83 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_de.properties @@ -27,4 +27,4 @@ more\ details=mehr... description=\ Die Version einer JAR-Datei lsst sich ber die von \ Jenkins gespeicherten Fingerabdrcke herausfinden. -fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint +fingerprint.link=https://jenkins.io/redirect/fingerprint diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_el.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_el.properties index 8f06b2f26533945d1a0813f727a89b1218ccf0c5..6d496604cc9f647febc82fd1a2f020ad1100fe56 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_el.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_el.properties @@ -4,5 +4,5 @@ Check=\u0388\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 Check\ File\ Fingerprint=\u0388\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 \u0391\u03C0\u03BF\u03C4\u03C5\u03C0\u03C9\u03BC\u03AC\u03C4\u03C9\u03BD \u0391\u03C1\u03C7\u03B5\u03AF\u03C9\u03BD File\ to\ check=\u0391\u03C1\u03C7\u03B5\u03AF\u03BF \u03C0\u03C1\u03BF\u03C2 \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF description=\u0388\u03C7\u03B5\u03C4\u03B5 \u03BA\u03AC\u03C0\u03BF\u03B9\u03BF jar \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF \u03B1\u03BB\u03BB\u03AC \u03B4\u03B5\u03BD \u03BE\u03AD\u03C1\u03B5\u03C4\u03B5 \u03C4\u03BF\u03BD \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC \u03AD\u03BA\u03B4\u03BF\u03C3\u03AE\u03C2 \u03C4\u03BF\u03C5;
    \u0392\u03C1\u03B5\u03AF\u03C4\u03B5 \u03C4\u03B7\u03BD \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03BD\u03C4\u03B1\u03C2 \u03C4\u03BF \u03C8\u03B7\u03C6\u03B9\u03B1\u03BA\u03CC \u03B1\u03C0\u03BF\u03C4\u03CD\u03C0\u03C9\u03BC\u03B1 \u03C4\u03BF\u03C5 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5 \u03BA\u03B1\u03B9 \u03C3\u03C5\u03B3\u03BA\u03C1\u03AF\u03BD\u03BF\u03BD\u03C4\u03AC\u03C2 \u03C4\u03BF \u03BC\u03B5 \u03C4\u03B7 \u03B2\u03AC\u03C3\u03B7 \u03B1\u03C0\u03BF\u03C4\u03C5\u03C0\u03C9\u03BC\u03AC\u03C4\u03C9\u03BD \u03C3\u03C4\u03BF Jenkins -fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint +fingerprint.link=https://jenkins.io/redirect/fingerprint more\ details=\u03C0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B5\u03C2 \u03BB\u03B5\u03C0\u03C4\u03BF\u03BC\u03AD\u03C1\u03B5\u03B9\u03B5\u03C2 diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_es.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_es.properties index c00710f8db39e567660e9ce2d6ff2e32c11e2a53..1ea94a235ddcf74a107fec6c09133a1bbed698c2 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_es.properties @@ -23,7 +23,7 @@ description=\ Si tienes un fichero ''jar'' en tu disco duro del que desconoces su versin
    \ Puedes identificarlo enviandolo a Jenkins para que busque su firma en la base de datos de firmas registradas. -fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint +fingerprint.link=https://jenkins.io/redirect/fingerprint File\ to\ check=Selecciona un fichero para comprobar Check=Comprobar Check\ File\ Fingerprint=Comprobar ficheros diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_fr.properties index e6d166f3d369a2bec758f3b951b2f5e03132ffb7..64b9adc2bf3924b51aa989b1aff3577deaf67ac7 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_fr.properties @@ -24,5 +24,5 @@ Check\ File\ Fingerprint=V File\ to\ check=Fichier vrifier Check=Vrifier description=Vous avez un fichier jar mais vous ne connaissez pas sa version ?
    Vous pourrez la trouver en comparant l''empreinte num\u00E9rique avec celles dans la base de donn\u00E9es de Jenkins -fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint +fingerprint.link=https://jenkins.io/redirect/fingerprint more\ details=plus de dtails diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ja.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ja.properties index 641e36be554464ea54c0518a2bbc68808269cef2..3b43850a2c26c339805ee940cf1493a978855d21 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ja.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ja.properties @@ -27,4 +27,4 @@ description=\ jar\u30D5\u30A1\u30A4\u30EB\u3092\u53D6\u5F97\u3057\u305F\u306E\u306B\u3001\u3069\u306E\u30D0\u30FC\u30B8\u30E7\u30F3\u304B\u5206\u304B\u3089\u306A\u3044\u306E\u3067\u3059\u304B?
    \ Jenkins\u306E\u30C7\u30FC\u30BF\u30D9\u30FC\u30B9\u3067\u30D5\u30A1\u30A4\u30EB\u6307\u7D0B\u3092\u30C1\u30A7\u30C3\u30AF\u3059\u308C\u3070\u3001\u5206\u304B\u308A\u307E\u3059\u3002 more\ details=\u8A73\u7D30 -fingerprint.link=http://wiki.jenkins-ci.org/display/JA/Fingerprint +fingerprint.link=https://jenkins.io/redirect/fingerprint diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ka.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ka.properties deleted file mode 100644 index b25a4accbf1c4926a166a5a04e78ad05ba298331..0000000000000000000000000000000000000000 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ka.properties +++ /dev/null @@ -1,7 +0,0 @@ -# This file is under the MIT License by authors - -Check=\u10E8\u10D4\u10DB\u10DD\u10EC\u10DB\u10D4\u10D1\u10D0 -Check\ File\ Fingerprint=\u10E4\u10D0\u10D8\u10DA\u10D8\u10E1 \u10D0\u10DC\u10D0\u10D1\u10D4\u10ED\u10D3\u10D8\u10E1 \u10E8\u10D4\u10DB\u10DD\u10EC\u10DB\u10D4\u10D1\u10D0 -File\ to\ check=\u10E8\u10D4\u10E1\u10D0\u10DB\u10DD\u10EC\u10DB\u10D4\u10D1\u10D4\u10DA\u10D8 \u10E4\u10D0\u10D8\u10DA\u10D8 -description=\u10D2\u10D0\u10E5\u10D5\u10D7 jar \u10E4\u10D0\u10D8\u10DA\u10D8 \u10D3\u10D0 \u10D0\u10E0 \u10D8\u10EA\u10D8\u10D7 \u10DB\u10D8\u10E1\u10D8 \u10D5\u10D4\u10E0\u10E1\u10D8\u10D0?
    \u10D8\u10DE\u10DD\u10D5\u10D4\u10D7 \u10D8\u10D2\u10D8 Jenkins-\u10D8\u10E1 \u10DB\u10DD\u10DC\u10D0\u10EA\u10D4\u10DB\u10D7\u10D0 \u10D1\u10D0\u10D6\u10D0\u10E8\u10D8 \u10E4\u10D0\u10D8\u10DA\u10D8\u10E1 \u10D0\u10DC\u10D0\u10D1\u10D4\u10ED\u10D3\u10D8\u10E1 \u10E8\u10D4\u10DB\u10DD\u10EC\u10DB\u10D4\u10D1\u10D8\u10E1 \u10E1\u10D0\u10E8\u10E3\u10D0\u10DA\u10D4\u10D1\u10D8\u10D7 -more\ details=\u10DB\u10D4\u10E2\u10D8 \u10D3\u10D4\u10E2\u10D0\u10DA\u10D8 diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_lt.properties new file mode 100644 index 0000000000000000000000000000000000000000..cb3c706f659e3f40b8b449deac00bfed390ff4e0 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_lt.properties @@ -0,0 +1,8 @@ +description=\ + Gavote jar fail\u0105 bet ne\u017einote, kokia jo versija?
    \ + Su\u017einokite patikrindami antspaud\u0105 Jenkinso duomen\u0173 baz\u0117je +fingerprint.link=https://jenkins.io/redirect/fingerprint +Check=Tikrinti +Check\ File\ Fingerprint=Tikrinti failo antspaud\u0105 +more\ details=daugiau informacijos +File\ to\ check=Tikrinti fail\u0105 diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_lv.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_lv.properties index 975749fb630db24512c60105f36cd3f60e0e2409..0f20c4fb474a07a946a5137e86ddc1dacaaccdad 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_lv.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_lv.properties @@ -24,5 +24,5 @@ Check=P\u0101rbaud\u012Bt Check\ File\ Fingerprint=P\u0101rbaude Faila Nospiedumam File\ to\ check=Fails, kuru p\u0101baud\u012Bt description=Ir *.jar fails, kuram nezini versiju?
    Uzzini to, p\u0101rbaudot pirkstu nospiedumu pret Jenkins datub\u0101zi. -fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint +fingerprint.link=https://jenkins.io/redirect/fingerprint more\ details=vair\u0101k inform\u0101cijas diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_nl.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_nl.properties index 5e41e8d23b1e490cadd1ec77c5e34cdaa3e5ea74..0b90844761b5b48c3ab7eb84e38e1d5fab2eb1f4 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_nl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_nl.properties @@ -24,5 +24,5 @@ Check\ File\ Fingerprint=Controleer de vingerafdruk van bestanden File\ to\ check=Te controleren bestand Check=Controleren description=Heb je een jar-bestand waarvan je de versie niet weet?
    Vind de versie door de vingerafdruk te controleren tegen de databank in Jenkins -fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint +fingerprint.link=https://jenkins.io/redirect/fingerprint more\ details=meer details diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pl.properties index b07d6409b6aace532d5f8d47e3834dfbd468264c..adf8853649fa212c75bd2b3e51b00aa803517a5a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pl.properties @@ -24,5 +24,5 @@ Check=Sprawd\u017A Check\ File\ Fingerprint=Wyszukaj wyst\u0105pienia artefaktu File\ to\ check=Plik do sprawdzenia description=Masz plik ale nie wiesz w kt\u00F3rych zadaniach wyst\u0119puje?
    Wyszukaj je w bazie danych Jenkinsa. -fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint +fingerprint.link=https://jenkins.io/redirect/fingerprint more\ details=wi\u0119cej detali diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pt_BR.properties index 65888e0336755c37432eca9bd532b128c023f2c1..54b45f3935c4612df46b941664b429c08591da8e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pt_BR.properties @@ -23,8 +23,8 @@ Check\ File\ Fingerprint=Verificar impress\u00E3o digital do arquivo File\ to\ check=Arquivo para verificar Check=Verificar -# https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint -fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint +# https://jenkins.io/redirect/fingerprint +fingerprint.link=https://jenkins.io/redirect/fingerprint # \ # Got a jar file but don''t know which version it is?
    \ # Find that out by checking the fingerprint against \ diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ru.properties index 9866aee1883d81b8fc5ce7a7530152abd3a530f7..2bda6cc429ea36b01e04578a02b1da824e2563c8 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ru.properties @@ -24,5 +24,5 @@ Check\ File\ Fingerprint=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c File\ to\ check=\u0424\u0430\u0439\u043b \u0434\u043b\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 Check=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c description=\u041D\u0435 \u0437\u043D\u0430\u0435\u0442\u0435 \u0432\u0435\u0440\u0441\u0438\u044E Jar-\u0444\u0430\u0439\u043B\u0430?
    \u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C \u0432\u0430\u0448 jar-\u0444\u0430\u0439\u043B \u0434\u043B\u044F \u0435\u0433\u043E \u0441\u0440\u0430\u0432\u043D\u0435\u043D\u0438\u044F \u0441 \u0431\u0430\u0437\u043E\u0439 \u043E\u0442\u043F\u0435\u0447\u0430\u0442\u043A\u043E\u0432 \u0444\u0430\u0439\u043B\u043E\u0432 Jenkins -fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint +fingerprint.link=https://jenkins.io/redirect/fingerprint more\ details=\u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u0430\u044F \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sk.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sk.properties index 3d4ccea16d382e661f07f394899ff2f4c139a7ea..714bd48aa4b211f195965bacdc4ea7276852845a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sk.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sk.properties @@ -3,5 +3,5 @@ Check=Skontroluj Check\ File\ Fingerprint=Skontroluj odtla\u010Dok s\u00FAboru File\ to\ check=S\u00FAbor na kontrolu -fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint +fingerprint.link=https://jenkins.io/redirect/fingerprint more\ details=viac detailov diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..5e41956e636e75899f45d22ea2bc1f60e3a134d8 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sr.properties @@ -0,0 +1,10 @@ +# This file is under the MIT License by authors + +Check\ File\ Fingerprint=\u041F\u0440\u043E\u0432\u0435\u0440\u0438 +description=\u041D\u0435\u0437\u043D\u0430\u0442\u0435 \u0432\u0435\u0440\u0437\u0438\u0458\u0443 \u043E\u0434 \u043D\u0435\u043A\u0435 '.jar' \u0430\u0440\u0445\u0438\u0432\u0435?
    \ +\u041F\u0440\u043E\u0432\u0435\u0440\u0438\u0442\u0435 \u043F\u043E \u0434\u0438\u0433\u0438\u0442\u0430\u043B\u043D\u043E\u043C \u043E\u0442\u0438\u0441\u043A\u0443. +fingerprint.link=https://jenkins.io/redirect/fingerprint +more\ details=\u0412\u0438\u0448\u0435 \u0434\u0435\u0442\u0430\u0459\u0430 +File\ to\ check=\u0410\u0440\u0445\u0438\u0432\u0430 \u0437\u0430 \u043F\u0440\u043E\u0432\u0435\u0440\u0438\u0432\u0430\u045A\u0435 +Check=\u041F\u0440\u043E\u0432\u0435\u0440\u0438 +Find=\u041F\u0440\u043E\u043D\u0430\u0452\u0438 diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sv_SE.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sv_SE.properties index 4a8deba12d35c7627556a70cd8c8ea75e66cde3b..0e75e28d3964585286a067bf75aae5dfa597c62d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sv_SE.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sv_SE.properties @@ -24,5 +24,5 @@ Check=Kontrollera Check\ File\ Fingerprint=Kontrollera filkontrollsumma File\ to\ check=Fil att kontrollera description=Har du en jar fil men vet inte vilket version den \u00E4r?
    Kontrollera det via kontrollsumman i Jenkins databas -fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint +fingerprint.link=https://jenkins.io/redirect/fingerprint more\ details=mer detaljer diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_zh_TW.properties index 7571b68fc055258271af5da8b318ac64b6b5d1a9..3258dafaee7ac407356aaacab6bbf594fa93747e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_zh_TW.properties @@ -22,7 +22,7 @@ Check\ File\ Fingerprint=\u6aa2\u67e5\u6a94\u6848\u6307\u7d0b description=\u624B\u908A\u6709\u500B JAR \u6A94\uFF0C\u4F46\u662F\u537B\u4E0D\u77E5\u9053\u5B83\u5230\u5E95\u662F\u54EA\u4E00\u7248\u7684?
    \u900F\u904E\u6A94\u6848\u7684\u7279\u5FB5\u503C\u5230 Jenkins \u7684\u8CC7\u6599\u5EAB\u88E1\u627E\u770B\u770B\u5427 -fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint +fingerprint.link=https://jenkins.io/redirect/fingerprint more\ details=\u8a73\u7d30\u8cc7\u6599 File\ to\ check=\u8981\u6aa2\u67e5\u7684\u6a94\u6848 Check=\u6aa2\u67e5 diff --git a/core/src/main/resources/jenkins/model/Jenkins/help-markupFormatter_bg.html b/core/src/main/resources/jenkins/model/Jenkins/help-markupFormatter_bg.html new file mode 100644 index 0000000000000000000000000000000000000000..0c54a47690e83852ff511079e36009c2bc39432c --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/help-markupFormatter_bg.html @@ -0,0 +1,16 @@ +
    + На места като описанията на проект, потребител, изглед или изграждане, + Jenkins ви позволява да въведете свободен, описателен текст. + + Тази настройка определя как този свободен текст се преобразува до HTML. + Стандартно счита текста за HTML и го ползва както е (това поведение е за + съвместимост с предишни версии). + +

    + Това е доста уобно и хората го ползват, за да зареждат <iframe>, + <script> и т.н., това позволяна на недробонамерените потребители да + извършат атаки чрез + XSS. + Ако рискът е прекомерно голям, инсталирайте допълнителна приставка за + форматиране на текста и ползвайте нея. +

    diff --git a/core/src/main/resources/jenkins/model/Jenkins/help-rawBuildsDir.html b/core/src/main/resources/jenkins/model/Jenkins/help-rawBuildsDir.html index 2d7c1159f51a176347c43e418dfdf860b228ead1..ebe0002239d3776f7c87fab0b72e39fcc5ceb1fb 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/help-rawBuildsDir.html +++ b/core/src/main/resources/jenkins/model/Jenkins/help-rawBuildsDir.html @@ -1,15 +1,28 @@
    - Specify where Jenkins would store records of the past builds. - This value can include the following variables. - + Specifies where Jenkins will store build records on the file system. This + includes the console output and other metadata generated by a build. +

    + This value may include the following variables:

      -
    • ${JENKINS_HOME} — Jenkins home directory. -
    • ${ITEM_ROOTDIR} — Root directory of a job for which the default workspace is allocated. -
    • ${ITEM_FULL_NAME} — '/'-separated job name, like "foo/bar". +
    • ${JENKINS_HOME} — Absolute path of the Jenkins home + directory +
    • ${ITEM_ROOTDIR} — Absolute path of the directory + where Jenkins stores the configuration and related metadata for a + given job +
    • ${ITEM_FULL_NAME} — The full name of a given job, + which may be slash-separated, e.g. foo/bar for the job + bar in folder foo
    - + The value must include ${ITEM_ROOTDIR} or + ${ITEM_FULL_NAME}, so that each job can store its build records + separately. +

    + Changing this value allows you to store build records on a larger, but + slower disk, rather than on the same disk where builds are executed. +

    + Any changes to this value will take effect as soon as this configuration + page is saved, but note that Jenkins will not automatically migrate any data + from the current build record root directory.

    - Changing this value allows you to put build records on a bigger but slow disk, - while keeping JENKINS_HOME on highly available backed up drive, for example. - Default value is ${ITEM_ROOTDIR}/builds. -

    \ No newline at end of file + The default value is ${ITEM_ROOTDIR}/builds. + diff --git a/core/src/main/resources/jenkins/model/Jenkins/help-rawBuildsDir_bg.html b/core/src/main/resources/jenkins/model/Jenkins/help-rawBuildsDir_bg.html new file mode 100644 index 0000000000000000000000000000000000000000..e30240fe001a9693fdaab8a5f15f7172bf8aa443 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/help-rawBuildsDir_bg.html @@ -0,0 +1,29 @@ +
    + Указва мястото във файловата система, където Jenkins ще запазва + записите за изгражданията. Това включва изхода от конзолата, както и дугите + метаданни, които се генерират при изграждане. +

    + Стойността може да включва следните променливи: +

      +
    • ${JENKINS_HOME} — абсолютният път до домашната директория + на Jenkins; +
    • ${ITEM_ROOTDIR} — абсолютният път до директорията, в която + Jenkins запазвъ настройките и свързаните метаданни за определено + задание; +
    • ${ITEM_FULL_NAME} — пълното име на заданието, което може да + съдържа наклонени черти, напр. foo/bar за заданието + bar в папка foo +
    + Стойността трябва да включва ${ITEM_ROOTDIR} или + ${ITEM_FULL_NAME}, за да може всяко задание да запазва записите за + изгражданията отделно. +

    + Можете да промените стойността, за да държите записите на по-голям, но + по-бавен диск в сравнение с този, на който се извършват изгражданията. +

    + Промените по стойността ще влязат в сила веднага след подаването на тази + страница с настройки. Jenkins няма автоматично да мигрира каквито и да е + данни от текущата директория за изграждане. +

    + Стандартната стойност е ${ITEM_ROOTDIR}/builds. +

    diff --git a/core/src/main/resources/jenkins/model/Jenkins/help-rawWorkspaceDir.html b/core/src/main/resources/jenkins/model/Jenkins/help-rawWorkspaceDir.html index 7906d5c1909d73b9f4ebd4548fe9513f8a5656b0..0249a88dd4804bc9b77b56dc2d5e3550193523d9 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/help-rawWorkspaceDir.html +++ b/core/src/main/resources/jenkins/model/Jenkins/help-rawWorkspaceDir.html @@ -1,15 +1,30 @@
    - Specify where Jenkins would store job workspaces on the master node. - (It has no effect on builds run on slaves.) - This value can include the following variables. - + Specifies where Jenkins will store workspaces for builds that are executed + on the master.
    + It has no effect on builds that are executed on agents. +

    + This value may include the following variables:

      -
    • ${JENKINS_HOME} — Jenkins home directory. -
    • ${ITEM_ROOTDIR} — Root directory of a job for which the default workspace is allocated. -
    • ${ITEM_FULL_NAME} — '/'-separated job name, like "foo/bar". +
    • ${JENKINS_HOME} — Absolute path of the Jenkins home + directory +
    • ${ITEM_ROOTDIR} — Absolute path of the directory + where Jenkins stores the configuration and related metadata for a + given job +
    • ${ITEM_FULL_NAME} — The full name of a given job, + which may be slash-separated, e.g. foo/bar for the job + bar in folder foo
    - + The value should normally include ${ITEM_ROOTDIR} or + ${ITEM_FULL_NAME}, otherwise different jobs will end up sharing the + same workspace. +

    + As builds tend to be disk I/O intensive, changing this value enables you to + put build workspaces on faster storage hardware, such as SSDs or even RAM + disks. +

    + Any changes to this value will take effect as soon as this configuration + page is saved, but note that Jenkins will not automatically migrate any data + from the current workspace root directory.

    - Changing this value allows you to put workspaces on SSD, SCSI, or even ram disks. - Default value is ${ITEM_ROOTDIR}/workspace. -

    \ No newline at end of file + The default value is ${JENKINS_HOME}/workspace/${ITEM_FULLNAME}. + diff --git a/core/src/main/resources/jenkins/model/Jenkins/help-rawWorkspaceDir_bg.html b/core/src/main/resources/jenkins/model/Jenkins/help-rawWorkspaceDir_bg.html new file mode 100644 index 0000000000000000000000000000000000000000..63c090bb308ba7920c99285be7c6f7b840b59e10 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/help-rawWorkspaceDir_bg.html @@ -0,0 +1,30 @@ +
    + Указва мястото във файловата система, където Jenkins ще запазва + изгражданията на основния компютър.
    + Това не влияе на подчинените компютри. +

    + Стойността може да включва следните променливи: +

      +
    • ${JENKINS_HOME} — абсолютният път до домашната директория + на Jenkins; +
    • ${ITEM_ROOTDIR} — абсолютният път до директорията, в която + Jenkins запазвъ настройките и свързаните метаданни за определено + задание; +
    • ${ITEM_FULL_NAME} — пълното име на заданието, което може да + съдържа наклонени черти, напр. foo/bar за заданието + bar в папка foo +
    + Стойността трябва да включва ${ITEM_ROOTDIR} или + ${ITEM_FULL_NAME}, за да може всяко задание да запазва + изгражданията отделно. +

    + Понеже при изгражданията доминират входно-изходните операции, може да + смените стойността, за да ползвате по-бърз хардуер като SSDs или дори + дискове в RAM паметта. +

    + Промените по стойността ще влязат в сила веднага след подаването на тази + страница с настройки. Jenkins няма автоматично да мигрира каквито и да е + данни от текущата директория за изграждане. +

    + Стандартната стойност е ${JENKINS_HOME}/workspace/${ITEM_FULLNAME}. +

    diff --git a/core/src/main/resources/jenkins/model/Jenkins/help-rawWorkspaceDir_ja.html b/core/src/main/resources/jenkins/model/Jenkins/help-rawWorkspaceDir_ja.html index b5547fffe1f121f474a4a2a6e8d94a07a6740e76..6967b33ac69496b206f73384d4a3b4d85dc04ff0 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/help-rawWorkspaceDir_ja.html +++ b/core/src/main/resources/jenkins/model/Jenkins/help-rawWorkspaceDir_ja.html @@ -10,5 +10,5 @@

    この値を変更することで、ワークスペースをSSD、SCSIあるいはRAMディスク上にワークスペースを配置することができます。 - デフォルト値は、${ITEM_ROOTDIR}/workspaceです。 + デフォルト値は、${JENKINS_HOME}/workspace/${ITEM_FULLNAME}です。 diff --git a/core/src/main/resources/jenkins/model/Jenkins/help-rawWorkspaceDir_zh_TW.html b/core/src/main/resources/jenkins/model/Jenkins/help-rawWorkspaceDir_zh_TW.html deleted file mode 100644 index e849c6f5c0e308cb49d52fdb20695c695c416fc3..0000000000000000000000000000000000000000 --- a/core/src/main/resources/jenkins/model/Jenkins/help-rawWorkspaceDir_zh_TW.html +++ /dev/null @@ -1,13 +0,0 @@ -

    - 設定 Jenkins 在 Master 節點上存放作業工作區的地方 (對 Slave 節點上的建置無效),可以使用下列變數: - -
      -
    • ${JENKINS_HOME} — Jenkins 主目錄。 -
    • ${ITEM_ROOTDIR} — 作業根目錄,也就是放預設工作區的地方。 -
    • ${ITEM_FULL_NAME} — 用 '/' 隔開的作業名稱,例如 "foo/bar"。 -
    - -

    - 讓您可以把工作區放到 SSD, SCSI 甚至是 Ram Disk 上。 - 預設值是 ${ITEM_ROOTDIR}/workspace。 -

    \ No newline at end of file diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..cf4e0133fde04b420a4de4b0557e2e171aab1f71 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_bg.properties @@ -0,0 +1,68 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +# The last build fatally failed. A new build is in progress. +red_anime=\ + \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e\u0442\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0431\u0435 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e. \u0412 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0442\u0435\u0447\u0435 \u0441\u043b\u0435\u0434\u0432\u0430\u0449\u043e\u0442\u043e. +# The project has never been built before, or the project is disabled. +grey=\ + \u041f\u0440\u043e\u0435\u043a\u0442\u044a\u0442 \u043d\u0435 \u0435 \u0431\u0438\u043b \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d \u0434\u043e\u0441\u0435\u0433\u0430 \u0438\u043b\u0438 \u0435 \u0438\u0437\u043a\u043b\u044e\u0447\u0435\u043d. +# Project health is 20% or less. You can hover the mouse over the project\u2019s icon for a more detailed explanation. +health-00to20=\ + \u041f\u0440\u043e\u0435\u043a\u0442\u044a\u0442 \u0435 \u0437\u0434\u0440\u0430\u0432 \u043d\u0430 [0;20]\u200a%. \u0417\u0430 \u043f\u043e\u0432\u0435\u0447\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430\u0434\u0440\u044a\u0436\u0442\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u043b\u0435\u0446\u0430 \u043d\u0430\ + \u043c\u0438\u0448\u043a\u0430\u0442\u0430 \u043d\u0430\u0434 \u0438\u043a\u043e\u043d\u0430\u0442\u0430 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430. +# The last build was successful but unstable. A new build is in progress. +yellow_anime=\ + \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e\u0442\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e, \u043d\u043e \u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u043d\u043e. \u0412 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0442\u0435\u0447\u0435 \u0441\u043b\u0435\u0434\u0432\u0430\u0449\u043e\u0442\u043e. +# The last build was successful. +blue=\ + \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e\u0442\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e. +# The last build was successful but unstable.\ +# This is primarily used to represent test failures. +yellow=\ + \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e\u0442\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e, \u043d\u043e \u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u043d\u043e. \u041d\u0430\u0439-\u0447\u0435\u0441\u0442\u043e \u0442\u043e\u0432\u0430 \u0441\u0435 \u0434\u044a\u043b\u0436\u0438 \u043d\u0430\ + \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0438 \u043f\u0440\u0438 \u0442\u0435\u0441\u0442\u043e\u0432\u0435\u0442\u0435. +# The last build fatally failed. +red=\ + \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e\u0442\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0431\u0435 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e. +# Project health is over 40% and up to 60%. You can hover the mouse over the project\u2019s icon for a more detailed explanation. +health-41to60=\ + \u041f\u0440\u043e\u0435\u043a\u0442\u044a\u0442 \u0435 \u0437\u0434\u0440\u0430\u0432 \u043d\u0430 (40;60]\u200a%. \u0417\u0430 \u043f\u043e\u0432\u0435\u0447\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430\u0434\u0440\u044a\u0436\u0442\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u043b\u0435\u0446\u0430 \u043d\u0430\ + \u043c\u0438\u0448\u043a\u0430\u0442\u0430 \u043d\u0430\u0434 \u0438\u043a\u043e\u043d\u0430\u0442\u0430 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430. +# The last build was successful. A new build is in progress. +blue_anime=\ + \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e\u0442\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0431\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e. \u0412 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0442\u0435\u0447\u0435 \u0441\u043b\u0435\u0434\u0432\u0430\u0449\u043e\u0442\u043e. +# Project health is over 20% and up to 40%. You can hover the mouse over the project\u2019s icon for a more detailed explanation. +health-21to40=\ + \u041f\u0440\u043e\u0435\u043a\u0442\u044a\u0442 \u0435 \u0437\u0434\u0440\u0430\u0432 \u043d\u0430 (20;40]\u200a%. \u0417\u0430 \u043f\u043e\u0432\u0435\u0447\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430\u0434\u0440\u044a\u0436\u0442\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u043b\u0435\u0446\u0430 \u043d\u0430\ + \u043c\u0438\u0448\u043a\u0430\u0442\u0430 \u043d\u0430\u0434 \u0438\u043a\u043e\u043d\u0430\u0442\u0430 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430. +# Project health is over 60% and up to 80%. You can hover the mouse over the project\u2019s icon for a more detailed explanation. +health-61to80=\ + \u041f\u0440\u043e\u0435\u043a\u0442\u044a\u0442 \u0435 \u0437\u0434\u0440\u0430\u0432 \u043d\u0430 (60;80]\u200a%. \u0417\u0430 \u043f\u043e\u0432\u0435\u0447\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430\u0434\u0440\u044a\u0436\u0442\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u043b\u0435\u0446\u0430 \u043d\u0430\ + \u043c\u0438\u0448\u043a\u0430\u0442\u0430 \u043d\u0430\u0434 \u0438\u043a\u043e\u043d\u0430\u0442\u0430 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430. +# Project health is over 80%. You can hover the mouse over the project\u2019s icon for a more detailed explanation. +health-81plus=\ + \u041f\u0440\u043e\u0435\u043a\u0442\u044a\u0442 \u0435 \u0437\u0434\u0440\u0430\u0432 \u043d\u0430 (80;100]\u200a%. \u0417\u0430 \u043f\u043e\u0432\u0435\u0447\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430\u0434\u0440\u044a\u0436\u0442\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u043b\u0435\u0446\u0430 \u043d\u0430\ + \u043c\u0438\u0448\u043a\u0430\u0442\u0430 \u043d\u0430\u0434 \u0438\u043a\u043e\u043d\u0430\u0442\u0430 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430. +# The first build of the project is in progress. +grey_anime=\ + \u0412 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0442\u0435\u0447\u0435 \u043f\u044a\u0440\u0432\u043e\u0442\u043e \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_de.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_de.properties index 13ecd3fe634a7e00a052dc61ec223ac787b0884c..119b7cebbed967f4312fe38fd15b8c7c67c34922 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_de.properties @@ -2,18 +2,13 @@ grey=Das Projekt wurde noch nie gebaut oder ist deaktiviert. grey_anime=Der erste Build des Projekts findet gerade statt. blue=Der letzte Build war erfolgreich. blue_anime=Der letzte Build war erfolgreich. Ein neuer Build findet gerade statt. -yellow=Der letzte Build war erfolgreich, aber instabil. Dies bedeutet, da der Build zwar technisch \ - durchgefhrt werden konnte, dabei aber Tests whrend des Builds fehlschlugen. +yellow=Der letzte Build war erfolgreich, aber instabil. Dies bedeutet, dass der Build zwar technisch \ + durchgef\u00FChrt werden konnte, dabei aber Tests w\u00E4hrend des Builds fehlschlugen. yellow_anime=Der letzte Build war erfolgreich, aber instabil. Ein neuer Build findet gerade statt. red=Der letzte Build schlug fehl. red_anime=Der letzte Build schlug fehl. Ein neuer Build findet gerade statt. -health-81plus=Die "Projekt-Fitness" betrgt ber 80%. Fahren Sie mit dem Mauszeiger ber das \ - Projektsymbol, um mehr Details dazu zu erfahren. -health-61to80=Die "Projekt-Fitness" betrgt ber 60% bis zu 80%. Fahren Sie mit dem Mauszeiger ber das \ - Projektsymbol, um mehr Details dazu zu erfahren. -health-41to60=Die "Projekt-Fitness" betrgt ber 40% bis zu 60%. Fahren Sie mit dem Mauszeiger ber das \ - Projektsymbol, um mehr Details dazu zu erfahren. -health-21to40=Die "Projekt-Fitness" betrgt ber 20% bis zu 40%. Fahren Sie mit dem Mauszeiger ber das \ - Projektsymbol, um mehr Details dazu zu erfahren. -health-00to20=Die "Projekt-Fitness" betrgt bis zu 20%. Fahren Sie mit dem Mauszeiger ber das \ - Projektsymbol, um mehr Details dazu zu erfahren. +health-81plus=Die Projektgesundheit betr\u00E4gt \u00FCber 80%. Fahren Sie mit dem Mauszeiger \u00FCber das Projektsymbol, um mehr Details dazu zu erfahren. +health-61to80=Die Projektgesundheit betr\u00E4gt zwischen 60% und 80%. Fahren Sie mit dem Mauszeiger \u00FCber das Projektsymbol, um mehr Details dazu zu erfahren. +health-41to60=Die Projektgesundheit betr\u00E4gt zwischen 40% und 60%. Fahren Sie mit dem Mauszeiger \u00FCber das Projektsymbol, um mehr Details dazu zu erfahren. +health-21to40=Die Projektgesundheit betr\u00E4gt zwischen 20% und 40%. Fahren Sie mit dem Mauszeiger \u00FCber das Projektsymbol, um mehr Details dazu zu erfahren. +health-00to20=Die Projektgesundheit betr\u00E4gt unter 20%. Fahren Sie mit dem Mauszeiger \u00FCber das Projektsymbol, um mehr Details dazu zu erfahren. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_es.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_es.properties index 4cf758e8d334c73eb9f0108a85fff3cb5b55bcc9..825dbb92b66140483d726d0672e7f5c0c5c19478 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_es.properties @@ -33,4 +33,4 @@ health-81plus=El estado de salud del proyecto supera el 80%. Puedes situar el ra health-00to20=El estado de salud del proyecto es inferior al 20%. Puedes situar el rat\u00F3n sobre el icono para ver una explicaci\u00F3n detallada. health-41to60=El estado de salud del proyecto est\u00E1 entre el 40% y el 60%. Puedes situar el rat\u00F3n sobre el icono para ver una explicaci\u00F3n detallada. health-21to40=El estado de salud del proyecto est\u00E1 entre el 20% y el 40%. Puedes situar el rat\u00F3n sobre el icono para ver una explicaci\u00F3n detallada. -health-61to80=El estado de salud del proyecto est\u00E1 entre el 80% y 80%. Puedes situar el rat\u00F3n sobre el icono para ver una explicaci\u00F3n detallada. +health-61to80=El estado de salud del proyecto est\u00E1 entre el 60% y 80%. Puedes situar el rat\u00F3n sobre el icono para ver una explicaci\u00F3n detallada. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_lt.properties index f16e98122a91da6e819aee4cd1e4e8ff87c54d42..6321019b97365973c86d34b6f57784f82fc76c1f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_lt.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_lt.properties @@ -1,3 +1,14 @@ -# This file is under the MIT License by authors - -grey=Projektas dar nebuvo surinkin\u0117jamas, arba projektas i\u0161jungtas. +grey=Projektas dar nebuvo vykdomas, arba jis i\u0161jungtas. +grey_anime=Vyksta pirmas darbo vykdymas. +blue=Paskutinis vykdymas buvo s\u0117kmingas. +blue_anime=Paskutinis vykdymas buvo s\u0117kmingas. Vyksta naujas vykdymas. +yellow=Paskutinis vykdymas buvo s\u0117kmingas, bet nestabilus.\ + Tai pagrinde naudojama parodyti, kad nepavyko testai. +yellow_anime=Paskutinis vykdymas buvo s\u0117kmingas, bet nestabilus. Vyksta naujas vykdymas. +red=Paskutinis vykdymas visi\u0161kai nepavyko. +red_anime=Paskutinis vykdymas visi\u0161kai nepavyko. Vyksta naujas vykdymas. +health-81plus=Projekto sveikata vir\u0161 80%. Galite u\u017evesti pel\u0119 vir\u0161 projekto piktogramos detalesniam paai\u0161kinimui. +health-61to80=Projekto sveikata vir\u0161 60% ir \u017eemiau 80%. Galite u\u017evesti pel\u0119 vir\u0161 projekto piktogramos detalesniam paai\u0161kinimui. +health-41to60=Projekto sveikata vir\u0161 40% ir \u017eemiau 60%. Galite u\u017evesti pel\u0119 vir\u0161 projekto piktogramos detalesniam paai\u0161kinimui. +health-21to40=Projekto sveikata vir\u0161 20% ir \u017eemiau 40%. Galite u\u017evesti pel\u0119 vir\u0161 projekto piktogramos detalesniam paai\u0161kinimui. +health-00to20=Projekto sveikata \u017eemiau 20%. Galite u\u017evesti pel\u0119 vir\u0161 projekto piktogramos detalesniam paai\u0161kinimui. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_pl.properties index 5dcd092fc61cf677add99e3b4f83d6a12a54a8ad..e4c1928f3a588a49fb7b5f6c69b602c847b68354 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_pl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_pl.properties @@ -1,15 +1,34 @@ -# This file is under the MIT License by authors - -blue=Ostatnie budowanie projektu zako\u0144czy\u0142o si\u0119 pomy\u015Blnie. -blue_anime=Ostatnie budowanie projektu zako\u0144czy\u0142o si\u0119 pomy\u015Blnie. Nowa wersja jest w trakcie budowy. -grey=Projekt nie zosta\u0142 dotychczas zbudowany lub jest wy\u0142\u0105czony. -grey_anime=Trwa pierwsze budowanie projektu. -red=Ostatnie budowanie projektu nie powiod\u0142o si\u0119. -red_anime=Ostatnie budowanie projektu nie powiod\u0142o si\u0119. Nowa wersja jest w trakcie budowy. -yellow=Ostatnie budowanie projektu zako\u0144czy\u0142o si\u0119 pomy\u015Blnie, lecz wersja jest niestabilna. To oznaczenie stosowane jest dla projekt\u00F3w, w kt\u00F3rych testy zako\u0144czy\u0142y si\u0119 niepowodzeniem. -yellow_anime=Ostatnie budowanie projektu zako\u0144czy\u0142o si\u0119 pomy\u015Blnie, lecz wersja jest niestabilna. Nowa wersja jest w trakcie budowy. -health-81plus=Budowanie zako\u0144czone pomy\u015Blnie w ponad 80 procent przypadk\u00F3w. Przesu\u0144 myszk\u0119 nad ikon\u0119 projektu, aby sprawdzi\u0107 szczeg\u00F3\u0142y. -health-61to80=Budowanie zako\u0144czone pomy\u015Blnie pomi\u0119dzy 60 a 80 procent przypadk\u00F3w. Przesu\u0144 myszk\u0119 nad ikon\u0119 projektu, aby sprawdzi\u0107 szczeg\u00F3\u0142y. -health-41to60=Budowanie zako\u0144czone pomy\u015Blnie pomi\u0119dzy 40 a 60 procent przypadk\u00F3w. Przesu\u0144 myszk\u0119 nad ikon\u0119 projektu, aby sprawdzi\u0107 szczeg\u00F3\u0142y. -health-21to40=Budowanie zako\u0144czone pomy\u015Blnie pomi\u0119dzy 20 a 40 procent przypadk\u00F3w. Przesu\u0144 myszk\u0119 nad ikon\u0119 projektu, aby sprawdzi\u0107 szczeg\u00F3\u0142y. -health-00to20=Budowanie zako\u0144czone pomy\u015Blnie w poni\u017Cej 20 procent przypadk\u00F3w. Przesu\u0144 myszk\u0119 nad ikon\u0119 projektu, aby sprawdzi\u0107 szczeg\u00F3\u0142y. +# The MIT License +# +# Copyright (c) 2013-2016, Sun Microsystems., Inc, Damian Szczepanik +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. +blue=Ostatnie zadanie projektu zako\u0144czy\u0142o si\u0119 pomy\u015Blnie. +blue_anime=Ostatnie zadanie projektu zako\u0144czy\u0142o si\u0119 pomy\u015Blnie. Nowa wersja jest w trakcie budowy. +grey=Zadanie nie zosta\u0142o dotychczas zako\u0144czone lub jest wy\u0142\u0105czony. +grey_anime=Trwa pierwsze zadanie projektu. +red=Ostatnie zadanie projektu nie powiod\u0142o si\u0119. +red_anime=Ostatnie zadanie projektu nie powiod\u0142o si\u0119. Nowa wersja jest w trakcie budowy. +yellow=Ostatnie zadanie projektu zako\u0144czy\u0142o si\u0119 pomy\u015Blnie, lecz wersja jest niestabilna. To oznaczenie stosowane jest dla projekt\u00F3w, w kt\u00F3rych testy zako\u0144czy\u0142y si\u0119 niepowodzeniem. +yellow_anime=Ostatnie zadanie projektu zako\u0144czy\u0142o si\u0119 pomy\u015Blnie, lecz wersja jest niestabilna. Nowa wersja jest w trakcie budowy. +health-81plus=Zadanie zako\u0144czone pomy\u015Blnie w ponad 80 procent przypadk\u00F3w. Przesu\u0144 myszk\u0119 nad ikon\u0119 projektu, aby sprawdzi\u0107 szczeg\u00F3\u0142y. +health-61to80=Zadanie zako\u0144czone pomy\u015Blnie pomi\u0119dzy 60 a 80 procent przypadk\u00F3w. Przesu\u0144 myszk\u0119 nad ikon\u0119 projektu, aby sprawdzi\u0107 szczeg\u00F3\u0142y. +health-41to60=Zadanie zako\u0144czone pomy\u015Blnie pomi\u0119dzy 40 a 60 procent przypadk\u00F3w. Przesu\u0144 myszk\u0119 nad ikon\u0119 projektu, aby sprawdzi\u0107 szczeg\u00F3\u0142y. +health-21to40=Zadanie zako\u0144czone pomy\u015Blnie pomi\u0119dzy 20 a 40 procent przypadk\u00F3w. Przesu\u0144 myszk\u0119 nad ikon\u0119 projektu, aby sprawdzi\u0107 szczeg\u00F3\u0142y. +health-00to20=Zadanie zako\u0144czone pomy\u015Blnie w poni\u017Cej 20 procent przypadk\u00F3w. Przesu\u0144 myszk\u0119 nad ikon\u0119 projektu, aby sprawdzi\u0107 szczeg\u00F3\u0142y. diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..3397c9f26a67e367228f2e81b24e2d31775fbd6c --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_sr.properties @@ -0,0 +1,20 @@ +# This file is under the MIT License by authors + +grey=\u041F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 \u043D\u0438\u0458\u0435 \u043F\u0440\u0435 \u0431\u0438\u0458\u043E \u0438\u0437\u0433\u0440\u0430\u0452\u0435\u043D, \u0438\u043B\u0438 \u0458\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0430\u0442 \u043E\u043D\u0435\u043C\u043E\u0433\u0443\u045B\u0435\u043D. +grey_anime=\u041F\u0440\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u0443 \u0442\u043E\u043A\u0443 +blue=\u0417\u0430\u0434\u045A\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0458\u0435 \u0431\u0438\u043B\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u0430 +blue_anime=\u0417\u0430\u0434\u045A\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0458\u0435 \u0431\u0438\u043B\u0430 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0430. \u041D\u043E\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0458\u0435 \u0443 \u0442\u043E\u043A\u0443. +yellow=\u0417\u0430\u0434\u045A\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0458\u0435 \u0443\u0441\u043F\u0435\u0448\u043D\u0430 \u0430\u043B\u0438 \u043D\u0435\u0441\u0442\u0430\u0431\u0438\u043B\u043D\u0430. \u041D\u0430\u0458\u0447\u0435\u0448\u045B\u0435 \u0441\u0435 \u0442\u043E \u0434\u0435\u0448\u0430\u0432\u0430 \u0437\u0431\u043E\u0433 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0438\u043C\u0430 \u043F\u0440\u0438\u043B\u0438\u043A\u043E\u043C \u0442\u0435\u0441\u0442\u0438\u0440\u0430\u045A\u0430. +yellow_anime=\u0417\u0430\u0434\u045A\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0458\u0435 \u0443\u0441\u043F\u0435\u0448\u043D\u0430 \u0430\u043B\u0438 \u043D\u0435\u0441\u0442\u0430\u0431\u0438\u043B\u043D\u0430. \u041D\u043E\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0458\u0435 \u0443 \u0442\u043E\u043A\u0443. +red=\u0417\u0430\u0434\u045A\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0458\u0435 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0430. +red_anime=\u0417\u0430\u0434\u045A\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0458\u0435 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0430. \u041D\u043E\u0432\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u0458\u0435 \u0443 \u0442\u043E\u043A\u0443. +health-81plus=\u0417\u0434\u0440\u0430\u0432\u0459\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u043F\u0440\u0435\u043A\u043E 80%. \u041F\u0440\u0438\u0432\u0443\u0446\u0438\u0442\u0435 \u043C\u0438\u0448 \u043F\u0440\u0435\u043A\u043E \u045A\u0435\u043D\u0435 \u0438\u043A\u043E\u043D\u0438\u0446\u0435 \u0437\u0430 \u0434\u0435\u0442\u0430\u0459\u043D\u0438\u0458\u0438 \u043E\u043F\u0438\u0441. +health-61to80=\u0417\u0434\u0440\u0430\u0432\u0459\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u0438\u0437\u043C\u0435\u0452\u0443 60 \u0438 80%. \u041F\u0440\u0438\u0432\u0443\u0446\u0438\u0442\u0435 \u043C\u0438\u0448 \u043F\u0440\u0435\u043A\u043E \u045A\u0435\u043D\u0435 \u0438\u043A\u043E\u043D\u0438\u0446\u0435 \u0437\u0430 \u0434\u0435\u0442\u0430\u0459\u043D\u0438\u0458\u0438 \u043E\u043F\u0438\u0441. +health-41to60=\u0417\u0434\u0440\u0430\u0432\u0459\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u0438\u0437\u043C\u0435\u0452\u0443 40 \u0438 60%. \u041F\u0440\u0438\u0432\u0443\u0446\u0438\u0442\u0435 \u043C\u0438\u0448 \u043F\u0440\u0435\u043A\u043E \u045A\u0435\u043D\u0435 \u0438\u043A\u043E\u043D\u0438\u0446\u0435 \u0437\u0430 \u0434\u0435\u0442\u0430\u0459\u043D\u0438\u0458\u0438 \u043E\u043F\u0438\u0441. +health-21to40=\u0417\u0434\u0440\u0430\u0432\u0459\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u0438\u0437\u043C\u0435\u0452\u0443 20 \u0438 40%. \u041F\u0440\u0438\u0432\u0443\u0446\u0438\u0442\u0435 \u043C\u0438\u0448 \u043F\u0440\u0435\u043A\u043E \u045A\u0435\u043D\u0435 \u0438\u043A\u043E\u043D\u0438\u0446\u0435 \u0437\u0430 \u0434\u0435\u0442\u0430\u0459\u043D\u0438\u0458\u0438 \u043E\u043F\u0438\u0441. +health-00to20=\u0417\u0434\u0440\u0430\u0432\u0459\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u0438\u0441\u043F\u043E\u0434 20%. \u041F\u0440\u0438\u0432\u0443\u0446\u0438\u0442\u0435 \u043C\u0438\u0448 \u043F\u0440\u0435\u043A\u043E \u045A\u0435\u043D\u0435 \u0438\u043A\u043E\u043D\u0438\u0446\u0435 \u0437\u0430 \u0434\u0435\u0442\u0430\u0459\u043D\u0438\u0458\u0438 \u043E\u043F\u0438\u0441. +health-00to19=\u0417\u0434\u0440\u0430\u0432\u0459\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u0438\u0437\u043C\u0435\u0452\u0443 0 \u0438 20%. \u041F\u0440\u0438\u0432\u0443\u0446\u0438\u0442\u0435 \u043C\u0438\u0448 \u043F\u0440\u0435\u043A\u043E \u045A\u0435\u043D\u0435 \u0438\u043A\u043E\u043D\u0438\u0446\u0435 \u0437\u0430 \u0434\u0435\u0442\u0430\u0459\u043D\u0438\u0458\u0438 \u043E\u043F\u0438\u0441. +health-20to39=\u0417\u0434\u0440\u0430\u0432\u0459\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u0438\u0437\u043C\u0435\u0452\u0443 20 \u0438 40%. \u041F\u0440\u0438\u0432\u0443\u0446\u0438\u0442\u0435 \u043C\u0438\u0448 \u043F\u0440\u0435\u043A\u043E \u045A\u0435\u043D\u0435 \u0438\u043A\u043E\u043D\u0438\u0446\u0435 \u0437\u0430 \u0434\u0435\u0442\u0430\u0459\u043D\u0438\u0458\u0438 \u043E\u043F\u0438\u0441. +health-40to59=\u0417\u0434\u0440\u0430\u0432\u0459\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u0438\u0437\u043C\u0435\u0452\u0443 40 \u0438 60%. \u041F\u0440\u0438\u0432\u0443\u0446\u0438\u0442\u0435 \u043C\u0438\u0448 \u043F\u0440\u0435\u043A\u043E \u045A\u0435\u043D\u0435 \u0438\u043A\u043E\u043D\u0438\u0446\u0435 \u0437\u0430 \u0434\u0435\u0442\u0430\u0459\u043D\u0438\u0458\u0438 \u043E\u043F\u0438\u0441. +health-60to79=\u0417\u0434\u0440\u0430\u0432\u0459\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u0438\u0437\u043C\u0435\u0452\u0443 60 \u0438 80%. \u041F\u0440\u0438\u0432\u0443\u0446\u0438\u0442\u0435 \u043C\u0438\u0448 \u043F\u0440\u0435\u043A\u043E \u045A\u0435\u043D\u0435 \u0438\u043A\u043E\u043D\u0438\u0446\u0435 \u0437\u0430 \u0434\u0435\u0442\u0430\u0459\u043D\u0438\u0458\u0438 \u043E\u043F\u0438\u0441. +health-80plus=\u0417\u0434\u0440\u0430\u0432\u0459\u0435 \u043F\u0440\u043E\u0458\u0435\u043A\u0442\u0430 \u0458\u0435 \u043F\u0440\u0435\u043A\u043E 80%. \u041F\u0440\u0438\u0432\u0443\u0446\u0438\u0442\u0435 \u043C\u0438\u0448 \u043F\u0440\u0435\u043A\u043E \u045A\u0435\u043D\u0435 \u0438\u043A\u043E\u043D\u0438\u0446\u0435 \u0437\u0430 \u0434\u0435\u0442\u0430\u0459\u043D\u0438\u0458\u0438 \u043E\u043F\u0438\u0441. diff --git a/core/src/main/resources/jenkins/model/Jenkins/load-statistics_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_bg.properties new file mode 100644 index 0000000000000000000000000000000000000000..9d46fdd58162847c762eb28160906fdfedf9b41c --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_bg.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Bulgarian translation: Copyright (c) 2015, 2016, Alexander Shopov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Load\ Statistics=\ + \u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u043d\u0430 \u043d\u0430\u0442\u043e\u0432\u0430\u0440\u0432\u0430\u043d\u0435\u0442\u043e diff --git a/core/src/main/resources/jenkins/model/Jenkins/load-statistics_de.properties b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_de.properties new file mode 100644 index 0000000000000000000000000000000000000000..aa6f52cb1456557a4b824d9f4c2274969728ce65 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_de.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2017 Daniel Beck and a number of other of contributors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# 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. + +Load\ Statistics=Auslastung diff --git a/core/src/main/resources/jenkins/model/Jenkins/load-statistics_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_lt.properties new file mode 100644 index 0000000000000000000000000000000000000000..780e7508931b3fd87a7109e260992dc03d9557fc --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_lt.properties @@ -0,0 +1 @@ +Load\ Statistics=Apkrovos statistika diff --git a/core/src/main/resources/jenkins/model/Jenkins/load-statistics_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_ru.properties new file mode 100644 index 0000000000000000000000000000000000000000..42d8c5d4a93f30655bedf293dd38d7a0ab5d219e --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_ru.properties @@ -0,0 +1 @@ +Load\ Statistics=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f diff --git a/core/src/main/resources/jenkins/model/Jenkins/load-statistics_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_sr.properties new file mode 100644 index 0000000000000000000000000000000000000000..8c5dc1f569c0f039b1e16def515786c14bf05071 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/load-statistics_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Load\ Statistics=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0435 \u043E \u043E\u043F\u0442\u0435\u0440\u0435\u045B\u0435\u045A\u0443 diff --git a/core/src/main/resources/jenkins/model/Jenkins/login.jelly b/core/src/main/resources/jenkins/model/Jenkins/login.jelly index f7e02a5f50567bae4b018ae0134ddfc46abae007..cb4ed08319326802fe45af74cd784ba73e6901c0 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login.jelly +++ b/core/src/main/resources/jenkins/model/Jenkins/login.jelly @@ -24,6 +24,11 @@ THE SOFTWARE. + + + + + @@ -70,4 +75,6 @@ THE SOFTWARE. + + diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError.jelly b/core/src/main/resources/jenkins/model/Jenkins/loginError.jelly index 6f7c2bfb2261dfa52c22e32b4e3d243f1b75dfef..a5a9549aca606774ed6612f90724a82228c75a71 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/loginError.jelly +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError.jelly @@ -27,6 +27,10 @@ THE SOFTWARE. + + + + - ${taskTags!=null and attrs.contextMenu!='false' ? taskTags.add(href,iconUrl,title,requiresConfirmation,requiresConfirmation) : null} + ${taskTags!=null and attrs.contextMenu!='false' ? taskTags.add(href,iconUrl,title,post,requiresConfirmation) : null} + href="${requiresConfirmation || post ? null : href}" iconOnly="true">