From f5742df16b629a3ba55362bb8e40e786142a0e29 Mon Sep 17 00:00:00 2001 From: evernat Date: Tue, 27 Aug 2013 00:03:09 +0200 Subject: [PATCH 001/308] Optimize and close Zip resources in ClassicPluginStrategy and FilePath --- .../java/hudson/ClassicPluginStrategy.java | 53 ++++++++++--------- core/src/main/java/hudson/FilePath.java | 7 ++- 2 files changed, 35 insertions(+), 25 deletions(-) diff --git a/core/src/main/java/hudson/ClassicPluginStrategy.java b/core/src/main/java/hudson/ClassicPluginStrategy.java index e4d158128c..ae0a948f14 100644 --- a/core/src/main/java/hudson/ClassicPluginStrategy.java +++ b/core/src/main/java/hudson/ClassicPluginStrategy.java @@ -440,7 +440,7 @@ public class ClassicPluginStrategy implements PluginStrategy { * Repackage classes directory into a jar file to make it remoting friendly. * The remoting layer can cache jar files but not class files. */ - private static void createClassJarFromWebInfClasses(File archive, File destDir, Project prj) { + private static void createClassJarFromWebInfClasses(File archive, File destDir, Project prj) throws IOException { File classesJar = new File(destDir, "WEB-INF/lib/classes.jar"); ZipFileSet zfs = new ZipFileSet(); @@ -457,31 +457,36 @@ public class ClassicPluginStrategy implements PluginStrategy { mapper.add(gm); final long dirTime = archive.lastModified(); - Zip z = new Zip() { - /** - * Forces the fixed timestamp for directories to make sure - * classes.jar always get a consistent checksum. - */ - protected void zipDir(Resource dir, ZipOutputStream zOut, String vPath, - int mode, ZipExtraField[] extra) - throws IOException { - - ZipOutputStream wrapped = new ZipOutputStream(new NullOutputStream()) { - @Override - public void putNextEntry(ZipEntry ze) throws IOException { - ze.setTime(dirTime+1999); // roundup - super.putNextEntry(ze); - } - }; - super.zipDir(dir,wrapped,vPath,mode,extra); + // this ZipOutputStream is reused and not created for each directory + final ZipOutputStream wrappedZOut = new ZipOutputStream(new NullOutputStream()) { + @Override + public void putNextEntry(ZipEntry ze) throws IOException { + ze.setTime(dirTime+1999); // roundup + super.putNextEntry(ze); } }; - z.setProject(prj); - z.setTaskType("zip"); - classesJar.getParentFile().mkdirs(); - z.setDestFile(classesJar); - z.add(mapper); - z.execute(); + try { + Zip z = new Zip() { + /** + * Forces the fixed timestamp for directories to make sure + * classes.jar always get a consistent checksum. + */ + protected void zipDir(Resource dir, ZipOutputStream zOut, String vPath, + int mode, ZipExtraField[] extra) + throws IOException { + // use wrappedZOut instead of zOut + super.zipDir(dir,wrappedZOut,vPath,mode,extra); + } + }; + z.setProject(prj); + z.setTaskType("zip"); + classesJar.getParentFile().mkdirs(); + z.setDestFile(classesJar); + z.add(mapper); + z.execute(); + } finally { + wrappedZOut.close(); + } } private static void unzipExceptClasses(File archive, File destDir, Project prj) { diff --git a/core/src/main/java/hudson/FilePath.java b/core/src/main/java/hudson/FilePath.java index 7466d9d6af..658fb9ed06 100644 --- a/core/src/main/java/hudson/FilePath.java +++ b/core/src/main/java/hudson/FilePath.java @@ -527,7 +527,12 @@ public final class FilePath implements Serializable { if (p != null) { p.mkdirs(); } - IOUtils.copy(zip.getInputStream(e), f); + InputStream input = zip.getInputStream(e); + try { + IOUtils.copy(input, f); + } finally { + input.close(); + } try { FilePath target = new FilePath(f); int mode = e.getUnixMode(); -- GitLab From 7bc35e9af41d6cebe834d16f16fb2d2605d6c7d0 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 25 Sep 2013 21:48:19 -0400 Subject: [PATCH 002/308] debian: Remove unused dh_make templates --- debian/debian/README | 6 ---- debian/debian/cron.d.ex | 4 --- debian/debian/docs | 0 debian/debian/manpage.1.ex | 59 -------------------------------------- debian/debian/preinst.ex | 37 ------------------------ debian/debian/prerm.ex | 40 -------------------------- debian/debian/watch.ex | 22 -------------- 7 files changed, 168 deletions(-) delete mode 100644 debian/debian/README delete mode 100644 debian/debian/cron.d.ex delete mode 100644 debian/debian/docs delete mode 100644 debian/debian/manpage.1.ex delete mode 100644 debian/debian/preinst.ex delete mode 100644 debian/debian/prerm.ex delete mode 100644 debian/debian/watch.ex diff --git a/debian/debian/README b/debian/debian/README deleted file mode 100644 index cd434e771e..0000000000 --- a/debian/debian/README +++ /dev/null @@ -1,6 +0,0 @@ -The Debian Package jenkins ----------------------------- - -Comments regarding the Package - - -- Kohsuke Kawaguchi Thu, 24 Apr 2008 23:38:55 -0700 diff --git a/debian/debian/cron.d.ex b/debian/debian/cron.d.ex deleted file mode 100644 index 0baf1d6cab..0000000000 --- a/debian/debian/cron.d.ex +++ /dev/null @@ -1,4 +0,0 @@ -# -# Regular cron jobs for the jenkins package -# -0 4 * * * root jenkins_maintenance diff --git a/debian/debian/docs b/debian/debian/docs deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/debian/debian/manpage.1.ex b/debian/debian/manpage.1.ex deleted file mode 100644 index 5e92b116d8..0000000000 --- a/debian/debian/manpage.1.ex +++ /dev/null @@ -1,59 +0,0 @@ -.\" Hey, EMACS: -*- nroff -*- -.\" First parameter, NAME, should be all caps -.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection -.\" other parameters are allowed: see man(7), man(1) -.TH JENKINS SECTION "April 25, 2008" -.\" Please adjust this date whenever revising the manpage. -.\" -.\" Some roff macros, for reference: -.\" .nh disable hyphenation -.\" .hy enable hyphenation -.\" .ad l left justify -.\" .ad b justify to both left and right margins -.\" .nf disable filling -.\" .fi enable filling -.\" .br insert line break -.\" .sp insert n+1 empty lines -.\" for manpage-specific macros, see man(7) -.SH NAME -jenkins \- program to do something -.SH SYNOPSIS -.B jenkins -.RI [ options ] " files" ... -.br -.B bar -.RI [ options ] " files" ... -.SH DESCRIPTION -This manual page documents briefly the -.B jenkins -and -.B bar -commands. -.PP -.\" TeX users may be more comfortable with the \fB\fP and -.\" \fI\fP escape sequences to invode bold face and italics, -.\" respectively. -\fBjenkins\fP is a program that... -.SH OPTIONS -These programs follow the usual GNU command line syntax, with long -options starting with two dashes (`-'). -A summary of options is included below. -For a complete description, see the Info files. -.TP -.B \-h, \-\-help -Show summary of options. -.TP -.B \-v, \-\-version -Show version of program. -.SH SEE ALSO -.BR bar (1), -.BR baz (1). -.br -The programs are documented fully by -.IR "The Rise and Fall of a Fooish Bar" , -available via the Info system. -.SH AUTHOR -jenkins was written by . -.PP -This manual page was written by Kohsuke Kawaguchi , -for the Debian project (but may be used by others). diff --git a/debian/debian/preinst.ex b/debian/debian/preinst.ex deleted file mode 100644 index a2db226767..0000000000 --- a/debian/debian/preinst.ex +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh -# preinst script for jenkins -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * `install' -# * `install' -# * `upgrade' -# * `abort-upgrade' -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - - -case "$1" in - install|upgrade) - ;; - - abort-upgrade) - ;; - - *) - echo "preinst called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/debian/debian/prerm.ex b/debian/debian/prerm.ex deleted file mode 100644 index 8c43e74ce3..0000000000 --- a/debian/debian/prerm.ex +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/sh -# prerm script for jenkins -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - - -case "$1" in - remove|upgrade|deconfigure) - ;; - - failed-upgrade) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/debian/debian/watch.ex b/debian/debian/watch.ex deleted file mode 100644 index 0439e05337..0000000000 --- a/debian/debian/watch.ex +++ /dev/null @@ -1,22 +0,0 @@ -# Example watch control file for uscan -# Rename this file to "watch" and then you can run the "uscan" command -# to check for upstream updates and more. -# See uscan(1) for format - -# Compulsory line, this is a version 3 file -version=3 - -# Uncomment to examine a Webpage -# -#http://www.example.com/downloads.php jenkins-(.*)\.tar\.gz - -# Uncomment to examine a Webserver directory -#http://www.example.com/pub/jenkins-(.*)\.tar\.gz - -# Uncommment to examine a FTP server -#ftp://ftp.example.com/pub/jenkins-(.*)\.tar\.gz debian uupdate - -# Uncomment to find new files on sourceforge, for debscripts >= 2.9 -# http://sf.net/jenkins/jenkins-(.*)\.tar\.gz - - -- GitLab From 66a6d98489bd7874a726bbc27f7f07376759cd5e Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 25 Sep 2013 21:50:58 -0400 Subject: [PATCH 003/308] debian: Add debian/source/format --- debian/debian/source/format | 1 + 1 file changed, 1 insertion(+) create mode 100644 debian/debian/source/format diff --git a/debian/debian/source/format b/debian/debian/source/format new file mode 100644 index 0000000000..89ae9db8f8 --- /dev/null +++ b/debian/debian/source/format @@ -0,0 +1 @@ +3.0 (native) -- GitLab From a42b7f391dc9efae2fc60cbd80a96c31a9dafbe2 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 25 Sep 2013 22:16:16 -0400 Subject: [PATCH 004/308] debian: Update debian/copyright Make the contents match reality, and use new Debian machine-readable format for debian/copyright. --- debian/debian/copyright | 65 ++++++++++++++++------------------------- 1 file changed, 25 insertions(+), 40 deletions(-) diff --git a/debian/debian/copyright b/debian/debian/copyright index 60f0fb112c..cbdffdc3e9 100644 --- a/debian/debian/copyright +++ b/debian/debian/copyright @@ -1,40 +1,25 @@ -This package was debianized by Kohsuke Kawaguchi on -Thu, 24 Apr 2008 23:38:55 -0700. - -It was downloaded from - -Upstream Author(s): - - - - -Copyright: - - - - -License: - - This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This package is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this package; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - -On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. - -The Debian packaging is (C) 2008, Kohsuke Kawaguchi and -is licensed under the GPL, see above. - - -# Please also look if there are files or directories which have a -# different copyright/license attached and list them here. +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: Jenkins +Upstream-Contact: http://jenkins-ci.org/ +Source: https://github.com/jenkinsci/jenkins + +Files: * +Copyright: 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributors +License: Expat + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + . + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. -- GitLab From 3537a3e08c473a6532322f7a5397d3d0401fafe2 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 25 Sep 2013 22:24:15 -0400 Subject: [PATCH 005/308] debian: Update Java dependencies to current policy --- debian/debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/debian/control b/debian/debian/control index 5fc9249557..d315ef7c65 100644 --- a/debian/debian/control +++ b/debian/debian/control @@ -8,7 +8,7 @@ Homepage: https://jenkins-ci.org/ Package: jenkins Architecture: all -Depends: ${shlibs:Depends}, ${misc:Depends}, daemon, adduser, psmisc, java2-runtime-headless | java2-runtime +Depends: ${shlibs:Depends}, ${misc:Depends}, daemon, adduser, psmisc, default-jre-headless | java-runtime-headless Conflicts: hudson Replaces: hudson Description: Continuous integration system written in Java -- GitLab From 9b7ef5089cf0fb41d5c6446a051cc2f168e93a76 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 25 Sep 2013 22:27:15 -0400 Subject: [PATCH 006/308] debian: Reimplement rules using dh This greatly simplifies things, and also fixes a number of latent bugs, especially confusion about architecture-dependent and -independent packages. Also update debhelper compat level and standards version. --- debian/debian/compat | 2 +- debian/debian/control | 4 +- debian/debian/rules | 89 +------------------------------------------ 3 files changed, 5 insertions(+), 90 deletions(-) diff --git a/debian/debian/compat b/debian/debian/compat index 7ed6ff82de..ec635144f6 100644 --- a/debian/debian/compat +++ b/debian/debian/compat @@ -1 +1 @@ -5 +9 diff --git a/debian/debian/control b/debian/debian/control index d315ef7c65..3d22ae7099 100644 --- a/debian/debian/control +++ b/debian/debian/control @@ -2,8 +2,8 @@ Source: jenkins Section: devel Priority: extra Maintainer: Kohsuke Kawaguchi -Build-Depends: debhelper (>= 5) -Standards-Version: 3.7.2 +Build-Depends: debhelper (>= 9) +Standards-Version: 3.9.4 Homepage: https://jenkins-ci.org/ Package: jenkins diff --git a/debian/debian/rules b/debian/debian/rules index 43b22eafc6..2d33f6ac89 100755 --- a/debian/debian/rules +++ b/debian/debian/rules @@ -1,89 +1,4 @@ #!/usr/bin/make -f -# -*- makefile -*- -# Sample debian/rules that uses debhelper. -# This file was originally written by Joey Hess and Craig Small. -# As a special exception, when this file is copied by dh-make into a -# dh-make output file, you may use that output file without restriction. -# This special exception was added by Craig Small in version 0.37 of dh-make. -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - - -configure: configure-stamp -configure-stamp: - dh_testdir - # Add here commands to configure the package. - - touch configure-stamp - - -build: build-stamp - -build-stamp: configure-stamp - dh_testdir - - # Add here commands to compile the package. - - touch $@ - -clean: - dh_testdir - dh_testroot - rm -f build-stamp configure-stamp - - # Add here commands to clean up after the build process. - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - dh_install - - # Add here commands to install the package into debian/jenkins. - - # Moved creation of dirs to dirs template to be invoked by dh_installdirs - - # Moved copying of 'upstream' files (jenkins.war) to install template to be invoked by dh_install - #cp jenkins.war $(CURDIR)/debian/jenkins/usr/share/jenkins/jenkins.war - - -# Build architecture-independent files here. -binary-indep: build install -# We have nothing to do by default. - -# Build architecture-dependent files here. -binary-arch: build install - dh_testdir - dh_testroot - dh_installchangelogs - dh_installdocs - dh_installexamples -# dh_installmenu -# dh_installdebconf - dh_installlogrotate -# dh_installemacsen -# dh_installpam -# dh_installmime -# dh_python - dh_installinit -# dh_installcron -# dh_installinfo - dh_installman - dh_link - dh_strip - dh_compress - dh_fixperms -# dh_perl -# dh_makeshlibs - dh_installdeb - dh_shlibdeps - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install configure +%: + dh $@ -- GitLab From d5f5ee8ee09378599064ea071287a75cbee1698d Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 25 Sep 2013 22:35:36 -0400 Subject: [PATCH 007/308] debian: Remove /var/run/jenkins from package Putting this directory into the package is an error because /var/run can be on a temporary file system. The init script already takes care of creating this directory, so this wasn't necessary anyway. --- debian/debian/dirs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/debian/debian/dirs b/debian/debian/dirs index a232932cba..f5bfc0e734 100644 --- a/debian/debian/dirs +++ b/debian/debian/dirs @@ -4,10 +4,6 @@ usr/share/jenkins # this is where JENKINS_HOME is stored, so let's leave it as is for now var/lib/jenkins -# Need to create jenkins's own directory to track the pid since the daemon is not run as root -# and doesn't have permission to write the pid to /var/run (which would be the preferred location). -var/run/jenkins - # Store jenkins log file in it's own directory since they can become rather large and in the future # rotating logs can be easily added. var/log/jenkins -- GitLab From 4a599d1de36e79cad296ef740a5c7f06db535b9f Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 25 Sep 2013 22:45:50 -0400 Subject: [PATCH 008/308] debian: Move dirs to jenkins.dirs for consistency --- debian/debian/{dirs => jenkins.dirs} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename debian/debian/{dirs => jenkins.dirs} (100%) diff --git a/debian/debian/dirs b/debian/debian/jenkins.dirs similarity index 100% rename from debian/debian/dirs rename to debian/debian/jenkins.dirs -- GitLab From 90ef35ece2c97535ac3732fc58ccc29cca87d7a5 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 25 Sep 2013 22:53:12 -0400 Subject: [PATCH 009/308] debian: Update package description style --- debian/debian/control | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/debian/debian/control b/debian/debian/control index 3d22ae7099..7bba961c18 100644 --- a/debian/debian/control +++ b/debian/debian/control @@ -11,5 +11,6 @@ Architecture: all Depends: ${shlibs:Depends}, ${misc:Depends}, daemon, adduser, psmisc, default-jre-headless | java-runtime-headless Conflicts: hudson Replaces: hudson -Description: Continuous integration system written in Java - Jenkins is an extensible continuous engine written in Java. +Description: continuous integration system + Jenkins is an application that monitors executions of repeated jobs, + such as building a software project or jobs run by cron. -- GitLab From 02c6393e1e6e5f2ab14d0fd14348373bc649717d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Fri, 27 Sep 2013 22:40:46 +0200 Subject: [PATCH 010/308] [FIXED JENKINS-19801] Abort module build when maven build is aborted --- core/src/main/java/hudson/model/Run.java | 9 +++++ .../main/java/hudson/maven/MavenBuild.java | 24 +++++++++---- .../java/hudson/maven/MavenBuildTest.java | 36 ++++++++++++++++++- 3 files changed, 61 insertions(+), 8 deletions(-) diff --git a/core/src/main/java/hudson/model/Run.java b/core/src/main/java/hudson/model/Run.java index 9651401834..88276271b2 100644 --- a/core/src/main/java/hudson/model/Run.java +++ b/core/src/main/java/hudson/model/Run.java @@ -465,6 +465,15 @@ public abstract class Run ,RunT extends Run { e.printStackTrace(); } + abstract class Terminate extends RunExecution { + @Override public void post(BuildListener listener) {} + @Override public void cleanUp(BuildListener listener) {} + } + + if(isInProgress()) { + // Build was aborted, abort run as well. + MavenBuild.this.execute(new Terminate() { + @Override + public Result run(BuildListener listener) { + return Result.ABORTED; + } + }); + } + if(hasntStartedYet()) { // Mark the build as not_built. This method is used when the aggregated build // failed before it didn't even get to this module // OR if the aggregated build is an incremental one and this // module needn't be build. - MavenBuild.this.execute(new RunExecution() { + MavenBuild.this.execute(new Terminate() { + @Override public Result run(BuildListener listener) { listener.getLogger().println(Messages.MavenBuild_FailedEarlier()); return Result.NOT_BUILT; } - - public void post(BuildListener listener) { - } - - public void cleanUp(BuildListener listener) { - } }); } diff --git a/test/src/test/java/hudson/maven/MavenBuildTest.java b/test/src/test/java/hudson/maven/MavenBuildTest.java index 9dd02c337e..a7765bf431 100755 --- a/test/src/test/java/hudson/maven/MavenBuildTest.java +++ b/test/src/test/java/hudson/maven/MavenBuildTest.java @@ -5,6 +5,7 @@ import hudson.model.BuildListener; import hudson.model.ParametersDefinitionProperty; import hudson.model.Result; import hudson.model.StringParameterDefinition; +import hudson.model.queue.QueueTaskFuture; import hudson.tasks.Maven.MavenInstallation; import hudson.tasks.test.AbstractTestResultAction; import hudson.tasks.test.AggregatedTestResultAction; @@ -190,7 +191,40 @@ public class MavenBuildTest extends HudsonTestCase { "")); buildAndAssertSuccess(m); } - + + @Bug(19801) + public void tetStopBuildAndAllSubmoduleBuilds() throws Exception { + configureDefaultMaven(); + MavenModuleSet project = createMavenProject(); + project.setGoals("clean package"); + project.setScm(new ExtractResourceSCM( + getClass().getResource("/hudson/maven/maven-multimod.zip") + )); + + MavenModuleSetBuild build = project.scheduleBuild2(0).waitForStart(); + + ensureSubmoduleBuildsStarted(build); + + build.doStop(); + + Thread.sleep(2000); + assertBuildStatus(Result.ABORTED, build); + assertFalse(build.isBuilding()); + for (MavenBuild mb: build.getModuleLastBuilds().values()) { + final String moduleName = mb.getParent().getDisplayName(); + assertFalse("Module " + moduleName + " is still building", mb.isBuilding()); + } + } + + private void ensureSubmoduleBuildsStarted(MavenModuleSetBuild build) throws InterruptedException { + for (;;) { + for (MavenBuild mb: build.getModuleLastBuilds().values()) { + if (Result.SUCCESS.equals(mb.getResult())) return; + } + Thread.sleep(1000); + } + } + private static class TestReporter extends MavenReporter { private static final long serialVersionUID = 1L; -- GitLab From c7a258eb6d92f7e26dd5bff15355c86af46a22d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Fri, 27 Sep 2013 22:52:29 +0200 Subject: [PATCH 011/308] JUnit 4 --- .../java/hudson/maven/MavenBuildTest.java | 102 +++++++++++------- 1 file changed, 61 insertions(+), 41 deletions(-) diff --git a/test/src/test/java/hudson/maven/MavenBuildTest.java b/test/src/test/java/hudson/maven/MavenBuildTest.java index a7765bf431..e357c271c7 100755 --- a/test/src/test/java/hudson/maven/MavenBuildTest.java +++ b/test/src/test/java/hudson/maven/MavenBuildTest.java @@ -1,5 +1,9 @@ package hudson.maven; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertNotNull; + import hudson.Launcher; import hudson.model.BuildListener; import hudson.model.ParametersDefinitionProperty; @@ -14,27 +18,32 @@ import java.io.File; import java.io.IOException; import java.util.Map; +import org.junit.Rule; +import org.junit.Test; import org.jvnet.hudson.test.Bug; import org.jvnet.hudson.test.Email; import org.jvnet.hudson.test.ExtractResourceSCM; -import org.jvnet.hudson.test.HudsonTestCase; +import org.jvnet.hudson.test.JenkinsRule; import org.jvnet.hudson.test.SingleFileSCM; /** * @author Kohsuke Kawaguchi */ -public class MavenBuildTest extends HudsonTestCase { +public class MavenBuildTest { + + @Rule public JenkinsRule j = new JenkinsRule(); /** * NPE in {@code build.getProject().getWorkspace()} for {@link MavenBuild}. */ @Bug(4192) + @Test public void testMavenWorkspaceExists() throws Exception { - configureDefaultMaven(); - MavenModuleSet m = createMavenProject(); + j.configureDefaultMaven(); + MavenModuleSet m = j.createMavenProject(); m.getReporters().add(new TestReporter()); m.setScm(new ExtractResourceSCM(getClass().getResource("HUDSON-4192.zip"))); - buildAndAssertSuccess(m); + j.buildAndAssertSuccess(m); } /** @@ -42,88 +51,95 @@ public class MavenBuildTest extends HudsonTestCase { * does not happen in the final task segment. */ @Bug(4177) + @Test public void testTestFailureInEarlyTaskSegment() throws Exception { - configureDefaultMaven(); - MavenModuleSet m = createMavenProject(); + j.configureDefaultMaven(); + MavenModuleSet m = j.createMavenProject(); m.setGoals("clean install findbugs:findbugs"); m.setScm(new ExtractResourceSCM(getClass().getResource("maven-test-failure-findbugs.zip"))); - assertBuildStatus(Result.UNSTABLE, m.scheduleBuild2(0).get()); + j.assertBuildStatus(Result.UNSTABLE, m.scheduleBuild2(0).get()); } /** * Verify that a compilation error properly shows up as a failure. */ + @Test public void testCompilationFailure() throws Exception { - configureDefaultMaven(); - MavenModuleSet m = createMavenProject(); + j.configureDefaultMaven(); + MavenModuleSet m = j.createMavenProject(); m.setGoals("clean install"); m.setScm(new ExtractResourceSCM(getClass().getResource("maven-compilation-failure.zip"))); - assertBuildStatus(Result.FAILURE, m.scheduleBuild2(0).get()); + j.assertBuildStatus(Result.FAILURE, m.scheduleBuild2(0).get()); } /** * Workspace determination problem on non-aggregator style build. */ @Bug(4226) + @Test public void testParallelModuleBuild() throws Exception { - configureDefaultMaven(); - MavenModuleSet m = createMavenProject(); + j.configureDefaultMaven(); + MavenModuleSet m = j.createMavenProject(); m.setScm(new ExtractResourceSCM(getClass().getResource("multimodule-maven.zip"))); - buildAndAssertSuccess(m); + j.buildAndAssertSuccess(m); m.setAggregatorStyleBuild(false); // run module builds - buildAndAssertSuccess(m.getModule("test$module1")); - buildAndAssertSuccess(m.getModule("test$module1")); + j.buildAndAssertSuccess(m.getModule("test$module1")); + j.buildAndAssertSuccess(m.getModule("test$module1")); } @Bug(value=8395) + @Test public void testMaven2BuildWrongScope() throws Exception { File pom = new File(this.getClass().getResource("test-pom-8395.xml").toURI()); - MavenModuleSet m = createMavenProject(); - MavenInstallation mavenInstallation = configureDefaultMaven(); + MavenModuleSet m = j.createMavenProject(); + MavenInstallation mavenInstallation = j.configureDefaultMaven(); m.setMaven( mavenInstallation.getName() ); m.getReporters().add(new TestReporter()); m.setRootPOM(pom.getAbsolutePath()); m.setGoals( "clean validate" ); - MavenModuleSetBuild mmsb = buildAndAssertSuccess(m); + MavenModuleSetBuild mmsb = j.buildAndAssertSuccess(m); assertFalse( mmsb.getProject().getModules().isEmpty()); } @Bug(value=8390) + @Test public void testMaven2BuildWrongInheritence() throws Exception { - MavenModuleSet m = createMavenProject(); - MavenInstallation mavenInstallation = configureDefaultMaven(); + MavenModuleSet m = j.createMavenProject(); + MavenInstallation mavenInstallation = j.configureDefaultMaven(); m.setMaven( mavenInstallation.getName() ); m.getReporters().add(new TestReporter()); m.setScm(new ExtractResourceSCM(getClass().getResource("incorrect-inheritence-testcase.zip"))); m.setGoals( "clean validate" ); - MavenModuleSetBuild mmsb = buildAndAssertSuccess(m); + MavenModuleSetBuild mmsb = j.buildAndAssertSuccess(m); assertFalse( mmsb.getProject().getModules().isEmpty()); } @Bug(value=8445) + @Test public void testMaven2SeveralModulesInDirectory() throws Exception { - MavenModuleSet m = createMavenProject(); - MavenInstallation mavenInstallation = configureDefaultMaven(); + MavenModuleSet m = j.createMavenProject(); + MavenInstallation mavenInstallation = j.configureDefaultMaven(); m.setMaven( mavenInstallation.getName() ); m.getReporters().add(new TestReporter()); m.setScm(new ExtractResourceSCM(getClass().getResource("several-modules-in-directory.zip"))); m.setGoals( "clean validate" ); - MavenModuleSetBuild mmsb = buildAndAssertSuccess(m); + MavenModuleSetBuild mmsb = j.buildAndAssertSuccess(m); assertFalse( mmsb.getProject().getModules().isEmpty()); } @Email("https://groups.google.com/d/msg/hudson-users/Xhw00UopVN0/FA9YqDAIsSYJ") + @Test public void testMavenWithDependencyVersionInEnvVar() throws Exception { - MavenModuleSet m = createMavenProject(); - MavenInstallation mavenInstallation = configureDefaultMaven(); + MavenModuleSet m = j.createMavenProject(); + MavenInstallation mavenInstallation = j.configureDefaultMaven(); ParametersDefinitionProperty parametersDefinitionProperty = new ParametersDefinitionProperty(new StringParameterDefinition( "JUNITVERSION", "3.8.2" )); @@ -132,19 +148,20 @@ public class MavenBuildTest extends HudsonTestCase { m.getReporters().add(new TestReporter()); m.setScm(new ExtractResourceSCM(getClass().getResource("envars-maven-project.zip"))); m.setGoals( "clean test-compile" ); - MavenModuleSetBuild mmsb = buildAndAssertSuccess(m); + MavenModuleSetBuild mmsb = j.buildAndAssertSuccess(m); assertFalse( mmsb.getProject().getModules().isEmpty()); } @Bug(8573) + @Test public void testBuildTimeStampProperty() throws Exception { - MavenInstallation mavenInstallation = configureDefaultMaven(); - MavenModuleSet m = createMavenProject(); + MavenInstallation mavenInstallation = j.configureDefaultMaven(); + MavenModuleSet m = j.createMavenProject(); m.setMaven( mavenInstallation.getName() ); m.getReporters().add(new TestReporter()); m.setScm(new ExtractResourceSCM(getClass().getResource("JENKINS-8573.zip"))); m.setGoals( "process-resources" ); - buildAndAssertSuccess(m); + j.buildAndAssertSuccess(m); String content = m.getLastBuild().getWorkspace().child( "target/classes/test.txt" ).readToString(); assertFalse( content.contains( "${maven.build.timestamp}") ); assertFalse( content.contains( "${maven.build.timestamp}") ); @@ -153,18 +170,19 @@ public class MavenBuildTest extends HudsonTestCase { } @Bug(value=15865) + @Test public void testMavenFailsafePluginTestResultsAreRecorded() throws Exception { // GIVEN: a Maven project with maven-failsafe-plugin and Maven 2.2.1 - MavenModuleSet mavenProject = createMavenProject(); - MavenInstallation mavenInstallation = configureDefaultMaven(); + MavenModuleSet mavenProject = j.createMavenProject(); + MavenInstallation mavenInstallation = j.configureDefaultMaven(); mavenProject.setMaven(mavenInstallation.getName()); mavenProject.getReporters().add(new TestReporter()); mavenProject.setScm(new ExtractResourceSCM(getClass().getResource("JENKINS-15865.zip"))); mavenProject.setGoals( "clean install" ); // WHEN project is build - MavenModuleSetBuild mmsb = buildAndAssertSuccess(mavenProject); + MavenModuleSetBuild mmsb = j.buildAndAssertSuccess(mavenProject); // THEN we have a testresult recorded AggregatedTestResultAction aggregatedTestResultAction = mmsb.getAggregatedTestResultAction(); @@ -180,22 +198,24 @@ public class MavenBuildTest extends HudsonTestCase { } @Bug(18178) + @Test public void testExtensionsConflictingWithCore() throws Exception { - MavenModuleSet m = createMavenProject(); - m.setMaven(configureDefaultMaven().getName()); + MavenModuleSet m = j.createMavenProject(); + m.setMaven(j.configureDefaultMaven().getName()); m.setScm(new SingleFileSCM("pom.xml", "4.0.0" + "ga0" + "" + "org.springframework.build.awsorg.springframework.build.aws.maven3.0.0.RELEASE" + "")); - buildAndAssertSuccess(m); + j.buildAndAssertSuccess(m); } @Bug(19801) - public void tetStopBuildAndAllSubmoduleBuilds() throws Exception { - configureDefaultMaven(); - MavenModuleSet project = createMavenProject(); + @Test + public void stopBuildAndAllSubmoduleBuilds() throws Exception { + j.configureDefaultMaven(); + MavenModuleSet project = j.createMavenProject(); project.setGoals("clean package"); project.setScm(new ExtractResourceSCM( getClass().getResource("/hudson/maven/maven-multimod.zip") @@ -208,7 +228,7 @@ public class MavenBuildTest extends HudsonTestCase { build.doStop(); Thread.sleep(2000); - assertBuildStatus(Result.ABORTED, build); + j.assertBuildStatus(Result.ABORTED, build); assertFalse(build.isBuilding()); for (MavenBuild mb: build.getModuleLastBuilds().values()) { final String moduleName = mb.getParent().getDisplayName(); -- GitLab From e9e5a3af349296b8f92e2edb32e16426afbb2227 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Tue, 1 Oct 2013 17:15:39 +0200 Subject: [PATCH 012/308] [JENKINS-19801] Include POST_PRODUCTION state into Run.isInProgress() --- core/src/main/java/hudson/model/Run.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/hudson/model/Run.java b/core/src/main/java/hudson/model/Run.java index 88276271b2..d2fc6709d2 100644 --- a/core/src/main/java/hudson/model/Run.java +++ b/core/src/main/java/hudson/model/Run.java @@ -471,7 +471,7 @@ public abstract class Run ,RunT extends Run Date: Wed, 2 Oct 2013 10:48:01 +0200 Subject: [PATCH 013/308] [JENKINS-19884] Unify test failure presentation - SurefireAggregatedReport lists all aggregated failures now (its maven counterpart MatrixTestResult does it already) - Failure summary is available wherever applicable --- .../tasks/test/MatrixTestResult/index.jelly | 39 +---------- .../tasks/test/MetaTabulatedResult/body.jelly | 38 +--------- .../lib/hudson/aggregated-failed-tests.jelly | 64 +++++++++++++++++ .../resources/lib/hudson/failed-test.jelly | 70 +++++++++++++++++++ 4 files changed, 136 insertions(+), 75 deletions(-) create mode 100644 core/src/main/resources/lib/hudson/aggregated-failed-tests.jelly create mode 100644 core/src/main/resources/lib/hudson/failed-test.jelly diff --git a/core/src/main/resources/hudson/tasks/test/MatrixTestResult/index.jelly b/core/src/main/resources/hudson/tasks/test/MatrixTestResult/index.jelly index 3444efe3ea..b8d09ee2d3 100644 --- a/core/src/main/resources/hudson/tasks/test/MatrixTestResult/index.jelly +++ b/core/src/main/resources/hudson/tasks/test/MatrixTestResult/index.jelly @@ -66,44 +66,7 @@ THE SOFTWARE. -
-

Failed Tests

- - - - -

- - ${report.child.project.name} -

- - - - - - - - - - - - - - -
Test NameDurationAge
- - - - - - - - ${f.duration} - - ${f.age} -
-
-
+ diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body.jelly b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body.jelly index 22fcb47390..62f86e106b 100644 --- a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body.jelly +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body.jelly @@ -25,28 +25,6 @@ THE SOFTWARE. - - -

${%All Failed Tests}

@@ -57,21 +35,7 @@ THE SOFTWARE. - - + diff --git a/core/src/main/resources/lib/hudson/aggregated-failed-tests.jelly b/core/src/main/resources/lib/hudson/aggregated-failed-tests.jelly new file mode 100644 index 0000000000..53573ed40f --- /dev/null +++ b/core/src/main/resources/lib/hudson/aggregated-failed-tests.jelly @@ -0,0 +1,64 @@ + + + + + + Display links to failed test from all child reports. + @since TODO + + Aggregated action. + + + + +
+

Failed Tests

+ + + + +

+ + ${report.child.project.name} +

+ +
- >>> - - - - - - - - ${f.durationString}
+ + + + + + + + + + + + +
Test NameDurationAge
${f.duration}${f.age}
+
+ + +
diff --git a/core/src/main/resources/lib/hudson/failed-test.jelly b/core/src/main/resources/lib/hudson/failed-test.jelly new file mode 100644 index 0000000000..889ed5b3bb --- /dev/null +++ b/core/src/main/resources/lib/hudson/failed-test.jelly @@ -0,0 +1,70 @@ + + + + + + Display link to the failed test. + @since TODO + + Path to the failed test. + + + Failed test object + + + + + + + + + >>> + + + + + + + + -- GitLab From 968acad7013d6bf8019c3913a87cdfd8d5cd5fc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Wed, 2 Oct 2013 13:07:32 +0200 Subject: [PATCH 014/308] [JENKINS-19884] Use +/- icon instead of >>> and <<< to show and hide test failure summary --- core/src/main/resources/lib/hudson/failed-test.jelly | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/resources/lib/hudson/failed-test.jelly b/core/src/main/resources/lib/hudson/failed-test.jelly index 889ed5b3bb..2e71d4f05e 100644 --- a/core/src/main/resources/lib/hudson/failed-test.jelly +++ b/core/src/main/resources/lib/hudson/failed-test.jelly @@ -59,8 +59,8 @@ THE SOFTWARE. - >>> - + + -- GitLab From 0460a04f1cafe580d7fd8dff79b28d1cd440346a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Wed, 2 Oct 2013 13:40:09 +0200 Subject: [PATCH 015/308] [FIXED JENKINS-19884] Visualize more information in test failure summary Now lists error details, stack trace, stderr and stdout provided its content is not empty. --- .../tasks/junit/CaseResult/summary.jelly | 47 +++++++++++----- .../resources/lib/hudson/failed-test.jelly | 53 +++++++++++++++---- 2 files changed, 75 insertions(+), 25 deletions(-) diff --git a/core/src/main/resources/hudson/tasks/junit/CaseResult/summary.jelly b/core/src/main/resources/hudson/tasks/junit/CaseResult/summary.jelly index 6ec077da39..32bd19575e 100644 --- a/core/src/main/resources/hudson/tasks/junit/CaseResult/summary.jelly +++ b/core/src/main/resources/hudson/tasks/junit/CaseResult/summary.jelly @@ -24,19 +24,38 @@ THE SOFTWARE. - + + + + + + + + + +

+ + ${title} + + + ${title} + +

+
+          
+        
+
+
+
- - -

${%Error Details}

-
-
- - -

${%Stack Trace}

-
-
-
-
+ + + ${h.initPageVariables(context)} + + + + + + +
diff --git a/core/src/main/resources/lib/hudson/failed-test.jelly b/core/src/main/resources/lib/hudson/failed-test.jelly index 2e71d4f05e..f043da103c 100644 --- a/core/src/main/resources/lib/hudson/failed-test.jelly +++ b/core/src/main/resources/lib/hudson/failed-test.jelly @@ -37,34 +37,65 @@ THE SOFTWARE. + - - - - + + + + + + - +
-- GitLab From 90cef895eecbf2355a546fd23a7f36b742d8356d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Wed, 9 Oct 2013 14:30:41 +0200 Subject: [PATCH 016/308] Improve label node list appearance --- .../main/resources/hudson/model/Label/index.jelly | 14 ++++++++------ .../hudson/model/Label/index_da.properties | 2 +- .../hudson/model/Label/index_de.properties | 2 +- .../hudson/model/Label/index_es.properties | 2 +- .../hudson/model/Label/index_fr.properties | 2 +- .../hudson/model/Label/index_ja.properties | 4 ++-- .../hudson/model/Label/index_pt_BR.properties | 2 +- .../hudson/model/Label/index_zh_TW.properties | 2 +- 8 files changed, 16 insertions(+), 14 deletions(-) diff --git a/core/src/main/resources/hudson/model/Label/index.jelly b/core/src/main/resources/hudson/model/Label/index.jelly index 924522c75a..2c5e2dae35 100644 --- a/core/src/main/resources/hudson/model/Label/index.jelly +++ b/core/src/main/resources/hudson/model/Label/index.jelly @@ -33,13 +33,15 @@ THE SOFTWARE.
- ${%Nodes:} +

${%Nodes}

- - - ${c.displayName} - + + + + + ${c.displayName} +
@@ -58,4 +60,4 @@ THE SOFTWARE. - \ No newline at end of file + diff --git a/core/src/main/resources/hudson/model/Label/index_da.properties b/core/src/main/resources/hudson/model/Label/index_da.properties index de787a618c..1ea22a5428 100644 --- a/core/src/main/resources/hudson/model/Label/index_da.properties +++ b/core/src/main/resources/hudson/model/Label/index_da.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Nodes\:=Noder\: +Nodes=Noder None=Ingen Projects=Projekter diff --git a/core/src/main/resources/hudson/model/Label/index_de.properties b/core/src/main/resources/hudson/model/Label/index_de.properties index dc65b01cc5..730472f46d 100644 --- a/core/src/main/resources/hudson/model/Label/index_de.properties +++ b/core/src/main/resources/hudson/model/Label/index_de.properties @@ -1,3 +1,3 @@ -Nodes\:=Knoten: +Nodes=Knoten Projects=Projekte None=Keine diff --git a/core/src/main/resources/hudson/model/Label/index_es.properties b/core/src/main/resources/hudson/model/Label/index_es.properties index 1791cb31dd..dd0b7a74b8 100644 --- a/core/src/main/resources/hudson/model/Label/index_es.properties +++ b/core/src/main/resources/hudson/model/Label/index_es.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Nodes\:=Nodos +Nodes=Nodos Projects=Proyectos None=Ninguno diff --git a/core/src/main/resources/hudson/model/Label/index_fr.properties b/core/src/main/resources/hudson/model/Label/index_fr.properties index fdd83eeaa9..93ff406041 100644 --- a/core/src/main/resources/hudson/model/Label/index_fr.properties +++ b/core/src/main/resources/hudson/model/Label/index_fr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Nodes\:=Noeuds: +Nodes=Noeuds Projects=Projets None=Aucun diff --git a/core/src/main/resources/hudson/model/Label/index_ja.properties b/core/src/main/resources/hudson/model/Label/index_ja.properties index e51b4fc13b..31817e4fb3 100644 --- a/core/src/main/resources/hudson/model/Label/index_ja.properties +++ b/core/src/main/resources/hudson/model/Label/index_ja.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Nodes\:=\u30CE\u30FC\u30C9: +Nodes=\u30CE\u30FC\u30C9 Projects=\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8 -None=\u306A\u3057 \ No newline at end of file +None=\u306A\u3057 diff --git a/core/src/main/resources/hudson/model/Label/index_pt_BR.properties b/core/src/main/resources/hudson/model/Label/index_pt_BR.properties index fa9b65f1f5..efb05625ae 100644 --- a/core/src/main/resources/hudson/model/Label/index_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Label/index_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Nodes\:=N\u00f3s +Nodes=N\u00f3s None=N\u00f3 Projects=Projetos diff --git a/core/src/main/resources/hudson/model/Label/index_zh_TW.properties b/core/src/main/resources/hudson/model/Label/index_zh_TW.properties index e7027e2680..faef7b80fe 100644 --- a/core/src/main/resources/hudson/model/Label/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Label/index_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Nodes\:=\u7bc0\u9ede: +Nodes=\u7bc0\u9ede Projects=\u5c08\u6848 None=\u7121 -- GitLab From 6130665e30e952468098283e523d3f6b0f9c3d5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Sat, 12 Oct 2013 18:58:57 +0200 Subject: [PATCH 017/308] [JENKINS-20023] Add support for java -jar jenkins-cli.jar help --- .../src/main/java/hudson/cli/HelpCommand.java | 36 ++++++++++++++++++- .../resources/hudson/cli/Messages.properties | 2 +- 2 files changed, 36 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/hudson/cli/HelpCommand.java b/core/src/main/java/hudson/cli/HelpCommand.java index d49dd2bccb..da461ca265 100644 --- a/core/src/main/java/hudson/cli/HelpCommand.java +++ b/core/src/main/java/hudson/cli/HelpCommand.java @@ -29,6 +29,9 @@ import jenkins.model.Jenkins; import java.util.Map; import java.util.TreeMap; +import org.kohsuke.args4j.Argument; +import org.kohsuke.args4j.CmdLineParser; + /** * Show the list of all commands. * @@ -36,18 +39,32 @@ import java.util.TreeMap; */ @Extension public class HelpCommand extends CLICommand { + + @Argument(metaVar="COMMAND", usage="Name of the command") + public String command; + @Override public String getShortDescription() { return Messages.HelpCommand_ShortDescription(); } + @Override protected int run() { if (!Jenkins.getInstance().hasPermission(Jenkins.READ)) { stderr.println("You must authenticate to access this Jenkins.\n" + "Use --username/--password/--password-file parameters or login command."); - return 0; + return -1; } + if (command != null) + return showCommandDetails(); + + showAllCommands(); + + return 0; + } + + private int showAllCommands() { Map commands = new TreeMap(); for (CLICommand c : CLICommand.all()) commands.put(c.getName(),c); @@ -56,6 +73,23 @@ public class HelpCommand extends CLICommand { stderr.println(" "+c.getName()); stderr.println(" "+c.getShortDescription()); } + + return 0; + } + + private int showCommandDetails() { + CLICommand command = null; + for (CLICommand c : CLICommand.all()) + if (c.getName().equalsIgnoreCase(this.command)) + command = c; + + if (command == null) { + stderr.format("No such command %s. Awailable commands are: ", this.command); + showAllCommands(); + return -1; + } + + command.printUsage(stderr, new CmdLineParser(command)); return 0; } diff --git a/core/src/main/resources/hudson/cli/Messages.properties b/core/src/main/resources/hudson/cli/Messages.properties index b9a2405a79..427399eaa0 100644 --- a/core/src/main/resources/hudson/cli/Messages.properties +++ b/core/src/main/resources/hudson/cli/Messages.properties @@ -21,7 +21,7 @@ GroovyCommand.ShortDescription=\ GroovyshCommand.ShortDescription=\ Runs an interactive groovy shell. HelpCommand.ShortDescription=\ - Lists all the available commands. + Lists all the available commands or a detailed description of single command. InstallPluginCommand.ShortDescription=\ Installs a plugin either from a file, an URL, or from update center. InstallToolCommand.ShortDescription=\ -- GitLab From 99ccd7f7228ae2f846642f23f81ceb1725f61af6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Sun, 13 Oct 2013 21:27:14 +0200 Subject: [PATCH 018/308] [JENKINS-20023] Display detailed CLI command info via Jenkins UI --- core/src/main/java/hudson/cli/CLIAction.java | 121 ++++++++++++++++++ core/src/main/java/hudson/cli/CLICommand.java | 43 ++++++- .../main/java/hudson/cli/GroovyCommand.java | 2 +- .../src/main/java/hudson/cli/HelpCommand.java | 6 +- .../hudson/cli/SetBuildParameterCommand.java | 4 +- core/src/main/java/jenkins/model/Jenkins.java | 38 ------ .../hudson/cli/CLIAction/command.jelly | 43 +++++++ .../hudson/cli/CLIAction/example.jelly | 39 ++++++ .../cli/CLIAction/index.jelly} | 23 ++-- .../cli/CLIAction/index.properties} | 0 .../cli/CLIAction/index_cs.properties} | 0 .../cli/CLIAction/index_da.properties} | 0 .../cli/CLIAction/index_de.properties} | 0 .../cli/CLIAction/index_es.properties} | 0 .../cli/CLIAction/index_fr.properties} | 0 .../cli/CLIAction/index_it.properties} | 0 .../cli/CLIAction/index_ja.properties} | 0 .../cli/CLIAction/index_lv.properties} | 0 .../cli/CLIAction/index_nl.properties} | 0 .../cli/CLIAction/index_pt_BR.properties} | 0 .../cli/CLIAction/index_ru.properties} | 0 .../cli/CLIAction/index_zh_CN.properties} | 0 .../cli/CLIAction/index_zh_TW.properties} | 0 23 files changed, 262 insertions(+), 57 deletions(-) create mode 100644 core/src/main/java/hudson/cli/CLIAction.java create mode 100644 core/src/main/resources/hudson/cli/CLIAction/command.jelly create mode 100644 core/src/main/resources/hudson/cli/CLIAction/example.jelly rename core/src/main/resources/{jenkins/model/Jenkins/_cli.jelly => hudson/cli/CLIAction/index.jelly} (74%) rename core/src/main/resources/{jenkins/model/Jenkins/_cli.properties => hudson/cli/CLIAction/index.properties} (100%) rename core/src/main/resources/{jenkins/model/Jenkins/_cli_cs.properties => hudson/cli/CLIAction/index_cs.properties} (100%) rename core/src/main/resources/{jenkins/model/Jenkins/_cli_da.properties => hudson/cli/CLIAction/index_da.properties} (100%) rename core/src/main/resources/{jenkins/model/Jenkins/_cli_de.properties => hudson/cli/CLIAction/index_de.properties} (100%) rename core/src/main/resources/{jenkins/model/Jenkins/_cli_es.properties => hudson/cli/CLIAction/index_es.properties} (100%) rename core/src/main/resources/{jenkins/model/Jenkins/_cli_fr.properties => hudson/cli/CLIAction/index_fr.properties} (100%) rename core/src/main/resources/{jenkins/model/Jenkins/_cli_it.properties => hudson/cli/CLIAction/index_it.properties} (100%) rename core/src/main/resources/{jenkins/model/Jenkins/_cli_ja.properties => hudson/cli/CLIAction/index_ja.properties} (100%) rename core/src/main/resources/{jenkins/model/Jenkins/_cli_lv.properties => hudson/cli/CLIAction/index_lv.properties} (100%) rename core/src/main/resources/{jenkins/model/Jenkins/_cli_nl.properties => hudson/cli/CLIAction/index_nl.properties} (100%) rename core/src/main/resources/{jenkins/model/Jenkins/_cli_pt_BR.properties => hudson/cli/CLIAction/index_pt_BR.properties} (100%) rename core/src/main/resources/{jenkins/model/Jenkins/_cli_ru.properties => hudson/cli/CLIAction/index_ru.properties} (100%) rename core/src/main/resources/{jenkins/model/Jenkins/_cli_zh_CN.properties => hudson/cli/CLIAction/index_zh_CN.properties} (100%) rename core/src/main/resources/{jenkins/model/Jenkins/_cli_zh_TW.properties => hudson/cli/CLIAction/index_zh_TW.properties} (100%) diff --git a/core/src/main/java/hudson/cli/CLIAction.java b/core/src/main/java/hudson/cli/CLIAction.java new file mode 100644 index 0000000000..079850c532 --- /dev/null +++ b/core/src/main/java/hudson/cli/CLIAction.java @@ -0,0 +1,121 @@ +/* + * The MIT License + * + * Copyright (c) 2013 Red Hat, 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.IOException; +import java.util.HashMap; +import java.util.Map; +import java.util.UUID; + +import javax.servlet.ServletException; +import javax.servlet.http.HttpServletResponse; + +import jenkins.model.Jenkins; + +import org.kohsuke.stapler.StaplerRequest; +import org.kohsuke.stapler.StaplerResponse; + +import hudson.Extension; +import hudson.model.FullDuplexHttpChannel; +import hudson.model.RootAction; +import hudson.remoting.Channel; + +/** + * @author ogondza + * @since TODO + */ +@Extension +public class CLIAction implements RootAction { + + private transient final Map duplexChannels = new HashMap(); + + public String getIconFileName() { + return null; + } + + public String getDisplayName() { + + return "Jenkins CLI"; + } + + public String getUrlName() { + + return "/cli"; + } + + public void doCommand(StaplerRequest req, StaplerResponse rsp) throws ServletException, IOException { + final Jenkins jenkins = Jenkins.getInstance(); + jenkins.checkPermission(Jenkins.READ); + + // Strip trailing slash + final String commandName = req.getRestOfPath().substring(1); + CLICommand command = CLICommand.clone(commandName); + if (command == null) { + rsp.sendError(HttpServletResponse.SC_NOT_FOUND, "No such command " + commandName); + return; + } + + req.setAttribute("command", command); + req.getView(this, "command.jelly").forward(req, rsp); + } + + /** + * Handles HTTP requests for duplex channels for CLI. + */ + public void doIndex(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException, InterruptedException { + final Jenkins jenkins = Jenkins.getInstance(); + if (!"POST".equals(req.getMethod())) { + // for GET request, serve _cli.jelly, assuming this is a browser + jenkins.checkPermission(Jenkins.READ); + req.setAttribute("command", CLICommand.clone("help")); + req.getView(this,"index.jelly").forward(req,rsp); + return; + } + + // do not require any permission to establish a CLI connection + // the actual authentication for the connecting Channel is done by CLICommand + + UUID uuid = UUID.fromString(req.getHeader("Session")); + rsp.setHeader("Hudson-Duplex",""); // set the header so that the client would know + + FullDuplexHttpChannel server; + if(req.getHeader("Side").equals("download")) { + duplexChannels.put(uuid,server=new FullDuplexHttpChannel(uuid, !jenkins.hasPermission(Jenkins.ADMINISTER)) { + @Override + protected void main(Channel channel) throws IOException, InterruptedException { + // capture the identity given by the transport, since this can be useful for SecurityRealm.createCliAuthenticator() + channel.setProperty(CLICommand.TRANSPORT_AUTHENTICATION, Jenkins.getAuthentication()); + channel.setProperty(CliEntryPoint.class.getName(),new CliManagerImpl(channel)); + } + }); + try { + server.download(req,rsp); + } finally { + duplexChannels.remove(uuid); + } + } else { + duplexChannels.get(uuid).upload(req,rsp); + } + } +} diff --git a/core/src/main/java/hudson/cli/CLICommand.java b/core/src/main/java/hudson/cli/CLICommand.java index c5a672ff40..1411c73821 100644 --- a/core/src/main/java/hudson/cli/CLICommand.java +++ b/core/src/main/java/hudson/cli/CLICommand.java @@ -46,12 +46,15 @@ import org.apache.commons.discovery.resource.classes.DiscoverClasses; import org.apache.commons.discovery.resource.names.DiscoverServiceNames; import org.jvnet.hudson.annotation_indexer.Index; import org.jvnet.tiger_types.Types; +import org.kohsuke.accmod.Restricted; +import org.kohsuke.accmod.restrictions.NoExternalUse; import org.kohsuke.args4j.ClassParser; import org.kohsuke.args4j.CmdLineException; import org.kohsuke.args4j.CmdLineParser; import org.kohsuke.args4j.spi.OptionHandler; import java.io.BufferedInputStream; +import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintStream; @@ -329,11 +332,49 @@ public abstract class CLICommand implements ExtensionPoint, Cloneable { protected abstract int run() throws Exception; protected void printUsage(PrintStream stderr, CmdLineParser p) { - stderr.println("java -jar jenkins-cli.jar "+getName()+" args..."); + stderr.print("java -jar jenkins-cli.jar " + getName()); + p.printSingleLineUsage(stderr); + stderr.println(); printUsageSummary(stderr); p.printUsage(stderr); } + /** + * Get single line summary as a string. + * @since TODO + */ + @Restricted(NoExternalUse.class) + public final String getSingleLineSummary() { + ByteArrayOutputStream out = new ByteArrayOutputStream(); + new CmdLineParser(this).printSingleLineUsage(out); + return out.toString(); + } + + /** + * Get usage as a string. + * @since TODO + */ + @Restricted(NoExternalUse.class) + public final String getUsage() { + ByteArrayOutputStream out = new ByteArrayOutputStream(); + new CmdLineParser(this).printUsage(out); + return out.toString(); + } + + /** + * Get long description as a string. + * @since TODO + */ + @Restricted(NoExternalUse.class) + public final String getLongDescription() { + ByteArrayOutputStream out = new ByteArrayOutputStream(); + PrintStream ps = new PrintStream(out); + + printUsageSummary(ps); + ps.close(); + return out.toString(); + } + /** * Called while producing usage. This is a good method to override * to render the general description of the command that goes beyond diff --git a/core/src/main/java/hudson/cli/GroovyCommand.java b/core/src/main/java/hudson/cli/GroovyCommand.java index 7035bfdaf9..7866e2f722 100644 --- a/core/src/main/java/hudson/cli/GroovyCommand.java +++ b/core/src/main/java/hudson/cli/GroovyCommand.java @@ -66,7 +66,7 @@ public class GroovyCommand extends CLICommand { /** * Remaining arguments. */ - @Argument(index=1) + @Argument(metaVar="ARGUMENTS", index=1, usage="Command line arguments to pass into script.") public List remaining = new ArrayList(); protected int run() throws Exception { diff --git a/core/src/main/java/hudson/cli/HelpCommand.java b/core/src/main/java/hudson/cli/HelpCommand.java index da461ca265..d62ae8b6ff 100644 --- a/core/src/main/java/hudson/cli/HelpCommand.java +++ b/core/src/main/java/hudson/cli/HelpCommand.java @@ -78,11 +78,7 @@ public class HelpCommand extends CLICommand { } private int showCommandDetails() { - CLICommand command = null; - for (CLICommand c : CLICommand.all()) - if (c.getName().equalsIgnoreCase(this.command)) - command = c; - + CLICommand command = CLICommand.clone(this.command); if (command == null) { stderr.format("No such command %s. Awailable commands are: ", this.command); showAllCommands(); diff --git a/core/src/main/java/hudson/cli/SetBuildParameterCommand.java b/core/src/main/java/hudson/cli/SetBuildParameterCommand.java index 2862e9e8d7..d2c976e5e7 100644 --- a/core/src/main/java/hudson/cli/SetBuildParameterCommand.java +++ b/core/src/main/java/hudson/cli/SetBuildParameterCommand.java @@ -18,10 +18,10 @@ import java.util.Collections; */ @Extension public class SetBuildParameterCommand extends CommandDuringBuild { - @Argument(index=0, required=true, usage="Name of the build variable") + @Argument(index=0, metaVar="NAME", required=true, usage="Name of the build variable") public String name; - @Argument(index=1,required=true, usage="Value of the build variable") + @Argument(index=1, metaVar="VALUE", required=true, usage="Value of the build variable") public String value; @Override diff --git a/core/src/main/java/jenkins/model/Jenkins.java b/core/src/main/java/jenkins/model/Jenkins.java index a54364e984..0a2613fbc8 100755 --- a/core/src/main/java/jenkins/model/Jenkins.java +++ b/core/src/main/java/jenkins/model/Jenkins.java @@ -3181,44 +3181,6 @@ public class Jenkins extends AbstractCIBase implements ModifiableTopLevelItemGro args.add(new byte[1024*1024]); } - private transient final Map duplexChannels = new HashMap(); - - /** - * Handles HTTP requests for duplex channels for CLI. - */ - public void doCli(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException, InterruptedException { - if (!"POST".equals(req.getMethod())) { - // for GET request, serve _cli.jelly, assuming this is a browser - checkPermission(READ); - req.getView(this,"_cli.jelly").forward(req,rsp); - return; - } - - // do not require any permission to establish a CLI connection - // the actual authentication for the connecting Channel is done by CLICommand - - UUID uuid = UUID.fromString(req.getHeader("Session")); - rsp.setHeader("Hudson-Duplex",""); // set the header so that the client would know - - FullDuplexHttpChannel server; - if(req.getHeader("Side").equals("download")) { - duplexChannels.put(uuid,server=new FullDuplexHttpChannel(uuid, !hasPermission(ADMINISTER)) { - protected void main(Channel channel) throws IOException, InterruptedException { - // capture the identity given by the transport, since this can be useful for SecurityRealm.createCliAuthenticator() - channel.setProperty(CLICommand.TRANSPORT_AUTHENTICATION,getAuthentication()); - channel.setProperty(CliEntryPoint.class.getName(),new CliManagerImpl(channel)); - } - }); - try { - server.download(req,rsp); - } finally { - duplexChannels.remove(uuid); - } - } else { - duplexChannels.get(uuid).upload(req,rsp); - } - } - /** * Binds /userContent/... to $JENKINS_HOME/userContent. */ diff --git a/core/src/main/resources/hudson/cli/CLIAction/command.jelly b/core/src/main/resources/hudson/cli/CLIAction/command.jelly new file mode 100644 index 0000000000..c52cf2eb22 --- /dev/null +++ b/core/src/main/resources/hudson/cli/CLIAction/command.jelly @@ -0,0 +1,43 @@ + + + + + + + +

+ + Command ${command.name} +

+ + +

${command.longDescription}

+ + +
${command.usage}
+
+
+
+
diff --git a/core/src/main/resources/hudson/cli/CLIAction/example.jelly b/core/src/main/resources/hudson/cli/CLIAction/example.jelly new file mode 100644 index 0000000000..e5e9a49f9c --- /dev/null +++ b/core/src/main/resources/hudson/cli/CLIAction/example.jelly @@ -0,0 +1,39 @@ + + + + + + + +
java -jar jenkins-cli.jar -s ${h.inferHudsonURL(request)} ${commandArgs}
+
+ diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli.jelly b/core/src/main/resources/hudson/cli/CLIAction/index.jelly similarity index 74% rename from core/src/main/resources/jenkins/model/Jenkins/_cli.jelly rename to core/src/main/resources/hudson/cli/CLIAction/index.jelly index b5dd24f4e2..f9d40ee46c 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_cli.jelly +++ b/core/src/main/resources/hudson/cli/CLIAction/index.jelly @@ -25,7 +25,7 @@ THE SOFTWARE. - +

@@ -34,15 +34,18 @@ THE SOFTWARE.

${%blurb(rootURL)}

-
java -jar jenkins-cli.jar -s ${h.inferHudsonURL(request)} help
-

${%Available Commands}

-
    - -
  • ${command.getName()}: ${command.getShortDescription()}
  • -
    -
+ + + +

${%Available Commands}

+ + + + + + + +
${command.name}${command.shortDescription}
diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli.properties b/core/src/main/resources/hudson/cli/CLIAction/index.properties similarity index 100% rename from core/src/main/resources/jenkins/model/Jenkins/_cli.properties rename to core/src/main/resources/hudson/cli/CLIAction/index.properties diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_cs.properties b/core/src/main/resources/hudson/cli/CLIAction/index_cs.properties similarity index 100% rename from core/src/main/resources/jenkins/model/Jenkins/_cli_cs.properties rename to core/src/main/resources/hudson/cli/CLIAction/index_cs.properties diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_da.properties b/core/src/main/resources/hudson/cli/CLIAction/index_da.properties similarity index 100% rename from core/src/main/resources/jenkins/model/Jenkins/_cli_da.properties rename to core/src/main/resources/hudson/cli/CLIAction/index_da.properties diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_de.properties b/core/src/main/resources/hudson/cli/CLIAction/index_de.properties similarity index 100% rename from core/src/main/resources/jenkins/model/Jenkins/_cli_de.properties rename to core/src/main/resources/hudson/cli/CLIAction/index_de.properties diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_es.properties b/core/src/main/resources/hudson/cli/CLIAction/index_es.properties similarity index 100% rename from core/src/main/resources/jenkins/model/Jenkins/_cli_es.properties rename to core/src/main/resources/hudson/cli/CLIAction/index_es.properties diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_fr.properties b/core/src/main/resources/hudson/cli/CLIAction/index_fr.properties similarity index 100% rename from core/src/main/resources/jenkins/model/Jenkins/_cli_fr.properties rename to core/src/main/resources/hudson/cli/CLIAction/index_fr.properties diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_it.properties b/core/src/main/resources/hudson/cli/CLIAction/index_it.properties similarity index 100% rename from core/src/main/resources/jenkins/model/Jenkins/_cli_it.properties rename to core/src/main/resources/hudson/cli/CLIAction/index_it.properties diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_ja.properties b/core/src/main/resources/hudson/cli/CLIAction/index_ja.properties similarity index 100% rename from core/src/main/resources/jenkins/model/Jenkins/_cli_ja.properties rename to core/src/main/resources/hudson/cli/CLIAction/index_ja.properties diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_lv.properties b/core/src/main/resources/hudson/cli/CLIAction/index_lv.properties similarity index 100% rename from core/src/main/resources/jenkins/model/Jenkins/_cli_lv.properties rename to core/src/main/resources/hudson/cli/CLIAction/index_lv.properties diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_nl.properties b/core/src/main/resources/hudson/cli/CLIAction/index_nl.properties similarity index 100% rename from core/src/main/resources/jenkins/model/Jenkins/_cli_nl.properties rename to core/src/main/resources/hudson/cli/CLIAction/index_nl.properties diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_pt_BR.properties b/core/src/main/resources/hudson/cli/CLIAction/index_pt_BR.properties similarity index 100% rename from core/src/main/resources/jenkins/model/Jenkins/_cli_pt_BR.properties rename to core/src/main/resources/hudson/cli/CLIAction/index_pt_BR.properties diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_ru.properties b/core/src/main/resources/hudson/cli/CLIAction/index_ru.properties similarity index 100% rename from core/src/main/resources/jenkins/model/Jenkins/_cli_ru.properties rename to core/src/main/resources/hudson/cli/CLIAction/index_ru.properties diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_zh_CN.properties b/core/src/main/resources/hudson/cli/CLIAction/index_zh_CN.properties similarity index 100% rename from core/src/main/resources/jenkins/model/Jenkins/_cli_zh_CN.properties rename to core/src/main/resources/hudson/cli/CLIAction/index_zh_CN.properties diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_zh_TW.properties b/core/src/main/resources/hudson/cli/CLIAction/index_zh_TW.properties similarity index 100% rename from core/src/main/resources/jenkins/model/Jenkins/_cli_zh_TW.properties rename to core/src/main/resources/hudson/cli/CLIAction/index_zh_TW.properties -- GitLab From 5f712b3c5f2937f9b430ef2a469ef79c129b7384 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Mon, 14 Oct 2013 14:03:49 +0200 Subject: [PATCH 019/308] [JENKINS-20023] Generate usage for CLI commands registered via CLIMethod annotation --- core/src/main/java/hudson/cli/CLICommand.java | 16 +- .../src/main/java/hudson/cli/HelpCommand.java | 3 +- .../hudson/cli/declarative/CLIRegisterer.java | 67 +++++--- .../test/java/hudson/cli/HelpCommandTest.java | 145 ++++++++++++++++++ 4 files changed, 201 insertions(+), 30 deletions(-) create mode 100644 test/src/test/java/hudson/cli/HelpCommandTest.java diff --git a/core/src/main/java/hudson/cli/CLICommand.java b/core/src/main/java/hudson/cli/CLICommand.java index 1411c73821..09a0a2b0be 100644 --- a/core/src/main/java/hudson/cli/CLICommand.java +++ b/core/src/main/java/hudson/cli/CLICommand.java @@ -211,7 +211,7 @@ public abstract class CLICommand implements ExtensionPoint, Cloneable { this.stderr = stderr; this.locale = locale; registerOptionHandlers(); - CmdLineParser p = new CmdLineParser(this); + CmdLineParser p = getCmdLineParser(); // add options from the authenticator SecurityContext sc = SecurityContextHolder.getContext(); @@ -245,6 +245,16 @@ public abstract class CLICommand implements ExtensionPoint, Cloneable { sc.setAuthentication(old); // restore } } + + /** + * Get parser for this command. + * + * Exposed to be overridden by {@link CLIRegisterer}. + * @since TODO + */ + protected CmdLineParser getCmdLineParser() { + return new CmdLineParser(this); + } public Channel checkChannel() throws AbortException { if (channel==null) @@ -346,7 +356,7 @@ public abstract class CLICommand implements ExtensionPoint, Cloneable { @Restricted(NoExternalUse.class) public final String getSingleLineSummary() { ByteArrayOutputStream out = new ByteArrayOutputStream(); - new CmdLineParser(this).printSingleLineUsage(out); + getCmdLineParser().printSingleLineUsage(out); return out.toString(); } @@ -357,7 +367,7 @@ public abstract class CLICommand implements ExtensionPoint, Cloneable { @Restricted(NoExternalUse.class) public final String getUsage() { ByteArrayOutputStream out = new ByteArrayOutputStream(); - new CmdLineParser(this).printUsage(out); + getCmdLineParser().printUsage(out); return out.toString(); } diff --git a/core/src/main/java/hudson/cli/HelpCommand.java b/core/src/main/java/hudson/cli/HelpCommand.java index d62ae8b6ff..bebb39dfcd 100644 --- a/core/src/main/java/hudson/cli/HelpCommand.java +++ b/core/src/main/java/hudson/cli/HelpCommand.java @@ -30,7 +30,6 @@ import java.util.Map; import java.util.TreeMap; import org.kohsuke.args4j.Argument; -import org.kohsuke.args4j.CmdLineParser; /** * Show the list of all commands. @@ -85,7 +84,7 @@ public class HelpCommand extends CLICommand { return -1; } - command.printUsage(stderr, new CmdLineParser(command)); + command.printUsage(stderr, command.getCmdLineParser()); return 0; } diff --git a/core/src/main/java/hudson/cli/declarative/CLIRegisterer.java b/core/src/main/java/hudson/cli/declarative/CLIRegisterer.java index 9cc5448616..cb1d1db8f2 100644 --- a/core/src/main/java/hudson/cli/declarative/CLIRegisterer.java +++ b/core/src/main/java/hudson/cli/declarative/CLIRegisterer.java @@ -110,48 +110,65 @@ public class CLIRegisterer extends ExtensionFinder { return name; } + @Override public String getShortDescription() { // format by using the right locale return res.format("CLI."+name+".shortDescription"); } + @Override + protected CmdLineParser getCmdLineParser() { + return bindMethod(new ArrayList()); + } + + private CmdLineParser bindMethod(List binders) { + + registerOptionHandlers(); + CmdLineParser parser = new CmdLineParser(null); + + // build up the call sequence + Stack chains = new Stack(); + Method method = m; + while (true) { + chains.push(method); + if (Modifier.isStatic(method.getModifiers())) + break; // the chain is complete. + + // the method in question is an instance method, so we need to resolve the instance by using another resolver + Class type = method.getDeclaringClass(); + try { + method = findResolver(type); + } catch (IOException ex) { + throw new RuntimeException("Unable to find the resolver method annotated with @CLIResolver for "+type, ex); + } + if (method==null) { + throw new RuntimeException("Unable to find the resolver method annotated with @CLIResolver for "+type); + } + } + + while (!chains.isEmpty()) + binders.add(new MethodBinder(chains.pop(),this,parser)); + + new ClassParser().parse(Jenkins.getInstance().getSecurityRealm().createCliAuthenticator(this), parser); + + return parser; + } + @Override public int main(List args, Locale locale, InputStream stdin, PrintStream stdout, PrintStream stderr) { this.stdout = stdout; this.stderr = stderr; this.locale = locale; - registerOptionHandlers(); - CmdLineParser parser = new CmdLineParser(null); + List binders = new ArrayList(); + + CmdLineParser parser = bindMethod(binders); try { SecurityContext sc = SecurityContextHolder.getContext(); Authentication old = sc.getAuthentication(); try { - // build up the call sequence - Stack chains = new Stack(); - Method method = m; - while (true) { - chains.push(method); - if (Modifier.isStatic(method.getModifiers())) - break; // the chain is complete. - - // the method in question is an instance method, so we need to resolve the instance by using another resolver - Class type = method.getDeclaringClass(); - method = findResolver(type); - if (method==null) { - stderr.println("Unable to find the resolver method annotated with @CLIResolver for "+type); - return 1; - } - } - - List binders = new ArrayList(); - - while (!chains.isEmpty()) - binders.add(new MethodBinder(chains.pop(),this,parser)); - // authentication CliAuthenticator authenticator = Jenkins.getInstance().getSecurityRealm().createCliAuthenticator(this); - new ClassParser().parse(authenticator,parser); // fill up all the binders parser.parseArgument(args); diff --git a/test/src/test/java/hudson/cli/HelpCommandTest.java b/test/src/test/java/hudson/cli/HelpCommandTest.java new file mode 100644 index 0000000000..9f6662f08d --- /dev/null +++ b/test/src/test/java/hudson/cli/HelpCommandTest.java @@ -0,0 +1,145 @@ +/* + * The MIT License + * + * Copyright 2013 Red Hat, 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 static org.junit.Assert.*; +import static org.hamcrest.CoreMatchers.*; +import static org.hamcrest.text.IsEmptyString.isEmptyString; +import static org.hamcrest.text.StringContainsInOrder.stringContainsInOrder; + +import java.io.PrintStream; +import java.util.Arrays; + +import hudson.cli.CLICommandInvoker.Result; +import hudson.model.AbstractProject; + +import org.hamcrest.Matcher; +import org.junit.Rule; +import org.junit.Test; +import org.jvnet.hudson.test.JenkinsRule; +import org.jvnet.hudson.test.JenkinsRule.WebClient; +import org.jvnet.hudson.test.TestExtension; +import org.kohsuke.args4j.Argument; +import org.kohsuke.args4j.Option; + +public class HelpCommandTest { + + @Rule public JenkinsRule j = new JenkinsRule(); + + @Test public void getHelpRunningCommand() { + + CLICommandInvoker command = new CLICommandInvoker(j, new HelpCommand()); + + String generalHelp = command.invoke().stderr(); + + assertContainsOverviewOfClassCommand(generalHelp); + assertContainsOverviewOfMethodCommand(generalHelp); + + Result result = command.invokeWithArgs(ClassCommand.NAME); + assertThat(result.returnCode(), equalTo(0)); + assertThat(result.stdout(), isEmptyString()); + + assertContainsUsageOfClassCommand(result.stderr()); + + result = command.invokeWithArgs("offline-node"); + + assertThat(result.returnCode(), equalTo(0)); + assertThat(result.stdout(), isEmptyString()); + + assertContainsUsageOfMethodCommand(result.stderr()); + } + + @Test public void getHelpUsingJenkinsUI() throws Exception { + + WebClient wc = j.createWebClient(); + String generalHelp = wc.goTo("cli").asText(); + + assertContainsOverviewOfClassCommand(generalHelp); + assertContainsOverviewOfMethodCommand(generalHelp); + + assertContainsUsageOfClassCommand(wc.goTo("cli/command/class-command").asText()); + assertContainsUsageOfMethodCommand(wc.goTo("cli/command/offline-node").asText()); + } + + private void assertContainsOverviewOfClassCommand(String text) { + assertThat(text, containsString(ClassCommand.NAME)); + assertThat(text, containsString(ClassCommand.SHORT_DESCRIPTION)); + } + + private void assertContainsUsageOfClassCommand(String text) { + assertThat(text, containsString("class-command [JOB] [-b BUILD]")); + assertThat(text, containsString(ClassCommand.LONG_DESCRIPTION)); + assertThat(text, containsStrings("JOB", "Job arg")); + assertThat(text, containsStrings("BUILD", "Build opt")); + } + + private void assertContainsOverviewOfMethodCommand(String text) { + assertThat(text, containsString("offline-node")); + } + + private void assertContainsUsageOfMethodCommand(String text) { + assertThat(text, containsString("offline-node NAME [-m VAL]")); + assertThat(text, containsStrings("NAME", "Slave name, or empty string for master")); + assertThat(text, containsStrings("-m VAL", "Record the note about why you are disconnecting this node")); + } + + private static Matcher containsStrings(String... strings) { + return stringContainsInOrder(Arrays.asList(strings)); + } + + @TestExtension + public static class ClassCommand extends CLICommand { + + private static final String SHORT_DESCRIPTION = "Short description of class-command"; + private static final String LONG_DESCRIPTION = "Long description of class-command"; + private static final String NAME = "class-command"; + + @Argument(usage="Job arg") + public AbstractProject job; + + @Option(name="-b", metaVar="BUILD", usage="Build opt") + public String build; + + @Override + public String getName() { + return NAME; + } + + @Override + public String getShortDescription() { + return SHORT_DESCRIPTION; + } + + @Override + protected void printUsageSummary(PrintStream stderr) { + stderr.println(LONG_DESCRIPTION); + } + + @Override + protected int run() throws Exception { + throw new UnsupportedOperationException(); + } + } +} -- GitLab From 29d441331e3e9e0fc22c0ca07d97133f609c6f0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Fri, 11 Oct 2013 11:48:57 +0200 Subject: [PATCH 020/308] [FIXED JENKINS-19996] Support view manipulation via Jenkins CLI --- .../java/hudson/cli/CreateViewCommand.java | 76 ++++++++++ .../java/hudson/cli/DeleteViewCommand.java | 67 +++++++++ .../main/java/hudson/cli/GetViewCommand.java | 55 +++++++ .../java/hudson/cli/UpdateViewCommand.java | 55 +++++++ .../cli/handlers/ViewOptionHandler.java | 68 +++++++++ core/src/main/java/hudson/model/View.java | 30 +++- .../resources/hudson/cli/Messages.properties | 8 ++ .../java/hudson/cli/CLICommandInvoker.java | 82 +++++++++++ .../hudson/cli/CreateViewCommandTest.java | 136 ++++++++++++++++++ .../hudson/cli/DeleteViewCommandTest.java | 111 ++++++++++++++ .../java/hudson/cli/GetViewCommandTest.java | 99 +++++++++++++ .../hudson/cli/UpdateViewCommandTest.java | 103 +++++++++++++ test/src/test/resources/hudson/cli/view.xml | 31 ++++ 13 files changed, 915 insertions(+), 6 deletions(-) create mode 100644 core/src/main/java/hudson/cli/CreateViewCommand.java create mode 100644 core/src/main/java/hudson/cli/DeleteViewCommand.java create mode 100644 core/src/main/java/hudson/cli/GetViewCommand.java create mode 100644 core/src/main/java/hudson/cli/UpdateViewCommand.java create mode 100644 core/src/main/java/hudson/cli/handlers/ViewOptionHandler.java create mode 100644 test/src/test/java/hudson/cli/CreateViewCommandTest.java create mode 100644 test/src/test/java/hudson/cli/DeleteViewCommandTest.java create mode 100644 test/src/test/java/hudson/cli/GetViewCommandTest.java create mode 100644 test/src/test/java/hudson/cli/UpdateViewCommandTest.java create mode 100644 test/src/test/resources/hudson/cli/view.xml diff --git a/core/src/main/java/hudson/cli/CreateViewCommand.java b/core/src/main/java/hudson/cli/CreateViewCommand.java new file mode 100644 index 0000000000..3aeab31c64 --- /dev/null +++ b/core/src/main/java/hudson/cli/CreateViewCommand.java @@ -0,0 +1,76 @@ +/* + * The MIT License + * + * Copyright (c) 2013 Red Hat, 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 org.kohsuke.args4j.Argument; + +import jenkins.model.Jenkins; +import hudson.Extension; +import hudson.model.Failure; +import hudson.model.View; + +/** + * @author ogondza + * @since TODO + */ +@Extension +public class CreateViewCommand extends CLICommand { + + @Argument(usage="Name of the view to use instead of the one in XML") + public String viewName = null; + + @Override + public String getShortDescription() { + + return Messages.CreateViewCommand_ShortDescription(); + } + + @Override + protected int run() throws Exception { + + final Jenkins jenkins = Jenkins.getInstance(); + jenkins.checkPermission(View.CREATE); + + View newView; + try { + + newView = View.createViewFromXML(viewName, stdin); + } catch (Failure ex) { + + stderr.format("Invalid view name: %s\n", ex.getMessage()); + return -1; + } + + final String newName = newView.getViewName(); + if (jenkins.getView(newName) != null) { + + stderr.format("View '%s' already exists\n", newName); + return -1; + } + + jenkins.addView(newView); + + return 0; + } +} diff --git a/core/src/main/java/hudson/cli/DeleteViewCommand.java b/core/src/main/java/hudson/cli/DeleteViewCommand.java new file mode 100644 index 0000000000..1dc5a048f8 --- /dev/null +++ b/core/src/main/java/hudson/cli/DeleteViewCommand.java @@ -0,0 +1,67 @@ +/* + * The MIT License + * + * Copyright (c) 2013 Red Hat, 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.Extension; +import hudson.model.ViewGroup; +import hudson.model.View; + +import org.kohsuke.args4j.Argument; + +/** + * @author ogondza + * @since TODO + */ +@Extension +public class DeleteViewCommand extends CLICommand { + + @Argument(usage="Name of the view to delete", required=true) + private View view; + + @Override + public String getShortDescription() { + + return Messages.DeleteViewCommand_ShortDescription(); + } + + @Override + protected int run() throws Exception { + + view.checkPermission(View.DELETE); + + final ViewGroup group = view.getOwner(); + if (!group.canDelete(view)) { + + stderr.format("%s does not allow to delete '%s' view\n", + group.getDisplayName(), + view.getViewName() + ); + return -1; + } + + group.deleteView(view);; + + return 0; + } +} diff --git a/core/src/main/java/hudson/cli/GetViewCommand.java b/core/src/main/java/hudson/cli/GetViewCommand.java new file mode 100644 index 0000000000..9a8c856127 --- /dev/null +++ b/core/src/main/java/hudson/cli/GetViewCommand.java @@ -0,0 +1,55 @@ +/* + * The MIT License + * + * Copyright (c) 2013 Red Hat, 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.Extension; +import hudson.model.View; + +import org.kohsuke.args4j.Argument; + +/** + * @author ogondza + * @since TODO + */ +@Extension +public class GetViewCommand extends CLICommand { + + @Argument(usage="Name of the view to obtain", required=true) + private View view; + + @Override + public String getShortDescription() { + + return Messages.GetViewCommand_ShortDescription(); + } + + @Override + protected int run() throws Exception { + + view.checkPermission(View.READ); + view.writeXml(stdout); + + return 0; + } +} diff --git a/core/src/main/java/hudson/cli/UpdateViewCommand.java b/core/src/main/java/hudson/cli/UpdateViewCommand.java new file mode 100644 index 0000000000..0749ad1f70 --- /dev/null +++ b/core/src/main/java/hudson/cli/UpdateViewCommand.java @@ -0,0 +1,55 @@ +/* + * The MIT License + * + * Copyright (c) 2013 Red Hat, 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 javax.xml.transform.stream.StreamSource; + +import hudson.Extension; +import hudson.model.View; + +import org.kohsuke.args4j.Argument; + +/** + * @author ogondza + * @since TODO + */ +@Extension +public class UpdateViewCommand extends CLICommand { + + @Argument(usage="Name of the view to update", required=true) + private View view; + + @Override + public String getShortDescription() { + + return Messages.UpdateViewCommand_ShortDescription(); + } + + @Override + protected int run() throws Exception { + + view.updateByXml(new StreamSource(stdin)); + return 0; + } +} diff --git a/core/src/main/java/hudson/cli/handlers/ViewOptionHandler.java b/core/src/main/java/hudson/cli/handlers/ViewOptionHandler.java new file mode 100644 index 0000000000..cad865970c --- /dev/null +++ b/core/src/main/java/hudson/cli/handlers/ViewOptionHandler.java @@ -0,0 +1,68 @@ +/* + * The MIT License + * + * Copyright (c) 2013, Red Hat, 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.handlers; + +import hudson.model.View; +import jenkins.model.Jenkins; + +import org.kohsuke.MetaInfServices; +import org.kohsuke.args4j.CmdLineException; +import org.kohsuke.args4j.CmdLineParser; +import org.kohsuke.args4j.OptionDef; +import org.kohsuke.args4j.spi.OptionHandler; +import org.kohsuke.args4j.spi.Parameters; +import org.kohsuke.args4j.spi.Setter; + +/** + * Refers to {@link View} by its name. + * + * @author ogondza + * @since TODO + */ +@MetaInfServices +public class ViewOptionHandler extends OptionHandler { + + public ViewOptionHandler(CmdLineParser parser, OptionDef option, Setter setter) { + + super(parser, option, setter); + } + + @Override + public int parseArguments(Parameters params) throws CmdLineException { + + String viewName = params.getParameter(0); + + final View view = Jenkins.getInstance().getView(viewName); + if (view == null) throw new CmdLineException(owner, "No such view '" + viewName + "'"); + + setter.addValue(view); + return 1; + } + + @Override + public String getDefaultMetaVariable() { + + return "VIEW"; + } +} diff --git a/core/src/main/java/hudson/model/View.java b/core/src/main/java/hudson/model/View.java index 2944ea9946..e5ea796786 100644 --- a/core/src/main/java/hudson/model/View.java +++ b/core/src/main/java/hudson/model/View.java @@ -83,6 +83,7 @@ import java.io.BufferedInputStream; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; +import java.io.OutputStream; import java.io.StringWriter; import java.util.ArrayList; import java.util.Arrays; @@ -1044,16 +1045,13 @@ public abstract class View extends AbstractModelObject implements AccessControll return new HttpResponse() { public void generateResponse(StaplerRequest req, StaplerResponse rsp, Object node) throws IOException, ServletException { rsp.setContentType("application/xml"); - // pity we don't have a handy way to clone Jenkins.XSTREAM to temp add the omit Field - XStream2 xStream2 = new XStream2(); - xStream2.omitField(View.class, "owner"); - xStream2.toXMLUTF8(View.this, rsp.getOutputStream()); + View.this.writeXml(rsp.getOutputStream()); } }; } if (req.getMethod().equals("POST")) { // submission - updateByXml((Source)new StreamSource(req.getReader())); + updateByXml(new StreamSource(req.getReader())); return HttpResponses.ok(); } @@ -1061,6 +1059,16 @@ public abstract class View extends AbstractModelObject implements AccessControll return HttpResponses.error(SC_BAD_REQUEST, "Unexpected request method " + req.getMethod()); } + /** + * @since TODO + */ + public void writeXml(OutputStream out) throws IOException { + // pity we don't have a handy way to clone Jenkins.XSTREAM to temp add the omit Field + XStream2 xStream2 = new XStream2(); + xStream2.omitField(View.class, "owner"); + xStream2.toXMLUTF8(View.this, out); + } + /** * Updates Job by its XML definition. */ @@ -1083,7 +1091,11 @@ public abstract class View extends AbstractModelObject implements AccessControll // try to reflect the changes by reloading InputStream in = new BufferedInputStream(new ByteArrayInputStream(out.toString().getBytes("UTF-8"))); try { + // Do not allow overwriting view name as it might collide with another + // view in same ViewGroup and might not satisfy Jenkins.checkGoodName. + String oldname = name; Jenkins.XSTREAM.unmarshal(new XppDriver().createReader(in), this); + name = oldname; } catch (StreamException e) { throw new IOException2("Unable to read",e); } catch(ConversionException e) { @@ -1180,11 +1192,17 @@ public abstract class View extends AbstractModelObject implements AccessControll return v; } + /** + * Instantiate View subtype from XML stream. + * + * @param name Alternative name to use or null to keep the one in xml. + */ public static View createViewFromXML(String name, InputStream xml) throws IOException { InputStream in = new BufferedInputStream(xml); try { View v = (View) Jenkins.XSTREAM.fromXML(in); - v.name = name; + if (name != null) v.name = name; + checkGoodName(v.name); return v; } catch(StreamException e) { throw new IOException2("Unable to read",e); diff --git a/core/src/main/resources/hudson/cli/Messages.properties b/core/src/main/resources/hudson/cli/Messages.properties index b9a2405a79..22c685f2cc 100644 --- a/core/src/main/resources/hudson/cli/Messages.properties +++ b/core/src/main/resources/hudson/cli/Messages.properties @@ -14,8 +14,12 @@ CreateJobCommand.ShortDescription=\ Creates a new job by reading stdin as a configuration XML file. CreateNodeCommand.ShortDescription=\ Creates a new node by reading stdin as a XML configuration. +CreateViewCommand.ShortDescription=\ + Creates a new view by reading stdin as a XML configuration. DeleteBuildsCommand.ShortDescription=\ Deletes build record(s). +DeleteViewCommand.ShortDescription=\ + Deletes view. GroovyCommand.ShortDescription=\ Executes the specified Groovy script. GroovyshCommand.ShortDescription=\ @@ -49,6 +53,8 @@ GetJobCommand.ShortDescription=\ Dumps the job definition XML to stdout. GetNodeCommand.ShortDescription=\ Dumps the node definition XML to stdout. +GetViewCommand.ShortDescription=\ + Dumps the view definition XML to stdout. SetBuildDisplayNameCommand.ShortDescription=\ Sets the displayName of a build. WhoAmICommand.ShortDescription=\ @@ -58,6 +64,8 @@ UpdateJobCommand.ShortDescription=\ UpdateNodeCommand.ShortDescription=\ Updates the node definition XML from stdin. The opposite of the get-node command. SessionIdCommand.ShortDescription=Outputs the session ID, which changes every time Jenkins restarts. +UpdateViewCommand.ShortDescription=\ + Updates the view definition XML from stdin. The opposite of the get-view command. BuildCommand.CLICause.ShortDescription=Started by command line by {0} BuildCommand.CLICause.CannotBuildDisabled=\ diff --git a/test/src/main/java/hudson/cli/CLICommandInvoker.java b/test/src/main/java/hudson/cli/CLICommandInvoker.java index 76f96868d8..ba36fcf247 100644 --- a/test/src/main/java/hudson/cli/CLICommandInvoker.java +++ b/test/src/main/java/hudson/cli/CLICommandInvoker.java @@ -24,6 +24,7 @@ package hudson.cli; +import hudson.Extension; import hudson.model.User; import hudson.security.Permission; import hudson.security.GlobalMatrixAuthorizationStrategy; @@ -31,11 +32,16 @@ import hudson.security.GlobalMatrixAuthorizationStrategy; import java.io.ByteArrayOutputStream; import java.io.InputStream; import java.io.PrintStream; +import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.List; import java.util.Locale; +import jenkins.model.Jenkins; + +import org.hamcrest.Description; +import org.hamcrest.TypeSafeMatcher; import org.jvnet.hudson.test.JenkinsRule; /** @@ -56,6 +62,14 @@ public class CLICommandInvoker { public CLICommandInvoker(final JenkinsRule rule, final CLICommand command) { + if (command.getClass().getAnnotation(Extension.class) == null) { + + throw new AssertionError(String.format( + "Command %s is missing @Extension annotation.", + command.getClass() + )); + } + this.rule = rule; this.command = command; } @@ -68,6 +82,8 @@ public class CLICommandInvoker { public CLICommandInvoker withStdin(final InputStream stdin) { + if (stdin == null) throw new NullPointerException("No stdin provided"); + this.stdin = stdin; return this; } @@ -151,5 +167,71 @@ public class CLICommandInvoker { return err.toString(); } + + @Override + public String toString() { + + StringBuilder builder = new StringBuilder("CLI command exited with ").append(result); + String stdout = stdout(); + if (!"".equals(stdout)) { + builder.append("\nSTDOUT:\n").append(stdout); + } + String stderr = stderr(); + if (!"".equals(stderr)) { + builder.append("\nSTDERR:\n").append(stderr); + } + + return builder.toString(); + } + } + + public abstract static class Matcher extends TypeSafeMatcher { + + private final String description; + + private Matcher(String description) { + this.description = description; + } + + @Override + protected void describeMismatchSafely(Result result, Description description) { + description.appendText(result.toString()); + } + + public void describeTo(Description description) { + description.appendText(this.description); + } + + public static Matcher hasNoStandardOutput() { + return new Matcher("No standard output") { + @Override protected boolean matchesSafely(Result result) { + return "".equals(result.stdout()); + } + }; + } + + public static Matcher hasNoErrorOutput() { + return new Matcher("No error output") { + @Override protected boolean matchesSafely(Result result) { + return "".equals(result.stderr()); + } + }; + } + + public static Matcher succeeded() { + return new Matcher("Exited with 0 return code") { + @Override protected boolean matchesSafely(Result result) { + return result.result == 0; + } + }; + } + + public static Matcher failedWith(final long expectedCode) { + return new Matcher("Exited with " + expectedCode + " return code") { + @Override protected boolean matchesSafely(Result result) { + return result.result == expectedCode; + } + }; + } } } diff --git a/test/src/test/java/hudson/cli/CreateViewCommandTest.java b/test/src/test/java/hudson/cli/CreateViewCommandTest.java new file mode 100644 index 0000000000..695082a5d3 --- /dev/null +++ b/test/src/test/java/hudson/cli/CreateViewCommandTest.java @@ -0,0 +1,136 @@ +/* + * The MIT License + * + * Copyright 2013 Red Hat, 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 static hudson.cli.CLICommandInvoker.Matcher.failedWith; +import static hudson.cli.CLICommandInvoker.Matcher.hasNoStandardOutput; +import static hudson.cli.CLICommandInvoker.Matcher.hasNoErrorOutput; +import static hudson.cli.CLICommandInvoker.Matcher.succeeded; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.containsString; +import static org.hamcrest.Matchers.equalTo; +import static org.hamcrest.Matchers.nullValue; + +import java.io.IOException; + +import hudson.model.ListView; +import hudson.model.View; +import jenkins.model.Jenkins; + +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.jvnet.hudson.test.JenkinsRule; + +public class CreateViewCommandTest { + + private CLICommandInvoker command; + + @Rule public final JenkinsRule j = new JenkinsRule(); + + @Before public void setUp() { + + command = new CLICommandInvoker(j, new CreateViewCommand()); + } + + @Test public void createViewShouldFailWithoutViewCreatePermission() { + + final CLICommandInvoker.Result result = command + .authorizedTo(Jenkins.READ) + .withStdin(this.getClass().getResourceAsStream("/hudson/cli/view.xml")) + .invoke() + ; + + assertThat(result, failedWith(-1)); + assertThat(result, hasNoStandardOutput()); + assertThat(result.stderr(), containsString("user is missing the View/Create permission")); + } + + @Test public void createViewShouldSucceed() { + + final CLICommandInvoker.Result result = command + .authorizedTo(View.CREATE, Jenkins.READ) + .withStdin(this.getClass().getResourceAsStream("/hudson/cli/view.xml")) + .invoke() + ; + + assertThat(result, succeeded()); + assertThat(result, hasNoErrorOutput()); + assertThat(result, hasNoStandardOutput()); + + final View updatedView = j.jenkins.getView("ViewFromXML"); + assertThat(updatedView.getViewName(), equalTo("ViewFromXML")); + assertThat(updatedView.isFilterExecutors(), equalTo(true)); + assertThat(updatedView.isFilterQueue(), equalTo(false)); + } + + @Test public void createViewSpecifyingNameExplicitlyShouldSucceed() { + + final CLICommandInvoker.Result result = command + .authorizedTo(View.CREATE, Jenkins.READ) + .withStdin(this.getClass().getResourceAsStream("/hudson/cli/view.xml")) + .invokeWithArgs("CustomViewName") + ; + + assertThat(result, succeeded()); + assertThat(result, hasNoErrorOutput()); + assertThat(result, hasNoStandardOutput()); + + assertThat("A view with original name should not exist", j.jenkins.getView("ViewFromXML"), nullValue()); + + final View updatedView = j.jenkins.getView("CustomViewName"); + assertThat(updatedView.getViewName(), equalTo("CustomViewName")); + assertThat(updatedView.isFilterExecutors(), equalTo(true)); + assertThat(updatedView.isFilterQueue(), equalTo(false)); + } + + @Test public void createViewShouldFailIfViewAlreadyExists() throws IOException { + + j.jenkins.addView(new ListView("ViewFromXML")); + + final CLICommandInvoker.Result result = command + .authorizedTo(View.CREATE, Jenkins.READ) + .withStdin(this.getClass().getResourceAsStream("/hudson/cli/view.xml")) + .invoke() + ; + + assertThat(result, failedWith(-1)); + assertThat(result, hasNoStandardOutput()); + assertThat(result.stderr(), containsString("View 'ViewFromXML' already exists")); + } + + @Test public void createViewShouldFailUsingInvalidName() { + + final CLICommandInvoker.Result result = command + .authorizedTo(View.CREATE, Jenkins.READ) + .withStdin(this.getClass().getResourceAsStream("/hudson/cli/view.xml")) + .invokeWithArgs("..") + ; + + assertThat(result, failedWith(-1)); + assertThat(result, hasNoStandardOutput()); + assertThat(result.stderr(), containsString("Invalid view name")); + } +} diff --git a/test/src/test/java/hudson/cli/DeleteViewCommandTest.java b/test/src/test/java/hudson/cli/DeleteViewCommandTest.java new file mode 100644 index 0000000000..5b3d8d334f --- /dev/null +++ b/test/src/test/java/hudson/cli/DeleteViewCommandTest.java @@ -0,0 +1,111 @@ +/* + * The MIT License + * + * Copyright 2013 Red Hat, 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 static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.containsString; +import static org.hamcrest.Matchers.nullValue; + +import static hudson.cli.CLICommandInvoker.Matcher.hasNoStandardOutput; +import static hudson.cli.CLICommandInvoker.Matcher.hasNoErrorOutput; +import static hudson.cli.CLICommandInvoker.Matcher.succeeded; +import static hudson.cli.CLICommandInvoker.Matcher.failedWith; + +import java.io.IOException; + +import hudson.model.ListView; +import hudson.model.View; +import jenkins.model.Jenkins; + +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.jvnet.hudson.test.JenkinsRule; + +public class DeleteViewCommandTest { + + private CLICommandInvoker command; + + @Rule public final JenkinsRule j = new JenkinsRule(); + + @Before public void setUp() { + + command = new CLICommandInvoker(j, new DeleteViewCommand()); + } + + @Test public void deleteViewShouldFailWithoutViewDeletePermission() throws IOException { + + j.jenkins.addView(new ListView("aView")); + + final CLICommandInvoker.Result result = command + .authorizedTo(Jenkins.READ) + .invokeWithArgs("aView") + ; + + assertThat(result, failedWith(-1)); + assertThat(result, hasNoStandardOutput()); + assertThat(result.stderr(), containsString("user is missing the View/Delete permission")); + } + + @Test public void deleteViewShouldSucceed() throws Exception { + + j.jenkins.addView(new ListView("aView")); + + final CLICommandInvoker.Result result = command + .authorizedTo(View.DELETE, Jenkins.READ) + .invokeWithArgs("aView") + ; + + assertThat(result, succeeded()); + assertThat(result, hasNoStandardOutput()); + assertThat(result, hasNoErrorOutput()); + assertThat(j.jenkins.getView("aView"), nullValue()); + } + + @Test public void deleteViewShouldFailIfViewDoesNotExist() { + + final CLICommandInvoker.Result result = command + .authorizedTo(View.DELETE, Jenkins.READ) + .invokeWithArgs("never_created") + ; + + assertThat(result, failedWith(-1)); + assertThat(result, hasNoStandardOutput()); + assertThat(result.stderr(), containsString("No such view 'never_created'")); + } + + // ViewGroup.canDelete() + @Test public void deleteViewShouldFailIfViewGroupDoesNotAllowDeletion() { + + final CLICommandInvoker.Result result = command + .authorizedTo(View.DELETE, Jenkins.READ) + .invokeWithArgs("All") + ; + + assertThat(result, failedWith(-1)); + assertThat(result, hasNoStandardOutput()); + assertThat(result.stderr(), containsString("Jenkins does not allow to delete 'All' view")); + } +} diff --git a/test/src/test/java/hudson/cli/GetViewCommandTest.java b/test/src/test/java/hudson/cli/GetViewCommandTest.java new file mode 100644 index 0000000000..8e2016fd31 --- /dev/null +++ b/test/src/test/java/hudson/cli/GetViewCommandTest.java @@ -0,0 +1,99 @@ +/* + * The MIT License + * + * Copyright 2013 Red Hat, 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 static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.containsString; +import static org.hamcrest.Matchers.equalTo; +import static org.hamcrest.Matchers.startsWith; +import static org.hamcrest.text.IsEmptyString.isEmptyString; +import static hudson.cli.CLICommandInvoker.Matcher.failedWith; +import static hudson.cli.CLICommandInvoker.Matcher.hasNoStandardOutput; +import static hudson.cli.CLICommandInvoker.Matcher.hasNoErrorOutput; +import static hudson.cli.CLICommandInvoker.Matcher.succeeded; + +import java.io.IOException; + +import hudson.model.ListView; +import hudson.model.View; +import jenkins.model.Jenkins; + +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.jvnet.hudson.test.JenkinsRule; + +public class GetViewCommandTest { + + private CLICommandInvoker command; + + @Rule public final JenkinsRule j = new JenkinsRule(); + + @Before public void setUp() { + + command = new CLICommandInvoker(j, new GetViewCommand()); + } + + @Test public void getViewShouldFailWithoutViewReadPermission() throws IOException { + + j.jenkins.addView(new ListView("aView")); + + final CLICommandInvoker.Result result = command + .authorizedTo(Jenkins.READ) + .invokeWithArgs("aView") + ; + + assertThat(result, failedWith(-1)); + assertThat(result, hasNoStandardOutput()); + assertThat(result.stderr(), containsString("user is missing the View/Read permission")); + } + + @Test public void getViewShouldYieldConfigXml() throws Exception { + + j.jenkins.addView(new ListView("aView")); + + final CLICommandInvoker.Result result = command + .authorizedTo(View.READ, Jenkins.READ) + .invokeWithArgs("aView") + ; + + assertThat(result, succeeded()); + assertThat(result, hasNoErrorOutput()); + assertThat(result.stdout(), startsWith("")); + assertThat(result.stdout(), containsString("aView")); + } + + @Test public void getViewShouldFailIfViewDoesNotExist() { + + final CLICommandInvoker.Result result = command + .authorizedTo(View.READ, Jenkins.READ) + .invokeWithArgs("never_created") + ; + + assertThat(result, failedWith(-1)); + assertThat(result, hasNoStandardOutput()); + assertThat(result.stderr(), containsString("No such view 'never_created'")); + } +} diff --git a/test/src/test/java/hudson/cli/UpdateViewCommandTest.java b/test/src/test/java/hudson/cli/UpdateViewCommandTest.java new file mode 100644 index 0000000000..7afa8f62fe --- /dev/null +++ b/test/src/test/java/hudson/cli/UpdateViewCommandTest.java @@ -0,0 +1,103 @@ +/* + * The MIT License + * + * Copyright 2013 Red Hat, 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 static hudson.cli.CLICommandInvoker.Matcher.failedWith; +import static hudson.cli.CLICommandInvoker.Matcher.hasNoStandardOutput; +import static hudson.cli.CLICommandInvoker.Matcher.hasNoErrorOutput; +import static hudson.cli.CLICommandInvoker.Matcher.succeeded; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.containsString; +import static org.hamcrest.Matchers.equalTo; +import static org.hamcrest.Matchers.nullValue; +import hudson.model.ListView; +import hudson.model.View; +import jenkins.model.Jenkins; + +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.jvnet.hudson.test.JenkinsRule; + +public class UpdateViewCommandTest { + + private CLICommandInvoker command; + + @Rule public final JenkinsRule j = new JenkinsRule(); + + @Before public void setUp() { + + command = new CLICommandInvoker(j, new UpdateViewCommand()); + } + + @Test public void updateViewShouldFailWithoutViewConfigurePermission() throws Exception { + + j.jenkins.addView(new ListView("aView")); + + final CLICommandInvoker.Result result = command + .authorizedTo(Jenkins.READ) + .withStdin(this.getClass().getResourceAsStream("/hudson/cli/view.xml")) + .invokeWithArgs("aView") + ; + + assertThat(result, failedWith(-1)); + assertThat(result, hasNoStandardOutput()); + assertThat(result.stderr(), containsString("user is missing the View/Configure permission")); + } + + @Test public void updateViewShouldModifyViewConfiguration() throws Exception { + + j.jenkins.addView(new ListView("aView")); + + final CLICommandInvoker.Result result = command + .authorizedTo(View.CONFIGURE, Jenkins.READ) + .withStdin(this.getClass().getResourceAsStream("/hudson/cli/view.xml")) + .invokeWithArgs("aView") + ; + + assertThat(result, succeeded()); + assertThat(result, hasNoErrorOutput()); + + assertThat("Update should not modify view name", j.jenkins.getView("ViewFromXML"), nullValue()); + + final View updatedView = j.jenkins.getView("aView"); + assertThat(updatedView.getViewName(), equalTo("aView")); + assertThat(updatedView.isFilterExecutors(), equalTo(true)); + assertThat(updatedView.isFilterQueue(), equalTo(false)); + } + + @Test public void updateViewShouldFailIfViewDoesNotExist() { + + final CLICommandInvoker.Result result = command + .authorizedTo(View.CONFIGURE, Jenkins.READ) + .withStdin(this.getClass().getResourceAsStream("/hudson/cli/view.xml")) + .invokeWithArgs("not_created") + ; + + assertThat(result, failedWith(-1)); + assertThat(result, hasNoStandardOutput()); + assertThat(result.stderr(), containsString("No such view 'not_created'")); + } +} diff --git a/test/src/test/resources/hudson/cli/view.xml b/test/src/test/resources/hudson/cli/view.xml new file mode 100644 index 0000000000..35c8518544 --- /dev/null +++ b/test/src/test/resources/hudson/cli/view.xml @@ -0,0 +1,31 @@ + + + ViewFromXML + true + false + + + + core_selenium-test + jenkins_lts_branch + jenkins_main_maven-3.1.0 + jenkins_main_trunk + jenkins_pom + jenkins_rc_branch + jenkins_ui-changes_branch + remoting + selenium-tests + + + + + + + + + + + + + false + -- GitLab From ae7440482a27877fc88416d189ad2137b6dc1eee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Mon, 14 Oct 2013 19:14:14 +0200 Subject: [PATCH 021/308] [JENKINS-20023] Restrict use of CLIAction --- core/src/main/java/hudson/cli/CLIAction.java | 4 +++- core/src/main/java/hudson/cli/CLICommand.java | 3 --- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/core/src/main/java/hudson/cli/CLIAction.java b/core/src/main/java/hudson/cli/CLIAction.java index 079850c532..bb7a396da8 100644 --- a/core/src/main/java/hudson/cli/CLIAction.java +++ b/core/src/main/java/hudson/cli/CLIAction.java @@ -33,6 +33,8 @@ import javax.servlet.http.HttpServletResponse; import jenkins.model.Jenkins; +import org.kohsuke.accmod.Restricted; +import org.kohsuke.accmod.restrictions.NoExternalUse; import org.kohsuke.stapler.StaplerRequest; import org.kohsuke.stapler.StaplerResponse; @@ -43,9 +45,9 @@ import hudson.remoting.Channel; /** * @author ogondza - * @since TODO */ @Extension +@Restricted(NoExternalUse.class) public class CLIAction implements RootAction { private transient final Map duplexChannels = new HashMap(); diff --git a/core/src/main/java/hudson/cli/CLICommand.java b/core/src/main/java/hudson/cli/CLICommand.java index 09a0a2b0be..86c8aa04dc 100644 --- a/core/src/main/java/hudson/cli/CLICommand.java +++ b/core/src/main/java/hudson/cli/CLICommand.java @@ -351,7 +351,6 @@ public abstract class CLICommand implements ExtensionPoint, Cloneable { /** * Get single line summary as a string. - * @since TODO */ @Restricted(NoExternalUse.class) public final String getSingleLineSummary() { @@ -362,7 +361,6 @@ public abstract class CLICommand implements ExtensionPoint, Cloneable { /** * Get usage as a string. - * @since TODO */ @Restricted(NoExternalUse.class) public final String getUsage() { @@ -373,7 +371,6 @@ public abstract class CLICommand implements ExtensionPoint, Cloneable { /** * Get long description as a string. - * @since TODO */ @Restricted(NoExternalUse.class) public final String getLongDescription() { -- GitLab From 177b39a5fb8eee20218a9066679727707864edf0 Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Wed, 16 Oct 2013 15:29:13 -0400 Subject: [PATCH 022/308] [JENKINS-20074] When displaying an uncaught exception, if we are unable to write the content, just do nothing. --- core/pom.xml | 2 +- .../impl/InstallUncaughtExceptionHandler.java | 15 +++++++++++++-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/core/pom.xml b/core/pom.xml index 361fc2a162..e9f0c51f99 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -42,7 +42,7 @@ THE SOFTWARE. true - 1.221 + 1.222-SNAPSHOT 2.5.6.SEC03 1.8.9 diff --git a/core/src/main/java/hudson/init/impl/InstallUncaughtExceptionHandler.java b/core/src/main/java/hudson/init/impl/InstallUncaughtExceptionHandler.java index 60f34e3a7d..e39edb8f7c 100644 --- a/core/src/main/java/hudson/init/impl/InstallUncaughtExceptionHandler.java +++ b/core/src/main/java/hudson/init/impl/InstallUncaughtExceptionHandler.java @@ -11,6 +11,7 @@ import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; +import org.kohsuke.stapler.Stapler; /** * @author Kohsuke Kawaguchi @@ -22,8 +23,18 @@ public class InstallUncaughtExceptionHandler { @Override public void reportException(Throwable e, ServletContext context, HttpServletRequest req, HttpServletResponse rsp) throws ServletException, IOException { req.setAttribute("javax.servlet.error.exception",e); - WebApp.get(j.servletContext).getSomeStapler() - .invoke(req,rsp, Jenkins.getInstance(), "/oops"); + try { + WebApp.get(j.servletContext).getSomeStapler() + .invoke(req,rsp, Jenkins.getInstance(), "/oops"); + } catch (ServletException x) { + if (!Stapler.isSocketException(x)) { + throw x; + } + } catch (IOException x) { + if (!Stapler.isSocketException(x)) { + throw x; + } + } } }); } -- GitLab From 2fe47370d1d70b9dfbe75dd0c32854a9c34b212e Mon Sep 17 00:00:00 2001 From: sghill Date: Wed, 16 Oct 2013 13:29:42 -0400 Subject: [PATCH 023/308] Adding ParametersAction#merge(ParametersAction) method with tests. --- .../java/hudson/model/ParametersAction.java | 34 +++++--- .../hudson/model/ParametersActionTest.java | 79 +++++++++++++++++++ 2 files changed, 101 insertions(+), 12 deletions(-) create mode 100644 core/src/test/java/hudson/model/ParametersActionTest.java diff --git a/core/src/main/java/hudson/model/ParametersAction.java b/core/src/main/java/hudson/model/ParametersAction.java index c5cab54dea..09aebf7ebf 100644 --- a/core/src/main/java/hudson/model/ParametersAction.java +++ b/core/src/main/java/hudson/model/ParametersAction.java @@ -36,7 +36,6 @@ import hudson.util.VariableResolver; import org.kohsuke.stapler.export.Exported; import org.kohsuke.stapler.export.ExportedBean; -import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.Collections; @@ -45,6 +44,9 @@ import java.util.Iterator; import java.util.List; import java.util.Set; +import static com.google.common.collect.Lists.newArrayList; +import static com.google.common.collect.Sets.newHashSet; + /** * Records the parameter values used for a build. * @@ -164,23 +166,31 @@ public class ParametersAction implements Action, Iterable, Queue * Creates a new {@link ParametersAction} that contains all the parameters in this action * with the overrides / new values given as parameters. */ - public ParametersAction createUpdated(Collection newValues) { - List r = new ArrayList(); + public ParametersAction createUpdated(Collection overrides) { + if(overrides == null) { + return new ParametersAction(parameters); + } + List combinedParameters = newArrayList(overrides); + Set names = newHashSet(); - Set names = new HashSet(); - for (ParameterValue v : newValues) { - names.add(v.name); + for(ParameterValue v : overrides) { + names.add(v.getName()); } - for (Iterator itr = parameters.iterator(); itr.hasNext(); ) { - ParameterValue v = itr.next(); - if (!names.contains(v.getName())) - r.add(v); + for (ParameterValue v : parameters) { + if (!names.contains(v.getName())) { + combinedParameters.add(v); + } } - r.addAll(newValues); + return new ParametersAction(combinedParameters); + } - return new ParametersAction(r); + public ParametersAction merge(ParametersAction overrides) { + if(overrides == null) { + return new ParametersAction(parameters); + } + return createUpdated(overrides.getParameters()); } private Object readResolve() { diff --git a/core/src/test/java/hudson/model/ParametersActionTest.java b/core/src/test/java/hudson/model/ParametersActionTest.java new file mode 100644 index 0000000000..ee565fb50d --- /dev/null +++ b/core/src/test/java/hudson/model/ParametersActionTest.java @@ -0,0 +1,79 @@ +package hudson.model; + +import org.junit.Before; +import org.junit.Test; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotSame; + +public class ParametersActionTest { + + private ParametersAction baseParamsAB; + private StringParameterValue baseA; + + @Before + public void setUp() { + baseA = new StringParameterValue("a", "base-a"); + StringParameterValue baseB = new StringParameterValue("b", "base-b"); + baseParamsAB = new ParametersAction(baseA, baseB); + } + + @Test + public void mergeShouldOverrideParameters() { + StringParameterValue overrideB = new StringParameterValue("b", "override-b"); + ParametersAction extraParams = new ParametersAction(overrideB); + + ParametersAction params = baseParamsAB.merge(extraParams); + + StringParameterValue a = (StringParameterValue) params.getParameter("a"); + StringParameterValue b = (StringParameterValue) params.getParameter("b"); + assertEquals(baseA, a); + assertEquals(overrideB, b); + } + + @Test + public void mergeShouldCombineDisparateParameters() { + StringParameterValue overrideB = new StringParameterValue("b", "override-b"); + ParametersAction extraParams = new ParametersAction(overrideB); + + ParametersAction params = baseParamsAB.merge(extraParams); + + StringParameterValue a = (StringParameterValue) params.getParameter("a"); + StringParameterValue b = (StringParameterValue) params.getParameter("b"); + assertEquals(baseA, a); + assertEquals(overrideB, b); + } + + @Test + public void mergeShouldHandleEmptyOverrides() { + ParametersAction params = baseParamsAB.merge(new ParametersAction()); + + StringParameterValue a = (StringParameterValue) params.getParameter("a"); + assertEquals(baseA, a); + } + + @Test + public void mergeShouldHandleNullOverrides() { + ParametersAction params = baseParamsAB.merge(null); + + StringParameterValue a = (StringParameterValue) params.getParameter("a"); + assertEquals(baseA, a); + } + + @Test + public void mergeShouldReturnNewInstanceWithOverride() { + StringParameterValue overrideA = new StringParameterValue("a", "override-a"); + ParametersAction overrideParams = new ParametersAction(overrideA); + + ParametersAction params = baseParamsAB.merge(overrideParams); + + assertNotSame(baseParamsAB, params); + } + + @Test + public void createUpdatedShouldReturnNewInstanceWithNullOverride() { + ParametersAction params = baseParamsAB.createUpdated(null); + + assertNotSame(baseParamsAB, params); + } +} -- GitLab From 3a2aa30afb018deff57c46658d8123acc60dae1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Tue, 15 Oct 2013 22:03:30 +0200 Subject: [PATCH 024/308] Cleanup SetBuildDisplayNameCommand --- .../main/java/hudson/cli/SetBuildDisplayNameCommand.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/core/src/main/java/hudson/cli/SetBuildDisplayNameCommand.java b/core/src/main/java/hudson/cli/SetBuildDisplayNameCommand.java index 5233cf7f7f..4add95edba 100644 --- a/core/src/main/java/hudson/cli/SetBuildDisplayNameCommand.java +++ b/core/src/main/java/hudson/cli/SetBuildDisplayNameCommand.java @@ -3,15 +3,14 @@ package hudson.cli; import hudson.Extension; import hudson.model.AbstractProject; import hudson.model.Run; -import hudson.remoting.Callable; import org.apache.commons.io.IOUtils; import org.kohsuke.args4j.Argument; -import java.io.IOException; import java.io.Serializable; @Extension public class SetBuildDisplayNameCommand extends CLICommand implements Serializable { + private static final long serialVersionUID = 6665171784136358536L; @Override public String getShortDescription() { @@ -27,8 +26,9 @@ public class SetBuildDisplayNameCommand extends CLICommand implements Serializab @Argument(metaVar="DISPLAYNAME", required=true, usage="DisplayName to be set. '-' to read from stdin.", index=2) public String displayName; + @Override protected int run() throws Exception { - Run run = job.getBuildByNumber(number); + Run run = job.getBuildByNumber(number); run.checkPermission(Run.UPDATE); if ("-".equals(displayName)) { @@ -39,5 +39,4 @@ public class SetBuildDisplayNameCommand extends CLICommand implements Serializab return 0; } - } -- GitLab From 09693ce75e060ff5ce5008ff0ace406e2a358532 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Tue, 15 Oct 2013 22:25:50 +0200 Subject: [PATCH 025/308] [FIXED JENKINS-20057] NPE when issuing set-build-display-name CLI command --- .../cli/SetBuildDisplayNameCommand.java | 4 + .../cli/SetBuildDisplayNameCommandTest.java | 77 +++++++++++++++++++ 2 files changed, 81 insertions(+) create mode 100644 test/src/test/java/hudson/cli/SetBuildDisplayNameCommandTest.java diff --git a/core/src/main/java/hudson/cli/SetBuildDisplayNameCommand.java b/core/src/main/java/hudson/cli/SetBuildDisplayNameCommand.java index 4add95edba..08b08b7d71 100644 --- a/core/src/main/java/hudson/cli/SetBuildDisplayNameCommand.java +++ b/core/src/main/java/hudson/cli/SetBuildDisplayNameCommand.java @@ -29,6 +29,10 @@ public class SetBuildDisplayNameCommand extends CLICommand implements Serializab @Override protected int run() throws Exception { Run run = job.getBuildByNumber(number); + if (run == null) { + stderr.format("Build #%d does not exist\n", number); + return -1; + } run.checkPermission(Run.UPDATE); if ("-".equals(displayName)) { diff --git a/test/src/test/java/hudson/cli/SetBuildDisplayNameCommandTest.java b/test/src/test/java/hudson/cli/SetBuildDisplayNameCommandTest.java new file mode 100644 index 0000000000..3633c56a2d --- /dev/null +++ b/test/src/test/java/hudson/cli/SetBuildDisplayNameCommandTest.java @@ -0,0 +1,77 @@ +/* + * The MIT License + * + * Copyright 2013 Red Hat, 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 static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.containsString; +import static org.hamcrest.Matchers.equalTo; +import static org.hamcrest.text.IsEmptyString.isEmptyString; +import hudson.model.FreeStyleBuild; +import hudson.model.FreeStyleProject; + +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.jvnet.hudson.test.JenkinsRule; + +public class SetBuildDisplayNameCommandTest { + + private CLICommandInvoker command; + + @Rule public final JenkinsRule j = new JenkinsRule(); + + @Before public void setUp() { + + command = new CLICommandInvoker(j, new SetBuildDisplayNameCommand()); + } + + @Test public void referencingBuildThatDoesNotExistsShouldFail() throws Exception { + + j.createFreeStyleProject("project"); + + final CLICommandInvoker.Result result = command + .invokeWithArgs("project", "42", "DisplayName") + ; + + assertThat(result.stderr(), containsString("Build #42 does not exist")); + assertThat("No output expected", result.stdout(), isEmptyString()); + assertThat("Command is expected to fail", result.returnCode(), equalTo(-1)); + } + + @Test public void setDescriptionSuccesfully() throws Exception { + + FreeStyleProject job = j.createFreeStyleProject("project"); + FreeStyleBuild build = job.scheduleBuild2(0).get(); + + final CLICommandInvoker.Result result = command + .invokeWithArgs("project", "1", "DisplayName") + ; + + assertThat("No output expected", result.stdout(), isEmptyString()); + assertThat("No error output expected", result.stderr(), isEmptyString()); + assertThat("Command is expected to succeed", result.returnCode(), equalTo(0)); + assertThat(build.getDisplayName(), equalTo("DisplayName")); + } +} -- GitLab From b2651f22b2603efcaafa390bf5ee035abb530c99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Wed, 16 Oct 2013 20:32:49 +0200 Subject: [PATCH 026/308] [JENKINS-19996] Support nested views in Jenkins CLI --- .../cli/handlers/ViewOptionHandler.java | 53 +++- .../cli/handlers/ViewOptionHandlerTest.java | 232 ++++++++++++++++++ .../hudson/cli/DeleteViewCommandTest.java | 10 +- .../java/hudson/cli/GetViewCommandTest.java | 4 +- .../hudson/cli/UpdateViewCommandTest.java | 8 +- 5 files changed, 290 insertions(+), 17 deletions(-) create mode 100644 core/src/test/java/hudson/cli/handlers/ViewOptionHandlerTest.java diff --git a/core/src/main/java/hudson/cli/handlers/ViewOptionHandler.java b/core/src/main/java/hudson/cli/handlers/ViewOptionHandler.java index cad865970c..fdf4344cca 100644 --- a/core/src/main/java/hudson/cli/handlers/ViewOptionHandler.java +++ b/core/src/main/java/hudson/cli/handlers/ViewOptionHandler.java @@ -23,7 +23,11 @@ */ package hudson.cli.handlers; +import hudson.model.ViewGroup; import hudson.model.View; + +import java.util.StringTokenizer; + import jenkins.model.Jenkins; import org.kohsuke.MetaInfServices; @@ -37,6 +41,20 @@ import org.kohsuke.args4j.spi.Setter; /** * Refers to {@link View} by its name. * + *

+ * For example: + *

+ *
my_view_name
refers to a top level view with given name.
+ *
nested/inner
refers to a view named inner inside of a top level view group named nested.
+ *
+ * + *

+ * View name is a non-empty sequence of {@link View} names delimited by '/'. + * Handler traverse the view names from left to right. First one is expected to + * be a top level view and all but the last one are expected to be instances of + * {@link ViewGroup}. Handler fails to resolve view provided a view with given + * name does not exist or a user was not granted {@link View.READ} permission. + * * @author ogondza * @since TODO */ @@ -51,13 +69,38 @@ public class ViewOptionHandler extends OptionHandler { @Override public int parseArguments(Parameters params) throws CmdLineException { - String viewName = params.getParameter(0); + setter.addValue(getView(params.getParameter(0))); + return 1; + } - final View view = Jenkins.getInstance().getView(viewName); - if (view == null) throw new CmdLineException(owner, "No such view '" + viewName + "'"); + private View getView(String name) throws CmdLineException { - setter.addValue(view); - return 1; + View view = null; + ViewGroup group = Jenkins.getInstance(); + + final StringTokenizer tok = new StringTokenizer(name, "/"); + while(tok.hasMoreTokens()) { + + String viewName = tok.nextToken(); + + view = group.getView(viewName); + if (view == null) throw new CmdLineException(owner, String.format( + "No view named %s inside view %s", + viewName, group.getDisplayName() + )); + + view.checkPermission(View.READ); + + if (view instanceof ViewGroup) { + group = (ViewGroup) view; + } else if (tok.hasMoreTokens()) { + throw new CmdLineException( + owner, view.getViewName() + " view can not contain views" + ); + } + } + + return view; } @Override diff --git a/core/src/test/java/hudson/cli/handlers/ViewOptionHandlerTest.java b/core/src/test/java/hudson/cli/handlers/ViewOptionHandlerTest.java new file mode 100644 index 0000000000..98b29e2e1d --- /dev/null +++ b/core/src/test/java/hudson/cli/handlers/ViewOptionHandlerTest.java @@ -0,0 +1,232 @@ +/* + * The MIT License + * + * Copyright (c) 2013 Red Hat, 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.handlers; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.fail; +import static org.mockito.Mockito.doThrow; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.verifyNoMoreInteractions; +import static org.mockito.Mockito.verifyZeroInteractions; +import static org.mockito.Mockito.when; +import hudson.model.ViewGroup; +import hudson.model.View; + +import jenkins.model.Jenkins; + +import org.acegisecurity.AccessDeniedException; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.kohsuke.args4j.CmdLineException; +import org.kohsuke.args4j.spi.Parameters; +import org.kohsuke.args4j.spi.Setter; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; +import org.powermock.api.mockito.PowerMockito; +import org.powermock.core.classloader.annotations.PrepareForTest; +import org.powermock.modules.junit4.PowerMockRunner; + +@PrepareForTest(Jenkins.class) +@RunWith(PowerMockRunner.class) +public class ViewOptionHandlerTest { + + @Mock private Setter setter; + private ViewOptionHandler handler; + + // Hierarchy of views used as a shared fixture: + // $JENKINS_URL/view/outer/view/nested/view/inner/ + @Mock private View inner; + @Mock private CompositeView nested; + @Mock private CompositeView outer; + @Mock private Jenkins jenkins; + + @Before public void setUp() { + + MockitoAnnotations.initMocks(this); + + handler = new ViewOptionHandler(null, null, setter); + + when(inner.getViewName()).thenReturn("inner"); + when(inner.getDisplayName()).thenCallRealMethod(); + + when(nested.getViewName()).thenReturn("nested"); + when(nested.getDisplayName()).thenCallRealMethod(); + when(nested.getView("inner")).thenReturn(inner); + + when(outer.getViewName()).thenReturn("outer"); + when(outer.getDisplayName()).thenCallRealMethod(); + when(outer.getView("nested")).thenReturn(nested); + + PowerMockito.mockStatic(Jenkins.class); + PowerMockito.when(Jenkins.getInstance()).thenReturn(jenkins); + when(jenkins.getView("outer")).thenReturn(outer); + when(jenkins.getDisplayName()).thenReturn("Jenkins"); + } + + @Test public void resolveTopLevelView() throws Exception { + + parse("outer"); + + verify(setter).addValue(outer); + } + + @Test public void resolveNestedView() throws Exception { + + parse("outer/nested"); + + verify(setter).addValue(nested); + } + + @Test public void resolveOuterView() throws Exception { + + parse("outer/nested/inner"); + + verify(setter).addValue(inner); + } + + @Test public void ignoreLeadingAndTrailingSlashes() throws Exception { + + parse("/outer/nested/inner/"); + + verify(setter).addValue(inner); + } + + @Test public void reportNonexistentTopLevelView() throws Exception { + + assertEquals( + "No view named missing_view inside view Jenkins", + parseFailedWith(CmdLineException.class, "missing_view") + ); + + verifyZeroInteractions(setter); + } + + @Test public void reportNonexistentNestedView() throws Exception { + + assertEquals( + "No view named missing_view inside view outer", + parseFailedWith(CmdLineException.class, "outer/missing_view") + ); + + verifyZeroInteractions(setter); + } + + @Test public void reportNonexistentInnerView() throws Exception { + + assertEquals( + "No view named missing_view inside view nested", + parseFailedWith(CmdLineException.class, "outer/nested/missing_view") + ); + + verifyZeroInteractions(setter); + } + + @Test public void reportTraversingViewThatIsNotAViewGroup() throws Exception { + + assertEquals( + "inner view can not contain views", + parseFailedWith(CmdLineException.class, "outer/nested/inner/missing") + ); + + verifyZeroInteractions(setter); + } + + @Test public void refuseToReadOuterView() throws Exception { + + denyAccessOn(outer); + + parseFailedWith(AccessDeniedException.class, "outer/nested/inner"); + + verify(outer).checkPermission(View.READ); + verifyNoMoreInteractions(outer); + + verifyZeroInteractions(nested); + verifyZeroInteractions(inner); + verifyZeroInteractions(setter); + } + + @Test public void refuseToReadNestedView() throws Exception { + + denyAccessOn(nested); + + parseFailedWith(AccessDeniedException.class, "outer/nested/inner"); + + verify(nested).checkPermission(View.READ); + verifyNoMoreInteractions(nested); + + verifyZeroInteractions(inner); + verifyZeroInteractions(setter); + } + + @Test public void refuseToReadInnerView() throws Exception { + + denyAccessOn(inner); + + parseFailedWith(AccessDeniedException.class, "outer/nested/inner"); + + verify(inner).checkPermission(View.READ); + verifyNoMoreInteractions(inner); + + verifyZeroInteractions(setter); + } + + private void denyAccessOn(View view) { + + doThrow(new AccessDeniedException(null)).when(view).checkPermission(View.READ); + } + + private String parseFailedWith(Class type, final String... params) throws Exception { + + try { + parse(params); + + } catch (Exception ex) { + + if (!type.isAssignableFrom(ex.getClass())) throw ex; + + return ex.getMessage(); + } + + fail("No exception thrown. Expected " + type.getClass()); + return null; + } + + private void parse(final String... params) throws CmdLineException { + handler.parseArguments(new Parameters() { + public String getParameter(int idx) throws CmdLineException { + return params[idx]; + } + public int size() { + return params.length; + } + }); + } + + private static abstract class CompositeView extends View implements ViewGroup { + protected CompositeView(String name) { + super(name); + } + } +} diff --git a/test/src/test/java/hudson/cli/DeleteViewCommandTest.java b/test/src/test/java/hudson/cli/DeleteViewCommandTest.java index 5b3d8d334f..93998cfa4f 100644 --- a/test/src/test/java/hudson/cli/DeleteViewCommandTest.java +++ b/test/src/test/java/hudson/cli/DeleteViewCommandTest.java @@ -60,7 +60,7 @@ public class DeleteViewCommandTest { j.jenkins.addView(new ListView("aView")); final CLICommandInvoker.Result result = command - .authorizedTo(Jenkins.READ) + .authorizedTo(View.READ, Jenkins.READ) .invokeWithArgs("aView") ; @@ -74,7 +74,7 @@ public class DeleteViewCommandTest { j.jenkins.addView(new ListView("aView")); final CLICommandInvoker.Result result = command - .authorizedTo(View.DELETE, Jenkins.READ) + .authorizedTo(View.READ, View.DELETE, Jenkins.READ) .invokeWithArgs("aView") ; @@ -87,20 +87,20 @@ public class DeleteViewCommandTest { @Test public void deleteViewShouldFailIfViewDoesNotExist() { final CLICommandInvoker.Result result = command - .authorizedTo(View.DELETE, Jenkins.READ) + .authorizedTo(View.READ, View.DELETE, Jenkins.READ) .invokeWithArgs("never_created") ; assertThat(result, failedWith(-1)); assertThat(result, hasNoStandardOutput()); - assertThat(result.stderr(), containsString("No such view 'never_created'")); + assertThat(result.stderr(), containsString("No view named never_created inside view Jenkins")); } // ViewGroup.canDelete() @Test public void deleteViewShouldFailIfViewGroupDoesNotAllowDeletion() { final CLICommandInvoker.Result result = command - .authorizedTo(View.DELETE, Jenkins.READ) + .authorizedTo(View.READ, View.DELETE, Jenkins.READ) .invokeWithArgs("All") ; diff --git a/test/src/test/java/hudson/cli/GetViewCommandTest.java b/test/src/test/java/hudson/cli/GetViewCommandTest.java index 8e2016fd31..4eb47f1553 100644 --- a/test/src/test/java/hudson/cli/GetViewCommandTest.java +++ b/test/src/test/java/hudson/cli/GetViewCommandTest.java @@ -26,9 +26,7 @@ package hudson.cli; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.containsString; -import static org.hamcrest.Matchers.equalTo; import static org.hamcrest.Matchers.startsWith; -import static org.hamcrest.text.IsEmptyString.isEmptyString; import static hudson.cli.CLICommandInvoker.Matcher.failedWith; import static hudson.cli.CLICommandInvoker.Matcher.hasNoStandardOutput; import static hudson.cli.CLICommandInvoker.Matcher.hasNoErrorOutput; @@ -94,6 +92,6 @@ public class GetViewCommandTest { assertThat(result, failedWith(-1)); assertThat(result, hasNoStandardOutput()); - assertThat(result.stderr(), containsString("No such view 'never_created'")); + assertThat(result.stderr(), containsString("No view named never_created inside view Jenkins")); } } diff --git a/test/src/test/java/hudson/cli/UpdateViewCommandTest.java b/test/src/test/java/hudson/cli/UpdateViewCommandTest.java index 7afa8f62fe..7d46483b88 100644 --- a/test/src/test/java/hudson/cli/UpdateViewCommandTest.java +++ b/test/src/test/java/hudson/cli/UpdateViewCommandTest.java @@ -57,7 +57,7 @@ public class UpdateViewCommandTest { j.jenkins.addView(new ListView("aView")); final CLICommandInvoker.Result result = command - .authorizedTo(Jenkins.READ) + .authorizedTo(View.READ, Jenkins.READ) .withStdin(this.getClass().getResourceAsStream("/hudson/cli/view.xml")) .invokeWithArgs("aView") ; @@ -72,7 +72,7 @@ public class UpdateViewCommandTest { j.jenkins.addView(new ListView("aView")); final CLICommandInvoker.Result result = command - .authorizedTo(View.CONFIGURE, Jenkins.READ) + .authorizedTo(View.READ, View.CONFIGURE, Jenkins.READ) .withStdin(this.getClass().getResourceAsStream("/hudson/cli/view.xml")) .invokeWithArgs("aView") ; @@ -91,13 +91,13 @@ public class UpdateViewCommandTest { @Test public void updateViewShouldFailIfViewDoesNotExist() { final CLICommandInvoker.Result result = command - .authorizedTo(View.CONFIGURE, Jenkins.READ) + .authorizedTo(View.READ, View.CONFIGURE, Jenkins.READ) .withStdin(this.getClass().getResourceAsStream("/hudson/cli/view.xml")) .invokeWithArgs("not_created") ; assertThat(result, failedWith(-1)); assertThat(result, hasNoStandardOutput()); - assertThat(result.stderr(), containsString("No such view 'not_created'")); + assertThat(result.stderr(), containsString("No view named not_created inside view Jenkins")); } } -- GitLab From 3855f173a57343d3c9074d0a3ee2e747419b7bd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Fri, 18 Oct 2013 16:04:02 +0200 Subject: [PATCH 027/308] [JENKINS-19884] .bigtable for test result lists --- .../resources/hudson/tasks/test/MatrixTestResult/index.jelly | 2 +- .../hudson/tasks/test/MetaTabulatedResult/body.jelly | 4 ++-- .../main/resources/lib/hudson/aggregated-failed-tests.jelly | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/main/resources/hudson/tasks/test/MatrixTestResult/index.jelly b/core/src/main/resources/hudson/tasks/test/MatrixTestResult/index.jelly index b8d09ee2d3..f5a62e2c44 100644 --- a/core/src/main/resources/hudson/tasks/test/MatrixTestResult/index.jelly +++ b/core/src/main/resources/hudson/tasks/test/MatrixTestResult/index.jelly @@ -30,7 +30,7 @@ THE SOFTWARE.

Test Result

- +
diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body.jelly b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body.jelly index 62f86e106b..9ca50c497d 100644 --- a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body.jelly +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body.jelly @@ -27,7 +27,7 @@ THE SOFTWARE.

${%All Failed Tests}

-
Configuration Name Duration
+
@@ -49,7 +49,7 @@ THE SOFTWARE.

${%All Tests}

-
${%Test Name} ${%Duration}
+
diff --git a/core/src/main/resources/lib/hudson/aggregated-failed-tests.jelly b/core/src/main/resources/lib/hudson/aggregated-failed-tests.jelly index 53573ed40f..25eedb308e 100644 --- a/core/src/main/resources/lib/hudson/aggregated-failed-tests.jelly +++ b/core/src/main/resources/lib/hudson/aggregated-failed-tests.jelly @@ -44,7 +44,7 @@ THE SOFTWARE. ${report.child.project.name} -
${it.childTitle} ${%Duration}
+
-- GitLab From b354bca00007496272edf844129e144ea571658d Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:53 -0700 Subject: [PATCH 028/308] Community-contributed localization for Afrikaans (af) --- .../PluginManager/checkUpdates_af.properties | 5 +++++ .../hudson/PluginManager/tabBar_af.properties | 5 +++++ .../message_af.properties | 5 +++++ .../model/AbstractBuild/changes_af.properties | 3 +++ .../model/AbstractBuild/index_af.properties | 6 ++++++ .../model/AbstractBuild/sidepanel_af.properties | 4 ++++ .../model/AbstractBuild/tasks_af.properties | 9 +++++++++ .../model/AbstractProject/changes_af.properties | 3 +++ .../model/AbstractProject/main_af.properties | 6 ++++++ .../model/AbstractProject/sidepanel_af.properties | 10 ++++++++++ .../hudson/model/AllView/noJob_af.properties | 4 ++++ .../Cause/UserIdCause/description_af.properties | 3 +++ .../hudson/model/ComputerSet/index_af.properties | 5 +++++ .../model/ComputerSet/sidepanel_af.properties | 6 ++++++ .../DirectoryBrowserSupport/dir_af.properties | 4 ++++ .../hudson/model/Fingerprint/index_af.properties | 3 +++ .../hudson/model/Job/configure_af.properties | 6 ++++++ .../hudson/model/Job/index_af.properties | 3 +++ .../hudson/model/Job/permalinks_af.properties | 3 +++ .../config_af.properties | 3 +++ .../Permalink/link_af.properties | 3 +++ .../hudson/model/Run/console_af.properties | 4 ++++ .../hudson/model/Run/delete_af.properties | 3 +++ .../ConnectionCheckJob/row_af.properties | 3 +++ .../CoreUpdateMonitor/message_af.properties | 3 +++ .../DownloadJob/Installing/status_af.properties | 3 +++ .../DownloadJob/Pending/status_af.properties | 3 +++ .../Pending/status_af.properties | 3 +++ .../RestartJenkinsJob/row_af.properties | 3 +++ .../hudson/model/UpdateCenter/body_af.properties | 5 +++++ .../hudson/model/UpdateCenter/index_af.properties | 3 +++ .../model/UpdateCenter/sidepanel_af.properties | 5 +++++ .../hudson/model/User/sidepanel_af.properties | 3 +++ .../model/View/AsynchPeople/index_af.properties | 3 +++ .../hudson/model/View/People/index_af.properties | 3 +++ .../hudson/model/View/newJob_af.properties | 4 ++++ .../hudson/model/View/sidepanel_af.properties | 9 +++++++++ .../scm/EmptyChangeLogSet/digest_af.properties | 3 +++ .../_entryForm_af.properties | 3 +++ .../loginLink_af.properties | 3 +++ .../SecurityRealm/loginLink_af.properties | 3 +++ .../hudson/tasks/LogRotator/config_af.properties | 6 ++++++ .../tasks/junit/ClassResult/body_af.properties | 5 +++++ .../tasks/test/TestObject/sidepanel_af.properties | 4 ++++ .../floatingBox_af.properties | 4 ++++ .../views/BuildButtonColumn/column_af.properties | 3 +++ .../DefaultViewsTabBar/viewTabs_af.properties | 3 +++ .../LastDurationColumn/columnHeader_af.properties | 3 +++ .../views/LastDurationColumn/column_af.properties | 3 +++ .../LastFailureColumn/columnHeader_af.properties | 3 +++ .../views/LastFailureColumn/column_af.properties | 3 +++ .../LastSuccessColumn/columnHeader_af.properties | 3 +++ .../views/LastSuccessColumn/column_af.properties | 3 +++ .../views/StatusColumn/columnHeader_af.properties | 3 +++ .../WeatherColumn/columnHeader_af.properties | 3 +++ .../BuildHistoryWidget/entries_af.properties | 3 +++ .../widgets/HistoryWidget/entry_af.properties | 3 +++ .../widgets/HistoryWidget/index_af.properties | 6 ++++++ .../jenkins/model/Jenkins/login_af.properties | 4 ++++ .../jenkins/model/Jenkins/manage_af.properties | 15 +++++++++++++++ .../resources/lib/form/advanced_af.properties | 3 +++ .../resources/lib/form/helpArea_af.properties | 3 +++ .../lib/hudson/buildCaption_af.properties | 4 ++++ .../lib/hudson/buildHealth_af.properties | 3 +++ .../lib/hudson/buildListTable_af.properties | 3 +++ .../lib/hudson/buildProgressBar_af.properties | 3 +++ .../lib/hudson/editableDescription_af.properties | 4 ++++ .../resources/lib/hudson/executors_af.properties | 8 ++++++++ .../resources/lib/hudson/iconSize_af.properties | 3 +++ .../lib/hudson/newFromList/form_af.properties | 3 +++ .../main/resources/lib/hudson/node_af.properties | 3 +++ .../project/upstream-downstream_af.properties | 4 ++++ .../main/resources/lib/hudson/queue_af.properties | 5 +++++ .../resources/lib/hudson/rssBar_af.properties | 6 ++++++ .../lib/layout/breadcrumbBar_af.properties | 4 ++++ .../resources/lib/layout/layout_af.properties | 8 ++++++++ 76 files changed, 318 insertions(+) create mode 100644 core/src/main/resources/hudson/PluginManager/checkUpdates_af.properties create mode 100644 core/src/main/resources/hudson/PluginManager/tabBar_af.properties create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_af.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/changes_af.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_af.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_af.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_af.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/changes_af.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_af.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_af.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_af.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UserIdCause/description_af.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/index_af.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/sidepanel_af.properties create mode 100644 core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_af.properties create mode 100644 core/src/main/resources/hudson/model/Fingerprint/index_af.properties create mode 100644 core/src/main/resources/hudson/model/Job/configure_af.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_af.properties create mode 100644 core/src/main/resources/hudson/model/Job/permalinks_af.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_af.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_af.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_af.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_af.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_af.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_af.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_af.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_af.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_af.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_af.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_af.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/index_af.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/sidepanel_af.properties create mode 100644 core/src/main/resources/hudson/model/User/sidepanel_af.properties create mode 100644 core/src/main/resources/hudson/model/View/AsynchPeople/index_af.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_af.properties create mode 100644 core/src/main/resources/hudson/model/View/newJob_af.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_af.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_af.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_af.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_af.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_af.properties create mode 100644 core/src/main/resources/hudson/tasks/LogRotator/config_af.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/ClassResult/body_af.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_af.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_af.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_af.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_af.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_af.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/column_af.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_af.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_af.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_af.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_af.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_af.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_af.properties create mode 100644 core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_af.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_af.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_af.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/login_af.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/manage_af.properties create mode 100644 core/src/main/resources/lib/form/advanced_af.properties create mode 100644 core/src/main/resources/lib/form/helpArea_af.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_af.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_af.properties create mode 100644 core/src/main/resources/lib/hudson/buildListTable_af.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_af.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_af.properties create mode 100644 core/src/main/resources/lib/hudson/executors_af.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_af.properties create mode 100644 core/src/main/resources/lib/hudson/newFromList/form_af.properties create mode 100644 core/src/main/resources/lib/hudson/node_af.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_af.properties create mode 100644 core/src/main/resources/lib/hudson/queue_af.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_af.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_af.properties create mode 100644 core/src/main/resources/lib/layout/layout_af.properties diff --git a/core/src/main/resources/hudson/PluginManager/checkUpdates_af.properties b/core/src/main/resources/hudson/PluginManager/checkUpdates_af.properties new file mode 100644 index 0000000000..b99ae9335e --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/checkUpdates_af.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Checking\ Updates...=Kontroleer vir bywerkings... +Done=Klaar +Go\ back\ to\ update\ center=Terug na die bywerkingsentrum diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_af.properties b/core/src/main/resources/hudson/PluginManager/tabBar_af.properties new file mode 100644 index 0000000000..1c4dcfeeaf --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/tabBar_af.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Advanced=Bevorderd +Available=Beskikbaar +Installed=Geinstaleer diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_af.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_af.properties new file mode 100644 index 0000000000..bf7f2aa499 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_af.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Dismiss=Gaan weg +More\ Info=Meer informasie +blurb=Dit skyn dat jou agteruit proxy instelling gebreek is diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_af.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_af.properties new file mode 100644 index 0000000000..5a4a7cafae --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=\u05E9\u05D9\u05E0\u05D5\u05D9\u05D9\u05DD diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_af.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_af.properties new file mode 100644 index 0000000000..093c0d436b --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_af.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Build=\u05D1\u05E0\u05D9\u05D4 +Took=\u05E0\u05DE\u05E9\u05DA +on=\u05D1 +startedAgo=\u05D4\u05EA\u05D7\u05D9\u05DC \u05DC\u05E4\u05E0\u05D9 {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_af.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_af.properties new file mode 100644 index 0000000000..a3f8eea214 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_af.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Next\ Build=\u05D1\u05E0\u05D9\u05D4 \u05D4\u05D1\u05D0\u05D4 +Previous\ Build=Vorige Bou diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_af.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_af.properties new file mode 100644 index 0000000000..a4ab1ecd0d --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_af.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Back\ to\ Project=Terug na Projek +Changes=Veranderinge +Console\ Output=Konsole Uitdruk +Edit\ Build\ Information=Verander Bou Informasie +View\ Build\ Information=\u05E4\u05E8\u05D8\u05D9 \u05D1\u05E0\u05D9\u05D4 +View\ as\ plain\ text=Visualizar como texto pleno +raw=\u05D2\u05D5\u05DC\u05DE\u05D9 diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_af.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_af.properties new file mode 100644 index 0000000000..6eeae671f3 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=Veranderinge diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_af.properties b/core/src/main/resources/hudson/model/AbstractProject/main_af.properties new file mode 100644 index 0000000000..7814687aff --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_af.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Last\ Successful\ Artifacts=Laaste Suksesvolle Artifacts +Latest\ Test\ Result=Jongste toetsresultaat +Recent\ Changes=Onlangse veranderinge +Workspace=Werkspasie diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_af.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_af.properties new file mode 100644 index 0000000000..87e7d18002 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_af.properties @@ -0,0 +1,10 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=Terug na Vertoonbord +Build\ scheduled=Bou geskeduleer +Changes=Veranderinge +Configure=Konfigureer +Status=My Test +Wipe\ Out\ Workspace=Vee werkspasie uit +Workspace=Werkspasie +delete=Verwyder {0} diff --git a/core/src/main/resources/hudson/model/AllView/noJob_af.properties b/core/src/main/resources/hudson/model/AllView/noJob_af.properties new file mode 100644 index 0000000000..4643273016 --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_af.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Welcome\ to\ Jenkins!=welkom chinees +newJob=Graag startie hier diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_af.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_af.properties new file mode 100644 index 0000000000..14f48caf76 --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +started_by_anonymous=\u05D4\u05D5\u05EA\u05D7\u05DC \u05D1\u05D9\u05D3\u05D9 \u05DE\u05E9\u05EA\u05DE\u05E9 \u05D0\u05E0\u05D5\u05E0\u05D9\u05DE\u05D9 diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_af.properties b/core/src/main/resources/hudson/model/ComputerSet/index_af.properties new file mode 100644 index 0000000000..f3d5a277f1 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/index_af.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Configure=Konfigureer +Name=Naam +Refresh\ status=Vervars status diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_af.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_af.properties new file mode 100644 index 0000000000..4efb7b4ac5 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_af.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=Terug na Dashboard +Configure=Konfigureer +Manage\ Jenkins=Konfigureer Jenkins +New\ Node=Nuwe Node diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_af.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_af.properties new file mode 100644 index 0000000000..f5bb09dcac --- /dev/null +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_af.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +all\ files\ in\ zip=alle leers in zip +view=kyk diff --git a/core/src/main/resources/hudson/model/Fingerprint/index_af.properties b/core/src/main/resources/hudson/model/Fingerprint/index_af.properties new file mode 100644 index 0000000000..0e0b09aa1c --- /dev/null +++ b/core/src/main/resources/hudson/model/Fingerprint/index_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Usage=Gebruike diff --git a/core/src/main/resources/hudson/model/Job/configure_af.properties b/core/src/main/resources/hudson/model/Job/configure_af.properties new file mode 100644 index 0000000000..ea6b63b07e --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/configure_af.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Description=Beskrywing +Discard\ Old\ Builds=Gooi Ou Boue Weg +LOADING=BESIG OM TE LAAI +name={0} naam diff --git a/core/src/main/resources/hudson/model/Job/index_af.properties b/core/src/main/resources/hudson/model/Job/index_af.properties new file mode 100644 index 0000000000..5c47cc4c79 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Disable\ Project=Deaktiveer projek diff --git a/core/src/main/resources/hudson/model/Job/permalinks_af.properties b/core/src/main/resources/hudson/model/Job/permalinks_af.properties new file mode 100644 index 0000000000..b448a725c5 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/permalinks_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Permalinks=Permanenteskakels diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_af.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_af.properties new file mode 100644 index 0000000000..3abe00f366 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Add\ Parameter=Voeg Parameter by diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_af.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_af.properties new file mode 100644 index 0000000000..cc457ba4c9 --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +format=sfsdfsf diff --git a/core/src/main/resources/hudson/model/Run/console_af.properties b/core/src/main/resources/hudson/model/Run/console_af.properties new file mode 100644 index 0000000000..f78aa9345e --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_af.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Console\ Output=Th\u00F4ng tin \u0111\u1EA7u ra +View\ as\ plain\ text=Besigtig in eenvoudige skrif diff --git a/core/src/main/resources/hudson/model/Run/delete_af.properties b/core/src/main/resources/hudson/model/Run/delete_af.properties new file mode 100644 index 0000000000..ad6d737798 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete\ this\ build=\u05DE\u05D7\u05E7 \u05D1\u05E0\u05D9\u05D4 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_af.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_af.properties new file mode 100644 index 0000000000..f942e6ed21 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Preparation=Voorbereiding diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_af.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_af.properties new file mode 100644 index 0000000000..496dbf648d --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +NewVersionAvailable=Nuwe weergawe van Jenkins ({0}) is beskikbaar om afgelaai te worrd (changelog). diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_af.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_af.properties new file mode 100644 index 0000000000..3bad85913f --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Installing=Besig met installasie diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_af.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_af.properties new file mode 100644 index 0000000000..251887be3f --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Pending=Hangend diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_af.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_af.properties new file mode 100644 index 0000000000..251887be3f --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Pending=Hangend diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_af.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_af.properties new file mode 100644 index 0000000000..2be226e2f1 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Restarting\ Jenkins=Herbegin Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_af.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_af.properties new file mode 100644 index 0000000000..9a1880555f --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_af.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Go\ back\ to\ the\ top\ page=Terug na die bokant van die bladsy +warning=Herbegin Jenkins sodra die installasie klaar is en geen take besig is om te hardloop nie +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=Jy kan dadelik die invoegsels gebruik diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_af.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_af.properties new file mode 100644 index 0000000000..fe375efead --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Installing\ Plugins/Upgrades=Installeer Invoegsels/Opdatering diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_af.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_af.properties new file mode 100644 index 0000000000..ba0e659ef5 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_af.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=Terug na Beheerbord +Manage\ Jenkins=Beheer Jenkins +Manage\ Plugins=Beheer Invoegsels diff --git a/core/src/main/resources/hudson/model/User/sidepanel_af.properties b/core/src/main/resources/hudson/model/User/sidepanel_af.properties new file mode 100644 index 0000000000..ba583beff7 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/sidepanel_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +People=nokia diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_af.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_af.properties new file mode 100644 index 0000000000..111879208d --- /dev/null +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=Sureka diff --git a/core/src/main/resources/hudson/model/View/People/index_af.properties b/core/src/main/resources/hudson/model/View/People/index_af.properties new file mode 100644 index 0000000000..6af9403890 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Active=\u05E4\u05E2\u05D9\u05DC\u05D5\u05EA \u05D0\u05D7\u05E8\u05D5\u05E0\u05D4 diff --git a/core/src/main/resources/hudson/model/View/newJob_af.properties b/core/src/main/resources/hudson/model/View/newJob_af.properties new file mode 100644 index 0000000000..e718e6806f --- /dev/null +++ b/core/src/main/resources/hudson/model/View/newJob_af.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +CopyExisting=Kopieer bestaande {0} +JobName={0} naam diff --git a/core/src/main/resources/hudson/model/View/sidepanel_af.properties b/core/src/main/resources/hudson/model/View/sidepanel_af.properties new file mode 100644 index 0000000000..d5acaa841e --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_af.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Build\ History=Bou Geskiedenis +Check\ File\ Fingerprint=Ondersoek File Vingerafdruk +Delete\ View=Verwyder Aanblik +Edit\ View=Verander Aanblik +NewJob=Nuut {0} +People=Mense +Project\ Relationship=Project relatie diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_af.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_af.properties new file mode 100644 index 0000000000..688d9d60bf --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ changes.=\u05D0\u05D9\u05DF \u05E9\u05D9\u05E0\u05D5\u05D9\u05D9\u05DD. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_af.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_af.properties new file mode 100644 index 0000000000..1c30003173 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +E-mail\ address=My Email ID diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_af.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_af.properties new file mode 100644 index 0000000000..9aea70300a --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +sign\ up=\u05D4\u05E8\u05E9\u05DD diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_af.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_af.properties new file mode 100644 index 0000000000..5bc4c86287 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +login=\u0648\u0631\u0648\u062F diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_af.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_af.properties new file mode 100644 index 0000000000..803b188982 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_af.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Days\ to\ keep\ builds=Dae om boue te hou +Max\ #\ of\ builds\ to\ keep=Maksimum # boue om te hou +if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=as nie leeg is nie, word bou rekords net gehou vir hierdie hoeveelheid dae +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=as nie leeg is nie, word net hierdie nommer bou rekords gehou diff --git a/core/src/main/resources/hudson/tasks/junit/ClassResult/body_af.properties b/core/src/main/resources/hudson/tasks/junit/ClassResult/body_af.properties new file mode 100644 index 0000000000..0f855469bd --- /dev/null +++ b/core/src/main/resources/hudson/tasks/junit/ClassResult/body_af.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +All\ Tests=Alle Toetse +Duration=Durasie +Test\ name=Toets naam diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_af.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_af.properties new file mode 100644 index 0000000000..c7803dceb0 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_af.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +History=Geskiedenis +Previous\ Build=Vorige Boue diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_af.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_af.properties new file mode 100644 index 0000000000..7ba373225a --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_af.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +enlarge=vergroot +just\ show\ failures=vertoon net die boue wat nie geslaag het nie diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_af.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_af.properties new file mode 100644 index 0000000000..c97cd3d058 --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Schedule\ a\ build=Skeduleer ''n bou diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_af.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_af.properties new file mode 100644 index 0000000000..4c63cf39d0 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +New\ View=Nuwe Aanblik diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_af.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_af.properties new file mode 100644 index 0000000000..505f397ed2 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Duration=Laste Durasie diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_af.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_af.properties new file mode 100644 index 0000000000..d13e80da3f --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=\u05DC\u05D0 \u05E7\u05D9\u05D9\u05DD diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_af.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_af.properties new file mode 100644 index 0000000000..043e2029dc --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Failure=\u0622\u062E\u0631\u06CC\u0646 \u0634\u06A9\u0633\u062A diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_af.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_af.properties new file mode 100644 index 0000000000..21ebb6f6cb --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=\u0641\u0627\u0642\u062F \u0645\u0648\u0636\u0648\u0639\u06CC\u062A diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_af.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_af.properties new file mode 100644 index 0000000000..6755db4271 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Success=Laste Sukses diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_af.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_af.properties new file mode 100644 index 0000000000..d13e80da3f --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=\u05DC\u05D0 \u05E7\u05D9\u05D9\u05DD diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_af.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_af.properties new file mode 100644 index 0000000000..a957f09c81 --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Status\ of\ the\ last\ build=\u0648\u0636\u0639\u06CC\u062A \u0622\u062E\u0631\u06CC\u0646 \u0633\u0627\u062E\u062A diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_af.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_af.properties new file mode 100644 index 0000000000..d11265323c --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u06AF\u0632\u0627\u0631\u0634 \u0648\u0636\u0639\u06CC\u062A \u0622\u0628 \u0648 \u0647\u0648\u0627 \u060C \u0646\u0634\u0627\u0646\u06AF\u0631 \u0648\u0636\u0639\u06CC\u062A \u062A\u062C\u0645\u06CC\u0639\u06CC \u0633\u0627\u062E\u062A \u0647\u0627\u06CC \u0627\u062E\u06CC\u0631 diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_af.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_af.properties new file mode 100644 index 0000000000..a9096af7e9 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +cancel\ this\ build=kaseleer die bou diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_af.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_af.properties new file mode 100644 index 0000000000..8efbb30c56 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Console\ Output=Konsole uitdruk diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_af.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_af.properties new file mode 100644 index 0000000000..872c199597 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_af.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +More\ ...=Meer... +for\ all=vir alles +for\ failures=vir mislukkings +trend=neiging diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_af.properties b/core/src/main/resources/jenkins/model/Jenkins/login_af.properties new file mode 100644 index 0000000000..71df1f4b3e --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/login_af.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Password=namvc@123 +User=namvc diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_af.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_af.properties new file mode 100644 index 0000000000..ccb3b1ce5d --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_af.properties @@ -0,0 +1,15 @@ +# This file is under the MIT License by authors + +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Voeg by, haal uit, skiet in knie of maak stoppels beskikbaar wat die funksionaliteit van Jenkins van vermeerder. +Configure\ System=Konfigureer Stelsel +Configure\ global\ settings\ and\ paths.=Konfigureer globale instellings en roetes +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Gooi alle gelaaide data in geheue weg en herlaai alles vanaf die leer stelsel. +Load\ Statistics=Laai Statistieke +Manage\ Jenkins=Beheer Jenkins +Manage\ Nodes=Beheer Nodules +Manage\ Plugins=Hanteer Stoppels +Prepare\ for\ Shutdown=Beredig vir Afsit +Reload\ Configuration\ from\ Disk=Herlaai konfigurasie vanaf Hardeskyf +System\ Information=Stelsel Informasie +System\ Log=Stelsel Stomp +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Nuttig as jy konfigurasie leers direk op skyf verander het diff --git a/core/src/main/resources/lib/form/advanced_af.properties b/core/src/main/resources/lib/form/advanced_af.properties new file mode 100644 index 0000000000..79f2a4915d --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Advanced=Gevorderd diff --git a/core/src/main/resources/lib/form/helpArea_af.properties b/core/src/main/resources/lib/form/helpArea_af.properties new file mode 100644 index 0000000000..9b5d50188d --- /dev/null +++ b/core/src/main/resources/lib/form/helpArea_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Loading...=Laai... diff --git a/core/src/main/resources/lib/hudson/buildCaption_af.properties b/core/src/main/resources/lib/hudson/buildCaption_af.properties new file mode 100644 index 0000000000..595fee8b12 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_af.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Progress=Vordering +cancel=kanselleer diff --git a/core/src/main/resources/lib/hudson/buildHealth_af.properties b/core/src/main/resources/lib/hudson/buildHealth_af.properties new file mode 100644 index 0000000000..8a23113335 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Description=Beskrywing diff --git a/core/src/main/resources/lib/hudson/buildListTable_af.properties b/core/src/main/resources/lib/hudson/buildListTable_af.properties new file mode 100644 index 0000000000..3424601391 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildListTable_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Status=\u05E1\u05D8\u05D8\u05D5\u05E1 diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_af.properties b/core/src/main/resources/lib/hudson/buildProgressBar_af.properties new file mode 100644 index 0000000000..bb1fcbb5ad --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +text="{0} terug begin
Geskatte oorblywende tyd: {1}" diff --git a/core/src/main/resources/lib/hudson/editableDescription_af.properties b/core/src/main/resources/lib/hudson/editableDescription_af.properties new file mode 100644 index 0000000000..d068ffd89e --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_af.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +add\ description=voeg beskrywing by +edit\ description=verander beskrywing diff --git a/core/src/main/resources/lib/hudson/executors_af.properties b/core/src/main/resources/lib/hudson/executors_af.properties new file mode 100644 index 0000000000..348e1cc1b2 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_af.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Build\ Executor\ Status=\u0648\u0636\u0639\u06CC\u062A \u0645\u062C\u0631\u06CC \u0633\u0627\u062E\u062A +Building=Besig om te bou +Idle=Sit en doen niks +Master=Hoof +offline=van lyn af +terminate\ this\ build=maak hierdie bou dood diff --git a/core/src/main/resources/lib/hudson/iconSize_af.properties b/core/src/main/resources/lib/hudson/iconSize_af.properties new file mode 100644 index 0000000000..8e5fb4ca74 --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Icon=Ikoon diff --git a/core/src/main/resources/lib/hudson/newFromList/form_af.properties b/core/src/main/resources/lib/hudson/newFromList/form_af.properties new file mode 100644 index 0000000000..c5bdc1cbaf --- /dev/null +++ b/core/src/main/resources/lib/hudson/newFromList/form_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Copy\ from=Kopieer van diff --git a/core/src/main/resources/lib/hudson/node_af.properties b/core/src/main/resources/lib/hudson/node_af.properties new file mode 100644 index 0000000000..9af9d68d6e --- /dev/null +++ b/core/src/main/resources/lib/hudson/node_af.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +master=\u05E8\u05D0\u05E9\u05D9 diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_af.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_af.properties new file mode 100644 index 0000000000..5d53408d78 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_af.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Downstream\ Projects=Projekte stroomaf +Upstream\ Projects=Projekte stroomop diff --git a/core/src/main/resources/lib/hudson/queue_af.properties b/core/src/main/resources/lib/hudson/queue_af.properties new file mode 100644 index 0000000000..289113dc1d --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_af.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Build\ Queue=\u0635\u0641 \u0633\u0627\u062E\u062A +No\ builds\ in\ the\ queue.=\u0633\u0627\u062E\u062A\u06CC \u062F\u0631 \u0635\u0641 \u0645\u0648\u062C\u0648\u062F \u0646\u06CC\u0633\u062A +WaitingFor=Wag vir {0} diff --git a/core/src/main/resources/lib/hudson/rssBar_af.properties b/core/src/main/resources/lib/hudson/rssBar_af.properties new file mode 100644 index 0000000000..4f52c00523 --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_af.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Legend=Legende +for\ all=vir alles +for\ failures=\u0628\u0631\u0627\u06CC \u0634\u06A9\u0633\u062A \u0647\u0627 +for\ just\ latest\ builds=\u0628\u0631\u0627\u06CC \u0641\u0642\u0637 \u0622\u062E\u0631\u06CC\u0646 \u0633\u0627\u062E\u062A\u0647\u0627 diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_af.properties b/core/src/main/resources/lib/layout/breadcrumbBar_af.properties new file mode 100644 index 0000000000..d038a5dcb7 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_af.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=\u05D1\u05D8\u05DC \u05E8\u05E2\u05E0\u05D5\u05DF \u05D0\u05D5\u05D8\u05D5\u05DE\u05D8\u05D9 +ENABLE\ AUTO\ REFRESH=\u05D0\u05E4\u05E9\u05E8 \u05E2\u05D3\u05DB\u05D5\u05DF \u05D0\u05D5\u05D8\u05D5\u05DE\u05D8\u05D9 diff --git a/core/src/main/resources/lib/layout/layout_af.properties b/core/src/main/resources/lib/layout/layout_af.properties new file mode 100644 index 0000000000..1e5cc6411f --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_af.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=SKAKEL OUTOMATIESE VERVARS AF +ENABLE\ AUTO\ REFRESH=SIT AUTOMATIESE VERVARS AAN +Page\ generated=Bladsy gegeneer +logout=\u0110\u0103ng xu\u1EA5t +search=\u0625\u0628\u062D\u062B +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -- GitLab From a3b6a19f707864400ce45e1c932b854dd5cbfaa7 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:53 -0700 Subject: [PATCH 029/308] Community-contributed localization for Arabic (ar) --- .../hudson/PluginManager/tabBar_ar.properties | 6 ++++++ .../hudson/PluginManager/table_ar.properties | 6 ++++++ .../diagnosis/OldDataMonitor/manage_ar.properties | 15 +++++++++++++++ .../matrix/MatrixProject/index_ar.properties | 3 +++ .../MatrixProject/newJobDetail_ar.properties | 3 +++ .../model/AbstractBuild/changes_ar.properties | 3 +++ .../model/AbstractBuild/index_ar.properties | 7 +++++++ .../model/AbstractBuild/sidepanel_ar.properties | 4 ++++ .../model/AbstractBuild/tasks_ar.properties | 9 +++++++++ .../model/AbstractItem/delete_ar.properties | 4 ++++ .../model/AbstractItem/noWorkspace_ar.properties | 4 ++++ .../model/AbstractProject/changes_ar.properties | 3 +++ .../model/AbstractProject/main_ar.properties | 6 ++++++ .../AbstractProject/makeDisabled_ar.properties | 3 +++ .../model/AbstractProject/sidepanel_ar.properties | 10 ++++++++++ .../hudson/model/AllView/noJob_ar.properties | 4 ++++ .../Cause/UserCause/description_ar.properties | 3 +++ .../FreeStyleProject/newJobDetail_ar.properties | 3 +++ .../hudson/model/Job/index_ar.properties | 5 +++++ .../hudson/model/Job/permalinks_ar.properties | 3 +++ .../Permalink/link_ar.properties | 3 +++ .../hudson/model/Run/configure_ar.properties | 6 ++++++ .../hudson/model/Run/console_ar.properties | 4 ++++ .../hudson/model/Run/delete_ar.properties | 3 +++ .../hudson/model/Run/logKeep_ar.properties | 3 +++ .../hudson/model/View/People/index_ar.properties | 7 +++++++ .../hudson/model/View/builds_ar.properties | 4 ++++ .../hudson/model/View/configure_ar.properties | 6 ++++++ .../hudson/model/View/newJob_ar.properties | 4 ++++ .../hudson/model/View/sidepanel_ar.properties | 12 +++++++----- .../scm/EmptyChangeLogSet/digest_ar.properties | 3 +++ .../hudson/scm/SCM/project-changes_ar.properties | 4 ++++ .../loginLink_ar.properties | 3 +++ .../SecurityRealm/loginLink_ar.properties | 3 +++ .../test/MetaTabulatedResult/body_ar.properties | 12 ++++++++++++ .../tasks/test/TestObject/sidepanel_ar.properties | 5 +++++ .../tasks/test/TestResult/index_ar.properties | 3 +++ .../views/BuildButtonColumn/column_ar.properties | 1 + .../DefaultViewsTabBar/viewTabs_ar.properties | 2 +- .../LastDurationColumn/columnHeader_ar.properties | 2 +- .../views/LastDurationColumn/column_ar.properties | 3 +++ .../LastFailureColumn/columnHeader_ar.properties | 2 +- .../LastSuccessColumn/columnHeader_ar.properties | 2 +- .../views/StatusColumn/columnHeader_ar.properties | 2 +- .../WeatherColumn/columnHeader_ar.properties | 2 +- .../widgets/HistoryWidget/entry_ar.properties | 3 +++ .../widgets/HistoryWidget/index_ar.properties | 6 ++++++ .../jenkins/model/Jenkins/legend_ar.properties | 15 +++++++++++++++ .../form/breadcrumb-config-outline_ar.properties | 3 +++ .../resources/lib/form/helpArea_ar.properties | 3 +++ .../resources/lib/form/textarea_ar.properties | 4 ++++ .../lib/hudson/buildCaption_ar.properties | 4 ++++ .../lib/hudson/buildListTable_ar.properties | 6 ++++++ .../lib/hudson/buildProgressBar_ar.properties | 3 +++ .../lib/hudson/editableDescription_ar.properties | 3 ++- .../resources/lib/hudson/executors_ar.properties | 10 +++++++--- .../resources/lib/hudson/iconSize_ar.properties | 2 +- .../lib/hudson/project/matrix_ar.properties | 3 +++ .../project/upstream-downstream_ar.properties | 4 ++++ .../main/resources/lib/hudson/queue_ar.properties | 5 +++-- .../lib/hudson/test-result_ar.properties | 3 +++ .../lib/layout/breadcrumbBar_ar.properties | 3 +++ .../resources/lib/layout/layout_ar.properties | 6 +++--- .../src/main/resources/lib/test/bar_ar.properties | 4 ++++ 64 files changed, 274 insertions(+), 21 deletions(-) create mode 100644 core/src/main/resources/hudson/PluginManager/tabBar_ar.properties create mode 100644 core/src/main/resources/hudson/PluginManager/table_ar.properties create mode 100644 core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_ar.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/index_ar.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_ar.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/changes_ar.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_ar.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ar.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_ar.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/delete_ar.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ar.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/changes_ar.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_ar.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ar.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_ar.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_ar.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UserCause/description_ar.properties create mode 100644 core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_ar.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_ar.properties create mode 100644 core/src/main/resources/hudson/model/Job/permalinks_ar.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ar.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_ar.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_ar.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_ar.properties create mode 100644 core/src/main/resources/hudson/model/Run/logKeep_ar.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_ar.properties create mode 100644 core/src/main/resources/hudson/model/View/builds_ar.properties create mode 100644 core/src/main/resources/hudson/model/View/configure_ar.properties create mode 100644 core/src/main/resources/hudson/model/View/newJob_ar.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ar.properties create mode 100644 core/src/main/resources/hudson/scm/SCM/project-changes_ar.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ar.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_ar.properties create mode 100644 core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_ar.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_ar.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResult/index_ar.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/column_ar.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_ar.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_ar.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/legend_ar.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_ar.properties create mode 100644 core/src/main/resources/lib/form/helpArea_ar.properties create mode 100644 core/src/main/resources/lib/form/textarea_ar.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_ar.properties create mode 100644 core/src/main/resources/lib/hudson/buildListTable_ar.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_ar.properties create mode 100644 core/src/main/resources/lib/hudson/project/matrix_ar.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_ar.properties create mode 100644 core/src/main/resources/lib/hudson/test-result_ar.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_ar.properties create mode 100644 core/src/main/resources/lib/test/bar_ar.properties diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_ar.properties b/core/src/main/resources/hudson/PluginManager/tabBar_ar.properties new file mode 100644 index 0000000000..a9d4d5c73a --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/tabBar_ar.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Advanced=\u0645\u062A\u0642\u062F\u0645 +Available=\u0645\u062A\u0648\u0641\u0631 +Installed=\u0645\u062B\u0628\u062A +Updates=\u062A\u062D\u062F\u064A\u062B diff --git a/core/src/main/resources/hudson/PluginManager/table_ar.properties b/core/src/main/resources/hudson/PluginManager/table_ar.properties new file mode 100644 index 0000000000..d6942c8f10 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/table_ar.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Check\ to\ install\ the\ plugin=\u0625\u062E\u062A\u0631 \u0627\u0644\u0634\u0631\u062D \u0644\u062A\u062B\u0628\u064A\u062A \u0627\u0644\u0627\u0636\u0627\u0641\u0647 +Filter=\u0641\u0644\u062A\u0631 +Install=\u062B\u0628\u062A +Name=\u0625\u0633\u0645 diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_ar.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_ar.properties new file mode 100644 index 0000000000..ef8848abae --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_ar.properties @@ -0,0 +1,15 @@ +# This file is under the MIT License by authors + +Discard\ Unreadable\ Data=\u062A\u062C\u0627\u0647\u0644 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u063A\u064A\u0631 \u0645\u0642\u0631\u0648\u0621\u0629 +Error=\u062E\u0637\u0623 +Manage\ Old\ Data=\u0625\u062F\u0627\u0631\u0629 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062A \u0627\u0644\u0642\u062F\u064A\u0645\u0629 +Name=\u0627\u0644\u0627\u0633\u0645 +No\ old\ data\ was\ found.=\u0644\u0645 \u064A\u062A\u0645 \u0625\u064A\u062C\u0627\u062F \u0628\u064A\u0627\u0646\u0627\u062A \u0642\u062F\u064A\u0645\u0629. +Type=\u0627\u0644\u0646\u0648\u0639 +Unreadable\ Data=\u0628\u064A\u0627\u0646\u0627\u062A \u063A\u064A\u0631 \u0645\u0642\u0631\u0648\u0621\u0629 +Version=\u0631\u0642\u0645 \u0627\u0644\u0625\u0635\u062F\u0627\u0631 +blurb.1=\u0639\u0646\u062F \u062D\u062F\u0648\u062B \u062A\u063A\u064A\u064A\u0631 \u0628\u0628\u0646\u064A\u0629 \u062A\u062E\u0632\u064A\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062A \u0639\u0644\u0649 \u0627\u0644\u0642\u0631\u0635\u060C \u064A\u0642\u0648\u0645 \u062C\u0646\u0643\u0646\u0632 \u0628\u0627\u062A\u0628\u0627\u0639 \u0627\u0644\u0627\u0633\u062A\u0631\u0627\u062A\u064A\u062C\u064A\u0629 \u0627\u0644\u062A\u0627\u0644\u064A\u0629: \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062A \u062A\u0631\u062D\u0644 \u0625\u0644\u0649 \u0627\u0644\u0628\u0646\u064A\u0629 \u0627\u0644\u062C\u062F\u064A\u062F\u0629 \u0639\u0646\u062F \u062A\u062D\u0645\u064A\u0644\u0647\u0627\u060C \u0648\u0644\u0643\u0646 \u0627\u0644\u0645\u0644\u0641\u0627\u062A \u0644\u0646 \u064A\u0639\u0627\u062F \u062D\u0641\u0638\u0647\u0627 \u0639\u0644\u0649 \u0634\u0643\u0644 \u0627\u0644\u0628\u0646\u064A\u0629 \u0627\u0644\u062C\u062F\u064A\u062F\u0629. \u0647\u0630\u0627 \u064A\u0633\u0645\u062D \u0628\u0625\u0639\u0627\u062F\u0629 \u0644\u062C\u0646\u0643\u0646\u0632 \u0628\u0627\u0644\u0639\u0648\u062F\u0629 \u0644\u0644\u0633\u0627\u0628\u0642 \u0639\u0646\u062F \u0627\u0644\u062D\u0627\u062C\u0629. \u0648\u0644\u0643\u0646\u0647\u0627 \u062A\u0628\u0642\u064A \u0639\u0644\u0649 \u0627\u0644\u0645\u0644\u0641\u0627\u062A \u0627\u0644\u0645\u062D\u062A\u0648\u064A\u0629 \u0639\u0644\u0649 \u0628\u064A\u0627\u0646\u0627\u062A \u0628\u0627\u0644\u0628\u0646\u064A\u0629 \u0627\u0644\u0642\u062F\u064A\u0645\u0629. \u0627\u0644\u062C\u062F\u0648\u0644 \u0628\u0627\u0644\u0623\u0633\u0641\u0644 \u064A\u0633\u0631\u062F \u0627\u0644\u0645\u0644\u0641\u0627\u062A \u0627\u0644\u0645\u062D\u062A\u0648\u064A\u0629 \u0639\u0644\u0649 \u062A\u0644\u0643 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A\u060C \u0631\u0642\u0645 \u0625\u0635\u062F\u0627\u0631 \u062C\u0646\u0643\u0646\u0632 \u0627\u0644\u0630\u064A \u062D\u062F\u062B \u0641\u064A\u0647 \u0627\u0644\u062A\u063A\u064A\u064A\u0631. +blurb.2=\u0623\u062D\u064A\u0627\u0646\u0627\u064B \u062A\u062D\u062F\u062B \u0623\u062E\u0637\u0627\u0621 \u0639\u0646\u062F \u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A (\u0639\u0646\u062F\u0645\u0627 \u062A\u0636\u064A\u0641 \u0625\u0636\u0627\u0641\u0629 \u062C\u0646\u0643\u0646\u0632 \u0628\u064A\u0627\u0646\u0627\u062A \u0648\u0644\u0627\u062D\u0642\u0627\u064B \u064A\u062A\u0645 \u062A\u0639\u0637\u064A\u0644 \u0627\u0644\u0625\u0636\u0627\u0641\u0629\u060C \u0625\u0630\u0627 \u0644\u0645 \u064A\u062A\u0645 \u0643\u062A\u0627\u0628\u0629 \u0646\u0635 \u0645\u0635\u062F\u0631\u064A \u0644\u062A\u0631\u062D\u064A\u0644 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0644\u0644\u0628\u0646\u064A\u0629 \u0627\u0644\u062C\u062F\u064A\u062F\u0629\u060C \u0623\u0648 \u0625\u0630\u0627 \u062A\u0645 \u0627\u0633\u062A\u0631\u062C\u0627\u0639 \u062C\u0646\u0643\u0646\u0632 \u0644\u0646\u0633\u062E\u0629 \u0633\u0627\u0628\u0642\u0629 \u0628\u0639\u062F \u0623\u0646 \u062A\u0645 \u062D\u0641\u0638 \u0628\u064A\u0627\u0646\u0627\u062A \u0644\u0646 \u062A\u0633\u062A\u0637\u064A\u0639 \u0627\u0644\u0646\u0633\u062E\u0629 \u0627\u0644\u0633\u0627\u0628\u0642\u0629 \u0642\u0631\u0627\u0621\u062A\u0647\u0627). \u0647\u0630\u0647 \u0627\u0644\u0623\u062E\u0637\u0627\u0621 \u064A\u062A\u0645 \u062A\u0633\u062C\u064A\u0644\u0647\u0627\u060C ,\u0648\u064A\u062A\u0645 \u062A\u062C\u0627\u0647\u0644 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u062A\u064A \u0644\u0627\u064A\u0645\u0643\u0646 \u0642\u0631\u0627\u0621\u062A\u0647\u0627\u060C \u0645\u0645\u0627 \u064A\u0633\u0645\u062D \u0644\u062C\u0646\u0643\u0646\u0632 \u0628\u0645\u062A\u0627\u0628\u0639\u0629 \u0627\u0644\u0639\u0645\u0644 \u0628\u0634\u0643\u0644 \u062C\u064A\u062F. +blurb.3=\u0627\u0644\u0646\u0645\u0648\u0630\u062C \u0628\u0627\u0644\u0623\u0633\u0641\u0644 \u064A\u0645\u0643\u0646 \u0627\u0633\u062A\u062E\u062F\u0627\u0645\u0647 \u0644\u0625\u0639\u0627\u062F\u0629 \u062D\u0641\u0638 \u0647\u0630\u0647 \u0627\u0644\u0645\u0644\u0641\u0627\u062A \u0628\u0627\u0644\u0628\u0646\u064A\u0629 \u0627\u0644\u062C\u062F\u064A\u062F\u0629. \u0628\u0647\u0630\u0647 \u0627\u0644\u0637\u0631\u064A\u0642\u0629 \u0644\u0646 \u064A\u0633\u062A\u0637\u064A\u0639 \u062C\u0646\u0643\u0646\u0632 \u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0628\u0627\u0644\u0628\u0646\u064A\u0629 \u0627\u0644\u062C\u062F\u064A\u062F\u0629 \u0641\u064A \u062D\u0627\u0644 \u0627\u0633\u062A\u0631\u062C\u0627\u0639\u0647 \u0644\u0646\u0633\u062E\u0629 \u0633\u0627\u0628\u0642\u0629. \u0627\u0646\u062A\u0628\u0647 \u0623\u0646\u0647 \u0628\u0645\u062C\u0631\u062F \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u062C\u0646\u0643\u0646\u0632 \u0644\u0644\u0628\u0646\u0627\u0621 \u0648\u0636\u0628\u0637 \u0627\u0644\u0628\u0646\u0627\u0621 \u064A\u0645\u0643\u0646 \u0623\u0646 \u064A\u0646\u062A\u062C \u0628\u062D\u0641\u0638 \u0628\u064A\u0627\u0646\u0627\u062A \u0644\u0627\u064A\u0645\u0643\u0646 \u0642\u0631\u0627\u0621\u062A\u0647\u0627 \u0641\u064A \u0627\u0644\u0646\u0633\u062E \u0627\u0644\u0633\u0627\u0628\u0642\u0629 \u0644\u062C\u0646\u0643\u0646\u0632. \u0648\u0641\u064A \u062D\u0627\u0644 \u062D\u062F\u0648\u062B \u0623\u064A \u062E\u0637\u0623 \u0648\u0637\u0628\u0639\u0647 \u0641\u064A \u0627\u0644\u062C\u062F\u0648\u0644 \u0628\u0627\u0644\u0623\u0639\u0644\u0649 \u0633\u064A\u062A\u0645 \u0645\u0633\u062D \u0647\u0630\u0647 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0639\u0646\u062F \u0625\u0639\u0627\u062F\u0629 \u062D\u0641\u0638 \u0627\u0644\u0645\u0644\u0641. +blurb.4=\u0628\u0634\u0643\u0644 \u062F\u0648\u0631\u064A \u064A\u062A\u0645 \u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0646\u0635 \u0627\u0644\u0645\u0635\u062F\u0631\u064A \u0644\u062F\u0639\u0645 \u062A\u0631\u062D\u064A\u0644 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A. \u0627\u0644\u062A\u0648\u0627\u0641\u0642\u064A\u0629 \u062A\u0628\u0642\u0649 \u062D\u062A\u0649 150 \u0625\u0635\u062F\u0627\u0631 \u0639\u0644\u0649 \u0627\u0644\u0623\u0642\u0644 \u0645\u0646\u0630 \u062A\u063A\u064A\u064A\u0631 \u0627\u0644\u0628\u0646\u064A\u0629. \u0627\u0644\u0625\u0635\u062F\u0627\u0631\u0627\u062A \u0627\u0644\u0623\u0642\u062F\u0645 \u0645\u0645\u064A\u0632\u0629 \u0628\u0627\u0644\u062E\u0637 \u0627\u0644\u0639\u0631\u064A\u0636 \u0628\u0627\u0644\u0623\u0639\u0644\u0649\u060C \u0648\u0645\u0646 \u0627\u0644\u0645\u0633\u062A\u062D\u0633\u0646 \u062D\u0641\u0638 \u0647\u0630\u0647 \u0627\u0644\u0645\u0644\u0641\u0627\u062A. +blurb.6=\u0645\u0646 \u0627\u0644\u0645\u0642\u0628\u0648\u0644 \u062A\u0631\u0643 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u063A\u064A\u0631 \u0645\u0642\u0631\u0648\u0621\u0629 \u0641\u064A \u0647\u0630\u0647 \u0627\u0644\u0645\u0644\u0641\u0627\u062A\u060C \u062D\u064A\u062B \u064A\u062A\u062C\u0627\u0647\u0644\u0647\u0627 \u062C\u0646\u0643\u0646\u0632 \u0628\u0634\u0643\u0644 \u0622\u0645\u0646. \u0644\u062A\u062C\u0646\u0628 \u0631\u0633\u0627\u0626\u0644 \u0627\u0644\u0633\u062C\u0644 \u0639\u0646\u062F \u0628\u062F\u0621 \u062A\u0634\u063A\u064A\u0644 \u062C\u0646\u0643\u0646\u0632 \u0628\u0625\u0645\u0643\u0627\u0646\u0643 \u062D\u0630\u0641 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u063A\u064A\u0631 \u0645\u0642\u0631\u0648\u0621\u0629 \u0628\u0634\u0643\u0644 \u0646\u0647\u0627\u0626\u064A \u0639\u0646 \u0637\u0631\u064A\u0642 \u0625\u0639\u0627\u062F\u0629 \u062D\u0641\u0638 \u0627\u0644\u0645\u0644\u0641\u0627\u062A \u0628\u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0627\u0644\u0632\u0631 \u0628\u0627\u0644\u0623\u0633\u0641\u0644. diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_ar.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_ar.properties new file mode 100644 index 0000000000..e69ef43742 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Project=\u0627\u0644\u0645\u0634\u0631\u0648\u0639 diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_ar.properties b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_ar.properties new file mode 100644 index 0000000000..64bed35af6 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +body=\u0645\u0646\u0627\u0633\u0628\u0629 \u0644\u0644\u0645\u0634\u0627\u0631\u064A\u0639 \u0627\u0644\u062A\u064A \u062A\u062D\u062A\u0627\u062C \u0643\u0645\u064A\u0629 \u0643\u0628\u064A\u0631\u0629 \u0645\u0646 \u0625\u0639\u062F\u0627\u062F\u0627\u062A \u0645\u062E\u062A\u0644\u0641\u0629\u060C \u0645\u062B\u0644 \u0627\u062E\u062A\u0628\u0627\u0631 \u0645\u0634\u0631\u0648\u0639 \u0641\u064A \u0639\u062F\u0629 \u0628\u064A\u0626\u0627\u062A\u060C \u0645\u0634\u0627\u0631\u064A\u0639 \u0645\u062E\u0635\u0635\u0629 \u0644\u0645\u0646\u0635\u0627\u062A \u0645\u0639\u064A\u0646\u0629\u060C \u0625\u0644\u062E. diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_ar.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_ar.properties new file mode 100644 index 0000000000..035d7e756f --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=\u0627\u0644\u062A\u063A\u064A\u064A\u0631\u0627\u062A diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_ar.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_ar.properties new file mode 100644 index 0000000000..49de7a761f --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_ar.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Build=\u0628\u0646\u0627\u0621 +Build\ Artifacts=\u0627\u0644\u0627\u0646\u0634\u0627\u0621 \u0627\u0644\u062A\u0642\u0646\u064A +Took=\u0627\u0633\u062A\u0645\u0631 \u0645\u062F\u0629 +on=\u0641\u064A +startedAgo=\u0628\u062F\u0623 {0} \u0645\u0646 \u0627\u0644\u0622\u0646 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ar.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ar.properties new file mode 100644 index 0000000000..ce7499351d --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ar.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Next\ Build=\u0627\u0644\u0628\u0646\u0627\u0621 \u0627\u0644\u0645\u0642\u0628\u0644 +Previous\ Build=\u0627\u0644\u0628\u0646\u0627\u0621 \u0627\u0644\u0633\u0627\u0628\u0642 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ar.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ar.properties new file mode 100644 index 0000000000..bf2ba667ff --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ar.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Back\ to\ Project=\u0627\u0644\u0639\u0648\u062F\u0629 \u0625\u0644\u0649 \u0627\u0644\u0645\u0634\u0631\u0648\u0639 +Changes=\u0627\u0644\u062A\u063A\u064A\u0631\u0627\u062A +Console\ Output=\u0646\u0627\u0641\u0630\u0629 \u0627\u0644\u062E\u0631\u062C +Edit\ Build\ Information=\u062A\u062D\u0631\u064A\u0631 \u0645\u0639\u0644\u0648\u0645\u0627\u062A \u0628\u0646\u0627\u0621 \u0627\u0644\u0645\u0634\u0631\u0648\u0639 +Status=\u0627\u0644\u062D\u0627\u0644\u0629 +View\ Build\ Information=\u0639\u0631\u0636 \u0645\u0639\u0644\u0648\u0645\u0627\u062A \u0628\u0646\u0627\u0621 +raw=\u062E\u0627\u0645 diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_ar.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_ar.properties new file mode 100644 index 0000000000..940d647e5e --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_ar.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Yes=\u0646\u0639\u0645 +blurb=\u0647\u0644 \u0623\u0646\u062A \u0645\u062A\u0623\u0643\u062F \u0645\u0646 \u062D\u0630\u0641 {0} ''''{1}''\u061F diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ar.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ar.properties new file mode 100644 index 0000000000..f66e9b37f6 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ar.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Error:\ no\ workspace=\u062E\u0637\u0627: \u0644\u0627\u064A\u0648\u062C\u062F \u0623\u064A \u0645\u0633\u0627\u062D\u0629 \u0639\u0645\u0644 +text=\u0646\u0641\u0630 \u0628\u0646\u0627\u0621 \u0644\u0643\u064A \u064A\u0646\u0634\u0623 \u062C\u0646\u0643\u0646\u0632 \u0645\u0633\u0627\u062D\u0629 \u0639\u0645\u0644. diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_ar.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_ar.properties new file mode 100644 index 0000000000..035d7e756f --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=\u0627\u0644\u062A\u063A\u064A\u064A\u0631\u0627\u062A diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_ar.properties b/core/src/main/resources/hudson/model/AbstractProject/main_ar.properties new file mode 100644 index 0000000000..173b6c8f5b --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_ar.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Last\ Successful\ Artifacts=\u0627\u062E\u0631 \u0646\u062C\u0627\u062D +Latest\ Test\ Result=\u0627\u062E\u0631 \u0646\u062A\u064A\u062C\u0629 \u0627\u062E\u062A\u0628\u0627\u0631 +Recent\ Changes=\u0627\u062D\u062F\u062B \u0627\u0644\u062A\u0639\u062F\u064A\u0644\u0627\u062A +Workspace=\u0645\u0633\u0627\u062D\u0629 \u0627\u0644\u0639\u0645\u0644 diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ar.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ar.properties new file mode 100644 index 0000000000..719a262ffe --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Disable\ Project=\u0627\u064A\u0642\u0627\u0641 \u0627\u0644\u0645\u0634\u0631\u0648\u0639 diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ar.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ar.properties new file mode 100644 index 0000000000..78fd12a39d --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ar.properties @@ -0,0 +1,10 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=\u0627\u0644\u0639\u0648\u062F\u0647 +Build\ scheduled=\u0628\u0631\u0646\u0627\u0645\u062C \u0627\u0644\u0628\u0646\u0627\u0621 +Changes=\u0627\u0644\u062A\u063A\u064A\u0631\u0627\u062A +Configure=\u063A\u064A\u0631 \u0627\u0644\u0625\u0639\u062F\u0627\u062F\u0627\u062A +Status=\u0627\u0644\u062D\u0627\u0644\u0647 +Wipe\ Out\ Workspace=\u0645\u0633\u062D \u0627\u0644\u0645\u0644\u0641\u0627\u062A +Workspace=\u0645\u0633\u0627\u062D\u0629 \u0627\u0644\u0639\u0645\u0644 +delete=\u062E\u0630\u0641 diff --git a/core/src/main/resources/hudson/model/AllView/noJob_ar.properties b/core/src/main/resources/hudson/model/AllView/noJob_ar.properties new file mode 100644 index 0000000000..3299c95de7 --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_ar.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Welcome\ to\ Jenkins!=\u0623\u0647\u0644\u0627 \u0628\u0643 \u0641\u064A Jenkins ! +newJob=\u0627\u0644\u0631\u062C\u0627\u0621 \u0625\u0646\u0634\u0627\u0621 \u0645\u0647\u0645\u0629 \u062C\u062F\u064A\u062F\u0629 \u0644\u062A\u0633\u062A\u0637\u064A\u0639 \u0627\u0644\u0628\u062F\u0621. diff --git a/core/src/main/resources/hudson/model/Cause/UserCause/description_ar.properties b/core/src/main/resources/hudson/model/Cause/UserCause/description_ar.properties new file mode 100644 index 0000000000..6d09df96bd --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserCause/description_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +started_by_user=\u0628\u062F\u0623\u062A \u0628\u0648\u0627\u0633\u0637\u0629 \u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645 {0} diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_ar.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_ar.properties new file mode 100644 index 0000000000..8d8fada25e --- /dev/null +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +body=\u0647\u0630\u0647 \u0647\u064A \u0627\u0644\u0645\u064A\u0632\u0629 \u0627\u0644\u0631\u0626\u064A\u0633\u064A\u0629 \u0641\u064A \u062C\u0646\u0643\u0646\u0632. \u062C\u0646\u0643\u0646\u0632 \u0633\u064A\u0628\u0646\u064A \u0644\u0643 \u0645\u0634\u0631\u0648\u0639\u0643\u060C \u064A\u0633\u062A\u062E\u062F\u0645 \u0623\u062F\u0648\u0627\u062A \u0645\u0631\u0627\u0642\u0628\u0629 \u0627\u0644\u0645\u0635\u062F\u0631 \u0627\u0644\u0628\u0631\u0645\u062C\u064A\u060C \u0648\u064A\u0645\u0643\u0646 \u062D\u062A\u0649 \u0627\u0633\u062A\u062E\u062F\u0627\u0645\u0647\u0627 \uFEF7\u0634\u064A\u0627\u0621 \u063A\u064A\u0631 \u0628\u0646\u0627\u0621 \u0627\u0644\u0645\u0634\u0631\u0648\u0639. diff --git a/core/src/main/resources/hudson/model/Job/index_ar.properties b/core/src/main/resources/hudson/model/Job/index_ar.properties new file mode 100644 index 0000000000..b38939c893 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_ar.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Disable\ Project=\u0639\u0637\u0644 \u0627\u0644\u0645\u0634\u0631\u0648\u0639 +Enable=\u062A\u0641\u0639\u064A\u0644 +This\ project\ is\ currently\ disabled=\u0647\u0630\u0627 \u0627\u0644\u0645\u0634\u0631\u0648\u0639 \u062D\u0627\u0644\u064A\u0627\u064B \u0645\u0639\u0637\u0644 diff --git a/core/src/main/resources/hudson/model/Job/permalinks_ar.properties b/core/src/main/resources/hudson/model/Job/permalinks_ar.properties new file mode 100644 index 0000000000..8de5310e98 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/permalinks_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Permalinks=\u0631\u0627\u0628\u0637 \u062F\u0627\u0626\u0645 diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ar.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ar.properties new file mode 100644 index 0000000000..ceea51b670 --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +format=\u0645\u0646\u0630 {0} ({1}), {2} diff --git a/core/src/main/resources/hudson/model/Run/configure_ar.properties b/core/src/main/resources/hudson/model/Run/configure_ar.properties new file mode 100644 index 0000000000..7d8a491700 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_ar.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Description=\u0627\u0644\u0634\u0631\u062D +DisplayName=\u0627\u0644\u0627\u0633\u0645 +LOADING=\u062A\u062D\u0645\u064A\u0644 +Save=\u062D\u0641\u0638 diff --git a/core/src/main/resources/hudson/model/Run/console_ar.properties b/core/src/main/resources/hudson/model/Run/console_ar.properties new file mode 100644 index 0000000000..a95bb493e1 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_ar.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Console\ Output=\u062E\u0631\u062C \u0627\u0644\u0643\u0648\u0646\u0633\u0648\u0644 +View\ as\ plain\ text=\u0645\u0634\u0627\u0647\u062F\u0629 \u0643\u0646\u0635 \u0628\u0633\u064A\u0637 diff --git a/core/src/main/resources/hudson/model/Run/delete_ar.properties b/core/src/main/resources/hudson/model/Run/delete_ar.properties new file mode 100644 index 0000000000..83c2a42c4b --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete\ this\ build=\u0627\u062D\u0630\u0641 \u0647\u0630\u0627 \u0627\u0644\u0628\u0646\u0627\u0621 diff --git a/core/src/main/resources/hudson/model/Run/logKeep_ar.properties b/core/src/main/resources/hudson/model/Run/logKeep_ar.properties new file mode 100644 index 0000000000..f1a456d5d7 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/logKeep_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Keep\ this\ build\ forever=\u0623\u062D\u062A\u0641\u0638 \u062F\u0627\u0626\u0645\u0627 \u0628\u0647\u062F\u0627 \u0627\u0644\u0628\u0646\u0627\u0621 diff --git a/core/src/main/resources/hudson/model/View/People/index_ar.properties b/core/src/main/resources/hudson/model/View/People/index_ar.properties new file mode 100644 index 0000000000..7ac7bfcbe0 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_ar.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Last\ Active=\u0622\u062E\u0631 \u0646\u0634\u0627\u0637 +Name=\u0627\u0644\u0627\u0633\u0645 +On=\u0641\u064A +People=\u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645\u0648\u0646 +User\ Id=\u0631\u0642\u0645 \u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645 diff --git a/core/src/main/resources/hudson/model/View/builds_ar.properties b/core/src/main/resources/hudson/model/View/builds_ar.properties new file mode 100644 index 0000000000..95c1e944b0 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/builds_ar.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Export\ as\ plain\ XML=\u062A\u0635\u062F\u064A\u0631 \u0643\u0645\u0644\u0641 XML +buildHistory=\u062A\u0627\u0631\u064A\u062E \u0627\u0644\u0628\u0646\u0627\u0621 \u0644\u0640 {0} diff --git a/core/src/main/resources/hudson/model/View/configure_ar.properties b/core/src/main/resources/hudson/model/View/configure_ar.properties new file mode 100644 index 0000000000..b9e6b54089 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/configure_ar.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Description=\u0627\u0644\u0648\u0635\u0641 +Filter\ build\ executors=\u062A\u0635\u064A\u0629 \u0627\u0644\u0646\u0627\u0629 +Filter\ build\ queue=\u062A\u0635\u0641\u064A\u0629 \u0637\u0627\u0628\u0648\u0631 \u0627\u0644\u0628\u0646\u0627\u0621 +Name=\u0627\u0644\u0627\u0633\u0645 diff --git a/core/src/main/resources/hudson/model/View/newJob_ar.properties b/core/src/main/resources/hudson/model/View/newJob_ar.properties new file mode 100644 index 0000000000..808df1cbb0 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/newJob_ar.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +CopyExisting=\u0646\u0633\u062E {0} \u0645\u0648\u062C\u0648\u062F +JobName=\u0627\u0633\u0645 {0} diff --git a/core/src/main/resources/hudson/model/View/sidepanel_ar.properties b/core/src/main/resources/hudson/model/View/sidepanel_ar.properties index 0623f96fb1..be151a26e1 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_ar.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_ar.properties @@ -20,8 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=\u062A\u0627\u0631\u064A\u062E \u0627\u0644\u062A\u0639\u0645\u064A\u0631 -Check\ File\ Fingerprint=\u062A\u062F\u0642\u064A\u0642 \u0628\u0628\u0635\u0645\u0629 \u0627\u0644\u0645\u0644\u0641 -NewJob=\u062C\u062F\u064A\u062F -People=\u0627\u0644\u0623\u0634\u062E\u0627\u0635 -Project\ Relationship=\u0639\u0644\u0627\u0642\u0629 \u0627\u0644\u0645\u0634\u0627\u0631\u064A\u0639 +Build\ History=\u062A\u0627\u0631\u064A\u062E \u0627\u0644\u0628\u0646\u0627\u0621 +Check\ File\ Fingerprint=\u0641\u062D\u0635 \u0628\u0635\u0645\u0629 \u0627\u0644\u0645\u0644\u0641 +Delete\ View=\u0627\u0632\u0627\u0644\u062A \u0647\u064A\u0626\u0629 \u0627\u0644\u0635\u0641\u062D\u0629 +Edit\ View=\u062A\u062D\u0631\u064A\u0631 \u0627\u0644\u0639\u0631\u0636 +NewJob=\u062C\u062F\u064A\u062F {0} +People=\u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645\u0648\u0646 +Project\ Relationship=\u0635\u0644\u0629 \u0627\u0644\u0645\u0634\u0631\u0648\u0639 diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ar.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ar.properties new file mode 100644 index 0000000000..14b6cf7476 --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ changes.=\u0644\u0627 \u062A\u063A\u064A\u064A\u0631\u0627\u062A. diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_ar.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_ar.properties new file mode 100644 index 0000000000..f7605bc25d --- /dev/null +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_ar.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +No\ builds.=\u0644\u0627\u064A\u0648\u062C\u062F \u0623\u064A \u0628\u0646\u0627\u0621. +No\ changes\ in\ any\ of\ the\ builds.=\u0644\u0627\u064A\u0648\u062C\u062F \u0623\u064A \u062A\u063A\u064A\u064A\u0631\u0627\u062A \u0641\u064A \u0623\u064A \u0628\u0646\u0627\u0621. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ar.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ar.properties new file mode 100644 index 0000000000..51855c12fb --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +sign\ up=\u0627\u0634\u062A\u0631\u0627\u0643 diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ar.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ar.properties new file mode 100644 index 0000000000..e95ee05a9f --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +login=\u062A\u0633\u062C\u064A\u0644 \u0627\u0644\u062F\u062E\u0648\u0644 diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_ar.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_ar.properties new file mode 100644 index 0000000000..21320446df --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_ar.properties @@ -0,0 +1,12 @@ +# This file is under the MIT License by authors + +Age=\u0639\u0645\u0631 +All\ Failed\ Tests=\u062C\u0645\u064A\u0639 \u0627\u0644\u0641\u062D\u0648\u0635 \u0627\u0644\u0641\u0627\u0634\u0644\u0629 +All\ Tests=\u062C\u0645\u064A\u0639 \u0627\u0644\u0641\u062D\u0648\u0635 +Duration=\u0645\u062F\u0629 +Fail=\u0641\u0634\u0644 +Loading...=\u062A\u062D\u0645\u064A\u0644... +Skip=\u062A\u062E\u0637\u0649 +Test\ Name=\u0627\u0633\u0645 \u0627\u0644\u0641\u062D\u0635 +Total=\u0645\u062C\u0645\u0648\u0639 +diff=\u0641\u0631\u0642 diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_ar.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_ar.properties new file mode 100644 index 0000000000..fa7bd611ff --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_ar.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +History=\u0633\u062C\u0644 +Next\ Build=\u0628\u0646\u0627\u0621 \u062A\u0627\u0644\u064A +Previous\ Build=\u0628\u0646\u0627\u0621 \u0633\u0627\u0628\u0642 diff --git a/core/src/main/resources/hudson/tasks/test/TestResult/index_ar.properties b/core/src/main/resources/hudson/tasks/test/TestResult/index_ar.properties new file mode 100644 index 0000000000..2ac59cd357 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResult/index_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +took=\u0627\u0633\u062A\u063A\u0631\u0642 {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 index 4a3f10a6f7..1453a1656c 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ar.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_ar.properties @@ -20,4 +20,5 @@ # 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 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ar.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ar.properties index e90459febe..eb05f138cc 100644 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ar.properties +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ar.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -New\ View=\u0645\u0646\u0638\u0631 \u062C\u062F\u064A\u062F +New\ View=\u0646\u0627\u0641\u0630\u0629 \u062C\u062F\u064A\u062F\u0629 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ar.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ar.properties index 541d88e2a9..a1da739079 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ar.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ar.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=\u0623\u062E\u0631 \u0645\u062F\u0629 +Last\ Duration=\u0622\u062E\u0631 \u0645\u062F\u0629 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_ar.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_ar.properties new file mode 100644 index 0000000000..b4ccf5f398 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=\u063A\u064A\u0631 \u0645\u0648\u062C\u0648\u062F diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ar.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ar.properties index 45a05d2fa1..d53b9c71ae 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ar.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ar.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=\u0623\u062E\u0631 \u0641\u0634\u0644 +Last\ Failure=\u0622\u062E\u0631 \u0641\u0634\u0644 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ar.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ar.properties index 58d9a073b7..4aee979c22 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ar.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ar.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=\u0623\u062E\u0631 \u0646\u062C\u0627\u062D +Last\ Success=\u0622\u062E\u0631 \u0646\u062C\u0627\u062D diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ar.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ar.properties index 7618c4fc7f..0204cee36b 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ar.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ar.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=\u062D\u0627\u0644\u0629 \u0623\u062E\u0631 \u0628\u0646\u0627\u0621 +Status\ of\ the\ last\ build=\u062D\u0627\u0644\u0629 \u0622\u062E\u0631 \u0628\u0646\u0627\u0621 diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ar.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ar.properties index 44e6ba7bdc..052b930f57 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ar.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ar.properties @@ -20,4 +20,4 @@ # 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=\u062A\u0642\u0631\u064A\u0631 \u0627\u0644\u0637\u0642\u0633 \u0645\u0628\u064A\u0646\u0627\u064B \u0627\u0644\u062D\u0627\u0644\u0629 \u0627\u0644\u0645\u062C\u0645\u0648\u0639\u0629 \u0644\u0623\u0639\u0645\u0627\u0644 \u0627\u0644\u0628\u0646\u0627\u0621 \u0627\u0644\u062D\u062F\u064A\u062B\u0629 +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u0627\u0644\u062A\u0642\u0631\u064A\u0631 \u0627\u0644\u062C\u0648\u064A \u064A\u0639\u0631\u0636 \u062D\u0627\u0644\u0629 \u0622\u062E\u0631 \u0627\u0644\u0628\u0646\u0627\u0621\u0627\u062A diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ar.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ar.properties new file mode 100644 index 0000000000..19d8ca5e83 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Console\ Output=\u0645\u062E\u0631\u062C\u0627\u062A \u0627\u0644\u0645\u062D\u0631\u0631 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_ar.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_ar.properties new file mode 100644 index 0000000000..5a01fd5db7 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_ar.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +More\ ...=\u0623\u0643\u062B\u0631... +for\ all=\u0644\u0644\u0643\u0644 +for\ failures=\u0641\u064A \u062D\u0627\u0644\u0629 \u0627\u0644\u0641\u0634\u0644 +trend=\u0627\u062A\u062C\u0627\u0647 diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_ar.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_ar.properties new file mode 100644 index 0000000000..16aed04252 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_ar.properties @@ -0,0 +1,15 @@ +# This file is under the MIT License by authors + +blue=\u0622\u062E\u0631 \u0628\u0646\u0627\u0621 \u0643\u0627\u0646 \u0646\u0627\u062C\u062D\u0627\u064B. +blue_anime=\u0622\u062E\u0631 \u0628\u0646\u0627\u0621 \u0643\u0627\u0646 \u0646\u0627\u062C\u062D\u0627\u064B. \u0628\u0646\u0627\u0621 \u062C\u062F\u064A\u062F \u0637\u0648\u0631 \u0627\u0644\u0645\u0639\u0627\u0644\u062C\u0629. +grey=\u0627\u0644\u0645\u0634\u0631\u0648\u0639 \u0644\u064A\u0633 \u0644\u0647 \u0623\u064A \u0628\u0646\u0627\u0621 \u0645\u0646 \u0642\u0628\u0644\u060C \u0623\u0648 \u0627\u0644\u0645\u0634\u0631\u0648\u0639 \u0645\u0639\u0637\u0644. +grey_anime=\u0623\u0648\u0644 \u0628\u0646\u0627\u0621 \u0644\u0644\u0645\u0634\u0631\u0648\u0639 \u0637\u0648\u0631 \u0627\u0644\u0645\u0639\u0627\u0644\u062C\u0629. +health-00to20=\u0635\u062D\u0629 \u0627\u0644\u0645\u0634\u0631\u0648\u0639 20% \u0623\u0648\u0644 \u0623\u0642\u0644. \u0628\u0625\u0645\u0643\u0627\u0646\u0643 \u062A\u0645\u0631\u064A\u0631 \u0627\u0644\u0641\u0623\u0631\u0629 \u0641\u0648\u0642 \u0623\u064A\u0642\u0648\u0646\u0629 \u0627\u0644\u0645\u0634\u0631\u0648\u0639 \u0644\u062A\u062D\u0635\u0644 \u0639\u0644\u0649 \u062A\u0641\u0627\u0635\u064A\u0644 \u0625\u0636\u0627\u0641\u064A\u0629. +health-21to40=\u0635\u062D\u0629 \u0627\u0644\u0645\u0634\u0631\u0648\u0639 \u0641\u0648\u0642 20% \u0648\u062A\u0635\u0644 \u0644 40%. \u0628\u0625\u0645\u0643\u0627\u0646\u0643 \u062A\u0645\u0631\u064A\u0631 \u0627\u0644\u0641\u0623\u0631\u0629 \u0641\u0648\u0642 \u0623\u064A\u0642\u0648\u0646\u0629 \u0627\u0644\u0645\u0634\u0631\u0648\u0639 \u0644\u062A\u062D\u0635\u0644 \u0639\u0644\u0649 \u062A\u0641\u0627\u0635\u064A\u0644 \u0625\u0636\u0627\u0641\u064A\u0629. +health-41to60=\u0635\u062D\u0629 \u0627\u0644\u0645\u0634\u0631\u0648\u0639 \u0641\u0648\u0642 40% \u0648\u062A\u0635\u0644 \u0644 60%. \u0628\u0625\u0645\u0643\u0627\u0646\u0643 \u062A\u0645\u0631\u064A\u0631 \u0627\u0644\u0641\u0623\u0631\u0629 \u0641\u0648\u0642 \u0623\u064A\u0642\u0648\u0646\u0629 \u0627\u0644\u0645\u0634\u0631\u0648\u0639 \u0644\u062A\u062D\u0635\u0644 \u0639\u0644\u0649 \u062A\u0641\u0627\u0635\u064A\u0644 \u0625\u0636\u0627\u0641\u064A\u0629. +health-61to80=\u0635\u062D\u0629 \u0627\u0644\u0645\u0634\u0631\u0648\u0639 \u0641\u0648\u0642 60% \u0648\u062A\u0635\u0644 \u0644 80%. \u0628\u0625\u0645\u0643\u0627\u0646\u0643 \u062A\u0645\u0631\u064A\u0631 \u0627\u0644\u0641\u0623\u0631\u0629 \u0641\u0648\u0642 \u0623\u064A\u0642\u0648\u0646\u0629 \u0627\u0644\u0645\u0634\u0631\u0648\u0639 \u0644\u062A\u062D\u0635\u0644 \u0639\u0644\u0649 \u062A\u0641\u0627\u0635\u064A\u0644 \u0625\u0636\u0627\u0641\u064A\u0629. +health-81plus=\u0635\u062D\u0629 \u0627\u0644\u0645\u0634\u0631\u0648\u0639 \u0641\u0648\u0642 80%. \u0628\u0625\u0645\u0643\u0627\u0646\u0643 \u062A\u0645\u0631\u064A\u0631 \u0627\u0644\u0641\u0623\u0631\u0629 \u0641\u0648\u0642 \u0623\u064A\u0642\u0648\u0646\u0629 \u0627\u0644\u0645\u0634\u0631\u0648\u0639 \u0644\u062A\u062D\u0635\u0644 \u0639\u0644\u0649 \u062A\u0641\u0627\u0635\u064A\u0644 \u0625\u0636\u0627\u0641\u064A\u0629. +red=\u0622\u062E\u0631 \u0628\u0646\u0627\u0621 \u0641\u0634\u0644 \u0628\u0634\u0643\u0644 \u0642\u0627\u062A\u0644. +red_anime=\u0622\u062E\u0631 \u0628\u0646\u0627\u0621 \u0641\u0634\u0644 \u0628\u0634\u0643\u0644 \u0642\u0627\u062A\u0644. \u0628\u0646\u0627\u0621 \u062C\u062F\u064A\u062F \u0637\u0648\u0631 \u0627\u0644\u0645\u0639\u0627\u0644\u062C\u0629. +yellow=\u0622\u062E\u0631 \u0628\u0646\u0627\u0621 \u0643\u0627\u0646 \u0646\u0627\u062C\u062D\u0627\u064B \u0648\u0644\u0643\u0646 \u063A\u064A\u0631 \u062B\u0627\u0628\u062A. \u0647\u0630\u0647 \u062A\u0633\u062A\u062E\u062F\u0645 \u0628\u0634\u0643\u0644 \u0631\u0626\u064A\u0633\u064A \u0644\u0644\u062A\u0639\u0628\u064A\u0631 \u0639\u0646 \u0641\u0634\u0644 \u0641\u064A \u0627\u0644\u0627\u062E\u062A\u0628\u0627\u0631\u0627\u062A. +yellow_anime=\u0622\u062E\u0631 \u0628\u0646\u0627\u0621 \u0643\u0627\u0646 \u0646\u0627\u062C\u062D\u0627\u064B \u0648\u0644\u0643\u0646 \u063A\u064A\u0631 \u062B\u0627\u0628\u062A. \u0628\u0646\u0627\u0621 \u062C\u062F\u064A\u062F \u0637\u0648\u0631 \u0627\u0644\u0645\u0639\u0627\u0644\u062C\u0629. diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_ar.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_ar.properties new file mode 100644 index 0000000000..5dca61ba02 --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=\u0625\u0639\u062F\u0627\u062F\u0627\u062A diff --git a/core/src/main/resources/lib/form/helpArea_ar.properties b/core/src/main/resources/lib/form/helpArea_ar.properties new file mode 100644 index 0000000000..9b01fbb13c --- /dev/null +++ b/core/src/main/resources/lib/form/helpArea_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Loading...=\u062C\u0627\u0631\u064A \u0627\u0644\u062A\u062D\u0645\u064A\u0644 diff --git a/core/src/main/resources/lib/form/textarea_ar.properties b/core/src/main/resources/lib/form/textarea_ar.properties new file mode 100644 index 0000000000..f5192c0e09 --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_ar.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=\u0627\u062E\u0641\u0627\u0621 \u0627\u0644\u0627\u0633\u062A\u0639\u0631\u0627\u0636 +Preview=\u0627\u0633\u062A\u0639\u0631\u0627\u0636 diff --git a/core/src/main/resources/lib/hudson/buildCaption_ar.properties b/core/src/main/resources/lib/hudson/buildCaption_ar.properties new file mode 100644 index 0000000000..a531c3d3a6 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_ar.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Progress=\u0627\u0644\u062A\u0642\u062F\u0645 +cancel=\u0627\u0644\u0627\u0646\u0641\u0635\u0627\u0644 diff --git a/core/src/main/resources/lib/hudson/buildListTable_ar.properties b/core/src/main/resources/lib/hudson/buildListTable_ar.properties new file mode 100644 index 0000000000..c0136daef5 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildListTable_ar.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Build=\u0627\u0644\u0628\u0646\u0627\u0621 +Console\ output=\u062E\u0631\u062C \u0627\u0644\u0643\u0648\u0646\u0633\u0648\u0644 +Status=\u0627\u0644\u062D\u0627\u0644\u0629 +Time\ Since=\u0645\u0646\u0630 diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_ar.properties b/core/src/main/resources/lib/hudson/buildProgressBar_ar.properties new file mode 100644 index 0000000000..c49e4cffb1 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +text=\u0628\u062F\u0623\u062A \u0645\u0646\u0630 0 \u0648\u0627\u0644\u0648\u0642\u062A \u0627\u0644\u0645\u062A\u0628\u0642\u0649 1 diff --git a/core/src/main/resources/lib/hudson/editableDescription_ar.properties b/core/src/main/resources/lib/hudson/editableDescription_ar.properties index 14314c2dc8..84cc128067 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_ar.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_ar.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=\u0625\u0636\u0627\u0641\u0629 \u0634\u0631\u062D \u0645\u0641\u0635\u0644 +add\ description=\u0623\u0636\u0641 \u0634\u0631\u062D +edit\ description=\u062A\u062D\u0631\u064A\u0631 \u0627\u0644\u0634\u0631\u062D diff --git a/core/src/main/resources/lib/hudson/executors_ar.properties b/core/src/main/resources/lib/hudson/executors_ar.properties index b6684c6b1b..4830856028 100644 --- a/core/src/main/resources/lib/hudson/executors_ar.properties +++ b/core/src/main/resources/lib/hudson/executors_ar.properties @@ -20,6 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=\u062D\u0627\u0644\u0629 \u0623\u0644\u0628\u0627\u0646\u064A -Idle=\u063A\u064A\u0631 \u0645\u0634\u063A\u0648\u0644 -Status=\u062D\u0627\u0644\u0629 +Build\ Executor\ Status=\u062D\u0627\u0644\u0629 \u0645\u0646\u0641\u0630 \u0627\u0644\u0628\u0646\u0627\u0621 +Building=\u0628\u0646\u0627\u0621 +Idle=\u0645\u062A\u0648\u0642\u0641 +Master=\u0631\u0626\u064A\u0633\u064A +Status=\u0627\u0644\u062D\u0627\u0644\u0629 +offline=\u063A\u064A\u0631 \u0641\u0639\u0627\u0644 +terminate\ this\ build=\u0625\u0646\u0647\u0627\u0621 \u0647\u0630\u0627 \u0627\u0644\u0628\u0646\u0627\u0621 diff --git a/core/src/main/resources/lib/hudson/iconSize_ar.properties b/core/src/main/resources/lib/hudson/iconSize_ar.properties index b9dd71f166..0e72cb890c 100644 --- a/core/src/main/resources/lib/hudson/iconSize_ar.properties +++ b/core/src/main/resources/lib/hudson/iconSize_ar.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=\u0635\u0648\u0631\u0629 +Icon=\u0627\u064A\u0642\u0648\u0646\u0647 diff --git a/core/src/main/resources/lib/hudson/project/matrix_ar.properties b/core/src/main/resources/lib/hudson/project/matrix_ar.properties new file mode 100644 index 0000000000..196c18b892 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/matrix_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Configurations=\u0627\u0639\u062F\u0627\u062F\u0627\u062A diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_ar.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_ar.properties new file mode 100644 index 0000000000..faa4eaf98a --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_ar.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Downstream\ Projects=\u0627\u0644\u0645\u0634\u0627\u0631\u064A\u0639 \u0627\u0644\u0627\u0628\u0646\u0627\u0621 +Upstream\ Projects=\u0627\u0644\u0645\u0634\u0627\u0631\u064A\u0639 \u0627\u0644\u0622\u0628\u0627\u0621 diff --git a/core/src/main/resources/lib/hudson/queue_ar.properties b/core/src/main/resources/lib/hudson/queue_ar.properties index c870efb771..f02a97ccfc 100644 --- a/core/src/main/resources/lib/hudson/queue_ar.properties +++ b/core/src/main/resources/lib/hudson/queue_ar.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u0635\u0641 \u0627\u0644\u0627\u0646\u062A\u0638\u0627\u0631 -No\ builds\ in\ the\ queue.=\u0644\u0627 \u0628\u0646\u0627\u0621 \u0641\u064A \u0635\u0641 \u0627\u0644\u0627\u0646\u062A\u0638\u0627\u0631 +Build\ Queue=\u0637\u0627\u0628\u0648\u0631 \u0627\u0644\u0628\u0646\u0627\u0621 +No\ builds\ in\ the\ queue.=\u0644\u0627 \u064A\u0648\u062C\u062F \u0623\u064A \u0628\u0646\u0627\u0621 \u0641\u064A \u0627\u0644\u0637\u0627\u0628\u0648\u0631. +WaitingFor=\u0625\u0646\u062A\u0638\u0627\u0631 {0} diff --git a/core/src/main/resources/lib/hudson/test-result_ar.properties b/core/src/main/resources/lib/hudson/test-result_ar.properties new file mode 100644 index 0000000000..758a15a8c2 --- /dev/null +++ b/core/src/main/resources/lib/hudson/test-result_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +no\ failures=\u0644\u0627 \u064A\u0648\u062C\u062F \u0641\u0634\u0644 diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_ar.properties b/core/src/main/resources/lib/layout/breadcrumbBar_ar.properties new file mode 100644 index 0000000000..0b2e50fa90 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_ar.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=\u062A\u0645\u0643\u064A\u0646 \u0627\u0644\u062A\u062D\u062F\u064A\u062B \u0627\u0644\u062A\u0644\u0642\u0627\u0626\u064A diff --git a/core/src/main/resources/lib/layout/layout_ar.properties b/core/src/main/resources/lib/layout/layout_ar.properties index ced651941f..3bce5b3b88 100644 --- a/core/src/main/resources/lib/layout/layout_ar.properties +++ b/core/src/main/resources/lib/layout/layout_ar.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ENABLE\ AUTO\ REFRESH=\u0633\u0645\u062D \u0644\u0644\u062A\u062D\u062F\u064A\u062B \u0627\u0644\u0623\u062A\u0648\u0645\u0627\u062A\u064A\u0643\u064A -Page\ generated=\u0635\u0641\u062D\u0629 \u0628\u0646\u064A\u062A +ENABLE\ AUTO\ REFRESH=\u062A\u0641\u0639\u064A\u0644 \u0627\u0644\u062A\u062D\u062F\u064A\u062B \u0627\u0644\u062A\u0644\u0642\u0627\u0626\u064A \u0644\u0644\u0635\u0641\u062D\u0629 +Page\ generated=\u0627\u0646\u0634\u0627\u0621 \u0627\u0644\u0635\u0641\u062D\u0629 logout=\u062E\u0631\u0648\u062C -search=\u0627\u0628\u062D\u062B +search=\u0627\u0644\u0628\u062D\u062B searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/core/src/main/resources/lib/test/bar_ar.properties b/core/src/main/resources/lib/test/bar_ar.properties new file mode 100644 index 0000000000..507a0afbb5 --- /dev/null +++ b/core/src/main/resources/lib/test/bar_ar.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +failures={0} \u0641\u0634\u0644 +tests={0} \u0641\u062D\u0648\u0635 -- GitLab From a27df0aca7ee5bfc18d9652abb5cf54ae43085cd Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:53 -0700 Subject: [PATCH 030/308] Community-contributed localization for Belarusian (be) --- .../resources/hudson/model/View/sidepanel_be.properties | 7 +++++++ core/src/main/resources/lib/hudson/executors_be.properties | 4 ++++ core/src/main/resources/lib/hudson/queue_be.properties | 4 ++++ .../main/resources/lib/layout/breadcrumbBar_be.properties | 3 +++ core/src/main/resources/lib/layout/layout_be.properties | 5 +++++ 5 files changed, 23 insertions(+) create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_be.properties create mode 100644 core/src/main/resources/lib/hudson/executors_be.properties create mode 100644 core/src/main/resources/lib/hudson/queue_be.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_be.properties create mode 100644 core/src/main/resources/lib/layout/layout_be.properties diff --git a/core/src/main/resources/hudson/model/View/sidepanel_be.properties b/core/src/main/resources/hudson/model/View/sidepanel_be.properties new file mode 100644 index 0000000000..6d98e52f1a --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_be.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Build\ History=\u0413\u0456\u0441\u0442\u043E\u0440\u044B\u044F \u0437\u0431\u043E\u0440\u0443 +Check\ File\ Fingerprint=Pr\u00FCfe den Fingerabdruck der Datei +NewJob=\u041D\u043E\u0432\u044B {0} +People=\u041B\u044E\u0434\u0437\u0456 +Project\ Relationship=Projekt-Beziehung diff --git a/core/src/main/resources/lib/hudson/executors_be.properties b/core/src/main/resources/lib/hudson/executors_be.properties new file mode 100644 index 0000000000..09ac89a7b3 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_be.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build\ Executor\ Status=Status der Buildausf\u00FChrung +Idle=Leerlauf diff --git a/core/src/main/resources/lib/hudson/queue_be.properties b/core/src/main/resources/lib/hudson/queue_be.properties new file mode 100644 index 0000000000..482edab7c5 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_be.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build\ Queue=Build Warteschlange +No\ builds\ in\ the\ queue.=Keine Builds in der Warteschlange diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_be.properties b/core/src/main/resources/lib/layout/breadcrumbBar_be.properties new file mode 100644 index 0000000000..d80dcfaabf --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_be.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=\u0423\u041A\u041B\u042E\u0427\u042B\u0426\u042C \u0410\u040E\u0422\u0410\u0410\u0411\u041D\u0410\u040E\u041B\u0415\u041D\u042C\u041D\u0415 diff --git a/core/src/main/resources/lib/layout/layout_be.properties b/core/src/main/resources/lib/layout/layout_be.properties new file mode 100644 index 0000000000..948761f6ff --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_be.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +logout=\u0432\u044B\u0439\u0441\u044C\u0446i +search=\u0448\u0443\u043A\u0430\u0446\u044C +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -- GitLab From 0655fe39b4a2342b185f2d785409a4989cd8d3cf Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:54 -0700 Subject: [PATCH 031/308] Community-contributed localization for Bulgarian (bg) --- .../hudson/PluginManager/advanced_bg.properties | 11 +++++++++++ .../hudson/PluginManager/index_bg.properties | 6 ++++++ .../hudson/PluginManager/installed_bg.properties | 13 +++++++++++++ .../hudson/PluginManager/tabBar_bg.properties | 6 ++++++ .../hudson/PluginManager/table_bg.properties | 11 +++++++++++ .../ReverseProxySetupMonitor/message_bg.properties | 1 + .../RawHtmlMarkupFormatter/config_bg.properties | 4 ++++ .../model/AbstractBuild/changes_bg.properties | 3 +++ .../hudson/model/AbstractBuild/index_bg.properties | 4 ++++ .../model/AbstractBuild/sidepanel_bg.properties | 3 ++- .../hudson/model/AbstractBuild/tasks_bg.properties | 4 +++- .../model/AbstractProject/changes_bg.properties | 3 +++ .../model/AbstractProject/sidepanel_bg.properties | 8 +++++--- .../hudson/model/AllView/noJob_bg.properties | 5 +++++ .../Cause/UserIdCause/description_bg.properties | 3 +++ .../model/DirectoryBrowserSupport/dir_bg.properties | 4 ++++ .../FreeStyleProject/newJobDetail_bg.properties | 3 +++ .../hudson/model/Job/buildTimeTrend_bg.properties | 4 ++++ .../resources/hudson/model/Job/index_bg.properties | 3 +++ .../Permalink/link_bg.properties | 2 +- .../hudson/model/Run/configure_bg.properties | 6 ++++++ .../hudson/model/Run/confirmDelete_bg.properties | 4 ++++ .../resources/hudson/model/Run/delete_bg.properties | 3 +++ .../hudson/model/Run/logKeep_bg.properties | 3 +++ .../ConnectionCheckJob/row_bg.properties | 3 +++ .../hudson/model/UpdateCenter/body_bg.properties | 5 +++++ .../hudson/model/UpdateCenter/index_bg.properties | 3 +++ .../model/UpdateCenter/sidepanel_bg.properties | 5 +++++ .../hudson/model/User/configure_bg.properties | 4 ++++ .../hudson/model/User/delete_bg.properties | 4 ++++ .../hudson/model/User/sidepanel_bg.properties | 7 +++++++ .../model/View/AsynchPeople/index_bg.properties | 6 ++++++ .../hudson/model/View/People/index_bg.properties | 7 +++++++ .../hudson/model/View/builds_bg.properties | 4 ++++ .../hudson/model/View/sidepanel_bg.properties | 12 ++++++------ .../scm/EmptyChangeLogSet/digest_bg.properties | 3 +++ .../hudson/scm/SCM/project-changes_bg.properties | 4 ++++ .../HudsonPrivateSecurityRealm/config_bg.properties | 3 +++ .../HudsonPrivateSecurityRealm/index_bg.properties | 5 +++++ .../loginLink_bg.properties | 3 +++ .../sidepanel_bg.properties | 5 +++++ .../LegacySecurityRealm/config_bg.properties | 3 +++ .../AbstractTestResultAction/summary_bg.properties | 3 +++ .../test/MetaTabulatedResult/body_bg.properties | 12 ++++++++++++ .../tasks/test/TestObject/sidepanel_bg.properties | 5 +++++ .../tasks/test/TestResult/index_bg.properties | 3 +++ .../SCMTrigger/SCMAction/index_bg.properties | 4 ++++ .../views/BuildButtonColumn/column_bg.properties | 3 ++- .../DefaultMyViewsTabBar/myViewTabs_bg.properties | 3 +++ .../views/LastDurationColumn/column_bg.properties | 3 +++ .../views/LastFailureColumn/column_bg.properties | 3 +++ .../views/LastSuccessColumn/column_bg.properties | 3 +++ .../views/StatusColumn/columnHeader_bg.properties | 2 +- .../views/WeatherColumn/columnHeader_bg.properties | 3 +++ .../BuildHistoryWidget/entries_bg.properties | 4 ++++ .../widgets/HistoryWidget/index_bg.properties | 2 +- .../jenkins/model/Jenkins/configure_bg.properties | 7 +++++++ .../jenkins/model/Jenkins/manage_bg.properties | 9 +++++++++ .../main/resources/lib/form/advanced_bg.properties | 3 +++ .../src/main/resources/lib/form/apply_bg.properties | 3 +++ .../main/resources/lib/form/textarea_bg.properties | 4 ++++ .../lib/hudson/buildListTable_bg.properties | 7 +++++++ .../lib/hudson/buildProgressBar_bg.properties | 2 +- .../lib/hudson/editableDescription_bg.properties | 2 +- .../resources/lib/hudson/executors_bg.properties | 8 ++++---- .../main/resources/lib/hudson/queue_bg.properties | 6 ++++-- .../main/resources/lib/hudson/rssBar_bg.properties | 2 +- .../resources/lib/hudson/test-result_bg.properties | 3 +++ .../lib/layout/breadcrumbBar_bg.properties | 4 ++++ .../main/resources/lib/layout/layout_bg.properties | 4 ++-- .../resources/lib/layout/main-panel_bg.properties | 3 +++ .../lib/layout/progressiveRendering_bg.properties | 3 +++ core/src/main/resources/lib/test/bar_bg.properties | 4 ++++ 73 files changed, 304 insertions(+), 26 deletions(-) create mode 100644 core/src/main/resources/hudson/PluginManager/advanced_bg.properties create mode 100644 core/src/main/resources/hudson/PluginManager/index_bg.properties create mode 100644 core/src/main/resources/hudson/PluginManager/installed_bg.properties create mode 100644 core/src/main/resources/hudson/PluginManager/tabBar_bg.properties create mode 100644 core/src/main/resources/hudson/PluginManager/table_bg.properties create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_bg.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/changes_bg.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/changes_bg.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_bg.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UserIdCause/description_bg.properties create mode 100644 core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_bg.properties create mode 100644 core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_bg.properties create mode 100644 core/src/main/resources/hudson/model/Job/buildTimeTrend_bg.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_bg.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_bg.properties create mode 100644 core/src/main/resources/hudson/model/Run/confirmDelete_bg.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_bg.properties create mode 100644 core/src/main/resources/hudson/model/Run/logKeep_bg.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_bg.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_bg.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/index_bg.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/sidepanel_bg.properties create mode 100644 core/src/main/resources/hudson/model/User/configure_bg.properties create mode 100644 core/src/main/resources/hudson/model/User/delete_bg.properties create mode 100644 core/src/main/resources/hudson/model/User/sidepanel_bg.properties create mode 100644 core/src/main/resources/hudson/model/View/AsynchPeople/index_bg.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_bg.properties create mode 100644 core/src/main/resources/hudson/model/View/builds_bg.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_bg.properties create mode 100644 core/src/main/resources/hudson/scm/SCM/project-changes_bg.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_bg.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_bg.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_bg.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_bg.properties create mode 100644 core/src/main/resources/hudson/security/LegacySecurityRealm/config_bg.properties create mode 100644 core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_bg.properties create mode 100644 core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_bg.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_bg.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResult/index_bg.properties create mode 100644 core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_bg.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_bg.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/column_bg.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_bg.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_bg.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_bg.properties create mode 100644 core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_bg.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/configure_bg.properties create mode 100644 core/src/main/resources/lib/form/advanced_bg.properties create mode 100644 core/src/main/resources/lib/form/apply_bg.properties create mode 100644 core/src/main/resources/lib/form/textarea_bg.properties create mode 100644 core/src/main/resources/lib/hudson/buildListTable_bg.properties create mode 100644 core/src/main/resources/lib/hudson/test-result_bg.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_bg.properties create mode 100644 core/src/main/resources/lib/layout/main-panel_bg.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_bg.properties create mode 100644 core/src/main/resources/lib/test/bar_bg.properties diff --git a/core/src/main/resources/hudson/PluginManager/advanced_bg.properties b/core/src/main/resources/hudson/PluginManager/advanced_bg.properties new file mode 100644 index 0000000000..33ffcd06ed --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/advanced_bg.properties @@ -0,0 +1,11 @@ +# This file is under the MIT License by authors + +Check\ now=\u041F\u0440\u043E\u0432\u0435\u0440\u0438 \u0441\u0435\u0433\u0430 +File=\u0424\u0430\u0439\u043B +HTTP\ Proxy\ Configuration=\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F \u043D\u0430 HTTP \u043F\u0440\u043E\u043A\u0441\u0438 +Submit=\u041F\u043E\u0442\u0432\u044A\u0440\u0434\u0438 +Update\ Site=\u041E\u0431\u043D\u043E\u0432\u0438 \u0441\u0430\u0439\u0442\u0430 +Upload=\u041A\u0430\u0447\u0438 +Upload\ Plugin=\u041A\u0430\u0447\u0438 \u043F\u043B\u044A\u0433\u0438\u043D +lastUpdated=\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F\u0442\u0430 \u0437\u0430 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F \u0431\u0435 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u043E \u0441\u0432\u0430\u043B\u0435\u043D\u0430 \u043F\u0440\u0435\u0434\u0438 {0} +uploadtext=\u0411\u0438\u0445\u0442\u0435 \u043C\u043E\u0433\u043B\u0438 \u0434\u0430 \u043A\u0430\u0447\u0438\u0442\u0435 .hpi \u0444\u0430\u0439\u043B \u0438 \u043F\u043E \u0442\u043E\u0437\u0438 \u043D\u0430\u0447\u0438\u043D \u0434\u0430 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0442\u0435 \u043F\u043B\u044A\u0433\u0438\u043D \u0438\u0437\u0432\u044A\u043D \u043E\u0441\u043D\u043E\u0432\u043D\u0430\u0442\u0430 \u043F\u043B\u044A\u0433\u0438\u043D \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u044F. diff --git a/core/src/main/resources/hudson/PluginManager/index_bg.properties b/core/src/main/resources/hudson/PluginManager/index_bg.properties new file mode 100644 index 0000000000..95c4188162 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/index_bg.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +All=\u0412\u0441\u0438\u0447\u043A\u0438 +None=\u041D\u0438\u043A\u043E\u0438 +Select=\u0418\u0437\u0431\u0435\u0440\u0438 +UpdatePageDescription=\u0422\u0430\u0437\u0438 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u0432\u0438 \u043F\u043E\u043A\u0430\u0437\u0432\u0430 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F \u043D\u0430 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u043D\u0438\u0442\u0435 \u043F\u043B\u044A\u0433\u0438\u043D\u0438. diff --git a/core/src/main/resources/hudson/PluginManager/installed_bg.properties b/core/src/main/resources/hudson/PluginManager/installed_bg.properties new file mode 100644 index 0000000000..8d62547e3d --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/installed_bg.properties @@ -0,0 +1,13 @@ +# This file is under the MIT License by authors + +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} diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_bg.properties b/core/src/main/resources/hudson/PluginManager/tabBar_bg.properties new file mode 100644 index 0000000000..1c89e45f4a --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/tabBar_bg.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +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 diff --git a/core/src/main/resources/hudson/PluginManager/table_bg.properties b/core/src/main/resources/hudson/PluginManager/table_bg.properties new file mode 100644 index 0000000000..7f6814bcbd --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/table_bg.properties @@ -0,0 +1,11 @@ +# This file is under the MIT License by authors + +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 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 e8c7b7d3ea..1109361606 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_bg.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_bg.properties @@ -22,3 +22,4 @@ 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/markup/RawHtmlMarkupFormatter/config_bg.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_bg.properties new file mode 100644 index 0000000000..a29b3125ad --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_bg.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +blurb=\u0421\u0447\u0438\u0442\u0430\u0439 \u0442\u0435\u043A\u0441\u0442\u0430 \u0437\u0430 HTML \u0438 \u0433\u043E \u043F\u0440\u0438\u0435\u043C\u0438 \u0431\u0435\u0437 \u043F\u0440\u0435\u0432\u043E\u0434 +disableSyntaxHighlighting=\u0418\u0437\u043A\u043B\u044E\u0447\u0432\u0430\u043D\u0435 \u043D\u0430 \u043E\u0446\u0432\u0435\u0442\u044F\u0432\u0430\u043D\u0435 \u043D\u0430 \u0441\u0438\u043D\u0442\u0430\u043A\u0441\u0438\u0441\u0430 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_bg.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_bg.properties new file mode 100644 index 0000000000..377ea21e93 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=\u041F\u0440\u043E\u043C\u0435\u043D\u0438 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 d6f48036ed..07e67e8699 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_bg.properties @@ -20,5 +20,9 @@ # 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} 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 e69b6285f8..f883b8e2c8 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_bg.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Previous\ Build=\u041F\u0440\u0435\u0434\u0438\u0448\u0435\u043D \u0431\u0438\u043B\u0434 +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 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 0da58a5569..996ec2e343 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_bg.properties @@ -22,7 +22,9 @@ 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=\u0418\u0437\u0433\u043B\u0435\u0434 \u0432 \u043A\u043E\u043D\u0437\u043E\u043B\u0430\u0442\u0430 +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 diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_bg.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_bg.properties new file mode 100644 index 0000000000..377ea21e93 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=\u041F\u0440\u043E\u043C\u0435\u043D\u0438 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 db2d86f245..c1bfa99dbe 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_bg.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_bg.properties @@ -20,11 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u041D\u0430\u0437\u0430\u0434 \u043A\u044A\u043C \u0442\u0430\u0431\u043B\u043E\u0442\u043E +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 Build\ scheduled=\u041D\u0430\u0441\u0440\u043E\u0447\u0435\u043D \u0431\u0438\u043B\u0434 Changes=\u041F\u0440\u043E\u043C\u0435\u043D\u0438 Configure=\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u0439 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 \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\ 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 delete=\u0418\u0437\u0442\u0440\u0438\u0439 {0} +delete.confirm=\u0421\u0438\u0433\u0443\u0440\u043D\u0438 \u043B\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043A\u0430\u0442\u0435 \u0434\u0430 \u0438\u0437\u0442\u0440\u0438\u0435\u0442\u0435 {0} \u2018{1}\u2019? +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? diff --git a/core/src/main/resources/hudson/model/AllView/noJob_bg.properties b/core/src/main/resources/hudson/model/AllView/noJob_bg.properties new file mode 100644 index 0000000000..81842ac0f7 --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_bg.properties @@ -0,0 +1,5 @@ +# 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. + 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 new file mode 100644 index 0000000000..be2fa36d1d --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +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 diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_bg.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_bg.properties new file mode 100644 index 0000000000..4739be56de --- /dev/null +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_bg.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +all\ files\ in\ zip=\u0432\u0441\u04384\u043A\u0438 \u0444\u0430\u0439\u043B\u043E\u0432\u0435 \u0432 zip \u0444\u043E\u0440\u043C\u0430\u0442 +view=\u043F\u0440\u0435\u0433\u043B\u0435\u0434 diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_bg.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_bg.properties new file mode 100644 index 0000000000..6ea50ab22d --- /dev/null +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +body=\u0422\u043E\u0432\u0430 \u0435 \u043E\u0441\u043D\u043E\u0432\u043D\u0430 \u0444\u0443\u043D\u043A\u0446\u0438\u043E\u043D\u0430\u043B\u043D\u043E\u0441\u0442 \u0432 Jenkins. Jenkins \u043C\u043E\u0436\u0435 \u0434\u0430 \u0431\u0438\u043B\u0434\u043D\u0435 \u0432\u0430\u0448 \u043F\u0440\u043E\u0435\u043A\u0442 \u043A\u043E\u043C\u0431\u0438\u043D\u0438\u0440\u0430\u0439\u043A\u0438 \u043F\u0440\u043E\u0438\u0437\u0432\u043E\u043B\u0435\u043D \u0441\u043E\u0440\u0441 \u043A\u043E\u043D\u0442\u0440\u043E\u043B \u0441 \u043F\u0440\u043E\u0438\u0437\u0432\u043E\u043B\u043D\u0430 \u0431\u0438\u043B\u0434 \u0441\u0438\u0441\u0442\u0435\u043C\u0430, \u043A\u0430\u0442\u043E \u043C\u043E\u0436\u0435\u0442\u0435 \u0434\u043E\u0440\u0438 \u0434\u0430 \u0433\u043E \u043F\u043E\u043B\u0437\u0432\u0430\u0442\u0435 \u0438 \u0437\u0430 \u0434\u0440\u0443\u0433\u0438 \u0446\u0435\u043B\u0438 \u0440\u0430\u0437\u043B\u0438\u0447\u043D\u0438 \u043E\u0442 \u0431\u0438\u043B\u0434\u0432\u0430\u043D\u0435 \u043D\u0430 \u0441\u043E\u0444\u0442\u0443\u0435\u0440. diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_bg.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_bg.properties new file mode 100644 index 0000000000..54483eb231 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_bg.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build=\u0411\u0438\u043B\u0434 +Duration=\u041F\u0440\u043E\u0434\u044A\u043B\u0436\u0438\u0442\u0435\u043B\u043D\u043E\u0441\u0442 diff --git a/core/src/main/resources/hudson/model/Job/index_bg.properties b/core/src/main/resources/hudson/model/Job/index_bg.properties new file mode 100644 index 0000000000..08a72fc21a --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Project\ name=\u0418\u043C\u0435 \u043D\u0430 \u043F\u0440\u043E\u0435\u043A\u0442 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 1770903b98..e21c565e42 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 @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -format=\u043F\u0440\u0435\u0434\u0438 {0} ({1}), {2} +format="{0} ({1}), \u043F\u0440\u0435\u0434\u0438 {2}" diff --git a/core/src/main/resources/hudson/model/Run/configure_bg.properties b/core/src/main/resources/hudson/model/Run/configure_bg.properties new file mode 100644 index 0000000000..c42f51fe96 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_bg.properties @@ -0,0 +1,6 @@ +# 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 diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_bg.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_bg.properties new file mode 100644 index 0000000000..8d430987ac --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_bg.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +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 diff --git a/core/src/main/resources/hudson/model/Run/delete_bg.properties b/core/src/main/resources/hudson/model/Run/delete_bg.properties new file mode 100644 index 0000000000..470632246e --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete\ this\ build=\u0418\u0437\u0442\u0440\u0438\u0439 \u0431\u0438\u043B\u0434\u0430 diff --git a/core/src/main/resources/hudson/model/Run/logKeep_bg.properties b/core/src/main/resources/hudson/model/Run/logKeep_bg.properties new file mode 100644 index 0000000000..8433c19b12 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/logKeep_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Keep\ this\ build\ forever=\u041F\u0430\u0437\u0438 \u0431\u0438\u043B\u0434\u0430 \u0437\u0430\u0432\u0438\u043D\u0430\u0433\u0438 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 new file mode 100644 index 0000000000..1fbb10639b --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Preparation=\u041F\u043E\u0434\u0433\u043E\u0442\u043E\u0432\u043A\u0430 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_bg.properties new file mode 100644 index 0000000000..2417dc93a1 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_bg.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +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/index_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_bg.properties new file mode 100644 index 0000000000..97c35ef9dc --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +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 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_bg.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_bg.properties new file mode 100644 index 0000000000..c7e62818b2 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_bg.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +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/User/configure_bg.properties b/core/src/main/resources/hudson/model/User/configure_bg.properties new file mode 100644 index 0000000000..f7773d81e6 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/configure_bg.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Description=\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 +Your\ name=\u041F\u044A\u043B\u043D\u043E \u0438\u043C\u0435 diff --git a/core/src/main/resources/hudson/model/User/delete_bg.properties b/core/src/main/resources/hudson/model/User/delete_bg.properties new file mode 100644 index 0000000000..7597cd31c2 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/delete_bg.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +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 diff --git a/core/src/main/resources/hudson/model/User/sidepanel_bg.properties b/core/src/main/resources/hudson/model/User/sidepanel_bg.properties new file mode 100644 index 0000000000..5e7993309c --- /dev/null +++ b/core/src/main/resources/hudson/model/User/sidepanel_bg.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +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 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 new file mode 100644 index 0000000000..de84134b00 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_bg.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +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 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 new file mode 100644 index 0000000000..71047c5f2e --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_bg.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Last\ Active=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u0430 \u0430\u043A\u0442\u0438\u0432\u043D\u043E\u0441\u0442 +Name=\u0418\u043C\u0435 +On=\u041D\u0430 +People=\u0425\u043E\u0440\u0430 +User\ Id=\u041F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B\u0441\u043A\u0438 \u0418\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0442\u043E\u0440 diff --git a/core/src/main/resources/hudson/model/View/builds_bg.properties b/core/src/main/resources/hudson/model/View/builds_bg.properties new file mode 100644 index 0000000000..ef45208337 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/builds_bg.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +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} diff --git a/core/src/main/resources/hudson/model/View/sidepanel_bg.properties b/core/src/main/resources/hudson/model/View/sidepanel_bg.properties index 88cdf8fdc8..d780f3ebc2 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_bg.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_bg.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=\u0418\u0441\u0442\u043E\u0440\u0438\u044F \u043D\u0430 \u0431\u0438\u043B\u0434\u043E\u0432\u0435\u0442\u0435 -Check\ File\ Fingerprint=\u041F\u0440\u043E\u0432\u0435\u0440\u0438 \u043E\u0442\u043F\u0435\u0447\u0430\u0442\u044A\u043A\u0430 \u043D\u0430 \u0444\u0430\u0439\u043B\u0430 -Delete\ View=\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043D\u0435 \u043D\u0430 \u0438\u0437\u0433\u043B\u0435\u0434 -Edit\ View=\u0420\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u0438\u0437\u0433\u043B\u0435\u0434 -NewJob=\u041D\u043E\u0432\u0438 {0} -People=\u0425\u043E\u0440\u0430 +Build\ History=\u0418\u0441\u0442\u043E\u0440\u0438\u044F \u043D\u0430 \u043A\u043E\u043C\u043F\u0438\u043B\u0430\u0446\u0438\u0438\u0442\u0435 +Check\ File\ Fingerprint=\u041F\u0440\u043E\u0432\u0435\u0440\u043A\u0430 \u043D\u0430 \u043E\u0442\u043F\u0435\u0447\u0430\u0442\u044A\u043A\u0430 \u043D\u0430 \u0444\u0430\u0439\u043B\u0430 +Delete\ View=\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043D\u0435 \u043D\u0430 \u0438\u0437\u0433\u043B\u0435\u0434\u0430 +Edit\ View=\u0420\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u0438\u0437\u0433\u043B\u0435\u0434\u0430 +NewJob=\u041D\u043E\u0432 {0} +People=\u0427\u043E\u0432\u0435\u0447\u0340\u0435\u0442\u0430 Project\ Relationship=\u0412\u0440\u044A\u0437\u043A\u0430 \u0441 \u043F\u0440\u043E\u0435\u043A\u0442 diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_bg.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_bg.properties new file mode 100644 index 0000000000..473ceb0dd1 --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ changes.=\u0411\u0435\u0437 \u043F\u0440\u043E\u043C\u0435\u043D\u0438 diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_bg.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_bg.properties new file mode 100644 index 0000000000..bbbc025d66 --- /dev/null +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_bg.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +No\ changes\ in\ any\ of\ the\ builds.=\u041D\u044F\u043C\u0430 \u043F\u0440\u043E\u043C\u0435\u043D\u0438 \u0432 \u0431\u0438\u043B\u0434\u043E\u0432\u0435\u0442\u0435. +detail=\u0434\u0435\u0442\u0430\u0439\u043B\u0438 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_bg.properties new file mode 100644 index 0000000000..ffc1366630 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +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 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_bg.properties new file mode 100644 index 0000000000..f86036026a --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_bg.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +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. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_bg.properties new file mode 100644 index 0000000000..8eac1a5473 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +sign\ up=\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044F diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_bg.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_bg.properties new file mode 100644 index 0000000000..c70e0de0f2 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_bg.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +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 diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_bg.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_bg.properties new file mode 100644 index 0000000000..a37824abc6 --- /dev/null +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Unprotected\ URLs=\u043D\u0435\u0437\u0430\u0449\u0438\u0442\u0435\u043D URL diff --git a/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_bg.properties b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_bg.properties new file mode 100644 index 0000000000..407748687c --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Show\ all\ failed\ tests=\u041F\u043E\u043A\u0430\u0436\u0438 \u0432\u0441\u0438\u0447\u043A\u0438 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0438 \u0442\u0435\u0441\u0442\u043E\u0432\u0435 diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_bg.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_bg.properties new file mode 100644 index 0000000000..3fbc33679a --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_bg.properties @@ -0,0 +1,12 @@ +# This file is under the MIT License by authors + +Age=\u0441\u0442\u0430\u0440\u043E\u0441\u0442 +All\ Failed\ Tests=\u0412\u0441\u0438\u0447\u043A\u0438 \u043F\u0440\u043E\u0432\u0430\u043B\u0435\u043D\u0438 \u0442\u0435\u0441\u0442\u043E\u0432\u0435 +All\ Tests=\u0412\u0441\u0438\u0447\u043A\u0438 \u0422\u0435\u0441\u0442\u043E\u0432\u0435 +Duration=\u041F\u0440\u043E\u0434\u044A\u043B\u0436\u0438\u0442\u0435\u043B\u043D\u043E\u0441\u0442 +Fail=\u043F\u0440\u043E\u0432\u0430\u043B +Loading...=\u0417\u0430\u0440\u0435\u0436\u0434\u0430\u043D\u0435... +Skip=\u043D\u0435\u0438\u0437\u043F\u044A\u043B\u043D\u0435\u043D +Test\ Name=\u0418\u043C\u0435 \u043D\u0430 \u0442\u0435\u0441\u0442 +Total=\u041E\u0431\u0449\u043E +diff=\u0441\u0440\u0430\u0432\u043D\u044F\u0432\u0430\u043D\u0435 diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_bg.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_bg.properties new file mode 100644 index 0000000000..13f7729c6b --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_bg.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +History=\u0418\u0441\u0442\u043E\u0440\u0438\u044F +Next\ Build=\u0421\u043B\u0435\u0434\u0432\u0430\u0449 \u0411\u0438\u043B\u0434 +Previous\ Build=\u041F\u0440\u0435\u0434\u0438\u0448\u0435\u043D \u0431\u0438\u043B\u0434 diff --git a/core/src/main/resources/hudson/tasks/test/TestResult/index_bg.properties b/core/src/main/resources/hudson/tasks/test/TestResult/index_bg.properties new file mode 100644 index 0000000000..532a24bdcc --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResult/index_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +took=\u043E\u0442\u043D\u0435 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 new file mode 100644 index 0000000000..04a00fee1b --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_bg.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +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}" diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_bg.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_bg.properties index a95970d844..47b62710c7 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_bg.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_bg.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Schedule\ a\ build=\u041D\u0430\u0441\u0440\u043E\u0447\u0438 build +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 diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_bg.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_bg.properties new file mode 100644 index 0000000000..d30e6a0a93 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +New\ View=\u041D\u043E\u0432 \u0438\u0437\u0433\u043B\u0435\u0434 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_bg.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_bg.properties new file mode 100644 index 0000000000..c7bb923803 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=\u043D\u0435 \u0435 \u043D\u0430\u043B\u0438\u0447\u043D\u043E diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_bg.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_bg.properties new file mode 100644 index 0000000000..bf85796b54 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=- diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_bg.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_bg.properties new file mode 100644 index 0000000000..c7bb923803 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=\u043D\u0435 \u0435 \u043D\u0430\u043B\u0438\u0447\u043D\u043E 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 667ffbd671..21599b2bde 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_bg.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_bg.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=\u0421\u0442\u0430\u0442\u0443\u0441 \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\u0438\u044F \u0431\u0438\u043B\u0434 diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_bg.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_bg.properties new file mode 100644 index 0000000000..d2eff49e0b --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +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 diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_bg.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_bg.properties new file mode 100644 index 0000000000..da63260520 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_bg.properties @@ -0,0 +1,4 @@ +# 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/HistoryWidget/index_bg.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_bg.properties index 96b3ef6648..5797ac76ce 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_bg.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_bg.properties @@ -23,4 +23,4 @@ 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\u0435\u043D\u0434\u0435\u043D\u0446\u0438\u044F +trend=\u0442\u0440\u0435\u043D\u0434 diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_bg.properties new file mode 100644 index 0000000000..6b96eea040 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_bg.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +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 diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_bg.properties index fb3824fd8a..6c688ad27c 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_bg.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_bg.properties @@ -20,4 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=\u0414\u043E\u0431\u0430\u0432\u044F\u043D\u0435, \u043F\u0440\u0435\u043C\u0430\u0445\u0432\u0430\u043D\u0435, \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u0438\u0440\u0430\u043D\u0435 \u0438 \u043D\u0430\u0431\u043B\u044E\u0434\u0435\u043D\u0438\u0435 \u043D\u0430 \u0440\u0430\u0437\u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u043D\u043E\u0434\u043E\u0432\u0435, \u043A\u043E\u0439\u0442\u043E Jenkins \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430 \u0437\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u0437\u0430\u0434\u0430\u0447\u0438. +Configure\ global\ settings\ and\ paths.=\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u0433\u043B\u0430\u0432\u043D\u0438\u0442\u0435 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u0438 \u043F\u044A\u0442\u0435\u043A\u0438. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=\u0418\u0437\u0447\u0438\u0441\u0442\u0438 \u0432\u0441\u0438\u0447\u043A\u0438 \u0434\u0430\u043D\u043D\u0438 \u043E\u0442 \u043F\u0430\u043C\u0435\u0442\u0442\u0430 \u0438 \u0433\u0438 \u043F\u0440\u0435\u0437\u0430\u0440\u0435\u0434\u0438 \u043E\u0442 \u0444\u0430\u0439\u043B\u043E\u0432\u0430\u0442\u0430 \u0441\u0438\u0441\u0442\u0435\u043C\u0430 +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=\u0418\u0437\u043F\u044A\u043B\u043D\u0435\u0442\u0435 \u043F\u0440\u043E\u0438\u0437\u0432\u043E\u043B\u0435\u043D \u0441\u043A\u0440\u0438\u043F\u0442 \u0437\u0430 \u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043D\u0435/\u043E\u0442\u0441\u0442\u0440\u0430\u043D\u044F\u0432\u0430\u043D\u0435 \u043D\u0430 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0438/\u0434\u0438\u0430\u0433\u043D\u043E\u0441\u0442\u0438\u0433\u0430. +JenkinsCliText=\u0414\u043E\u0441\u0442\u044A\u043F\u0432\u0430\u0439\u0442\u0435/\u0443\u043F\u0440\u0430\u0432\u043B\u044F\u0432\u0430\u0439\u0442\u0435 Jenkins \u043E\u0442 \u043A\u043E\u043D\u0437\u043E\u043B\u0430 \u0438\u043B\u0438 \u0441\u043A\u0440\u0438\u043F\u0442. +LoadStatisticsText=\u041F\u0440\u043E\u0432\u0435\u0440\u0438 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u043D\u0438\u0442\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u0438 \u0438 \u0432\u0438\u0436 \u0434\u0430\u043B\u0438 \u0438\u043C\u0430\u0448 \u043E\u0442 \u043D\u0443\u0436\u0434\u0430 \u043E\u0442 \u043E\u0449\u0435 \u043A\u043E\u043C\u043F\u044E\u0442\u0440\u0438 \u0437\u0430 \u0442\u0432\u043E\u0438\u0442\u0435 \u0431\u0438\u043B\u0434\u043E\u0432\u0435 Manage\ Jenkins=\u041E\u0440\u0433\u0430\u043D\u0438\u0437\u0430\u0446\u0438\u044F \u043D\u0430 Jenkins +Script\ Console=\u041A\u043E\u043D\u0437\u043E\u043B\u0430 \u0437\u0430 \u0441\u043A\u0440\u0438\u043F\u0442\u043E\u0432\u0435 +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=\u0421\u043F\u0438\u0440\u0430 \u0438\u0437\u043F\u044A\u043B\u043D\u0435\u043D\u0438\u0435\u0442\u043E \u043D\u0430 \u043D\u043E\u0432\u0438 \u0431\u0438\u043B\u0434\u043E\u0432\u0435 \u0437\u0430 \u0434\u0430 \u043C\u043E\u0436\u0435 \u0441\u0438\u0441\u0442\u0435\u043C\u0430\u0442\u0430 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043A\u043B\u044E\u0447\u0438 \u0431\u0435\u0437\u043E\u043F\u0430\u0441\u043D\u043E. +SystemLogText=\u0421\u0438\u0441\u0442\u0435\u043C\u043D\u0438\u044F\u0442 \u043B\u043E\u0433 \u043F\u0440\u0438\u0445\u0432\u0430\u0449\u0430 \u0438\u0437\u0445\u043E\u0434\u0430 \u043E\u0442 java.util.logging, \u043A\u043E\u0439\u0442\u043E \u0435 \u0441\u0432\u044A\u0440\u0437\u0430\u043D \u0441 Jenkins. diff --git a/core/src/main/resources/lib/form/advanced_bg.properties b/core/src/main/resources/lib/form/advanced_bg.properties new file mode 100644 index 0000000000..633eba41b8 --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Advanced=\u0417\u0430 \u043D\u0430\u043F\u0440\u0435\u0434\u043D\u0430\u043B\u0438 diff --git a/core/src/main/resources/lib/form/apply_bg.properties b/core/src/main/resources/lib/form/apply_bg.properties new file mode 100644 index 0000000000..f102d04d10 --- /dev/null +++ b/core/src/main/resources/lib/form/apply_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Apply=\u041F\u0440\u0438\u043B\u043E\u0436\u0438 diff --git a/core/src/main/resources/lib/form/textarea_bg.properties b/core/src/main/resources/lib/form/textarea_bg.properties new file mode 100644 index 0000000000..7100e52680 --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_bg.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=\u0421\u043A\u0440\u0438\u0432\u0430\u043D\u0435 \u043D\u0430 \u043F\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043B\u0435\u043D \u043F\u0440\u0435\u0433\u043B\u0435\u0434 +Preview=\u041F\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043B\u0435\u043D \u043F\u0440\u0435\u0433\u043B\u0435\u0434 diff --git a/core/src/main/resources/lib/hudson/buildListTable_bg.properties b/core/src/main/resources/lib/hudson/buildListTable_bg.properties new file mode 100644 index 0000000000..7492fe105a --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildListTable_bg.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Build=\u0411\u0438\u043B\u0434 +Click\ to\ center\ timeline\ on\ event=\u041D\u0430\u0442\u0438\u0441\u043D\u0438 \u0437\u0430 \u043F\u043E\u0437\u0438\u0446\u0438\u043E\u043D\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u0442\u0430\u0439\u043C\u043B\u0430\u0439\u043D\u0430 \u0432\u044A\u0440\u0445\u0443 \u043C\u043E\u043C\u0435\u043D\u0442 +Console\ output=\u041A\u043E\u043D\u0437\u043E\u043B\u0435\u043D \u043B\u043E\u0433 +Status=\u0421\u0442\u0430\u0442\u0443\u0441 +Time\ Since=\u0412\u0440\u0435\u043C\u0435 \u043E\u0442 diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_bg.properties b/core/src/main/resources/lib/hudson/buildProgressBar_bg.properties index b8dc8b4e9f..ea890b6b2b 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_bg.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_bg.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=\u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D \u043F\u0440\u0435\u0434\u0438 {0}
\u041F\u0440\u0438\u0431\u043B\u0438\u0437\u0438\u0442\u0435\u043B\u043D\u043E \u043E\u0441\u0442\u0430\u0432\u0430\u0449\u043E \u0432\u0440\u0435\u043C\u0435: {1} +text=\u041D\u0430\u0447\u0430\u043B\u043E \u043F\u0440\u0435\u0434\u0438 {0}
\u041E\u0441\u0442\u0430\u0432\u0430\u0449\u043E \u0432\u0440\u0435\u043C\u0435: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_bg.properties b/core/src/main/resources/lib/hudson/editableDescription_bg.properties index fe32d896ad..f6d676ecda 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_bg.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_bg.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=\u0434\u043E\u0431\u0430\u0432\u0438 \u043E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 +add\ description=\u0434\u043E\u0431\u0430\u0432\u044F\u043D\u0435 \u043D\u0430 \u043E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 edit\ description=\u043F\u0440\u043E\u043C\u0435\u043D\u0438 \u043E\u043F\u0438\u0441\u0430\u043D\u0438\u0435\u0442\u043E diff --git a/core/src/main/resources/lib/hudson/executors_bg.properties b/core/src/main/resources/lib/hudson/executors_bg.properties index 35d3e2f86b..fc51b26376 100644 --- a/core/src/main/resources/lib/hudson/executors_bg.properties +++ b/core/src/main/resources/lib/hudson/executors_bg.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=\u0421\u0442\u0430\u0442\u0443\u0441 \u043D\u0430 \u043C\u0430\u0448\u0438\u043D\u0430\u0442\u0430 \u0438\u0437\u043F\u044A\u043B\u043D\u0438\u0442\u0435\u043B -Building=\u0411\u0438\u043B\u0434\u0432\u0430\u043D\u0435 -Idle=\u0421\u0432\u044A\u0440\u0437\u0430\u043D +Build\ Executor\ Status=\u0421\u0442\u0430\u0442\u0443\u0441 \u043D\u0430 \u0438\u0437\u043F\u044A\u043B\u043D\u0438\u0442\u0435\u043B\u044F +Building=\u0411\u0438\u043B\u0434\u0432\u0430\u043D\u0435 \u043D\u0430 +Idle=\u0421\u0432\u043E\u0431\u043E\u0434\u0435\u043D Master=\u0413\u043B\u0430\u0432\u043D\u0430 \u043C\u0430\u0448\u0438\u043D\u0430 -Status=\u0421\u0442\u0430\u0442\u0443\u0441 +Status=\u0421\u044A\u0441\u0442\u043E\u044F\u043D\u0438\u0435 offline=\u043E\u0444\u043B\u0430\u0439\u043D terminate\ this\ build=\u043F\u0440\u0435\u043A\u0440\u0430\u0442\u0438 \u0431\u0438\u043B\u0434\u0430 diff --git a/core/src/main/resources/lib/hudson/queue_bg.properties b/core/src/main/resources/lib/hudson/queue_bg.properties index 2fd80ea311..7507ca58f3 100644 --- a/core/src/main/resources/lib/hudson/queue_bg.properties +++ b/core/src/main/resources/lib/hudson/queue_bg.properties @@ -20,5 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u041E\u043F\u0430\u0448\u043A\u0430 \u043E\u0442 \u0431\u0438\u043B\u0434\u043E\u0432\u0435 -No\ builds\ in\ the\ queue.=\u041D\u044F\u043C\u0430 \u0431\u0438\u043B\u0434\u043E\u0432\u0435 \u0432 \u043E\u043F\u0430\u0448\u043A\u0430\u0442\u0430 +Build\ Queue=\u041E\u043F\u0430\u0448\u043A\u0430 \u0437\u0430 \u0438\u0437\u043F\u044A\u043B\u043D\u0435\u043D\u0438\u0435 +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins \u0449\u0435 \u0441\u0435 \u0438\u0437\u043A\u043B\u044E\u0447\u0438. \u0414\u043E\u0431\u0430\u0432\u0435\u043D\u0438\u0442\u0435 \u0431\u0438\u043B\u0434\u043E\u0432\u0435 \u043D\u044F\u043C\u0430 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043F\u044A\u043B\u043D\u044F\u0442 +No\ builds\ in\ the\ queue.=\u041D\u044F\u043C\u0430 \u043A\u043E\u043C\u043F\u0438\u043B\u0430\u0446\u0438\u0438 \u0432 \u043E\u043F\u0430\u0448\u043A\u0430\u0442\u0430 +cancel=\u043E\u0442\u043A\u0430\u0437 diff --git a/core/src/main/resources/lib/hudson/rssBar_bg.properties b/core/src/main/resources/lib/hudson/rssBar_bg.properties index 86274d5256..b95d4f1bd8 100644 --- a/core/src/main/resources/lib/hudson/rssBar_bg.properties +++ b/core/src/main/resources/lib/hudson/rssBar_bg.properties @@ -22,5 +22,5 @@ Legend=\u041B\u0435\u0433\u0435\u043D\u0434\u0430 for\ all=\u0437\u0430 \u0432\u0441\u0438\u0447\u043A\u0438 -for\ failures=\u0437\u0430 \u043F\u0440\u043E\u0432\u0430\u043B\u0435\u043D\u0438\u0442\u0435 +for\ failures=\u0437\u0430 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0438\u0442\u0435 for\ just\ latest\ builds=\u0441\u0430\u043C\u043E \u0437\u0430 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0438\u0442\u0435 diff --git a/core/src/main/resources/lib/hudson/test-result_bg.properties b/core/src/main/resources/lib/hudson/test-result_bg.properties new file mode 100644 index 0000000000..16fc3dbe91 --- /dev/null +++ b/core/src/main/resources/lib/hudson/test-result_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +multifailures="{0} \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0438 {1}" diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_bg.properties b/core/src/main/resources/lib/layout/breadcrumbBar_bg.properties new file mode 100644 index 0000000000..238e217be2 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_bg.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=\u0417\u0430\u0431\u0440\u0430\u043D\u0438 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u043F\u0440\u0435\u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043D\u0435 +ENABLE\ AUTO\ REFRESH=\u0420\u0410\u0417\u0420\u0415\u0428\u0418 \u0410\u0412\u0422\u041E\u041C\u0410\u0422\u0418\u0427\u041D\u041E \u041F\u0420\u0415\u0417\u0410\u0420\u0415\u0416\u0414\u0410\u041D\u0415 diff --git a/core/src/main/resources/lib/layout/layout_bg.properties b/core/src/main/resources/lib/layout/layout_bg.properties index 14ab0502e8..a2c13fc1de 100644 --- a/core/src/main/resources/lib/layout/layout_bg.properties +++ b/core/src/main/resources/lib/layout/layout_bg.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ENABLE\ AUTO\ REFRESH=\u0420\u0410\u0417\u0420\u0415\u0428\u0418 \u0410\u0412\u0422\u041E\u041C\u0410\u0422\u0418\u0427\u041D\u041E \u041E\u0411\u041D\u041E\u0412\u042F\u0412\u0410\u041D\u0415 -Page\ generated=\u0421\u0442\u0440\u0430\u043D\u0438\u0446\u0430\u0442\u0430 \u0433\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u0430 +ENABLE\ AUTO\ REFRESH=\u0410\u0412\u0422\u041E\u041C\u0410\u0422\u0418\u0427\u041D\u041E \u041E\u0411\u041D\u041E\u0412\u042F\u0412\u0410\u041D\u0415 +Page\ generated=\u0421\u0442\u0440\u0430\u043D\u0438\u0446\u0430\u0442\u0430 \u0435 \u0441\u044A\u0437\u0434\u0430\u0434\u0435\u043D\u0430 logout=\u0438\u0437\u0445\u043E\u0434 search=\u0442\u044A\u0440\u0441\u0435\u043D\u0435 searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/\u041A\u0443\u0442\u0438\u044F+\u0437\u0430+\u0442\u044A\u0440\u0441\u0435\u043D\u0435 diff --git a/core/src/main/resources/lib/layout/main-panel_bg.properties b/core/src/main/resources/lib/layout/main-panel_bg.properties new file mode 100644 index 0000000000..04ae4e727c --- /dev/null +++ b/core/src/main/resources/lib/layout/main-panel_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ is\ going\ to\ shut\ down=Jenkins \u0449\u0435 \u0441\u0435 \u0438\u0437\u043A\u043B\u044E\u0447\u0438 diff --git a/core/src/main/resources/lib/layout/progressiveRendering_bg.properties b/core/src/main/resources/lib/layout/progressiveRendering_bg.properties new file mode 100644 index 0000000000..f673142d53 --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_bg.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=\u0418\u0437\u0447\u0438\u0441\u043B\u044F\u0432\u0430 \u0441\u0435. diff --git a/core/src/main/resources/lib/test/bar_bg.properties b/core/src/main/resources/lib/test/bar_bg.properties new file mode 100644 index 0000000000..478b1f0a3c --- /dev/null +++ b/core/src/main/resources/lib/test/bar_bg.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +failures=\u0433\u0440\u0435\u0448\u043A\u0438 +tests=\u0442\u0435\u0441\u0442\u043E\u0432\u0435 -- GitLab From dedacbccee89f479493e5c9d24acd78d3c0f6abd Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:54 -0700 Subject: [PATCH 032/308] Community-contributed localization for bn_IN (bn_IN) --- .../hudson/model/AbstractProject/sidepanel_bn_IN.properties | 3 +++ .../hudson/model/ComputerSet/index_bn_IN.properties | 3 +++ .../hudson/model/ComputerSet/sidepanel_bn_IN.properties | 6 ++++++ .../resources/hudson/model/View/sidepanel_bn_IN.properties | 3 +++ .../security/SecurityRealm/loginLink_bn_IN.properties | 3 +++ .../views/DefaultViewsTabBar/viewTabs_bn_IN.properties | 3 +++ .../views/LastDurationColumn/columnHeader_bn_IN.properties | 3 +++ .../views/LastFailureColumn/columnHeader_bn_IN.properties | 3 +++ .../views/LastSuccessColumn/columnHeader_bn_IN.properties | 3 +++ .../hudson/widgets/HistoryWidget/index_bn_IN.properties | 3 +++ .../main/resources/lib/hudson/buildHealth_bn_IN.properties | 3 +++ .../main/resources/lib/hudson/executors_bn_IN.properties | 5 +++++ core/src/main/resources/lib/hudson/queue_bn_IN.properties | 4 ++++ .../resources/lib/layout/breadcrumbBar_bn_IN.properties | 3 +++ core/src/main/resources/lib/layout/layout_bn_IN.properties | 5 +++++ 15 files changed, 53 insertions(+) create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_bn_IN.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/index_bn_IN.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/sidepanel_bn_IN.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_bn_IN.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_bn_IN.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_bn_IN.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_bn_IN.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_bn_IN.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_bn_IN.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_bn_IN.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_bn_IN.properties create mode 100644 core/src/main/resources/lib/hudson/executors_bn_IN.properties create mode 100644 core/src/main/resources/lib/hudson/queue_bn_IN.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_bn_IN.properties create mode 100644 core/src/main/resources/lib/layout/layout_bn_IN.properties 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 new file mode 100644 index 0000000000..841d8a961c --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_bn_IN.properties @@ -0,0 +1,3 @@ +# 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/ComputerSet/index_bn_IN.properties b/core/src/main/resources/hudson/model/ComputerSet/index_bn_IN.properties new file mode 100644 index 0000000000..da7fb5ad97 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/index_bn_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=e diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_bn_IN.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_bn_IN.properties new file mode 100644 index 0000000000..4e9e88a334 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_bn_IN.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=e +Configure=e +Manage\ Jenkins=e +New\ Node=e diff --git a/core/src/main/resources/hudson/model/View/sidepanel_bn_IN.properties b/core/src/main/resources/hudson/model/View/sidepanel_bn_IN.properties new file mode 100644 index 0000000000..cefc3a8a7e --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_bn_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Build\ History=Yes diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_bn_IN.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_bn_IN.properties new file mode 100644 index 0000000000..f1834aef08 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_bn_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +login=eee 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 new file mode 100644 index 0000000000..88b57a3b7d --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_bn_IN.properties @@ -0,0 +1,3 @@ +# 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/LastDurationColumn/columnHeader_bn_IN.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_bn_IN.properties new file mode 100644 index 0000000000..cb28a94b8f --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_bn_IN.properties @@ -0,0 +1,3 @@ +# 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/LastFailureColumn/columnHeader_bn_IN.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_bn_IN.properties new file mode 100644 index 0000000000..5aec2800fa --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_bn_IN.properties @@ -0,0 +1,3 @@ +# 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/LastSuccessColumn/columnHeader_bn_IN.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_bn_IN.properties new file mode 100644 index 0000000000..42b3052311 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_bn_IN.properties @@ -0,0 +1,3 @@ +# 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/widgets/HistoryWidget/index_bn_IN.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_bn_IN.properties new file mode 100644 index 0000000000..40b5e92087 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_bn_IN.properties @@ -0,0 +1,3 @@ +# 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/lib/hudson/buildHealth_bn_IN.properties b/core/src/main/resources/lib/hudson/buildHealth_bn_IN.properties new file mode 100644 index 0000000000..4aee0dcb13 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_bn_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Description=\u09AC\u09CD\u09AF\u0996\u09CD\u09AF\u09BE diff --git a/core/src/main/resources/lib/hudson/executors_bn_IN.properties b/core/src/main/resources/lib/hudson/executors_bn_IN.properties new file mode 100644 index 0000000000..54ee003949 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_bn_IN.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Build\ Executor\ Status=e +Idle=\u0995\u09B0\u09CD\u09AE\u09B9\u09C0\u09A8 +Status=e diff --git a/core/src/main/resources/lib/hudson/queue_bn_IN.properties b/core/src/main/resources/lib/hudson/queue_bn_IN.properties new file mode 100644 index 0000000000..3e6f3a42f2 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_bn_IN.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build\ Queue=e +No\ builds\ in\ the\ queue.=e diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_bn_IN.properties b/core/src/main/resources/lib/layout/breadcrumbBar_bn_IN.properties new file mode 100644 index 0000000000..d47404968b --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_bn_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=e diff --git a/core/src/main/resources/lib/layout/layout_bn_IN.properties b/core/src/main/resources/lib/layout/layout_bn_IN.properties new file mode 100644 index 0000000000..53a2a17deb --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_bn_IN.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=yes +search=eeee +searchBox.url=ee -- GitLab From f033c4a12fbe4bcc544f7cefaa0a290120e3d386 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:54 -0700 Subject: [PATCH 033/308] Community-contributed localization for Catalan; Valencian (ca) --- .../hudson/PluginManager/index_ca.properties | 6 +++++ .../PluginManager/installed_ca.properties | 3 +++ .../hudson/PluginManager/tabBar_ca.properties | 6 +++++ .../hudson/PluginManager/table_ca.properties | 8 +++++++ .../message_ca.properties | 5 ++++ .../matrix/MatrixBuild/delete_ca.properties | 3 +++ .../model/AbstractBuild/changes_ca.properties | 3 +++ .../model/AbstractBuild/index_ca.properties | 8 +++++++ .../AbstractBuild/sidepanel_ca.properties | 3 ++- .../model/AbstractBuild/tasks_ca.properties | 2 +- .../configure-common_ca.properties | 4 ++++ .../AbstractItem/noWorkspace_ca.properties | 4 ++++ .../model/AbstractProject/main_ca.properties | 5 ++-- .../makeDisabled_ca.properties | 2 +- .../AbstractProject/sidepanel_ca.properties | 10 ++++---- .../hudson/model/AllView/noJob_ca.properties | 5 ++++ .../UserIdCause/description_ca.properties | 3 +++ .../model/ComputerSet/index_ca.properties | 5 ++++ .../model/ComputerSet/sidepanel_ca.properties | 6 +++++ .../DirectoryBrowserSupport/dir_ca.properties | 4 ++++ .../newJobDetail_ca.properties | 3 +++ .../hudson/model/JDK/config_ca.properties | 3 +++ .../hudson/model/Job/configure_ca.properties | 7 ++++++ .../hudson/model/Job/index_ca.properties | 3 +++ .../ListView/newViewDetail_ca.properties | 3 +++ .../model/MyView/newViewDetail_ca.properties | 3 +++ .../MyViewsProperty/newView_ca.properties | 3 +++ .../ParametersAction/index_ca.properties | 3 +++ .../config_ca.properties | 3 +++ .../Permalink/link_ca.properties | 2 +- .../ProxyView/newViewDetail_ca.properties | 3 +++ .../hudson/model/Run/configure_ca.properties | 6 +++++ .../model/Run/confirmDelete_ca.properties | 4 ++++ .../hudson/model/Run/delete_ca.properties | 3 +++ .../hudson/model/Run/logKeep_ca.properties | 3 +++ .../DownloadJob/Failure/status_ca.properties | 3 +++ .../model/UpdateCenter/body_ca.properties | 4 ++++ .../UpdateCenter/sidepanel_ca.properties | 2 +- .../hudson/model/User/configure_ca.properties | 4 ++++ .../hudson/model/User/index_ca.properties | 3 +++ .../hudson/model/User/sidepanel_ca.properties | 6 +++++ .../View/AsynchPeople/index_ca.properties | 7 ++++++ .../model/View/People/index_ca.properties | 8 +++++++ .../hudson/model/View/builds_ca.properties | 4 ++++ .../hudson/model/View/newJob_ca.properties | 4 ++++ .../hudson/model/View/sidepanel_ca.properties | 9 +++++--- .../EmptyChangeLogSet/digest_ca.properties | 3 +++ .../loginLink_ca.properties | 3 +++ .../SecurityRealm/loginLink_ca.properties | 3 +++ .../config_ca.properties | 4 ++++ .../config_ca.properties | 4 ++++ .../tools/JDKInstaller/config_ca.properties | 4 ++++ .../ToolInstallation/config_ca.properties | 4 ++++ .../ToolInstallation/global_ca.properties | 6 +++++ .../config_ca.properties | 3 +++ .../BuildButtonColumn/column_ca.properties | 4 +++- .../myViewTabs_ca.properties | 3 +++ .../DefaultViewsTabBar/viewTabs_ca.properties | 2 +- .../columnHeader_ca.properties | 2 +- .../columnHeader_ca.properties | 2 +- .../LastFailureColumn/column_ca.properties | 1 - .../columnHeader_ca.properties | 2 +- .../LastSuccessColumn/column_ca.properties | 2 +- .../StatusColumn/columnHeader_ca.properties | 2 +- .../WeatherColumn/columnHeader_ca.properties | 3 +++ .../widgets/HistoryWidget/index_ca.properties | 5 ++-- .../management/PluginsLink/info_ca.properties | 3 +++ .../model/Jenkins/configure_ca.properties | 4 ++++ .../model/Jenkins/downgrade_ca.properties | 3 +++ .../model/Jenkins/loginError_ca.properties | 3 +++ .../jenkins/model/Jenkins/login_ca.properties | 6 +++++ .../model/Jenkins/manage_ca.properties | 23 +++++++++++++++++++ .../resources/lib/form/advanced_ca.properties | 3 +++ .../resources/lib/form/apply_ca.properties | 3 +++ .../breadcrumb-config-outline_ca.properties | 3 +++ .../resources/lib/form/helpArea_ca.properties | 3 +++ .../form/repeatableDeleteButton_ca.properties | 3 +++ .../lib/form/repeatable_ca.properties | 3 +++ .../resources/lib/form/textarea_ca.properties | 4 ++++ .../lib/hudson/buildCaption_ca.properties | 4 ++++ .../lib/hudson/buildListTable_ca.properties | 7 ++++++ .../hudson/editableDescription_ca.properties | 4 ++-- .../lib/hudson/executors_ca.properties | 5 ++-- .../lib/hudson/iconSize_ca.properties | 2 +- .../config-customWorkspace_ca.properties | 4 ++++ .../project/config-quietPeriod_ca.properties | 3 +++ .../project/config-retryCount_ca.properties | 3 +++ .../hudson/project/config-scm_ca.properties | 3 +++ .../resources/lib/hudson/queue_ca.properties | 7 ++++-- .../resources/lib/hudson/rssBar_ca.properties | 5 ++-- .../lib/hudson/test-result_ca.properties | 3 +++ .../lib/layout/breadcrumbBar_ca.properties | 4 ++++ .../resources/lib/layout/layout_ca.properties | 7 +++--- .../layout/progressiveRendering_ca.properties | 3 +++ 94 files changed, 355 insertions(+), 36 deletions(-) create mode 100644 core/src/main/resources/hudson/PluginManager/index_ca.properties create mode 100644 core/src/main/resources/hudson/PluginManager/installed_ca.properties create mode 100644 core/src/main/resources/hudson/PluginManager/tabBar_ca.properties create mode 100644 core/src/main/resources/hudson/PluginManager/table_ca.properties create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ca.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixBuild/delete_ca.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/changes_ca.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_ca.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/configure-common_ca.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ca.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_ca.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UserIdCause/description_ca.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/index_ca.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/sidepanel_ca.properties create mode 100644 core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ca.properties create mode 100644 core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_ca.properties create mode 100644 core/src/main/resources/hudson/model/JDK/config_ca.properties create mode 100644 core/src/main/resources/hudson/model/Job/configure_ca.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_ca.properties create mode 100644 core/src/main/resources/hudson/model/ListView/newViewDetail_ca.properties create mode 100644 core/src/main/resources/hudson/model/MyView/newViewDetail_ca.properties create mode 100644 core/src/main/resources/hudson/model/MyViewsProperty/newView_ca.properties create mode 100644 core/src/main/resources/hudson/model/ParametersAction/index_ca.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_ca.properties create mode 100644 core/src/main/resources/hudson/model/ProxyView/newViewDetail_ca.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_ca.properties create mode 100644 core/src/main/resources/hudson/model/Run/confirmDelete_ca.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_ca.properties create mode 100644 core/src/main/resources/hudson/model/Run/logKeep_ca.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_ca.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_ca.properties create mode 100644 core/src/main/resources/hudson/model/User/configure_ca.properties create mode 100644 core/src/main/resources/hudson/model/User/index_ca.properties create mode 100644 core/src/main/resources/hudson/model/User/sidepanel_ca.properties create mode 100644 core/src/main/resources/hudson/model/View/AsynchPeople/index_ca.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_ca.properties create mode 100644 core/src/main/resources/hudson/model/View/builds_ca.properties create mode 100644 core/src/main/resources/hudson/model/View/newJob_ca.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ca.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ca.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_ca.properties create mode 100644 core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ca.properties create mode 100644 core/src/main/resources/hudson/tools/InstallSourceProperty/config_ca.properties create mode 100644 core/src/main/resources/hudson/tools/JDKInstaller/config_ca.properties create mode 100644 core/src/main/resources/hudson/tools/ToolInstallation/config_ca.properties create mode 100644 core/src/main/resources/hudson/tools/ToolInstallation/global_ca.properties create mode 100644 core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_ca.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_ca.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ca.properties create mode 100644 core/src/main/resources/jenkins/management/PluginsLink/info_ca.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/configure_ca.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/downgrade_ca.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/loginError_ca.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/login_ca.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/manage_ca.properties create mode 100644 core/src/main/resources/lib/form/advanced_ca.properties create mode 100644 core/src/main/resources/lib/form/apply_ca.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_ca.properties create mode 100644 core/src/main/resources/lib/form/helpArea_ca.properties create mode 100644 core/src/main/resources/lib/form/repeatableDeleteButton_ca.properties create mode 100644 core/src/main/resources/lib/form/repeatable_ca.properties create mode 100644 core/src/main/resources/lib/form/textarea_ca.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_ca.properties create mode 100644 core/src/main/resources/lib/hudson/buildListTable_ca.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-customWorkspace_ca.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-quietPeriod_ca.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-retryCount_ca.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-scm_ca.properties create mode 100644 core/src/main/resources/lib/hudson/test-result_ca.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_ca.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_ca.properties diff --git a/core/src/main/resources/hudson/PluginManager/index_ca.properties b/core/src/main/resources/hudson/PluginManager/index_ca.properties new file mode 100644 index 0000000000..580c8f99e3 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/index_ca.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +All=Tots +None=Cap +Select=Seleccionar +UpdatePageDescription=Aquesta p\u00E0gina llista actualitzacions de plugins que estan en \u00FAs actualment diff --git a/core/src/main/resources/hudson/PluginManager/installed_ca.properties b/core/src/main/resources/hudson/PluginManager/installed_ca.properties new file mode 100644 index 0000000000..7a280cc964 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/installed_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=Nom diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_ca.properties b/core/src/main/resources/hudson/PluginManager/tabBar_ca.properties new file mode 100644 index 0000000000..018ec6ea8a --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/tabBar_ca.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Advanced=Avan\u00E7at +Available=Disponible +Installed=Instal\u00B7lats +Updates=Actulitzacions diff --git a/core/src/main/resources/hudson/PluginManager/table_ca.properties b/core/src/main/resources/hudson/PluginManager/table_ca.properties new file mode 100644 index 0000000000..da753772f0 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/table_ca.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Download\ now\ and\ install\ after\ restart=Descarrega ara i instal\u00B7la despr\u00E8s de reiniciar +Install=Instal\u00B7lar +Install\ without\ restart=Instal\u00B7la sense reiniciar +Installed=Instal\u00B7lat +Name=Nom +Version=Versi\u00F3 diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ca.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ca.properties new file mode 100644 index 0000000000..ebf93d6b82 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ca.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Dismiss=Descartar +More\ Info=M\u00E9s infromaci\u00F3 +blurb=Sembla que la configuraci\u00F3 del proxy revers \u00E9s incorrecta. diff --git a/core/src/main/resources/hudson/matrix/MatrixBuild/delete_ca.properties b/core/src/main/resources/hudson/matrix/MatrixBuild/delete_ca.properties new file mode 100644 index 0000000000..0428685234 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixBuild/delete_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete\ Build=Eliminar Build diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_ca.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_ca.properties new file mode 100644 index 0000000000..ad1f2d59e7 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=Canvis diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_ca.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_ca.properties new file mode 100644 index 0000000000..76ae1b8e92 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_ca.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Build=Construcci\u00F3 +Build\ Artifacts=Artefacte +Took=Va trigar +beingExecuted=La construcci\u00F3 ha comen\u00E7at fa {0} +on=a +startedAgo=Llan\u00E7at fa {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ca.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ca.properties index 11d7c8e084..a1a23db175 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ca.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ca.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Previous\ Build=Construcci\u00F3 anterior +Next\ Build=Construcci\u00F3 seg\u00FCent +Previous\ Build=Build anterior diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ca.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ca.properties index 7c23f38118..5679e6c73f 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ca.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ca.properties @@ -24,5 +24,5 @@ Back\ to\ Project=Tornar al projecte Changes=Canvis Console\ Output=Sortida de la consola View\ as\ plain\ text=Veure com a texte pla -Edit\ Build\ Information=Editar Informaci\u00F3 de la Construcci\u00F3 +Edit\ Build\ Information=Editar Informaci\u00F3 del Build Status=Estat diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_ca.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_ca.properties new file mode 100644 index 0000000000..0ef5b09b5d --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_ca.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Advanced\ Project\ Options=Opcions avan\u00E7ades de Projecte +Display\ Name=Nom a mostrar diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ca.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ca.properties new file mode 100644 index 0000000000..4684976a8f --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ca.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Error:\ no\ workspace=Error: sense espai de treball +text=Construir ara perqu\u00E8 Jenkins construeixi un espai de treball. diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_ca.properties b/core/src/main/resources/hudson/model/AbstractProject/main_ca.properties index 5933e4e2b7..b21df37ba5 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_ca.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_ca.properties @@ -21,5 +21,6 @@ # THE SOFTWARE. Last\ Successful\ Artifacts=\u00DAltim Artefacte Correcte -Recent\ Changes=Canvis Recents -Workspace=Espai de Treball +Latest\ Test\ Result=Darrer resultat dels tests +Recent\ Changes=Canvis recents +Workspace=Espai de treball diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ca.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ca.properties index f33ecada56..9379618d1f 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ca.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ca.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Deshabilitar projecte +Disable\ Project=Inhabilita el projecte diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ca.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ca.properties index 072e73f4c2..157b3d0335 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ca.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ca.properties @@ -23,8 +23,10 @@ Back\ to\ Dashboard=Retornar al Panell de Control Build\ scheduled=Construcci\u00F3 programada Changes=Canvis -Configure=Configurar +Configure=Configura Status=Estat -Wipe\ Out\ Workspace=Neteja l''''Espai de Treball -Workspace=Espai de Treball -delete=Eliminar {0} +Wipe\ Out\ Workspace=Neteja l''''''''espai de treball +Workspace=Espai de treball +delete=Suprimeix {0} +delete.confirm=Est\u00E0s segur que vols esborrar {0} \u2018{1}\u2019? +wipe.out.confirm=Est\u00E0s segur que vols netejar l''espai de treball? diff --git a/core/src/main/resources/hudson/model/AllView/noJob_ca.properties b/core/src/main/resources/hudson/model/AllView/noJob_ca.properties new file mode 100644 index 0000000000..e277f12b82 --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_ca.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Welcome\ to\ Jenkins!=Benvigut/da al Jenkins! +login=Accedeix per a crear nous jobs. +newJob=Creeu treballs nous per comen\u00E7ar. diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ca.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ca.properties new file mode 100644 index 0000000000..a0661f8409 --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +started_by_user=Iniciada per {1} diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_ca.properties b/core/src/main/resources/hudson/model/ComputerSet/index_ca.properties new file mode 100644 index 0000000000..e9008cf210 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/index_ca.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Configure=Configura +Name=Nom +Refresh\ status=Renova estat diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_ca.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_ca.properties new file mode 100644 index 0000000000..6c3d6a1e75 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_ca.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=Tornar al tauler +Configure=Configurar +Manage\ Jenkins=Gestionar Jenkins +New\ Node=Nou node diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ca.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ca.properties new file mode 100644 index 0000000000..57a7f5f96f --- /dev/null +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ca.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +all\ files\ in\ zip=tots els arxius en un zip +view=veure diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_ca.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_ca.properties new file mode 100644 index 0000000000..0b991b6b82 --- /dev/null +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +body=Aquesta \u00E9s la funcionalitat principal de Jenkins. Jenkins far\u00E0 un build del vostre projecte combinant qualsevol SCM amb qualsevol sistema de build. Aix\u00F2 tamb\u00E9 es pot usar per tasques que no siguin un build de software diff --git a/core/src/main/resources/hudson/model/JDK/config_ca.properties b/core/src/main/resources/hudson/model/JDK/config_ca.properties new file mode 100644 index 0000000000..7a280cc964 --- /dev/null +++ b/core/src/main/resources/hudson/model/JDK/config_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=Nom diff --git a/core/src/main/resources/hudson/model/Job/configure_ca.properties b/core/src/main/resources/hudson/model/Job/configure_ca.properties new file mode 100644 index 0000000000..a6ff8d3fe7 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/configure_ca.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Description=Descripci\u00F3 +LOADING=CARREGANT +Save=Desa +Strategy=Estrat\u00E8gia +name={0} nom diff --git a/core/src/main/resources/hudson/model/Job/index_ca.properties b/core/src/main/resources/hudson/model/Job/index_ca.properties new file mode 100644 index 0000000000..a3255ee3cc --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Disable\ Project=Deshabilita projecte diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_ca.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_ca.properties new file mode 100644 index 0000000000..4ae2947402 --- /dev/null +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +blurb=Mostra els elements en un format de llista simple. Pots triar quins treballs es mostren a cada vista. diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_ca.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_ca.properties new file mode 100644 index 0000000000..59bab268ee --- /dev/null +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +blurb=Aquesta vista mostra autom\u00E0ticament tots els treballs al que t\u00E9 acc\u00E9s l''''usuari actual. diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/newView_ca.properties b/core/src/main/resources/hudson/model/MyViewsProperty/newView_ca.properties new file mode 100644 index 0000000000..9a5755401d --- /dev/null +++ b/core/src/main/resources/hudson/model/MyViewsProperty/newView_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +View\ name=Nom de vista diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_ca.properties b/core/src/main/resources/hudson/model/ParametersAction/index_ca.properties new file mode 100644 index 0000000000..bc755f0d9c --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersAction/index_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Parameters=Par\u00E0metres diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_ca.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_ca.properties new file mode 100644 index 0000000000..896325474a --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Add\ Parameter=Afegir par\u00E0metre diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ca.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ca.properties index 0a0c3f966f..7d56d12a4e 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ca.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ca.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -format=Fa {0} ({1}), {2} +format="{0} ({1}) fa {2}" diff --git a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_ca.properties b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_ca.properties new file mode 100644 index 0000000000..5942f9afb1 --- /dev/null +++ b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Shows\ the\ content\ of\ a\ global\ view.=Mostra el contingut d''una vista global diff --git a/core/src/main/resources/hudson/model/Run/configure_ca.properties b/core/src/main/resources/hudson/model/Run/configure_ca.properties new file mode 100644 index 0000000000..9e339b4d0b --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_ca.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Description=Descripci\u00F3 +DisplayName=Nom per mostrar +LOADING=CARREGANT +Save=Desa diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_ca.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_ca.properties new file mode 100644 index 0000000000..74a818b9b9 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_ca.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Are\ you\ sure\ about\ deleting\ the\ build?=Est\u00E0s segur que vols esborrar la construcci\u00F3 ? +Yes=S\u00ED diff --git a/core/src/main/resources/hudson/model/Run/delete_ca.properties b/core/src/main/resources/hudson/model/Run/delete_ca.properties new file mode 100644 index 0000000000..fc13ca0020 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete\ this\ build=Elimina la contrucci\u00F3 diff --git a/core/src/main/resources/hudson/model/Run/logKeep_ca.properties b/core/src/main/resources/hudson/model/Run/logKeep_ca.properties new file mode 100644 index 0000000000..39eccc103b --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/logKeep_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Keep\ this\ build\ forever=Desa aquest build per sempre diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_ca.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_ca.properties new file mode 100644 index 0000000000..d00101f1c1 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Details=Detalls diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_ca.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_ca.properties new file mode 100644 index 0000000000..73c36b9c61 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_ca.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Go\ back\ to\ the\ top\ page=Tornar a la p\u00E0gina principal +warning=Reinicia Jenkins quan la instal\u00B7laci\u00F3 s''hagi completat i no hi hagin Jobs corrent. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ca.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ca.properties index c5992f2af7..2d556bba8c 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ca.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ca.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=Retonar al Panell de Control +Back\ to\ Dashboard=Retornar al Panell de Control Manage\ Jenkins=Configuraci\u00F3 de Jenkins Manage\ Plugins=Configurar Plugins diff --git a/core/src/main/resources/hudson/model/User/configure_ca.properties b/core/src/main/resources/hudson/model/User/configure_ca.properties new file mode 100644 index 0000000000..e9911e1357 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/configure_ca.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Description=Descripci\u00F3 +Your\ name=Nom diff --git a/core/src/main/resources/hudson/model/User/index_ca.properties b/core/src/main/resources/hudson/model/User/index_ca.properties new file mode 100644 index 0000000000..77b360264a --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ User\ Id=Id d''''usuari a Jenkins diff --git a/core/src/main/resources/hudson/model/User/sidepanel_ca.properties b/core/src/main/resources/hudson/model/User/sidepanel_ca.properties new file mode 100644 index 0000000000..2665ebbff9 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/sidepanel_ca.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Configure=Configura +My\ Views=Les meves vistes +People=Persones +Status=Estat diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_ca.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_ca.properties new file mode 100644 index 0000000000..1aeb0b6017 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_ca.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Last\ Active=Darrer actiu +Name=Nom +On=Actiu +People=Persones +User\ Id=Identificador d''''usuari diff --git a/core/src/main/resources/hudson/model/View/People/index_ca.properties b/core/src/main/resources/hudson/model/View/People/index_ca.properties new file mode 100644 index 0000000000..ba9b29329e --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_ca.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +All\ People=Tothom +Last\ Active=Darrer cop actiu +Name=Nom +On=a +People=Usuaris +User\ Id=Id d''usuari diff --git a/core/src/main/resources/hudson/model/View/builds_ca.properties b/core/src/main/resources/hudson/model/View/builds_ca.properties new file mode 100644 index 0000000000..09726ae462 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/builds_ca.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Export\ as\ plain\ XML=Exportar com XML pla +buildHistory=Historial de construcci\u00F3 de {0} diff --git a/core/src/main/resources/hudson/model/View/newJob_ca.properties b/core/src/main/resources/hudson/model/View/newJob_ca.properties new file mode 100644 index 0000000000..682c908c94 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/newJob_ca.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +CopyExisting=Copiar un {0} existent +JobName=Nom del {0} diff --git a/core/src/main/resources/hudson/model/View/sidepanel_ca.properties b/core/src/main/resources/hudson/model/View/sidepanel_ca.properties index abed996243..a3cf740e30 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_ca.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_ca.properties @@ -20,7 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=Hist\u00F2ric de builds +Build\ History=Historial de muntatges +Check\ File\ Fingerprint=Comprova empremta d''arxius +Delete\ View=Esborra vista Edit\ View=Editar Vista -NewJob={0} nou -People=Persones +NewJob={0} nova +People=Gent +Project\ Relationship=Relaci\u00F3 entre projectes diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ca.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ca.properties new file mode 100644 index 0000000000..e8d37e6045 --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ changes.=No hi ha canvis diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ca.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ca.properties new file mode 100644 index 0000000000..c1d7dda094 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +sign\ up=registrar-se diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ca.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ca.properties new file mode 100644 index 0000000000..df18724f18 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +login=entrar diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ca.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ca.properties new file mode 100644 index 0000000000..1c81470a77 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ca.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +name=nom +value=valor diff --git a/core/src/main/resources/hudson/tools/InstallSourceProperty/config_ca.properties b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_ca.properties new file mode 100644 index 0000000000..64a1b3e110 --- /dev/null +++ b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_ca.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Add\ Installer=Afegeix instal\u00B7lador +Delete\ Installer=Esborra instal\u00B7lador diff --git a/core/src/main/resources/hudson/tools/JDKInstaller/config_ca.properties b/core/src/main/resources/hudson/tools/JDKInstaller/config_ca.properties new file mode 100644 index 0000000000..66a7996365 --- /dev/null +++ b/core/src/main/resources/hudson/tools/JDKInstaller/config_ca.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +I\ agree\ to\ the\ Java\ SE\ Development\ Kit\ License\ Agreement=Accepto les condicions de la llic\u00E8ncia de Java SE Development Kit +Version=Versi\u00F3 diff --git a/core/src/main/resources/hudson/tools/ToolInstallation/config_ca.properties b/core/src/main/resources/hudson/tools/ToolInstallation/config_ca.properties new file mode 100644 index 0000000000..3ecab585cb --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolInstallation/config_ca.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Installation\ directory=Directori d''''instal\u00B7laci\u00F3 +Name=Nom diff --git a/core/src/main/resources/hudson/tools/ToolInstallation/global_ca.properties b/core/src/main/resources/hudson/tools/ToolInstallation/global_ca.properties new file mode 100644 index 0000000000..521b390b88 --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolInstallation/global_ca.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +description=Llista de {0} instal\u00B7lacions en aquest sistema +label.add=Afegir {0} +label.delete=Esborra {0} +title=Instal\u00B7lacions {0} diff --git a/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_ca.properties b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_ca.properties new file mode 100644 index 0000000000..7a280cc964 --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=Nom diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ca.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_ca.properties index b7db9a8c59..9720f61697 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ca.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_ca.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Schedule\ a\ build=Programar una construcci\u00F3 +Build\ scheduled=S''ha planificat el muntatge +Schedule\ a\ build=Planifica un muntatge +Schedule\ a\ build\ with\ parameters=Planifica un muntatge amb par\u00E0metres diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_ca.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_ca.properties new file mode 100644 index 0000000000..8c6d15a2bb --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +New\ View=Nova vista diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ca.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ca.properties index 4e81e10cb9..f0e984f6e2 100644 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ca.properties +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ca.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -New\ View=Nova vista +New\ View=Nova Vista diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ca.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ca.properties index ff1a110e36..a5f8a9c2b1 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ca.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ca.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=\u00DAltima Duraci\u00F3 +Last\ Duration=Darrera durada diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ca.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ca.properties index 8f5c77a62d..6b955dbf95 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ca.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ca.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=\u00DAltim Frac\u00E0s +Last\ Failure=Darrer muntatge fallit diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_ca.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_ca.properties index 7f59267d42..ccabb0279d 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/column_ca.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_ca.properties @@ -20,4 +20,3 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=N/D diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ca.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ca.properties index 422a33b296..6b3ac380ed 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ca.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ca.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=\u00DAltim \u00C8xit +Last\ Success=Darrer muntatge correcte diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_ca.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_ca.properties index 5972548e14..7f59267d42 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/column_ca.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_ca.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=N/A +N/A=N/D diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ca.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ca.properties index 2c9abb9ad3..77af4fba76 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ca.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ca.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=Estat de l''''\u00FAltim build +Status\ of\ the\ last\ build=Estat del darrer muntatge diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ca.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ca.properties new file mode 100644 index 0000000000..70afbe3334 --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Informe del temps mostrant l''estat agregat dels builds recents 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 8bcdd34eae..e1a3bacfbf 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_ca.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_ca.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -for\ all=tots -for\ failures=fracassos +More\ ...=Mes... +for\ all=per a tot +for\ failures=per a les fallades trend=tend\u00E8ncia diff --git a/core/src/main/resources/jenkins/management/PluginsLink/info_ca.properties b/core/src/main/resources/jenkins/management/PluginsLink/info_ca.properties new file mode 100644 index 0000000000..652c09a17e --- /dev/null +++ b/core/src/main/resources/jenkins/management/PluginsLink/info_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +updates\ available=Hi ha actualitzacions disponibles diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_ca.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_ca.properties new file mode 100644 index 0000000000..16308b2ffd --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_ca.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +LOADING=CARREGANT +System\ Message=Missatge de sistema diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_ca.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_ca.properties new file mode 100644 index 0000000000..c2ff47b860 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Restore\ the\ previous\ version\ of\ Jenkins=Restaurar a la versi\u00F3 anterior del Jenkins diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_ca.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_ca.properties new file mode 100644 index 0000000000..b15424ad73 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Try\ again=Probar un altre cop diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_ca.properties b/core/src/main/resources/jenkins/model/Jenkins/login_ca.properties new file mode 100644 index 0000000000..9c139a838f --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/login_ca.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Password=Contrasenya +Remember\ me\ on\ this\ computer=Recorda''m a aquest ordinador +User=Usuari +login=Entrar diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_ca.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_ca.properties new file mode 100644 index 0000000000..d8ab18ca08 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_ca.properties @@ -0,0 +1,23 @@ +# This file is under the MIT License by authors + +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Afegeix, elimina, controla i monitoritza els diversos nodes on Jenkins executa treballs. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Afegir, esborrar, deshabilitar o habilitar plugins que extenen les funcionalitats del Jenkins +Configure\ System=Configuraci\u00F3 del sistema +Configure\ global\ settings\ and\ paths.=Configurar par\u00E0metres globals i rutes. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Substituir la configuraci\u00F3 carregada a mem\u00F2ria per la emmagatzemada al disc. +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Mostra informaci\u00F3 del sistema per ajudar a solucionar problemes. +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Executa un script arbitrari per administraci\u00F3/resoluci\u00F3 de problemes/diagn\u00F2stics. +JenkinsCliText=Accedeix/administra Jenkins des de la teva shell, o des d''un script. +Load\ Statistics=Carregar Estad\u00EDstiques +LoadStatisticsText=Comprova la teua utilitzaci\u00F3 de recursos i prova si necessites m\u00E9s m\u00E0quines per als teus builds. +Manage\ Jenkins=Configuraci\u00F3 del Jenkins +Manage\ Nodes=Administrar Nodes +Manage\ Plugins=Configurar plugins +Prepare\ for\ Shutdown=Preparar per Apagar +Reload\ Configuration\ from\ Disk=Recarregar configuraci\u00F3 des del disc +Script\ Console=Consola de Script +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Detindre la execuci\u00F3 de nous builds, de tal forma que el sistema puga apagar-se amb seguretat. +System\ Information=Informaci\u00F3 de sistema +System\ Log=Log de sistema +SystemLogText=Eixida de captures del log del Sistema de java.util.logging relacionades amb Jenkins. +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=\u00DAtil quan vost\u00E9 modifica els fitxers de configuraci\u00F3 directament al disc. diff --git a/core/src/main/resources/lib/form/advanced_ca.properties b/core/src/main/resources/lib/form/advanced_ca.properties new file mode 100644 index 0000000000..3c013edcec --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Advanced=Avan\u00E7at diff --git a/core/src/main/resources/lib/form/apply_ca.properties b/core/src/main/resources/lib/form/apply_ca.properties new file mode 100644 index 0000000000..2dc0a2191d --- /dev/null +++ b/core/src/main/resources/lib/form/apply_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Apply=Aplica diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_ca.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_ca.properties new file mode 100644 index 0000000000..bf5dfa2092 --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=configuraci\u00F3 diff --git a/core/src/main/resources/lib/form/helpArea_ca.properties b/core/src/main/resources/lib/form/helpArea_ca.properties new file mode 100644 index 0000000000..9b35f5ef3f --- /dev/null +++ b/core/src/main/resources/lib/form/helpArea_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Loading...=Carregant... diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_ca.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_ca.properties new file mode 100644 index 0000000000..20b01ed0e0 --- /dev/null +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete=Esborrar diff --git a/core/src/main/resources/lib/form/repeatable_ca.properties b/core/src/main/resources/lib/form/repeatable_ca.properties new file mode 100644 index 0000000000..f4d41e0af4 --- /dev/null +++ b/core/src/main/resources/lib/form/repeatable_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Add=Afegir diff --git a/core/src/main/resources/lib/form/textarea_ca.properties b/core/src/main/resources/lib/form/textarea_ca.properties new file mode 100644 index 0000000000..f8cafbcc51 --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_ca.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=Amaga previsualitzaci\u00F3 +Preview=Previsualitzar diff --git a/core/src/main/resources/lib/hudson/buildCaption_ca.properties b/core/src/main/resources/lib/hudson/buildCaption_ca.properties new file mode 100644 index 0000000000..b33e2f310f --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_ca.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Progress=Progres +cancel=cancel\u00B7lar diff --git a/core/src/main/resources/lib/hudson/buildListTable_ca.properties b/core/src/main/resources/lib/hudson/buildListTable_ca.properties new file mode 100644 index 0000000000..3f5f4074c2 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildListTable_ca.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Build=Construir +Click\ to\ center\ timeline\ on\ event=Click per a centrar el timeline en l''event +Console\ output=Eixida de consola +Status=Estat +Time\ Since=Temps des de diff --git a/core/src/main/resources/lib/hudson/editableDescription_ca.properties b/core/src/main/resources/lib/hudson/editableDescription_ca.properties index 975a488871..62f8fc3965 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_ca.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_ca.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=afegir descripci\u00F3 -edit\ description=edita descripci\u00F3 +add\ description=Afegeix una descripci\u00F3 +edit\ description=Editar descripci\u00F3 diff --git a/core/src/main/resources/lib/hudson/executors_ca.properties b/core/src/main/resources/lib/hudson/executors_ca.properties index 87a0556780..6b616699dd 100644 --- a/core/src/main/resources/lib/hudson/executors_ca.properties +++ b/core/src/main/resources/lib/hudson/executors_ca.properties @@ -20,9 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Estat de l''executador de builds +Build\ Executor\ Status=Estat de l''''executador de muntatges Building=Construint -Idle=Oci\u00F3s +Idle=Inactiu Master=Master Status=Estat +offline=Fora de l\u00EDnia terminate\ this\ build=finalitza aquest build diff --git a/core/src/main/resources/lib/hudson/iconSize_ca.properties b/core/src/main/resources/lib/hudson/iconSize_ca.properties index f46712e062..1588055f58 100644 --- a/core/src/main/resources/lib/hudson/iconSize_ca.properties +++ b/core/src/main/resources/lib/hudson/iconSize_ca.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=Icon +Icon=Icona diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_ca.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_ca.properties new file mode 100644 index 0000000000..df2daa106f --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_ca.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Directory=Directori +Use\ custom\ workspace=Usa un espai de treball personalitzat diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_ca.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_ca.properties new file mode 100644 index 0000000000..42ec01919b --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Number\ of\ seconds=N\u00FAmero de segons diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_ca.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_ca.properties new file mode 100644 index 0000000000..ed603805b8 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Retry\ Count=N\u00FAmero de reintents diff --git a/core/src/main/resources/lib/hudson/project/config-scm_ca.properties b/core/src/main/resources/lib/hudson/project/config-scm_ca.properties new file mode 100644 index 0000000000..e99cdc8b7c --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-scm_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Source\ Code\ Management=Gestor de Codi Font diff --git a/core/src/main/resources/lib/hudson/queue_ca.properties b/core/src/main/resources/lib/hudson/queue_ca.properties index 17d2dea07e..623d6a4648 100644 --- a/core/src/main/resources/lib/hudson/queue_ca.properties +++ b/core/src/main/resources/lib/hudson/queue_ca.properties @@ -20,5 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Cua de builds -No\ builds\ in\ the\ queue.=No hi ha builds a la cua +Build\ Queue=Cua de muntatges +No\ builds\ in\ the\ queue.=No hi ha muntatges a la cua +WaitingFor=Esperant {0} +WaitingSince=Esperant des de {0} + diff --git a/core/src/main/resources/lib/hudson/rssBar_ca.properties b/core/src/main/resources/lib/hudson/rssBar_ca.properties index 8c751c051c..8d369d922a 100644 --- a/core/src/main/resources/lib/hudson/rssBar_ca.properties +++ b/core/src/main/resources/lib/hudson/rssBar_ca.properties @@ -21,5 +21,6 @@ # THE SOFTWARE. Legend=Llegenda -for\ all=tots -for\ failures=fracassos +for\ all=per a tot +for\ failures=per a les fallades +for\ just\ latest\ builds=nom\u00E9s per als darrers muntatges diff --git a/core/src/main/resources/lib/hudson/test-result_ca.properties b/core/src/main/resources/lib/hudson/test-result_ca.properties new file mode 100644 index 0000000000..c3ce3c5b08 --- /dev/null +++ b/core/src/main/resources/lib/hudson/test-result_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +no\ failures=Sense errors diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_ca.properties b/core/src/main/resources/lib/layout/breadcrumbBar_ca.properties new file mode 100644 index 0000000000..4da925bc92 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_ca.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=DESHABILITAR REFRESC AUTOM\u00C0TIC +ENABLE\ AUTO\ REFRESH=activa l\''auto refresc diff --git a/core/src/main/resources/lib/layout/layout_ca.properties b/core/src/main/resources/lib/layout/layout_ca.properties index f18826f025..304fc64879 100644 --- a/core/src/main/resources/lib/layout/layout_ca.properties +++ b/core/src/main/resources/lib/layout/layout_ca.properties @@ -21,6 +21,7 @@ # THE SOFTWARE. ENABLE\ AUTO\ REFRESH=HABILITAR REFRESC AUTOM\u00C0TIC -Page\ generated=P\u00E0gina generada -logout=Sortir -search=cerca +Page\ generated=P\u00E0gina generada el: +logout=Surt +search=www +searchBox.url=w diff --git a/core/src/main/resources/lib/layout/progressiveRendering_ca.properties b/core/src/main/resources/lib/layout/progressiveRendering_ca.properties new file mode 100644 index 0000000000..7efc0bc392 --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_ca.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=Calculant -- GitLab From a0afa9d16e73d540185d9025ceb71d425bb16310 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:54 -0700 Subject: [PATCH 034/308] Community-contributed localization for Czech (cs) --- .../hudson/AboutJenkins/index_cs.properties | 4 ++++ .../PluginManager/advanced_cs.properties | 10 ++++++++ .../PluginManager/installed_cs.properties | 13 ++++++++++ .../hudson/PluginManager/table_cs.properties | 2 ++ .../message_cs.properties | 5 ++-- .../message_cs.properties | 4 ++++ .../config_cs.properties | 4 ++++ .../matrix/MatrixBuild/delete_cs.properties | 4 ++++ .../model/AbstractBuild/changes_cs.properties | 3 +++ .../model/AbstractBuild/index_cs.properties | 8 ++++--- .../AbstractBuild/sidepanel_cs.properties | 4 ++-- .../model/AbstractBuild/tasks_cs.properties | 8 +++---- .../model/AbstractProject/main_cs.properties | 5 ++-- .../AbstractProject/sidepanel_cs.properties | 8 ++++--- .../hudson/model/AllView/noJob_cs.properties | 5 ++-- .../UpstreamCause/description_cs.properties | 3 +++ .../UserIdCause/description_cs.properties | 3 ++- .../model/ComputerSet/index_cs.properties | 2 +- .../model/ComputerSet/sidepanel_cs.properties | 6 ++--- .../newJobDetail_cs.properties | 3 +++ .../model/Job/buildTimeTrend_cs.properties | 6 +++++ .../hudson/model/Job/configure_cs.properties | 6 +++++ .../hudson/model/Job/index_cs.properties | 3 +++ .../hudson/model/Job/permalinks_cs.properties | 3 +++ .../ListView/configure-entries_cs.properties | 12 ++++++++++ .../ParametersAction/index_cs.properties | 4 ++++ .../Run/KeepLogBuildBadge/badge_cs.properties | 3 +++ .../model/Run/confirmDelete_cs.properties | 4 ++++ .../hudson/model/Run/delete_cs.properties | 2 +- .../hudson/model/Run/logKeep_cs.properties | 2 +- .../CoreUpdateMonitor/message_cs.properties | 4 ++-- .../Installing/status_cs.properties | 3 +++ .../Pending/status_cs.properties | 3 +++ .../RestartJenkinsJob/row_cs.properties | 3 +++ .../model/UpdateCenter/body_cs.properties | 4 +++- .../model/UpdateCenter/index_cs.properties | 2 +- .../UpdateCenter/sidepanel_cs.properties | 2 +- .../hudson/model/User/index_cs.properties | 2 +- .../hudson/model/User/sidepanel_cs.properties | 7 +++--- .../model/View/People/index_cs.properties | 3 +++ .../hudson/model/View/builds_cs.properties | 4 ++-- .../hudson/model/View/configure_cs.properties | 6 +++++ .../hudson/model/View/newJob_cs.properties | 4 ++++ .../hudson/model/View/sidepanel_cs.properties | 10 ++++---- .../message_cs.properties | 4 ++++ .../EmptyChangeLogSet/digest_cs.properties | 3 +++ .../Details/config_cs.properties | 4 ++++ .../config_cs.properties | 3 +++ .../SecurityRealm/loginLink_cs.properties | 2 +- .../tasks/BuildTrigger/config_cs.properties | 3 +++ .../tasks/LogRotator/config_cs.properties | 4 ++++ .../MetaTabulatedResult/body_cs.properties | 1 + .../floatingBox_cs.properties | 1 + .../SCMTrigger/SCMAction/index_cs.properties | 3 +++ .../BuildButtonColumn/column_cs.properties | 3 ++- .../myViewTabs_cs.properties | 3 +++ .../DefaultViewsTabBar/viewTabs_cs.properties | 2 +- .../columnHeader_cs.properties | 2 +- .../columnHeader_cs.properties | 2 +- .../columnHeader_cs.properties | 2 +- .../StatusColumn/columnHeader_cs.properties | 2 +- .../WeatherColumn/columnHeader_cs.properties | 2 +- .../BuildHistoryWidget/entries_cs.properties | 4 ++++ .../widgets/HistoryWidget/index_cs.properties | 2 +- .../management/PluginsLink/info_cs.properties | 3 +++ .../model/Jenkins/configure_cs.properties | 6 +++++ .../Jenkins/fingerprintCheck_cs.properties | 9 +++++++ .../jenkins/model/Jenkins/login_cs.properties | 7 ++++++ .../model/Jenkins/manage_cs.properties | 24 ++++++++++++++++++- .../resources/lib/form/advanced_cs.properties | 3 +++ .../resources/lib/form/apply_cs.properties | 3 +++ .../breadcrumb-config-outline_cs.properties | 3 +++ .../resources/lib/form/helpArea_cs.properties | 1 - .../form/repeatableDeleteButton_cs.properties | 3 +++ .../lib/form/slave-mode_cs.properties | 3 +++ .../resources/lib/form/textarea_cs.properties | 4 ++++ .../lib/hudson/buildCaption_cs.properties | 2 +- .../lib/hudson/buildListTable_cs.properties | 6 +++-- .../lib/hudson/buildProgressBar_cs.properties | 2 +- .../hudson/editableDescription_cs.properties | 4 ++-- .../lib/hudson/executors_cs.properties | 12 ++++++---- .../lib/hudson/newFromList/form_cs.properties | 3 +++ .../project/upstream-downstream_cs.properties | 3 ++- .../resources/lib/hudson/queue_cs.properties | 7 ++++-- .../resources/lib/hudson/rssBar_cs.properties | 8 +++---- .../lib/hudson/test-result_cs.properties | 1 + .../hudson/thirdPartyLicenses_cs.properties | 4 ++++ .../lib/layout/breadcrumbBar_cs.properties | 4 ++++ .../resources/lib/layout/layout_cs.properties | 6 ++--- .../layout/progressiveRendering_cs.properties | 3 +++ 90 files changed, 320 insertions(+), 72 deletions(-) create mode 100644 core/src/main/resources/hudson/AboutJenkins/index_cs.properties create mode 100644 core/src/main/resources/hudson/PluginManager/advanced_cs.properties create mode 100644 core/src/main/resources/hudson/PluginManager/installed_cs.properties create mode 100644 core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_cs.properties create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_cs.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixBuild/delete_cs.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/changes_cs.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UpstreamCause/description_cs.properties create mode 100644 core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_cs.properties create mode 100644 core/src/main/resources/hudson/model/Job/buildTimeTrend_cs.properties create mode 100644 core/src/main/resources/hudson/model/Job/configure_cs.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_cs.properties create mode 100644 core/src/main/resources/hudson/model/Job/permalinks_cs.properties create mode 100644 core/src/main/resources/hudson/model/ListView/configure-entries_cs.properties create mode 100644 core/src/main/resources/hudson/model/ParametersAction/index_cs.properties create mode 100644 core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_cs.properties create mode 100644 core/src/main/resources/hudson/model/Run/confirmDelete_cs.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_cs.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_cs.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_cs.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_cs.properties create mode 100644 core/src/main/resources/hudson/model/View/configure_cs.properties create mode 100644 core/src/main/resources/hudson/model/View/newJob_cs.properties create mode 100644 core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_cs.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_cs.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_cs.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_cs.properties create mode 100644 core/src/main/resources/hudson/tasks/BuildTrigger/config_cs.properties create mode 100644 core/src/main/resources/hudson/tasks/LogRotator/config_cs.properties create mode 100644 core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_cs.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_cs.properties create mode 100644 core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_cs.properties create mode 100644 core/src/main/resources/jenkins/management/PluginsLink/info_cs.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/configure_cs.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_cs.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/login_cs.properties create mode 100644 core/src/main/resources/lib/form/advanced_cs.properties create mode 100644 core/src/main/resources/lib/form/apply_cs.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_cs.properties create mode 100644 core/src/main/resources/lib/form/repeatableDeleteButton_cs.properties create mode 100644 core/src/main/resources/lib/form/slave-mode_cs.properties create mode 100644 core/src/main/resources/lib/form/textarea_cs.properties create mode 100644 core/src/main/resources/lib/hudson/newFromList/form_cs.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_cs.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_cs.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_cs.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_cs.properties b/core/src/main/resources/hudson/AboutJenkins/index_cs.properties new file mode 100644 index 0000000000..5d65f6c53b --- /dev/null +++ b/core/src/main/resources/hudson/AboutJenkins/index_cs.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +blurb=Jenkins je komunitou vyv\u00EDjen\u00FD server pr\u016Fb\u011B\u017En\u00E9 integrace s otev\u0159en\u00FDm zdrojov\u00FDm k\u00F3dem. +dependencies=Jenkins z\u00E1vis\u00ED na n\u00E1sleduj\u00EDc\u00EDch knihovn\u00E1ch 3. stran. diff --git a/core/src/main/resources/hudson/PluginManager/advanced_cs.properties b/core/src/main/resources/hudson/PluginManager/advanced_cs.properties new file mode 100644 index 0000000000..3e7d9961c1 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/advanced_cs.properties @@ -0,0 +1,10 @@ +# This file is under the MIT License by authors + +Check\ now=Zkontrolovat nyn\u00ED +File=Soubor +HTTP\ Proxy\ Configuration=Nastaven\u00ED HTTP Proxy +Submit=Odeslat +Update\ Site=\u00DAlo\u017Ei\u0161t\u011B aktualizac\u00ED +Upload=Nahr\u00E1t +Upload\ Plugin=Nahr\u00E1t Plugin +lastUpdated=Informace o aktualizoci z\u00EDsk\u00E1ny p\u0159ed: {0} diff --git a/core/src/main/resources/hudson/PluginManager/installed_cs.properties b/core/src/main/resources/hudson/PluginManager/installed_cs.properties new file mode 100644 index 0000000000..21847ed21d --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/installed_cs.properties @@ -0,0 +1,13 @@ +# This file is under the MIT License by authors + +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Zm\u011Bny se projev\u00ED a\u017E po restartu Jenkinse +Enabled=Povolen\u00E9 +Name=Jm\u00E9no +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/table_cs.properties b/core/src/main/resources/hudson/PluginManager/table_cs.properties index 0a0553f903..6899e9470f 100644 --- a/core/src/main/resources/hudson/PluginManager/table_cs.properties +++ b/core/src/main/resources/hudson/PluginManager/table_cs.properties @@ -21,7 +21,9 @@ # THE SOFTWARE. Check\ to\ install\ the\ plugin=Pro nainstalov\u00E1n\u00ED pluginu za\u0161krtn\u011Bte +Filter=Filtr Install=Nainstalovat Installed=Nainstalovan\u00E1 verze Name=Jm\u00E9no +No\ updates=\u017D\u00E1dn\u00E9 aktualizace Version=Aktu\u00E1ln\u00ED verze diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_cs.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_cs.properties index f1d636122b..5b520e5d8b 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_cs.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_cs.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=Zru\u0161it -More\ Info=V\u00EDce informac\u00ED +Dismiss=Zahodit +More\ Info=V\u00EDce Informac\u00ED +blurb=Vypad\u00E1 to, \u017Ee je \u0161patn\u011B nastavena reverzn\u00ED proxy. diff --git a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_cs.properties b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_cs.properties new file mode 100644 index 0000000000..6c42a34b82 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_cs.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Create\ a\ view\ now=Vytvo\u0159it pohled +Dismiss=Zahodit diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_cs.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_cs.properties new file mode 100644 index 0000000000..9fbfb9db2c --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_cs.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +blurb=Br\u00E1t text jako HTML a pou\u017E\u00EDt ho bez jak\u00E9hokoliv p\u0159ekladu +disableSyntaxHighlighting=Zru\u0161it zv\u00FDraz\u0148ov\u00E1n\u00ED syntaxe diff --git a/core/src/main/resources/hudson/matrix/MatrixBuild/delete_cs.properties b/core/src/main/resources/hudson/matrix/MatrixBuild/delete_cs.properties new file mode 100644 index 0000000000..e90bb13cbc --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixBuild/delete_cs.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Delete\ Build=Smazat sestaven\u00ED +Delete\ this\ build\ and\ all\ configurations\ in\ this\ build=Smazat sestaven\u00ED a v\u0161echna jeho nastaven\u00ED diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_cs.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_cs.properties new file mode 100644 index 0000000000..941993ddcf --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=Zm\u011Bny diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_cs.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_cs.properties index 550b23f6bd..679d8b6c7d 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_cs.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_cs.properties @@ -20,7 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Build +Build=Sestaven\u00ED +Build\ Artifacts=Sestaven\u00ED Not\ yet\ determined=Prozat\u00EDm nezji\u0161t\u011Bno -Took=Trval -startedAgo=Spu\u0161t\u011Bn p\u0159ed {0} +Took=Trvalo +beingExecuted=Sestaven\u00ED prob\u00EDh\u00E1 {0} +startedAgo=Zapo\u010Dato p\u0159ed {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_cs.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_cs.properties index 0726daca12..9dae71dbf2 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_cs.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_cs.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=Dal\u0161\u00ED build -Previous\ Build=P\u0159edchoz\u00ED sestaven\u00ED +Next\ Build=Dal\u0161\u00ED sestaven\u00ED +Previous\ Build=P\u0159edchoz\u00ED build diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_cs.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_cs.properties index d62720a1c9..6f0704f4ab 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_cs.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_cs.properties @@ -22,8 +22,8 @@ Back\ to\ Project=Zp\u011Bt na projekt Changes=Zm\u011Bny -Console\ Output=V\u00FDstup konzole +Console\ Output=V\u00FDstup na konzoli +View\ Build\ Information=Zobrazit informace o sestaven\u00ED View\ as\ plain\ text=Zobrazit jako text -Edit\ Build\ Information=Zm\u011Bnit informace o sestaven\u00ED -Status=Status -raw=neform\u00E1tovan\u00FD +Edit\ Build\ Information=Zm\u011Bnit informace o buildu +raw=origin\u00E1l diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_cs.properties b/core/src/main/resources/hudson/model/AbstractProject/main_cs.properties index b5b4b83128..cf16d42ca2 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_cs.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_cs.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Last\ Successful\ Artifacts=Posledn\u00E9 \u00FAsp\u011B\u0161n\u00E9 artefakty Latest\ Test\ Result=V\u00FDsledky posledn\u00EDho testu -Recent\ Changes=Ned\u00E1vn\u00E9 zm\u011Bny -Workspace=Workspace +Recent\ Changes=Posledn\u00ED zm\u011Bny +Workspace=Pracovn\u00ED prostor diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_cs.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_cs.properties index a441f896d8..63c5c41fd7 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_cs.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_cs.properties @@ -20,11 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Zp\u011Bt na n\u00E1st\u011Bnku +Back\ to\ Dashboard=Zp\u011Bt na \u00FAvodn\u00ED stranu Build\ scheduled=Sestaven\u00ED napl\u00E1nov\u00E1no Changes=Zm\u011Bny Configure=Nastavit Status=Stav -Wipe\ Out\ Workspace=Vypr\u00E1zdnit pracovn\u00ED prostor +Wipe\ Out\ Workspace=Smazat pracovn\u00ED prostor Workspace=Pracovn\u00ED prostor -delete=Vymazat {0} +delete=Smazat {0} +delete.confirm=Jste si jisti, \u017Ee chcete smazat {0} \u2018{1}\u2019? +wipe.out.confirm=Jste si jisti, \u017Ee chcete vy\u010Distit pracovn\u00ED prostor? diff --git a/core/src/main/resources/hudson/model/AllView/noJob_cs.properties b/core/src/main/resources/hudson/model/AllView/noJob_cs.properties index 2ee32213ed..231af9fafd 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_cs.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_cs.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Welcome\ to\ Jenkins!=V\u00EDtejte v Jenkinsu -newJob=Pros\u00EDm vytvo\u0159te novou pr\u00E1ci abychom mohli za\u010D\u00EDt. +Welcome\ to\ Jenkins!=V\u00EDtejte v Jenkins! +login=P\u0159ihla\u0161 se k p\u0159id\u00E1v\u00E1n\u00ED \u00FAkol\u016F. +newJob=Pro zah\u00E1jen\u00ED pros\u00EDm vytvo\u0159te nov\u00E9 \u00FAkoly. diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_cs.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_cs.properties new file mode 100644 index 0000000000..765f77ec8e --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +started_by_project=Spu\u0161t\u011Bno nad\u0159azen\u00FDm projektem {0} build \u010D\u00EDslo {1} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_cs.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_cs.properties index 9af05a2a70..5cd2206f20 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_cs.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_cs.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_user=Zah\u00E1jen u\u017Eivatelem {1} +started_by_anonymous=Spu\u0161t\u011Bno anonymn\u00EDm u\u017Eivatelem +started_by_user=Spu\u0161t\u011Bn u\u017Eivatelem {1} diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_cs.properties b/core/src/main/resources/hudson/model/ComputerSet/index_cs.properties index 3d55aa144e..0236977d47 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_cs.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_cs.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Configure=Nastavit +Configure=Nastaven\u00ED Name=Jm\u00E9no Refresh\ status=Obnovit status diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_cs.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_cs.properties index 6eb3fdaa43..3276343b76 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_cs.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_cs.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=zp\u011Bt -Configure=Nastavit +Back\ to\ Dashboard=Zp\u011Bt na hlavn\u00ED str\u00E1nku +Configure=Nastaven\u00ED Manage\ Jenkins=Spravovat Jenkins -New\ Node=Nov\u00E1 pozn\u00E1mka +New\ Node=Nov\u00FD uzel diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_cs.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_cs.properties new file mode 100644 index 0000000000..15a4df88a9 --- /dev/null +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +body=Toto je hlavn\u00ED funkce Jenkins. Jenkins sestav\u00ED v\u00E1\u0161 projekt, spoj\u00ED jak\u00FDkoli syst\u00E9m pro spr\u00E1vu verz\u00ED se syst\u00E9mem pro sestaven\u00ED. Nemus\u00ED b\u00FDt pou\u017Eit jen pro sestaven\u00ED softwaru. diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_cs.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_cs.properties new file mode 100644 index 0000000000..e3c779143a --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_cs.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Build=Sestaven\u00ED +Build\ Time\ Trend=Trend \u010Dasov\u00E9 osy +Duration=Trv\u00E1n\u00ED +Timeline=\u010Casov\u00E1 osa diff --git a/core/src/main/resources/hudson/model/Job/configure_cs.properties b/core/src/main/resources/hudson/model/Job/configure_cs.properties new file mode 100644 index 0000000000..a3242e7567 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/configure_cs.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Description=Popis +Discard\ Old\ Builds=Zahodit star\u00E9 sestaven\u00ED +LOADING=Nahr\u00E1v\u00E1n\u00ED +name=jm\u00E9no diff --git a/core/src/main/resources/hudson/model/Job/index_cs.properties b/core/src/main/resources/hudson/model/Job/index_cs.properties new file mode 100644 index 0000000000..5aad4bf7fd --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Project\ name=N\u00E1zev projektu diff --git a/core/src/main/resources/hudson/model/Job/permalinks_cs.properties b/core/src/main/resources/hudson/model/Job/permalinks_cs.properties new file mode 100644 index 0000000000..7da5979502 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/permalinks_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Permalinks=Permanentn\u00ED odkazy diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_cs.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_cs.properties new file mode 100644 index 0000000000..3b2d9f60f4 --- /dev/null +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_cs.properties @@ -0,0 +1,12 @@ +# This file is under the MIT License by authors + +Add\ column=P\u0159idat sloupec +All\ selected\ jobs=V\u0161echny vybran\u00E9 joby +Columns=Sloupce +Disabled\ jobs\ only=Vypnut\u00E9 joby pouze +Enabled\ jobs\ only=Zapnut\u00E9 joby pouze +Job\ Filters=Filtry job\u016F +Jobs=Joby +Regular\ expression=Regul\u00E1rn\u00ED v\u00FDraz +Status\ Filter=Filtr stavu +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Pou\u017E\u00EDt regul\u00E1rn\u00ED v\u00FDraz pro popis job\u016F, kter\u00E9 maj\u00ED b\u00FDt zobrazen\u00E9 v tomto pohledu diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_cs.properties b/core/src/main/resources/hudson/model/ParametersAction/index_cs.properties new file mode 100644 index 0000000000..18bc4bf97c --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersAction/index_cs.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build=Sestaven\u00ED +Parameters=Parametry diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_cs.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_cs.properties new file mode 100644 index 0000000000..7b297168e4 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Keep\ this\ build\ forever=Ponechat toto sestaven\u00ED nav\u017Edy diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_cs.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_cs.properties new file mode 100644 index 0000000000..dd21383df8 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_cs.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Are\ you\ sure\ about\ deleting\ the\ build?=Jste si jisti, \u017Ee chcete smazat tento build? +Yes=Ano diff --git a/core/src/main/resources/hudson/model/Run/delete_cs.properties b/core/src/main/resources/hudson/model/Run/delete_cs.properties index ccde40cbca..1f966f7338 100644 --- a/core/src/main/resources/hudson/model/Run/delete_cs.properties +++ b/core/src/main/resources/hudson/model/Run/delete_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=Smazat tento build +Delete\ this\ build=Smazat toto sestaven\u00ED diff --git a/core/src/main/resources/hudson/model/Run/logKeep_cs.properties b/core/src/main/resources/hudson/model/Run/logKeep_cs.properties index 8f7c582adb..27dbe97bbe 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_cs.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Keep\ this\ build\ forever=Zachovat tento build nav\u017Edy +Keep\ this\ build\ forever=Zachovat toto sestaven\u00ED nav\u017Edy diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_cs.properties index a6e14b9575..3d4add890b 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_cs.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_cs.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewVersionAvailable=Nov\u00E1 verze Jenkinse ({0}) je dostupn\u00E1 ke sta\u017Een\u00ED (zm\u011Bny). -Or\ Upgrade\ Automatically=A nebo upgradovat automaticky +NewVersionAvailable=Nov\u00E1 verze Jenkins-u ({0}) je k dispozici ke sta\u017Een\u00ED (changelog). +Or\ Upgrade\ Automatically=Nebo Upgradovat Automaticky UpgradeComplete=Upgrade na Jenkinse {0} je hotov, \u010Dek\u00E1 na restart. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_cs.properties new file mode 100644 index 0000000000..877a8b5976 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Installing=Instaluje se diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_cs.properties new file mode 100644 index 0000000000..22c6a06a2b --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Pending=\u010Cek\u00E1 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_cs.properties new file mode 100644 index 0000000000..1c3efbdbb0 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Restarting\ Jenkins=Jenkins se restartuje diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_cs.properties index c98d943d07..241bf8df75 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_cs.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_cs.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -warning=Restartovat Jenkins a\u017E skon\u010D\u00ED instalace nepob\u011B\u017E\u00ED \u017E\u00E1dn\u00E9 \u00FAlohy +Go\ back\ to\ the\ top\ page=Zp\u011Bt na hlavn\u00ED str\u00E1nku +warning=Restartovat Jenkins a\u017E skon\u010D\u00ED instalace a nepob\u011B\u017E\u00ED \u017E\u00E1dn\u00E9 \u00FAlohy +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=m\u016F\u017Eete ihned za\u010D\u00EDt pou\u017E\u00EDvat nainstalovan\u00E9 pluginy diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_cs.properties index 111a7890f9..f174d04d0d 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_cs.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing\ Plugins/Upgrades=Instalace plugin\u016F / aktualizac\u00ED +Installing\ Plugins/Upgrades=Instaluji z\u00E1suvn\u00E9 moduly / aktualizace diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_cs.properties index ce11a7c975..fea44bdc78 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_cs.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_cs.properties @@ -22,4 +22,4 @@ Back\ to\ Dashboard=Zp\u011Bt na Dashboard Manage\ Jenkins=Administrace -Manage\ Plugins=Spravovat pluginy +Manage\ Plugins=Spr\u00E1va z\u00E1suvn\u00FDch modul\u016F diff --git a/core/src/main/resources/hudson/model/User/index_cs.properties b/core/src/main/resources/hudson/model/User/index_cs.properties index 877efc1772..350cd8ebc5 100644 --- a/core/src/main/resources/hudson/model/User/index_cs.properties +++ b/core/src/main/resources/hudson/model/User/index_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ User\ Id=ID u\u017Eivatele pro Jenkis +Jenkins\ User\ Id=Jenkins Id u\u017Eivatele diff --git a/core/src/main/resources/hudson/model/User/sidepanel_cs.properties b/core/src/main/resources/hudson/model/User/sidepanel_cs.properties index 68a3b5066b..9004423cbb 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_cs.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_cs.properties @@ -21,7 +21,8 @@ # THE SOFTWARE. Builds=Buildy -Configure=Konfiguruj -My\ Views=M\u00E9 n\u00E1hledy +Configure=Konfigurovat +Delete=Smazat +My\ Views=M\u00E9 pohledy People=Lid\u00E9 -Status=Status +Status=Stav diff --git a/core/src/main/resources/hudson/model/View/People/index_cs.properties b/core/src/main/resources/hudson/model/View/People/index_cs.properties new file mode 100644 index 0000000000..c3a3978c9f --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +All\ People=V\u0161ichni lid\u00E9 diff --git a/core/src/main/resources/hudson/model/View/builds_cs.properties b/core/src/main/resources/hudson/model/View/builds_cs.properties index 810d9727f9..2b9f80c945 100644 --- a/core/src/main/resources/hudson/model/View/builds_cs.properties +++ b/core/src/main/resources/hudson/model/View/builds_cs.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Export\ as\ plain\ XML=Exportovat jako XML -buildHistory=Historie build\u016F {0} +Export\ as\ plain\ XML=Exportovat jako prost\u00E9 XML +buildHistory=Historie sestaven\u00ED {0} diff --git a/core/src/main/resources/hudson/model/View/configure_cs.properties b/core/src/main/resources/hudson/model/View/configure_cs.properties new file mode 100644 index 0000000000..c93894fd12 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/configure_cs.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Description=Popis +Filter\ build\ executors=Fitrovat exekutory build-\u016F +Filter\ build\ queue=Filtrovat frontu build-\u016F +Name=Jm\u00E9no diff --git a/core/src/main/resources/hudson/model/View/newJob_cs.properties b/core/src/main/resources/hudson/model/View/newJob_cs.properties new file mode 100644 index 0000000000..77eb59c6ed --- /dev/null +++ b/core/src/main/resources/hudson/model/View/newJob_cs.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +CopyExisting=Kop\u00EDrovat existuj\u00EDc\u00ED {0} +JobName=n\u00E1zev diff --git a/core/src/main/resources/hudson/model/View/sidepanel_cs.properties b/core/src/main/resources/hudson/model/View/sidepanel_cs.properties index 534ab73af7..106affd034 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_cs.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_cs.properties @@ -20,8 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=Historie sestaven\u00ED -Check\ File\ Fingerprint=Ov\u011B\u0159it otsk souboru -NewJob=Nov\u00E9 -People=Lid\u00E9 +Build\ History=Historie build\u016F +Check\ File\ Fingerprint=Ov\u011B\u0159it otisk souboru +Delete\ View=Smazat pohled +Edit\ View=Edituj View +NewJob=Vytvo\u0159it {0} +People=U\u017Eivatel\u00E9 Project\ Relationship=Vazby mezi projekty diff --git a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_cs.properties b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_cs.properties new file mode 100644 index 0000000000..030be99a69 --- /dev/null +++ b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_cs.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Dismiss=Zru\u0161it +blurb=Jenkins nastavil n\u011Bkter\u00E9 slave-y do offline m\u00F3du jejich stav se zhor\u0161il. Pokud nechcete, aby to Jenkins d\u011Blal, zm\u011B\u0148te tohle nastaven\u00ED. diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_cs.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_cs.properties new file mode 100644 index 0000000000..45fd9b307b --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ changes.=\u017D\u00E1dn\u00E9 zm\u011Bny. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_cs.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_cs.properties new file mode 100644 index 0000000000..8e70ec41af --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_cs.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Confirm\ Password=Potvrzen\u00ED hesla +Password=Heslo diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_cs.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_cs.properties new file mode 100644 index 0000000000..24fa79216c --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Allow\ users\ to\ sign\ up=Umo\u017Enit u\u017Eivatel\u016Fm p\u0159ihl\u00E1\u0161en\u00ED diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_cs.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_cs.properties index 3e54b0a7c4..91be3c5c91 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_cs.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=P\u0159ihl\u00E1sit +login=p\u0159ihl\u00E1sit diff --git a/core/src/main/resources/hudson/tasks/BuildTrigger/config_cs.properties b/core/src/main/resources/hudson/tasks/BuildTrigger/config_cs.properties new file mode 100644 index 0000000000..73b894a17c --- /dev/null +++ b/core/src/main/resources/hudson/tasks/BuildTrigger/config_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Projects\ to\ build=Projekty k sestaven\u00ED diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_cs.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_cs.properties new file mode 100644 index 0000000000..2c086203fb --- /dev/null +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_cs.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Days\ to\ keep\ builds=Po\u010Det dn\u016F, po kter\u00E9 se budou uchov\u00E1vat star\u00E9 sestaven\u00ED +Max\ #\ of\ builds\ to\ keep=Maxim\u00E1ln\u00ED po\u010Det sestaven\u00ED, kter\u00E9 se budou uchov\u00E1vat diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_cs.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_cs.properties index ed35c6fdce..1ceedb88ea 100644 --- a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_cs.properties +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_cs.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Age=V\u011Bk All\ Failed\ Tests=V\u0161echny ne\u00FAsp\u011B\u0161n\u00E9 testy All\ Tests=V\u0161echny testy Duration=Trv\u00E1n\u00ED diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_cs.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_cs.properties index 8317960f39..6bab5db342 100644 --- a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_cs.properties +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_cs.properties @@ -21,4 +21,5 @@ # THE SOFTWARE. Test\ Result\ Trend=Trend v\u00FDsledk\u016F test\u016F +enlarge=zv\u011Bt\u0161it just\ show\ failures=zobrazit pouze chyby diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_cs.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_cs.properties new file mode 100644 index 0000000000..4fb26c661f --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title="{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 index 23afd2fa5b..bfbbf89629 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_cs.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_cs.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Schedule\ a\ build=Napl\u00E1novat sestaven\u00ED +Build\ scheduled=Build napl\u00E1nov\u00E1n +Schedule\ a\ build=Napl\u00E1novat build diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_cs.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_cs.properties new file mode 100644 index 0000000000..6f42f2ddd4 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +New\ View=Nov\u00E9 zobrazen\u00ED diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_cs.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_cs.properties index 26c39728b0..86b4dc7bba 100644 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_cs.properties +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -New\ View=Nov\u00FD pohled +New\ View=Nov\u00FD Pohled diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_cs.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_cs.properties index 0f06bd91c9..a1a5558c00 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_cs.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=\u010Cas posledn\u00EDho sestaven\u00ED +Last\ Duration=D\u00E9lka posledn\u00EDho sestaven\u00ED diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_cs.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_cs.properties index 88ed31bc64..c08fa75a2f 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_cs.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=Posledn\u00ED ne\u00FAsp\u011B\u0161n\u00E9 +Last\ Failure=Posledn\u00ED ne\u00FAsp\u011B\u0161n\u00FD build diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_cs.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_cs.properties index a7b16f8435..2f1ac1b641 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_cs.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=Posledn\u00ED \u00FAsp\u011B\u0161n\u00E9 +Last\ Success=Posledn\u00ED \u00FAsp\u011B\u0161n\u00FD build diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_cs.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_cs.properties index 30b0b6cb76..e6ec3b99b2 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_cs.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=V\u00FDsledek posledn\u00EDho sestaven\u00ED. +Status\ of\ the\ last\ build=V\u00FDsledek posledn\u00EDho sestaven\u00ED diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_cs.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_cs.properties index 1e7ad76ea5..591e85feb7 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_cs.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_cs.properties @@ -20,4 +20,4 @@ # 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=Pr\u016Fm\u011Br v\u00FDsledk\u016F z posledn\u00EDch sestaven\u00ED. +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Pr\u016Fm\u011Br v\u00FDsledk\u016F z posledn\u00EDch sestaven\u00ED diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_cs.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_cs.properties new file mode 100644 index 0000000000..c0646b71a5 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_cs.properties @@ -0,0 +1,4 @@ +# 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/HistoryWidget/index_cs.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_cs.properties index 1ff18924dc..e07bc2925b 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_cs.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_cs.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. More\ ...=V\u00EDce ... -for\ all=v\u0161eho +for\ all=pro v\u0161echno for\ failures=chybn\u00FDch sestaven\u00ED trend=trend diff --git a/core/src/main/resources/jenkins/management/PluginsLink/info_cs.properties b/core/src/main/resources/jenkins/management/PluginsLink/info_cs.properties new file mode 100644 index 0000000000..6f1bf77262 --- /dev/null +++ b/core/src/main/resources/jenkins/management/PluginsLink/info_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +updates\ available=dotupn\u00E9 aktualizace diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_cs.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_cs.properties new file mode 100644 index 0000000000..42a189b99d --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_cs.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Build\ Record\ Root\ Directory=Build z\u00E1znamy - ko\u0159enov\u00FD adres\u00E1\u0159 +Home\ directory=Domovsk\u00FD adres\u00E1\u0159 +System\ Message=Syst\u00E9mov\u00E1 zpr\u00E1va +Workspace\ Root\ Directory=Workspace - ko\u0159enov\u00FD adres\u00E1\u0159 diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_cs.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_cs.properties new file mode 100644 index 0000000000..5ed5ac44c3 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_cs.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Check=Ov\u011B\u0159it +Check\ File\ Fingerprint=Ov\u011B\u0159it otisk souboru +File\ to\ check=Soubor k ov\u011B\u0159en\u00ED +description=M\u00E1te jar soubor ale nev\u00EDte k jak\u00E9 verzi pat\u0159\u00ED?
+Ov\u011B\u0159te si jej v Jenkinsov\u011B datab\u00E1zi otisk\u016F +fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint +more\ details=dal\u0161\u00ED informace diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_cs.properties b/core/src/main/resources/jenkins/model/Jenkins/login_cs.properties new file mode 100644 index 0000000000..4ffc25f8aa --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/login_cs.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Password=Heslo +Remember\ me\ on\ this\ computer=Zapamatovat si m\u011B na tomto po\u010D\u00EDta\u010Di +User=U\u017Eivatele +login=P\u0159ihl\u00E1sit +signUp=Vytvo\u0159it \u00FA\u010Det pokud ho je\u0161t\u011B nem\u00E1te. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_cs.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_cs.properties index ba0082fff9..092d1f5b81 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_cs.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_cs.properties @@ -20,4 +20,26 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Manage\ Jenkins=Spravovat Jenkinse +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=P\u0159idat, odstranit, m\u011Bnit nastaven\u00ED r\u016Fzn\u00FDch uzl\u016F, na kter\u00FDch Jenkins pou\u0161t\u00ED joby. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=P\u0159idat, odebrat, vypnout nebo zapnout pluginy, kter\u00E9 roz\u0161i\u0159uj\u00ED funkcionalitu Jenkins-u. +Configure\ System=Konfigurovat Syst\u00E9m +Configure\ global\ settings\ and\ paths.=Konfigorovat glob\u00E1ln\u00ED nastaven\u00ED a cesty. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Zahodit nastaven\u00ED job\u016F a znovu-na\u010D\u00EDst v\u0161echno z konfigura\u010Dn\u00EDch soubor\u016F na disku. +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Zobrazit r\u016Fzn\u00E1 nastaven\u00ED prost\u0159ed\u00ED - pomoc p\u0159i hled\u00E1n\u00ED chyb. +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Spou\u0161t\u00ED libovoln\u00FD skript (administrace, diagnostika, ap.). +Jenkins\ CLI=Jenkins - p\u0159\u00EDkazov\u00E1 \u0159\u00E1dka +JenkinsCliText=Pou\u017E\u00EDvejte Jenkins nebo m\u011B\u0148te jeho nastaven\u00ED ze shell-u nebo ze skriptu. +Load\ Statistics=Statistika +LoadStatisticsText=Prozkoumejte vyu\u017Eit\u00ED zdroj\u016F, zjist\u011Bte, zda pot\u0159ebujete v\u00EDce po\u010D\u00EDta\u010D\u016F pro sv\u00E9 buildy. +Manage\ Jenkins=Jenkins - nastaven\u00ED +Manage\ Nodes=Spr\u00E1va uzl\u016F +Manage\ Plugins=Spravovat Pluginy +Prepare\ for\ Shutdown=P\u0159ipravit na vypnut\u00ED +Reload\ Configuration\ from\ Disk=Znovu-nahr\u00E1t konfiguraci z disku. +Script\ Console=Konzole pro skripty +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Zastav\u00ED spou\u0161t\u011Bn\u00ED nov\u00FDch build-\u016F - aby Jenkins mohl b\u00FDt bezpe\u010Dn\u011B vypnut. +System\ Information=Syst\u00E9m - Informace +System\ Log=Syst\u00E9m - Log +SystemLogText=Loggovac\u00ED soubor syst\u00E9mu zachycuje v\u00FDstup z java.util.logging v\u00FDstupu vztahuj\u00EDc\u00EDmu se k Jenkins-u. +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Pot\u0159ebn\u00E9, pokud modifikujete konfigura\u010Dn\u00ED soubory p\u0159\u00EDmo na disku. +are.you.sure={0}: opravdu to chcete? diff --git a/core/src/main/resources/lib/form/advanced_cs.properties b/core/src/main/resources/lib/form/advanced_cs.properties new file mode 100644 index 0000000000..b9c4217af8 --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Advanced=Roz\u0161\u00ED\u0159en\u00E9 nastaven\u00ED diff --git a/core/src/main/resources/lib/form/apply_cs.properties b/core/src/main/resources/lib/form/apply_cs.properties new file mode 100644 index 0000000000..71bcb17d35 --- /dev/null +++ b/core/src/main/resources/lib/form/apply_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Apply=Pou\u017E\u00EDt diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_cs.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_cs.properties new file mode 100644 index 0000000000..e115040e14 --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=nastaven\u00ED diff --git a/core/src/main/resources/lib/form/helpArea_cs.properties b/core/src/main/resources/lib/form/helpArea_cs.properties index 506d2cde46..ccabb0279d 100644 --- a/core/src/main/resources/lib/form/helpArea_cs.properties +++ b/core/src/main/resources/lib/form/helpArea_cs.properties @@ -20,4 +20,3 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Loading...=Nahr\u00E1v\u00E1n\u00ED... diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_cs.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_cs.properties new file mode 100644 index 0000000000..613c834716 --- /dev/null +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete=Smazat diff --git a/core/src/main/resources/lib/form/slave-mode_cs.properties b/core/src/main/resources/lib/form/slave-mode_cs.properties new file mode 100644 index 0000000000..6f015c2792 --- /dev/null +++ b/core/src/main/resources/lib/form/slave-mode_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Usage=Pou\u017Eit\u00ED diff --git a/core/src/main/resources/lib/form/textarea_cs.properties b/core/src/main/resources/lib/form/textarea_cs.properties new file mode 100644 index 0000000000..7962ca7adc --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_cs.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=Skr\u00FDt n\u00E1hled +Preview=N\u00E1hled diff --git a/core/src/main/resources/lib/hudson/buildCaption_cs.properties b/core/src/main/resources/lib/hudson/buildCaption_cs.properties index c12b490f14..f6ff2dac60 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_cs.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_cs.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Progress=Postup -cancel=zru\u0161it +cancel=Zru\u0161it diff --git a/core/src/main/resources/lib/hudson/buildListTable_cs.properties b/core/src/main/resources/lib/hudson/buildListTable_cs.properties index 52da69f638..822100a0b8 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_cs.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_cs.properties @@ -20,6 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Build -Console\ output=V\u00FDstup z konzole +Build=Sestaven\u00ED +Click\ to\ center\ timeline\ on\ event=Klik pro vyst\u0159ed\u011Bn\u00ED \u010Dasov\u00E9 osy na ud\u00E1lost. +Console\ output=V\u00FDstup (konzole) Status=Stav +Time\ Since=Dokon\u010Deno p\u0159ed diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_cs.properties b/core/src/main/resources/lib/hudson/buildProgressBar_cs.properties index 9dd28535da..7533bf3ba1 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_cs.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Nastartov\u00E1no p\u0159ed {0}
P\u0159edpokl\u00E1d\u00E1n\u00FD zb\u00FDvaj\u00EDc\u00ED \u010Das: {1} +text=Za\u010Dalo p\u0159ed {0}
P\u0159edpokl\u00E1d\u00E1n\u00FD zb\u00FDvaj\u00EDc\u00ED \u010Das: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_cs.properties b/core/src/main/resources/lib/hudson/editableDescription_cs.properties index 6c75fc72c7..a2c62546a5 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_cs.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_cs.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=P\u0159idat popis -edit\ description=\u00FAprava popisu +add\ description=p\u0159idat popis +edit\ description=upravit popis diff --git a/core/src/main/resources/lib/hudson/executors_cs.properties b/core/src/main/resources/lib/hudson/executors_cs.properties index a07c797a5b..f4f4877df3 100644 --- a/core/src/main/resources/lib/hudson/executors_cs.properties +++ b/core/src/main/resources/lib/hudson/executors_cs.properties @@ -20,9 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Stav vykon\u00E1v\u00E1n\u00ED sestaven\u00ED -Building=Prob\u00EDh\u00E1 build -Idle=Voln\u00FD -Master=Hlavn\u00ED +Build\ Executor\ Status=Stav build\u016F +Building=Prob\u00EDh\u00E1 sestaven\u00ED +Idle=Ne\u010Dinn\u00FD +Master=Hlavn\u00ED uzel Status=Stav -terminate\ this\ build=ukon\u010Dit tento build +Unknown\ Task=Nezn\u00E1m\u00FD \u00FAkol +offline=nedostupn\u00FD +terminate\ this\ build=ukon\u010Dit toto sestaven\u00ED diff --git a/core/src/main/resources/lib/hudson/newFromList/form_cs.properties b/core/src/main/resources/lib/hudson/newFromList/form_cs.properties new file mode 100644 index 0000000000..9c3d05c480 --- /dev/null +++ b/core/src/main/resources/lib/hudson/newFromList/form_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Copy\ from=Zkop\u00EDrovat z diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_cs.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_cs.properties index 43873436d7..288993f710 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_cs.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_cs.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Upstream\ Projects=Posledn\u00ED zm\u011Bny +Downstream\ Projects=Navazuj\u00EDc\u00ED projekty +Upstream\ Projects= diff --git a/core/src/main/resources/lib/hudson/queue_cs.properties b/core/src/main/resources/lib/hudson/queue_cs.properties index 1308d503ed..72e24e602d 100644 --- a/core/src/main/resources/lib/hudson/queue_cs.properties +++ b/core/src/main/resources/lib/hudson/queue_cs.properties @@ -20,5 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Fronta \u010Dekaj\u00EDc\u00EDch sestaven\u00ED -No\ builds\ in\ the\ queue.=\u017D\u00E1dn\u00E9 \u010Dekaj\u00EDc\u00ED sestaven\u00ED +Build\ Queue=Fronta \u010Dekaj\u00EDc\u00EDch build\u016F +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins bude brzy vypnut. \u017D\u00E1dn\u00E9 dal\u0161\u00ED \u00FAlohy nebudou provedeny. +No\ builds\ in\ the\ queue.=\u017D\u00E1dn\u00E1 sestaven\u00ED ve front\u011B. +WaitingFor=\u010Cek\u00E1 na {0} +cancel=zru\u0161it diff --git a/core/src/main/resources/lib/hudson/rssBar_cs.properties b/core/src/main/resources/lib/hudson/rssBar_cs.properties index 708f9e0feb..b3ab64456e 100644 --- a/core/src/main/resources/lib/hudson/rssBar_cs.properties +++ b/core/src/main/resources/lib/hudson/rssBar_cs.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=N\u00E1pov\u011Bda -for\ all=pro v\u0161echny -for\ failures=pro chybn\u00E9 -for\ just\ latest\ builds=pro posledn\u00ED sestaven\u00ED +Legend=Vysv\u011Btlivky +for\ all=pro v\u0161e +for\ failures=pro ne\u00FAsp\u011B\u0161n\u00E9 +for\ just\ latest\ builds=pro posledn\u00ED buildy diff --git a/core/src/main/resources/lib/hudson/test-result_cs.properties b/core/src/main/resources/lib/hudson/test-result_cs.properties index 3c504bf238..af3a796d8c 100644 --- a/core/src/main/resources/lib/hudson/test-result_cs.properties +++ b/core/src/main/resources/lib/hudson/test-result_cs.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +multifailures="{0} ne\u00FAsp\u011B\u0161n\u00FDch {1}" no\ failures=\u017E\u00E1dn\u00E9 chyby no\ tests=\u017E\u00E1dn\u00E9 testy diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_cs.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_cs.properties new file mode 100644 index 0000000000..1617bf57ec --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_cs.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +License=Licence +Name=N\u00E1zev diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_cs.properties b/core/src/main/resources/lib/layout/breadcrumbBar_cs.properties new file mode 100644 index 0000000000..69854bf8cc --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_cs.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=Vypnout automatick\u00E9 obnovov\u00E1n\u00ED str\u00E1nky +ENABLE\ AUTO\ REFRESH=POVOLIT AUTO REFRESH diff --git a/core/src/main/resources/lib/layout/layout_cs.properties b/core/src/main/resources/lib/layout/layout_cs.properties index 8acb193083..544e3fe338 100644 --- a/core/src/main/resources/lib/layout/layout_cs.properties +++ b/core/src/main/resources/lib/layout/layout_cs.properties @@ -22,7 +22,7 @@ DISABLE\ AUTO\ REFRESH=Vypnout automatick\u00E9 obnovov\u00E1n\u00ED str\u00E1nky ENABLE\ AUTO\ REFRESH=Zapnout automatick\u00E9 obnovov\u00E1n\u00ED str\u00E1nky -Page\ generated=Str\u00E1nka generov\u00E1na -logout=Odhl\u00E1sit +Page\ generated=Str\u00E1nka vygenerov\u00E1na +logout=odhl\u00E1sit search=vyhledat -searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Hledani+Box diff --git a/core/src/main/resources/lib/layout/progressiveRendering_cs.properties b/core/src/main/resources/lib/layout/progressiveRendering_cs.properties new file mode 100644 index 0000000000..b0ac7390c1 --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_cs.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=Prob\u00EDh\u00E1 v\u00FDpo\u010Det -- GitLab From 4691592f10c06f4d4fc3f333f5016982c047557d Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:54 -0700 Subject: [PATCH 035/308] Community-contributed localization for Danish (da) --- .../resources/hudson/PluginManager/index_da.properties | 2 +- .../resources/hudson/PluginManager/table_da.properties | 6 ++++-- .../hudson/model/AbstractBuild/index_da.properties | 1 + .../hudson/model/AbstractBuild/sidepanel_da.properties | 2 +- .../hudson/model/AbstractBuild/tasks_da.properties | 7 ++++--- .../hudson/model/AbstractProject/sidepanel_da.properties | 3 ++- .../model/Cause/UserIdCause/description_da.properties | 1 + .../resources/hudson/model/Job/configure_da.properties | 1 + .../main/resources/hudson/model/Job/index_da.properties | 3 +++ .../main/resources/hudson/model/Run/console_da.properties | 2 +- .../UpdateCenter/RestartJenkinsJob/row_da.properties | 3 +++ .../hudson/model/UpdateCenter/body_da.properties | 5 +++++ .../hudson/model/UpdateCenter/sidepanel_da.properties | 2 +- .../hudson/model/View/AsynchPeople/index_da.properties | 5 +++-- .../resources/hudson/model/View/sidepanel_da.properties | 4 ++-- .../hudson/search/UserSearchProperty/config_da.properties | 4 ++++ .../TestResultProjectAction/floatingBox_da.properties | 4 ++-- .../tools/InstallSourceProperty/config_da.properties | 4 ++-- .../triggers/SCMTrigger/BuildAction/index_da.properties | 2 +- .../hudson/views/BuildButtonColumn/column_da.properties | 3 ++- .../views/LastFailureColumn/columnHeader_da.properties | 2 +- .../hudson/views/StatusColumn/columnHeader_da.properties | 2 +- .../hudson/views/WeatherColumn/columnHeader_da.properties | 2 +- .../hudson/widgets/HistoryWidget/entry_da.properties | 2 +- .../SecurityIsOffMonitor/message_da.properties | 5 +++++ .../jenkins/model/Jenkins/configure_da.properties | 3 ++- .../resources/jenkins/model/Jenkins/manage_da.properties | 7 ++++++- .../lib/form/breadcrumb-config-outline_da.properties | 3 +++ core/src/main/resources/lib/form/textarea_da.properties | 4 ++++ .../main/resources/lib/hudson/buildCaption_da.properties | 2 +- .../resources/lib/hudson/buildListTable_da.properties | 3 ++- .../resources/lib/hudson/buildProgressBar_da.properties | 2 +- .../src/main/resources/lib/hudson/executors_da.properties | 6 +++--- core/src/main/resources/lib/hudson/queue_da.properties | 5 +++-- core/src/main/resources/lib/hudson/rssBar_da.properties | 8 ++++---- .../main/resources/lib/layout/breadcrumbBar_da.properties | 4 ++++ core/src/main/resources/lib/layout/layout_da.properties | 2 +- .../lib/layout/progressiveRendering_da.properties | 3 +++ 38 files changed, 90 insertions(+), 39 deletions(-) create mode 100644 core/src/main/resources/hudson/model/Job/index_da.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_da.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_da.properties create mode 100644 core/src/main/resources/hudson/search/UserSearchProperty/config_da.properties create mode 100644 core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_da.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_da.properties create mode 100644 core/src/main/resources/lib/form/textarea_da.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_da.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_da.properties diff --git a/core/src/main/resources/hudson/PluginManager/index_da.properties b/core/src/main/resources/hudson/PluginManager/index_da.properties index a1239b8bfb..1a8f0e8d58 100644 --- a/core/src/main/resources/hudson/PluginManager/index_da.properties +++ b/core/src/main/resources/hudson/PluginManager/index_da.properties @@ -23,5 +23,5 @@ All=Alle None=Ingen Select=V\u00E6lg -UpdatePageDescription=Denne side angiver opdateringer til de plugins du allerede har installeret +UpdatePageDescription=Denne side angiver opdateringer til de plugins, du allerede har installeret UpdatePageLegend=R\u00e6kker der er sl\u00e5et fra er allerede opgraderede, og afventer genstart. \ diff --git a/core/src/main/resources/hudson/PluginManager/table_da.properties b/core/src/main/resources/hudson/PluginManager/table_da.properties index 6e1f840680..67a193a187 100644 --- a/core/src/main/resources/hudson/PluginManager/table_da.properties +++ b/core/src/main/resources/hudson/PluginManager/table_da.properties @@ -21,9 +21,10 @@ # THE SOFTWARE. Version=Version +Install\ without\ restart=Installer uden genstart Installed=Installeret Install=Installer -Click\ this\ heading\ to\ sort\ by\ category=Klik denne overskrift for at sortere efter kategori +Click\ this\ heading\ to\ sort\ by\ category=Klik p\u00E5 denne overskrift for at sortere efter kategori coreWarning=\ Advarsel: Denne plugin er bygget til Jenkins {0} eller nyere. \ Den vil m\u00e5ske, m\u00e5ske ikke fungere med din version af Jenkins. @@ -32,5 +33,6 @@ Name=Navn compatWarning=\ Advarsel: Den nye version er ikke kompatibel med den installerede version. \ Jobs der benytter sig af denne plugin skal m\u00e5ske konfigureres igen. +Download\ now\ and\ install\ after\ restart=Hent nu og installer efter genstart Inactive=Inaktive -Check\ to\ install\ the\ plugin=Kryds af for at installere plugin''en +Check\ to\ install\ the\ plugin=Kryds af for at installere plugin''''et diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_da.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_da.properties index 09234d7f27..2b75a3c2d4 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_da.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_da.properties @@ -29,6 +29,7 @@ Took=Tog Changes\ in\ dependency=\u00c6ndringer i afh\u00e6ngighed on=p\u00e5 none=ingen +beingExecuted=Har bygget i {0} detail=detaljer Failed\ to\ determine=Kunne ikke fastl\u00e6gge log=log diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_da.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_da.properties index e24ce18e18..2211ad7c64 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_da.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_da.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Previous\ Build=Forrige byg +Previous\ Build=Forrige build Next\ Build=N\u00E6ste byg diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_da.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_da.properties index dbcd4e2ea7..48a691813c 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_da.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_da.properties @@ -22,8 +22,9 @@ Changes=\u00c6ndringer raw=r\u00e5 -Edit\ Build\ Information=Rediger job beskrivelse +Edit\ Build\ Information=Rediger jobbeskrivelse Status=Status -Console\ Output=Konsol Output -View\ as\ plain\ text=Vis som ren tekst +Console\ Output=Konsoloutput +View\ Build\ Information=Vis information om byg +View\ as\ plain\ text=Vis som klartekst Back\ to\ Project=Tilbage til projektet diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_da.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_da.properties index c172404467..e3809d56ec 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_da.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_da.properties @@ -26,7 +26,8 @@ Configure=Konfigurer Back\ to\ Dashboard=Tilbage til oversigtssiden Status=Status Workspace=Arbejdsomr\u00e5de -Build\ scheduled=Byg skeduleret +Build\ scheduled=Byg planlagt View\ Configuration=Vis konfiguration Wipe\ Out\ Workspace=Slet arbejdsomr\u00e5det +delete.confirm=Er du sikker p\u00E5 at du vil slette {0} ''{1}''? wipe.out.confirm=Er du sikker p\u00e5 at du vil slette arbejdsomr\u00e5det? diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_da.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_da.properties index e815418cf3..42f4d59e0a 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_da.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_da.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +started_by_anonymous=Startet af annonym bruger started_by_user=Startet af brugeren {1} diff --git a/core/src/main/resources/hudson/model/Job/configure_da.properties b/core/src/main/resources/hudson/model/Job/configure_da.properties index 7a8456f776..fa65b1a3d7 100644 --- a/core/src/main/resources/hudson/model/Job/configure_da.properties +++ b/core/src/main/resources/hudson/model/Job/configure_da.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Strategy=Strategi name={0} navn Discard\ Old\ Builds=Fjern Gamle Byg Save=Gem diff --git a/core/src/main/resources/hudson/model/Job/index_da.properties b/core/src/main/resources/hudson/model/Job/index_da.properties new file mode 100644 index 0000000000..3cbca93040 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_da.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Disable\ Project=Deaktiver Projekt diff --git a/core/src/main/resources/hudson/model/Run/console_da.properties b/core/src/main/resources/hudson/model/Run/console_da.properties index b895e08918..d9513b04db 100644 --- a/core/src/main/resources/hudson/model/Run/console_da.properties +++ b/core/src/main/resources/hudson/model/Run/console_da.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. skipSome=Springer over {0,number,integer} KB.. Fuld Log -Console\ Output=Konsol Output +Console\ Output=Konsoloutput diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_da.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_da.properties new file mode 100644 index 0000000000..e44b6b56e7 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_da.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Restarting\ Jenkins=Genstarter Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_da.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_da.properties new file mode 100644 index 0000000000..54257c1dc1 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_da.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Go\ back\ to\ the\ top\ page=Tilbage til hovedsiden +warning=Genstart Jenkins n\u00E5r installationen er f\u00E6rdig og ingen jobs k\u00F8rer +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=Du kan bruge de installerede plugins med det samme diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_da.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_da.properties index a77b81f5b8..62a272133c 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_da.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_da.properties @@ -22,4 +22,4 @@ Back\ to\ Dashboard=Tilbage til oversigtssiden Manage\ Jenkins=Bestyr Jenkins -Manage\ Plugins=Pluginh\u00e5ndtering +Manage\ Plugins=Plugin h\u00E5ndtering diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_da.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_da.properties index 78a983f7b8..37e5439930 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_da.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_da.properties @@ -21,8 +21,9 @@ # THE SOFTWARE. On=P\u00e5 -Last\ Active=Sidst Aktiv +Last\ Active=Sidst aktiv People=Personer Name=Navn All\ People=Alle Personer -User\ Id=Bruger ID +User\ Id=Bruger-ID +blurb=Inkluderer alle kendte "brugere", inklusiv login-identiteter som kan findes ud fra nuv\u00E6rende sikkerhedsniveau samt personer n\u00E6vnt i commit-beskeder i registrerede changelogs. diff --git a/core/src/main/resources/hudson/model/View/sidepanel_da.properties b/core/src/main/resources/hudson/model/View/sidepanel_da.properties index 0ed83e1228..ff723ad0ba 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_da.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_da.properties @@ -24,6 +24,6 @@ Check\ File\ Fingerprint=Check filfingeraftryk Project\ Relationship=Projektrelationer Delete\ View=Slet visning People=Personer -Build\ History=Bygge historie -Edit\ View=Redig\u00E9r visning +Build\ History=Job-historik +Edit\ View=Rediger visning NewJob=Nyt {0} diff --git a/core/src/main/resources/hudson/search/UserSearchProperty/config_da.properties b/core/src/main/resources/hudson/search/UserSearchProperty/config_da.properties new file mode 100644 index 0000000000..12b2434885 --- /dev/null +++ b/core/src/main/resources/hudson/search/UserSearchProperty/config_da.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Case-sensitivity=Store/sm\u00E5 bogstaver +Insensitive\ search\ tool=Ignorer forskelle som f\u00F8lge af store/sm\u00E5 bogstaver diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_da.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_da.properties index 7845901de2..4f2971e019 100644 --- a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_da.properties +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_da.properties @@ -22,5 +22,5 @@ show\ test\ \#\ and\ failure\ \#=vis # test og antal fejlede just\ show\ failures=vis kun fejlede -Test\ Result\ Trend=Testresultat trend -enlarge=forst\u00f8rre +Test\ Result\ Trend=Testresultat-trend +enlarge=forst\u00F8r diff --git a/core/src/main/resources/hudson/tools/InstallSourceProperty/config_da.properties b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_da.properties index e5cea4349d..85f96e2625 100644 --- a/core/src/main/resources/hudson/tools/InstallSourceProperty/config_da.properties +++ b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_da.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ Installer=Slet Installer -Add\ Installer=Tilf\u00f8j Installer +Delete\ Installer=Slet installationsprogram +Add\ Installer=Tilf\u00F8j installationsprogram diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_da.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_da.properties index 62505dc89f..05332d96d9 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_da.properties +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_da.properties @@ -22,4 +22,4 @@ Polling\ Log=Polling log View\ as\ plain\ text=Vis som r\u00e5 text -blurb=Denne side viser pollingloggen der startede dette byg. +blurb=Denne side viser pollingloggen, der startede dette byg. diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_da.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_da.properties index 1ca72f034d..bf7e9a5c2a 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_da.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_da.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Schedule\ a\ build=Planl\u00E6g et byg +Build\ scheduled=Byg er planlagt +Schedule\ a\ build=Planl\u00E6g et byggeri diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_da.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_da.properties index 33fe4e46c5..530ca684a9 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_da.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=Seneste fejlede +Last\ Failure=Seneste fejlende diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_da.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_da.properties index b1babbcb46..4d5c94e211 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_da.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=Status for det seneste byg +Status\ of\ the\ last\ build=Status for det seneste byggeri diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_da.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_da.properties index dbac6ff144..ec1f03ca61 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_da.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_da.properties @@ -20,4 +20,4 @@ # 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=Vejrudsigt, der viser en samlet status for de seneste byg +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Vejrudsigt, der viser en samlet status for de seneste byggerier diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_da.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_da.properties index f097d3ae95..b637ac7564 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_da.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Konsol ouput +Console\ Output=Konsol udskrift diff --git a/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_da.properties b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_da.properties new file mode 100644 index 0000000000..f1f73b3e27 --- /dev/null +++ b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_da.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Dismiss=Afvis +Setup\ Security=Ops\u00E6t sikkerhed +blurb=Ubeskyttet Jenkins tillader alle p\u00E5 netv\u00E6rket at starte jobs p\u00E5 dine vegne. Overvej at aktiv\u00E9r login som minimum for at undg\u00E5 misbrug. diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_da.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_da.properties index 982cedba95..4bf20aa517 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_da.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_da.properties @@ -21,6 +21,7 @@ # THE SOFTWARE. Save=Gem -Home\ directory=Hjemmedirektorie +Home\ directory=Hjemmemappe System\ Message=Systembesked LOADING=INDL\u00c6SER +Workspace\ Root\ Directory=Arbejdssteds Rodmappe diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_da.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_da.properties index 35c4181ff3..082e2ba4f3 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_da.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_da.properties @@ -20,4 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Manage\ Jenkins=Bestyr Jenkins +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Tilf\u00F8j, slet, h\u00E5ndter og overv\u00E5g de forskellige noder som Jenkins k\u00F8rer jobs p\u00E5. +Jenkins\ CLI=Jenkins CLI (kommandolinie) +Manage\ Jenkins=Andministr\u00E9r Jenkins +Manage\ Nodes=Bestyr noder +Prepare\ for\ Shutdown=Forbered nedlukning +are.you.sure={0}: er du sikker? diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_da.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_da.properties new file mode 100644 index 0000000000..906d14b10d --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_da.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=konfiguration diff --git a/core/src/main/resources/lib/form/textarea_da.properties b/core/src/main/resources/lib/form/textarea_da.properties new file mode 100644 index 0000000000..4b5ff79e7c --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_da.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=Skjul kladde +Preview=Vis kladde diff --git a/core/src/main/resources/lib/hudson/buildCaption_da.properties b/core/src/main/resources/lib/hudson/buildCaption_da.properties index f19b3563cc..b3045da1fc 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_da.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_da.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -cancel=annull\u00E9r +cancel=annuller Progress=Fremdrift diff --git a/core/src/main/resources/lib/hudson/buildListTable_da.properties b/core/src/main/resources/lib/hudson/buildListTable_da.properties index 12612c1d06..0ee7c90b24 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_da.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_da.properties @@ -23,4 +23,5 @@ Build=Byg Status=Status Time\ Since=Dato -Console\ output=Konsol output +Click\ to\ center\ timeline\ on\ event=Klik for at centrere om begivenhed +Console\ output=Konsoloutput diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_da.properties b/core/src/main/resources/lib/hudson/buildProgressBar_da.properties index bda3ece677..a31b9fe990 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_da.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Startet for {0} siden
Estimeret resterende tid: {1} +text=Startet for {0} siden
Estimeret resttid: {1} diff --git a/core/src/main/resources/lib/hudson/executors_da.properties b/core/src/main/resources/lib/hudson/executors_da.properties index 97559ae0d9..a111fed7c4 100644 --- a/core/src/main/resources/lib/hudson/executors_da.properties +++ b/core/src/main/resources/lib/hudson/executors_da.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -terminate\ this\ build=annull\u00E9r dette byg +terminate\ this\ build=annuller dette byg Building=Bygger Dead=D\u00f8dt suspended=suspenderet Offline=Offline Status=Status -Build\ Executor\ Status=Status for byggeafvikler -Idle=venter +Build\ Executor\ Status=Status for jobafvikler +Idle=Ledig Master=Master offline=offline diff --git a/core/src/main/resources/lib/hudson/queue_da.properties b/core/src/main/resources/lib/hudson/queue_da.properties index 7979be252f..14f9a36ca1 100644 --- a/core/src/main/resources/lib/hudson/queue_da.properties +++ b/core/src/main/resources/lib/hudson/queue_da.properties @@ -21,7 +21,8 @@ # THE SOFTWARE. Unknown\ Task=Ukendt Opgave -No\ builds\ in\ the\ queue.=Ingen byg i k\u00f8en. +No\ builds\ in\ the\ queue.=Ingen job i k\u00F8en. Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins vil lukke ned, der vil ikke blive udf\u00f8rt flere byg. +WaitingFor=afventer {0} cancel=annuller -Build\ Queue=Byggek\u00f8 +Build\ Queue=Job-k\u00F8 diff --git a/core/src/main/resources/lib/hudson/rssBar_da.properties b/core/src/main/resources/lib/hudson/rssBar_da.properties index 4741a76b0d..af065206d4 100644 --- a/core/src/main/resources/lib/hudson/rssBar_da.properties +++ b/core/src/main/resources/lib/hudson/rssBar_da.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -for\ just\ latest\ builds=kun for seneste byg -for\ failures=kun for fejlede byg -for\ all=for alle byg -Legend=beskrivelse +for\ just\ latest\ builds=kun for seneste byggerier +for\ failures=for fejl +for\ all=for alle +Legend=Beskrivelse diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_da.properties b/core/src/main/resources/lib/layout/breadcrumbBar_da.properties new file mode 100644 index 0000000000..7ee5df8a97 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_da.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=Autoopdater ikke siden +ENABLE\ AUTO\ REFRESH=automatisk genopfriskning diff --git a/core/src/main/resources/lib/layout/layout_da.properties b/core/src/main/resources/lib/layout/layout_da.properties index 7ca950b4bf..504b3d538a 100644 --- a/core/src/main/resources/lib/layout/layout_da.properties +++ b/core/src/main/resources/lib/layout/layout_da.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -logout=log ud +logout=Log ud Page\ generated=Side genereret search=s\u00F8g searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/core/src/main/resources/lib/layout/progressiveRendering_da.properties b/core/src/main/resources/lib/layout/progressiveRendering_da.properties new file mode 100644 index 0000000000..de19537c9f --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_da.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=Beregninger i gang. -- GitLab From 0d3b00d6ca2a36c33567fa900086a7010aff9a51 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:55 -0700 Subject: [PATCH 036/308] Community-contributed localization for German (de) --- .../matrix/MatrixProject/configure-entries_de.properties | 4 ++++ .../model/AbstractItem/configure-common_de.properties | 1 + .../hudson/model/AbstractProject/requirePOST_de.properties | 4 ++++ .../hudson/model/AbstractProject/sidepanel_de.properties | 1 + .../model/Cause/UpstreamCause/description_de.properties | 1 + .../resources/hudson/model/Computer/index_de.properties | 2 ++ .../resources/hudson/model/ComputerSet/index_de.properties | 1 + .../resources/hudson/model/Job/configure_de.properties | 1 + .../main/resources/hudson/model/Job/index_de.properties | 3 +++ .../hudson/model/ListView/configure-entries_de.properties | 3 ++- .../model/ParametersDefinitionProperty/index_de.properties | 1 + .../main/resources/hudson/model/Run/console_de.properties | 1 + .../RestartJenkinsJob/Running/status_de.properties | 3 +++ .../resources/hudson/model/UpdateCenter/body_de.properties | 2 ++ .../hudson/model/View/AsynchPeople/index_de.properties | 1 + .../resources/hudson/model/View/People/index_de.properties | 5 +++++ .../resources/hudson/model/View/configure_de.properties | 1 + .../ManagedWindowsServiceLauncher/config_de.properties | 3 +++ .../hudson/search/UserSearchProperty/config_de.properties | 4 ++++ .../security/LegacySecurityRealm/config_de.properties | 4 ++++ .../JDKInstaller/DescriptorImpl/credentialOK_de.properties | 4 ++++ .../DescriptorImpl/enterCredential_de.properties | 7 +++++++ .../hudson/views/BuildButtonColumn/column_de.properties | 2 ++ .../resources/jenkins/model/Jenkins/manage_de.properties | 1 + .../jenkins/model/Jenkins/systemInfo_de.properties | 3 ++- core/src/main/resources/lib/form/advanced_de.properties | 1 + .../lib/form/breadcrumb-config-outline_de.properties | 3 +++ .../main/resources/lib/hudson/buildListTable_de.properties | 1 + .../lib/hudson/project/config-publishers2_de.properties | 1 + .../project/config-upstream-pseudo-trigger_de.properties | 1 + .../main/resources/lib/hudson/scriptConsole_de.properties | 1 + .../lib/layout/progressiveRendering_de.properties | 3 +++ core/src/main/resources/lib/layout/task_de.properties | 3 +++ 33 files changed, 75 insertions(+), 2 deletions(-) create mode 100644 core/src/main/resources/hudson/model/AbstractProject/requirePOST_de.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_de.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_de.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_de.properties create mode 100644 core/src/main/resources/hudson/search/UserSearchProperty/config_de.properties create mode 100644 core/src/main/resources/hudson/security/LegacySecurityRealm/config_de.properties create mode 100644 core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/credentialOK_de.properties create mode 100644 core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_de.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_de.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_de.properties create mode 100644 core/src/main/resources/lib/layout/task_de.properties diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_de.properties b/core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_de.properties index d80f4c9f4b..50e6a0782a 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_de.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_de.properties @@ -24,3 +24,7 @@ Advanced\ Project\ Options=Erweiterte Projekteinstellungen Configuration\ Matrix=Konfigurationsmatrix Combination\ Filter=Kombinationsfilter Add\ axis=Achse hinzufügen +Directory=Verzeichnis +Directory\ for\ sub-builds=Verzeichnis f\u00FCr sub-builds +Display\ Name=Anzeigename +Use\ custom\ workspace=Eigenen Arbeitsplatz benutzen diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_de.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_de.properties index e89656661a..95845219b2 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/configure-common_de.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_de.properties @@ -21,6 +21,7 @@ # THE SOFTWARE. JDK\ to\ be\ used\ for\ this\ project=JDK, das für 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 diff --git a/core/src/main/resources/hudson/model/AbstractProject/requirePOST_de.properties b/core/src/main/resources/hudson/model/AbstractProject/requirePOST_de.properties new file mode 100644 index 0000000000..f9ba1f31f4 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/requirePOST_de.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Proceed=Fortsetzen +use_post=Sie m\u00FCssen die POST Methode einsetzen um Bulds anzustossen. (Aus Skripts heraus sollten Sie stattdessen ein projektbezogenes Authentifizierungstoken \u00FCbergeben, oder mit Ihrem API Token authenfizieren). Wenn diese Seite angezeigt wird, kann es daran liegen, da\u00DF ein Plugin einen GET Link angeboten hat; erstellen Sie einen Fehlerbericht f\u00FCr dieses Plugin. 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 f4fcfb04de..6883eb07a7 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_de.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_de.properties @@ -30,4 +30,5 @@ View\ Configuration=Konfiguration anzeigen Build\ scheduled=Build geplant Wipe\ Out\ Workspace=Arbeitsbereich l\u00f6schen View\ Configuration=Konfiguration anzeigen +delete.confirm=Sind Sie sicher das Sie das Projekt {0} `{1} l\u00F6schen wollen wipe.out.confirm=Sind Sie sicher, dass sie den Arbeitsbereich l\u00f6schen m\u00f6chten? diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_de.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_de.properties index 0e283733cb..1bb4deba17 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_de.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_de.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +caused_by=urspr\u00FCnglich ausgel\u00F6st durch: started_by_project=Gestartet durch vorgelagertes Projekt {0}, Build {1} diff --git a/core/src/main/resources/hudson/model/Computer/index_de.properties b/core/src/main/resources/hudson/model/Computer/index_de.properties index 8905e68d28..b7dc328116 100644 --- a/core/src/main/resources/hudson/model/Computer/index_de.properties +++ b/core/src/main/resources/hudson/model/Computer/index_de.properties @@ -1,5 +1,7 @@ submit.temporarilyOffline=Knoten wieder anschalten +anonymous\ user=Anonymer Benutzer submit.not.temporarilyOffline=Knoten temporär abschalten +submit.updateOfflineCause=Offline Grund aktualisieren title.no_manual_launch=Dieser Knoten verwendet die Verfügbarkeitsregel "{0}". \ Dies bedeutet momentan, daß der Knoten offline ist. Labels\:=Labels: diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_de.properties b/core/src/main/resources/hudson/model/ComputerSet/index_de.properties index 769b75e818..3276451458 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_de.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_de.properties @@ -1,3 +1,4 @@ +Data\ obtained=Daten ermittelt Name=Name Configure=Konfigurieren Refresh\ status=Status aktualisieren diff --git a/core/src/main/resources/hudson/model/Job/configure_de.properties b/core/src/main/resources/hudson/model/Job/configure_de.properties index 98a6db8035..553598aa9f 100644 --- a/core/src/main/resources/hudson/model/Job/configure_de.properties +++ b/core/src/main/resources/hudson/model/Job/configure_de.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Strategy=Strategie name={0}name Description=Beschreibung Discard\ Old\ Builds=Alte Builds verwerfen diff --git a/core/src/main/resources/hudson/model/Job/index_de.properties b/core/src/main/resources/hudson/model/Job/index_de.properties new file mode 100644 index 0000000000..7e8093838f --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_de.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Project\ name=Projektname diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_de.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_de.properties index 4551782c5a..e2fb56032f 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_de.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_de.properties @@ -22,6 +22,7 @@ Jobs=Jobs Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Regulären Ausdruck verwenden, um Jobs für diese Ansicht auszuwählen. +Recurse\ in\ subfolders=Unterverzeichnisse rekursiv durchsuchen Regular\ expression=Regulärer Ausdruck Columns=Spalten Add\ column=Spalte hinzufügen @@ -30,4 +31,4 @@ Disabled\ jobs\ only=Nur deaktivierte Jobs Enabled\ jobs\ only=Nur aktivierte Jobs Job\ Filters=Job Filter Add\ Job\ Filter=Job Filter hinzufügen -Status\ Filter=Status-Filter \ No newline at end of file +Status\ Filter=Status-Filter diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_de.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_de.properties index f3fdb7378c..c861f578d9 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_de.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_de.properties @@ -1,2 +1,3 @@ +LOADING=LADEN description=Dieser Build erfordert Parameter: Build=Build 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 51d429bd2a..f32f7c130e 100644 --- a/core/src/main/resources/hudson/model/Run/console_de.properties +++ b/core/src/main/resources/hudson/model/Run/console_de.properties @@ -21,4 +21,5 @@ # 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/UpdateCenter/RestartJenkinsJob/Running/status_de.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_de.properties new file mode 100644 index 0000000000..49fd724b3e --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_de.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Running=L\u00E4uft diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_de.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_de.properties index 7a0bf077ba..a9544a67c7 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_de.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_de.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Go\ back\ to\ the\ top\ page=Zur\u00FCck zur Startseite warning=Starte Jenkins neu, nachdem die Installation beendet ist und keine Prozesse laufen. +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=du kannst die installierten Plugins sofort verwenden 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 7129c4a086..2bd570ea05 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 @@ -26,3 +26,4 @@ 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. diff --git a/core/src/main/resources/hudson/model/View/People/index_de.properties b/core/src/main/resources/hudson/model/View/People/index_de.properties new file mode 100644 index 0000000000..537487c0cc --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_de.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Last\ Active=zuletzt aktiv +On=mit +User\ Id=Benutzerkennung diff --git a/core/src/main/resources/hudson/model/View/configure_de.properties b/core/src/main/resources/hudson/model/View/configure_de.properties index 577fca8956..25cdf83ab5 100644 --- a/core/src/main/resources/hudson/model/View/configure_de.properties +++ b/core/src/main/resources/hudson/model/View/configure_de.properties @@ -24,3 +24,4 @@ Name=Name Description=Beschreibung Filter\ build\ executors=Build-Prozessoren filtern Filter\ build\ queue=Build-Warteschlange filtern +OK=Speichern diff --git a/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_de.properties b/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_de.properties index b79c62574a..0d584da9dd 100644 --- a/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_de.properties +++ b/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_de.properties @@ -1,3 +1,6 @@ Administrator\ user\ name=Administrativer Benutzer Host=Host +JVM\ options=JVM-Optionen Password=Passwort +Path\ to\ java\ executable=Pfad zum Java-Executable +Run\ service\ as=Dienst ausf\u00FChren als diff --git a/core/src/main/resources/hudson/search/UserSearchProperty/config_de.properties b/core/src/main/resources/hudson/search/UserSearchProperty/config_de.properties new file mode 100644 index 0000000000..13dc0fac09 --- /dev/null +++ b/core/src/main/resources/hudson/search/UserSearchProperty/config_de.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Case-sensitivity=Gro\u00DF-/Kleinschreibung +Insensitive\ search\ tool=Gro\u00DF-/Kleinschreibung beim Suchen nicht beachten diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_de.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_de.properties new file mode 100644 index 0000000000..0805c8f87c --- /dev/null +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_de.properties @@ -0,0 +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. diff --git a/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/credentialOK_de.properties b/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/credentialOK_de.properties new file mode 100644 index 0000000000..655d59a10b --- /dev/null +++ b/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/credentialOK_de.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Close=Schlie\u00DFen +Credential\ is\ saved=Zugangsdaten gespeichert 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 new file mode 100644 index 0000000000..f3146f3e65 --- /dev/null +++ b/core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/enterCredential_de.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +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. diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_de.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_de.properties index 85b2e7d12e..004c66fc7d 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_de.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_de.properties @@ -20,4 +20,6 @@ # 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 +Schedule\ a\ build\ with\ parameters=Build mit Parametern planen diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_de.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_de.properties index 8a0f53fba3..25d8abb8c4 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_de.properties @@ -22,3 +22,4 @@ Manage\ Jenkins=Jenkins verwalten +are.you.sure={0}: sind Sie sicher? diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_de.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_de.properties index 5593540467..8cdab57a98 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_de.properties @@ -27,4 +27,5 @@ No\ plugins\ installed.=Keine Plugins installiert. Pinned=Gesperrt Name=Name Plugins=Plugins -Version=Version \ No newline at end of file +Version=Version +threadDump_blurb=Besuchen Sie diese Seite, um die Mast und Slave Thread Dumps zu sehen. diff --git a/core/src/main/resources/lib/form/advanced_de.properties b/core/src/main/resources/lib/form/advanced_de.properties index 1a8514d4fa..f71e6a7cf7 100644 --- a/core/src/main/resources/lib/form/advanced_de.properties +++ b/core/src/main/resources/lib/form/advanced_de.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Advanced=Erweitert +customizedFields=Ein oder mehrere Felder in diesem Block wurden bearbeitet. diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_de.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_de.properties new file mode 100644 index 0000000000..c4a19b4be9 --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_de.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=Konfiguration diff --git a/core/src/main/resources/lib/hudson/buildListTable_de.properties b/core/src/main/resources/lib/hudson/buildListTable_de.properties index 553130ae8d..8e53ac83e5 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_de.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_de.properties @@ -23,4 +23,5 @@ Time\ Since=Datum Status=Status Build=Build +Click\ to\ center\ timeline\ on\ event=Klick zentriert das Ereignis in der Zeitleiste Console\ output=Konsolenausgabe diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_de.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_de.properties index 71e28b307e..e078564074 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers2_de.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_de.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Add\ post-build\ action=Post-Build-Schritt hinzuf\u00FCgen Post-build\ Actions=Post-Build-Aktionen diff --git a/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_de.properties b/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_de.properties index f017f2bbbc..b44e2a4248 100644 --- a/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_de.properties +++ b/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_de.properties @@ -21,5 +21,6 @@ # THE SOFTWARE. Build\ after\ other\ projects\ are\ built=Starte Build, nachdem andere Projekte gebaut wurden. +Project\ names=Projektnamen Projects\ names=Projektnamen Multiple\ projects\ can\ be\ specified\ like\ 'abc,\ def'=Mehrere Projekte können folgendermaßen angegeben werden: ''abc, def''. diff --git a/core/src/main/resources/lib/hudson/scriptConsole_de.properties b/core/src/main/resources/lib/hudson/scriptConsole_de.properties index 73e2b0cc85..488a8941a9 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_de.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_de.properties @@ -28,3 +28,4 @@ description=Geben Sie ein beliebiges G Verwenden Sie das ''println''-Kommando, um Ausgaben sichtbar zu machen (wenn Sie System.out \ verwenden, gehen die Ausgaben auf die Standardausgabe (STDOUT) des Servers, die schwieriger \ einzusehen ist). Beispiel: +description2=Alle Klassen aller Plugins sind verf\u00FCgbar. jenkins.*, jenkins.model.*, hudson.* sowie hudson.model.* werden standardm\u00E4\u00DFig importiert. diff --git a/core/src/main/resources/lib/layout/progressiveRendering_de.properties b/core/src/main/resources/lib/layout/progressiveRendering_de.properties new file mode 100644 index 0000000000..7fe3eb3022 --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_de.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=Berechnung l\u00E4uft. diff --git a/core/src/main/resources/lib/layout/task_de.properties b/core/src/main/resources/lib/layout/task_de.properties new file mode 100644 index 0000000000..31126c3b43 --- /dev/null +++ b/core/src/main/resources/lib/layout/task_de.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Done.=Erledigt. -- GitLab From 990e9d9c29f17935203ddb2aacc13e5346a42660 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:55 -0700 Subject: [PATCH 037/308] Community-contributed localization for Greek, Modern (1453-) (el) --- .../ReverseProxySetupMonitor/message_el.properties | 3 +++ .../hudson/model/AbstractBuild/tasks_el.properties | 4 ++-- .../hudson/model/AbstractItem/delete_el.properties | 4 ++++ .../hudson/model/AbstractProject/changes_el.properties | 3 +++ .../hudson/model/AbstractProject/sidepanel_el.properties | 3 ++- .../hudson/model/ComputerSet/sidepanel_el.properties | 1 + .../model/DirectoryBrowserSupport/dir_el.properties | 3 +++ .../resources/hudson/model/Job/configure_el.properties | 4 ++++ .../main/resources/hudson/model/Job/index_el.properties | 3 +++ .../PermalinkProjectAction/Permalink/link_el.properties | 3 +++ .../main/resources/hudson/model/Run/delete_el.properties | 3 +++ .../main/resources/hudson/model/User/index_el.properties | 3 +++ .../hudson/model/View/AsynchPeople/index_el.properties | 6 +++--- .../resources/hudson/model/View/sidepanel_el.properties | 1 + .../hudson/scm/SCM/project-changes_el.properties | 3 +++ .../HudsonPrivateSecurityRealm/loginLink_el.properties | 3 +++ .../hudson/views/BuildButtonColumn/column_el.properties | 2 +- .../hudson/views/LastFailureColumn/column_el.properties | 2 +- .../hudson/views/LastSuccessColumn/column_el.properties | 3 +++ .../hudson/views/StatusColumn/columnHeader_el.properties | 2 +- .../views/WeatherColumn/columnHeader_el.properties | 2 +- .../widgets/BuildHistoryWidget/entries_el.properties | 3 +++ .../hudson/widgets/HistoryWidget/entry_el.properties | 2 +- .../hudson/widgets/HistoryWidget/index_el.properties | 3 ++- .../jenkins/model/Jenkins/fingerprintCheck_el.properties | 8 ++++++++ .../resources/jenkins/model/Jenkins/manage_el.properties | 1 + .../model/Jenkins/projectRelationship_el.properties | 3 +++ .../jenkins/model/Jenkins/systemInfo_el.properties | 9 +++++++++ core/src/main/resources/lib/form/textarea_el.properties | 4 ++++ .../main/resources/lib/hudson/executors_el.properties | 2 ++ .../resources/lib/hudson/propertyTable_el.properties | 4 ++++ core/src/main/resources/lib/hudson/queue_el.properties | 1 + core/src/main/resources/lib/hudson/rssBar_el.properties | 2 +- .../resources/lib/layout/breadcrumbBar_el.properties | 5 +++++ .../lib/layout/progressiveRendering_el.properties | 3 +++ 35 files changed, 98 insertions(+), 13 deletions(-) create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_el.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/delete_el.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/changes_el.properties create mode 100644 core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_el.properties create mode 100644 core/src/main/resources/hudson/model/Job/configure_el.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_el.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_el.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_el.properties create mode 100644 core/src/main/resources/hudson/model/User/index_el.properties create mode 100644 core/src/main/resources/hudson/scm/SCM/project-changes_el.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_el.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_el.properties create mode 100644 core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_el.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_el.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/projectRelationship_el.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/systemInfo_el.properties create mode 100644 core/src/main/resources/lib/form/textarea_el.properties create mode 100644 core/src/main/resources/lib/hudson/propertyTable_el.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_el.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_el.properties diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_el.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_el.properties new file mode 100644 index 0000000000..50ac021000 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_el.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +More\ Info=\u03A0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B5\u03C2 \u03A0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B5\u03C2 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_el.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_el.properties index d4d852aa80..1f954fe24b 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_el.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_el.properties @@ -22,7 +22,7 @@ Back\ to\ Project=\u0395\u03C0\u03B9\u03C3\u03C4\u03C1\u03BF\u03C6\u03AE \u03C3\u03C4\u03BF Project Changes=\u0391\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2 -Console\ Output=\u0391\u03C0\u03BF\u03C4\u03B5\u03BB\u03AD\u03C3\u03BC\u03B1\u03C4\u03B1 \u039A\u03BF\u03BD\u03C3\u03CC\u03BB\u03B1\u03C2 +Console\ Output=\u03A0\u03B1\u03C1\u03AC\u03B3\u03C9\u03B3\u03B1 \u039A\u03BF\u03BD\u03C3\u03CC\u03BB\u03B1\u03C2 View\ as\ plain\ text=\u03A0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AE \u03C9\u03C2 \u03B1\u03C0\u03BB\u03CC \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF -Edit\ Build\ Information=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 Build +Edit\ Build\ Information=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03A0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03B9\u03CE\u03BD Build Status=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_el.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_el.properties new file mode 100644 index 0000000000..5c66149904 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_el.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Yes=\u039D\u03B1\u03B9 +blurb=\u0395\u03B9\u03C3\u03C4\u03AD \u03C3\u03AF\u03B3\u03BF\u03C5\u03C1\u03BF\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03BF \u03C3\u03B2\u03AE\u03C3\u03B9\u03BC\u03BF \u03C4\u03BF\u03C5 {0} ''''{1}''''; diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_el.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_el.properties new file mode 100644 index 0000000000..4108c7d261 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_el.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=\u0391\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2 diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_el.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_el.properties index 667045338c..d2c11e0048 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_el.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_el.properties @@ -21,8 +21,9 @@ # THE SOFTWARE. Back\ to\ Dashboard=\u0395\u03C0\u03B9\u03C3\u03C4\u03C1\u03BF\u03C6\u03AE \u03C3\u03C4\u03BF Dashboard -Build\ scheduled=\u0397 \u039A\u03C4\u03AF\u03C3\u03B7 \u03A3\u03C7\u03B5\u03B4\u03B9\u03AC\u03C3\u03C4\u03B7\u03BA\u03B5 +Build\ scheduled=\u03A4\u03BF build \u03C0\u03C1\u03BF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5 Changes=\u0391\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2 +Configure=\u03A1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2 Status=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 Wipe\ Out\ Workspace=\u039A\u03B1\u03B8\u03B1\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03A7\u03CE\u03C1\u03BF\u03C5 \u0395\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2 Workspace=\u03A7\u03CE\u03C1\u03BF\u03C2 \u0395\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2 diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_el.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_el.properties index 0093a1bbe4..f59d5c1af0 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_el.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_el.properties @@ -23,3 +23,4 @@ Back\ to\ Dashboard=\u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03c3\u03c4\u03bf Dashboard Manage\ Jenkins=\u0394\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7 Jenkins Configure=\u03a0\u03b1\u03c1\u03b1\u03bc\u03b5\u03c4\u03c1\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 +New\ Node=\u039D\u03AD\u03BF\u03C2 \u039A\u03CC\u03BC\u03B2\u03BF\u03C2 diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_el.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_el.properties new file mode 100644 index 0000000000..ac5157406a --- /dev/null +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_el.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +all\ files\ in\ zip=\u03BF\u03BB\u03B1 \u03C4\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03B1 \u03C3\u03B5 zip diff --git a/core/src/main/resources/hudson/model/Job/configure_el.properties b/core/src/main/resources/hudson/model/Job/configure_el.properties new file mode 100644 index 0000000000..fe4829f7ec --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/configure_el.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Description=\u03A0\u03B5\u03C1\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE +name=\u038C\u03BD\u03BF\u03BC\u03B1 {0} diff --git a/core/src/main/resources/hudson/model/Job/index_el.properties b/core/src/main/resources/hudson/model/Job/index_el.properties new file mode 100644 index 0000000000..9f18f943a1 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_el.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Disable\ Project=\u0391\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B7 \u0395\u03C1\u03B3\u03BF\u03C5 diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_el.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_el.properties new file mode 100644 index 0000000000..472277d903 --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_el.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +format="{0} ({1}), \u03C0\u03C1\u03B9\u03BD \u03B1\u03C0\u03CC {2}" diff --git a/core/src/main/resources/hudson/model/Run/delete_el.properties b/core/src/main/resources/hudson/model/Run/delete_el.properties new file mode 100644 index 0000000000..83da46ffd5 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_el.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete\ this\ build=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE Build diff --git a/core/src/main/resources/hudson/model/User/index_el.properties b/core/src/main/resources/hudson/model/User/index_el.properties new file mode 100644 index 0000000000..2eab362d0c --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_el.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ User\ Id=\u039A\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u03A7\u03C1\u03AE\u03C3\u03C4\u03B7 Jenkins diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_el.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_el.properties index 40bc3149b1..f9e8fd487e 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_el.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_el.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Active=\u03A4\u03B5\u03B1\u03BB\u03B1\u03C5\u03C4\u03B1\u03AF\u03B1 \u03C7\u03C1\u03BF\u03BD\u03B9\u03BA\u03AE \u03B5\u03BD\u03B5\u03C1\u03B3\u03AE \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC +Last\ Active=\u03A4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1 \u03C7\u03C1\u03BF\u03BD\u03B9\u03BA\u03AE \u03B5\u03BD\u03B5\u03C1\u03B3\u03AE \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC Name=\u038C\u03BD\u03BF\u03BC\u03B1 -On=\u03A4\u03B5\u03BB\u03B1\u03C5\u03C4\u03B1\u03AF\u03B1 \u03B5\u03BD\u03B5\u03C1\u03B3\u03AE \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u03C3\u03C4\u03BF project -People=\u0386\u03BD\u03C1\u03B8\u03C9\u03C0\u03BF\u03B9 +On=\u03A4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1 \u03B5\u03BD\u03B5\u03C1\u03B3\u03AE \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u03C3\u03C4\u03BF project +People=\u0386\u03BD\u03B8\u03C1\u03C9\u03C0\u03BF\u03B9 User\ Id=Id \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 diff --git a/core/src/main/resources/hudson/model/View/sidepanel_el.properties b/core/src/main/resources/hudson/model/View/sidepanel_el.properties index 17fe776fb5..c058154651 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_el.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_el.properties @@ -21,6 +21,7 @@ # THE SOFTWARE. Build\ History=\u0399\u03C3\u03C4\u03BF\u03C1\u03B9\u03BA\u03CC \u03B4\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03B9\u03CE\u03BD +Check\ File\ Fingerprint=\u0388\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 \u0391\u03C0\u03BF\u03C4\u03C5\u03C0\u03C9\u03BC\u03AC\u03C4\u03C9\u03BD \u0391\u03C1\u03C7\u03B5\u03AF\u03C9\u03BD Delete\ View=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u038C\u03C8\u03B7\u03C2 Edit\ View=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u038C\u03C8\u03B7\u03C2 NewJob=\u039D\u03AD\u03BF/\u03B1 {0} diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_el.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_el.properties new file mode 100644 index 0000000000..ddc8a9aca6 --- /dev/null +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_el.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +detail=\u039B\u03B5\u03C0\u03C4\u03BF\u03BC\u03AD\u03C1\u03B9\u03B5\u03C2 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_el.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_el.properties new file mode 100644 index 0000000000..dd26f78f4b --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_el.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +sign\ up=\u03B5\u03B3\u03B3\u03C1\u03B1\u03C6\u03AE diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_el.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_el.properties index 95c8a82cb2..f8d9f96a10 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_el.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_el.properties @@ -20,4 +20,4 @@ # 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 Build +Schedule\ a\ build=\u0395\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 \u0394\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_el.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_el.properties index e760a3ac0c..a0f282c32c 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/column_el.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_el.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=\u039C\u03B7 \u0394\u03B9\u03B1\u03B8\u03AD\u03C3\u03B8\u03B9\u03BC\u03BF +N/A=\u039C\u03B7 \u0394\u03B9\u03B1\u03B8\u03AD\u03C3\u03B9\u03BC\u03BF diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_el.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_el.properties new file mode 100644 index 0000000000..c0c9fdee5a --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_el.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=\u039C\u03B7 \u03B5\u03C6\u03B1\u03C1\u03BC\u03CC\u03C3\u03B7\u03BC\u03BF diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_el.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_el.properties index cd938f9d62..0be816c728 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_el.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_el.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03BF\u03C5 Build +Status\ of\ the\ last\ build=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03C4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1\u03C2 \u03B4\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2 diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_el.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_el.properties index 8fc2ed43fe..aa9f0d568c 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_el.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_el.properties @@ -20,4 +20,4 @@ # 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=\u0391\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u03BA\u03B1\u03B9\u03C1\u03BF\u03CD \u03C0\u03BF\u03C5 \u03B4\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9 \u03C4\u03B7 \u03C3\u03C5\u03BD\u03BF\u03BB\u03B9\u03BA\u03AE \u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C4\u03C9\u03BD \u03C4\u03B5\u03BB. Builds +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u0391\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u03BA\u03B1\u03B9\u03C1\u03BF\u03CD \u03C0\u03BF\u03C5 \u03B4\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9 \u03C4\u03B7 \u03C3\u03C5\u03BD\u03BF\u03BB\u03B9\u03BA\u03AE \u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C4\u03C9\u03BD \u03C4\u03B5\u03BB. \u03B4\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03B9\u03CE\u03BD diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_el.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_el.properties new file mode 100644 index 0000000000..3eb4e28aa7 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_el.properties @@ -0,0 +1,3 @@ +# 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/HistoryWidget/entry_el.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_el.properties index 101b4c7a1c..c4ce4a73a7 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_el.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_el.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u03A0\u03B1\u03C1\u03AC\u03B3\u03C9\u03B3\u03B1 \u03A4\u03BF\u03C5 Console +Console\ Output=\u0388\u03BE\u03BF\u03B4\u03BF\u03C2 \u03BA\u03BF\u03BD\u03C3\u03CC\u03BB\u03B1\u03C2 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_el.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_el.properties index ca2c550b38..582d0afdf6 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_el.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_el.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +More\ ...=\u03A0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B1 ... for\ all=\u03B3\u03B9\u03B1 \u03CC\u03BB\u03B1 -for\ failures=\u03B3\u03B9\u03B1 \u03B1\u03C0\u03BF\u03C4\u03C5\u03C7\u03AF\u03B5\u03C2 +for\ failures=\u03B3\u03B9\u03B1 \u03C4\u03B9\u03C2 \u03B1\u03C0\u03BF\u03C4\u03C5\u03C7\u03AF\u03B5\u03C2 trend=\u03C4\u03AC\u03C3\u03B7 diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_el.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_el.properties new file mode 100644 index 0000000000..8f06b2f265 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_el.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Check=\u0388\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 +Check\ File\ Fingerprint=\u0388\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 \u0391\u03C0\u03BF\u03C4\u03C5\u03C0\u03C9\u03BC\u03AC\u03C4\u03C9\u03BD \u0391\u03C1\u03C7\u03B5\u03AF\u03C9\u03BD +File\ to\ check=\u0391\u03C1\u03C7\u03B5\u03AF\u03BF \u03C0\u03C1\u03BF\u03C2 \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF +description=\u0388\u03C7\u03B5\u03C4\u03B5 \u03BA\u03AC\u03C0\u03BF\u03B9\u03BF jar \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF \u03B1\u03BB\u03BB\u03AC \u03B4\u03B5\u03BD \u03BE\u03AD\u03C1\u03B5\u03C4\u03B5 \u03C4\u03BF\u03BD \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC \u03AD\u03BA\u03B4\u03BF\u03C3\u03AE\u03C2 \u03C4\u03BF\u03C5;
\u0392\u03C1\u03B5\u03AF\u03C4\u03B5 \u03C4\u03B7\u03BD \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03BD\u03C4\u03B1\u03C2 \u03C4\u03BF \u03C8\u03B7\u03C6\u03B9\u03B1\u03BA\u03CC \u03B1\u03C0\u03BF\u03C4\u03CD\u03C0\u03C9\u03BC\u03B1 \u03C4\u03BF\u03C5 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5 \u03BA\u03B1\u03B9 \u03C3\u03C5\u03B3\u03BA\u03C1\u03AF\u03BD\u03BF\u03BD\u03C4\u03AC\u03C2 \u03C4\u03BF \u03BC\u03B5 \u03C4\u03B7 \u03B2\u03AC\u03C3\u03B7 \u03B1\u03C0\u03BF\u03C4\u03C5\u03C0\u03C9\u03BC\u03AC\u03C4\u03C9\u03BD \u03C3\u03C4\u03BF Jenkins +fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/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/manage_el.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_el.properties index 1306f563a8..997fce153e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_el.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_el.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Manage\ Jenkins=\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 Jenkins +Prepare\ for\ Shutdown=\u03A0\u03C1\u03BF\u03B5\u03C4\u03BF\u03B9\u03BC\u03B1\u03C3\u03AF\u03B1 \u03B3\u03B9\u03B1 \u03C4\u03B5\u03C1\u03BC\u03B1\u03C4\u03B9\u03C3\u03BC\u03CC \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2 diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_el.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_el.properties new file mode 100644 index 0000000000..aebac6c829 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_el.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Compare=\u03A3\u03CD\u03BA\u03C1\u03B9\u03C3\u03B7 diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_el.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_el.properties new file mode 100644 index 0000000000..bf8e0b8ab3 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_el.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Enabled=\u0395\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF +Environment\ Variables=\u039C\u03B5\u03C4\u03B1\u03B2\u03BB\u03B7\u03C4\u03AD\u03C2 \u03A0\u03B5\u03C1\u03B9\u03B2\u03AC\u03BB\u03BB\u03BF\u03BD\u03C4\u03BF\u03C2 +Name=\u038C\u03BD\u03BF\u03BC\u03B1 +Pinned=\u039A\u03B1\u03C1\u03C6\u03B9\u03C4\u03C3\u03C9\u03BC\u03AD\u03BD\u03BF +Plugins=\u03A0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C4\u03B1 +System\ Properties=\u039C\u03B5\u03C4\u03B1\u03B2\u03BB\u03B7\u03C4\u03AD\u03C2 \u03A3\u03C5\u03C3\u03C4\u03AE\u03BC\u03B1\u03C4\u03BF\u03C2 +Version=\u0388\u03BA\u03B4\u03BF\u03C3\u03B7 diff --git a/core/src/main/resources/lib/form/textarea_el.properties b/core/src/main/resources/lib/form/textarea_el.properties new file mode 100644 index 0000000000..d046263e73 --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_el.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=\u039A\u03C1\u03CD\u03C8\u03B9\u03BC\u03BF \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7\u03C2 +Preview=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7 diff --git a/core/src/main/resources/lib/hudson/executors_el.properties b/core/src/main/resources/lib/hudson/executors_el.properties index ca4535fe71..d9fbd1a557 100644 --- a/core/src/main/resources/lib/hudson/executors_el.properties +++ b/core/src/main/resources/lib/hudson/executors_el.properties @@ -21,5 +21,7 @@ # THE SOFTWARE. Build\ Executor\ Status=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7\u03C2 \u03B4\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03B9\u03CE\u03BD +Building=\u03A7\u03C4\u03AF\u03B6\u03C9 Idle=\u0391\u03BD\u03B5\u03BD\u03B5\u03C1\u03B3\u03CC Status=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 +terminate\ this\ build=\u03A3\u03C4\u03B1\u03BC\u03AC\u03C4\u03B7\u03C3\u03B5 \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03C7\u03C4\u03AF\u03C3\u03B9\u03BC\u03BF diff --git a/core/src/main/resources/lib/hudson/propertyTable_el.properties b/core/src/main/resources/lib/hudson/propertyTable_el.properties new file mode 100644 index 0000000000..be1ae0bbb2 --- /dev/null +++ b/core/src/main/resources/lib/hudson/propertyTable_el.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Name=\u038C\u03BD\u03BF\u03BC\u03B1 +Value=\u03A4\u03B9\u03BC\u03AE diff --git a/core/src/main/resources/lib/hudson/queue_el.properties b/core/src/main/resources/lib/hudson/queue_el.properties index 5bb3aff0a9..224d3847b2 100644 --- a/core/src/main/resources/lib/hudson/queue_el.properties +++ b/core/src/main/resources/lib/hudson/queue_el.properties @@ -22,3 +22,4 @@ Build\ Queue=\u039F\u03C5\u03C1\u03AC \u03B4\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03B9\u03CE\u03BD No\ builds\ in\ the\ queue.=\u0394\u03B5\u03BD \u03C5\u03C0\u03AC\u03C1\u03C7\u03BF\u03C5\u03BD \u03B4\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B5\u03C2 \u03B5\u03BD \u03B1\u03BD\u03B1\u03BC\u03BF\u03BD\u03AE +WaitingFor=\u0391\u03BD\u03B1\u03BC\u03BF\u03BD\u03AE \u03B3\u03B9\u03B1 {0} diff --git a/core/src/main/resources/lib/hudson/rssBar_el.properties b/core/src/main/resources/lib/hudson/rssBar_el.properties index 57e2a294f5..538db6d7f1 100644 --- a/core/src/main/resources/lib/hudson/rssBar_el.properties +++ b/core/src/main/resources/lib/hudson/rssBar_el.properties @@ -23,4 +23,4 @@ Legend=\u03A5\u03C0\u03CC\u03BC\u03BD\u03B7\u03BC\u03B1 for\ all=\u03B3\u03B9\u03B1 \u03CC\u03BB\u03B1 for\ failures=\u03B3\u03B9\u03B1 \u03C4\u03B9\u03C2 \u03B1\u03C0\u03BF\u03C4\u03C5\u03C7\u03AF\u03B5\u03C2 -for\ just\ latest\ builds=\u03B3\u03B9\u03B1 \u03C4\u03B1 \u03C4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1 Build +for\ just\ latest\ builds=\u03BC\u03BF\u03BD\u03BF \u03B3\u03B9\u03B1 \u03C4\u03B9\u03C2 \u03C0\u03C1\u03CC\u03C3\u03C6\u03B1\u03C4\u03B5\u03C2 \u03B4\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B5\u03C2 diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_el.properties b/core/src/main/resources/lib/layout/breadcrumbBar_el.properties new file mode 100644 index 0000000000..4c0bfff064 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_el.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=\u0386\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7\u03C2 \u03B1\u03BD\u03B1\u03BD\u03AD\u03C9\u03C3\u03B7\u03C2 + +ENABLE\ AUTO\ REFRESH=\u0395\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7\u03C2 \u03B1\u03BD\u03B1\u03BD\u03AD\u03C9\u03C3\u03B7\u03C2 diff --git a/core/src/main/resources/lib/layout/progressiveRendering_el.properties b/core/src/main/resources/lib/layout/progressiveRendering_el.properties new file mode 100644 index 0000000000..9732ea3e9e --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_el.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=\u03A5\u03C0\u03BF\u03BB\u03BF\u03B3\u03B9\u03C3\u03BC\u03CC\u03C2 \u03C3\u03B5 \u03B5\u03BE\u03AD\u03BB\u03B9\u03BE\u03B7 -- GitLab From 7918698cd5071d0c5651f9dbb87ac4b99a979d6c Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:55 -0700 Subject: [PATCH 038/308] Community-contributed localization for en_GB (en_GB) --- .../confirmDeleteAll_en_GB.properties | 3 +++ .../model/AbstractBuild/index_en_GB.properties | 4 ++++ .../model/AbstractBuild/tasks_en_GB.properties | 3 +++ .../AbstractProject/sidepanel_en_GB.properties | 6 ++++++ .../hudson/model/AllView/noJob_en_GB.properties | 3 +++ .../model/ComputerSet/index_en_GB.properties | 3 +++ .../config_en_GB.properties | 3 +++ .../hudson/model/Run/console_en_GB.properties | 3 +++ .../hudson/model/Run/delete_en_GB.properties | 3 +++ .../hudson/model/View/sidepanel_en_GB.properties | 3 +++ .../SecurityRealm/loginLink_en_GB.properties | 3 +++ .../tools/JDKInstaller/config_en_GB.properties | 3 +++ .../columnHeader_en_GB.properties | 3 +++ .../columnHeader_en_GB.properties | 3 +++ .../columnHeader_en_GB.properties | 3 +++ .../model/Jenkins/legend_en_GB.properties | 16 ++++++++++++++++ .../model/Jenkins/manage_en_GB.properties | 3 +++ .../lib/hudson/buildHealth_en_GB.properties | 3 +++ .../lib/hudson/buildListTable_en_GB.properties | 3 +++ .../lib/hudson/buildProgressBar_en_GB.properties | 3 +++ .../resources/lib/hudson/queue_en_GB.properties | 3 +++ .../lib/layout/breadcrumbBar_en_GB.properties | 2 ++ .../resources/lib/layout/layout_en_GB.properties | 5 +++++ 23 files changed, 87 insertions(+) create mode 100644 core/src/main/resources/hudson/matrix/MatrixBuild/confirmDeleteAll_en_GB.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_en_GB.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_en_GB.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_en_GB.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_en_GB.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/index_en_GB.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_en_GB.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_en_GB.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_en_GB.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_en_GB.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_en_GB.properties create mode 100644 core/src/main/resources/hudson/tools/JDKInstaller/config_en_GB.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_en_GB.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_en_GB.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_en_GB.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/legend_en_GB.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/manage_en_GB.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_en_GB.properties create mode 100644 core/src/main/resources/lib/hudson/buildListTable_en_GB.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_en_GB.properties create mode 100644 core/src/main/resources/lib/hudson/queue_en_GB.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_en_GB.properties create mode 100644 core/src/main/resources/lib/layout/layout_en_GB.properties diff --git a/core/src/main/resources/hudson/matrix/MatrixBuild/confirmDeleteAll_en_GB.properties b/core/src/main/resources/hudson/matrix/MatrixBuild/confirmDeleteAll_en_GB.properties new file mode 100644 index 0000000000..f3fff89198 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixBuild/confirmDeleteAll_en_GB.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +cannotMsg=Cannot delete the build, because it is locked. 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 new file mode 100644 index 0000000000..abc5f950a5 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_en_GB.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build\ Artifacts=Build Artefacts +startedAgo=Started {0} ago diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_en_GB.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_en_GB.properties new file mode 100644 index 0000000000..2e7008acbf --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_en_GB.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +View\ as\ plain\ text=View as plain test diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_en_GB.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_en_GB.properties new file mode 100644 index 0000000000..f1e1ae447b --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_en_GB.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Wipe\ Out\ Workspace=Wipe Out Current Workspace +delete=Delete {0} +delete.confirm=Are you sure about deleting the {0} \u2018{1}\u2019? +wipe.out.confirm=Are you sure about wiping out the workspace? diff --git a/core/src/main/resources/hudson/model/AllView/noJob_en_GB.properties b/core/src/main/resources/hudson/model/AllView/noJob_en_GB.properties new file mode 100644 index 0000000000..b8d8a84650 --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_en_GB.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +newJob=Please
create new jobs to get started. diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_en_GB.properties b/core/src/main/resources/hudson/model/ComputerSet/index_en_GB.properties new file mode 100644 index 0000000000..b06765c31e --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/index_en_GB.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Data\ obtained=last checked diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_en_GB.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_en_GB.properties new file mode 100644 index 0000000000..76261e71cd --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_en_GB.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +This\ build\ is\ parameterized=This build is parameterised diff --git a/core/src/main/resources/hudson/model/Run/console_en_GB.properties b/core/src/main/resources/hudson/model/Run/console_en_GB.properties new file mode 100644 index 0000000000..c79815e584 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_en_GB.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +skipSome=Skipping {0,number,integer} KB.. Full Log diff --git a/core/src/main/resources/hudson/model/Run/delete_en_GB.properties b/core/src/main/resources/hudson/model/Run/delete_en_GB.properties new file mode 100644 index 0000000000..13f6c6b577 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_en_GB.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete\ this\ build=Delete Build diff --git a/core/src/main/resources/hudson/model/View/sidepanel_en_GB.properties b/core/src/main/resources/hudson/model/View/sidepanel_en_GB.properties new file mode 100644 index 0000000000..3dcdab5819 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_en_GB.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +NewJob=New {0} diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_en_GB.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_en_GB.properties new file mode 100644 index 0000000000..30b1d051c7 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_en_GB.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +login=log in diff --git a/core/src/main/resources/hudson/tools/JDKInstaller/config_en_GB.properties b/core/src/main/resources/hudson/tools/JDKInstaller/config_en_GB.properties new file mode 100644 index 0000000000..b68ce95323 --- /dev/null +++ b/core/src/main/resources/hudson/tools/JDKInstaller/config_en_GB.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +I\ agree\ to\ the\ Java\ SE\ Development\ Kit\ License\ Agreement=I agree to the Java SE Development Kit Licence Agreement 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 new file mode 100644 index 0000000000..09f2e20a2a --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_en_GB.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + + 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 new file mode 100644 index 0000000000..09f2e20a2a --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_en_GB.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + + 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 new file mode 100644 index 0000000000..09f2e20a2a --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_en_GB.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + + diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_en_GB.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_en_GB.properties new file mode 100644 index 0000000000..f5853ed86d --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_en_GB.properties @@ -0,0 +1,16 @@ +# This file is under the MIT License by authors + +blue=The last build was successful. +blue_anime=The last build was successful. A new build is in progress. +grey=The project has never been built before, or the project is disabled. +grey_anime=The first build of the project is in progress. +health-00to20=Project health is 20% or less. You can hover the mouse over the project''''s icon for a more detailed explanation. +health-21to40=Project health is over 20% and up to 40%. You can hover the mouse over the project''''s icon for a more detailed explanation. +health-41to60=Project health is over 40% and up to 60%. You can hover the mouse over the project''''s icon for a more detailed explanation. +health-61to80=Project health is over 60% and up to 80%. You can hover the mouse over the project''''s icon for a more detailed explanation. +health-81plus=Project health is over 80%. You can hover the mouse over the project''''s icon for a more detailed explanation. +red=The last build fatally failed. +red_anime=The last build fatally failed. A new build is in progress. +yellow=The last build was successful but unstable.This is primarily used to represent test failures. +yellow_anime=The last build was successful but unstable. A new build is in progress. + diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_en_GB.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_en_GB.properties new file mode 100644 index 0000000000..067fbd2a49 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_en_GB.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +LoadStatisticsText=Check your resource utilisation and see if you need more computers for your builds. diff --git a/core/src/main/resources/lib/hudson/buildHealth_en_GB.properties b/core/src/main/resources/lib/hudson/buildHealth_en_GB.properties new file mode 100644 index 0000000000..09f2e20a2a --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_en_GB.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + + diff --git a/core/src/main/resources/lib/hudson/buildListTable_en_GB.properties b/core/src/main/resources/lib/hudson/buildListTable_en_GB.properties new file mode 100644 index 0000000000..2328797f89 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildListTable_en_GB.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Click\ to\ center\ timeline\ on\ event=Click to centre timeline on event diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_en_GB.properties b/core/src/main/resources/lib/hudson/buildProgressBar_en_GB.properties new file mode 100644 index 0000000000..4e0e6abea8 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_en_GB.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +text=Started {0} ago
Estimated remaining time: {1} diff --git a/core/src/main/resources/lib/hudson/queue_en_GB.properties b/core/src/main/resources/lib/hudson/queue_en_GB.properties new file mode 100644 index 0000000000..03d2689798 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_en_GB.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +WaitingFor=Waiting for {0} diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_en_GB.properties b/core/src/main/resources/lib/layout/breadcrumbBar_en_GB.properties new file mode 100644 index 0000000000..bb8820eb9b --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_en_GB.properties @@ -0,0 +1,2 @@ +# This file is under the MIT License by authors + diff --git a/core/src/main/resources/lib/layout/layout_en_GB.properties b/core/src/main/resources/lib/layout/layout_en_GB.properties new file mode 100644 index 0000000000..cbef4857d1 --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_en_GB.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +logout=log out +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box + -- GitLab From b1da289b4849de2a1b2ff65ca5dbaec7f2f9aee7 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:55 -0700 Subject: [PATCH 039/308] Community-contributed localization for Esperanto (eo) --- .../hudson/model/AbstractBuild/tasks_eo.properties | 2 ++ .../resources/hudson/model/AllView/noJob_eo.properties | 4 ++++ .../hudson/model/Computer/sidepanel_eo.properties | 3 +++ .../main/resources/hudson/model/View/newJob_eo.properties | 4 ++++ .../hudson/security/SecurityRealm/loginLink_eo.properties | 3 +++ .../hudson/slaves/SlaveComputer/sidepanel2_eo.properties | 3 +++ .../tasks/test/MetaTabulatedResult/body_eo.properties | 7 +++++++ .../hudson/tasks/test/TestObject/sidepanel_eo.properties | 4 ++++ .../hudson/tasks/test/TestResult/index_eo.properties | 3 +++ .../resources/lib/hudson/editableDescription_eo.properties | 1 + core/src/main/resources/lib/hudson/executors_eo.properties | 1 + .../main/resources/lib/layout/breadcrumbBar_eo.properties | 4 ++++ core/src/main/resources/lib/layout/layout_eo.properties | 2 +- core/src/main/resources/lib/test/bar_eo.properties | 4 ++++ 14 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_eo.properties create mode 100644 core/src/main/resources/hudson/model/Computer/sidepanel_eo.properties create mode 100644 core/src/main/resources/hudson/model/View/newJob_eo.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_eo.properties create mode 100644 core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_eo.properties create mode 100644 core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_eo.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_eo.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResult/index_eo.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_eo.properties create mode 100644 core/src/main/resources/lib/test/bar_eo.properties diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_eo.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_eo.properties index fd980c3ee6..ea69c6af22 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_eo.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_eo.properties @@ -23,6 +23,8 @@ 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/AllView/noJob_eo.properties b/core/src/main/resources/hudson/model/AllView/noJob_eo.properties new file mode 100644 index 0000000000..552e672d51 --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_eo.properties @@ -0,0 +1,4 @@ +# 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/Computer/sidepanel_eo.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_eo.properties new file mode 100644 index 0000000000..0c86aa471d --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_eo.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete\ Slave=Nuligi sklavon diff --git a/core/src/main/resources/hudson/model/View/newJob_eo.properties b/core/src/main/resources/hudson/model/View/newJob_eo.properties new file mode 100644 index 0000000000..4523bfe248 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/newJob_eo.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +CopyExisting=Kopiu existan {0}n +JobName=Nomo de {0} diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_eo.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_eo.properties new file mode 100644 index 0000000000..b9027c72cd --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_eo.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +login=Ensaluti diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_eo.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_eo.properties new file mode 100644 index 0000000000..0e738b9d27 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_eo.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +System\ Information=Sisteminformacio diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_eo.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_eo.properties new file mode 100644 index 0000000000..7fc2c55319 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_eo.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +All\ Tests=\u0108iuj provoj +Duration=Da\u016Dro +Fail=Malsukceso +Total=Sumo +diff=dif diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_eo.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_eo.properties new file mode 100644 index 0000000000..d9b41d481e --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_eo.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +History=Kronologio +Previous\ Build=Anta\u016Da konstruo diff --git a/core/src/main/resources/hudson/tasks/test/TestResult/index_eo.properties b/core/src/main/resources/hudson/tasks/test/TestResult/index_eo.properties new file mode 100644 index 0000000000..aae62d6f65 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResult/index_eo.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +took=Da\u016Dris {0}. diff --git a/core/src/main/resources/lib/hudson/editableDescription_eo.properties b/core/src/main/resources/lib/hudson/editableDescription_eo.properties index d67842200a..0825683abc 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_eo.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_eo.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +add\ description=aldonu priskribon edit\ description=redakti priscribon diff --git a/core/src/main/resources/lib/hudson/executors_eo.properties b/core/src/main/resources/lib/hudson/executors_eo.properties index 261ae13943..037db5515c 100644 --- a/core/src/main/resources/lib/hudson/executors_eo.properties +++ b/core/src/main/resources/lib/hudson/executors_eo.properties @@ -23,3 +23,4 @@ Build\ Executor\ Status=Statuso de la konstrua efektivigilo Idle=Neaktiva Status=Statuso +terminate\ this\ build=nuligi tion \u0109i konstruon diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_eo.properties b/core/src/main/resources/lib/layout/breadcrumbBar_eo.properties new file mode 100644 index 0000000000..ace0bbb49c --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_eo.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=DISIGU A\u016CTOMATAN AKTUALIGON +ENABLE\ AUTO\ REFRESH=EBLIGU A\u016CTOMATAN AKTUALIGON diff --git a/core/src/main/resources/lib/layout/layout_eo.properties b/core/src/main/resources/lib/layout/layout_eo.properties index c3dca82c40..d8dc61d988 100644 --- a/core/src/main/resources/lib/layout/layout_eo.properties +++ b/core/src/main/resources/lib/layout/layout_eo.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. ENABLE\ AUTO\ REFRESH=ebligi automatan refre\u015Digon -Page\ generated=Pa\u011Do produktita +Page\ generated=Pa\u011Do estas produktita logout=elsaluti search=ser\u0109i searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/core/src/main/resources/lib/test/bar_eo.properties b/core/src/main/resources/lib/test/bar_eo.properties new file mode 100644 index 0000000000..1d0d831819 --- /dev/null +++ b/core/src/main/resources/lib/test/bar_eo.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +failures={0} malsukcesoj +tests={0} provoj -- GitLab From 68890bb641cb587b7b73b032310b2a725a05c3ec Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:55 -0700 Subject: [PATCH 040/308] Community-contributed localization for Spanish; Castilian (es) --- .../hudson/AboutJenkins/index_es.properties | 2 +- .../hudson/PluginManager/installed_es.properties | 1 + .../hudson/PluginManager/table_es.properties | 4 ++-- .../OldDataMonitor/message_es.properties | 3 +-- .../message_es.properties | 2 +- .../message_es_AR.properties | 3 +++ .../LogRecorderManager/sidepanel_es.properties | 2 +- .../matrix/MatrixProject/index_es.properties | 2 +- .../model/AbstractBuild/index_es.properties | 6 +++--- .../model/AbstractBuild/sidepanel_es.properties | 4 ++-- .../AbstractBuild/sidepanel_es_AR.properties | 3 +++ .../model/AbstractBuild/tasks_es.properties | 15 +++++++++------ .../model/AbstractBuild/tasks_es_AR.properties | 10 ++++++++++ .../model/AbstractItem/noWorkspace_es.properties | 2 +- .../AbstractProject/changes_es_AR.properties | 3 +++ .../model/AbstractProject/main_es.properties | 2 +- .../model/AbstractProject/main_es_AR.properties | 3 +++ .../AbstractProject/sidepanel_es.properties | 13 +++++++------ .../AbstractProject/sidepanel_es_AR.properties | 10 ++++++++++ .../hudson/model/AllView/noJob_es.properties | 2 +- .../hudson/model/AllView/noJob_es_AR.properties | 4 ++++ .../UpstreamCause/description_es.properties | 2 +- .../Cause/UserIdCause/description_es.properties | 4 ++-- .../hudson/model/Computer/index_es.properties | 5 +++-- .../model/Computer/sidepanel_es_AR.properties | 3 +++ .../hudson/model/ComputerSet/index_es.properties | 2 +- .../DirectoryBrowserSupport/dir_es.properties | 2 +- .../model/Job/buildTimeTrend_es_AR.properties | 4 ++++ .../hudson/model/Job/configure_es.properties | 1 + .../hudson/model/Job/configure_es_AR.properties | 6 ++++++ .../hudson/model/Job/index_es.properties | 1 + .../hudson/model/Job/index_es_AR.properties | 3 +++ .../hudson/model/Job/permalinks_es.properties | 2 +- .../hudson/model/Job/permalinks_es_AR.properties | 3 +++ .../model/ParametersAction/index_es.properties | 2 +- .../index_es.properties | 2 +- .../Permalink/link_es.properties | 2 +- .../hudson/model/Run/console_es.properties | 2 +- .../hudson/model/Run/console_es_AR.properties | 4 ++++ .../hudson/model/Run/delete_es.properties | 2 +- .../hudson/model/Run/logKeep_es.properties | 2 +- .../ConnectionCheckJob/row_es.properties | 2 +- .../ConnectionCheckJob/row_es_AR.properties | 3 +++ .../Installing/status_es_AR.properties | 3 +++ .../DownloadJob/Pending/status_es_AR.properties | 3 +++ .../Pending/status_es_AR.properties | 3 +++ .../RestartJenkinsJob/row_es_AR.properties | 3 +++ .../hudson/model/UpdateCenter/body_es.properties | 6 +++--- .../model/UpdateCenter/body_es_AR.properties | 4 ++++ .../model/UpdateCenter/index_es_AR.properties | 3 +++ .../UpdateCenter/sidepanel_es_AR.properties | 5 +++++ .../hudson/model/User/builds_es.properties | 2 +- .../hudson/model/User/index_es.properties | 2 +- .../model/View/AsynchPeople/index_es.properties | 1 + .../View/AsynchPeople/index_es_AR.properties | 6 ++++++ .../hudson/model/View/People/index_es.properties | 3 +++ .../model/View/People/index_es_AR.properties | 6 ++++++ .../hudson/model/View/newJob_es.properties | 4 ++-- .../hudson/model/View/sidepanel_es.properties | 10 +++++----- .../hudson/model/View/sidepanel_es_AR.properties | 9 +++++++++ .../scm/SCM/project-changes_es_AR.properties | 3 +++ .../index_es.properties | 2 +- .../loginLink_es.properties | 2 +- .../loginLink_es_AR.properties | 3 +++ .../LegacySecurityRealm/config_es.properties | 4 ++++ .../SecurityRealm/loginLink_es.properties | 2 +- .../SecurityRealm/loginLink_es_AR.properties | 3 +++ .../config_es_AR.properties | 4 ++++ .../tasks/LogRotator/config_es_AR.properties | 3 +++ .../test/MetaTabulatedResult/body_es.properties | 2 +- .../floatingBox_es.properties | 6 +++--- .../floatingBox_es_AR.properties | 5 +++++ .../config_es.properties | 2 +- .../config_es_AR.properties | 4 ++++ .../views/BuildButtonColumn/column_es.properties | 4 +++- .../BuildButtonColumn/column_es_AR.properties | 4 ++++ .../DefaultViewsTabBar/viewTabs_es_AR.properties | 3 +++ .../columnHeader_es.properties | 2 +- .../columnHeader_es_AR.properties | 3 +++ .../LastFailureColumn/columnHeader_es.properties | 2 +- .../columnHeader_es_AR.properties | 3 +++ .../LastFailureColumn/column_es_AR.properties | 3 +++ .../LastSuccessColumn/columnHeader_es.properties | 2 +- .../columnHeader_es_AR.properties | 3 +++ .../StatusColumn/columnHeader_es.properties | 2 +- .../StatusColumn/columnHeader_es_AR.properties | 3 +++ .../WeatherColumn/columnHeader_es.properties | 2 +- .../WeatherColumn/columnHeader_es_AR.properties | 3 +++ .../widgets/HistoryWidget/entry_es.properties | 2 +- .../widgets/HistoryWidget/entry_es_AR.properties | 3 +++ .../widgets/HistoryWidget/index_es.properties | 8 ++++---- .../widgets/HistoryWidget/index_es_AR.properties | 5 +++++ .../SecurityIsOffMonitor/message_es.properties | 4 ++++ .../management/PluginsLink/info_es.properties | 2 +- .../model/Jenkins/configure_es.properties | 6 +++--- .../model/Jenkins/configure_es_AR.properties | 5 +++++ .../jenkins/model/Jenkins/legend_es.properties | 16 ++++++++-------- .../model/Jenkins/loginError_es.properties | 2 +- .../jenkins/model/Jenkins/login_es.properties | 2 +- .../jenkins/model/Jenkins/manage_es.properties | 7 +++++++ .../model/Jenkins/manage_es_AR.properties | 9 +++++++++ .../projectRelationship-help_es.properties | 6 +----- .../resources/lib/form/advanced_es_AR.properties | 3 +++ .../form/breadcrumb-config-outline_es.properties | 2 +- .../breadcrumb-config-outline_es_AR.properties | 3 +++ .../resources/lib/form/helpArea_es_AR.properties | 3 +++ .../form/repeatableDeleteButton_es_AR.properties | 3 +++ .../lib/form/repeatable_es_AR.properties | 3 +++ .../resources/lib/form/textarea_es.properties | 4 ++-- .../resources/lib/form/textarea_es_AR.properties | 4 ++++ .../lib/hudson/buildCaption_es.properties | 2 +- .../lib/hudson/buildCaption_es_AR.properties | 4 ++++ .../lib/hudson/buildHealth_es_AR.properties | 3 +++ .../lib/hudson/buildListTable_es.properties | 4 ++-- .../lib/hudson/buildProgressBar_es_AR.properties | 3 +++ .../lib/hudson/editableDescription_es.properties | 2 +- .../hudson/editableDescription_es_AR.properties | 4 ++++ .../resources/lib/hudson/executors_es.properties | 4 ++-- .../lib/hudson/executors_es_AR.properties | 9 +++++++++ .../resources/lib/hudson/iconSize_es.properties | 2 +- .../lib/hudson/iconSize_es_AR.properties | 3 +++ .../resources/lib/hudson/queue_es.properties | 6 +++--- .../resources/lib/hudson/queue_es_AR.properties | 5 +++++ .../resources/lib/hudson/rssBar_es.properties | 8 ++++---- .../resources/lib/hudson/rssBar_es_AR.properties | 6 ++++++ .../lib/hudson/test-result_es.properties | 4 ++-- .../lib/hudson/test-result_es_AR.properties | 3 +++ .../lib/layout/breadcrumbBar_es.properties | 5 +++-- .../lib/layout/breadcrumbBar_es_AR.properties | 3 +++ .../resources/lib/layout/layout_es.properties | 8 ++++---- .../resources/lib/layout/layout_es_AR.properties | 5 ++++- .../layout/progressiveRendering_es.properties | 3 +++ .../layout/progressiveRendering_es_AR.properties | 3 +++ .../main/resources/lib/layout/task_es.properties | 3 +++ .../main/resources/lib/test/bar_es.properties | 4 ++-- 135 files changed, 399 insertions(+), 121 deletions(-) create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/changes_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/Computer/sidepanel_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/Job/buildTimeTrend_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/Job/configure_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/Job/permalinks_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/index_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/sidepanel_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/View/AsynchPeople/index_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_es.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_es_AR.properties create mode 100644 core/src/main/resources/hudson/scm/SCM/project-changes_es_AR.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_es_AR.properties create mode 100644 core/src/main/resources/hudson/security/LegacySecurityRealm/config_es.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_es_AR.properties create mode 100644 core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_es_AR.properties create mode 100644 core/src/main/resources/hudson/tasks/LogRotator/config_es_AR.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_es_AR.properties create mode 100644 core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_es_AR.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_es_AR.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_es_AR.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_es_AR.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_es_AR.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_es_AR.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_es_AR.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_es_AR.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_es_AR.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_es_AR.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_es_AR.properties create mode 100644 core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_es.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/configure_es_AR.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/manage_es_AR.properties create mode 100644 core/src/main/resources/lib/form/advanced_es_AR.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_es_AR.properties create mode 100644 core/src/main/resources/lib/form/helpArea_es_AR.properties create mode 100644 core/src/main/resources/lib/form/repeatableDeleteButton_es_AR.properties create mode 100644 core/src/main/resources/lib/form/repeatable_es_AR.properties create mode 100644 core/src/main/resources/lib/form/textarea_es_AR.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_es_AR.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_es_AR.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_es_AR.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_es_AR.properties create mode 100644 core/src/main/resources/lib/hudson/executors_es_AR.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_es_AR.properties create mode 100644 core/src/main/resources/lib/hudson/queue_es_AR.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_es_AR.properties create mode 100644 core/src/main/resources/lib/hudson/test-result_es_AR.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_es_AR.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_es.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_es_AR.properties create mode 100644 core/src/main/resources/lib/layout/task_es.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_es.properties b/core/src/main/resources/hudson/AboutJenkins/index_es.properties index b447817027..c86fbea162 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_es.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_es.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -about=Sobre Jenkins {0} +about=Acerca de Jenkins {0} blurb=Jenkins un servidor de Integraci\u00F3n Cont\u00EDnua, de c\u00F3digo abierto y desarrollado en comunidad. dependencies=Jenkins depende de las siguientes librerias de terceros. diff --git a/core/src/main/resources/hudson/PluginManager/installed_es.properties b/core/src/main/resources/hudson/PluginManager/installed_es.properties index 728193fad0..70956f31d1 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_es.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_es.properties @@ -31,5 +31,6 @@ wiki.url="http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins" downgradeTo=Bajar a la version {0}. Previously\ installed\ version=Versión previamente instalada. Pinned=marcado +Uninstall=Desinstalar Unpin=desmarcar Update\ Center=Centro de actualizaciones diff --git a/core/src/main/resources/hudson/PluginManager/table_es.properties b/core/src/main/resources/hudson/PluginManager/table_es.properties index 053d1d3d49..12f2612c94 100644 --- a/core/src/main/resources/hudson/PluginManager/table_es.properties +++ b/core/src/main/resources/hudson/PluginManager/table_es.properties @@ -34,7 +34,7 @@ Installed=Instalado Name=Nombre Install=Instalar Click\ this\ heading\ to\ sort\ by\ category=Pulse sobre este encabezado para ordenar por categoría -Download\ now\ and\ install\ after\ restart=Descargar ahora e instalar después de reiniciar +Download\ now\ and\ install\ after\ restart=Descargar ahora e instalar despu\u00E9s de reiniciar Update\ Center=Centro de actualizadiones -Filter=Filtro +Filter=Filtrar Install\ without\ restart=Instalar sin reiniciar diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_es.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_es.properties index 7c746c03a0..e46c315fe3 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_es.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_es.properties @@ -20,8 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.= \ - Existen datos ilegibles, o guardados con un formato antiguo. +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Existen datos ilegibles o guardados con un formato antiguo. Manage=Administrar Dismiss=Ignorar diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_es.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_es.properties index ecf5bb1824..2ee41b3df4 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_es.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_es.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=Cerrar +Dismiss=Ocultar More\ Info=Más información # It appears that your reverse proxy set up is broken. blurb=Parece que la configuración de proxy inverso está mal diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_es_AR.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_es_AR.properties new file mode 100644 index 0000000000..82febec47d --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +More\ Info=Mas informaci\u00F3n diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_es.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_es.properties index c10d08c791..9d93ab0551 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_es.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_es.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Volver al Panel de control +Back\ to\ Dashboard=Volver al Panel de Control Manage\ Jenkins=Administrar Jenkins Logger\ List=Lista de Loggers All\ Logs=Todos los Logs diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_es.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_es.properties index d43eca3ec7..4d9b48e1ca 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/index_es.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_es.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Project=Proyecto -Latest\ Test\ Result=\u00daltimo resultado de test +Latest\ Test\ Result=Ultimo resultado de pruebas Project\ name=Nombre de proyecto diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_es.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_es.properties index bc1daacf73..eaa36e51d8 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_es.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_es.properties @@ -21,11 +21,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Artifacts=Ficheros guardados +Build=Compilar +Build\ Artifacts=Artefactos Generados startedAgo=Comenzó hace {0} none=ninguno Failed\ to\ determine=Imposible de determinar -Build=Proyecto Upstream\ Builds=Proyectos padres Not\ yet\ determined=Sin determinar Took=Tardó @@ -34,4 +34,4 @@ on=en detail=detalles Downstream\ Builds=Proyectos hijos log=log -beingExecuted=El trabajo se está ejecutando en {0} +beingExecuted=Compilaci\u00F3n siendo ejecutada desde diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_es.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_es.properties index ecf92f1a4c..42e0cd164a 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_es.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Previous\ Build=Ejecuci\u00F3n previa -Next\ Build=Ejecución siguiente +Previous\ Build=Proyecto anterior +Next\ Build=Proyecto siguiente diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_es_AR.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_es_AR.properties new file mode 100644 index 0000000000..9271e15bc7 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Previous\ Build=Anterior compilaci\u00F3n diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_es.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_es.properties index 45e9ece3aa..13c4103937 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_es.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_es.properties @@ -21,10 +21,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Salida de consola -Back\ to\ Project=Volver al Proyecto +Console\ Output=Salida de Consola +Back\ to\ Project=Volver al proyecto Changes=Cambios -Edit\ Build\ Information=Editar informaci\u00F3n de compilaci\u00F3n -Status=Estado -raw=crudo (raw) -View\ as\ plain\ text=Mostrar en texto plano +Edit\ Build\ Information=Editar informaci\u00F3n de la ejecuci\u00F3n +Status=Estatus +View\ Build\ Information=Ver informaci\u00F3n de proyecto +Iniciado por GitHub +Iniciado por GitHub +View\ as\ plain\ text=Mostrar como texto plano +raw= diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_es_AR.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_es_AR.properties new file mode 100644 index 0000000000..62ca6ac6fd --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_es_AR.properties @@ -0,0 +1,10 @@ +# This file is under the MIT License by authors + +Back\ to\ Project=Vuelta al Proyecto +Changes=Cambios +Console\ Output=Salida de Consola +Edit\ Build\ Information=Editar informaci\u00F3n de compilaci\u00F3n +Status=Estado +View\ Build\ Information=Ver Informacion de Compilacion +View\ as\ plain\ text=Ver como texto plano +raw=Cruda 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 99115b05ad..fc9d13524e 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_es.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_es.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are:=No hay un espacio de trabajo para este proyecto. Las posibles razones son: li3=El directorio de trabajo ({0}) se moverá fuera de Jenkins. text=Lanzar una ejecución para que Jenkins cree el directorio de trabajo. There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=No hay espacio de trabajo para este proyecto, las causas posibles son: @@ -28,5 +29,4 @@ 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 -A\ project\ won''t\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=Una tarea no tiene espacio de trabajo hasta que se ejecute por primera vez 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/AbstractProject/changes_es_AR.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_es_AR.properties new file mode 100644 index 0000000000..033faf0170 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=Cambios diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_es.properties b/core/src/main/resources/hudson/model/AbstractProject/main_es.properties index 915b8b83d7..fdc9ab4578 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_es.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_es.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Workspace=Espacio de trabajo -Last\ Successful\ Artifacts=\u00DAltima Ejecuci\u00F3n Exitosa +Last\ Successful\ Artifacts=\u00DAltima ejecuci\u00F3n correcta Recent\ Changes=Cambios recientes Latest\ Test\ Result=Últimos resultados de tests Latest\ Aggregated\ Test\ Result=Últimos resultados agregados de tests diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_es_AR.properties b/core/src/main/resources/hudson/model/AbstractProject/main_es_AR.properties new file mode 100644 index 0000000000..44226ea8cf --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Recent\ Changes=Cambios Recientes diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_es.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_es.properties index 74bd81c865..5e1c56b952 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_es.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_es.properties @@ -20,13 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ scheduled=Ejecuci\u00f3n agendada +Build\ scheduled=Ejecuci\u00F3n planificada Changes=Cambios Configure=Configurar -Status=Estado -Wipe\ Out\ Workspace=Limpiar el Espacio de trabajo corriente -Workspace=Espacio de trabajo +Status=Estado Actual +Wipe\ Out\ Workspace=Limpiar el espacio de trabajo +Workspace=Zona de Trabajo delete=Borrar {0} -View\ Configuration=Ver la configuraci\u00f3n -Back\ to\ Dashboard=Volver al Panel de control +View\ Configuration=Ver Configuraci\u00F3n +Back\ to\ Dashboard=Volver al Panel de Control +delete.confirm=Est\u00E1s seguro de querer borrar el {0} `{1}\u00B4 wipe.out.confirm=\u00bfEst\u00e1s seguro de que quieres limpiar el espacio de trabajo? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_es_AR.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_es_AR.properties new file mode 100644 index 0000000000..6b9247db3a --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_es_AR.properties @@ -0,0 +1,10 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=Volver al Dashboard +Build\ scheduled=Construcci\u00F3n agendada +Changes=Cambios +Configure=Configurar +Status=Estado +Wipe\ Out\ Workspace=Limpiar espacio de trabajo +Workspace=Espacio de trabajo +delete=Eliminar {0} diff --git a/core/src/main/resources/hudson/model/AllView/noJob_es.properties b/core/src/main/resources/hudson/model/AllView/noJob_es.properties index fd6f16a4e7..7b9fbb90aa 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_es.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_es.properties @@ -26,6 +26,6 @@ login=Entra para crear nuevas tareas. signup=Si no tienes una cuenta, puedes crear una ahora. newJob=Por favor, crea una nueva tarea para empezar. -Welcome\ to\ Jenkins!=Bienvenido a Jenkins! +Welcome\ to\ Jenkins!=\u00A1Bienvenido a Jenkins! signup=Registrarse diff --git a/core/src/main/resources/hudson/model/AllView/noJob_es_AR.properties b/core/src/main/resources/hudson/model/AllView/noJob_es_AR.properties new file mode 100644 index 0000000000..45a6de1627 --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_es_AR.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Welcome\ to\ Jenkins!=Bienvenido a Jenkins! +newJob=Por favor crea un nuevo trabajo para comenzar. diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_es.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_es.properties index 7304fe676e..b7928e8c9c 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_es.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_es.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. -started_by_project=Lanzado por la ejecución número {1} del proyecto padre: {0} +started_by_project=Lanzado por la ejecuci\u00F3n n\u00FAmero {1} de la compilaci\u00F3n padre: {0} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_es.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_es.properties index 0d18d6b347..74c0a8aead 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_es.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_user=Lanzado por el usuario: {1} -started_by_anonymous=Lanzado por el usuario anónimo +started_by_user=Iniciado por el usuario {1} +started_by_anonymous=Iniciada por usuario anonymous diff --git a/core/src/main/resources/hudson/model/Computer/index_es.properties b/core/src/main/resources/hudson/model/Computer/index_es.properties index 7e429c236a..0a10ed34c7 100644 --- a/core/src/main/resources/hudson/model/Computer/index_es.properties +++ b/core/src/main/resources/hudson/model/Computer/index_es.properties @@ -20,10 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -submit.temporarilyOffline=Este nodo se ha puesto en línea +submit.temporarilyOffline=Poner este nodo de nuevo en linea submit.not.temporarilyOffline=Marcar este nodo fuera de línea temporalmente title.projects_tied_on=Proyectos vinculados a {0} +submit.updateOfflineCause=Actualizar el motivo de desconexi\u00F3n title.no_manual_launch=Este nodo tiene una política de disponibilidad: "{0}". Esto supone que el nodo esté fuera de línea. -None=Ninguna +None=Ninguno Labels\:=Etiquetas diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_es_AR.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_es_AR.properties new file mode 100644 index 0000000000..ecfb696825 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Load\ Statistics=Estad\u00EDsticas de Carga diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_es.properties b/core/src/main/resources/hudson/model/ComputerSet/index_es.properties index a16a64222d..8d4ed8f1bc 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_es.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_es.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Name=Nombre -Configure=Configuración +Configure=Configurar Refresh\ status=Actualizar el estado Nodes=Nodos diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_es.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_es.properties index 5f20da718a..297ead5bb1 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_es.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_es.properties @@ -22,4 +22,4 @@ No\ files\ in\ directory=No hay ficheros en el directorio view=vista -all\ files\ in\ zip=Descargar archivos en formato ''''zip'''' +all\ files\ in\ zip=Descargar archivos en formato zip diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_es_AR.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_es_AR.properties new file mode 100644 index 0000000000..6264b2ae2c --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_es_AR.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=Se necesita m\u00E1s de una construcci\u00F3n para el reporte de tendencia. +Timeline=L\u00EDnea de tiempo diff --git a/core/src/main/resources/hudson/model/Job/configure_es.properties b/core/src/main/resources/hudson/model/Job/configure_es.properties index b32553bf08..fe68606625 100644 --- a/core/src/main/resources/hudson/model/Job/configure_es.properties +++ b/core/src/main/resources/hudson/model/Job/configure_es.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Strategy=Estrategia name={0} nombre Discard\ Old\ Builds=Desechar ejecuciones antiguas Save=Guardar diff --git a/core/src/main/resources/hudson/model/Job/configure_es_AR.properties b/core/src/main/resources/hudson/model/Job/configure_es_AR.properties new file mode 100644 index 0000000000..48a4596175 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/configure_es_AR.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Description=Descripci\u00F3n +Discard\ Old\ Builds=Descargar build antiguos +LOADING=CARGANDO +name={0} nombre diff --git a/core/src/main/resources/hudson/model/Job/index_es.properties b/core/src/main/resources/hudson/model/Job/index_es.properties index f29f1e6c49..bdacae9782 100644 --- a/core/src/main/resources/hudson/model/Job/index_es.properties +++ b/core/src/main/resources/hudson/model/Job/index_es.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Disable\ Project=Desactivar el proyecto Project\ name=Nombre del Proyecto diff --git a/core/src/main/resources/hudson/model/Job/index_es_AR.properties b/core/src/main/resources/hudson/model/Job/index_es_AR.properties new file mode 100644 index 0000000000..fceae6e411 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Disable\ Project=Desactivar proyecto diff --git a/core/src/main/resources/hudson/model/Job/permalinks_es.properties b/core/src/main/resources/hudson/model/Job/permalinks_es.properties index d0568472e9..d208519d3b 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_es.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_es.properties @@ -21,4 +21,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Permalinks=Enlaces Permanentes +Permalinks=Enlaces permanentes diff --git a/core/src/main/resources/hudson/model/Job/permalinks_es_AR.properties b/core/src/main/resources/hudson/model/Job/permalinks_es_AR.properties new file mode 100644 index 0000000000..b19a523b8a --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/permalinks_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Permalinks=Accesos directos diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_es.properties b/core/src/main/resources/hudson/model/ParametersAction/index_es.properties index 7122038898..90b1cbcc3f 100644 --- a/core/src/main/resources/hudson/model/ParametersAction/index_es.properties +++ b/core/src/main/resources/hudson/model/ParametersAction/index_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Tarea +Build=Proyecto Parameters=Parámetros diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_es.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_es.properties index f555669d1b..a373decf7a 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_es.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_es.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description=Esta ejecución requiere parametros adicionales: +description=Esta ejecuci\u00F3n requiere par\u00E1metros adicionales: Build=Ejecución LOADING=CARGANDO diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_es.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_es.properties index 60e82e3c1e..5bc16c4f27 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_es.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -format=hace {0} ({1}), {2} +format="{0} ({1}) hace {2}" diff --git a/core/src/main/resources/hudson/model/Run/console_es.properties b/core/src/main/resources/hudson/model/Run/console_es.properties index ee99bca49a..2aefa93063 100644 --- a/core/src/main/resources/hudson/model/Run/console_es.properties +++ b/core/src/main/resources/hudson/model/Run/console_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -skipSome=Descartando {0,number,integer} KB.. Log completo +skipSome=Descartando {0,number,integer} KB.. Registro completo Console\ Output=Salida de consola diff --git a/core/src/main/resources/hudson/model/Run/console_es_AR.properties b/core/src/main/resources/hudson/model/Run/console_es_AR.properties new file mode 100644 index 0000000000..5fc9c2d348 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_es_AR.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Console\ Output=Salida de consola +View\ as\ plain\ text=Ver como texto plano diff --git a/core/src/main/resources/hudson/model/Run/delete_es.properties b/core/src/main/resources/hudson/model/Run/delete_es.properties index c07814c8ec..1ec6ab317e 100644 --- a/core/src/main/resources/hudson/model/Run/delete_es.properties +++ b/core/src/main/resources/hudson/model/Run/delete_es.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=Borrar esta ejecución +Delete\ this\ build=Borrar Proyecto diff --git a/core/src/main/resources/hudson/model/Run/logKeep_es.properties b/core/src/main/resources/hudson/model/Run/logKeep_es.properties index 8513e783cb..08637469ba 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_es.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_es.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Don''t\ keep\ this\ build\ forever=No conservar esta ejecución. -Keep\ this\ build\ forever=Conservar esta ejecución para siempre. +Keep\ this\ build\ forever=Conservar esta ejecuci\u00F3n para siempre diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_es.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_es.properties index 02649d1dc7..8398bb9a52 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_es.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preparation=Preparación +Preparation=Preaparaci\u00F3n diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_es_AR.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_es_AR.properties new file mode 100644 index 0000000000..38e48c8321 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Preparation=Preparaci\u00F3n diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_es_AR.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_es_AR.properties new file mode 100644 index 0000000000..b169c05a06 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Installing=Instalando diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_es_AR.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_es_AR.properties new file mode 100644 index 0000000000..b5bd31d414 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Pending=Pendiente diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_es_AR.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_es_AR.properties new file mode 100644 index 0000000000..b5bd31d414 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Pending=Pendiente diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_es_AR.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_es_AR.properties new file mode 100644 index 0000000000..5ecb58fe26 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Restarting\ Jenkins=Reiniciando Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_es.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_es.properties index 770ee88ea7..66e91bf57c 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_es.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_es.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -warning=Reiniciar Jenkins cuando la instalaci\u00F3n este completa y no se encuentre ninguna tarea en ejecuci\u00F3n -Go\ back\ to\ the\ top\ page=Volver a la página principal -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=Ya puedes empezar a usar los plugins instalados +warning=Reiniciar Jenkins cuando termine la instalaci\u00F3n y no queden trabajos en ejecuci\u00F3n +Go\ back\ to\ the\ top\ page=Volver al inicio de la p\u00E1gina +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=puedes empezar a usar los plugins instalados inmediatamente diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_es_AR.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_es_AR.properties new file mode 100644 index 0000000000..a8bb3f862b --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_es_AR.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +warning=Reiniciar Jenkins cuando se complete la instalaci\u00F3n y no haya trabajos corriendo +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=puedes empezar a utilizar los plugins instalados inmediatamente diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_es_AR.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_es_AR.properties new file mode 100644 index 0000000000..29b93f8edf --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Installing\ Plugins/Upgrades=Instalando Plugins/Actualizaciones diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_es_AR.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_es_AR.properties new file mode 100644 index 0000000000..21a7458f62 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_es_AR.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=Volver al Tablero +Manage\ Jenkins=Gestionar Jenkins +Manage\ Plugins=Gestionar Plugins diff --git a/core/src/main/resources/hudson/model/User/builds_es.properties b/core/src/main/resources/hudson/model/User/builds_es.properties index 1cbf23a5ab..a84fe289ff 100644 --- a/core/src/main/resources/hudson/model/User/builds_es.properties +++ b/core/src/main/resources/hudson/model/User/builds_es.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. # Builds for {0} -title=Ejecucione para {0} +title=Ejecuciones para {0} 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 3a49af1adb..1e459022c5 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=Identificador de usuario en Jenkins +Jenkins\ User\ Id=Id de Usuario Jerkins diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_es.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_es.properties index 7d6a4d25f4..71372f35e4 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_es.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_es.properties @@ -27,3 +27,4 @@ All\ People=Todos People=Actividad User\ Id=Nombre de Usario +blurb=Incluye todos los "usuarios" conocidos, incluyendo las identidades de acceso que se pueden enumerar en el dominio de seguridad actual, as\u00ED como las personas mencionadas en los mensajes de confirmaci\u00F3n en los registros de cambios registrados. diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_es_AR.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_es_AR.properties new file mode 100644 index 0000000000..cc592e6ead --- /dev/null +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_es_AR.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Last\ Active=\u00FAltimo activo +Name=Nombre +People=Usuarios +User\ Id=ID del usuario diff --git a/core/src/main/resources/hudson/model/View/People/index_es.properties b/core/src/main/resources/hudson/model/View/People/index_es.properties new file mode 100644 index 0000000000..79e8afb8b9 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_es.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +User\ Id=Id de usuario diff --git a/core/src/main/resources/hudson/model/View/People/index_es_AR.properties b/core/src/main/resources/hudson/model/View/People/index_es_AR.properties new file mode 100644 index 0000000000..127749b438 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_es_AR.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Last\ Active=\u00DAltima Actividad +Name=Nombre +People=Personas +User\ Id=Id de usuario diff --git a/core/src/main/resources/hudson/model/View/newJob_es.properties b/core/src/main/resources/hudson/model/View/newJob_es.properties index ab3c60388a..ebd21733f4 100644 --- a/core/src/main/resources/hudson/model/View/newJob_es.properties +++ b/core/src/main/resources/hudson/model/View/newJob_es.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -JobName=Nombre del {0} -CopyExisting=Copiar un {0} existente +JobName=Nombre de la {0} +CopyExisting=Copiar una {0} existente NewJob=Nuevo {0} diff --git a/core/src/main/resources/hudson/model/View/sidepanel_es.properties b/core/src/main/resources/hudson/model/View/sidepanel_es.properties index 867d991c2c..a081fabf5f 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_es.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_es.properties @@ -21,12 +21,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=Historial de construcci\u00F3n +Build\ History=Historial de trabajos NewJob=Nueva {0} People=Personas -Edit\ View=Editar la vista -Delete\ View=Borrar la vista -Project\ Relationship=Dependencia entre proyectos -Check\ File\ Fingerprint=Comprobar firma de ficheros +Edit\ View=Editar vista +Delete\ View=Borrar vista +Project\ Relationship=Relacion entre proyectos +Check\ File\ Fingerprint=Comprobar firma de archivos diff --git a/core/src/main/resources/hudson/model/View/sidepanel_es_AR.properties b/core/src/main/resources/hudson/model/View/sidepanel_es_AR.properties new file mode 100644 index 0000000000..663e8324e7 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_es_AR.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Build\ History=Historial de Construcci\u00F3n +Check\ File\ Fingerprint=Verificar Huella de Archivo +Delete\ View=Borrar vista +Edit\ View=Editar Vista +NewJob=Nuevo {0} +People=Personas +Project\ Relationship=Relaciones del Projecto diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_es_AR.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_es_AR.properties new file mode 100644 index 0000000000..94fe0c40c1 --- /dev/null +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +detail=detalle 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 bd419b5bd3..5d03bc6eaf 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_es.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_es.properties @@ -26,4 +26,4 @@ blurb=\ Los usuarios creados autom\u00e1ticamente no tienen acceso directo a Jenkins. Name=Nombre Users=Usuarios -User\ Id=Identificador de Usuario +User\ Id=ID usuario diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_es.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_es.properties index 0aa3051ca1..239c3a343b 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_es.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -sign\ up=Registrarse +sign\ up=registrarse diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_es_AR.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_es_AR.properties new file mode 100644 index 0000000000..69851ece6d --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +sign\ up=registrarse diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_es.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_es.properties new file mode 100644 index 0000000000..26324fcdac --- /dev/null +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_es.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Unprotected\ URLs=URLs Desprotegidas +blurb=Estas URLs (y las URLs que inician con el prefijo /) no requieren autenticaci\u00F3n. Si es posible, configure su servidor para pasar esta solicitud a Jenkins si requerir autenticaci\u00F3n. diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_es.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_es.properties index a64ad2d407..caf5fd8393 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_es.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=entrar +login=Iniciar Sesion diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_es_AR.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_es_AR.properties new file mode 100644 index 0000000000..eb5578b904 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +login=ingresar 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 new file mode 100644 index 0000000000..c0989a3782 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_es_AR.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +name=nombre +value=valor diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_es_AR.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_es_AR.properties new file mode 100644 index 0000000000..970de672ee --- /dev/null +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Days\ to\ keep\ builds=Cantidad de d\u00EDas para mantener los builds diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_es.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_es.properties index 0b290376ed..b0e99ae144 100644 --- a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_es.properties +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_es.properties @@ -1,5 +1,5 @@ Total=Total -Loading...=Cargando +Loading...=Cargando... Age=Antigüedad All\ Tests=Todos los tests Fail=Fallidos diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_es.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_es.properties index f878546cf5..cd7ba77343 100644 --- a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_es.properties +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_es.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Test\ Result\ Trend=Tendencia de los resultados de los tests +Test\ Result\ Trend=Tendencia de los resultados de pruebas show\ test\ \#\ and\ failure\ \#=Mostrar todos los tests -just\ show\ failures=Mostrar los que fallaron -enlarge=Agrandar +just\ show\ failures=solo mostrar fallos +enlarge=agrandar diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_es_AR.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_es_AR.properties new file mode 100644 index 0000000000..4cce3aaa9f --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_es_AR.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Test\ Result\ Trend=Tendencia de los resultados de los test +enlarge=Estirar +just\ show\ failures=Solo mostrar fallos diff --git a/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_es.properties b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_es.properties index ff13253143..ffcdb2e549 100644 --- a/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_es.properties +++ b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/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\ tool\ locations=Listado de utiliades +List\ of\ tool\ locations=Listado de utilidades Name=Nombre Home=Directorio diff --git a/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_es_AR.properties b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_es_AR.properties new file mode 100644 index 0000000000..632da76986 --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_es_AR.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Home=Principal +Name=Nombe diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_es.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_es.properties index c43271bf2b..b78021b7ac 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_es.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_es.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Schedule\ a\ build=Programar una ejecuci\u00F3n +Build\ scheduled=Ejecuci\u00F3n programada +Schedule\ a\ build=Programar una construcci\u00F3n +Schedule\ a\ build\ with\ parameters=Planificar una construcci\u00F3n con parametros 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 new file mode 100644 index 0000000000..134ec50ed3 --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_es_AR.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build\ scheduled=Corrida en espera +Schedule\ a\ build=Activar una corrida diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_es_AR.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_es_AR.properties new file mode 100644 index 0000000000..5548b4f87a --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +New\ View=Nueva Vista diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_es.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_es.properties index 30495928e9..1553f51fe2 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_es.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=Última duración +Last\ Duration=\u00DAltima Duraci\u00F3n diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_es_AR.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_es_AR.properties new file mode 100644 index 0000000000..26e35959f9 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Duration=\u00FAltima duraci\u00F3n diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_es.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_es.properties index a2c2c9cbbb..9a5406c437 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_es.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=Último fallo +Last\ Failure=\u00DAltimo Fallo diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_es_AR.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_es_AR.properties new file mode 100644 index 0000000000..fa47bd081e --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Failure=\u00FAltimo fallido diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_es_AR.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_es_AR.properties new file mode 100644 index 0000000000..50103e290d --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=N/D diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_es.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_es.properties index b3bda55832..fbe2344003 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_es.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=Último éxito +Last\ Success=\u00DAltimo \u00C9xito diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_es_AR.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_es_AR.properties new file mode 100644 index 0000000000..2645ecbaec --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Success=\u00FAltimo Exitoso diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_es.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_es.properties index ad12f998c5..d64505f1ce 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_es.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=Estado de la última ejecución +Status\ of\ the\ last\ build=Estado de la \u00FAltima construcci\u00F3n diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_es_AR.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_es_AR.properties new file mode 100644 index 0000000000..321285ec5d --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Status\ of\ the\ last\ build=Estado de la \u00FAltima ejecuci\u00F3n diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_es.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_es.properties index 955ce0b9bf..b34df4ef58 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_es.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_es.properties @@ -20,4 +20,4 @@ # 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=Informe de estado de las ejecuciones mas recientes +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Informe de estado de las ejecuciones m\u00E1s recientes diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_es_AR.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_es_AR.properties new file mode 100644 index 0000000000..484d613be3 --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Estabilidad seg\u00FAn estados de \u00FAltimas corridas diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_es.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_es.properties index 2f03cc3791..2744db655b 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_es.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Salida de consola +Console\ Output=Salida de Consola diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_es_AR.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_es_AR.properties new file mode 100644 index 0000000000..6a7cf94685 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Console\ Output=Salida de la Consola diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_es.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_es.properties index 40012ec032..04af4695a9 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_es.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_es.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -trend=tendencia -More\ ...=Más ... -for\ all=para todos -for\ failures=para los fracasos +trend=Tendencia +More\ ...=M\u00E1s... +for\ all=Para Todos +for\ failures=para los errores diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_es_AR.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_es_AR.properties new file mode 100644 index 0000000000..62db534bf9 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_es_AR.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +for\ all=para todos +for\ failures=para fallos +trend=tendencia diff --git a/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_es.properties b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_es.properties new file mode 100644 index 0000000000..30a7ff9d37 --- /dev/null +++ b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_es.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Dismiss=Ocultar +Setup\ Security=Configurar seguridad diff --git a/core/src/main/resources/jenkins/management/PluginsLink/info_es.properties b/core/src/main/resources/jenkins/management/PluginsLink/info_es.properties index ca3114685f..9e67c8eb27 100644 --- a/core/src/main/resources/jenkins/management/PluginsLink/info_es.properties +++ b/core/src/main/resources/jenkins/management/PluginsLink/info_es.properties @@ -22,4 +22,4 @@ # THE SOFTWARE. # -updates\ available=Existen actualizaciones disponibles\ +updates\ available=Existen actualizaciones disponibles diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_es.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_es.properties index 8017c2e6e8..316dc8656b 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_es.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Workspace\ Root\ Directory=Directorio raiz del espacio de trabajo -Home\ directory=Directorio raiz -Build\ Record\ Root\ Directory=Directorio raiz de registro de ejecuciones +Workspace\ Root\ Directory=Directorio ra\u00EDz del espacio de trabajo +Home\ directory=Directorio ra\u00EDz +Build\ Record\ Root\ Directory=Directorio ra\u00EDz de registro de ejecuciones Save=Guardar System\ Message=Mensaje del sistema LOADING=CARGANDO diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_es_AR.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_es_AR.properties new file mode 100644 index 0000000000..3d0f5f5262 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_es_AR.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Home\ directory=Directorio Principal +LOADING=CARGANDO +System\ Message=Mensage del Sistema 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 ed322d74a0..4cf758e8d3 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_es.properties @@ -22,15 +22,15 @@ grey=El proyecto no se ha ejecutado nunca o está deshabilitado. grey_anime=Se está ejecutando el proyecto por primera vez. -blue=La última ejecución fué correcta. -blue_anime=La última ejecución fué correcta. Se ha lanzado una nueva ejecución. -yellow=La última ejecución fué correcta pero inestable. Esto es debido normalmente a fallos en algunos tests. -yellow_anime=La última ejecución fué correcta pero inestable. Se ha lanzado una nueva ejecución. +blue=La \u00FAltima ejecuci\u00F3n fue correcta. +blue_anime=La \u00FAltima ejecuci\u00F3n fue correcta. Se ha lanzado una nueva ejecuci\u00F3n. +yellow=La \u00FAltima ejecuci\u00F3n fue correcta pero inestable. Esto es debido normalmente a fallos en algunos tests. +yellow_anime=La \u00FAltima ejecuci\u00F3n fue correcta pero inestable. Se ha lanzado una nueva ejecuci\u00F3n. red=La última ejecución falló. red_anime=La última ejecución falló. Se ha lanzado una nueva ejecución. health-81plus=El estado de salud del proyecto supera el 80%. Puedes situar el ratón sobre el icono para ver una explicación detallada. -health-00to20=El estado de salud del proyecto está entre el 60% y 80%. Puedes situar el ratón sobre el icono para ver una explicación detallada. -health-41to60=El estado de salud del proyecto está entre el 40% y 60%. Puedes situar el ratón sobre el icono para ver una explicación detallada. -health-21to40=El estado de salud del proyecto está entre el 20% y 40%. Puedes situar el ratón sobre el icono para ver una explicación detallada. -health-61to80=El estado de salud del proyecto es inferior al 20%. Puedes situar el ratón sobre el icono para ver una explicación detallada. +health-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. diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_es.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_es.properties index 865d803e2a..ca6d5656a8 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/loginError_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_es.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Invalid\ login\ information.\ Please\ try\ again.=Error de autenticación. -Try\ again=Inténtalo de nuevo +Try\ again=Int\u00E9ntalo de nuevo Login\ Error=Error de autenticación If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=\ Si eres un administrador de sistemas y crees que esto es un problema de configuración, echa un vistazo a la salida de consola para ver mas detalles diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_es.properties b/core/src/main/resources/jenkins/model/Jenkins/login_es.properties index f5186e62cb..f9682d805b 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_es.properties @@ -24,4 +24,4 @@ signUp=Crea una cuenta si todav login=Entrar Password=Contraseña User=Usuario -Remember\ me\ on\ this\ computer=Recuerdame en este ordenador +Remember\ me\ on\ this\ computer=Recuerdame en esta computadora diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_es.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_es.properties index f741212829..10bed0f484 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_es.properties @@ -20,4 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=A\u00F1adir, borrar, controlar y monitorear los nodos sobre los que Jenkins ejecuta tareas. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Descartar todos los datos cargados en memoria y recargar todo nuevamente desde el sistema de archivos. +Jenkins\ CLI=Interfaz de l\u00EDnea de comandos (CLI) de Jenkins Manage\ Jenkins=Administrar Jenkins +Reload\ Configuration\ from\ Disk=Recargar configuraci\u00F3n desde el disco duro. +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Detener la ejecuci\u00F3n de nuevas construcciones para que el sistema pueda apagarse de manera segura. +SystemLogText=El log del sistema captura la salida de la clase java.util.logging en todo lo relacionado con Jenkins. +are.you.sure=est\u00E1s seguro? diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_es_AR.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_es_AR.properties new file mode 100644 index 0000000000..978ba0cd4b --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_es_AR.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Configure\ System=Configurar sistema +Load\ Statistics=Cargar estad\u00EDsticas +Manage\ Jenkins=Administrar Jenkins +Manage\ Nodes=Administrar Nodos +Manage\ Plugins=Administrar plugins +System\ Information=Informaci\u00F3n del sistema +System\ Log=Log del sistema diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_es.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_es.properties index 32c3286319..19caf25357 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_es.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_es.properties @@ -21,11 +21,7 @@ # THE SOFTWARE. Title=¿Cual es la relación entre proyectos? -body=\ - Cuando hay proyectos que dependen unos de otros, Jenkins puede hacer un seguimiento de \ - qué projectos padres estan siendo utilizado por otros proyectos hijos usando un registro de \ - firmas de los ficheros generados. \ - Echa un vistazo a esta pagina: the fingerprint support. +body=Cuando hay proyectos que dependen unos de otros, Jenkins puede hacer un seguimiento de qu\u00E9 proyectos padres est\u00E1n siendo utilizado por otros proyectos hijos usando un registro de firmas de los ficheros generados. Echa un vistazo a esta pagina: the fingerprint support. This\ allows\ Jenkins\ to\ correlate\ two\ projects.=Esto facilita que Jenkins pueda correlacionar los dos proyectos The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts=Que el proyecto padre registre la firma de todos los ficheros que genera. diff --git a/core/src/main/resources/lib/form/advanced_es_AR.properties b/core/src/main/resources/lib/form/advanced_es_AR.properties new file mode 100644 index 0000000000..f5d78b80e7 --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Advanced=Avanzado diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_es.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_es.properties index d650506f06..63bb5b8b3d 100644 --- a/core/src/main/resources/lib/form/breadcrumb-config-outline_es.properties +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_es.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -configuration=configuración +configuration=Configuraci\u00F3n diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_es_AR.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_es_AR.properties new file mode 100644 index 0000000000..66894e7323 --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=configuraci\u00F3n diff --git a/core/src/main/resources/lib/form/helpArea_es_AR.properties b/core/src/main/resources/lib/form/helpArea_es_AR.properties new file mode 100644 index 0000000000..10e88d00ce --- /dev/null +++ b/core/src/main/resources/lib/form/helpArea_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Loading...=Cargando ... diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_es_AR.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_es_AR.properties new file mode 100644 index 0000000000..aff71dcab7 --- /dev/null +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete=Borrar diff --git a/core/src/main/resources/lib/form/repeatable_es_AR.properties b/core/src/main/resources/lib/form/repeatable_es_AR.properties new file mode 100644 index 0000000000..287ce273df --- /dev/null +++ b/core/src/main/resources/lib/form/repeatable_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Add=Agregar diff --git a/core/src/main/resources/lib/form/textarea_es.properties b/core/src/main/resources/lib/form/textarea_es.properties index 76f89a4a08..f54fd0fa76 100644 --- a/core/src/main/resources/lib/form/textarea_es.properties +++ b/core/src/main/resources/lib/form/textarea_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Hide\ preview=Ocultar vista previa -Preview=Vista previa +Hide\ preview=Ocultar Visualizaci\u00F3n +Preview=Visualizar diff --git a/core/src/main/resources/lib/form/textarea_es_AR.properties b/core/src/main/resources/lib/form/textarea_es_AR.properties new file mode 100644 index 0000000000..842e8afcad --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_es_AR.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=Ocultar previsualizaci\u00F3n +Preview=Previsualizaci\u00F3n diff --git a/core/src/main/resources/lib/hudson/buildCaption_es.properties b/core/src/main/resources/lib/hudson/buildCaption_es.properties index 9cc4ffdae8..88f71ffb89 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_es.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_es.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Progress=Progreso -cancel=cancelar +cancel=Cancelar diff --git a/core/src/main/resources/lib/hudson/buildCaption_es_AR.properties b/core/src/main/resources/lib/hudson/buildCaption_es_AR.properties new file mode 100644 index 0000000000..d88a733a0f --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_es_AR.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Progress=Progreso +cancel=Cancelar diff --git a/core/src/main/resources/lib/hudson/buildHealth_es_AR.properties b/core/src/main/resources/lib/hudson/buildHealth_es_AR.properties new file mode 100644 index 0000000000..8075962e5f --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Description=Descripci\u00F3n diff --git a/core/src/main/resources/lib/hudson/buildListTable_es.properties b/core/src/main/resources/lib/hudson/buildListTable_es.properties index 81e5f41191..4b76e9b4b6 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_es.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_es.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Build=Ejecución -Time\ Since=Fecha +Time\ Since=Hace Status=Estado Console\ output=Salida de consola -Click\ to\ center\ timeline\ on\ event=Haz click para centrar la línea de tiempos sobre el evento +Click\ to\ center\ timeline\ on\ event=Click para centrar la linea cronol\u00F3gica en el evento diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_es_AR.properties b/core/src/main/resources/lib/hudson/buildProgressBar_es_AR.properties new file mode 100644 index 0000000000..f1a1b55105 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +text=Inicio hace {0}
Tiempo estimado restante: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_es.properties b/core/src/main/resources/lib/hudson/editableDescription_es.properties index a16b928ce6..c1878306e4 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_es.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=insertar descripci\u00F3n +add\ description=a\u00F1adir descripci\u00F3n edit\ description=editar descripción diff --git a/core/src/main/resources/lib/hudson/editableDescription_es_AR.properties b/core/src/main/resources/lib/hudson/editableDescription_es_AR.properties new file mode 100644 index 0000000000..121839d538 --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_es_AR.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +add\ description=a\u00F1adir descripci\u00F3n +edit\ description=Editar descripci\u00F3n diff --git a/core/src/main/resources/lib/hudson/executors_es.properties b/core/src/main/resources/lib/hudson/executors_es.properties index 8ccffc2e7f..80ffe160fa 100644 --- a/core/src/main/resources/lib/hudson/executors_es.properties +++ b/core/src/main/resources/lib/hudson/executors_es.properties @@ -28,8 +28,8 @@ Offline=Fuera de linea Idle=Inactivo Building=Ejecutándose Unknown\ Task=Tarea desconocida -terminate\ this\ build=Terminar esta ejecucion -Build\ Executor\ Status=Estado de los nodos +terminate\ this\ build=Terminar esta ejecuci\u00F3n +Build\ Executor\ Status=Estado del ejecutor de construcciones Status=Estado Master=Principal diff --git a/core/src/main/resources/lib/hudson/executors_es_AR.properties b/core/src/main/resources/lib/hudson/executors_es_AR.properties new file mode 100644 index 0000000000..58e44a980a --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_es_AR.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Build\ Executor\ Status=Estado del Ejecutor de Tareas +Building=Construyendo +Idle=Inactivo +Master=Maestro +Status=Estado +offline=desconectado +terminate\ this\ build=finalizar tarea diff --git a/core/src/main/resources/lib/hudson/iconSize_es.properties b/core/src/main/resources/lib/hudson/iconSize_es.properties index ebaff8d307..661362bf2e 100644 --- a/core/src/main/resources/lib/hudson/iconSize_es.properties +++ b/core/src/main/resources/lib/hudson/iconSize_es.properties @@ -21,4 +21,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=\u00CDcono +Icon=Icono diff --git a/core/src/main/resources/lib/hudson/iconSize_es_AR.properties b/core/src/main/resources/lib/hudson/iconSize_es_AR.properties new file mode 100644 index 0000000000..306ec1b6d3 --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Icon=Icono diff --git a/core/src/main/resources/lib/hudson/queue_es.properties b/core/src/main/resources/lib/hudson/queue_es.properties index b00e210f75..af53fa9acf 100644 --- a/core/src/main/resources/lib/hudson/queue_es.properties +++ b/core/src/main/resources/lib/hudson/queue_es.properties @@ -21,9 +21,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Trabajos en cola +Build\ Queue=Trabajos en la cola Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins va a ser apagado. No se procesarán nuevas tareas. cancel=cancelar -No\ builds\ in\ the\ queue.=No hay trabajos en cola +No\ builds\ in\ the\ queue.=No hay trabajos en la cola Unknown\ Task=Tarea desconocida -WaitingFor=Esperando por {0} +WaitingFor=Esperando durante {0} diff --git a/core/src/main/resources/lib/hudson/queue_es_AR.properties b/core/src/main/resources/lib/hudson/queue_es_AR.properties new file mode 100644 index 0000000000..462d63cdf1 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_es_AR.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Build\ Queue=Trabajos en cola +No\ builds\ in\ the\ queue.=No hay trabajos en cola +WaitingSince=Esperando desde {0} diff --git a/core/src/main/resources/lib/hudson/rssBar_es.properties b/core/src/main/resources/lib/hudson/rssBar_es.properties index 69953437bd..b12af51e4b 100644 --- a/core/src/main/resources/lib/hudson/rssBar_es.properties +++ b/core/src/main/resources/lib/hudson/rssBar_es.properties @@ -21,8 +21,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=Gu\u00EDa de \u00EDconos -for\ all=de todos -for\ failures=de los fallidos -for\ just\ latest\ builds=de los m\u00E1s recientes +Legend=Gu\u00EDa de iconos +for\ all=para todos +for\ failures=para fallas +for\ just\ latest\ builds=para los m\u00E1s recientes diff --git a/core/src/main/resources/lib/hudson/rssBar_es_AR.properties b/core/src/main/resources/lib/hudson/rssBar_es_AR.properties new file mode 100644 index 0000000000..e73e720011 --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_es_AR.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Legend=Leyenda +for\ all=para todos +for\ failures=para las fallas +for\ just\ latest\ builds=s\u00F3lo para los \u00FAltimos builds diff --git a/core/src/main/resources/lib/hudson/test-result_es.properties b/core/src/main/resources/lib/hudson/test-result_es.properties index a65beaebe4..73224aea5a 100644 --- a/core/src/main/resources/lib/hudson/test-result_es.properties +++ b/core/src/main/resources/lib/hudson/test-result_es.properties @@ -22,5 +22,5 @@ 1failure=1 fallo {0} multifailures={0} fallos {1} -no\ failures=Sin fallos -no\ tests=Sin tests +no\ failures=Sin fallas +no\ tests=Sin pruebas diff --git a/core/src/main/resources/lib/hudson/test-result_es_AR.properties b/core/src/main/resources/lib/hudson/test-result_es_AR.properties new file mode 100644 index 0000000000..2970e02d19 --- /dev/null +++ b/core/src/main/resources/lib/hudson/test-result_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +no\ failures=Sin fallos diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_es.properties b/core/src/main/resources/lib/layout/breadcrumbBar_es.properties index 2c913ae50e..8eb26d5e7a 100644 --- a/core/src/main/resources/lib/layout/breadcrumbBar_es.properties +++ b/core/src/main/resources/lib/layout/breadcrumbBar_es.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -DISABLE\ AUTO\ REFRESH=DESACTIVAR AUTO-REFRESCO -ENABLE\ AUTO\ REFRESH=ACTIVAR AUTO-REFRESCO +DISABLE\ AUTO\ REFRESH=DESHABILITAR REFRESCO AUTOM\u00C1TICO + +ENABLE\ AUTO\ REFRESH=ACTIVAR AUTO REFRESCO diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_es_AR.properties b/core/src/main/resources/lib/layout/breadcrumbBar_es_AR.properties new file mode 100644 index 0000000000..8688f104ea --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=Habilitar Auto Refresco diff --git a/core/src/main/resources/lib/layout/layout_es.properties b/core/src/main/resources/lib/layout/layout_es.properties index d0b47a6b6b..9bc4a0f984 100644 --- a/core/src/main/resources/lib/layout/layout_es.properties +++ b/core/src/main/resources/lib/layout/layout_es.properties @@ -22,8 +22,8 @@ # THE SOFTWARE. -logout=salir -search=buscar -searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -Page\ generated=Página generada el +logout=Desconectar +search=b\u00FAsqueda +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/buscador +Page\ generated=P\u00E1gina generada diff --git a/core/src/main/resources/lib/layout/layout_es_AR.properties b/core/src/main/resources/lib/layout/layout_es_AR.properties index 1dbee4ff00..11639af8d3 100644 --- a/core/src/main/resources/lib/layout/layout_es_AR.properties +++ b/core/src/main/resources/lib/layout/layout_es_AR.properties @@ -20,6 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +ENABLE\ AUTO\ REFRESH=ACTIVAR REFRESCO AUTOM\u00C1TICO DE LA P\u00C1GINA Page\ generated=P\u00E1gina generada -logout=Finalizar la sesi\u00F3n +logout=Volver al proyecto search=Buscar +searchBox.url=http://wiki.jenkins-ci.org/mostrar/JENKINS/Caja+Busqueda + diff --git a/core/src/main/resources/lib/layout/progressiveRendering_es.properties b/core/src/main/resources/lib/layout/progressiveRendering_es.properties new file mode 100644 index 0000000000..dd836db361 --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_es.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=C\u00F3mputo en proceso diff --git a/core/src/main/resources/lib/layout/progressiveRendering_es_AR.properties b/core/src/main/resources/lib/layout/progressiveRendering_es_AR.properties new file mode 100644 index 0000000000..5fd5211ddb --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_es_AR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=C\u00E1lculo en proceso. diff --git a/core/src/main/resources/lib/layout/task_es.properties b/core/src/main/resources/lib/layout/task_es.properties new file mode 100644 index 0000000000..96f5b15b0b --- /dev/null +++ b/core/src/main/resources/lib/layout/task_es.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Done.=Hecho. diff --git a/core/src/main/resources/lib/test/bar_es.properties b/core/src/main/resources/lib/test/bar_es.properties index 5a45492a99..b56f11ded3 100644 --- a/core/src/main/resources/lib/test/bar_es.properties +++ b/core/src/main/resources/lib/test/bar_es.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -failures={0} Fallidos +failures={0} fallidos skipped={0} Ignorados -tests={0} Tests +tests={0} tests No\ tests=Sin tests -- GitLab From d3f96fa2c37762577beb087ee50558686de02a88 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:56 -0700 Subject: [PATCH 041/308] Community-contributed localization for es_AR (es_AR) -- GitLab From 4a9aaad8b1a01b1b6821d45c47ea9ca160324b42 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:56 -0700 Subject: [PATCH 042/308] Community-contributed localization for Estonian (et) --- .../hudson/PluginManager/index_et.properties | 6 ++++++ .../hudson/PluginManager/tabBar_et.properties | 6 ++++++ .../hudson/PluginManager/table_et.properties | 11 +++++++++++ .../message_et.properties | 4 ++++ .../MatrixProject/newJobDetail_et.properties | 3 +++ .../model/AbstractBuild/index_et.properties | 5 +++++ .../AbstractBuild/sidepanel_et.properties | 4 ++++ .../model/AbstractBuild/tasks_et.properties | 9 ++++++++- .../model/AbstractItem/delete_et.properties | 4 ++++ .../AbstractItem/noWorkspace_et.properties | 6 ++++++ .../AbstractProject/changes_et.properties | 3 +++ .../model/AbstractProject/main_et.properties | 6 ++++++ .../AbstractProject/makeDisabled_et.properties | 3 +++ .../AbstractProject/sidepanel_et.properties | 12 ++++++++++++ .../UserIdCause/description_et.properties | 3 +++ .../DirectoryBrowserSupport/dir_et.properties | 4 ++++ .../newJobDetail_et.properties | 3 +++ .../hudson/model/Job/configure_et.properties | 6 ++++++ .../hudson/model/Job/index_et.properties | 3 +++ .../hudson/model/Job/permalinks_et.properties | 3 +++ .../index_et.properties | 5 +++++ .../Permalink/link_et.properties | 3 +++ .../hudson/model/Run/configure_et.properties | 6 ++++++ .../hudson/model/Run/console_et.properties | 4 ++++ .../hudson/model/Run/delete_et.properties | 3 +++ .../CoreUpdateMonitor/message_et.properties | 3 +++ .../hudson/model/User/sidepanel_et.properties | 4 ++++ .../View/AsynchPeople/index_et.properties | 4 ++++ .../model/View/People/index_et.properties | 7 +++++++ .../hudson/model/View/builds_et.properties | 4 ++++ .../hudson/model/View/newJob_et.properties | 4 ++++ .../hudson/model/View/sidepanel_et.properties | 5 +++++ .../scm/SCM/project-changes_et.properties | 3 +++ .../loginLink_et.properties | 3 +++ .../SecurityRealm/loginLink_et.properties | 3 +++ .../tasks/LogRotator/config_et.properties | 7 +++++++ .../MetaTabulatedResult/body_et.properties | 8 ++++++++ .../test/TestObject/sidepanel_et.properties | 5 +++++ .../tasks/test/TestResult/index_et.properties | 3 +++ .../floatingBox_et.properties | 6 ++++++ .../BuildButtonColumn/column_et.properties | 4 ++++ .../DefaultViewsTabBar/viewTabs_et.properties | 3 +++ .../columnHeader_et.properties | 3 +++ .../columnHeader_et.properties | 3 +++ .../LastFailureColumn/column_et.properties | 3 +++ .../columnHeader_et.properties | 3 +++ .../StatusColumn/columnHeader_et.properties | 3 +++ .../WeatherColumn/columnHeader_et.properties | 3 +++ .../BuildHistoryWidget/entries_et.properties | 4 ++++ .../widgets/HistoryWidget/entry_et.properties | 3 +++ .../widgets/HistoryWidget/index_et.properties | 5 +++++ .../management/PluginsLink/info_et.properties | 3 +++ .../model/Jenkins/downgrade_et.properties | 4 ++++ .../Jenkins/fingerprintCheck_et.properties | 9 +++++++++ .../jenkins/model/Jenkins/legend_et.properties | 15 +++++++++++++++ .../jenkins/model/Jenkins/login_et.properties | 5 +++++ .../jenkins/model/Jenkins/manage_et.properties | 18 ++++++++++++++++++ .../projectRelationship-help_et.properties | 8 ++++++++ .../Jenkins/projectRelationship_et.properties | 6 ++++++ .../resources/lib/form/advanced_et.properties | 3 +++ .../resources/lib/form/apply_et.properties | 3 +++ .../breadcrumb-config-outline_et.properties | 3 +++ .../resources/lib/form/helpArea_et.properties | 3 +++ .../resources/lib/form/textarea_et.properties | 4 ++++ .../lib/hudson/buildCaption_et.properties | 3 +++ .../lib/hudson/buildHealth_et.properties | 3 +++ .../lib/hudson/buildListTable_et.properties | 7 +++++++ .../lib/hudson/buildProgressBar_et.properties | 3 +++ .../hudson/editableDescription_et.properties | 4 ++++ .../lib/hudson/executors_et.properties | 9 +++++++++ .../lib/hudson/iconSize_et.properties | 3 +++ .../lib/hudson/newFromList/form_et.properties | 3 +++ .../project/upstream-downstream_et.properties | 4 ++++ .../resources/lib/hudson/queue_et.properties | 5 +++++ .../resources/lib/hudson/rssBar_et.properties | 5 +++++ .../lib/hudson/test-result_et.properties | 3 +++ .../lib/layout/breadcrumbBar_et.properties | 3 +++ .../resources/lib/layout/layout_et.properties | 3 +++ .../main/resources/lib/test/bar_et.properties | 4 ++++ 79 files changed, 376 insertions(+), 1 deletion(-) create mode 100644 core/src/main/resources/hudson/PluginManager/index_et.properties create mode 100644 core/src/main/resources/hudson/PluginManager/tabBar_et.properties create mode 100644 core/src/main/resources/hudson/PluginManager/table_et.properties create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_et.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_et.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_et.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_et.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/delete_et.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/noWorkspace_et.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/changes_et.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_et.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/makeDisabled_et.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_et.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UserIdCause/description_et.properties create mode 100644 core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_et.properties create mode 100644 core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_et.properties create mode 100644 core/src/main/resources/hudson/model/Job/configure_et.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_et.properties create mode 100644 core/src/main/resources/hudson/model/Job/permalinks_et.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_et.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_et.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_et.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_et.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_et.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_et.properties create mode 100644 core/src/main/resources/hudson/model/User/sidepanel_et.properties create mode 100644 core/src/main/resources/hudson/model/View/AsynchPeople/index_et.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_et.properties create mode 100644 core/src/main/resources/hudson/model/View/builds_et.properties create mode 100644 core/src/main/resources/hudson/model/View/newJob_et.properties create mode 100644 core/src/main/resources/hudson/scm/SCM/project-changes_et.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_et.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_et.properties create mode 100644 core/src/main/resources/hudson/tasks/LogRotator/config_et.properties create mode 100644 core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_et.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_et.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResult/index_et.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_et.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_et.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_et.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_et.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_et.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_et.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_et.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_et.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_et.properties create mode 100644 core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_et.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_et.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_et.properties create mode 100644 core/src/main/resources/jenkins/management/PluginsLink/info_et.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/downgrade_et.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_et.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/legend_et.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/login_et.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/manage_et.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_et.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/projectRelationship_et.properties create mode 100644 core/src/main/resources/lib/form/advanced_et.properties create mode 100644 core/src/main/resources/lib/form/apply_et.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_et.properties create mode 100644 core/src/main/resources/lib/form/helpArea_et.properties create mode 100644 core/src/main/resources/lib/form/textarea_et.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_et.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_et.properties create mode 100644 core/src/main/resources/lib/hudson/buildListTable_et.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_et.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_et.properties create mode 100644 core/src/main/resources/lib/hudson/executors_et.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_et.properties create mode 100644 core/src/main/resources/lib/hudson/newFromList/form_et.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_et.properties create mode 100644 core/src/main/resources/lib/hudson/queue_et.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_et.properties create mode 100644 core/src/main/resources/lib/hudson/test-result_et.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_et.properties create mode 100644 core/src/main/resources/lib/test/bar_et.properties diff --git a/core/src/main/resources/hudson/PluginManager/index_et.properties b/core/src/main/resources/hudson/PluginManager/index_et.properties new file mode 100644 index 0000000000..c477bce6d7 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/index_et.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +All=K\u00F5ik +None=Mitte \u00FCkski +Select=Vali +UpdatePageDescription=See lehek\u00FClg loeb \u00FCles k\u00F5ik uuendused pistikprogrammidele, mis on hetkel kasutusel. diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_et.properties b/core/src/main/resources/hudson/PluginManager/tabBar_et.properties new file mode 100644 index 0000000000..607f644bf0 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/tabBar_et.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Advanced=Edasij\u00F5udnutele +Available=Saadaval +Installed=Paigaldatud +Updates=Uuendused diff --git a/core/src/main/resources/hudson/PluginManager/table_et.properties b/core/src/main/resources/hudson/PluginManager/table_et.properties new file mode 100644 index 0000000000..20cef741b0 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/table_et.properties @@ -0,0 +1,11 @@ +# This file is under the MIT License by authors + +Check\ to\ install\ the\ plugin=M\u00E4rgista, et paigaldada pistikprogramm +Download\ now\ and\ install\ after\ restart=Lae kohe alla ja paigalda p\u00E4rast taask\u00E4ivitus +Filter=Filtreeri +Inactive=Toimetu +Install=Paigalda +Install\ without\ restart=Paigalda ilma taask\u00E4ivitamata +Installed=Paigaldatud +Name=Nimi +Version=Versioon diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_et.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_et.properties new file mode 100644 index 0000000000..3cab497c06 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_et.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Dismiss=Loobu +More\ Info=Vaata lisaks diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_et.properties b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_et.properties new file mode 100644 index 0000000000..943a5be456 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +body=Sobib projektidele, mis n\u00F5uavad suurt hulka erinevaid konfiguratsioone. N\u00E4iteks paljudes platvormides testimine v\u00F5i platvormide jaoks ehitamine. diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_et.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_et.properties new file mode 100644 index 0000000000..e450a7f40c --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_et.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Build=J\u00E4rk +Took=V\u00F5ttis aega +startedAgo=Alustati {0} tagasi diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_et.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_et.properties new file mode 100644 index 0000000000..dcf992246c --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_et.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Next\ Build=J\u00E4rgmine ehitus +Previous\ Build=Eelmine J\u00E4rk diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_et.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_et.properties index e3d11de1fa..7f4e8e5be7 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_et.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_et.properties @@ -20,4 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status=staatus +Back\ to\ Project=Tagasi projekti juurde. +Changes=Muudatused +Console\ Output=konsooli v\u00E4ljund +Edit\ Build\ Information=Redigeeri J\u00E4rgu Informatsiooni +Status=Staatus +View\ Build\ Information=Kuva ehituse informatsioon +View\ as\ plain\ text=Vaata tavalise tekstina +raw=toores diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_et.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_et.properties new file mode 100644 index 0000000000..e372e4feb8 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_et.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Yes=Jah +blurb=Oled sa kindel, et soovid kustutada {0} "{1}"? diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_et.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_et.properties new file mode 100644 index 0000000000..96416836ec --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_et.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Error:\ no\ workspace=Viga: sellist t\u00F6\u00F6 keskkonda pole +There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are:=Sellel projektil ei ole t\u00F6\u00F6keskkonda. V\u00F5imalikud p\u00F5hjused on: +li3=T\u00F6\u00F6 keskkonna kataloog {{0}} on eemaldatud v\u00E4ljaspool Jenkinsit. +text=Kompileeri bild t\u00F6\u00F6 keskkonna loomiseks. diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_et.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_et.properties new file mode 100644 index 0000000000..bbe3a1086e --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=Muudatused diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_et.properties b/core/src/main/resources/hudson/model/AbstractProject/main_et.properties new file mode 100644 index 0000000000..da01ce2b29 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_et.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Last\ Successful\ Artifacts=Viimased \u00F5nnestunud artefaktid +Latest\ Test\ Result=Viimaste testide tulemused +Recent\ Changes=Hiljutised muudatused +Workspace=T\u00F6\u00F6ruum diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_et.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_et.properties new file mode 100644 index 0000000000..994dd9ff77 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Disable\ Project=Keela projekti ehitamine diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_et.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_et.properties new file mode 100644 index 0000000000..1e50303ef0 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_et.properties @@ -0,0 +1,12 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=Tagasi pealehele +Build\ scheduled=T\u00F6\u00F6 on tellitud +Changes=Muudatused +Configure=Seadista +Status=Staatus +Wipe\ Out\ Workspace=Tee t\u00F6\u00F6ruum t\u00FChjaks +Workspace=T\u00F6\u00F6ruum +delete=Kustuta {0} +delete.confirm=Oled sa ikka kindel et soovid kustutada {0} \u2018{1}\u2019? +wipe.out.confirm=Oled kindel et soovid t\u00F6\u00F6ala kustutada? diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_et.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_et.properties new file mode 100644 index 0000000000..e308ced8e0 --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +started_by_anonymous=Alustati anon\u00FC\u00FCmse kasutaja poolt diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_et.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_et.properties new file mode 100644 index 0000000000..b732926ec8 --- /dev/null +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_et.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +all\ files\ in\ zip=k\u00F5ik failid zip arhiivina +view=vaata diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_et.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_et.properties new file mode 100644 index 0000000000..c3c69a972c --- /dev/null +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +body=See on Jenkinsi p\u00F5hifunktsioon! Jenkins ehitab su projekti, kombineerides sinu versioonihalduse mistahes ehitusprotsessiga. Sa v\u00F5id seda kasutada ka muudeks asjadeks kui tarkvara ehitamine. diff --git a/core/src/main/resources/hudson/model/Job/configure_et.properties b/core/src/main/resources/hudson/model/Job/configure_et.properties new file mode 100644 index 0000000000..b128ff63ca --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/configure_et.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Description=Kirjeldus +Discard\ Old\ Builds=Eemalda vanad bildid +LOADING=Laen +name={0} nimi diff --git a/core/src/main/resources/hudson/model/Job/index_et.properties b/core/src/main/resources/hudson/model/Job/index_et.properties new file mode 100644 index 0000000000..f1ae452384 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Project\ name=Projekti nimi diff --git a/core/src/main/resources/hudson/model/Job/permalinks_et.properties b/core/src/main/resources/hudson/model/Job/permalinks_et.properties new file mode 100644 index 0000000000..5871f942c2 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/permalinks_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Permalinks=P\u00FCsiviited diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_et.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_et.properties new file mode 100644 index 0000000000..20d2a0ce42 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_et.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Build=Bild +LOADING=LAEN +description=See bild vajab parameetreid: diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_et.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_et.properties new file mode 100644 index 0000000000..37b57017d3 --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +format={0} ({1}), {2} tagasi diff --git a/core/src/main/resources/hudson/model/Run/configure_et.properties b/core/src/main/resources/hudson/model/Run/configure_et.properties new file mode 100644 index 0000000000..4bdbd225e0 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_et.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Description=Kirjeldus +DisplayName=Nimetus +LOADING=LAADIMINE +Save=Salvesta diff --git a/core/src/main/resources/hudson/model/Run/console_et.properties b/core/src/main/resources/hudson/model/Run/console_et.properties new file mode 100644 index 0000000000..fc3c118248 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_et.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Console\ Output=Konsooli v\u00E4ljund +View\ as\ plain\ text=Vaata tekstina diff --git a/core/src/main/resources/hudson/model/Run/delete_et.properties b/core/src/main/resources/hudson/model/Run/delete_et.properties new file mode 100644 index 0000000000..1599a9cbeb --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete\ this\ build=Kustuta ehitus diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_et.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_et.properties new file mode 100644 index 0000000000..7cd8b01f2a --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +NewVersionAvailable=Jenkinsi uus versioon ({0}) on saadaval allalaadimiseks (muudatuste nimekiri). diff --git a/core/src/main/resources/hudson/model/User/sidepanel_et.properties b/core/src/main/resources/hudson/model/User/sidepanel_et.properties new file mode 100644 index 0000000000..b9b8016c55 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/sidepanel_et.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +People=Inimesed +Status=Olek diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_et.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_et.properties new file mode 100644 index 0000000000..1b693491bf --- /dev/null +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_et.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Name=Nimi +People=Inimesed diff --git a/core/src/main/resources/hudson/model/View/People/index_et.properties b/core/src/main/resources/hudson/model/View/People/index_et.properties new file mode 100644 index 0000000000..2dbfb2fd67 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_et.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Last\ Active=Viimati aktiivne +Name=Nimi +On=Projektis +People=Inimesed +User\ Id=Kasutaja Id diff --git a/core/src/main/resources/hudson/model/View/builds_et.properties b/core/src/main/resources/hudson/model/View/builds_et.properties new file mode 100644 index 0000000000..c1a9a8aee8 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/builds_et.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Export\ as\ plain\ XML=Eksportdi XML-ina +buildHistory={0} J\u00E4rkude ajalugu diff --git a/core/src/main/resources/hudson/model/View/newJob_et.properties b/core/src/main/resources/hudson/model/View/newJob_et.properties new file mode 100644 index 0000000000..f741c3b4e1 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/newJob_et.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +CopyExisting=Kopeeri olemasolev {0} +JobName={0} nimi diff --git a/core/src/main/resources/hudson/model/View/sidepanel_et.properties b/core/src/main/resources/hudson/model/View/sidepanel_et.properties index 66a3e0d221..a6cf257ee6 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_et.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_et.properties @@ -20,5 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Build\ History=Ehitamiste ajalugu +Check\ File\ Fingerprint=Kontrolli faili jalaj\u00E4lge +Delete\ View=Kustuta vaade +Edit\ View=Muuda vaadet NewJob=Uus {0} People=Inimesed +Project\ Relationship=Projektide suhe diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_et.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_et.properties new file mode 100644 index 0000000000..23a67c31cb --- /dev/null +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ changes\ in\ any\ of\ the\ builds.=\u00DCheski bildis pole \u00FChtki muudatust. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_et.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_et.properties new file mode 100644 index 0000000000..d810520a4b --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +sign\ up=registreeri diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_et.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_et.properties new file mode 100644 index 0000000000..9eb8de96ce --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +login=logi sisse diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_et.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_et.properties new file mode 100644 index 0000000000..f5e8d8b10f --- /dev/null +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_et.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Days\ to\ keep\ artifacts=Mitu p\u00E4eva hoida artifakte +Days\ to\ keep\ builds=Mitu p\u00E4eva hoida bilde +Max\ #\ of\ builds\ to\ keep=Maksimum hoitavate bildide arv +if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=Bildi kirjed hoitakse ainult n arv p\u00E4evi +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=Bildi kirjed hoitakse ainult n arv p\u00E4evi diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_et.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_et.properties new file mode 100644 index 0000000000..b9c866831c --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_et.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +All\ Tests=K\u00F5ik testid +Duration=Kestus +Fail=Eba\u00F5nnestumisi +Skip=Vahele j\u00E4etud +Total=Kokku +diff=erinevus diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_et.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_et.properties new file mode 100644 index 0000000000..9e0302928b --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_et.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +History=Ajalugu +Next\ Build=J\u00E4rgmine versioon +Previous\ Build=Eelmine versioon diff --git a/core/src/main/resources/hudson/tasks/test/TestResult/index_et.properties b/core/src/main/resources/hudson/tasks/test/TestResult/index_et.properties new file mode 100644 index 0000000000..c2fc660646 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResult/index_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +took=Aega v\u00F5ttis {0}. diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_et.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_et.properties new file mode 100644 index 0000000000..25913ea4e4 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_et.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Test\ Result\ Trend=Testimistulemuste trend +enlarge=suurenda +just\ show\ failures=n\u00E4ita ainult vigu +show\ test\ #\ and\ failure\ #=n\u00E4ita k\u00F5iki- ja eba\u00F5nnestunud teste diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_et.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_et.properties new file mode 100644 index 0000000000..4141aa4e93 --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_et.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build\ scheduled=Ehitus planeeritud +Schedule\ a\ build=Plaani uus t\u00F6\u00F6 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_et.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_et.properties new file mode 100644 index 0000000000..ad5a891288 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +New\ View=Uus Vaade diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_et.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_et.properties new file mode 100644 index 0000000000..a90b4421ec --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Duration=Viimane kestvus diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_et.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_et.properties new file mode 100644 index 0000000000..3087f43621 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Failure=Viimane vigane ehitus diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_et.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_et.properties new file mode 100644 index 0000000000..709e98cf4c --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=Pole diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_et.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_et.properties new file mode 100644 index 0000000000..ba7dc9a40e --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Success=Viimane t\u00F6\u00F6tav ehitus diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_et.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_et.properties new file mode 100644 index 0000000000..2c830493bc --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Status\ of\ the\ last\ build=Viimase ehituse tulemus diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_et.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_et.properties new file mode 100644 index 0000000000..8b9fe7fb1a --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Ilmateade, mis n\u00E4itab viimaste ehitamistulemuste kokkuv\u00F5tet diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_et.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_et.properties new file mode 100644 index 0000000000..c8e942804d --- /dev/null +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_et.properties @@ -0,0 +1,4 @@ +# 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/HistoryWidget/entry_et.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_et.properties new file mode 100644 index 0000000000..4774f87a26 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Console\ Output=Konsooli v\u00E4ljund diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_et.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_et.properties new file mode 100644 index 0000000000..c3e3859f34 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_et.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +More\ ...=Veel ... +for\ all=k\u00F5ikidele +for\ failures=eba\u00F5nnestumistele diff --git a/core/src/main/resources/jenkins/management/PluginsLink/info_et.properties b/core/src/main/resources/jenkins/management/PluginsLink/info_et.properties new file mode 100644 index 0000000000..b2344b9017 --- /dev/null +++ b/core/src/main/resources/jenkins/management/PluginsLink/info_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +updates\ available=uuendused saadaval diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_et.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_et.properties new file mode 100644 index 0000000000..5cf76a7f05 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_et.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Restore\ the\ previous\ version\ of\ Jenkins=Taasta Jenkinsi viimane versioon +buttonText=Alanda versiooniks {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_et.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_et.properties new file mode 100644 index 0000000000..a34ae03918 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_et.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Check=Kontrolli +Check\ File\ Fingerprint=Kontrolli Faili Signatuuri +File\ to\ check=Kontrolli faili +description=Sul on jar fail aga sa ei tea tema versiooninumbrit?
Leia see kontrollides faili signatuuri Jenkinsi andmebaasist. +
Leia see Jenkinsi s\u00F5rmej\u00E4lgede andmebaasist. +
Leia see Jenkinsi s\u00F5rmej\u00E4lgede andmebaasist. +more\ details=lisadetailid diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_et.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_et.properties new file mode 100644 index 0000000000..8bfe9066a8 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_et.properties @@ -0,0 +1,15 @@ +# This file is under the MIT License by authors + +blue=Viimane ehitust\u00F6\u00F6 \u00F5nnestus. +blue_anime=Viimane ehitust\u00F6\u00F6 \u00F5nnestus. Projekti ehitatakse uuesti. +grey=Projekti pole veel kordagi ehitatud v\u00F5i selle ehitamine on peatatud. +grey_anime=Projekt on esmakordselt ehitamisel. +health-00to20=Projekti tervis on alla 20%. Hiirega projekti ikooni kohal h\u00E4ljudes saad t\u00E4psema selgituse. +health-21to40=Projekti tervis on \u00FCle 20%, kuid v\u00E4hem kui 40%. Hiirega projekti ikooni kohal h\u00E4ljudes saad t\u00E4psema selgituse. +health-41to60=Projekti tervis on \u00FCle 40%, kuid v\u00E4hem kui 60%. Hiirega projekti ikooni kohal h\u00E4ljudes saad t\u00E4psema selgituse. +health-61to80=Projekti tervis on \u00FCle 60%, kuid v\u00E4hem kui 80%. Hiirega projekti ikooni kohal h\u00E4ljudes saad t\u00E4psema selgituse. +health-81plus=Projekti tervis on \u00FCle 80%. Hiirega projekti ikooni kohal h\u00E4ljudes saad t\u00E4psema selgituse. +red=Viimane ehitust\u00F6\u00F6 kukkus l\u00E4bi. +red_anime=Viimane ehitust\u00F6\u00F6 kukkus l\u00E4bi. Projekti ehitatakse uuesti. +yellow=Viimane ehitus k\u00FCll \u00F5nnestus oli ebastabiilne. Tavaliselt t\u00E4hendab see testide eba\u00F5nnestumist. +yellow_anime=Viimane ehitus k\u00FCll \u00F5nnestus oli ebastabiilne. Projekti ehitatakse uuesti. diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_et.properties b/core/src/main/resources/jenkins/model/Jenkins/login_et.properties new file mode 100644 index 0000000000..1f4612f8a7 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/login_et.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Password=Salas\u00F5na +User=Kasutaja +login=sisene diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_et.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_et.properties new file mode 100644 index 0000000000..624fc80d2e --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_et.properties @@ -0,0 +1,18 @@ +# This file is under the MIT License by authors + +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Lisa, eemalda, halda ja monitoori s\u00F5lmesid mida Jenkins j\u00E4rkude ehitamiseks kasutab. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Lisa, eemalda, blokeeri v\u00F5i v\u00F5imalda pistikprogramme mis laiendavad Jenkinsi funktsionaalsust. +Configure\ System=Konfigureeri S\u00FCsteemi +Configure\ global\ settings\ and\ paths.=Halda globaalseid seadeid ja teid. +JenkinsCliText=Kasuta/halda Jenkinsit oma shellist v\u00F5i skriptist. +Load\ Statistics=Laadi Statistika +Manage\ Jenkins=Halda Jenkins''it +Manage\ Nodes=Halda S\u00F5lmesid +Manage\ Plugins=Halda Pistikprogramme +Prepare\ for\ Shutdown=Valmistu Sulgemiseks +Reload\ Configuration\ from\ Disk=V\u00E4rskenda Konfiguratsioon K\u00F5vakettalt +Script\ Console=Skriptide Konsool +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=L\u00F5petab uute j\u00E4rkude ehitamise selleks et s\u00FCsteemi v\u00F5iks ilma probleemideta sulgeda. +System\ Information=S\u00FCsteemi informatsioon +System\ Log=S\u00FCsteemi logid +are.you.sure={0}: oled kindel? diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_et.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_et.properties new file mode 100644 index 0000000000..0b3f9393b0 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_et.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met:=Selle funktsiooni t\u00F6\u00F6tamiseks peavad olema t\u00E4idetud j\u00E4rgnevad tingimused: +The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses=Allavoolu projekt salvestab nende \u00FClesvoolu failide s\u00F5rmej\u00E4ljed mida ta kasutab +The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts=\u00DClesvoolu projekt salvestab oma j\u00E4rkude tulemuste s\u00F5rmej\u00E4ljed +This\ allows\ Jenkins\ to\ correlate\ two\ projects.=See lubab Jenkinsil seostada kaks projekti. +Title=Mis on "projektide seosed"? +body=Kui teil on kaks projekti mis s\u00F5ltuvad \u00FCksteisest, siis suudab Jenkins j\u00E4lgida seda millist \u00FClesvoolu projekti j\u00E4rku kasutatakse mingi allavoolu projekti j\u00E4rgu jaoks, kasutades s\u00F5rmej\u00E4lje toe poolt loodud kirjeid. diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_et.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_et.properties new file mode 100644 index 0000000000..4363a6b64a --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_et.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Compare=V\u00F5rdle +Project\ Relationship=Projektide seosed +downstream\ project=allavoolu projekt +upstream\ project=\u00FClesvoolu projekt diff --git a/core/src/main/resources/lib/form/advanced_et.properties b/core/src/main/resources/lib/form/advanced_et.properties new file mode 100644 index 0000000000..2c5985055d --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Advanced=Edasij\u00F5udnutele diff --git a/core/src/main/resources/lib/form/apply_et.properties b/core/src/main/resources/lib/form/apply_et.properties new file mode 100644 index 0000000000..e186484f3a --- /dev/null +++ b/core/src/main/resources/lib/form/apply_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Apply=Kinnita diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_et.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_et.properties new file mode 100644 index 0000000000..d4c7d3c609 --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=Konfiguratsioon diff --git a/core/src/main/resources/lib/form/helpArea_et.properties b/core/src/main/resources/lib/form/helpArea_et.properties new file mode 100644 index 0000000000..8595ad18b5 --- /dev/null +++ b/core/src/main/resources/lib/form/helpArea_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Loading...=Laen... diff --git a/core/src/main/resources/lib/form/textarea_et.properties b/core/src/main/resources/lib/form/textarea_et.properties new file mode 100644 index 0000000000..76a333f3d6 --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_et.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=Peida eelvaade +Preview=Eelvaade diff --git a/core/src/main/resources/lib/hudson/buildCaption_et.properties b/core/src/main/resources/lib/hudson/buildCaption_et.properties new file mode 100644 index 0000000000..89dc0ff204 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +cancel=katkesta diff --git a/core/src/main/resources/lib/hudson/buildHealth_et.properties b/core/src/main/resources/lib/hudson/buildHealth_et.properties new file mode 100644 index 0000000000..2ebbb24ab4 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Description=Kirjeldus diff --git a/core/src/main/resources/lib/hudson/buildListTable_et.properties b/core/src/main/resources/lib/hudson/buildListTable_et.properties new file mode 100644 index 0000000000..ccba4794d8 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildListTable_et.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Build=J\u00E4rk +Click\ to\ center\ timeline\ on\ event=Kl\u00F5psa s\u00FCndmusel selleks et see ajajoonel keskele tuua +Console\ output=Konsooli v\u00E4ljund +Status=Staatus +Time\ Since=M\u00F6\u00F6dunud Aeg diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_et.properties b/core/src/main/resources/lib/hudson/buildProgressBar_et.properties new file mode 100644 index 0000000000..e7910ad3f0 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +text=Alustas {0} tagasi
Arvatavasti l\u00F5petab kell {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_et.properties b/core/src/main/resources/lib/hudson/editableDescription_et.properties new file mode 100644 index 0000000000..ae4c74c8bc --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_et.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +add\ description=lisa kirjeldus +edit\ description=muuda kirjeldust diff --git a/core/src/main/resources/lib/hudson/executors_et.properties b/core/src/main/resources/lib/hudson/executors_et.properties new file mode 100644 index 0000000000..0285e84879 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_et.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Build\ Executor\ Status=Ehituste k\u00E4ivitaja olek +Building=Ehitab +Idle=J\u00F5ude +Master=\u00DClem +Status=Olek +offline=offlain +terminate\ this\ build=katkesta see ehitamine diff --git a/core/src/main/resources/lib/hudson/iconSize_et.properties b/core/src/main/resources/lib/hudson/iconSize_et.properties new file mode 100644 index 0000000000..8e5fb4ca74 --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Icon=Ikoon diff --git a/core/src/main/resources/lib/hudson/newFromList/form_et.properties b/core/src/main/resources/lib/hudson/newFromList/form_et.properties new file mode 100644 index 0000000000..afeeb40405 --- /dev/null +++ b/core/src/main/resources/lib/hudson/newFromList/form_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Copy\ from=Kopeeritava t\u00F6\u00F6 nimi diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_et.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_et.properties new file mode 100644 index 0000000000..f507948b52 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_et.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Downstream\ Projects=S\u00F5ltuvad projektid +Upstream\ Projects=Projekti s\u00F5ltuvused diff --git a/core/src/main/resources/lib/hudson/queue_et.properties b/core/src/main/resources/lib/hudson/queue_et.properties new file mode 100644 index 0000000000..69eadf058f --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_et.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Build\ Queue=Ehitus j\u00E4rjekord +No\ builds\ in\ the\ queue.=Ehitamisi pole j\u00E4rjekorras +WaitingFor=Ootan {0} diff --git a/core/src/main/resources/lib/hudson/rssBar_et.properties b/core/src/main/resources/lib/hudson/rssBar_et.properties new file mode 100644 index 0000000000..51be6beccd --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_et.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +for\ all=k\u00F5igi kohta +for\ failures=vigaste ehituste kohta +for\ just\ latest\ builds=ainult uuemate ehituste kohta diff --git a/core/src/main/resources/lib/hudson/test-result_et.properties b/core/src/main/resources/lib/hudson/test-result_et.properties new file mode 100644 index 0000000000..797b62f763 --- /dev/null +++ b/core/src/main/resources/lib/hudson/test-result_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +no\ failures=vigu pole diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_et.properties b/core/src/main/resources/lib/layout/breadcrumbBar_et.properties new file mode 100644 index 0000000000..220ecece1a --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_et.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=LUBA AUTOMAATNE V\u00C4RSKENDAMINE diff --git a/core/src/main/resources/lib/layout/layout_et.properties b/core/src/main/resources/lib/layout/layout_et.properties index deccd1e33e..5c7796c9de 100644 --- a/core/src/main/resources/lib/layout/layout_et.properties +++ b/core/src/main/resources/lib/layout/layout_et.properties @@ -20,6 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +DISABLE\ AUTO\ REFRESH=KEELA AUTOMAATNE UUENDAMINE ENABLE\ AUTO\ REFRESH=UUENDA AUTOMAATSELT +Page\ generated=Leht genereeritud logout=logi v\u00E4lja search=otsi +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/core/src/main/resources/lib/test/bar_et.properties b/core/src/main/resources/lib/test/bar_et.properties new file mode 100644 index 0000000000..2905916c51 --- /dev/null +++ b/core/src/main/resources/lib/test/bar_et.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +failures={0} eba\u00F5nnestumist +tests={0} testi -- GitLab From 6fdb7ad89b930cb165e5aba4deb74160df1360a7 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:56 -0700 Subject: [PATCH 043/308] Community-contributed localization for Basque (eu) --- .../ReverseProxySetupMonitor/message_eu.properties | 4 ++++ .../hudson/model/AbstractBuild/index_eu.properties | 6 ++++++ .../hudson/model/AbstractBuild/sidepanel_eu.properties | 3 +++ .../hudson/model/AbstractBuild/tasks_eu.properties | 8 ++++++++ .../model/AbstractProject/makeDisabled_eu.properties | 3 +++ .../hudson/model/AbstractProject/sidepanel_eu.properties | 8 ++++++++ .../main/resources/hudson/model/Run/console_eu.properties | 3 +++ .../main/resources/hudson/model/Run/delete_eu.properties | 3 +++ .../main/resources/hudson/model/User/index_eu.properties | 3 +++ .../resources/hudson/model/User/sidepanel_eu.properties | 7 +++++++ .../hudson/model/View/People/index_eu.properties | 6 ++++++ .../resources/hudson/model/View/sidepanel_eu.properties | 6 ++++-- .../hudson/views/BuildButtonColumn/column_eu.properties | 4 ++++ .../views/DefaultViewsTabBar/viewTabs_eu.properties | 3 +++ .../hudson/views/LastDurationColumn/column_eu.properties | 3 +++ .../hudson/views/LastSuccessColumn/column_eu.properties | 3 +++ .../hudson/widgets/HistoryWidget/entry_eu.properties | 3 +++ .../resources/jenkins/model/Jenkins/manage_eu.properties | 8 ++++++++ .../lib/form/breadcrumb-config-outline_eu.properties | 3 +++ .../resources/lib/hudson/buildListTable_eu.properties | 4 ++++ .../resources/lib/hudson/buildProgressBar_eu.properties | 3 +++ .../lib/hudson/editableDescription_eu.properties | 3 +++ .../src/main/resources/lib/hudson/executors_eu.properties | 2 ++ core/src/main/resources/lib/hudson/rssBar_eu.properties | 2 +- .../main/resources/lib/layout/breadcrumbBar_eu.properties | 3 +++ core/src/main/resources/lib/layout/layout_eu.properties | 1 + 26 files changed, 102 insertions(+), 3 deletions(-) create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_eu.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_eu.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_eu.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_eu.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/makeDisabled_eu.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_eu.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_eu.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_eu.properties create mode 100644 core/src/main/resources/hudson/model/User/index_eu.properties create mode 100644 core/src/main/resources/hudson/model/User/sidepanel_eu.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_eu.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_eu.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_eu.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/column_eu.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_eu.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_eu.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/manage_eu.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_eu.properties create mode 100644 core/src/main/resources/lib/hudson/buildListTable_eu.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_eu.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_eu.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_eu.properties diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_eu.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_eu.properties new file mode 100644 index 0000000000..099d7002ef --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_eu.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Dismiss=baztertu +More\ Info=argibide gehiago diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_eu.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_eu.properties new file mode 100644 index 0000000000..b9331070f8 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_eu.properties @@ -0,0 +1,6 @@ +# 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/sidepanel_eu.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_eu.properties new file mode 100644 index 0000000000..ed29ceab0c --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_eu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Previous\ Build=Kompilazio lehengoa diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_eu.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_eu.properties new file mode 100644 index 0000000000..9789ce28d1 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_eu.properties @@ -0,0 +1,8 @@ +# 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/AbstractProject/makeDisabled_eu.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_eu.properties new file mode 100644 index 0000000000..1bcc5b3a88 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_eu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Disable\ Project=proiektua desaktibatu diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_eu.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_eu.properties new file mode 100644 index 0000000000..3b00ec864c --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_eu.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=Taulara itzuli +Changes=Aldaketak +Configure=Itxuratu +Status=Estatus +Wipe\ Out\ Workspace=Garbitu Workspace-a +delete={0} Ezabatu diff --git a/core/src/main/resources/hudson/model/Run/console_eu.properties b/core/src/main/resources/hudson/model/Run/console_eu.properties new file mode 100644 index 0000000000..28f63d8ab0 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_eu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Console\ Output=Kontsolaren irteera diff --git a/core/src/main/resources/hudson/model/Run/delete_eu.properties b/core/src/main/resources/hudson/model/Run/delete_eu.properties new file mode 100644 index 0000000000..8aeecb7cf2 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_eu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete\ this\ build=Kompilazioa ezabatu diff --git a/core/src/main/resources/hudson/model/User/index_eu.properties b/core/src/main/resources/hudson/model/User/index_eu.properties new file mode 100644 index 0000000000..7c11f01227 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_eu.properties @@ -0,0 +1,3 @@ +# 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/sidepanel_eu.properties b/core/src/main/resources/hudson/model/User/sidepanel_eu.properties new file mode 100644 index 0000000000..2f485ef3a4 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/sidepanel_eu.properties @@ -0,0 +1,7 @@ +# 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/View/People/index_eu.properties b/core/src/main/resources/hudson/model/View/People/index_eu.properties new file mode 100644 index 0000000000..f4a3cea3a1 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_eu.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Name=Izena +On=Piztuta +People=Gendea +User\ Id=Erabiltzaile IDa diff --git a/core/src/main/resources/hudson/model/View/sidepanel_eu.properties b/core/src/main/resources/hudson/model/View/sidepanel_eu.properties index bc8ef943d3..2b617a0b80 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_eu.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_eu.properties @@ -21,5 +21,7 @@ # THE SOFTWARE. Build\ History=Lan historia -NewJob=Berria {0} -People=Gendea +Check\ File\ Fingerprint=Bilatu fitxategiaren hatz-marka +NewJob={0} berria +People=Jendea +Project\ Relationship=Proiektuen erlazioa diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_eu.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_eu.properties new file mode 100644 index 0000000000..9b52342009 --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_eu.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build\ scheduled=Exekuzioa planifikatu da +Schedule\ a\ build=Eraikuntza antolatu diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_eu.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_eu.properties new file mode 100644 index 0000000000..a4fbb0f5b0 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_eu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +New\ View=Ikuspegi Berria diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_eu.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_eu.properties new file mode 100644 index 0000000000..b713e36a50 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_eu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=Z/E diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_eu.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_eu.properties new file mode 100644 index 0000000000..b713e36a50 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_eu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=Z/E diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_eu.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_eu.properties new file mode 100644 index 0000000000..28f63d8ab0 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_eu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Console\ Output=Kontsolaren irteera diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_eu.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_eu.properties new file mode 100644 index 0000000000..d9c2e071fc --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_eu.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Configure\ System=Sistema itxuratu +Manage\ Jenkins=Jenkins Kudeatu +Manage\ Nodes=nodoak kudeatu +Manage\ Plugins=hedadurak kudeatu +Prepare\ for\ Shutdown=gelditzeko prestatu +Reload\ Configuration\ from\ Disk=disko gogorrik itxura berriz kargatu diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_eu.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_eu.properties new file mode 100644 index 0000000000..c440a3981d --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_eu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=Konfigurazioa diff --git a/core/src/main/resources/lib/hudson/buildListTable_eu.properties b/core/src/main/resources/lib/hudson/buildListTable_eu.properties new file mode 100644 index 0000000000..b78c8d94bc --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildListTable_eu.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build=Eraiki +Status=Egoera diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_eu.properties b/core/src/main/resources/lib/hudson/buildProgressBar_eu.properties new file mode 100644 index 0000000000..d4dffaafef --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_eu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +text=Orain dela {0} hasita
Ustez falta den denbora: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_eu.properties b/core/src/main/resources/lib/hudson/editableDescription_eu.properties new file mode 100644 index 0000000000..c5f026fd7d --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_eu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +add\ description=deskribapena gehitu diff --git a/core/src/main/resources/lib/hudson/executors_eu.properties b/core/src/main/resources/lib/hudson/executors_eu.properties index d6b184c65d..d0ace2dde7 100644 --- a/core/src/main/resources/lib/hudson/executors_eu.properties +++ b/core/src/main/resources/lib/hudson/executors_eu.properties @@ -21,5 +21,7 @@ # THE SOFTWARE. Build\ Executor\ Status=Langilearen egoera +Building=Exekutatzen Idle=Geldirik Status=Egoera +terminate\ this\ build=Exekuzio hau bukatuarazi diff --git a/core/src/main/resources/lib/hudson/rssBar_eu.properties b/core/src/main/resources/lib/hudson/rssBar_eu.properties index d38d3c6161..a4245ba987 100644 --- a/core/src/main/resources/lib/hudson/rssBar_eu.properties +++ b/core/src/main/resources/lib/hudson/rssBar_eu.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=Kondaira +Legend=Azalpena for\ all=denentzako for\ failures=porrotentzako for\ just\ latest\ builds=azken lanentzako diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_eu.properties b/core/src/main/resources/lib/layout/breadcrumbBar_eu.properties new file mode 100644 index 0000000000..fb867dc7d7 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_eu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=AUTO-EGUNERATZEA GAITU diff --git a/core/src/main/resources/lib/layout/layout_eu.properties b/core/src/main/resources/lib/layout/layout_eu.properties index 015f20ec57..8950b167d3 100644 --- a/core/src/main/resources/lib/layout/layout_eu.properties +++ b/core/src/main/resources/lib/layout/layout_eu.properties @@ -22,5 +22,6 @@ ENABLE\ AUTO\ REFRESH=AUTOMATIKOKI REFRESKATU Page\ generated=Azken eguneraketa +logout=Itxi search=Bilatu searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -- GitLab From 74ca6927f8c1f9f25a4e165ba9c0dc8cee3efbea Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:56 -0700 Subject: [PATCH 044/308] Community-contributed localization for Finnish (fi) --- .../hudson/PluginManager/advanced_fi.properties | 4 ++-- .../hudson/PluginManager/index_fi.properties | 4 ++++ .../hudson/PluginManager/installed_fi.properties | 4 +++- .../hudson/PluginManager/table_fi.properties | 4 ++++ .../message_fi.properties | 6 +++--- .../RawHtmlMarkupFormatter/config_fi.properties | 3 +++ .../MatrixProject/newJobDetail_fi.properties | 3 +++ .../model/AbstractBuild/index_fi.properties | 5 +++-- .../model/AbstractBuild/sidepanel_fi.properties | 2 +- .../model/AbstractBuild/tasks_fi.properties | 5 +++-- .../AbstractModelObject/error_fi.properties | 4 ++++ .../AbstractProject/sidepanel_fi.properties | 4 +++- .../hudson/model/AllView/noJob_fi.properties | 4 ++++ .../Cause/UserIdCause/description_fi.properties | 1 + .../hudson/model/Computer/builds_fi.properties | 3 +++ .../model/Computer/sidepanel_fi.properties | 2 ++ .../model/ComputerSet/sidepanel_fi.properties | 1 + .../FreeStyleProject/newJobDetail_fi.properties | 3 +++ .../hudson/model/JDK/config_fi.properties | 3 +++ .../model/Job/buildTimeTrend_fi.properties | 2 ++ .../hudson/model/Job/configure_fi.properties | 1 + .../hudson/model/Job/index_fi.properties | 3 +++ .../ListView/configure-entries_fi.properties | 12 ++++++++++++ .../model/LoadStatistics/main_fi.properties | 1 + .../hudson/model/Run/configure_fi.properties | 5 +++++ .../hudson/model/Run/confirmDelete_fi.properties | 4 ++++ .../hudson/model/Run/console_fi.properties | 1 + .../hudson/model/Run/delete_fi.properties | 2 +- .../config_fi.properties | 5 +++++ .../CoreUpdateMonitor/message_fi.properties | 3 +++ .../RestartJenkinsJob/row_fi.properties | 3 +++ .../hudson/model/UpdateCenter/body_fi.properties | 4 +++- .../hudson/model/View/builds_fi.properties | 1 + .../hudson/model/View/configure_fi.properties | 6 ++++++ .../hudson/model/View/noJob_fi.properties | 4 ++++ .../hudson/model/View/sidepanel_fi.properties | 2 +- .../_entryForm_fi.properties | 7 +++++++ .../config_fi.properties | 2 +- .../loginLink_fi.properties | 3 +++ .../SlaveComputer/sidepanel2_fi.properties | 4 ++++ .../hudson/tasks/LogRotator/config_fi.properties | 5 +++++ .../test/MetaTabulatedResult/body_fi.properties | 6 +++++- .../tasks/test/TestResult/index_fi.properties | 2 +- .../floatingBox_fi.properties | 5 +++++ .../InstallSourceProperty/config_fi.properties | 4 ++++ .../tools/JDKInstaller/config_fi.properties | 3 +++ .../tools/ToolInstallation/global_fi.properties | 6 ++++++ .../config_fi.properties | 4 ++++ .../views/BuildButtonColumn/column_fi.properties | 3 ++- .../LastFailureColumn/columnHeader_fi.properties | 2 +- .../LastStableColumn/columnHeader_fi.properties | 3 +++ .../widgets/HistoryWidget/entry_fi.properties | 2 +- .../management/PluginsLink/info_fi.properties | 3 +++ .../model/Jenkins/configure_fi.properties | 1 + .../model/Jenkins/downgrade_fi.properties | 1 + .../jenkins/model/Jenkins/login_fi.properties | 6 ++++++ .../jenkins/model/Jenkins/manage_fi.properties | 16 ++++++++++++++++ .../Jenkins/projectRelationship_fi.properties | 4 ++++ .../resources/lib/form/advanced_fi.properties | 3 +++ .../form/breadcrumb-config-outline_fi.properties | 3 +++ .../resources/lib/form/textarea_fi.properties | 4 ++++ .../lib/hudson/buildListTable_fi.properties | 2 ++ .../resources/lib/hudson/iconSize_fi.properties | 2 +- .../resources/lib/hudson/queue_fi.properties | 3 ++- .../resources/lib/hudson/rssBar_fi.properties | 2 +- .../lib/layout/breadcrumbBar_fi.properties | 4 ++++ .../resources/lib/layout/layout_fi.properties | 8 ++++---- .../main/resources/lib/layout/task_fi.properties | 3 +++ .../main/resources/lib/test/bar_fi.properties | 3 ++- 69 files changed, 224 insertions(+), 29 deletions(-) create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_fi.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_fi.properties create mode 100644 core/src/main/resources/hudson/model/AbstractModelObject/error_fi.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_fi.properties create mode 100644 core/src/main/resources/hudson/model/Computer/builds_fi.properties create mode 100644 core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_fi.properties create mode 100644 core/src/main/resources/hudson/model/JDK/config_fi.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_fi.properties create mode 100644 core/src/main/resources/hudson/model/ListView/configure-entries_fi.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_fi.properties create mode 100644 core/src/main/resources/hudson/model/Run/confirmDelete_fi.properties create mode 100644 core/src/main/resources/hudson/model/StringParameterDefinition/config_fi.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_fi.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_fi.properties create mode 100644 core/src/main/resources/hudson/model/View/configure_fi.properties create mode 100644 core/src/main/resources/hudson/model/View/noJob_fi.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_fi.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_fi.properties create mode 100644 core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_fi.properties create mode 100644 core/src/main/resources/hudson/tasks/LogRotator/config_fi.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_fi.properties create mode 100644 core/src/main/resources/hudson/tools/InstallSourceProperty/config_fi.properties create mode 100644 core/src/main/resources/hudson/tools/JDKInstaller/config_fi.properties create mode 100644 core/src/main/resources/hudson/tools/ToolInstallation/global_fi.properties create mode 100644 core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_fi.properties create mode 100644 core/src/main/resources/hudson/views/LastStableColumn/columnHeader_fi.properties create mode 100644 core/src/main/resources/jenkins/management/PluginsLink/info_fi.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/login_fi.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/projectRelationship_fi.properties create mode 100644 core/src/main/resources/lib/form/advanced_fi.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_fi.properties create mode 100644 core/src/main/resources/lib/form/textarea_fi.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_fi.properties create mode 100644 core/src/main/resources/lib/layout/task_fi.properties diff --git a/core/src/main/resources/hudson/PluginManager/advanced_fi.properties b/core/src/main/resources/hudson/PluginManager/advanced_fi.properties index 32bfe1e8a3..b15f630e9a 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_fi.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_fi.properties @@ -22,13 +22,13 @@ Check\ now=Tarkista nyt File=Tiedosto -HTTP\ Proxy\ Configuration=HTTP-proxy-asetukset +HTTP\ Proxy\ Configuration=HTTP-v\u00E4lipalvelinasetukset Password=Salasana Port=Portti Server=Palvelin Submit=L\u00E4het\u00E4 URL=URL -Update\ Site=P\u00E4ivitys sivusto +Update\ Site=P\u00E4ivityssivusto Upload=Lataa Upload\ Plugin=Lataa liit\u00E4nn\u00E4inen User\ name=K\u00E4ytt\u00E4j\u00E4 diff --git a/core/src/main/resources/hudson/PluginManager/index_fi.properties b/core/src/main/resources/hudson/PluginManager/index_fi.properties index d0bfb990c3..2157ffbe8f 100644 --- a/core/src/main/resources/hudson/PluginManager/index_fi.properties +++ b/core/src/main/resources/hudson/PluginManager/index_fi.properties @@ -20,4 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +All=Kaikki +None=Ei mit\u00E4\u00E4n +Select=Valitse UpdatePageDescription=T\u00E4m\u00E4 sivu n\u00E4ytt\u00E4\u00E4 k\u00E4ytt\u00E4miesi liit\u00E4nn\u00E4isten p\u00E4ivitykset. +UpdatePageLegend=Harmaat rivit ovat jo p\u00E4ivitetty ja odottavat uudelleenk\u00E4ynnistyst\u00E4. V\u00E4rj\u00E4tyt mutta valittavat rivit ovat kesken tai ep\u00E4onnistuneet. diff --git a/core/src/main/resources/hudson/PluginManager/installed_fi.properties b/core/src/main/resources/hudson/PluginManager/installed_fi.properties index cf7144fc87..c04443e10d 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_fi.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_fi.properties @@ -20,11 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=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=Alenna versioon {0} +downgradeTo=Palaa versioon {0} diff --git a/core/src/main/resources/hudson/PluginManager/table_fi.properties b/core/src/main/resources/hudson/PluginManager/table_fi.properties index 32e59afec6..b5915403bc 100644 --- a/core/src/main/resources/hudson/PluginManager/table_fi.properties +++ b/core/src/main/resources/hudson/PluginManager/table_fi.properties @@ -21,7 +21,11 @@ # THE SOFTWARE. Check\ to\ install\ the\ plugin=Rastita asentaaksesi liit\u00E4nn\u00E4isen +Click\ this\ heading\ to\ sort\ by\ category=J\u00E4rjest\u00E4 klikkaamalla t\u00E4t\u00E4 otsikkoa +Download\ now\ and\ install\ after\ restart=Lataa ja asenna k\u00E4ynnistyksen j\u00E4lkeen +Filter=Suodatus Install=Asenna +Install\ without\ restart=Asenna ilman k\u00E4ynnistyst\u00E4 Installed=Asennettu Name=Nimi No\ updates=Ei p\u00E4ivityksi\u00E4 diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fi.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fi.properties index f67877c0fe..1fefbe6af5 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fi.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fi.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=Poistu -More\ Info=Lis\u00E4tietoa -blurb=Reverse-proxysi n\u00E4ytt\u00E4isi olevan rikki. +Dismiss=Hylk\u00E4\u00E4 +More\ Info=Lis\u00E4\u00E4 tietoa +blurb=Vaikuttaa silt\u00E4, ett\u00E4 edustapalvelimesi asetukset ovat rikkin\u00E4iset. diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_fi.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_fi.properties new file mode 100644 index 0000000000..4409a15661 --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_fi.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +blurb=K\u00E4sittele teksti\u00E4 HTML:n\u00E4 ja k\u00E4yt\u00E4 sit\u00E4 sellaisenaan ilman k\u00E4\u00E4nn\u00F6st\u00E4 diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_fi.properties b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_fi.properties new file mode 100644 index 0000000000..4074cd6f5c --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_fi.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +body=Sopii projekteille, joissa on paljon erilaisia konfiguraatioita, kuten k\u00E4\u00E4nnt\u00E4mist\u00E4 tai testaamista useilla alustoilla. diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_fi.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_fi.properties index 4f8b990528..c58b982094 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_fi.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_fi.properties @@ -20,13 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=K\u00E4\u00E4nn\u00F6s -Build\ Artifacts=K\u00E4\u00E4nn\u00F6ksen tuotokset +Build=Buildi +Build\ Artifacts=Buildin tuotokset Build\ number=K\u00E4\u00E4nn\u00F6snumero Changes\ in\ dependency=Muutokset riippuvuuksissa Permalinks=Staattiset linkit Took=Kesti Upstream\ Builds=Yl\u00E4virran k\u00E4\u00E4nn\u00F6kset +beingExecuted=K\u00E4\u00E4nn\u00F6s on ollut ajossa {0} ajan detail=yksityiskohdat on=koneella startedAgo=Aloitettiin {0} sitten diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fi.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fi.properties index 783fc37540..bf564ceab5 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fi.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fi.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Next\ Build=Seuraava k\u00E4\u00E4nn\u00F6s -Previous\ Build=Edellinen k\u00E4\u00E4nn\u00F6s +Previous\ Build=Edellinen buildi diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_fi.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_fi.properties index ea249cbef7..df7200fa12 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_fi.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_fi.properties @@ -22,8 +22,9 @@ Back\ to\ Project=Takaisin projektiin Changes=Muutokset -Console\ Output=Konsoli +Console\ Output=Konsolituloste +View\ Build\ Information=Katse k\u00E4\u00E4nn\u00F6ksen tietoja View\ as\ plain\ text=N\u00E4yt\u00E4 pelkk\u00E4n\u00E4 tekstin\u00E4 Edit\ Build\ Information=Muokkaa k\u00E4\u00E4nn\u00F6ksen tietoja Status=Tila -raw=muotoilematon +raw=muotoilemattomana diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/error_fi.properties b/core/src/main/resources/hudson/model/AbstractModelObject/error_fi.properties new file mode 100644 index 0000000000..9a2affea35 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractModelObject/error_fi.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Detail...=Lis\u00E4tiedot... +Error=Virhe diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fi.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fi.properties index 4fa02167a0..8c8b5383fe 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fi.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fi.properties @@ -25,6 +25,8 @@ Build\ scheduled=K\u00E4\u00E4nn\u00F6s on jonossa Changes=Muutokset Configure=Muokkaa Status=Tila -Wipe\ Out\ Workspace=Tyhjenn\u00E4 ty\u00F6hakemisto +Wipe\ Out\ Workspace=Tyhjenn\u00E4 ty\u00F6tila Workspace=Ty\u00F6hakemisto delete=Poista projekti +delete.confirm=Oletko varmna ett\u00E4 {0} ''{1}'' poistetaan ? +wipe.out.confirm=Oletko varma t\u00E4m\u00E4n ty\u00F6p\u00F6yd\u00E4n poistamisesta? diff --git a/core/src/main/resources/hudson/model/AllView/noJob_fi.properties b/core/src/main/resources/hudson/model/AllView/noJob_fi.properties new file mode 100644 index 0000000000..074d2ee2df --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_fi.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Welcome\ to\ Jenkins!=Tervetuloa Jenkins! +newJob= luoda uusia ty\u00F6paikkoja , jotta p\u00E4\u00E4set alkuun. diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fi.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fi.properties index 78d12af509..60831066a4 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fi.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fi.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. started_by_anonymous=Anonyymin k\u00E4ytt\u00E4j\u00E4n k\u00E4ynnist\u00E4m\u00E4 +started_by_user=K\u00E4ynnist\u00E4j\u00E4: {1} diff --git a/core/src/main/resources/hudson/model/Computer/builds_fi.properties b/core/src/main/resources/hudson/model/Computer/builds_fi.properties new file mode 100644 index 0000000000..446de4a4a6 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/builds_fi.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title=K\u00E4\u00E4nn\u00F6shistoria suorittajalla {0} diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_fi.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_fi.properties index 9c4e6a6f4e..f3fb8825cc 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_fi.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_fi.properties @@ -23,5 +23,7 @@ Back\ to\ List=Takaisin listaan Build\ History=K\u00E4\u00E4nn\u00F6shistoria Configure=Konfiguroi +Delete\ Slave=Poista suorittaja Load\ Statistics=Kuormatilastot +Script\ Console=Skriptikonsoli Status=Tila diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_fi.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_fi.properties index 7f0ec465ee..1ce314d5e8 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_fi.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_fi.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Back\ to\ Dashboard=Takaisin kojetauluun Configure=Konfiguroi Manage\ Jenkins=Hallinnoi Jenkinsi\u00E4 New\ Node=Uusi noodi diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_fi.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_fi.properties new file mode 100644 index 0000000000..aca64302b7 --- /dev/null +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_fi.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +body=T\u00E4m\u00E4 on Jenkins t\u00E4rkein ominaisuus. Jenkins rakentaa projektisi k\u00E4ytt\u00E4en versionhallintaa ja buildij\u00E4rjestelmi\u00E4. Voit k\u00E4ytt\u00E4\u00E4 t\u00E4t\u00E4 my\u00F6s muuhun kuin ohjelmien k\u00E4\u00E4nt\u00E4miseen. diff --git a/core/src/main/resources/hudson/model/JDK/config_fi.properties b/core/src/main/resources/hudson/model/JDK/config_fi.properties new file mode 100644 index 0000000000..e426f85cf6 --- /dev/null +++ b/core/src/main/resources/hudson/model/JDK/config_fi.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=Nimi diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_fi.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_fi.properties index 557b9f44bb..d1060a0860 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_fi.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_fi.properties @@ -20,5 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Build=K\u00E4\u00E4nn\u00F6s +Build\ Time\ Trend=K\u00E4\u00E4nn\u00F6sajan trendikuvaaja Duration=Kesto Timeline=Aikajana diff --git a/core/src/main/resources/hudson/model/Job/configure_fi.properties b/core/src/main/resources/hudson/model/Job/configure_fi.properties index 03769c1d17..bfb65f20a1 100644 --- a/core/src/main/resources/hudson/model/Job/configure_fi.properties +++ b/core/src/main/resources/hudson/model/Job/configure_fi.properties @@ -21,4 +21,5 @@ # THE SOFTWARE. Description=Kuvaus +Discard\ Old\ Builds=H\u00E4vit\u00E4 vanhat k\u00E4\u00E4nn\u00F6kset Save=Tallenna diff --git a/core/src/main/resources/hudson/model/Job/index_fi.properties b/core/src/main/resources/hudson/model/Job/index_fi.properties new file mode 100644 index 0000000000..08bba5fd96 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_fi.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Disable\ Project=Poista projekti k\u00E4yt\u00F6st\u00E4 diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_fi.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_fi.properties new file mode 100644 index 0000000000..0ae7038488 --- /dev/null +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_fi.properties @@ -0,0 +1,12 @@ +# This file is under the MIT License by authors + +Add\ column=Lis\u00E4\u00E4 sarake +All\ selected\ jobs=Kaikki valitut ty\u00F6t +Columns=Sarakkeet +Disabled\ jobs\ only=Vain ei-aktiiviset ty\u00F6t +Enabled\ jobs\ only=Vain aktiiviset ty\u00F6t +Job\ Filters=T\u00F6iden valinta +Jobs=Ty\u00F6t +Regular\ expression=S\u00E4\u00E4nn\u00F6llinen lauseke +Status\ Filter=Tilatiedon valinta +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=K\u00E4yt\u00E4 s\u00E4\u00E4nn\u00F6llist\u00E4 lausetta (regex) n\u00E4kym\u00E4ss\u00E4 n\u00E4ytettyjen t\u00F6iden valintaan diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_fi.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_fi.properties index 2fa2f2257c..2df450165d 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_fi.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_fi.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Load\ statistics\ graph=Kuormituksen kuvaaja Long=Pitk\u00E4 Medium=Keskipitk\u00E4 Short=Lyhyt diff --git a/core/src/main/resources/hudson/model/Run/configure_fi.properties b/core/src/main/resources/hudson/model/Run/configure_fi.properties new file mode 100644 index 0000000000..2f0b5a1105 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_fi.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Description=Kuvaus +DisplayName=N\u00E4ytt\u00F6nimi +LOADING=LATAA diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_fi.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_fi.properties new file mode 100644 index 0000000000..2b8248de17 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_fi.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Are\ you\ sure\ about\ deleting\ the\ build?=Haluatko varmasti poistaa k\u00E4\u00E4nn\u00F6ksen? +Yes=Kyll\u00E4 diff --git a/core/src/main/resources/hudson/model/Run/console_fi.properties b/core/src/main/resources/hudson/model/Run/console_fi.properties index 24072809f6..3683c8333b 100644 --- a/core/src/main/resources/hudson/model/Run/console_fi.properties +++ b/core/src/main/resources/hudson/model/Run/console_fi.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Console\ Output=Konsolituloste +skipSome=Piilotettu {0,number,integer} KB.. N\u00E4yt\u00E4 kaikki diff --git a/core/src/main/resources/hudson/model/Run/delete_fi.properties b/core/src/main/resources/hudson/model/Run/delete_fi.properties index 144dfd0b46..cd5c1a7892 100644 --- a/core/src/main/resources/hudson/model/Run/delete_fi.properties +++ b/core/src/main/resources/hudson/model/Run/delete_fi.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=Poista t\u00E4m\u00E4 k\u00E4\u00E4nn\u00F6s +Delete\ this\ build=Poista t\u00E4m\u00E4 buildi diff --git a/core/src/main/resources/hudson/model/StringParameterDefinition/config_fi.properties b/core/src/main/resources/hudson/model/StringParameterDefinition/config_fi.properties new file mode 100644 index 0000000000..c81d1aa824 --- /dev/null +++ b/core/src/main/resources/hudson/model/StringParameterDefinition/config_fi.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Default\ Value=Oletusarvo +Description=Kuvaus +Name=Nimi diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_fi.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_fi.properties new file mode 100644 index 0000000000..4822e11895 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_fi.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +NewVersionAvailable=Uusi Jenkinsin versio ({0}) on saatavana (muutosloki). diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_fi.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_fi.properties new file mode 100644 index 0000000000..4819488493 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_fi.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Restarting\ Jenkins=Jenkins k\u00E4ynnistet\u00E4\u00E4n uudelleen diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_fi.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_fi.properties index 9c244dad4d..da3eda893e 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_fi.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_fi.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -warning=K\u00E4ynnist\u00E4 Jenkins uudelleen kun asennus on valmis ja t\u00F6it\u00E4 ei ole ajossa +Go\ back\ to\ the\ top\ page=Alkuun +warning=K\u00E4ynnist\u00E4 Jenkins uudelleen asennuksen j\u00E4lkeen, kun t\u00F6it\u00E4 ei ole ajossa +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=voit aloittaa liit\u00E4nn\u00E4isten k\u00E4yt\u00F6n v\u00E4litt\u00E4m\u00E4sti asennuksen j\u00E4lkeen diff --git a/core/src/main/resources/hudson/model/View/builds_fi.properties b/core/src/main/resources/hudson/model/View/builds_fi.properties index 246e57f394..b93f91e9dd 100644 --- a/core/src/main/resources/hudson/model/View/builds_fi.properties +++ b/core/src/main/resources/hudson/model/View/builds_fi.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Export\ as\ plain\ XML=Vie XML-muodossa buildHistory={0} k\u00E4\u00E4nn\u00F6shistoria diff --git a/core/src/main/resources/hudson/model/View/configure_fi.properties b/core/src/main/resources/hudson/model/View/configure_fi.properties new file mode 100644 index 0000000000..5de2ed274c --- /dev/null +++ b/core/src/main/resources/hudson/model/View/configure_fi.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Description=N\u00E4kym\u00E4n kuvaus +Filter\ build\ executors=Suodata suorittajalista +Filter\ build\ queue=Suodata k\u00E4\u00E4nn\u00F6sjono +Name=N\u00E4kym\u00E4n nimi diff --git a/core/src/main/resources/hudson/model/View/noJob_fi.properties b/core/src/main/resources/hudson/model/View/noJob_fi.properties new file mode 100644 index 0000000000..bc3bcbab4a --- /dev/null +++ b/core/src/main/resources/hudson/model/View/noJob_fi.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +description_1=T\u00E4ss\u00E4 n\u00E4kym\u00E4ss\u00E4 ei ole m\u00E4\u00E4riteltyj\u00E4 t\u00F6it\u00E4. +description_2=Voit joko lis\u00E4t\u00E4 olemassa olevia t\u00F6it\u00E4 t\u00E4h\u00E4n n\u00E4kym\u00E4\u00E4n tai luoda uuden ty\u00F6n. diff --git a/core/src/main/resources/hudson/model/View/sidepanel_fi.properties b/core/src/main/resources/hudson/model/View/sidepanel_fi.properties index 433f20a49d..5da81bd180 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_fi.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_fi.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Build\ History=K\u00E4\u00E4nn\u00F6shistoria -Check\ File\ Fingerprint=Tarkasta tiedoston sormenj\u00E4ljet +Check\ File\ Fingerprint=Tarkasta tiedoston sormenj\u00E4lki Delete\ View=Poista n\u00E4kym\u00E4 Edit\ View=Muokkaa n\u00E4kym\u00E4\u00E4 NewJob=Uusi {0} diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_fi.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_fi.properties new file mode 100644 index 0000000000..cc82bf58f0 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_fi.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Confirm\ password=Varmista salasana +E-mail\ address=S\u00E4hk\u00F6postiosoite +Full\ name=Koko nimi +Password=Salasana +Username=K\u00E4ytt\u00E4j\u00E4tunnus diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_fi.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_fi.properties index 934a3c4c80..f5f4ef91b6 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_fi.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_fi.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Allow\ users\ to\ sign\ up=Salli k\u00E4ytt\u00E4jien rekisteri\u00F6tyminen +Allow\ users\ to\ sign\ up=Salli k\u00E4ytt\u00E4jien rekister\u00F6ityminen diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_fi.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_fi.properties new file mode 100644 index 0000000000..0fdb85fc6b --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_fi.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +sign\ up=rekister\u00F6idy diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_fi.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_fi.properties new file mode 100644 index 0000000000..35b6a3139b --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_fi.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Log=Loki +System\ Information=Systeemitiedot diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_fi.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_fi.properties new file mode 100644 index 0000000000..1ae7835a39 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_fi.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Days\ to\ keep\ builds=Kuinka monta p\u00E4iv\u00E4\u00E4 k\u00E4\u00E4nn\u00F6kset s\u00E4ilytet\u00E4\u00E4n +Max\ #\ of\ builds\ to\ keep=S\u00E4ilytett\u00E4v\u00E4t k\u00E4\u00E4nn\u00F6kset +if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=jos annettu, s\u00E4ilyt\u00E4 k\u00E4\u00E4nn\u00F6stietoja enint\u00E4\u00E4n n\u00E4in monta p\u00E4iv\u00E4\u00E4 diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_fi.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_fi.properties index 2be4c4709d..514730efe9 100644 --- a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_fi.properties +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_fi.properties @@ -20,9 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Age=Ik\u00E4 +All\ Failed\ Tests=Kaikki ep\u00E4onnistuneet testit All\ Tests=Kaikki testit Duration=Kesto Fail=Ep\u00E4onnistui -Skip=Ohitettu +Loading...=Ladataan... +Skip=Ohitettiin +Test\ Name=Testin nimi Total=Yhteens\u00E4 diff=muutos diff --git a/core/src/main/resources/hudson/tasks/test/TestResult/index_fi.properties b/core/src/main/resources/hudson/tasks/test/TestResult/index_fi.properties index adae2eb34c..729d4cb3ba 100644 --- a/core/src/main/resources/hudson/tasks/test/TestResult/index_fi.properties +++ b/core/src/main/resources/hudson/tasks/test/TestResult/index_fi.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -took=Vei {0} +took=Aikaa kului {0}. diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_fi.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_fi.properties new file mode 100644 index 0000000000..d86922b6e6 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_fi.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Test\ Result\ Trend=Testitulosten trendi +enlarge=suurenna +just\ show\ failures=n\u00E4yt\u00E4 vain virheet diff --git a/core/src/main/resources/hudson/tools/InstallSourceProperty/config_fi.properties b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_fi.properties new file mode 100644 index 0000000000..96bc04fb38 --- /dev/null +++ b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_fi.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Add\ Installer=Lis\u00E4\u00E4 asentaja +Delete\ Installer=Poista asentaja diff --git a/core/src/main/resources/hudson/tools/JDKInstaller/config_fi.properties b/core/src/main/resources/hudson/tools/JDKInstaller/config_fi.properties new file mode 100644 index 0000000000..52f34d7f98 --- /dev/null +++ b/core/src/main/resources/hudson/tools/JDKInstaller/config_fi.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Version=Versio diff --git a/core/src/main/resources/hudson/tools/ToolInstallation/global_fi.properties b/core/src/main/resources/hudson/tools/ToolInstallation/global_fi.properties new file mode 100644 index 0000000000..b4739b02cc --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolInstallation/global_fi.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +description=Listaa {0}-asennukset t\u00E4ss\u00E4 j\u00E4rjestelm\u00E4ss\u00E4 +label.add=Lis\u00E4\u00E4 {0} +label.delete=Poista {0} +title={0}-asennukset diff --git a/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_fi.properties b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_fi.properties new file mode 100644 index 0000000000..e69cab6aa1 --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_fi.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Home=Koti +Name=Nimi diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_fi.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_fi.properties index dd1abde67f..6855452b44 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_fi.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_fi.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Schedule\ a\ build=Aloita k\u00E4\u00E4nt\u00F6 +Build\ scheduled=Ajastettu buildi +Schedule\ a\ build=Aloita k\u00E4\u00E4nn\u00F6s diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_fi.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_fi.properties index caa6de2cf6..6cf3d7b695 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_fi.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_fi.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=Edellinen ep\u00E4onnistunut +Last\ Failure=Meni p\u00E4in metsi\u00E4 diff --git a/core/src/main/resources/hudson/views/LastStableColumn/columnHeader_fi.properties b/core/src/main/resources/hudson/views/LastStableColumn/columnHeader_fi.properties new file mode 100644 index 0000000000..73044d9fc3 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastStableColumn/columnHeader_fi.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Stable=Edellinen vakaa diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_fi.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_fi.properties index 883807f5b8..5aaa174aaa 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_fi.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_fi.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Konsoli +Console\ Output=Konsolin ulosanti diff --git a/core/src/main/resources/jenkins/management/PluginsLink/info_fi.properties b/core/src/main/resources/jenkins/management/PluginsLink/info_fi.properties new file mode 100644 index 0000000000..21f95b969a --- /dev/null +++ b/core/src/main/resources/jenkins/management/PluginsLink/info_fi.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +updates\ available=p\u00E4ivityksi\u00E4 saatavana diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_fi.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_fi.properties index ec4da9162a..97a5720512 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_fi.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_fi.properties @@ -21,4 +21,5 @@ # THE SOFTWARE. Home\ directory=Kotihakemisto +LOADING=LADATAAN System\ Message=J\u00E4rjestelm\u00E4viesti diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_fi.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_fi.properties index fbe3b65327..4878ff168d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_fi.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_fi.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Restore\ the\ previous\ version\ of\ Jenkins=Palauta Jenkinsin edellinen versio +buttonText=Palaa versioon {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_fi.properties b/core/src/main/resources/jenkins/model/Jenkins/login_fi.properties new file mode 100644 index 0000000000..e6a2d618ae --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/login_fi.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Password=Salasana +Remember\ me\ on\ this\ computer=Muista minut t\u00E4ll\u00E4 koneella +User=K\u00E4ytt\u00E4j\u00E4 +login=kirjaudu sis\u00E4\u00E4n diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_fi.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_fi.properties index 2ecd95ee6a..7d43d00ef4 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_fi.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_fi.properties @@ -20,4 +20,20 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Lis\u00E4\u00E4, poista, hallitse ja tarkkaile solmuja, joita Jenkins k\u00E4ytt\u00E4\u00E4 k\u00E4\u00E4nt\u00E4miseen. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Lis\u00E4\u00E4, poista, aktivoi tai deaktivoi liit\u00E4nn\u00E4isi\u00E4, jotka lis\u00E4\u00E4v\u00E4t Jenkinsiin toiminnallisuutta. +Configure\ System=J\u00E4rjestelm\u00E4n asetukset +Configure\ global\ settings\ and\ paths.=Muokkaa j\u00E4rjestelm\u00E4n asetuksia ja polkuja. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Lue uudet asetukset levylt\u00E4. +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Suorita skriptej\u00E4 hallintaan, vianetsin\u00E4\u00E4n ja diagnostiikkaan. +Jenkins\ CLI=Jenkinsin komentorivi +JenkinsCliText=Hallitse Jenkinsia komentorivilt\u00E4 tai skriptill\u00E4. +Load\ Statistics=Kuormitustilastot +LoadStatisticsText=Tarkkaile resurssien k\u00E4ytt\u00F6\u00E4 ja seuraa, onko tarvetta lis\u00E4tietokoneille k\u00E4\u00E4nn\u00F6sty\u00F6t\u00E4 varten. Manage\ Jenkins=S\u00E4\u00E4d\u00E4 Jenkinsia +Manage\ Nodes=Hallitse Jenkins-solmuja +Reload\ Configuration\ from\ Disk=Uudelleenlataa asetukset +Script\ Console=Skriptikonsoli +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Pys\u00E4ytt\u00E4\u00E4 uusien k\u00E4\u00E4nn\u00F6ksien k\u00E4ynnist\u00E4misen, ett\u00E4 j\u00E4rjestelm\u00E4 voidaan ajaa turvallisesti alas. +SystemLogText=J\u00E4rjestelm\u00E4lokissa n\u00E4kyy Jenkinsiin liittyv\u00E4 java.util.logging-tuloste. +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=K\u00E4yt\u00E4 t\u00E4t\u00E4, kun asetustiedostoja on muokattu. diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_fi.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_fi.properties new file mode 100644 index 0000000000..ad8fe4c177 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_fi.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Compare=Vertaa +Project\ Relationship=Projektien riippuvuudet diff --git a/core/src/main/resources/lib/form/advanced_fi.properties b/core/src/main/resources/lib/form/advanced_fi.properties new file mode 100644 index 0000000000..0d26d9d439 --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_fi.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Advanced=Kehittynyt diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_fi.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_fi.properties new file mode 100644 index 0000000000..2e66c62fc4 --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_fi.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=asettelu diff --git a/core/src/main/resources/lib/form/textarea_fi.properties b/core/src/main/resources/lib/form/textarea_fi.properties new file mode 100644 index 0000000000..b6bf0b9847 --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_fi.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=Piilota esikatselu +Preview=Esikatsele diff --git a/core/src/main/resources/lib/hudson/buildListTable_fi.properties b/core/src/main/resources/lib/hudson/buildListTable_fi.properties index 82e03361e0..f79f70381b 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_fi.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_fi.properties @@ -21,5 +21,7 @@ # THE SOFTWARE. Build=K\u00E4\u00E4nn\u00F6s +Click\ to\ center\ timeline\ on\ event=Klikkaa keskitt\u00E4\u00E4ksesi tapahtuma aikajanalle Console\ output=Konsolituloste Status=Status +Time\ Since=Aika alkaen diff --git a/core/src/main/resources/lib/hudson/iconSize_fi.properties b/core/src/main/resources/lib/hudson/iconSize_fi.properties index 8bdd1b0c2a..81f1f18524 100644 --- a/core/src/main/resources/lib/hudson/iconSize_fi.properties +++ b/core/src/main/resources/lib/hudson/iconSize_fi.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=Ikoni +Icon=Kuvake diff --git a/core/src/main/resources/lib/hudson/queue_fi.properties b/core/src/main/resources/lib/hudson/queue_fi.properties index d9376cea1a..458beace3c 100644 --- a/core/src/main/resources/lib/hudson/queue_fi.properties +++ b/core/src/main/resources/lib/hudson/queue_fi.properties @@ -22,5 +22,6 @@ Build\ Queue=K\u00E4\u00E4nn\u00F6sjono Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkinsin alasajo alkaa pian. Enempi\u00E4 k\u00E4\u00E4nn\u00F6ksi\u00E4 ei nyt aloiteta. -No\ builds\ in\ the\ queue.=Ei k\u00E4\u00E4nn\u00F6ksi\u00E4 jonossa +No\ builds\ in\ the\ queue.=Ei k\u00E4\u00E4nn\u00F6ksi\u00E4 jonossa. +WaitingFor=Odottaa {0} cancel=keskeyt\u00E4 diff --git a/core/src/main/resources/lib/hudson/rssBar_fi.properties b/core/src/main/resources/lib/hudson/rssBar_fi.properties index 60543dcc57..404ea7c750 100644 --- a/core/src/main/resources/lib/hudson/rssBar_fi.properties +++ b/core/src/main/resources/lib/hudson/rssBar_fi.properties @@ -23,4 +23,4 @@ Legend=Selite for\ all=kaikista for\ failures=ep\u00E4onnistuneista -for\ just\ latest\ builds=viimeisimmist\u00E4 +for\ just\ latest\ builds=vain viimeisimmist\u00E4 diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_fi.properties b/core/src/main/resources/lib/layout/breadcrumbBar_fi.properties new file mode 100644 index 0000000000..602136e5f8 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_fi.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=POISTA AUTOMAATTINEN P\u00C4IVITYS K\u00C4YT\u00D6ST\u00C4 +ENABLE\ AUTO\ REFRESH=Salli n\u00E4kym\u00E4n virkist\u00E4minen diff --git a/core/src/main/resources/lib/layout/layout_fi.properties b/core/src/main/resources/lib/layout/layout_fi.properties index 939cbb94de..8faa3ad861 100644 --- a/core/src/main/resources/lib/layout/layout_fi.properties +++ b/core/src/main/resources/lib/layout/layout_fi.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -DISABLE\ AUTO\ REFRESH=AUTOM. P\u00C4IVITYS POIS P\u00C4\u00C4LT\u00C4 -ENABLE\ AUTO\ REFRESH=AUTOM. P\u00C4IVITYS P\u00C4\u00C4LLE -Page\ generated=Sivu generoitiin +DISABLE\ AUTO\ REFRESH=AUTOM. P\u00C4IVITYS P\u00C4\u00C4LLE +ENABLE\ AUTO\ REFRESH=P\u00C4IVIT\u00C4 AUTOMAATTISESTI +Page\ generated=Sivu luotiin logout=Kirjaudu ulos -search=etsi +search=Koitas l\u00F6yt\u00E4\u00E4 t\u00E4\u00E4lt\u00E4 searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/core/src/main/resources/lib/layout/task_fi.properties b/core/src/main/resources/lib/layout/task_fi.properties new file mode 100644 index 0000000000..4ee5405d3e --- /dev/null +++ b/core/src/main/resources/lib/layout/task_fi.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Done.=Valmis. diff --git a/core/src/main/resources/lib/test/bar_fi.properties b/core/src/main/resources/lib/test/bar_fi.properties index c518d1167f..6a601b02da 100644 --- a/core/src/main/resources/lib/test/bar_fi.properties +++ b/core/src/main/resources/lib/test/bar_fi.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -failures={0} ep\u00E4onnistunutta +failures={0} ep\u00E4onnistui +skipped={0} ohitettu tests={0} testi\u00E4 -- GitLab From 9c7f83659dcf506e27ddbfb72e354f1f96e6bce0 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:56 -0700 Subject: [PATCH 045/308] Community-contributed localization for French (fr) --- .../hudson/PluginManager/advanced_fr.properties | 7 +++---- .../hudson/PluginManager/index_fr.properties | 4 ++-- .../hudson/PluginManager/installed_fr.properties | 7 ++++--- .../hudson/PluginManager/table_fr.properties | 12 ++++++++---- .../OldDataMonitor/manage_fr.properties | 16 ++++++++-------- .../message_fr.properties | 6 +++--- .../MatrixProject/ajaxMatrix_fr.properties | 2 +- .../model/AbstractBuild/index_fr.properties | 11 ++++++----- .../model/AbstractBuild/sidepanel_fr.properties | 4 ++-- .../model/AbstractBuild/tasks_fr.properties | 14 +++++++------- .../AbstractItem/configure-common_fr.properties | 1 + .../model/AbstractItem/delete_fr.properties | 2 +- .../model/AbstractItem/noWorkspace_fr.properties | 4 ++-- .../AbstractProject/makeDisabled_fr.properties | 2 +- .../AbstractProject/sidepanel_fr.properties | 12 +++++++----- .../hudson/model/AllView/noJob_fr.properties | 2 +- .../BuildAuthorizationToken/config_fr.properties | 1 + .../UpstreamCause/description_fr.properties | 3 ++- .../Cause/UserIdCause/description_fr.properties | 2 +- .../hudson/model/Computer/index_fr.properties | 3 ++- .../model/Computer/sidepanel_fr.properties | 6 +++--- .../hudson/model/ComputerSet/index_fr.properties | 3 ++- .../model/ComputerSet/sidepanel_fr.properties | 2 +- .../FreeStyleProject/newJobDetail_fr.properties | 4 +--- .../model/Job/buildTimeTrend_fr.properties | 2 +- .../hudson/model/Job/configure_fr.properties | 2 +- .../hudson/model/Job/index_fr.properties | 1 + .../ListView/configure-entries_fr.properties | 2 ++ .../model/MyView/newViewDetail_fr.properties | 2 +- .../model/ParametersAction/index_fr.properties | 1 - .../model/ProxyView/newViewDetail_fr.properties | 3 +++ .../hudson/model/Run/configure_fr.properties | 5 ++--- .../hudson/model/Run/console_fr.properties | 5 +++-- .../hudson/model/Run/delete_fr.properties | 2 +- .../hudson/model/Run/logKeep_fr.properties | 2 +- .../CoreUpdateMonitor/message_fr.properties | 5 ++--- .../Canceled/status_fr.properties | 3 +++ .../Running/status_fr.properties | 3 +++ .../hudson/model/UpdateCenter/body_fr.properties | 4 +++- .../model/UpdateCenter/index_fr.properties | 4 ++-- .../model/UpdateCenter/sidepanel_fr.properties | 2 +- .../hudson/model/User/builds_fr.properties | 2 +- .../hudson/model/User/index_fr.properties | 1 + .../hudson/model/User/sidepanel_fr.properties | 4 ++-- .../model/View/AsynchPeople/index_fr.properties | 3 ++- .../hudson/model/View/People/index_fr.properties | 5 +++++ .../hudson/model/View/builds_fr.properties | 2 +- .../hudson/model/View/configure_fr.properties | 5 +++-- .../hudson/model/View/sidepanel_fr.properties | 10 +++++----- .../DiskSpace/cause_fr.properties | 3 +++ .../message_fr.properties | 2 ++ .../config_fr.properties | 4 +++- .../search/Search/search-failed_fr.properties | 4 ++++ .../UserSearchProperty/config_fr.properties | 4 ++++ .../_entryForm_fr.properties | 4 ++-- .../config_fr.properties | 2 +- .../index_fr.properties | 5 +---- .../LegacySecurityRealm/config_fr.properties | 4 ++++ .../DumbSlave/configure-entries_fr.properties | 1 - .../slaves/JNLPLauncher/main_fr.properties | 5 ++++- .../ChannelTermination/cause_fr.properties | 3 +++ .../LaunchFailed/cause_fr.properties | 2 +- .../config_fr.properties | 1 + .../SlaveComputer/sidepanel2_fr.properties | 2 +- .../FingerprintAction/index_fr.properties | 2 +- .../hudson/tasks/LogRotator/config_fr.properties | 4 ++++ .../tasks/junit/CaseResult/index_fr.properties | 2 +- .../tasks/junit/History/index_fr.properties | 1 + .../test/MetaTabulatedResult/body_fr.properties | 3 +-- .../test/MetaTabulatedResult/list_fr.properties | 6 ++++++ .../test/TestObject/sidepanel_fr.properties | 2 +- .../floatingBox_fr.properties | 2 +- .../tools/JDKInstaller/config_fr.properties | 2 +- .../tools/ToolInstallation/config_fr.properties | 4 ++++ .../tools/ToolInstallation/global_fr.properties | 2 +- .../SCMTrigger/BuildAction/index_fr.properties | 2 +- .../DescriptorImpl/index_fr.properties | 2 +- .../views/BuildButtonColumn/column_fr.properties | 5 ++++- .../DefaultViewsTabBar/viewTabs_fr.properties | 2 +- .../columnHeader_fr.properties | 2 +- .../LastDurationColumn/column_fr.properties | 2 +- .../LastFailureColumn/columnHeader_fr.properties | 2 +- .../views/LastFailureColumn/column_fr.properties | 2 +- .../LastStableColumn/columnHeader_fr.properties | 2 +- .../LastSuccessColumn/columnHeader_fr.properties | 2 +- .../views/LastSuccessColumn/column_fr.properties | 2 +- .../StatusColumn/columnHeader_fr.properties | 2 +- .../WeatherColumn/columnHeader_fr.properties | 2 +- .../BuildHistoryWidget/entries_fr.properties | 2 +- .../widgets/HistoryWidget/entry_fr.properties | 2 +- .../widgets/HistoryWidget/index_fr.properties | 8 ++++---- .../SecurityIsOffMonitor/message_fr.properties | 7 +++---- .../MasterComputer/configure_fr.properties | 6 +++--- .../jenkins/model/Jenkins/_cli_fr.properties | 2 ++ .../model/Jenkins/configure_fr.properties | 2 +- .../model/Jenkins/fingerprintCheck_fr.properties | 1 + .../model/Jenkins/loginError_fr.properties | 2 +- .../jenkins/model/Jenkins/manage_fr.properties | 6 ++++++ .../projectRelationship-help_fr.properties | 1 + .../Jenkins/projectRelationship_fr.properties | 4 ++-- .../resources/lib/form/advanced_fr.properties | 1 + .../form/breadcrumb-config-outline_fr.properties | 1 - .../resources/lib/form/textarea_fr.properties | 4 ++-- .../lib/hudson/buildCaption_fr.properties | 4 ++-- .../lib/hudson/buildListTable_fr.properties | 1 + .../lib/hudson/buildProgressBar_fr.properties | 2 +- .../lib/hudson/editableDescription_fr.properties | 4 ++-- .../resources/lib/hudson/executors_fr.properties | 11 ++++++----- .../lib/hudson/listScmBrowsers_fr.properties | 1 - .../hudson/project/config-builders_fr.properties | 1 - .../project/config-publishers2_fr.properties | 1 + .../config-upstream-pseudo-trigger_fr.properties | 3 ++- .../resources/lib/hudson/queue_fr.properties | 6 ++++-- .../resources/lib/hudson/rssBar_fr.properties | 6 +++--- .../lib/hudson/scriptConsole_fr.properties | 3 ++- .../lib/hudson/test-result_fr.properties | 2 +- .../lib/layout/breadcrumbBar_fr.properties | 5 +++-- .../resources/lib/layout/layout_fr.properties | 6 ++++-- 118 files changed, 253 insertions(+), 167 deletions(-) create mode 100644 core/src/main/resources/hudson/model/ProxyView/newViewDetail_fr.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_fr.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_fr.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_fr.properties create mode 100644 core/src/main/resources/hudson/node_monitors/DiskSpaceMonitorDescriptor/DiskSpace/cause_fr.properties create mode 100644 core/src/main/resources/hudson/search/Search/search-failed_fr.properties create mode 100644 core/src/main/resources/hudson/search/UserSearchProperty/config_fr.properties create mode 100644 core/src/main/resources/hudson/security/LegacySecurityRealm/config_fr.properties create mode 100644 core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_fr.properties create mode 100644 core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/list_fr.properties create mode 100644 core/src/main/resources/hudson/tools/ToolInstallation/config_fr.properties diff --git a/core/src/main/resources/hudson/PluginManager/advanced_fr.properties b/core/src/main/resources/hudson/PluginManager/advanced_fr.properties index 5b35621f0d..c27841534d 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_fr.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_fr.properties @@ -24,14 +24,13 @@ HTTP\ Proxy\ Configuration=Configuration du proxy HTTP Submit=Soumettre Upload\ Plugin=Soumettre un plugin File=Fichier -Update\ Site=Site de mise \u00E0 jour +Update\ Site=Rafra\u00EEchir site Upload=Soumettre -lastUpdated=Dernière mise à jour: il y a {0} +lastUpdated=Derni\u00E8re mise \u00E0 jour\u00A0: il y a {0} Check\ now=Vérifier maintenant -uploadtext=Indiquez ici le chemin vers un plugin à ajouter à ce serveur Jenkins +uploadtext=Vous pouvez t\u00E9l\u00E9verser un fichier .hpi pour installer un plugin ext\u00E9rieur au d\u00E9p\u00F4t centralis\u00E9 de plugin. Proxy\ Needs\ Authorization=Le proxy n\u00E9cessite une authentification Server=Serveur -Port= User\ name=Nom d''utilisateur No\ Proxy\ for=Pas de proxy pour Password=Mot de passe diff --git a/core/src/main/resources/hudson/PluginManager/index_fr.properties b/core/src/main/resources/hudson/PluginManager/index_fr.properties index ecd3a9d140..5ce204dc7a 100644 --- a/core/src/main/resources/hudson/PluginManager/index_fr.properties +++ b/core/src/main/resources/hudson/PluginManager/index_fr.properties @@ -22,6 +22,6 @@ All=Tous None=Aucun -Select=S\u00E9lectionnez -UpdatePageDescription=Cette page liste les mises à jour des plugins en cours d''utilisation. +Select=S\u00E9lectionner +UpdatePageDescription=Cette page liste les mises \u00E0 jour des plugins en cours d''utilisation. UpdatePageLegend=Les lignes d\u00E9sactiv\u00E9es sont d\u00E9j\u00E0 mises \u00E0 jour et attendent un red\u00E9marrage. Les lignes gris\u00E9es mais s\u00E9lectionnables sont en cours ou en \u00E9chec. diff --git a/core/src/main/resources/hudson/PluginManager/installed_fr.properties b/core/src/main/resources/hudson/PluginManager/installed_fr.properties index e66ab64597..fde1e85e1c 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_fr.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_fr.properties @@ -27,9 +27,10 @@ Restart\ Once\ No\ Jobs\ Are\ Running=Red\u00E9marrer quand tous les travaux son Uncheck\ to\ disable\ the\ plugin=D\u00e9cochez pour d\u00e9sactiver le plugin Enabled=Activ\u00e9 Name=Nom -Unpin=D\u00E9tacher +Uninstall=D\u00E9sinstaller +Unpin=Annuler \u00E9pingler Version=Version -Pinned=Epingl\u00E9 +Pinned=\u00C9pingl\u00E9 Previously\ installed\ version=Version pr\u00E9c\u00E9dente -downgradeTo=R\u00E9trograder vers {0} +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/table_fr.properties b/core/src/main/resources/hudson/PluginManager/table_fr.properties index 289e71cc74..14959a0cf5 100644 --- a/core/src/main/resources/hudson/PluginManager/table_fr.properties +++ b/core/src/main/resources/hudson/PluginManager/table_fr.properties @@ -20,12 +20,16 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ to\ install\ the\ plugin=Cochez pour installer le plugin -Click\ this\ heading\ to\ sort\ by\ category=Cliquez sur cette rubrique pour trier par cat\u00E9gorie +Check\ to\ install\ the\ plugin=Cocher pour installer le plugin +Click\ this\ heading\ to\ sort\ by\ category=Cliquez sur l''''en-t\u00EAte pour classer par cat\u00E9gorie +Download\ now\ and\ install\ after\ restart=T\u00E9l\u00E9charger maintenant et installer apr\u00E8s red\u00E9marrage +Filter=Filtre +Inactive=Inactif Install=Installer -Installed=Install\u00E9e +Install\ without\ restart=Installer sans red\u00E9marrer +Installed=Install\u00E9 Name=Nom Version=Version No\ updates=Pas de mises \u00e0 jour compatWarning=Avertissement: Cette nouvelle version n''est pas compatible avec la version install\u00E9e. Il peut \u00EAtre n\u00E9cessaire de reconfigurer les t\u00E2ches utilisant ce plugin. -coreWarning=Ce plugin est construit pour Jenkins {0} ou une version plus r\u00E9cente. Il pourrait ne pas fonctionner avec votre version de Jenkins. +coreWarning=Ce plugin est con\u00E7u pour Jenkins {0} ou une version plus r\u00E9cente. Il pourrait ne pas fonctionner avec votre version de Jenkins. diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_fr.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_fr.properties index 7eec7b7d4a..a29bc218a9 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_fr.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_fr.properties @@ -20,17 +20,17 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Discard\ Unreadable\ Data=Supprimer les donn\u00E9es non lisibles +Discard\ Unreadable\ Data=Supprimer les donn\u00E9es illisibles Error=Erreur -Manage\ Old\ Data=Gestion des donn\u00E9es p\u00E9rim\u00E9es +Manage\ Old\ Data=G\u00E9rer les donn\u00E9es d''ancien format Name=Nom -No\ old\ data\ was\ found.=Aucune donn\u00E9e obsol\u00E8te n''a \u00E9t\u00E9 trouv\u00E9e. +No\ old\ data\ was\ found.=Aucune ancienne donn\u00E9e trouv\u00E9e. Type=Type Unreadable\ Data=Donn\u00E9es illisibles Upgrade=Mettre \u00E0 jour Version=Version -blurb.1=Lorsqu''''''il y a des changements dans la fa\u00E7on de stocker les donn\u00E9es sur le disque, Jenkins utilise la strat\u00E9gie suivante: les donn\u00E9es sont migr\u00E9es vers la nouvelle structure lors de son chargement, mais le fichier n''''''est pas sauv\u00E9 dans le nouveau format. Cela permet de ramener Jenkins \u00E0 une version ant\u00E9rieure si besoin. Cependant, cela peut aussi laisser des donn\u00E9es dans le vieux format ind\u00E9finiment. La table ci-dessous liste les fichiers contenant de telles donn\u00E9es, ainsi que les versions de Jenkins o\u00F9 la structure de donn\u00E9es a \u00E9t\u00E9 modifi\u00E9e. -blurb.2=Parfois des erreurs apparaissent lors de la lecture de donn\u00E9es de configuration (si un plugin ajoute des donn\u00E9es et que ce plugin est d\u00E9sactiv\u00E9 ult\u00E9rieurement, si le code de migration ne prend pas en compte les changements de structure, ou si Jenkins est ramen\u00E9 en arri\u00E8re apr\u00E8s qu''''''il ait d\u00E9j\u00E0 \u00E9crit des donn\u00E9es non lisibles par l''''''ancienne version). Ces erreurs sont logg\u00E9es, mais les donn\u00E9es non lisibles sont ensuite ignor\u00E9es, permettant \u00E0 Jenkins de d\u00E9marrer et fonctionner correctement. -blurb.3=Le formulaire ci-dessous peut \u00EAtre utilis\u00E9 pour re-sauvegarder ces fichiers dans le format actuel. Cela implique qu''une r\u00E9installation de Jenkins \u00E0 une version ant\u00E9rieure \u00E0 la version s\u00E9lectionn\u00E9e ne sera pas capable de lire les donn\u00E9es stock\u00E9es dans le nouveau format. Notez que simplement utiliser Jenkins pour cr\u00E9er et configurer des jobs et ex\u00E9cuter des builds peut sauver des donn\u00E9es qui ne sont pas lisible par des versions plus vielles de Jenkins, m\u00EAme si ce formulaire est utilis\u00E9. De plus, si des erreurs concernant des donn\u00E9es illisibles sont report\u00E9es sur la partie droite du tableau ci-dessus, notez que ces donn\u00E9es seront perdues lorsque le fichier sera re-sauvegard\u00E9. -blurb.4=Le code supportant ces migrations de donn\u00E9es pourra finalement \u00EAtre enlev\u00E9. La compatibilit\u00E9 sera conserv\u00E9e pendant au moins 150 releases depuis le changement de structure. Les versions plus anciennes que cela sont en gras ci-dessus, et il est recommand\u00E9 de re-sauvegarder ces fichiers. -blurb.6=Il est acceptable de laisser des donn\u00E9es illisible dans ces fichiers, puisque Jenkins les ignorera. Pour \u00E9viter les messages de log au d\u00E9marrage de Jenkins, vous pouvez supprimer d\u00E9finitivement les donn\u00E9es illisibles en re-sauvant ces fichiers en utilisant le bouton ci-dessous. +blurb.1=Quand il y a des changements dans la fa\u00E7on dont les donn\u00E9es sont stock\u00E9es sur le disque, Jenkins utilise la strat\u00E9gie suivante : les donn\u00E9es sont traduites dans le nouveau format lorsqu''elles sont charg\u00E9es, mais le fichier n''est pas sauvegard\u00E9 dans le nouveau format. Cela permet de r\u00E9trograder la version de Jenkins si besoin. Cependant, les donn\u00E9es peuvent \u00EAtre conserv\u00E9es dans l''ancien format ind\u00E9finiment. Le tableau ci-dessous affiche les fichiers concern\u00E9s, et la version de Jenkins \u00E0 partir de laquelle le format a chang\u00E9. +blurb.2=Quelques fois, des erreurs surviennent \u00E0 lecture des donn\u00E9es (si un plugin ajoute des donn\u00E9es et qu''il est ensuite d\u00E9sactiv\u00E9, si le code de traduction des donn\u00E9es n''est pas \u00E9crit, ou si Jenkins est r\u00E9trograd\u00E9 apr\u00E8s qu''il ait \u00E9crit des donn\u00E9es non lisibles par l''ancienne version). Ces erreurs sont trac\u00E9es, mais les donn\u00E9es illisibles ne sont pas prises en compte, permettant le d\u00E9marrage et le fonctionnement normal de Jenkins. +blurb.3=Le formulaire suivant peut \u00EAtre utilis\u00E9 pour traduire ces fichiers dans le format courant. Cela implique qu''une r\u00E9trogradation de Jenkins \u00E0 une version ant\u00E9rieure ne sera pas capable de lire les donn\u00E9es dans ce nouveau format. Notez que le simple fait d''utiliser Jenkins pour de nouveaux jobs et constructions g\u00E9n\u00E9rera des fichiers qui ne seront pas lisibles par d''anciennes versions de format, m\u00EAme si ce formulaire n''est pas utilis\u00E9. De plus, si des erreurs de lecture sont affich\u00E9es dans la partie droite du tableau, notez que ces donn\u00E9es seront perdues sir le fichier est traduit. +blurb.4=Le code supportant ces traductions de donn\u00E9es peut \u00EAtre \u00E9ventuellement supprim\u00E9. La compatibilit\u00E9 sera maintenue pour au moins 150 versions apr\u00E8s le changement de format. Les version plus anciennes sont indiqu\u00E9es en gras ci-dessus, et il est recommand\u00E9 de traduire ces fichiers. +blurb.6=Il est possible de laisser les donn\u00E9es illisibles dans ces fichiers, car Jenkins les ignorera. Pour \u00E9viter les messages de traces au d\u00E9marrage de Jenkins, vous pouvez supprimer de fa\u00E7on d\u00E9ifnitivement les donn\u00E9es illisibles en traduisant les fichiers en utilisant le bouton ci-dessous. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fr.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fr.properties index 0c99f7367c..335ae04128 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fr.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=Rejeter -More\ Info=Plus d''informations -blurb=Il semble que votre configuration "reverse proxy" soit erron\u00E9e +Dismiss=Annuler +More\ Info=Plus d\u2019informations +blurb=La configuration de votre proxy inverse n''''est pas bonne diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_fr.properties b/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_fr.properties index 96b16d1808..2eb98346cc 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_fr.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Not\ configured=Non configur\u00e9 +Not\ configured=Non configuree diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_fr.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_fr.properties index eb1bc75d9d..0c885cc0a6 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_fr.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -on=sur -startedAgo=Démarré il y a {0} -Build=Compilation +on=concernant +startedAgo=D\u00E9marr\u00E9e il y a {0}. Changes\ in\ dependency=Changements dans les dépendances +beingExecuted=Le build est en cours d''ex\u00E9cution depuis {0} detail=détails Not\ yet\ determined=Non encore déterminé Failed\ to\ determine=Impossible à déterminer @@ -33,5 +33,6 @@ Downstream\ Builds=Builds en aval none=aucun Permalinks=Liens permanents Build\ number=Num\u00E9ro de build -Build\ Artifacts=Artefacts de la construction -Took=A pris +Build=Construction +Build\ Artifacts=Artefacts du build +Took=A dur\u00E9e diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fr.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fr.properties index b43beb5007..3d82b087f6 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Previous\ Build=Construction pr\u00E9c\u00E9dente -Next\ Build=Construction suivante +Previous\ Build=Build pr\u00E9c\u00E9dent +Next\ Build=Build suivant diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_fr.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_fr.properties index 2179f7fd17..b995d21336 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_fr.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=Retour au Projet -Changes=Changements -Console\ Output=Sortie Console -View\ as\ plain\ text=Version texte simple -Edit\ Build\ Information=Informations du Build -Status=Statut -View\ Build\ Information=Voir les infos de compilation +Back\ to\ Project=Retour au projet +Changes=Modifications +Console\ Output=Sortie console +View\ as\ plain\ text=Voir en tant que texte seulement +Edit\ Build\ Information=Informations de la construction +Status=\u00C9tat +View\ Build\ Information=Voir les informations du build raw=brut diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_fr.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_fr.properties index 2083669674..676b9ee7c6 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/configure-common_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_fr.properties @@ -21,6 +21,7 @@ # THE SOFTWARE. Advanced\ Project\ Options=Options avanc\u00E9es du projet +Restrict\ where\ this\ project\ can\ be\ run=Restreindre o\u00F9 le projet peut \u00EAtre ex\u00E9cuter Tie\ this\ project\ to\ a\ node=Associer ce projet \u00E0 un noeud Node=Noeud Execute\ concurrent\ builds\ if\ necessary\ =Ex\u00E9cuter les builds en parall\u00E8le si n\u00E9cessaire diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_fr.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_fr.properties index 729b885048..43bbfcd4a8 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_fr.properties @@ -22,4 +22,4 @@ Are\ you\ sure\ about\ deleting\ the\ job?=Etes-vous sûr de vouloir supprimer ce job? Yes=Oui -blurb=Etes vous sure de vouloir supprimer ce {0} "{1}"? +blurb=\u00CAtes vous s\u00FBr de vouloir supprimer ce {0} "{1}"? 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 e5b72c70da..b3eb852c5a 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_fr.properties @@ -23,7 +23,7 @@ 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 été renommé récemment et aucun build n'a été fait avec ce nouveau nom. +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 été lancé pour la dernière fois a été retirée. -li3=Le répertoire workspace ({0}) a été déplacé hors de Jenkins. +li3=Le r\u00E9pertoire de travail ({0}) a \u00E9t\u00E9 d\u00E9plac\u00E9 hors de Jenkins. text=Lancer un build afin de faire créer un workspace par Jenkins. diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_fr.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_fr.properties index 14d18b5485..7e38ff3fa0 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_fr.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. This\ project\ is\ currently\ disabled=Ce projet est actuellement désactivé -Disable\ Project=D\u00E9sactiver le Projet +Disable\ Project=D\u00E9sactiver le projet Enable=Activer diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fr.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fr.properties index 714bfbb172..6e69196e99 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fr.properties @@ -23,9 +23,11 @@ Back\ to\ Dashboard=Retour au tableau de bord Status=\u00c9tat Changes=Modifications -Workspace=Espace de travail -delete=Supprimer ce {0} +Workspace=R\u00E9pertoire de travail +delete=Supprimer {0} Configure=Configurer -Build\ scheduled=Construction programm\u00e9e -Wipe\ Out\ Workspace=Effacer le r\u00e9pertoire de travail courant -wipe.out.confirm=Voulez-vous vraiment effacer le r\u00e9pertoire de travail? +Build\ scheduled=Build programm\u00E9 +View\ Configuration=Voir la configuration +Wipe\ Out\ Workspace=Effacer l''espace de travail +delete.confirm=\u00CAtes-vous s\u00FBr de vouloir supprimer le {0} \u2018{1}\u2019? +wipe.out.confirm=Voulez-vous vraiment effacer le r\u00E9pertoire de travail\u00A0? diff --git a/core/src/main/resources/hudson/model/AllView/noJob_fr.properties b/core/src/main/resources/hudson/model/AllView/noJob_fr.properties index 5be9024431..4c1962e545 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_fr.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_fr.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Welcome\ to\ Jenkins\!=Bienvenue sur Jenkins ! -newJob=Veuillez cr\u00E9ez un nouveau job pour d\u00E9marrer. +newJob=Veuillez cr\u00E9er un nouveau job pour d\u00E9marrer. login=Vous devez vous \ identifier \ diff --git a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_fr.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_fr.properties index a3d63b8833..5ebc3aa7f2 100644 --- a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_fr.properties +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_fr.properties @@ -25,3 +25,4 @@ Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=Utilisez l''URL qui sui Trigger\ builds\ remotely=Déclencher les builds à distance e.g.,\ from\ scripts=Par exemple, à partir de scripts Optionally\ append\ &cause\=Cause+Text\ to\ provide\ text\ that\ will\ be\ included\ in\ the\ recorded\ build\ cause.=Optionnellement, ajoute le suffixe &cause=Cause+Text pour fournir du texte qui sera inclu dans la cause enregistrée pour le build. +or=ou diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_fr.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_fr.properties index a9778f6623..845ada15a1 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_fr.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_fr.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_project=Lancé par le projet amont {0} avec le numéro de build {1} +caused_by=Originellement lanc\u00E9 par: +started_by_project=Lanc\u00E9 par le projet amont {0} avec le num\u00E9ro de construction {1} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fr.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fr.properties index c47f4c09de..b5b2692fa0 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fr.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_anonymous=Lanc\u00E9 par l''usager anonyme +started_by_anonymous=Lanc\u00E9 par un utilisateur anonyme started_by_user=Lanc\u00e9 par l''utilisateur {1} diff --git a/core/src/main/resources/hudson/model/Computer/index_fr.properties b/core/src/main/resources/hudson/model/Computer/index_fr.properties index fc0e4b58df..fa177d6c26 100644 --- a/core/src/main/resources/hudson/model/Computer/index_fr.properties +++ b/core/src/main/resources/hudson/model/Computer/index_fr.properties @@ -20,9 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -submit.temporarilyOffline=Ce noeud est de nouveau en ligne +submit.temporarilyOffline=Basculer le n\u0153ud en ligne submit.not.temporarilyOffline=Marquer ce n\u0153ud comme temporairement hors ligne Labels\:=Libellés : title.projects_tied_on=Projets rattachés à {0} None=Aucun +submit.updateOfflineCause=Changer le commentaire de mise hors-ligne title.no_manual_launch=Ce noeud a une stratégie de disponiblité de type "{0}". Actuellement, cela oblige le noeud a être déconnecté. diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_fr.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_fr.properties index a01b54efe1..3c7a539c24 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_fr.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_fr.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Back\ to\ List=Retour à la liste -Build\ History=Historique des builds +Build\ History=Historique des constructions Script\ Console=Console de script Status=Statut -Delete\ Slave=Supprimer l''esclave +Delete\ Slave=Supprimer l\u2019esclave Configure=Configurer -Load\ Statistics=Statistiques d''utilisation +Load\ Statistics=Statistiques d\u2019utilisation diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_fr.properties b/core/src/main/resources/hudson/model/ComputerSet/index_fr.properties index a4e4e6520f..67aa354919 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_fr.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_fr.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Data\ obtained=Donn\u00E9es obtenues Name=Nom -Refresh\ status=Rafra\u00EEchir le statut +Refresh\ status=Actualiser l''''\u00E9tat Configure=Configurer diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_fr.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_fr.properties index 2f63149c85..227aeb51cf 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_fr.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_fr.properties @@ -23,5 +23,5 @@ Back\ to\ Dashboard=Retour au tableau de bord Manage\ Jenkins=Administrer Jenkins Configure=Configurer -New\ Node=Nouveau n\u0153ud +New\ Node=Cr\u00E9er un n\u0153ud diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_fr.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_fr.properties index a219b895b0..1e9753126b 100644 --- a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_fr.properties +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_fr.properties @@ -20,6 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=Ceci est la fonction principale de Jenkins qui sert \u00E0 builder (construire) votre projet.
\ - Vous pouvez int\u00E9grer tous les outils de gestion de version avec tous les syst\u00E8mes de build.
\ - Il est m\u00EAme possible d''utiliser Jenkins pour tout autre chose qu''un build logiciel. +body=Ceci est la fonction principale de Jenkins qui sert \u00E0 builder (construire) votre projet.
Vous pouvez int\u00E9grer tous les outils de gestion de version avec tous les syst\u00E8mes de build.
Il est m\u00EAme possible d''''''''utiliser Jenkins pour tout autre chose qu''''''''un build logiciel. diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_fr.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_fr.properties index 58e24c8c9b..5d6efe0724 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_fr.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_fr.properties @@ -23,7 +23,7 @@ Timeline=Chronologie title={0} Courbe de tendance de la dur\u00e9e du build Build=Build -Build\ Time\ Trend=Tendance des temps des builds +Build\ Time\ Trend=Tendance des temps de construction Duration=Dur\u00e9e Slave=Esclave More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=Plus de 1 build est n\u00e9cessaire pour le rapport de tendance. diff --git a/core/src/main/resources/hudson/model/Job/configure_fr.properties b/core/src/main/resources/hudson/model/Job/configure_fr.properties index a91e9827ce..264d85c33f 100644 --- a/core/src/main/resources/hudson/model/Job/configure_fr.properties +++ b/core/src/main/resources/hudson/model/Job/configure_fr.properties @@ -25,4 +25,4 @@ Description=Description Discard\ Old\ Builds=Supprimer les anciens builds Save=Sauver LOADING=CHARGEMENT -Strategy=Strat\u00e9gie +Strategy=Strat\u00E9gie diff --git a/core/src/main/resources/hudson/model/Job/index_fr.properties b/core/src/main/resources/hudson/model/Job/index_fr.properties index fd2b2abce8..bbc1d6f89b 100644 --- a/core/src/main/resources/hudson/model/Job/index_fr.properties +++ b/core/src/main/resources/hudson/model/Job/index_fr.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Disable\ Project=D\u00E9sactiver le projet Project\ name=Nom du projet diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_fr.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_fr.properties index df6410cc92..b70493e5a0 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_fr.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_fr.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Add\ Job\ Filter=Ajouter un filtre Add\ column=Ajouter une colonne All\ selected\ jobs=Toutes les t\u00E2ches s\u00E9lectionn\u00E9es Columns=Colonnes @@ -29,4 +30,5 @@ Job\ Filters=Filtres pour les t\u00E2ches Jobs=T\u00E2ches Status\ Filter=\u00C9tat du filtre Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Utilisez une expression r\u00E9guli\u00E8re pour inclure les jobs dans la vue +Recurse\ in\ subfolders=Rechercher r\u00E9cursivement dans les sous r\u00E9pertoires Regular\ expression=Expression r\u00E9guli\u00E8re diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_fr.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_fr.properties index ea8b88f672..360b2fa6cc 100644 --- a/core/src/main/resources/hudson/model/MyView/newViewDetail_fr.properties +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Cette vue n''a pas de job associé. +blurb=Cette vue affiche automatiquement tous les jobs auxquels l''utilisateur a acc\u00E8s. diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_fr.properties b/core/src/main/resources/hudson/model/ParametersAction/index_fr.properties index 4a0d378cf0..16de5725fd 100644 --- a/core/src/main/resources/hudson/model/ParametersAction/index_fr.properties +++ b/core/src/main/resources/hudson/model/ParametersAction/index_fr.properties @@ -21,4 +21,3 @@ # THE SOFTWARE. Parameters=Paramètres -Build=Build diff --git a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_fr.properties b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_fr.properties new file mode 100644 index 0000000000..d2f78c852c --- /dev/null +++ b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_fr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Shows\ the\ content\ of\ a\ global\ view.=Montre le contenu d''une vue globale. diff --git a/core/src/main/resources/hudson/model/Run/configure_fr.properties b/core/src/main/resources/hudson/model/Run/configure_fr.properties index 0be558de21..ab1bfcc1d0 100644 --- a/core/src/main/resources/hudson/model/Run/configure_fr.properties +++ b/core/src/main/resources/hudson/model/Run/configure_fr.properties @@ -20,7 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=Description -DisplayName=Nom \u00E0 afficher -LOADING=CHARGEMENT +DisplayName=Nom \u00E0 l''affichage +LOADING=Chargement Save=Sauvegarder diff --git a/core/src/main/resources/hudson/model/Run/console_fr.properties b/core/src/main/resources/hudson/model/Run/console_fr.properties index bcaa59eb3e..ecf28ef26d 100644 --- a/core/src/main/resources/hudson/model/Run/console_fr.properties +++ b/core/src/main/resources/hudson/model/Run/console_fr.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Sortie Console -skipSome=Saute {0,number,integer} Ko. Log complet +Console\ Output=Sortie de la console +View\ as\ plain\ text=Afficher ous forme de texte simple +skipSome=Ignore {0,number,integer} Ko. Log complet diff --git a/core/src/main/resources/hudson/model/Run/delete_fr.properties b/core/src/main/resources/hudson/model/Run/delete_fr.properties index 379810569a..b9f4b58571 100644 --- a/core/src/main/resources/hudson/model/Run/delete_fr.properties +++ b/core/src/main/resources/hudson/model/Run/delete_fr.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=Supprimer cette construction +Delete\ this\ build=Supprimer le build diff --git a/core/src/main/resources/hudson/model/Run/logKeep_fr.properties b/core/src/main/resources/hudson/model/Run/logKeep_fr.properties index e9ca09558b..7018f8dbb6 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_fr.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_fr.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Don't\ keep\ this\ build\ forever=Ne pas conserver ce build sans limite de temps -Keep\ this\ build\ forever=Conserver ce build sans limite de temps +Keep\ this\ build\ forever=Conserver cette construction sans limite de temps diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_fr.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_fr.properties index fe1d9d20d3..c90a584cd3 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_fr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_fr.properties @@ -20,8 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewVersionAvailable=Une nouvelle version de Jenkins ({0}) est disponible \ - (changelog). +NewVersionAvailable=Une nouvelle version de Jenkins ({0}) est disponible (changelog). Or\ Upgrade\ Automatically=Ou mettre \u00E0 jour automatiquement UpgradeProgress=Mise \u00E0 jour vers Jenkins {0} est en cours ou en \u00E9chec. -UpgradeComplete=Mise \u00E0 jour vers Jenkins {0} est termin\u00E9e, en attente de red\u00E9marrage. +UpgradeComplete=La mise \u00E0 jour de Jenkins en {0} est termin\u00E9e, en attente de red\u00E9marrage. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_fr.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_fr.properties new file mode 100644 index 0000000000..ebf01e3a6d --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_fr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Canceled=Annul\u00E9 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_fr.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_fr.properties new file mode 100644 index 0000000000..d115f7792b --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_fr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Running=En cours diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_fr.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_fr.properties index 61d6621779..ee63011d1f 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_fr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_fr.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -warning=Red\u00E9marrer Jenkins quand l''''installation est termin\u00E9e et qu''''aucun job n''''est en cours +Go\ back\ to\ the\ top\ page=Revenir en haut de la page +warning=Red\u00E9marrer Jenkins quand l''installation est termin\u00E9e et qu''aucun job n''est en cours +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=vous pouvez commencer \u00E0 utiliser les plugins install\u00E9s d\u00E8s maintenant diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_fr.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_fr.properties index 739f0e7955..46b64fb8a7 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_fr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_fr.properties @@ -23,5 +23,5 @@ Update\ Center=Centre de mise à jour warning=Une fois l''installation terminée, Jenkins doit être redémarré \ pour prendre en compte les nouveaux plugins. -Installing\ Plugins/Upgrades=Installation/Mise \u00E0 jour des Plugins -Schedule\ Restart=Programmer un red\u00E9marrage \ No newline at end of file +Installing\ Plugins/Upgrades=Installation et mise \u00E0 jour des plugiciels +Schedule\ Restart=Programmer un red\u00E9marrage diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_fr.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_fr.properties index 8bc8a8dd9f..e324dc397d 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_fr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_fr.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=Retour au tableau de bord +Back\ to\ Dashboard=Retour au Tableau de bord Manage\ Jenkins=Administrer Jenkins Manage\ Plugins=Gestion des Plugins diff --git a/core/src/main/resources/hudson/model/User/builds_fr.properties b/core/src/main/resources/hudson/model/User/builds_fr.properties index 8352bac2f2..44b0b019af 100644 --- a/core/src/main/resources/hudson/model/User/builds_fr.properties +++ b/core/src/main/resources/hudson/model/User/builds_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=Builds de {0} +title=Constructions de {0} diff --git a/core/src/main/resources/hudson/model/User/index_fr.properties b/core/src/main/resources/hudson/model/User/index_fr.properties index 328efdb183..00a8549e86 100644 --- a/core/src/main/resources/hudson/model/User/index_fr.properties +++ b/core/src/main/resources/hudson/model/User/index_fr.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Groups=Groupes Jenkins\ User\ Id=Identifiant d''utilisateur Jenkins diff --git a/core/src/main/resources/hudson/model/User/sidepanel_fr.properties b/core/src/main/resources/hudson/model/User/sidepanel_fr.properties index 04917ad66e..26fd838834 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_fr.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_fr.properties @@ -22,7 +22,7 @@ People=Personnes Delete=Supprimer -My\ Views=Mes vues +My\ Views=Mes Vues Status=Statut -Builds=Builds +Builds=Constructions Configure=Configurer diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_fr.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_fr.properties index 2ea67bfbf9..3bfc37e815 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_fr.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_fr.properties @@ -24,5 +24,6 @@ Name=Nom complet All\ People=Tout le monde Last\ Active=Dernière activité On=Sur -People=Personnes +People=Utilisateurs User\ Id=Identifiant +blurb=Inclus tout les utilisateurs connus, ce qui comprend les login que le domaine de s\u00E9curit\u00E9 (security realm) actuel peut \u00E9num\u00E9rer, ainsi que les personnes mentionn\u00E9(e)s dans les message de commit reli\u00E9s au changelogs. diff --git a/core/src/main/resources/hudson/model/View/People/index_fr.properties b/core/src/main/resources/hudson/model/View/People/index_fr.properties new file mode 100644 index 0000000000..8a99e42ef3 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_fr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +All\ People=Toutes les personnes +People=Utilisateurs +User\ Id=Identifiant diff --git a/core/src/main/resources/hudson/model/View/builds_fr.properties b/core/src/main/resources/hudson/model/View/builds_fr.properties index b483b8129d..268ac0aa50 100644 --- a/core/src/main/resources/hudson/model/View/builds_fr.properties +++ b/core/src/main/resources/hudson/model/View/builds_fr.properties @@ -21,5 +21,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -buildHistory=Historique des constructions de {0} +buildHistory=Historique des compilations de {0} Export\ as\ plain\ XML=Exporter au format XML diff --git a/core/src/main/resources/hudson/model/View/configure_fr.properties b/core/src/main/resources/hudson/model/View/configure_fr.properties index 48306af0bf..f14ad5f21b 100644 --- a/core/src/main/resources/hudson/model/View/configure_fr.properties +++ b/core/src/main/resources/hudson/model/View/configure_fr.properties @@ -20,7 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Filter\ build\ executors=Filtrer les lanceurs de build -Filter\ build\ queue=Filtrer la file d''attente de build +Filter\ build\ executors=Filtrer les lanceurs de constructions +Filter\ build\ queue=Filtrer la file d''''attente de constructions Name=Nom Description=Description +OK=Ok diff --git a/core/src/main/resources/hudson/model/View/sidepanel_fr.properties b/core/src/main/resources/hudson/model/View/sidepanel_fr.properties index cf42aebe06..89ccb9debd 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_fr.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_fr.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewJob=Nouveau {0} -People=Utilisateurs +NewJob=Nouvelle {0} +People=Utilsateurs Build\ History=Historique des constructions -Edit\ View=\u00C9diter la vue -Delete\ View=Supprimer la vue -Project\ Relationship=Relations entre les projets +Edit\ View=\u00C9diter cette vue +Delete\ View=Supprimer cette vue +Project\ Relationship=Relations entre les builds Check\ File\ Fingerprint=V\u00E9rifier les empreintes num\u00E9riques diff --git a/core/src/main/resources/hudson/node_monitors/DiskSpaceMonitorDescriptor/DiskSpace/cause_fr.properties b/core/src/main/resources/hudson/node_monitors/DiskSpaceMonitorDescriptor/DiskSpace/cause_fr.properties new file mode 100644 index 0000000000..10f3c1c961 --- /dev/null +++ b/core/src/main/resources/hudson/node_monitors/DiskSpaceMonitorDescriptor/DiskSpace/cause_fr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +blurb=Espace disque insuffisant. Seulement {0} GB restant sur {1} diff --git a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_fr.properties b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_fr.properties index 2db564e96e..b067ef27e1 100644 --- a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_fr.properties +++ b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_fr.properties @@ -21,3 +21,5 @@ # THE SOFTWARE. Dismiss=Cacher +blurb=Jenkins a mis hors ligne des esclaves leur m\u00E9triques d''''\u00E9tat de sant\u00E9 \u00E9taient sous les exigences. Si vous ne voulez pas que Jenkins face cela, vous pouvez changer la configuration. + diff --git a/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_fr.properties b/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_fr.properties index 5ef33236e7..04a68a7879 100644 --- a/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_fr.properties +++ b/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_fr.properties @@ -22,6 +22,8 @@ Administrator\ user\ name=Nom de l''utilisateur administrateur Password=Mot de passe +JVM\ options=Options de la JVM Log\ on\ using\ a\ different\ account=Se connecter en utilisant un utilisateur différent +Run\ service\ as=D\u00E9marrer le service en tant que User\ name=Nom d''utilisateur -Host=Hôte \ No newline at end of file +Host=Hôte diff --git a/core/src/main/resources/hudson/search/Search/search-failed_fr.properties b/core/src/main/resources/hudson/search/Search/search-failed_fr.properties new file mode 100644 index 0000000000..3e6347dca2 --- /dev/null +++ b/core/src/main/resources/hudson/search/Search/search-failed_fr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Nothing\ seems\ to\ match.=Aucun r\u00E9sultat trouv\u00E9 +Search\ for=R\u00E9sultats de la recherche pour diff --git a/core/src/main/resources/hudson/search/UserSearchProperty/config_fr.properties b/core/src/main/resources/hudson/search/UserSearchProperty/config_fr.properties new file mode 100644 index 0000000000..fc9808570a --- /dev/null +++ b/core/src/main/resources/hudson/search/UserSearchProperty/config_fr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Case-sensitivity=Sensibilit\u00E9 \u00E0 la casse +Insensitive\ search\ tool=Outil de recherche insensible diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_fr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_fr.properties index 5d7f372290..802160e8fb 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_fr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_fr.properties @@ -23,6 +23,6 @@ Username=Nom d''utilisateur Password=Mot de passe Confirm\ password=Confirmation du mot de passe -Full\ name=Nom -E-mail\ address=Adresse m\u00E9l +Full\ name=Nom complet +E-mail\ address=Adresse courriel Enter\ text\ as\ shown= diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_fr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_fr.properties index 7bbdddb5ae..405e92cce7 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_fr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Allow\ users\ to\ sign\ up=Autoriser les utilisateurs à s''inscrire +Allow\ users\ to\ sign\ up=Autoriser les utilisateurs \u00E0 s''inscrire diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_fr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_fr.properties index 20a6d88d18..098d3b1c2e 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_fr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_fr.properties @@ -21,8 +21,5 @@ # THE SOFTWARE. Users=Utilisateurs -blurb=\ -Ces utilisateurs peuvent se logguer sur Jenkins. C''est le groupe contenant cette liste, \ -qui contient \u00e9galement les utilisateus cr\u00e9\u00e9s automatiquement qui ont simplement fait des commits sur certains \ -projets et n''ont pas d''acc\u00e8s direct \u00e0 Jenkins. +blurb=Ces utilisateurs peuvent se logguer sur Jenkins. C''''est le groupe contenant cette liste, qui contient \u00E9galement les utilisateurs cr\u00E9\u00E9s automatiquement qui ont simplement fait des commits sur certains projets et n''''ont pas d''''acc\u00E8s direct \u00E0 Jenkins. Name=Nom diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_fr.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_fr.properties new file mode 100644 index 0000000000..a2693f1149 --- /dev/null +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_fr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Unprotected\ URLs=URLs non-prot\u00E9g\u00E9s +blurb=Ces URLs (et les URLs comman\u00E7ant par ces pr\u00E9fixes plus un /) ne n\u00E9cessite pas d''authentification. Si possible, configurez votre (container) pour passer les requ\u00EAtes \u00E0 Jenkins sans n\u00E9cessiter d''authentification. diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_fr.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_fr.properties index dc536aa77b..a0f171e6a6 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_fr.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_fr.properties @@ -20,7 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description= \#\ of\ executors=Nb d''exécuteurs Remote\ FS\ root=Répertoire de travail du système distant Labels=\u00C9tiquettes 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 fe62964c35..c8599756cc 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_fr.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_fr.properties @@ -21,6 +21,9 @@ # 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 configure.link.text=Allez \u00E0 l''\u00E9cran de configuration du syst\u00E8me et changez-le launch\ agent=lancer l''agent -Connected\ via\ JNLP\ agent.=Connect\u00E9 via l''agent JNLP. +Connect\ slave\ 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/OfflineCause/ChannelTermination/cause_fr.properties b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_fr.properties new file mode 100644 index 0000000000..1cd4315ee6 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_fr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Connection\ was\ broken=La connection est cass\u00E9e diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_fr.properties b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_fr.properties index 2069e0631d..3e706a275f 100644 --- a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_fr.properties +++ b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -See\ log\ for\ more\ details=Voir les logs pour plus de d\u00e9tails +See\ log\ for\ more\ details=Voir les logs pour plus de d\u00E9tails 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 97ea8a94af..8cadc09c49 100644 --- a/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_fr.properties +++ b/core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_fr.properties @@ -22,5 +22,6 @@ Startup\ Schedule=Démarrage prévu Scheduled\ Uptime=Durée 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 durée est obligatoire. Keep\ on-line\ while\ jobs\ are\ running=Garder actif tant que des jobs sont en cours. diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_fr.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_fr.properties index c54b54211a..2ec9d88ac8 100644 --- a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_fr.properties +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_fr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Log= +Log=Journal System\ Information=Informations sur le système Disconnect=Déconnexion diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_fr.properties b/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_fr.properties index 3e319835ca..4fd277b1cf 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_fr.properties +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_fr.properties @@ -23,7 +23,7 @@ Recorded\ Fingerprints=Empreintes numériques enregistrées File=Fichier Original\ owner=Propriétaire original -Age= +Age=Anciennet\u00E9 more\ details=plus de détails outside\ Jenkins=hors Jenkins this\ build=ce build diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_fr.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_fr.properties index b03f2d733a..9b8b50d8e1 100644 --- a/core/src/main/resources/hudson/tasks/LogRotator/config_fr.properties +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_fr.properties @@ -20,7 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Days\ to\ keep\ artifacts=Nombre de jours durant lesquels conserver les artefacts Days\ to\ keep\ builds=Nombre de jours de conservation des builds +Max\ #\ of\ builds\ to\ keep\ with\ artifacts=Nombre maximum de builds avec artefacts \u00E0 conserver +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=s''il est renseign\u00E9, les artifacts des builds plus anciens que ce nombre de jours seront supprim\u00E9s, mais les journaux, les rapports, etc ... du build seront conserv\u00E9s if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=si non vide, les enregistrements de build seront conservés au maximum ce nombre de jours Max\ \#\ of\ builds\ to\ keep=Nombre maximum de builds à conserver if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=si non vide, pas plus de ce nombre de builds ne sera conservé +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ builds\ have\ their\ artifacts\ retained=s''il est renseign\u00E9, diff --git a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_fr.properties b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_fr.properties index 24e067b2d7..c6758c6b8c 100644 --- a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_fr.properties +++ b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_fr.properties @@ -27,5 +27,5 @@ since.after=' ' Standard\ Output=Sortie standard Standard\ Error=Sortie d''erreur standard Error\ Message=Message d''erreur -Stacktrace= +Stacktrace=Pile d''ex\u00E9cution failingFor=En échec depuis {0} {0,choice,0#build|1#build|1le 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/jenkins/model/Jenkins/configure_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_fr.properties index 06484fa4ea..dba2e1dcfc 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_fr.properties @@ -24,5 +24,5 @@ Home\ directory=R System\ Message=Message du système Workspace\ Root\ Directory=R\u00E9pertoire racine de l''espace de travail (workspace) Save=Enregistrer -Build\ Record\ Root\ Directory=R\u00E9pertoire racine des builds +Build\ Record\ Root\ Directory=R\u00E9pertoire racine des constructions LOADING=CHARGEMENT 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 29c80fa390..e6d166f3d3 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_fr.properties @@ -24,4 +24,5 @@ Check\ File\ Fingerprint=V File\ to\ check=Fichier à vérifier Check=Vérifier description=Vous avez un fichier jar mais vous ne connaissez pas sa version ?
Vous pourrez la trouver en comparant l''empreinte num\u00E9rique avec celles dans la base de donn\u00E9es de Jenkins +fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint more\ details=plus de détails diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_fr.properties index f9398c753e..78be7aeb1f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/loginError_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_fr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=Si vous \u00EAtes administrateur syst\u00E8me et que vous souspconer un probl\u00E8me de configuration, reportez vous \u00E0 la sortie console pour plus de d\u00E9tail +If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=Si vous \u00EAtes administrateur syst\u00E8me et que vous soup\u00E7onnez un probl\u00E8me de configuration, reportez vous \u00E0 la sortie console pour plus de d\u00E9tail Invalid\ login\ information.\ Please\ try\ again.=Identification invalide. Merci d''essayer à nouveau. Try\ again=Essayez à nouveau. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_fr.properties index 5f4a73bf64..0b5fa176bd 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_fr.properties @@ -20,4 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Ajouter, supprimer, contr\u00F4ler et surveiller les divers n\u0153uds que Jenkins utilise pour ex\u00E9cuter les jobs. +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Ex\u00E9cute des scripts arbitraires pour l\u2019administration, la r\u00E9solution de probl\u00E8mes ou pour un diagnostic. +Load\ Statistics=Statistiques d\u2019utilisation +LoadStatisticsText=V\u00E9rifiez l\u2019utilisation des ressources et d\u00E9cidez si vous avez besoin d\u2019ordinateurs suppl\u00E9mentaires pour vos constructions. Manage\ Jenkins=Administrer Jenkins +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Cesser d''ex\u00E9cuter de nouveaux builds, afin que le syst\u00E8me puisse se fermer. +are.you.sure={0} : \u00EAtes-vous s\u00FBr ? diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_fr.properties index 0295b795c3..3facdce7f4 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_fr.properties @@ -28,6 +28,7 @@ body=\ le support de l''empreinte numérique. For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=Pour que cette fonctionnalité marche, les conditions suivantes sont requises: The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts=Le projet en amont enregistre les empreintes numériques de ses artefacts de build +The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses=Le projet en aval enregistre les empreintes num\u00E9riques des fichiers amont qu''il utilise The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ jar\ files\ it\ uses=Le projet en aval enregistre les empreintes numériques des fichiers jar en amont qu''il utilise This\ allows\ Jenkins\ to\ correlate\ two\ projects.=Cela permet à Jenkins de mettre en corrélation deux projets. diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_fr.properties index 023834f82d..4bf5265db8 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_fr.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Project\ Relationship=Relations entre les projets -upstream\ project=projet en amont -downstream\ project=projet en aval +upstream\ project=Projet en amont +downstream\ project=Projet en aval Compare=Comparer diff --git a/core/src/main/resources/lib/form/advanced_fr.properties b/core/src/main/resources/lib/form/advanced_fr.properties index ba30f866aa..7f82aecfd4 100644 --- a/core/src/main/resources/lib/form/advanced_fr.properties +++ b/core/src/main/resources/lib/form/advanced_fr.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Advanced=Avancé +customizedFields=Un ou plusieurs champs de ce bloc ont \u00E9t\u00E9 \u00E9dit\u00E9s. diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_fr.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_fr.properties index e212b91926..e88d3f9d44 100644 --- a/core/src/main/resources/lib/form/breadcrumb-config-outline_fr.properties +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_fr.properties @@ -20,4 +20,3 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -configuration=configuration diff --git a/core/src/main/resources/lib/form/textarea_fr.properties b/core/src/main/resources/lib/form/textarea_fr.properties index 75ed6951ae..0304f29d92 100644 --- a/core/src/main/resources/lib/form/textarea_fr.properties +++ b/core/src/main/resources/lib/form/textarea_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Hide\ preview=Masquer l''aper\u00E7u -Preview=Aper\u00E7u +Hide\ preview=Masquer la pr\u00E9visualisation +Preview=Pr\u00E9visualisation diff --git a/core/src/main/resources/lib/hudson/buildCaption_fr.properties b/core/src/main/resources/lib/hudson/buildCaption_fr.properties index 774be45776..bafeb06f9e 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_fr.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Progress=Avancement -cancel=Annuler +Progress=Progression +cancel=annuler diff --git a/core/src/main/resources/lib/hudson/buildListTable_fr.properties b/core/src/main/resources/lib/hudson/buildListTable_fr.properties index fd6e65d54f..6144fb032d 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_fr.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_fr.properties @@ -23,4 +23,5 @@ Time\ Since=Temps \u00E9coul\u00E9 Status=\u00C9tat Build=Construction +Click\ to\ center\ timeline\ on\ event=Cliquer pour centrer la frise sur cet \u00E9v\u00E8nement Console\ output=Sortie console diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_fr.properties b/core/src/main/resources/lib/hudson/buildProgressBar_fr.properties index 54c1d2aa13..37e5f76d22 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_fr.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=D\u00E9marr\u00E9 il y a {0}
Temps restant estim\u00E9 : {1} +text=D\u00E9marr\u00E9 il y a {0}
Temps restant estim\u00E9\u00A0: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_fr.properties b/core/src/main/resources/lib/hudson/editableDescription_fr.properties index 6dae8cac69..464c8d2810 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_fr.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=ajouter une description -edit\ description=Modifier la description +add\ description=Ajouter une description +edit\ description=modifier la description diff --git a/core/src/main/resources/lib/hudson/executors_fr.properties b/core/src/main/resources/lib/hudson/executors_fr.properties index d0b20a54dc..beef1cb88f 100644 --- a/core/src/main/resources/lib/hudson/executors_fr.properties +++ b/core/src/main/resources/lib/hudson/executors_fr.properties @@ -20,13 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=\u00C9tat du lanceur de constructions -Status=Statut +Build\ Executor\ Status=\u00C9tat du lanceur de compilations +Status=\u00C9tat Master=Maître +Unknown\ Task=T\u00E2che inconnue offline=d\u00E9connect\u00E9 Dead=Hors service -Idle=En attente -Building=En cours d''\u00E9xecution -terminate\ this\ build=arr\u00EAter ce build +Idle=Au repos +Building=En cours d\u2019ex\u00E9cution +terminate\ this\ build=arr\u00EAter cette construction suspended=suspendu Offline=Déconnecté diff --git a/core/src/main/resources/lib/hudson/listScmBrowsers_fr.properties b/core/src/main/resources/lib/hudson/listScmBrowsers_fr.properties index 47b5e28a51..9d30567d01 100644 --- a/core/src/main/resources/lib/hudson/listScmBrowsers_fr.properties +++ b/core/src/main/resources/lib/hudson/listScmBrowsers_fr.properties @@ -21,4 +21,3 @@ # THE SOFTWARE. Repository\ browser=Navigateur de la base de code -Auto= diff --git a/core/src/main/resources/lib/hudson/project/config-builders_fr.properties b/core/src/main/resources/lib/hudson/project/config-builders_fr.properties index 72b5c0a587..422f450047 100644 --- a/core/src/main/resources/lib/hudson/project/config-builders_fr.properties +++ b/core/src/main/resources/lib/hudson/project/config-builders_fr.properties @@ -20,5 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build= Add\ build\ step=Ajouter une étape au build diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_fr.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_fr.properties index 644e8793c0..acc46768bb 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers2_fr.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_fr.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Add\ post-build\ action=Ajouter une action apr\u00E8s le build Post-build\ Actions=Actions à la suite du build diff --git a/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_fr.properties b/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_fr.properties index 03fc9bb1cf..ecec428519 100644 --- a/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_fr.properties +++ b/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_fr.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ after\ other\ projects\ are\ built=Construire à la suite d''autres projets (projets en amont) +Build\ after\ other\ projects\ are\ built=Construire \u00E0 la suite d''autres projets (projets en amont) +Project\ names=Noms des projets Projects\ names=Noms des projets Multiple\ projects\ can\ be\ specified\ like\ 'abc,\ def'=Plusieurs projets peuvent être spécifiés en les séparant par des virgules: 'abc, def' diff --git a/core/src/main/resources/lib/hudson/queue_fr.properties b/core/src/main/resources/lib/hudson/queue_fr.properties index 830009efef..9bca1b39f4 100644 --- a/core/src/main/resources/lib/hudson/queue_fr.properties +++ b/core/src/main/resources/lib/hudson/queue_fr.properties @@ -20,8 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=File d''attente des constructions -No\ builds\ in\ the\ queue.=File d''attente des constructions vide +Build\ Queue=File d\u2019attente des constructions +No\ builds\ in\ the\ queue.=File d\u2019attente des constructions vide Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins est en cours de fermeture. Aucun nouveau build ne sera lancé. cancel=Annuler +WaitingFor=En attente {0} +WaitingSince=En attente depuis {0} appears\ to\ be\ stuck=semble être bloqué diff --git a/core/src/main/resources/lib/hudson/rssBar_fr.properties b/core/src/main/resources/lib/hudson/rssBar_fr.properties index 6054466498..7264973731 100644 --- a/core/src/main/resources/lib/hudson/rssBar_fr.properties +++ b/core/src/main/resources/lib/hudson/rssBar_fr.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Legend=L\u00E9gende -for\ all=pour toutes -for\ failures=pour tous les \u00E9checs -for\ just\ latest\ builds=juste pour les derniers \u00E9checs +for\ all=pour tout +for\ failures=de tous les \u00E9checs +for\ just\ latest\ builds=juste pour les derni\u00E8res compilations diff --git a/core/src/main/resources/lib/hudson/scriptConsole_fr.properties b/core/src/main/resources/lib/hudson/scriptConsole_fr.properties index b2904dc3d9..9d778b4f77 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_fr.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_fr.properties @@ -23,5 +23,6 @@ Script\ Console=Console de script Result=Résultat Run=Exécuter -description=Entrez ici un script Groovy quelconque pour l''''ex\u00E9cuter sur le serveur.
Utile pour la r\u00E9solution de probl\u00E8mes et le diagnostique.
Utilisez la commande ''''println'''' pour voir la sortie (si vous utilisez System.out, cela ira vers la sortie standard du serveur, ce qui est plus complexe \u00E0 voir.)
Par exemple : +description=Vous pouvez saisir ici un script Groovy quelconque pour l\u2019ex\u00E9cuter sur le serveur.
Utile pour diagnostiquer et r\u00E9soudre des probl\u00E8mes.
Utilisez la commande ''''''''println'''''''' pour voir la sortie (si vous utilisez System.out, cela ira vers la sortie standard du serveur, qui est plus complexe \u00E0 retrouver.)
Par exemple : +description2=Toutes les classes de tous les plugins sont visibles. jenkins.*, jenkins.model.*, hudson.*, et hudson.model.* sont pr\u00E9-import\u00E9es. diff --git a/core/src/main/resources/lib/hudson/test-result_fr.properties b/core/src/main/resources/lib/hudson/test-result_fr.properties index 81f3e061b3..f449293ef9 100644 --- a/core/src/main/resources/lib/hudson/test-result_fr.properties +++ b/core/src/main/resources/lib/hudson/test-result_fr.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. no\ tests=pas de test -no\ failures=aucun échec +no\ failures=aucune erreur 1failure=1 échec {0} multifailures={0} échecs {1} diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_fr.properties b/core/src/main/resources/lib/layout/breadcrumbBar_fr.properties index a9c2f374d8..f5a6f81c09 100644 --- a/core/src/main/resources/lib/layout/breadcrumbBar_fr.properties +++ b/core/src/main/resources/lib/layout/breadcrumbBar_fr.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -DISABLE\ AUTO\ REFRESH=ANNULER LE RAFRA\u00CECHISSEMENT AUTOMATIQUE -ENABLE\ AUTO\ REFRESH=ACTIVER LE RAFRA\u00CECHISSEMENT AUTOMATIQUE +DISABLE\ AUTO\ REFRESH=Desactiver le rafraichissement automatique + +ENABLE\ AUTO\ REFRESH=Rafra\u00EEchissement automatique diff --git a/core/src/main/resources/lib/layout/layout_fr.properties b/core/src/main/resources/lib/layout/layout_fr.properties index dbc67c5460..d6844c6b2a 100644 --- a/core/src/main/resources/lib/layout/layout_fr.properties +++ b/core/src/main/resources/lib/layout/layout_fr.properties @@ -21,6 +21,8 @@ # THE SOFTWARE. search=rechercher + searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -Page\ generated=Page g\u00E9n\u00E9r\u00E9e le -logout=Se d\u00E9connecter +DISABLE\ AUTO\ REFRESH=DESACTIVER LE RAFRA\u00CECHISSEMENT AUTOMATIQUE +Page\ generated=Page g\u00E9n\u00E9r\u00E9e +logout=se d\u00E9connecter -- GitLab From df0377d89f96528a6bdeddfd82b07249f11f4eb4 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:57 -0700 Subject: [PATCH 046/308] Community-contributed localization for fy_NL (fy_NL) --- .../security/SecurityRealm/loginLink_fy_NL.properties | 3 +++ core/src/main/resources/lib/layout/layout_fy_NL.properties | 7 +++++++ 2 files changed, 10 insertions(+) create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_fy_NL.properties create mode 100644 core/src/main/resources/lib/layout/layout_fy_NL.properties 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 new file mode 100644 index 0000000000..43335b2496 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_fy_NL.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +login=jnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnbnbnbnbnbnbjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhjhyyyyyyyyyyyyyyyyyyyyyyyyyyyuuuuuuuuuuuuuuuuuuuuuuuuyuuuuuuuuuuuuuuuyuuuuuuuuuuuuuuuuuuuuuuuuuttttttttttttttttttttttttttcfdffffffffgggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg diff --git a/core/src/main/resources/lib/layout/layout_fy_NL.properties b/core/src/main/resources/lib/layout/layout_fy_NL.properties new file mode 100644 index 0000000000..e1c967a164 --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_fy_NL.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +search=bbbbbbbbjhuiop[[[[[]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]kllllllllllllllllllllllllllllllllllllllljhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh7654 + + + + -- GitLab From 2ed7a656cecebda87f3251afdeb4cfbc4b1d6582 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:57 -0700 Subject: [PATCH 047/308] Community-contributed localization for ga_IE (ga_IE) --- .../resources/hudson/model/AllView/noJob_ga_IE.properties | 4 ++++ .../hudson/model/View/sidepanel_ga_IE.properties | 5 +++++ .../security/SecurityRealm/loginLink_ga_IE.properties | 3 +++ .../views/BuildButtonColumn/column_ga_IE.properties | 3 +++ .../LastDurationColumn/columnHeader_ga_IE.properties | 3 +++ .../views/LastFailureColumn/columnHeader_ga_IE.properties | 3 +++ .../views/LastSuccessColumn/columnHeader_ga_IE.properties | 3 +++ .../views/StatusColumn/columnHeader_ga_IE.properties | 3 +++ .../views/WeatherColumn/columnHeader_ga_IE.properties | 3 +++ .../resources/lib/hudson/buildHealth_ga_IE.properties | 3 +++ .../lib/hudson/buildProgressBar_ga_IE.properties | 3 +++ .../lib/hudson/editableDescription_ga_IE.properties | 3 +++ .../main/resources/lib/hudson/executors_ga_IE.properties | 8 ++++++++ .../main/resources/lib/hudson/iconSize_ga_IE.properties | 3 +++ core/src/main/resources/lib/hudson/queue_ga_IE.properties | 4 ++++ .../src/main/resources/lib/hudson/rssBar_ga_IE.properties | 6 ++++++ .../src/main/resources/lib/layout/layout_ga_IE.properties | 7 +++++++ 17 files changed, 67 insertions(+) create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_ga_IE.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_ga_IE.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_ga_IE.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_ga_IE.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ga_IE.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ga_IE.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ga_IE.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_ga_IE.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ga_IE.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_ga_IE.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_ga_IE.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_ga_IE.properties create mode 100644 core/src/main/resources/lib/hudson/executors_ga_IE.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_ga_IE.properties create mode 100644 core/src/main/resources/lib/hudson/queue_ga_IE.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_ga_IE.properties create mode 100644 core/src/main/resources/lib/layout/layout_ga_IE.properties 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 new file mode 100644 index 0000000000..54a93113d1 --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_ga_IE.properties @@ -0,0 +1,4 @@ +# 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/View/sidepanel_ga_IE.properties b/core/src/main/resources/hudson/model/View/sidepanel_ga_IE.properties new file mode 100644 index 0000000000..7d1e655e09 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_ga_IE.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Build\ History=T\u00F3g stair +NewJob=Nua {0} +People=Daoine 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 new file mode 100644 index 0000000000..0b43476673 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ga_IE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +login=Log\u00E1il isteach 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 new file mode 100644 index 0000000000..18961d1cd5 --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_ga_IE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Schedule\ a\ build=Sceideal t\u00F3g\u00E1il 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 new file mode 100644 index 0000000000..ded0866443 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ga_IE.properties @@ -0,0 +1,3 @@ +# 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/LastFailureColumn/columnHeader_ga_IE.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ga_IE.properties new file mode 100644 index 0000000000..d6cd1a3f01 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ga_IE.properties @@ -0,0 +1,3 @@ +# 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/LastSuccessColumn/columnHeader_ga_IE.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ga_IE.properties new file mode 100644 index 0000000000..6175d68e23 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ga_IE.properties @@ -0,0 +1,3 @@ +# 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/StatusColumn/columnHeader_ga_IE.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ga_IE.properties new file mode 100644 index 0000000000..c731e281aa --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ga_IE.properties @@ -0,0 +1,3 @@ +# 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/WeatherColumn/columnHeader_ga_IE.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ga_IE.properties new file mode 100644 index 0000000000..09b7b613a5 --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ga_IE.properties @@ -0,0 +1,3 @@ +# 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/lib/hudson/buildHealth_ga_IE.properties b/core/src/main/resources/lib/hudson/buildHealth_ga_IE.properties new file mode 100644 index 0000000000..77254652ba --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_ga_IE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Description=Cur S\u00EDos diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_ga_IE.properties b/core/src/main/resources/lib/hudson/buildProgressBar_ga_IE.properties new file mode 100644 index 0000000000..d7f0291c10 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_ga_IE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +text=Tosaithe {0} \u00F3 shin
Am f\u00E1gtha: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_ga_IE.properties b/core/src/main/resources/lib/hudson/editableDescription_ga_IE.properties new file mode 100644 index 0000000000..94f2417a7f --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_ga_IE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +add\ description=cuir s\u00EDos ar diff --git a/core/src/main/resources/lib/hudson/executors_ga_IE.properties b/core/src/main/resources/lib/hudson/executors_ga_IE.properties new file mode 100644 index 0000000000..df539957fe --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_ga_IE.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Build\ Executor\ Status=T\u00F3g\u00E1il St\u00E1das Seicead\u00F3ir +Building=\u00C1 Th\u00F3g\u00E1il +Idle=d\u00EDomhaoin +Master=M\u00E1istir +Status=st\u00E1das +terminate\ this\ build=stop an pr\u00F3iseas t\u00F3g\u00E1la diff --git a/core/src/main/resources/lib/hudson/iconSize_ga_IE.properties b/core/src/main/resources/lib/hudson/iconSize_ga_IE.properties new file mode 100644 index 0000000000..209dce6bb4 --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_ga_IE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Icon=Deilbh\u00EDn diff --git a/core/src/main/resources/lib/hudson/queue_ga_IE.properties b/core/src/main/resources/lib/hudson/queue_ga_IE.properties new file mode 100644 index 0000000000..46e3a1ca9b --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_ga_IE.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build\ Queue=T\u00F3g\u00E1il scuaine +No\ builds\ in\ the\ queue.=Uimh T\u00F3gann sa scuaine. diff --git a/core/src/main/resources/lib/hudson/rssBar_ga_IE.properties b/core/src/main/resources/lib/hudson/rssBar_ga_IE.properties new file mode 100644 index 0000000000..872d2ab586 --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_ga_IE.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Legend=Eochair +for\ all=gach uile cheann +for\ failures=na cinn teipthe +for\ just\ latest\ builds=na cinn is d\u00E9ana\u00ED diff --git a/core/src/main/resources/lib/layout/layout_ga_IE.properties b/core/src/main/resources/lib/layout/layout_ga_IE.properties new file mode 100644 index 0000000000..19c0906e03 --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_ga_IE.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=CHUMAS\u00DA AUTO ATHNUAIGH +Page\ generated=Page gineadh +logout=Log\u00E1il amach +search=Cuardaigh +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -- GitLab From 46603b99282cf60a5e33e2a84c479df4e0c23eff Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:57 -0700 Subject: [PATCH 048/308] Community-contributed localization for Galician (gl) --- .../hudson/model/AbstractProject/main_gl.properties | 4 ++++ .../hudson/model/AbstractProject/sidepanel_gl.properties | 8 ++++++++ .../PermalinkProjectAction/Permalink/link_gl.properties | 3 +++ .../hudson/security/SecurityRealm/loginLink_gl.properties | 3 +++ .../hudson/widgets/HistoryWidget/entry_gl.properties | 3 +++ .../hudson/widgets/HistoryWidget/index_gl.properties | 6 ++++++ .../main/resources/lib/hudson/buildHealth_gl.properties | 3 +++ .../lib/hudson/project/upstream-downstream_gl.properties | 4 ++++ core/src/main/resources/lib/layout/layout_gl.properties | 6 ++++++ 9 files changed, 40 insertions(+) create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_gl.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_gl.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_gl.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_gl.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_gl.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_gl.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_gl.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_gl.properties create mode 100644 core/src/main/resources/lib/layout/layout_gl.properties diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_gl.properties b/core/src/main/resources/hudson/model/AbstractProject/main_gl.properties new file mode 100644 index 0000000000..e1d8fa7ca1 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_gl.properties @@ -0,0 +1,4 @@ +# 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/sidepanel_gl.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_gl.properties new file mode 100644 index 0000000000..311e676640 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_gl.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=Volver ao Dashboard +Build\ scheduled=Compilaci\u00F3n programada +Changes=Cambios +Status=Estado +Wipe\ Out\ Workspace=Borrar Workspace +delete=Borrar {0} 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 new file mode 100644 index 0000000000..8324d13db3 --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_gl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +format=hai {0} ({1}), {2} diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_gl.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_gl.properties new file mode 100644 index 0000000000..648f672bb8 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_gl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +login=Acceder diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_gl.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_gl.properties new file mode 100644 index 0000000000..06ff63b372 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_gl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Console\ Output=Mensaxes da terminal diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_gl.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_gl.properties new file mode 100644 index 0000000000..9f42a0e6f3 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_gl.properties @@ -0,0 +1,6 @@ +# 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/lib/hudson/buildHealth_gl.properties b/core/src/main/resources/lib/hudson/buildHealth_gl.properties new file mode 100644 index 0000000000..e046ab7096 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_gl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Description=Descrici\u00F3n diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_gl.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_gl.properties new file mode 100644 index 0000000000..69afc5dc90 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_gl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Downstream\ Projects=Proxectos downstream +Upstream\ Projects=Proxectos upstream diff --git a/core/src/main/resources/lib/layout/layout_gl.properties b/core/src/main/resources/lib/layout/layout_gl.properties new file mode 100644 index 0000000000..163840ba30 --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_gl.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=Activar a recarga autom\u00E1tica +Page\ generated=P\u00E1xina xenerada +search=buscar +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -- GitLab From 0b5940697ea78f2dccb00c21280fc098efa61076 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:58 -0700 Subject: [PATCH 049/308] Community-contributed localization for gu_IN (gu_IN) --- .../model/AbstractProject/sidepanel_gu_IN.properties | 4 ++++ .../UpdateCenter/ConnectionCheckJob/row_gu_IN.properties | 3 +++ .../DownloadJob/Pending/status_gu_IN.properties | 3 +++ .../hudson/model/UpdateCenter/body_gu_IN.properties | 5 +++++ .../hudson/model/UpdateCenter/index_gu_IN.properties | 3 +++ .../hudson/model/UpdateCenter/sidepanel_gu_IN.properties | 3 +++ .../hudson/widgets/HistoryWidget/index_gu_IN.properties | 4 ++++ .../main/resources/lib/hudson/buildHealth_gu_IN.properties | 3 +++ .../lib/hudson/editableDescription_gu_IN.properties | 3 +++ .../resources/lib/layout/breadcrumbBar_gu_IN.properties | 3 +++ core/src/main/resources/lib/layout/layout_gu_IN.properties | 7 +++++++ 11 files changed, 41 insertions(+) create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_gu_IN.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_gu_IN.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_gu_IN.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_gu_IN.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/index_gu_IN.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/sidepanel_gu_IN.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_gu_IN.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_gu_IN.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_gu_IN.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_gu_IN.properties create mode 100644 core/src/main/resources/lib/layout/layout_gu_IN.properties 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 new file mode 100644 index 0000000000..2a69c31b97 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_gu_IN.properties @@ -0,0 +1,4 @@ +# 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/UpdateCenter/ConnectionCheckJob/row_gu_IN.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_gu_IN.properties new file mode 100644 index 0000000000..12d2087a3d --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_gu_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Preparation=tayyari chale che diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_gu_IN.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_gu_IN.properties new file mode 100644 index 0000000000..7dbf788375 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_gu_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Pending=baki chek 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 new file mode 100644 index 0000000000..5b2dbda477 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_gu_IN.properties @@ -0,0 +1,5 @@ +# 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/index_gu_IN.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_gu_IN.properties new file mode 100644 index 0000000000..cce9b34823 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_gu_IN.properties @@ -0,0 +1,3 @@ +# 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/sidepanel_gu_IN.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_gu_IN.properties new file mode 100644 index 0000000000..4e3f9dc721 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_gu_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=pacha dashboard par 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 new file mode 100644 index 0000000000..7b8c5e730c --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_gu_IN.properties @@ -0,0 +1,4 @@ +# 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/lib/hudson/buildHealth_gu_IN.properties b/core/src/main/resources/lib/hudson/buildHealth_gu_IN.properties new file mode 100644 index 0000000000..9565dd39b9 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_gu_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Description=\u0AB5\u0AB0\u0ACD\u0AA3\u0AA8 diff --git a/core/src/main/resources/lib/hudson/editableDescription_gu_IN.properties b/core/src/main/resources/lib/hudson/editableDescription_gu_IN.properties new file mode 100644 index 0000000000..7049dff5bc --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_gu_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +edit\ description=\u0AB5\u0AB0\u0ACD\u0AA3\u0AA8 \u0AAB\u0AC7\u0AB0\u0AAB\u0ABE\u0AB0 diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_gu_IN.properties b/core/src/main/resources/lib/layout/breadcrumbBar_gu_IN.properties new file mode 100644 index 0000000000..4d09fa66ca --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_gu_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=\u0A8F\u0AA8\u0AC0 \u0A9C\u0ABE\u0AA4\u0AC7\u0A9C \u0AB0\u0ABF\u0AAB\u0ACD\u0AB0\u0AC7\u0AB6 diff --git a/core/src/main/resources/lib/layout/layout_gu_IN.properties b/core/src/main/resources/lib/layout/layout_gu_IN.properties new file mode 100644 index 0000000000..2e4d938e67 --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_gu_IN.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=fari thi page load karo +Page\ generated=\u0AAA\u0AC3\u0AB7\u0ACD\u0AA0 \u0AA4\u0AC8\u0AAF\u0ABE\u0AB0 \u0AA5\u0A87 \u0A97\u0AAF\u0AC1\u0A82 \u0A9B\u0AC7 +search=\u0AB6\u0ACB\u0AA7\u0ACB +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box + -- GitLab From 6ae8405bfd8b7e0b6ab800ccac81b29c7bc4e0ab Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:58 -0700 Subject: [PATCH 050/308] Community-contributed localization for Hebrew (he) --- .../hudson/PluginManager/index_he.properties | 3 +++ .../hudson/PluginManager/table_he.properties | 3 +++ .../message_he.properties | 3 ++- .../matrix/MatrixProject/index_he.properties | 4 ++++ .../model/AbstractBuild/changes_he.properties | 3 +++ .../model/AbstractBuild/index_he.properties | 9 +++++++++ .../model/AbstractBuild/sidepanel_he.properties | 3 ++- .../model/AbstractBuild/tasks_he.properties | 12 +++++++----- .../AbstractItem/configure-common_he.properties | 5 +++++ .../model/AbstractProject/main_he.properties | 5 +++++ .../AbstractProject/makeDisabled_he.properties | 3 +++ .../AbstractProject/sidepanel_he.properties | 15 +++++++++------ .../hudson/model/AllView/noJob_he.properties | 3 +++ .../UpstreamCause/description_he.properties | 3 +++ .../Cause/UserIdCause/description_he.properties | 3 +++ .../hudson/model/Computer/index_he.properties | 5 +++++ .../hudson/model/ComputerSet/index_he.properties | 6 ++++++ .../model/ComputerSet/sidepanel_he.properties | 5 +++++ .../hudson/model/JDK/config_he.properties | 3 +++ .../hudson/model/Job/configure_he.properties | 6 ++++++ .../hudson/model/Job/index_he.properties | 3 +++ .../hudson/model/Job/permalinks_he.properties | 3 +++ .../config_he.properties | 4 ++++ .../Permalink/link_he.properties | 3 +++ .../hudson/model/Run/configure_he.properties | 6 ++++++ .../hudson/model/Run/console_he.properties | 4 +++- .../hudson/model/Run/delete_he.properties | 3 +++ .../hudson/model/Run/logKeep_he.properties | 3 +++ .../DownloadJob/Failure/status_he.properties | 4 ++++ .../DownloadJob/Pending/status_he.properties | 2 +- .../Pending/status_he.properties | 2 +- .../hudson/model/UpdateCenter/body_he.properties | 4 +++- .../model/UpdateCenter/index_he.properties | 2 +- .../hudson/model/View/People/index_he.properties | 7 +++++++ .../hudson/model/View/builds_he.properties | 4 ++++ .../hudson/model/View/sidepanel_he.properties | 6 ++++-- .../scm/EmptyChangeLogSet/digest_he.properties | 3 +++ .../search/Search/search-failed_he.properties | 4 ++++ .../loginLink_he.properties | 3 +++ .../slaves/ComputerLauncher/main_he.properties | 4 ++++ .../config_he.properties | 5 +++++ .../SlaveComputer/sidepanel2_he.properties | 1 + .../hudson/tasks/LogRotator/config_he.properties | 10 ++++++++++ .../tasks/junit/CaseResult/index_he.properties | 8 ++++++++ .../summary_he.properties | 3 +++ .../test/TestObject/sidepanel_he.properties | 5 +++++ .../floatingBox_he.properties | 6 ++++++ .../InstallSourceProperty/config_he.properties | 4 ++++ .../tools/JDKInstaller/config_he.properties | 4 ++++ .../tools/ToolInstallation/global_he.properties | 6 ++++++ .../config_he.properties | 5 +++++ .../views/BuildButtonColumn/column_he.properties | 2 ++ .../columnHeader_he.properties | 2 +- .../LastDurationColumn/column_he.properties | 3 +++ .../LastFailureColumn/columnHeader_he.properties | 2 +- .../views/LastSuccessColumn/column_he.properties | 3 +++ .../StatusColumn/columnHeader_he.properties | 2 +- .../WeatherColumn/columnHeader_he.properties | 2 +- .../BuildHistoryWidget/entries_he.properties | 4 ++++ .../widgets/HistoryWidget/entry_he.properties | 3 +++ .../widgets/HistoryWidget/index_he.properties | 5 +++-- .../management/PluginsLink/info_he.properties | 3 +++ .../model/Jenkins/configure_he.properties | 6 ++++++ .../model/Jenkins/fingerprintCheck_he.properties | 7 +++++++ .../jenkins/model/Jenkins/manage_he.properties | 16 +++++++++++++++- .../resources/lib/form/advanced_he.properties | 3 +++ .../form/breadcrumb-config-outline_he.properties | 3 +++ .../resources/lib/form/helpArea_he.properties | 3 +++ .../resources/lib/form/repeatable_he.properties | 3 +++ .../resources/lib/form/textarea_he.properties | 4 ++++ .../lib/hudson/buildListTable_he.properties | 7 +++++++ .../lib/hudson/buildProgressBar_he.properties | 2 +- .../lib/hudson/editableDescription_he.properties | 1 + .../resources/lib/hudson/executors_he.properties | 8 +++++--- .../resources/lib/hudson/iconSize_he.properties | 2 +- .../main/resources/lib/hudson/node_he.properties | 3 +++ ...fig-blockWhenDownstreamBuilding_he.properties | 3 +++ ...onfig-blockWhenUpstreamBuilding_he.properties | 3 +++ .../project/config-customWorkspace_he.properties | 4 ++++ .../project/config-disableBuild_he.properties | 4 ++++ .../project/config-quietPeriod_he.properties | 4 ++++ .../project/config-retryCount_he.properties | 4 ++++ .../lib/hudson/project/config-scm_he.properties | 3 +++ .../lib/hudson/project/matrix_he.properties | 3 +++ .../project/upstream-downstream_he.properties | 4 ++++ .../resources/lib/hudson/queue_he.properties | 6 ++++-- .../resources/lib/hudson/rssBar_he.properties | 6 +++--- .../lib/hudson/test-result_he.properties | 4 ++++ .../lib/layout/breadcrumbBar_he.properties | 3 +++ .../resources/lib/layout/layout_he.properties | 4 ++-- 90 files changed, 348 insertions(+), 39 deletions(-) create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/index_he.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/changes_he.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_he.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/configure-common_he.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_he.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/makeDisabled_he.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_he.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UpstreamCause/description_he.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UserIdCause/description_he.properties create mode 100644 core/src/main/resources/hudson/model/Computer/index_he.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/index_he.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/sidepanel_he.properties create mode 100644 core/src/main/resources/hudson/model/JDK/config_he.properties create mode 100644 core/src/main/resources/hudson/model/Job/configure_he.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_he.properties create mode 100644 core/src/main/resources/hudson/model/Job/permalinks_he.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_he.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_he.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_he.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_he.properties create mode 100644 core/src/main/resources/hudson/model/Run/logKeep_he.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_he.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_he.properties create mode 100644 core/src/main/resources/hudson/model/View/builds_he.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_he.properties create mode 100644 core/src/main/resources/hudson/search/Search/search-failed_he.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_he.properties create mode 100644 core/src/main/resources/hudson/slaves/ComputerLauncher/main_he.properties create mode 100644 core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_he.properties create mode 100644 core/src/main/resources/hudson/tasks/LogRotator/config_he.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/CaseResult/index_he.properties create mode 100644 core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_he.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_he.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_he.properties create mode 100644 core/src/main/resources/hudson/tools/InstallSourceProperty/config_he.properties create mode 100644 core/src/main/resources/hudson/tools/JDKInstaller/config_he.properties create mode 100644 core/src/main/resources/hudson/tools/ToolInstallation/global_he.properties create mode 100644 core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_he.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/column_he.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_he.properties create mode 100644 core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_he.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_he.properties create mode 100644 core/src/main/resources/jenkins/management/PluginsLink/info_he.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/configure_he.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_he.properties create mode 100644 core/src/main/resources/lib/form/advanced_he.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_he.properties create mode 100644 core/src/main/resources/lib/form/helpArea_he.properties create mode 100644 core/src/main/resources/lib/form/repeatable_he.properties create mode 100644 core/src/main/resources/lib/form/textarea_he.properties create mode 100644 core/src/main/resources/lib/hudson/buildListTable_he.properties create mode 100644 core/src/main/resources/lib/hudson/node_he.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_he.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_he.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-customWorkspace_he.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-disableBuild_he.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-quietPeriod_he.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-retryCount_he.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-scm_he.properties create mode 100644 core/src/main/resources/lib/hudson/project/matrix_he.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_he.properties create mode 100644 core/src/main/resources/lib/hudson/test-result_he.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_he.properties diff --git a/core/src/main/resources/hudson/PluginManager/index_he.properties b/core/src/main/resources/hudson/PluginManager/index_he.properties index 2d4817e9ea..c183c17843 100644 --- a/core/src/main/resources/hudson/PluginManager/index_he.properties +++ b/core/src/main/resources/hudson/PluginManager/index_he.properties @@ -20,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +All=\u05D4\u05DB\u05DC +None=\u05DB\u05DC\u05D5\u05DD +Select=\u05D1\u05D7\u05E8 UpdatePageDescription=\u05D3\u05E3 \u05D6\u05D4 \u05DE\u05E6\u05D9\u05D2 \u05E2\u05D3\u05DB\u05D5\u05E0\u05D9\u05DD \u05DC\u05EA\u05D5\u05E1\u05E4\u05D9\u05DD \u05E9\u05D4\u05E0\u05DA \u05DE\u05E9\u05EA\u05DE\u05E9 \u05DB\u05E8\u05D2\u05E2. diff --git a/core/src/main/resources/hudson/PluginManager/table_he.properties b/core/src/main/resources/hudson/PluginManager/table_he.properties index 1be2f6642d..365d265c7b 100644 --- a/core/src/main/resources/hudson/PluginManager/table_he.properties +++ b/core/src/main/resources/hudson/PluginManager/table_he.properties @@ -21,7 +21,10 @@ # THE SOFTWARE. Check\ to\ install\ the\ plugin=\u05E1\u05DE\u05DF \u05DC\u05D4\u05EA\u05E7\u05E0\u05EA \u05D4\u05EA\u05D5\u05E1\u05E3 +Download\ now\ and\ install\ after\ restart=\u05D4\u05D5\u05E8\u05D3 \u05DB\u05E2\u05EA \u05D5\u05D4\u05EA\u05E7\u05DF \u05DC\u05D0\u05D7\u05E8 \u05D0\u05EA\u05D7\u05D5\u05DC +Filter=\u05E1\u05E0\u05DF Install=\u05D4\u05EA\u05E7\u05DF +Install\ without\ restart=\u05D4\u05EA\u05E7\u05DF \u05DC\u05DC\u05D0 \u05D0\u05EA\u05D7\u05D5\u05DC Installed=\u05DE\u05D5\u05EA\u05E7\u05DF Name=\u05E9\u05DD Version=\u05D2\u05E8\u05E1\u05D4 diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_he.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_he.properties index ef8a704d54..764377243a 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_he.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_he.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=\u05DE\u05E9\u05D5\u05D7\u05E8\u05E8 +Dismiss=\u05D1\u05D8\u05DC More\ Info=\u05DE\u05D9\u05D3\u05E2 \u05E0\u05D5\u05E1\u05E3 +blurb=\u05E0\u05E8\u05D0\u05D4 \u05E9\u05D4\u05D2\u05D3\u05E8\u05EA \u05E4\u05E8\u05D5\u05E7\u05E1\u05D9-\u05D7\u05D5\u05D6\u05E8 \u05E9\u05D2\u05D5\u05D9\u05D4 diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_he.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_he.properties new file mode 100644 index 0000000000..e8760f2f5c --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_he.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Disable\ Project=\u05D7\u05E1\u05D5\u05DD \u05E4\u05E8\u05D5\u05D9\u05D9\u05E7\u05D8 +Project=\u05E4\u05E8\u05D5\u05D9\u05D9\u05E7\u05D8 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_he.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_he.properties new file mode 100644 index 0000000000..5a4a7cafae --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=\u05E9\u05D9\u05E0\u05D5\u05D9\u05D9\u05DD diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_he.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_he.properties new file mode 100644 index 0000000000..d4378257ca --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_he.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Build=\u05D1\u05E0\u05D9\u05D4 +Build\ Artifacts=\u05EA\u05D5\u05E6\u05E8\u05D9 \u05D1\u05E0\u05D9\u05D4 +Not\ yet\ determined=\u05E2\u05D5\u05D3 \u05DC\u05D0 \u05E0\u05E7\u05D1\u05E2 +Took=\u05DC\u05E7\u05D7\u05D4 +beingExecuted=\u05DE\u05EA\u05D1\u05E6\u05E2 \u05DB\u05D1\u05E8 {0} +on=\u05D1 +startedAgo= \u05D4\u05EA\u05D7\u05DC \u05DC\u05E4\u05E0\u05D9 {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_he.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_he.properties index f138863721..e9b2d4df15 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_he.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_he.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Previous\ Build=\u05D1\u05E0\u05D9\u05D4 \u05E7\u05D5\u05D3\u05DE\u05EA +Next\ Build=\u05D2\u05E8\u05E1\u05D0 \u05D4\u05D1\u05D0\u05D4 +Previous\ Build=\u05D1\u05D9\u05DC\u05D3 \u05E7\u05D5\u05D3\u05DD diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_he.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_he.properties index 5f719f90b8..91dc9e6bec 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_he.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_he.properties @@ -20,9 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=\u05D7\u05D6\u05E8\u05D4 \u05DC\u05E4\u05E8\u05D5\u05D9\u05D9\u05E7 +Back\ to\ Project=\u05D7\u05D6\u05E8\u05D4 \u05DC\u05E4\u05E8\u05D5\u05D9\u05D9\u05E7\u05D8 Changes=\u05E9\u05D9\u05E0\u05D5\u05D9\u05D9\u05DD -Console\ Output=\u05DE\u05DC\u05DC \u05DE\u05E1\u05DA -View\ as\ plain\ text=\u05E6\u05E4\u05D4 \u05DB\u05D8\u05E7\u05E1\u05D8 \u05DC\u05D0 \u05DE\u05E2\u05D5\u05E6\u05D1 -Edit\ Build\ Information=\u05E2\u05E8\u05D5\u05DA \u05DE\u05D9\u05D3\u05E2 \u05E2\u05DC \u05D1\u05E0\u05D9\u05D4 \u05E0\u05D5\u05DB\u05D7\u05D9\u05EA -Status=\u05DE\u05E6\u05D1 \u05E4\u05E8\u05D5\u05D9\u05D9\u05E7\u05D8 +Console\ Output=\u05E4\u05DC\u05D8 \u05DE\u05E1\u05DA +View\ Build\ Information=\u05D4\u05E6\u05D2 \u05DE\u05D9\u05D3\u05E2 \u05D1\u05E0\u05D5\u05D2\u05E2 \u05DC\u05D1\u05E0\u05D9\u05D4 +View\ as\ plain\ text=\u05E6\u05E4\u05D4 \u05DB\u05D8\u05E7\u05E1\u05D8 \u05E4\u05E9\u05D5\u05D8 +Edit\ Build\ Information=\u05E2\u05E8\u05D5\u05DA +Status=\u05E1\u05D8\u05D8\u05D5\u05E1 +raw=\u05D2\u05D5\u05DC\u05DE\u05D9 diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_he.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_he.properties new file mode 100644 index 0000000000..c8f7b3a751 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_he.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Advanced\ Project\ Options\ configure-common=\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05E4\u05E8\u05D5\u05D9\u05E7\u05D8 \u05DE\u05EA\u05E7\u05D3\u05DE\u05D5\u05EA +Display\ Name=\u05E9\u05DD \u05EA\u05E6\u05D5\u05D2\u05D4 +title.concurrentbuilds=\u05D4\u05E8\u05E5 \u05D1\u05E0\u05D9\u05D5\u05EA \u05D1\u05DE\u05E7\u05D1\u05D9\u05DC \u05D0\u05DD \u05D9\u05E9 \u05E6\u05D5\u05E8\u05DA diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_he.properties b/core/src/main/resources/hudson/model/AbstractProject/main_he.properties new file mode 100644 index 0000000000..4b689c2b8b --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_he.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Last\ Successful\ Artifacts=\u05EA\u05D5\u05E6\u05E8\u05D9\u05DD \u05E9\u05DC \u05D1\u05E0\u05D9\u05D4 \u05DE\u05D5\u05E6\u05DC\u05D7\u05EA \u05D0\u05D7\u05E8\u05D5\u05E0\u05D4 +Recent\ Changes=\u05E9\u05D9\u05E0\u05D5\u05D9\u05D9\u05DD \u05D0\u05D7\u05E8\u05D5\u05E0\u05D9\u05DD +Workspace=\u05E9\u05D8\u05D7-\u05E2\u05D1\u05D5\u05D3\u05D4 diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_he.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_he.properties new file mode 100644 index 0000000000..066e73a7d3 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Disable\ Project=\u05DB\u05D1\u05D4 \u05E4\u05E8\u05D5\u05D9\u05E7\u05D8 diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_he.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_he.properties index 00b7087934..1a16059f31 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_he.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_he.properties @@ -20,10 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u05D7\u05D6\u05E8\u05D4 \u05DC\u05DE\u05E1\u05DA \u05E8\u05D0\u05E9\u05D9 -Build\ scheduled=\u05D1\u05E0\u05D9\u05D5\u05EA \u05DE\u05EA\u05D5\u05D6\u05DE\u05E0\u05D5\u05EA +Back\ to\ Dashboard=\u05D7\u05D6\u05E8\u05D4 \u05DC\u05E8\u05D0\u05E9\u05D9 +Build\ scheduled=\u05EA\u05D6\u05DE\u05D5\u05DF \u05D1\u05E0\u05D9\u05D9\u05D4 Changes=\u05E9\u05D9\u05E0\u05D5\u05D9\u05D9\u05DD -Configure=\u05D4\u05D2\u05D3\u05E8 -Status=\u05E1\u05D8\u05D8\u05D5\u05E1 -Wipe\ Out\ Workspace=\u05DE\u05D7\u05D9\u05E7\u05D4 \u05DC\u05DC\u05D0 \u05E9\u05D7\u05D6\u05D5\u05E8 \u05E9\u05DC \u05DE\u05E9\u05D8\u05D7 \u05E2\u05D1\u05D5\u05D3\u05D4 -Workspace=\u05DE\u05E9\u05D8\u05D7 \u05E2\u05D1\u05D5\u05D3\u05D4 +Configure=\u05D4\u05D2\u05D3\u05E8\u05D4 +Status=\u05DE\u05E6\u05D1 +Wipe\ Out\ Workspace=\u05DE\u05D7\u05E7 \u05D0\u05EA \u05E9\u05D8\u05D7 \u05D4\u05E2\u05D1\u05D5\u05D3\u05D4 +Workspace=\u05E9\u05D8\u05D7 \u05E2\u05D1\u05D5\u05D3\u05D4 +delete={0} \u05DE\u05D7\u05E7 +delete.confirm=\u05D4\u05D0\u05DD \u05D0\u05EA\u05D4 \u05D1\u05D8\u05D5\u05D7 \u05E9\u05D1\u05E8\u05E6\u05D5\u05E0\u05DA \u05DC\u05DE\u05D7\u05D5\u05E7 \u05D0\u05EA {0} ''{1}''? +wipe.out.confirm=\u05D4\u05D0\u05DD \u05D0\u05EA\u05D4 \u05D1\u05D8\u05D5\u05D7 \u05E9\u05D1\u05E8\u05E6\u05D5\u05E0\u05DA \u05DC\u05DE\u05D7\u05D5\u05E7 \u05D0\u05EA \u05DE\u05E9\u05D8\u05D7 \u05D4\u05E2\u05D1\u05D5\u05D3\u05D4? diff --git a/core/src/main/resources/hudson/model/AllView/noJob_he.properties b/core/src/main/resources/hudson/model/AllView/noJob_he.properties new file mode 100644 index 0000000000..0d224d2703 --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Welcome\ to\ Jenkins!=\u05D1\u05E8\u05D5\u05DA \u05D4\u05D1\u05D0 \u05DC Jenkins! diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_he.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_he.properties new file mode 100644 index 0000000000..24fa1ea805 --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +caused_by=\u05D4\u05D5\u05E4\u05E2\u05DC \u05D1\u05DE\u05E7\u05D5\u05E8 \u05E2\u05DC \u05D9\u05D3\u05D9: diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_he.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_he.properties new file mode 100644 index 0000000000..f2ca00671a --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +started_by_user=\u05D4\u05D5\u05E4\u05E2\u05DC \u05E2\u05DC \u05D9\u05D3\u05D9 \u05DE\u05E9\u05EA\u05DE\u05E9 Started by user
{1} diff --git a/core/src/main/resources/hudson/model/Computer/index_he.properties b/core/src/main/resources/hudson/model/Computer/index_he.properties new file mode 100644 index 0000000000..339f1b7023 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/index_he.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Labels:=\u05EA\u05D2\u05D9\u05D5\u05EA: +None=\u05DC\u05DC\u05D0 +title.projects_tied_on=\u05E4\u05E8\u05D5\u05D9\u05D9\u05E7\u05D8\u05D9\u05DD \u05D4\u05DE\u05E7\u05D5\u05E9\u05E8\u05D9\u05DD \u05DC diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_he.properties b/core/src/main/resources/hudson/model/ComputerSet/index_he.properties new file mode 100644 index 0000000000..4646f056a3 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/index_he.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Configure=\u05D4\u05D2\u05D3\u05E8 +Data\ obtained=\u05E0\u05EA\u05D5\u05E0\u05D9\u05DD \u05E9\u05D4\u05EA\u05E7\u05D1\u05DC\u05D5 +Name=\u05E9\u05DD +Refresh\ status=\u05E8\u05E2\u05E0\u05DF \u05DE\u05E6\u05D1 diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_he.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_he.properties new file mode 100644 index 0000000000..f5339ef25c --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_he.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=\u05D7\u05D6\u05E8\u05D4 \u05DC\u05DE\u05E1\u05DA \u05D4\u05E8\u05D0\u05E9\u05D9 +Configure=\u05D4\u05D2\u05D3\u05E8 +Manage\ Jenkins=\u05E0\u05D4\u05DC \u05D0\u05EA \u05D2''\u05E0\u05E7\u05D9\u05E0\u05E1 diff --git a/core/src/main/resources/hudson/model/JDK/config_he.properties b/core/src/main/resources/hudson/model/JDK/config_he.properties new file mode 100644 index 0000000000..892de2586f --- /dev/null +++ b/core/src/main/resources/hudson/model/JDK/config_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=\u05E9\u05DD diff --git a/core/src/main/resources/hudson/model/Job/configure_he.properties b/core/src/main/resources/hudson/model/Job/configure_he.properties new file mode 100644 index 0000000000..bf8a3c763b --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/configure_he.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Description=\u05EA\u05D0\u05D5\u05E8 +Discard\ Old\ Builds=\u05D4\u05E9\u05DE\u05D3 \u05D1\u05E0\u05D9\u05D5\u05EA \u05D9\u05E9\u05E0\u05D5\u05EA +LOADING=\u05D8\u05D5\u05E2\u05DF +name=\u05E9\u05DD {0} diff --git a/core/src/main/resources/hudson/model/Job/index_he.properties b/core/src/main/resources/hudson/model/Job/index_he.properties new file mode 100644 index 0000000000..4180c8b7ca --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Disable\ Project=\u05D7\u05E1\u05D5\u05DD \u05D0\u05EA \u05D4\u05E4\u05E8\u05D5\u05D9\u05D9\u05E7\u05D8 diff --git a/core/src/main/resources/hudson/model/Job/permalinks_he.properties b/core/src/main/resources/hudson/model/Job/permalinks_he.properties new file mode 100644 index 0000000000..ba0e885164 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/permalinks_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Permalinks=\u05E7\u05D9\u05E9\u05D5\u05E8\u05D9\u05DD \u05E7\u05D1\u05D5\u05E2\u05D9\u05DD diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_he.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_he.properties new file mode 100644 index 0000000000..9417ad6eef --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_he.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Add\ Parameter=\u05D4\u05D5\u05E1\u05E3 \u05DE\u05E9\u05EA\u05E0\u05D4 +This\ build\ is\ parameterized=\u05D1\u05E0\u05D9\u05D4 \u05DE\u05DB\u05D9\u05DC\u05D4 \u05DE\u05E9\u05EA\u05E0\u05D9\u05DD diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_he.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_he.properties new file mode 100644 index 0000000000..3787f046bb --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +format={0} ({1}), {2} \u05DC\u05E4\u05E0\u05D9 diff --git a/core/src/main/resources/hudson/model/Run/configure_he.properties b/core/src/main/resources/hudson/model/Run/configure_he.properties new file mode 100644 index 0000000000..b672fcedbc --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_he.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Description=\u05E6\u05D9\u05D0\u05D5\u05E8 +DisplayName=\u05E9\u05DD \u05DE\u05D5\u05E6\u05D2 +LOADING=\u05D8\u05D5\u05E2\u05DF +Save=\u05E9\u05DE\u05D5\u05E8 diff --git a/core/src/main/resources/hudson/model/Run/console_he.properties b/core/src/main/resources/hudson/model/Run/console_he.properties index 7d52fe617a..36cd1812f3 100644 --- a/core/src/main/resources/hudson/model/Run/console_he.properties +++ b/core/src/main/resources/hudson/model/Run/console_he.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u05DE\u05DC\u05DC \u05DE\u05E1\u05DA +Console\ Output=\u05E4\u05DC\u05D8 \u05DE\u05E1\u05DA +View\ as\ plain\ text=\u05E6\u05E4\u05D9\u05D9\u05D4 \u05DB\u05D8\u05E7\u05E1\u05D8 +skipSome=\u05DE\u05D3\u05DC\u05D2 {0,\u05DE\u05E1\u05E4\u05E8,\u05DE\u05E1\u05E4\u05E8 \u05E9\u05DC\u05DD} \u05E7"\u05D1.. \u05D3\u05D5"\u05D7 \u05DE\u05DC\u05D0 diff --git a/core/src/main/resources/hudson/model/Run/delete_he.properties b/core/src/main/resources/hudson/model/Run/delete_he.properties new file mode 100644 index 0000000000..ad6d737798 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete\ this\ build=\u05DE\u05D7\u05E7 \u05D1\u05E0\u05D9\u05D4 diff --git a/core/src/main/resources/hudson/model/Run/logKeep_he.properties b/core/src/main/resources/hudson/model/Run/logKeep_he.properties new file mode 100644 index 0000000000..efa6560e2d --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/logKeep_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Keep\ this\ build\ forever=\u05E9\u05DE\u05D5\u05E8 \u05E2\u05DC \u05D1\u05E0\u05D9\u05D4 \u05D6\u05D5 \u05DC\u05EA\u05DE\u05D9\u05D3 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_he.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_he.properties new file mode 100644 index 0000000000..54ce6786e6 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_he.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Details=\u05E4\u05E8\u05D8\u05D9\u05DD +Failure=\u05DB\u05E9\u05DC\u05D5\u05DF diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_he.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_he.properties index 61825676e6..7f10ea96c1 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_he.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_he.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=\u05D8\u05D5\u05E2\u05DF +Pending=\u05DE\u05DE\u05EA\u05D9\u05DF diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_he.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_he.properties index 61825676e6..7f10ea96c1 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_he.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_he.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=\u05D8\u05D5\u05E2\u05DF +Pending=\u05DE\u05DE\u05EA\u05D9\u05DF diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_he.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_he.properties index e626db0de7..323022b089 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_he.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_he.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -warning=\u05D0\u05EA\u05D7\u05DC \u05D0\u05EA \u05D4\u05E9\u05E8\u05EA \u05DB\u05D0\u05E9\u05E8 \u05D4\u05D4\u05EA\u05E7\u05E0\u05D4 \u05DE\u05E1\u05EA\u05D9\u05D9\u05DE\u05EA \u05D5\u05D0\u05D9\u05DF \u05E2\u05D1\u05D5\u05D3\u05D5\u05EA \u05E9\u05E8\u05E6\u05D5\u05EA +Go\ back\ to\ the\ top\ page=\u05D7\u05D6\u05D5\u05E8 \u05DC\u05D3\u05E3 \u05D4\u05E8\u05D0\u05E9\u05D5\u05DF +warning=\u05D0\u05EA\u05D7\u05DC \u05D0\u05EA \u05D4\u05E9\u05E8\u05EA \u05DB\u05D0\u05E9\u05E8 \u05D4\u05D4\u05EA\u05E7\u05E0\u05D4 \u05DE\u05E1\u05EA\u05D9\u05D9\u05DE\u05EA \u05D5\u05D0\u05D9\u05DF \u05D1\u05E0\u05D9\u05D5\u05EA \u05D1\u05EA\u05D4\u05DC\u05D9\u05DA +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=\u05D0\u05E4\u05E9\u05E8 \u05DC\u05D4\u05EA\u05D7\u05D9\u05DC \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05D0\u05D5\u05E4\u05DF \u05DE\u05D9\u05D9\u05D3\u05D9 \u05D1\u05EA\u05D5\u05E1\u05E3 \u05E9\u05D4\u05D5\u05EA\u05E7\u05DF diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_he.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_he.properties index 14c19feba8..a4bbfc561e 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_he.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_he.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing\ Plugins/Upgrades=\u05D4\u05EA\u05E7\u05E0\u05EA \u05EA\u05D5\u05E1\u05E4\u05D9\u05DD \ \u05E2\u05D3\u05DB\u05D5\u05E0\u05D9\u05DD +Installing\ Plugins/Upgrades=\u05D4\u05EA\u05E7\u05E0\u05EA \u05EA\u05D5\u05E1\u05E4\u05D9\u05DD \u05D5\u05E2\u05D3\u05DB\u05D5\u05E0\u05D9\u05DD diff --git a/core/src/main/resources/hudson/model/View/People/index_he.properties b/core/src/main/resources/hudson/model/View/People/index_he.properties new file mode 100644 index 0000000000..8678d7ae0c --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_he.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Last\ Active=\u05E4\u05E2\u05D9\u05DC \u05DC\u05D0\u05D7\u05E8\u05D5\u05E0\u05D4 +Name=\u05E9\u05DD +On=\u05D1\u05E4\u05E8\u05D5\u05D9\u05E7\u05D8 +People=\u05D0\u05E0\u05E9\u05D9\u05DD +User\ Id=\u05D6\u05D4\u05D5\u05EA \u05DE\u05E9\u05EA\u05DE\u05E9 diff --git a/core/src/main/resources/hudson/model/View/builds_he.properties b/core/src/main/resources/hudson/model/View/builds_he.properties new file mode 100644 index 0000000000..55ec43d170 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/builds_he.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Export\ as\ plain\ XML=\u05D9\u05E6\u05D0 \u05DB-XML +buildHistory=\u05D4\u05D9\u05E1\u05D8\u05D5\u05E8\u05D9\u05EA \u05D1\u05E0\u05D9\u05D4 \u05E2\u05D1\u05D5\u05E8 {0} diff --git a/core/src/main/resources/hudson/model/View/sidepanel_he.properties b/core/src/main/resources/hudson/model/View/sidepanel_he.properties index 917b703946..49e458a247 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_he.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_he.properties @@ -20,8 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=\u05D4\u05D9\u05E1\u05D8\u05D5\u05E8\u05D9\u05EA \u05D1\u05E0\u05D9\u05D4 +Build\ History=\u05D4\u05D9\u05E1\u05D8\u05D5\u05E8\u05D9\u05D9\u05EA \u05D1\u05E0\u05D9\u05D4 +Check\ File\ Fingerprint=\u05D1\u05D3\u05D5\u05E7 \u05D8\u05D1\u05D9\u05E2\u05EA \u05D0\u05E6\u05D1\u05E2 \u05E9\u05DC \u05E7\u05D5\u05D1\u05E5 +Delete\ View=\u05DE\u05D7\u05E7 \u05DE\u05E1\u05DA Edit\ View=\u05E2\u05E8\u05D5\u05DA \u05DE\u05E1\u05DA -NewJob={0} \u05D7\u05D3\u05E9 +NewJob=\u05D7\u05D3\u05E9 People=\u05D0\u05E0\u05E9\u05D9\u05DD Project\ Relationship=\u05E7\u05E9\u05E8\u05D9 \u05E4\u05E8\u05D5\u05D9\u05D9\u05E7\u05D8\u05D9\u05DD diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_he.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_he.properties new file mode 100644 index 0000000000..22d795f1d0 --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ changes.=\u05D0\u05D9\u05DF \u05E9\u05D9\u05E0\u05D5\u05D9\u05D9\u05DD diff --git a/core/src/main/resources/hudson/search/Search/search-failed_he.properties b/core/src/main/resources/hudson/search/Search/search-failed_he.properties new file mode 100644 index 0000000000..82ff0fce68 --- /dev/null +++ b/core/src/main/resources/hudson/search/Search/search-failed_he.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Nothing\ seems\ to\ match.=\u05D0\u05D9\u05DF \u05EA\u05D5\u05E6\u05D0\u05D5\u05EA +Search\ for=\u05D7\u05E4\u05E9 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_he.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_he.properties new file mode 100644 index 0000000000..018975ba08 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +sign\ up=\u05D4\u05E6\u05D8\u05E8\u05E3 diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_he.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_he.properties new file mode 100644 index 0000000000..382f3164e0 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_he.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +See\ log\ for\ more\ details=\u05DC\u05E4\u05E8\u05D8\u05D9\u05DD \u05E0\u05D5\u05E1\u05E4\u05D9\u05DD \u05E8\u05D0\u05D4 \u05D0\u05EA \u05E7\u05D5\u05D1\u05E5 \u05D4\u05DC\u05D5\u05D2 +launchingDescription=\u05D4\u05DE\u05DB\u05D5\u05E0\u05D4 \u05E0\u05D8\u05E2\u05E0\u05EA \u05DB\u05E2\u05EA diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_he.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_he.properties new file mode 100644 index 0000000000..d732df9452 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_he.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_he.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_he.properties index ba6e2c05dd..97ad27fbcd 100644 --- a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_he.properties +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_he.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Disconnect=\u05D4\u05EA\u05E0\u05EA\u05E7 Log=\u05D9\u05D5\u05DE\u05DF System\ Information=\u05DE\u05D9\u05D3\u05E2 \u05D0\u05D5\u05D3\u05D5\u05EA \u05D4\u05DE\u05E2\u05E8\u05DB\u05EA diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_he.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_he.properties new file mode 100644 index 0000000000..9ff43029e4 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_he.properties @@ -0,0 +1,10 @@ +# This file is under the MIT License by authors + +Days\ to\ keep\ artifacts=\u05DE\u05E1\u05E4\u05E8 \u05D9\u05DE\u05D9\u05DD \u05DC\u05E9\u05DE\u05D9\u05E8\u05EA \u05EA\u05D5\u05E6\u05E8\u05D9\u05DD +Days\ to\ keep\ builds=\u05DE\u05E1\u05E4\u05E8 \u05D9\u05DE\u05D9\u05DD \u05DC\u05E9\u05DE\u05D9\u05E8\u05EA \u05D1\u05E0\u05D9\u05D5\u05EA +Max\ #\ of\ builds\ to\ keep=\u05DE\u05E1\u05E4\u05E8 \u05DE\u05E7\u05E1\u05D9\u05DE\u05DC\u05D9 \u05E9\u05DC \u05D1\u05E0\u05D9\u05D5\u05EA \u05DC\u05E9\u05DE\u05D9\u05E8\u05D4 +Max\ #\ of\ builds\ to\ keep\ with\ artifacts=\u05DE\u05E1\u05E4\u05E8 \u05D1\u05E0\u05D9\u05D5\u05EA \u05DE\u05E7\u05E1\u05D9\u05DE\u05DC\u05D9 \u05DC\u05E9\u05DE\u05D5\u05E8 \u05E2\u05DD \u05EA\u05D5\u05E6\u05E8\u05D9\u05DD +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=\u05D0\u05DD \u05D0\u05D9\u05E0\u05D5 \u05E8\u05D9\u05E7, \u05EA\u05D5\u05E6\u05E8\u05D9\u05DD \u05D9\u05E9\u05E0\u05D9\u05DD \u05DE\u05DE\u05E1\u05E4\u05E8 \u05D9\u05DE\u05D9\u05DD \u05D6\u05D4 \u05D9\u05DE\u05D7\u05E7\u05D5, \u05D0\u05D1\u05DC \u05DC\u05D5\u05D2\u05D9\u05DD, \u05D4\u05D9\u05E1\u05D8\u05D5\u05E8\u05D9\u05D4, \u05D3\u05D5\u05D7\u05D5\u05EA \u05D5\u05DB\u05D5 \u05D9\u05E9\u05DE\u05E8\u05D5 +if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=\u05D0\u05DD \u05D0\u05D9\u05E0\u05D5 \u05E8\u05D9\u05E7, \u05D1\u05D4\u05D9\u05D5\u05EA \u05D9\u05E9\u05DE\u05E8\u05D5 \u05E2\u05D3 \u05DE\u05E1\u05E4\u05E8 \u05D6\u05D4 \u05E9\u05DC \u05D9\u05DE\u05D9\u05DD +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=\u05D0\u05DD \u05D0\u05D9\u05E0\u05D5 \u05E8\u05D9\u05E7, \u05E8\u05E7 \u05D1\u05E0\u05D9\u05D5\u05EA \u05E2\u05DC \u05DE\u05E1\u05E4\u05E8 \u05D6\u05D4 \u05D9\u05E9\u05DE\u05E8\u05D5 +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ builds\ have\ their\ artifacts\ retained=\u05D0\u05DD \u05D0\u05D9\u05E0\u05D5 \u05E8\u05D9\u05E7, \u05DE\u05E1\u05E4\u05E8 \u05D6\u05D4 \u05E9\u05DC \u05D1\u05E0\u05D9\u05D5\u05EA \u05D9\u05E9\u05DE\u05E8\u05D5 \u05E2\u05DC \u05EA\u05D5\u05E6\u05E8\u05D9\u05D4\u05DD diff --git a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_he.properties b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_he.properties new file mode 100644 index 0000000000..49dffbf809 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_he.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Error\ Message=\u05D4\u05D5\u05D3\u05E2\u05EA \u05E9\u05D2\u05D9\u05D0\u05D4 +Standard\ Output=\u05E4\u05DC\u05D8 \u05E1\u05D8\u05E0\u05D3\u05E8\u05D8\u05D9 +failingFor=\u05E0\u05DB\u05E9\u05DC \u05DE\u05D0\u05D6 {0} {0,choice,0#\u05D1\u05E0\u05D9\u05D5\u05EA|1#\u05D4\u05D1\u05E0\u05D9\u05D4 \u05D4\u05D0\u05D7\u05E8\u05D5\u05E0\u05D4|1<\u05D1\u05E0\u05D9\u05D5\u05EA} +since.after='' '' +since.before=\u05D4\u05D7\u05DC \u05DE-'' '' +took=\u05E0\u05DE\u05E9\u05DA {0}. diff --git a/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_he.properties b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_he.properties new file mode 100644 index 0000000000..1e2058e415 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Show\ all\ failed\ tests=\u05D4\u05E6\u05D2 \u05D0\u05EA \u05DB\u05DC \u05D4\u05D1\u05D3\u05D9\u05E7\u05D5\u05EA \u05E9\u05E0\u05DB\u05E9\u05DC\u05D5 diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_he.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_he.properties new file mode 100644 index 0000000000..691b8b53ac --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_he.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +History=\u05D4\u05E1\u05D8\u05D5\u05E8\u05D9\u05D4 +Next\ Build=\u05D4\u05D1\u05E0\u05D9\u05D4 \u05D4\u05D1\u05D0\u05D4 +Previous\ Build=\u05D4\u05D1\u05E0\u05D9\u05D4 \u05D4\u05E7\u05D5\u05D3\u05DE\u05EA diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_he.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_he.properties new file mode 100644 index 0000000000..a091f41ea8 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_he.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Test\ Result\ Trend=\u05DE\u05D2\u05DE\u05EA \u05EA\u05D5\u05E6\u05D0\u05D5\u05EA \u05D4\u05D1\u05D3\u05D9\u05E7\u05D5\u05EA +enlarge=\u05D4\u05D2\u05D3\u05DC +just\ show\ failures=\u05D4\u05E8\u05D0\u05D4 \u05E8\u05E7 \u05DB\u05E9\u05DC\u05D5\u05E0\u05D5\u05EA +show\ test\ #\ and\ failure\ #=\u05D4\u05E8\u05D0\u05D4 \u05DE\u05E1\u05E4\u05E8 \u05D1\u05D3\u05D9\u05E7\u05D5\u05EA \u05D5\u05DB\u05E9\u05DC\u05D5\u05E0\u05D5\u05EA diff --git a/core/src/main/resources/hudson/tools/InstallSourceProperty/config_he.properties b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_he.properties new file mode 100644 index 0000000000..2e595e6d21 --- /dev/null +++ b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_he.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Add\ Installer=\u05D4\u05D5\u05E1\u05E3 Installer +Delete\ Installer=\u05DE\u05D7\u05E7 Installer diff --git a/core/src/main/resources/hudson/tools/JDKInstaller/config_he.properties b/core/src/main/resources/hudson/tools/JDKInstaller/config_he.properties new file mode 100644 index 0000000000..11379f478e --- /dev/null +++ b/core/src/main/resources/hudson/tools/JDKInstaller/config_he.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +I\ agree\ to\ the\ Java\ SE\ Development\ Kit\ License\ Agreement=\u05D0\u05E0\u05D9 \u05DE\u05E1\u05DB\u05D9\u05DD \u05DC\u05EA\u05E0\u05D0\u05D9 \u05D4\u05E8\u05D9\u05E9\u05D9\u05D5\u05DF \u05E9\u05DC Java SE Development Kit +Version=\u05D2\u05D9\u05E8\u05E1\u05D0 diff --git a/core/src/main/resources/hudson/tools/ToolInstallation/global_he.properties b/core/src/main/resources/hudson/tools/ToolInstallation/global_he.properties new file mode 100644 index 0000000000..d25b415548 --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolInstallation/global_he.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +description=\u05E8\u05E9\u05D9\u05DE\u05EA {0} \u05D4\u05EA\u05E7\u05E0\u05D5\u05EA \u05D1\u05DE\u05E2\u05E8\u05DB\u05EA +label.add=\u05D4\u05D5\u05E1\u05E3 {0} +label.delete=\u05DE\u05D7\u05E7 {0} +title={0} \u05D4\u05EA\u05E7\u05E0\u05D5\u05EA diff --git a/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_he.properties b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_he.properties new file mode 100644 index 0000000000..e1d0fdb9d3 --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_he.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Home=\u05D1\u05D9\u05EA +List\ of\ tool\ locations=\u05DE\u05D9\u05E7\u05D5\u05DD \u05E8\u05E9\u05D9\u05DE\u05EA \u05D4\u05DB\u05DC\u05D9\u05DD +Name=\u05E9\u05DD diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_he.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_he.properties index 55c5a80de5..376d740384 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_he.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_he.properties @@ -20,4 +20,6 @@ # 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 +Schedule\ a\ build\ with\ parameters=\u05EA\u05D6\u05DE\u05DF \u05D1\u05E0\u05D9\u05D4 \u05E2\u05DD \u05E4\u05E8\u05DE\u05D8\u05E8\u05D9\u05DD diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_he.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_he.properties index 4ef9482181..2492cd9ac3 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_he.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_he.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=\u05D6\u05DE\u05DF \u05D1\u05D9\u05E6\u05D5\u05E2 \u05D0\u05D7\u05E8\u05D5\u05DF +Last\ Duration=\u05DE\u05E9\u05DA \u05D4\u05D1\u05E0\u05D9\u05D4 \u05D4\u05D0\u05D7\u05E8\u05D5\u05E0\u05D4 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_he.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_he.properties new file mode 100644 index 0000000000..f87c7124d3 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=\u05DC\u05D0 \u05D6\u05DE\u05D9\u05DF diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_he.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_he.properties index c3bdbed920..6c697f7a95 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_he.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_he.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=\u05DB\u05E9\u05DC\u05D5\u05DF \u05D0\u05D7\u05E8\u05D5\u05DF +Last\ Failure=\u05DB\u05D9\u05E9\u05DC\u05D5\u05DF \u05D0\u05D7\u05E8\u05D5\u05DF diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_he.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_he.properties new file mode 100644 index 0000000000..f87c7124d3 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=\u05DC\u05D0 \u05D6\u05DE\u05D9\u05DF diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_he.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_he.properties index 0cd69f71b2..5331b769cf 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_he.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_he.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=\u05DE\u05E6\u05D1 \u05D1\u05E0\u05D9\u05D4 \u05D0\u05D7\u05E8\u05D5\u05DF +Status\ of\ the\ last\ build=\u05DE\u05E6\u05D1 \u05D4\u05D1\u05E0\u05D9\u05D9\u05D4 \u05D4\u05D0\u05D7\u05E8\u05D5\u05DF diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_he.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_he.properties index 2c23a354d6..e5e30b683d 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_he.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_he.properties @@ -20,4 +20,4 @@ # 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=\u05EA\u05D7\u05D6\u05D9\u05EA \u05D4\u05DE\u05E6\u05D9\u05D2\u05D4 \u05D0\u05EA \u05DE\u05E6\u05D1 \u05D4Build\u05D9\u05DD \u05D4\u05D0\u05D7\u05E8\u05D5\u05E0\u05D9\u05DD +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u05EA\u05D7\u05D6\u05D9\u05EA \u05D4\u05DE\u05E6\u05D9\u05D2\u05D4 \u05D0\u05EA \u05DE\u05E6\u05D1 \u05D4\u05D1\u05E0\u05D9\u05D5\u05EA \u05D4\u05D0\u05D7\u05E8\u05D5\u05E0\u05D5\u05EA diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_he.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_he.properties new file mode 100644 index 0000000000..5025e0e460 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_he.properties @@ -0,0 +1,4 @@ +# 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/HistoryWidget/entry_he.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_he.properties new file mode 100644 index 0000000000..3a25fd26cb --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Console\ Output=\u05DE\u05DC\u05DC \u05DE\u05E1\u05DA diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_he.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_he.properties index 0e1906e027..6231a14fb2 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_he.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_he.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +More\ ...=\u05E2\u05D5\u05D3 for\ all=\u05E2\u05D1\u05D5\u05E8 \u05DB\u05D5\u05DC\u05DD -for\ failures=\u05E2\u05D1\u05D5\u05E8 \u05E9\u05D2\u05D9\u05D0\u05D5\u05EA -trend=\u05D8\u05E8\u05E0\u05D3 +for\ failures=\u05E2\u05D1\u05D5\u05E8 \u05DB\u05E9\u05DC\u05D5\u05E0\u05D5\u05EA +trend=\u05DE\u05D2\u05DE\u05D4 diff --git a/core/src/main/resources/jenkins/management/PluginsLink/info_he.properties b/core/src/main/resources/jenkins/management/PluginsLink/info_he.properties new file mode 100644 index 0000000000..c521892eb1 --- /dev/null +++ b/core/src/main/resources/jenkins/management/PluginsLink/info_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +updates\ available=\u05E2\u05D3\u05DB\u05D5\u05E0\u05D9\u05DD \u05D6\u05DE\u05D9\u05E0\u05D9\u05DD diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_he.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_he.properties new file mode 100644 index 0000000000..e2ea97ab82 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_he.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Home\ directory=\u05E1\u05E4\u05E8\u05D9\u05D9\u05EA \u05D4\u05D1\u05D9\u05EA +LOADING=\u05D8\u05D5\u05E2\u05DF +System\ Message=\u05D4\u05D5\u05D3\u05E2\u05EA \u05DE\u05E2\u05E8\u05DB\u05EA +Workspace\ Root\ Directory=\u05E1\u05E4\u05E8\u05D9\u05D9\u05EA \u05E1\u05D1\u05D9\u05D1\u05EA \u05D4\u05E2\u05D1\u05D5\u05D3\u05D4 diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_he.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_he.properties new file mode 100644 index 0000000000..183ecb6729 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_he.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Check=\u05D1\u05D3\u05D5\u05E7 +Check\ File\ Fingerprint=\u05D1\u05D3\u05D5\u05E7 \u05D8\u05D1\u05D9\u05E2\u05EA \u05D0\u05E6\u05D1\u05E2 \u05E9\u05DC \u05E7\u05D5\u05D1\u05E5 +File\ to\ check=\u05E7\u05D5\u05D1\u05E5 \u05DC\u05D1\u05D3\u05D9\u05E7\u05D4 +description=\u05E7\u05D9\u05D1\u05DC\u05EA \u05E7\u05D5\u05D1\u05E5 \u05D2''\u05D0\u05E8 \u05D0\u05D1\u05DC \u05D0\u05EA\u05D4 \u05DC\u05D0 \u05D9\u05D5\u05D3\u05E2 \u05DE\u05D4 \u05D4\u05D2\u05E8\u05E1\u05D4 \u05E9\u05DC\u05D5?
\u05D2\u05DC\u05D4 \u05D6\u05D0\u05EA \u05E2\u05DC \u05D9\u05D3\u05D9 \u05D1\u05D3\u05D9\u05E7\u05EA \u05D8\u05D1\u05D9\u05E2\u05EA \u05D4\u05D0\u05E6\u05D1\u05E2 \u05E9\u05DC\u05D5 \u05D1\u05DE\u05D0\u05D2\u05E8 \u05E9\u05DC \u05D2''\u05E0\u05E7\u05D9\u05E0\u05E1 +more\ details=\u05DC\u05E4\u05E8\u05D8\u05D9\u05DD \u05E0\u05D5\u05E1\u05E4\u05D9\u05DD diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_he.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_he.properties index dcebc82690..fc6d622645 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_he.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_he.properties @@ -20,4 +20,18 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Manage\ Jenkins=\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=\u05D4\u05D5\u05E1\u05E3, \u05D4\u05E1\u05E8 \u05D5\u05E2\u05E7\u05D5\u05D1 \u05D0\u05D7\u05E8 \u05D4\u05DE\u05DB\u05D5\u05E0\u05D5\u05EA-\u05D4\u05D1\u05E0\u05D9\u05D4 \u05D4\u05E9\u05D5\u05E0\u05D5\u05EA \u05D4\u05DE\u05E9\u05E8\u05EA\u05D5\u05EA \u05D0\u05EA \u05D2\u05F3\u05E0\u05E7\u05D9\u05E0\u05E1 +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=\u05D4\u05D5\u05E1\u05E3, \u05D4\u05E1\u05E8, \u05D7\u05E1\u05D5\u05DD \u05D0\u05D5 \u05D4\u05E1\u05E8 \u05EA\u05D5\u05E1\u05E4\u05D9\u05DD \u05D5\u05D4\u05E8\u05D7\u05D1\u05D5\u05EA \u05E9\u05DC \u05D2\u05F3\u05E0\u05E7\u05D9\u05E0\u05E1. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=\u05D4\u05EA\u05E2\u05DC\u05DD \u05DE\u05DB\u05DC \u05D4\u05DE\u05D9\u05D3\u05E2 \u05D1\u05D6\u05DB\u05E8\u05D5\u05DF \u05D5\u05D8\u05E2\u05DF \u05E9\u05D5\u05D1 \u05DE\u05D4\u05D3\u05D9\u05E1\u05E7 +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=\u05D4\u05E6\u05D2 \u05DE\u05D9\u05D3\u05E2 \u05E2\u05DC \u05E1\u05D1\u05D9\u05D1\u05EA-\u05D4\u05E2\u05D1\u05D5\u05D3\u05D4 \u05DB\u05D3\u05D9 \u05DC\u05E2\u05D6\u05D5\u05E8 \u05D1\u05D0\u05D9\u05EA\u05D5\u05E8 \u05EA\u05E7\u05DC\u05D5\u05EA +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=\u05D4\u05E8\u05E5 \u05E1\u05E7\u05E8\u05D9\u05E4\u05D8 \u05DB\u05DC\u05E9\u05D4\u05D5 \u05DB\u05D3\u05D9 \u05DC\u05E0\u05D4\u05DC \u05D0\u05D5 \u05DC\u05D6\u05D4\u05D5\u05EA \u05D1\u05E2\u05D9\u05D5\u05EA +Jenkins\ CLI=CLI \u05E9\u05DC \u05D2\u05F3\u05E0\u05E7\u05D9\u05E0\u05E1 +JenkinsCliText=\u05E0\u05D4\u05DC \u05D0\u05EA \u05D2''\u05E0\u05E7\u05D9\u05E0\u05E1 \u05DE\u05EA\u05D5\u05DA \u05E1\u05E7\u05E8\u05D9\u05E4\u05D8 +Load\ Statistics=\u05E1\u05D8\u05D8\u05D9\u05E1\u05D8\u05D9\u05E7\u05D5\u05EA \u05E2\u05DC \u05E2\u05D5\u05DE\u05E1 +LoadStatisticsText=\u05D1\u05D3\u05D5\u05E7 \u05D0\u05EA \u05E0\u05D9\u05E6\u05D5\u05DC \u05DE\u05E9\u05D0\u05D1\u05D9-\u05D4\u05DE\u05E2\u05E8\u05DB\u05EA \u05DB\u05D3\u05D9 \u05DC\u05E8\u05D0\u05D5\u05EA \u05D0\u05DD \u05D9\u05E9 \u05E6\u05D5\u05E8\u05DA \u05D1\u05DB\u05D7-\u05DE\u05D9\u05D7\u05E9\u05D5\u05D1 \u05E0\u05D5\u05E1\u05E3. +Manage\ Jenkins=\u05D4\u05D2\u05D3\u05E8\u05EA \u05D2\u05F3\u05E0\u05E7\u05D9\u05E0\u05E1 +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=\u05D0\u05DC \u05EA\u05D0\u05E4\u05E9\u05E8 \u05DC\u05D1\u05E0\u05D9\u05D5\u05EA \u05D7\u05D3\u05E9\u05D5\u05EA \u05DC\u05D4\u05EA\u05D7\u05D9\u05DC, \u05DB\u05D3\u05D9 \u05E9\u05E0\u05D9\u05EA\u05DF \u05D9\u05D4\u05D9\u05D4 \u05DC\u05DB\u05D1\u05D5\u05EA \u05D4\u05DE\u05E2\u05E8\u05DB\u05EA \u05D1\u05D1\u05D8\u05D7\u05D4. +System\ Log=\u05DC\u05D5\u05D2\u05D9\u05DD \u05E9\u05DC \u05D4\u05DE\u05E2\u05E8\u05DB\u05EA +SystemLogText=\u05DC\u05D5\u05D2\u05D9\u05DD \u05E9\u05DC \u05D4\u05DE\u05E2\u05E8\u05DB\u05EA \u05DC\u05D5\u05DB\u05D3\u05D9\u05DD \u05E4\u05DC\u05D8 \u05DE-java.util.logging \u05E9\u05E7\u05E9\u05D5\u05E8 \u05DC\u05D2\u05F3\u05E0\u05E7\u05D9\u05E0\u05E1. +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=\u05E9\u05D9\u05DE\u05D5\u05E9\u05D9 \u05DB\u05D0\u05E9\u05E8 \u05E2\u05D3\u05DB\u05E0\u05EA \u05E7\u05D1\u05E6\u05D9 \u05DE\u05E2\u05E8\u05DB\u05EA \u05D9\u05E9\u05D9\u05E8\u05D5\u05EA \u05E2\u05DC \u05D4\u05D3\u05D9\u05E1\u05E7 +are.you.sure={0}: \u05D4\u05D0\u05DD \u05D0\u05EA\u05D4 \u05D1\u05D8\u05D5\u05D7? diff --git a/core/src/main/resources/lib/form/advanced_he.properties b/core/src/main/resources/lib/form/advanced_he.properties new file mode 100644 index 0000000000..521f566dcd --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Advanced=\u05DE\u05EA\u05E7\u05D3\u05DD diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_he.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_he.properties new file mode 100644 index 0000000000..cb92787b3f --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=\u05E7\u05D5\u05E0\u05E4\u05D9\u05D2\u05D5\u05E8\u05E6\u05D9\u05D4 diff --git a/core/src/main/resources/lib/form/helpArea_he.properties b/core/src/main/resources/lib/form/helpArea_he.properties new file mode 100644 index 0000000000..a68c20a26a --- /dev/null +++ b/core/src/main/resources/lib/form/helpArea_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Loading...=\u05D8\u05D5\u05E2\u05DF... diff --git a/core/src/main/resources/lib/form/repeatable_he.properties b/core/src/main/resources/lib/form/repeatable_he.properties new file mode 100644 index 0000000000..8e430de7eb --- /dev/null +++ b/core/src/main/resources/lib/form/repeatable_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Add=\u05D4\u05D5\u05E1\u05E3 diff --git a/core/src/main/resources/lib/form/textarea_he.properties b/core/src/main/resources/lib/form/textarea_he.properties new file mode 100644 index 0000000000..c9e34d24d8 --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_he.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=\u05D4\u05E1\u05EA\u05E8 \u05EA\u05E6\u05D5\u05D2\u05D4 \u05DE\u05E7\u05D3\u05D9\u05DE\u05D4 +Preview=\u05EA\u05E6\u05D5\u05D2\u05D4 \u05DE\u05E7\u05D3\u05D9\u05DE\u05D4 diff --git a/core/src/main/resources/lib/hudson/buildListTable_he.properties b/core/src/main/resources/lib/hudson/buildListTable_he.properties new file mode 100644 index 0000000000..618217b365 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildListTable_he.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Build=\u05D1\u05E0\u05D9\u05D4 +Click\ to\ center\ timeline\ on\ event=\u05DC\u05D7\u05E5 \u05DC\u05DE\u05E8\u05DB\u05D5\u05D6 \u05DC\u05D5\u05D7 \u05D4\u05D6\u05DE\u05DF \u05E2\u05DC \u05D0\u05D9\u05E8\u05D5\u05E2 +Console\ output=\u05E4\u05DC\u05D8 \u05DE\u05E1\u05D5\u05E3 +Status=\u05E1\u05D8\u05D8\u05D5\u05E1 +Time\ Since=\u05D6\u05DE\u05DF \u05E9\u05E2\u05D1\u05E8 diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_he.properties b/core/src/main/resources/lib/hudson/buildProgressBar_he.properties index c3b00e2f55..6902fdc0a3 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_he.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_he.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=\u05D4\u05EA\u05D7\u05D9\u05DC \u05DC\u05E4\u05E0\u05D9 {0}, \u05D6\u05DE\u05DF \u05DE\u05D5\u05E2\u05E8\u05DA \u05E9\u05E0\u05E9\u05D0\u05E8: {1} +text=\u05D4\u05EA\u05D7\u05D9\u05DC \u05DC\u05E4\u05E0\u05D9 {0}
\u05D6\u05DE\u05DF \u05DE\u05D5\u05E2\u05E8\u05DA \u05DC\u05E1\u05D9\u05D5\u05DD: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_he.properties b/core/src/main/resources/lib/hudson/editableDescription_he.properties index 98d4dbf72e..4a8ae2e647 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_he.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_he.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. add\ description=\u05D4\u05D5\u05E1\u05E3 \u05EA\u05D9\u05D0\u05D5\u05E8 +edit\ description=\u05E2\u05E8\u05D5\u05DA \u05EA\u05D9\u05D0\u05D5\u05E8 diff --git a/core/src/main/resources/lib/hudson/executors_he.properties b/core/src/main/resources/lib/hudson/executors_he.properties index 78ea52a1a9..5f19f29386 100644 --- a/core/src/main/resources/lib/hudson/executors_he.properties +++ b/core/src/main/resources/lib/hudson/executors_he.properties @@ -20,8 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=\u05DE\u05E6\u05D1 \u05DE\u05DB\u05D5\u05E0\u05EA \u05D4Build +Build\ Executor\ Status=\u05DE\u05E6\u05D1 \u05DE\u05E8\u05D9\u05E5 \u05D4\u05D1\u05E0\u05D9\u05D5\u05EA Building=\u05D1\u05D5\u05E0\u05D4 -Idle=\u05E4\u05E0\u05D5\u05D9 -Status=\u05E1\u05D8\u05D8\u05D5\u05E1 +Idle=\u05DC\u05D0 \u05E4\u05E2\u05D9\u05DC +Master=\u05DE\u05D0\u05E1\u05D8\u05E8 +Status=\u05DE\u05E6\u05D1 +offline=\u05DC\u05D0 \u05DE\u05E7\u05D5\u05D5\u05DF terminate\ this\ build=\u05D1\u05D8\u05DC \u05D1\u05E0\u05D9\u05D4 \u05D6\u05D0\u05EA diff --git a/core/src/main/resources/lib/hudson/iconSize_he.properties b/core/src/main/resources/lib/hudson/iconSize_he.properties index 41eeebdc7a..3cfdfaa780 100644 --- a/core/src/main/resources/lib/hudson/iconSize_he.properties +++ b/core/src/main/resources/lib/hudson/iconSize_he.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=\u05E1\u05DE\u05DC +Icon=\u05EA\u05DE\u05D5\u05E0\u05D4 diff --git a/core/src/main/resources/lib/hudson/node_he.properties b/core/src/main/resources/lib/hudson/node_he.properties new file mode 100644 index 0000000000..9af9d68d6e --- /dev/null +++ b/core/src/main/resources/lib/hudson/node_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +master=\u05E8\u05D0\u05E9\u05D9 diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_he.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_he.properties new file mode 100644 index 0000000000..611220520a --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Block\ build\ when\ downstream\ project\ is\ building=\u05D7\u05E1\u05D5\u05DD \u05D1\u05E0\u05D9\u05D4 \u05DB\u05D0\u05E9\u05E8 \u05E4\u05E8\u05D5\u05D9\u05E7\u05D8 \u05D1\u05DF \u05E0\u05D1\u05E0\u05D4 diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_he.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_he.properties new file mode 100644 index 0000000000..92a5edea70 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Block\ build\ when\ upstream\ project\ is\ building=\u05D7\u05E1\u05D5\u05DD \u05D1\u05E0\u05D9\u05D4 \u05DB\u05D0\u05E9\u05E8 \u05E4\u05E8\u05D5\u05D9\u05E7\u05D8 \u05D0\u05D1 \u05E0\u05D1\u05E0\u05D4 diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_he.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_he.properties new file mode 100644 index 0000000000..4ff50119a2 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_he.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Directory=\u05EA\u05D9\u05E7\u05D9\u05D4 +Use\ custom\ workspace=\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05DE\u05E9\u05D8\u05D7 \u05E2\u05D1\u05D5\u05D3\u05D4 \u05DE\u05D5\u05EA\u05D0\u05DD \u05D0\u05D9\u05E9\u05D9\u05EA diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_he.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_he.properties new file mode 100644 index 0000000000..effaf6d86e --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_he.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Disable\ Build=\u05E9\u05EA\u05E7 \u05D1\u05E0\u05D9\u05D4 +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=\u05D1\u05E0\u05D9\u05D5\u05EA \u05D7\u05D3\u05E9\u05D5\u05EA \u05DC\u05D0 \u05D9\u05D5\u05E4\u05E2\u05DC\u05D5 \u05E2\u05D3 \u05E9\u05D1\u05E0\u05D9\u05D4 \u05D6\u05D5 \u05EA\u05D0\u05D5\u05E4\u05E9\u05E8 \u05D1\u05E9\u05E0\u05D9\u05EA diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_he.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_he.properties new file mode 100644 index 0000000000..9f2136365a --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_he.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Number\ of\ seconds=\u05DE\u05E1\u05E4\u05E8 \u05E9\u05E0\u05D9\u05D5\u05EA +Quiet\ period=\u05EA\u05E7\u05D5\u05E4\u05EA \u05E9\u05E7\u05D8 diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_he.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_he.properties new file mode 100644 index 0000000000..43895475ca --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_he.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Retry\ Count=\u05DE\u05E1\u05E4\u05E8 \u05E0\u05D9\u05E1\u05D9\u05D5\u05E0\u05D5\u05EA \u05D7\u05D5\u05D6\u05E8\u05D9\u05DD +SCM\ checkout\ retry\ count=\u05DE\u05E1\u05E4\u05E8 \u05E0\u05D9\u05E1\u05D9\u05D5\u05E0\u05D5\u05EA \u05DC\u05D0\u05D7\u05D6\u05D5\u05E8 \u05DE\u05DE\u05E2\u05E8\u05DB\u05EA \u05E0\u05D9\u05D4\u05D5\u05DC \u05D4\u05DE\u05E7\u05D5\u05E8 diff --git a/core/src/main/resources/lib/hudson/project/config-scm_he.properties b/core/src/main/resources/lib/hudson/project/config-scm_he.properties new file mode 100644 index 0000000000..36874984b4 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-scm_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Source\ Code\ Management=\u05DE\u05E2\u05E8\u05DB\u05EA \u05E0\u05D9\u05D4\u05D5\u05DC \u05E7\u05D5\u05D3 \u05DE\u05E7\u05D5\u05E8 diff --git a/core/src/main/resources/lib/hudson/project/matrix_he.properties b/core/src/main/resources/lib/hudson/project/matrix_he.properties new file mode 100644 index 0000000000..6bbb569345 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/matrix_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Configuration\ Matrix=\u05DE\u05D8\u05E8\u05D9\u05E6\u05EA \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_he.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_he.properties new file mode 100644 index 0000000000..5f10b12d9f --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_he.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Downstream\ Projects=\u05E4\u05E8\u05D5\u05D9\u05D9\u05E7\u05D8\u05D9\u05DD \u05D4\u05D1\u05D0\u05D9\u05DD \u05D1\u05EA\u05D4\u05DC\u05D9\u05DA +Upstream\ Projects=\u05E4\u05E8\u05D5\u05D9\u05D9\u05E7\u05D8\u05D9\u05DD \u05E7\u05D5\u05D3\u05DE\u05D9\u05DD \u05D1\u05EA\u05D4\u05DC\u05D9\u05DA diff --git a/core/src/main/resources/lib/hudson/queue_he.properties b/core/src/main/resources/lib/hudson/queue_he.properties index cf798c7ff8..55ed4c1149 100644 --- a/core/src/main/resources/lib/hudson/queue_he.properties +++ b/core/src/main/resources/lib/hudson/queue_he.properties @@ -20,6 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u05EA\u05D5\u05E8 \u05D1\u05E0\u05D9\u05D9\u05D4 -No\ builds\ in\ the\ queue.=\u05E8\u05E9\u05D9\u05DE\u05EA \u05D4\u05DE\u05EA\u05E0\u05D4 \u05DC\u05D1\u05E0\u05D9\u05D4 \u05E8\u05D9\u05E7\u05D4. +Build\ Queue=\u05EA\u05D5\u05E8 \u05D1\u05E0\u05D9\u05D5\u05EA +No\ builds\ in\ the\ queue.=\u05D0\u05D9\u05DF \u05D1\u05E0\u05D9\u05D5\u05EA \u05DE\u05DE\u05EA\u05D9\u05E0\u05D5\u05EA \u05D1\u05EA\u05D5\u05E8. +WaitingFor=\u05DE\u05D7\u05DB\u05D4 \u05DC - {0} +WaitingSince=\u05DE\u05DE\u05EA\u05D9\u05DF \u05DE\u05D0\u05D6 {0} cancel=\u05D1\u05D8\u05DC diff --git a/core/src/main/resources/lib/hudson/rssBar_he.properties b/core/src/main/resources/lib/hudson/rssBar_he.properties index 04aa513d55..9a99f67b83 100644 --- a/core/src/main/resources/lib/hudson/rssBar_he.properties +++ b/core/src/main/resources/lib/hudson/rssBar_he.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=\u05DE\u05E7\u05E8\u05D0 +Legend=\u05EA\u05D9\u05D0\u05D5\u05E8 for\ all=\u05E2\u05D1\u05D5\u05E8 \u05DB\u05D5\u05DC\u05DD -for\ failures=\u05E2\u05D1\u05D5\u05E8 \u05DB\u05E9\u05DC\u05D5\u05DF -for\ just\ latest\ builds=\u05E2\u05D1\u05D5\u05E8 \u05D4Build\u05D9\u05DD \u05D4\u05D0\u05D7\u05E8\u05D5\u05E0\u05D9\u05DD +for\ failures=\u05E2\u05D1\u05D5\u05E8 \u05DB\u05E9\u05DC\u05D5\u05E0\u05D5\u05EA +for\ just\ latest\ builds=\u05E8\u05E7 \u05E2\u05D1\u05D5\u05E8 \u05D4\u05D1\u05E0\u05D9\u05D5\u05EA \u05D4\u05D0\u05D7\u05E8\u05D5\u05E0\u05D5\u05EA diff --git a/core/src/main/resources/lib/hudson/test-result_he.properties b/core/src/main/resources/lib/hudson/test-result_he.properties new file mode 100644 index 0000000000..7c13d8fe40 --- /dev/null +++ b/core/src/main/resources/lib/hudson/test-result_he.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +multifailures="{0} \u05DB\u05E9\u05DC\u05D5\u05E0\u05D5\u05EA {1}" +no\ failures=\u05D0\u05D9\u05DF \u05DB\u05E9\u05DC\u05D5\u05E0\u05D5\u05EA diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_he.properties b/core/src/main/resources/lib/layout/breadcrumbBar_he.properties new file mode 100644 index 0000000000..37fb1041cd --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_he.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=\u05D0\u05E4\u05E9\u05E8 \u05E8\u05E2\u05E0\u05D5\u05DF \u05D0\u05D5\u05D8\u05D5\u05DE\u05D8\u05D9 diff --git a/core/src/main/resources/lib/layout/layout_he.properties b/core/src/main/resources/lib/layout/layout_he.properties index aa62b4b692..f390810577 100644 --- a/core/src/main/resources/lib/layout/layout_he.properties +++ b/core/src/main/resources/lib/layout/layout_he.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ENABLE\ AUTO\ REFRESH=\u05D0\u05E4\u05E9\u05E8 \u05E8\u05E2\u05E0\u05D5\u05DF \u05D0\u05D5\u05D8\u05D5\u05DE\u05D8\u05D9 -Page\ generated=\u05D3\u05E3 \u05E0\u05D5\u05E6\u05E8 \u05D1 +ENABLE\ AUTO\ REFRESH=\u05D0\u05E4\u05E9\u05E8 \u05E2\u05D3\u05DB\u05D5\u05DF \u05D0\u05D5\u05D8\u05D5\u05DE\u05D8\u05D9 +Page\ generated=\u05D3\u05E3 \u05E0\u05D5\u05E6\u05E8 logout=\u05D4\u05EA\u05E0\u05EA\u05E7 search=\u05D7\u05D9\u05E4\u05D5\u05E9 searchBox.url=\u05EA\u05D9\u05D1\u05EA \u05D7\u05D9\u05E4\u05D5\u05E9 -- GitLab From 3d9b8e6cddf9af966f4b26313a062749cba58562 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:58 -0700 Subject: [PATCH 051/308] Community-contributed localization for hi_IN (hi_IN) --- .../hudson/PluginManager/table_hi_IN.properties | 3 +++ .../RawHtmlMarkupFormatter/config_hi_IN.properties | 4 ++++ .../MatrixProject/newJobDetail_hi_IN.properties | 3 +++ .../model/AbstractBuild/changes_hi_IN.properties | 3 +++ .../model/AbstractBuild/index_hi_IN.properties | 7 +++++++ .../model/AbstractBuild/sidepanel_hi_IN.properties | 3 ++- .../model/AbstractBuild/tasks_hi_IN.properties | 14 +++++++++----- .../AbstractProject/sidepanel_hi_IN.properties | 9 +++++++++ .../hudson/model/AllView/noJob_hi_IN.properties | 6 ++++++ .../FreeStyleProject/newJobDetail_hi_IN.properties | 3 +++ .../hudson/model/Run/console_hi_IN.properties | 2 +- .../hudson/model/Run/delete_hi_IN.properties | 3 +++ .../hudson/model/Run/logKeep_hi_IN.properties | 2 +- .../hudson/model/View/builds_hi_IN.properties | 3 +++ .../hudson/model/View/newJob_hi_IN.properties | 4 ++++ .../hudson/model/View/sidepanel_hi_IN.properties | 4 +++- .../config_hi_IN.properties | 3 +++ .../loginLink_hi_IN.properties | 3 +++ .../SecurityRealm/loginLink_hi_IN.properties | 3 +++ .../summary_hi_IN.properties | 3 +++ .../test/TestObject/sidepanel_hi_IN.properties | 3 +++ .../BuildButtonColumn/column_hi_IN.properties | 3 +++ .../myViewTabs_hi_IN.properties | 3 +++ .../DefaultViewsTabBar/viewTabs_hi_IN.properties | 3 +++ .../columnHeader_hi_IN.properties | 3 +++ .../LastDurationColumn/column_hi_IN.properties | 3 +++ .../columnHeader_hi_IN.properties | 3 +++ .../LastFailureColumn/column_hi_IN.properties | 3 +++ .../columnHeader_hi_IN.properties | 3 +++ .../LastSuccessColumn/column_hi_IN.properties | 3 +++ .../StatusColumn/columnHeader_hi_IN.properties | 3 +++ .../WeatherColumn/columnHeader_hi_IN.properties | 3 +++ .../widgets/HistoryWidget/index_hi_IN.properties | 4 ++++ .../model/Jenkins/configure_hi_IN.properties | 4 ++++ .../jenkins/model/Jenkins/login_hi_IN.properties | 3 +++ .../resources/lib/form/advanced_hi_IN.properties | 3 +++ .../resources/lib/form/textarea_hi_IN.properties | 4 ++++ .../lib/hudson/buildHealth_hi_IN.properties | 3 +++ .../lib/hudson/buildListTable_hi_IN.properties | 4 ++++ .../hudson/editableDescription_hi_IN.properties | 3 +++ .../lib/hudson/executors_hi_IN.properties | 9 +++++++++ .../resources/lib/hudson/iconSize_hi_IN.properties | 3 +++ .../lib/hudson/newFromList/form_hi_IN.properties | 3 +++ .../resources/lib/hudson/queue_hi_IN.properties | 6 ++++++ .../resources/lib/hudson/rssBar_hi_IN.properties | 1 + .../lib/hudson/test-result_hi_IN.properties | 3 +++ .../lib/layout/breadcrumbBar_hi_IN.properties | 3 +++ .../resources/lib/layout/layout_hi_IN.properties | 4 +++- 48 files changed, 171 insertions(+), 10 deletions(-) create mode 100644 core/src/main/resources/hudson/PluginManager/table_hi_IN.properties create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_hi_IN.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_hi_IN.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/changes_hi_IN.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_hi_IN.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_hi_IN.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_hi_IN.properties create mode 100644 core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_hi_IN.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_hi_IN.properties create mode 100644 core/src/main/resources/hudson/model/View/builds_hi_IN.properties create mode 100644 core/src/main/resources/hudson/model/View/newJob_hi_IN.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_hi_IN.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_hi_IN.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_hi_IN.properties create mode 100644 core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_hi_IN.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_hi_IN.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_hi_IN.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_hi_IN.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_hi_IN.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_hi_IN.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/column_hi_IN.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_hi_IN.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_hi_IN.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_hi_IN.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_hi_IN.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_hi_IN.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_hi_IN.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_hi_IN.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/configure_hi_IN.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/login_hi_IN.properties create mode 100644 core/src/main/resources/lib/form/advanced_hi_IN.properties create mode 100644 core/src/main/resources/lib/form/textarea_hi_IN.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_hi_IN.properties create mode 100644 core/src/main/resources/lib/hudson/buildListTable_hi_IN.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_hi_IN.properties create mode 100644 core/src/main/resources/lib/hudson/executors_hi_IN.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_hi_IN.properties create mode 100644 core/src/main/resources/lib/hudson/newFromList/form_hi_IN.properties create mode 100644 core/src/main/resources/lib/hudson/queue_hi_IN.properties create mode 100644 core/src/main/resources/lib/hudson/test-result_hi_IN.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_hi_IN.properties diff --git a/core/src/main/resources/hudson/PluginManager/table_hi_IN.properties b/core/src/main/resources/hudson/PluginManager/table_hi_IN.properties new file mode 100644 index 0000000000..13587bf10d --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/table_hi_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=\u0928\u093E\u092E diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_hi_IN.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_hi_IN.properties new file mode 100644 index 0000000000..27999f33ef --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_hi_IN.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +blurb=\u092A\u093E\u0920 \u0915\u094B HTML \u0915\u0947 \u0930\u0942\u092A \u092E\u0947\u0902 \u0926\u0947\u0916\u093F\u090F \u0914\u0930 \u0907\u0938\u0915\u093E \u0909\u092A\u092F\u094B\u0917 \u0915\u093F\u0938\u0940 \u092D\u0940 \u0905\u0928\u0941\u0935\u093E\u0926 \u0915\u0947 \u092C\u093F\u0928\u093E \u0915\u0930\u0947\u0902 +disableSyntaxHighlighting=\u0935\u093E\u0915\u094D\u092F \u0930\u091A\u0928\u093E \u0938\u0947 \u092A\u094D\u0930\u0915\u093E\u0936 \u0939\u091F\u093E\u092F\u0947\u0902 diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_hi_IN.properties b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_hi_IN.properties new file mode 100644 index 0000000000..a9b8946026 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_hi_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +body=\u0905\u0928\u0947\u0915 \u0935\u093F\u092D\u093F\u0928\u094D\u0928 \u0935\u093F\u0928\u094D\u092F\u093E\u0938\u094B\u0902 \u0915\u0940 \u092C\u0921\u093C\u0940 \u092A\u0930\u093F\u092F\u094B\u091C\u0928\u093E\u0913\u0902 \u0915\u0947 \u0932\u093F\u090F \u0909\u092A\u092F\u0941\u0915\u094D\u0924 - \u091C\u0948\u0938\u0947 \u0915\u093F \u090F\u0915\u093E\u0927\u093F\u0915 \u0935\u093E\u0924\u093E\u0935\u0930\u0923 \u092A\u0930 \u092A\u0930\u093F\u0915\u094D\u0937\u0923, \u092E\u0902\u091A - \u0935\u093F\u0936\u093F\u0937\u094D\u091F \u0928\u093F\u0930\u094D\u092E\u093E\u0923 \u0906\u0926\u093F 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 new file mode 100644 index 0000000000..71896e6b5f --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_hi_IN.properties @@ -0,0 +1,3 @@ +# 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/index_hi_IN.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_hi_IN.properties new file mode 100644 index 0000000000..060fa61c5d --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_hi_IN.properties @@ -0,0 +1,7 @@ +# 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/sidepanel_hi_IN.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hi_IN.properties index d41f677093..99175efaca 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hi_IN.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hi_IN.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Previous\ Build=\u092A\u0942\u0930\u094D\u0935 \u0917\u0920\u0928 +Next\ Build=\u0905\u0917\u0932\u093E \u0917\u0920\u0928 +Previous\ Build=\u092A\u0942\u0930\u094D\u0935 \u0928\u093F\u0930\u094D\u092E\u093E\u0923 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 index 28d153b1fd..59e48c9a0d 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_hi_IN.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_hi_IN.properties @@ -20,9 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=\u092A\u0930\u093F\u092F\u094B\u091C\u0928\u093E \u092A\u0930 \u0935\u093E\u092A\u0938 \u091C\u093E\u090F\u0901 -Changes=\u092A\u0930\u093F\u0935\u0930\u094D\u0924\u0928 -Console\ Output=\u0915\u0902\u0938\u094B\u0932 \u0915\u093E \u0915\u093F\u092F\u093E \u0915\u093E\u092E +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=\u0917\u0920\u0928 \u0938\u0942\u091A\u0928\u093E \u0938\u0902\u092A\u093E\u0926\u093F\u0924 \u0915\u0930\u0947\u0902 -Status=\u0938\u094D\u0925\u0924\u093F +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/AbstractProject/sidepanel_hi_IN.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_hi_IN.properties new file mode 100644 index 0000000000..cf851307e9 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_hi_IN.properties @@ -0,0 +1,9 @@ +# 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 +Configure=\u0915\u0949\u0928\u094D\u092B\u093C\u093F\u0917\u0930 +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 +delete=\u0939\u091F\u093E\u0928\u093E 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 new file mode 100644 index 0000000000..b913e50cdd --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_hi_IN.properties @@ -0,0 +1,6 @@ +# 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/FreeStyleProject/newJobDetail_hi_IN.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_hi_IN.properties new file mode 100644 index 0000000000..f83456bd02 --- /dev/null +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_hi_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +body=\u092F\u0939 \u091C\u0947\u0928\u0915\u0940\u0902\u0938 \u0915\u0940 \u0915\u0947\u0902\u0926\u094D\u0930\u0940\u092F \u0935\u093F\u0936\u0947\u0937\u0924\u093E \u0939\u0948\u0964 \u091C\u0947\u0928\u0915\u0940\u0902\u0938, \u0915\u093F\u0938\u0940 \u092D\u0940 \u0928\u093F\u0930\u094D\u092E\u093E\u0923 \u092A\u094D\u0930\u0923\u093E\u0932\u0940 \u0915\u0947 \u0938\u093E\u0925 \u0915\u093F\u0938\u0940 \u092D\u0940 \u0938\u0949\u092B\u094D\u091F\u0935\u0947\u092F\u0930 \u0935\u093F\u0928\u094D\u092F\u093E\u0938 \u092A\u094D\u0930\u092C\u0902\u0927\u0928 \u0915\u093E \u0938\u0902\u092F\u094B\u091C\u0928 \u0915\u0930\u0915\u0947 \u0906\u092A\u0915\u0940 \u092A\u0930\u093F\u092F\u094B\u091C\u0928\u093E \u0915\u093E \u0928\u093F\u0930\u094D\u092E\u093E\u0923 \u0915\u0930\u0947\u0917\u093E, \u0914\u0930 \u0907\u0938\u0915\u093E \u092A\u094D\u0930\u092F\u094B\u0917 \u0938\u0949\u092B\u094D\u091F\u0935\u0947\u092F\u0930 \u0915\u093E \u0928\u093F\u0930\u094D\u092E\u093E\u0923 \u0915\u0930\u0928\u0947 \u0915\u0947 \u0905\u0932\u093E\u0935\u093E \u0905\u0928\u094D\u092F \u0915\u093E\u0930\u094D\u092F\u094B\u0902 \u0915\u0947 \u0932\u093F\u090F \u092D\u0940 \u0915\u093F\u092F\u093E \u091C\u093E \u0938\u0915\u0924\u093E \u0939\u0948. 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 index f64f638e7e..82ed0aa620 100644 --- a/core/src/main/resources/hudson/model/Run/console_hi_IN.properties +++ b/core/src/main/resources/hudson/model/Run/console_hi_IN.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u0915\u0902\u0938\u094B\u0932 \u0915\u093E \u0915\u093F\u092F\u093E \u0915\u093E\u092E +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/delete_hi_IN.properties b/core/src/main/resources/hudson/model/Run/delete_hi_IN.properties new file mode 100644 index 0000000000..3d662461db --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_hi_IN.properties @@ -0,0 +1,3 @@ +# 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/logKeep_hi_IN.properties b/core/src/main/resources/hudson/model/Run/logKeep_hi_IN.properties index 8c7f6687f2..960bc0a9cd 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_hi_IN.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_hi_IN.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Keep\ this\ build\ forever=\u0907\u0938 \u092C\u093F\u0932\u094D\u0921 \u0915\u094B \u0939\u092E\u0947\u0936\u093E \u0915\u0947 \u0932\u093F\u090F \u0930\u0916\u0947\u0902. +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/View/builds_hi_IN.properties b/core/src/main/resources/hudson/model/View/builds_hi_IN.properties new file mode 100644 index 0000000000..f60018cb3e --- /dev/null +++ b/core/src/main/resources/hudson/model/View/builds_hi_IN.properties @@ -0,0 +1,3 @@ +# 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/newJob_hi_IN.properties b/core/src/main/resources/hudson/model/View/newJob_hi_IN.properties new file mode 100644 index 0000000000..e6c09a87a3 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/newJob_hi_IN.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +CopyExisting=\u092A\u094D\u0930\u0924\u093F\u0932\u093F\u092A\u093F \u092C\u0928\u093E\u092F\u0947\u0902 +JobName=\u0928\u093E\u092E diff --git a/core/src/main/resources/hudson/model/View/sidepanel_hi_IN.properties b/core/src/main/resources/hudson/model/View/sidepanel_hi_IN.properties index 44ad4a20c9..b57ae0930f 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_hi_IN.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_hi_IN.properties @@ -20,5 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewJob=\u0928\u092F\u093E {\u0966} +Build\ History=\u0928\u093F\u0930\u094D\u092E\u093E\u0923 \u0915\u093E \u0907\u0924\u093F\u0939\u093E\u0938 +NewJob=\u0928\u092F\u093E {0} People=\u0932\u094B\u0917 +Project\ Relationship=\u0938\u092E\u094D\u092C\u0902\u0927\u093F\u0924 \u092A\u0930\u093F\u092F\u094B\u091C\u0928\u093E 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 new file mode 100644 index 0000000000..a049b150fe --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_hi_IN.properties @@ -0,0 +1,3 @@ +# 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/loginLink_hi_IN.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_hi_IN.properties new file mode 100644 index 0000000000..a5a3bc874f --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_hi_IN.properties @@ -0,0 +1,3 @@ +# 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/SecurityRealm/loginLink_hi_IN.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_hi_IN.properties new file mode 100644 index 0000000000..de1c5c8dcd --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_hi_IN.properties @@ -0,0 +1,3 @@ +# 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/tasks/test/AbstractTestResultAction/summary_hi_IN.properties b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_hi_IN.properties new file mode 100644 index 0000000000..3cab6ea0eb --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_hi_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Show\ all\ failed\ tests=\u0938\u093E\u0930\u0947 \u0935\u093F\u092B\u0932 \u092A\u0930\u093F\u0915\u094D\u0937\u0923 diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_hi_IN.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_hi_IN.properties new file mode 100644 index 0000000000..5ef29e692d --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_hi_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +History=\u0907\u0924\u093F\u0939\u093E\u0938 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 new file mode 100644 index 0000000000..dbf7395bbe --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_hi_IN.properties @@ -0,0 +1,3 @@ +# 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 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 new file mode 100644 index 0000000000..999b8eb498 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_hi_IN.properties @@ -0,0 +1,3 @@ +# 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/DefaultViewsTabBar/viewTabs_hi_IN.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_hi_IN.properties new file mode 100644 index 0000000000..8f46a0e804 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_hi_IN.properties @@ -0,0 +1,3 @@ +# 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/LastDurationColumn/columnHeader_hi_IN.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_hi_IN.properties new file mode 100644 index 0000000000..21bc4b9e38 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_hi_IN.properties @@ -0,0 +1,3 @@ +# 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/column_hi_IN.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_hi_IN.properties new file mode 100644 index 0000000000..f3c680fc63 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_hi_IN.properties @@ -0,0 +1,3 @@ +# 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/LastFailureColumn/columnHeader_hi_IN.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_hi_IN.properties new file mode 100644 index 0000000000..4472961ccf --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_hi_IN.properties @@ -0,0 +1,3 @@ +# 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/column_hi_IN.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_hi_IN.properties new file mode 100644 index 0000000000..f16653e889 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_hi_IN.properties @@ -0,0 +1,3 @@ +# 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/LastSuccessColumn/columnHeader_hi_IN.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_hi_IN.properties new file mode 100644 index 0000000000..d024e7cff5 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_hi_IN.properties @@ -0,0 +1,3 @@ +# 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/column_hi_IN.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_hi_IN.properties new file mode 100644 index 0000000000..f3c680fc63 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_hi_IN.properties @@ -0,0 +1,3 @@ +# 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/StatusColumn/columnHeader_hi_IN.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_hi_IN.properties new file mode 100644 index 0000000000..9fa8c933eb --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_hi_IN.properties @@ -0,0 +1,3 @@ +# 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/WeatherColumn/columnHeader_hi_IN.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_hi_IN.properties new file mode 100644 index 0000000000..07a8937468 --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_hi_IN.properties @@ -0,0 +1,3 @@ +# 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/widgets/HistoryWidget/index_hi_IN.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_hi_IN.properties new file mode 100644 index 0000000000..ee89a02b95 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_hi_IN.properties @@ -0,0 +1,4 @@ +# 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/jenkins/model/Jenkins/configure_hi_IN.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_hi_IN.properties new file mode 100644 index 0000000000..6c367df275 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_hi_IN.properties @@ -0,0 +1,4 @@ +# 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/login_hi_IN.properties b/core/src/main/resources/jenkins/model/Jenkins/login_hi_IN.properties new file mode 100644 index 0000000000..a484a1ed37 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/login_hi_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Password=\u092A\u093E\u0938\u0935\u0930\u094D\u0921 diff --git a/core/src/main/resources/lib/form/advanced_hi_IN.properties b/core/src/main/resources/lib/form/advanced_hi_IN.properties new file mode 100644 index 0000000000..a13ea2d49a --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_hi_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Advanced=\u0909\u0928\u094D\u0928\u0924\u093F diff --git a/core/src/main/resources/lib/form/textarea_hi_IN.properties b/core/src/main/resources/lib/form/textarea_hi_IN.properties new file mode 100644 index 0000000000..3d6c9bf6e5 --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_hi_IN.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=\u092A\u094D\u0930\u093E\u092D\u094D\u092F\u093E\u0938 \u091B\u0941\u092A\u093E\u090F\u0902 +Preview=\u092A\u094D\u0930\u093E\u092D\u094D\u092F\u093E\u0938 diff --git a/core/src/main/resources/lib/hudson/buildHealth_hi_IN.properties b/core/src/main/resources/lib/hudson/buildHealth_hi_IN.properties new file mode 100644 index 0000000000..4ffc4b3759 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_hi_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Description=\u0935\u093F\u0935\u0930\u0923 diff --git a/core/src/main/resources/lib/hudson/buildListTable_hi_IN.properties b/core/src/main/resources/lib/hudson/buildListTable_hi_IN.properties new file mode 100644 index 0000000000..aa0917b3e3 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildListTable_hi_IN.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Click\ to\ center\ timeline\ on\ event=\u0938\u092E\u092F \u0930\u0947\u0916\u093E \u0915\u094B \u0918\u091F\u0928\u093E \u092A\u0930 \u0915\u0947\u0902\u0926\u094D\u0930 \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093F\u090F \u0915\u094D\u0932\u093F\u0915 \u0915\u0930\u0947\u0902 +Status=\u0938\u094D\u0925\u093F\u0924\u093F diff --git a/core/src/main/resources/lib/hudson/editableDescription_hi_IN.properties b/core/src/main/resources/lib/hudson/editableDescription_hi_IN.properties new file mode 100644 index 0000000000..e8a314c61e --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_hi_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +add\ description=\u0935\u094D\u092F\u0916\u0928\u093E \u092A\u094D\u0930\u0926\u093E\u0928 \u0915\u0930\u0947\u0902 diff --git a/core/src/main/resources/lib/hudson/executors_hi_IN.properties b/core/src/main/resources/lib/hudson/executors_hi_IN.properties new file mode 100644 index 0000000000..9c47baad2e --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_hi_IN.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Build\ Executor\ Status=\u0928\u093F\u0930\u094D\u092E\u093E\u0923 \u0928\u093F\u0937\u094D\u092A\u093E\u0926\u0915 \u0938\u094D\u0925\u093F\u0924\u093F +Idle=\u0928\u093F\u0937\u094D\u0915\u094D\u0930\u093F\u092F +Master=\u092E\u093E\u0938\u094D\u091F\u0930 +Status=\u0938\u094D\u0925\u093F\u0924\u093F +offline=\u0911\u092B\u093C\u0932\u093E\u0907\u0928 +suspended=\u0928\u093F\u0932\u0902\u092C\u093F\u0924 +terminate\ this\ build=\u0907\u0938 \u092C\u093F\u0932\u094D\u0921 \u0915\u094B \u0930\u0926\u094D\u0926 \u0915\u0930\u0947 diff --git a/core/src/main/resources/lib/hudson/iconSize_hi_IN.properties b/core/src/main/resources/lib/hudson/iconSize_hi_IN.properties new file mode 100644 index 0000000000..369291e2c2 --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_hi_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Icon=\u0906\u0907\u0915\u0928 diff --git a/core/src/main/resources/lib/hudson/newFromList/form_hi_IN.properties b/core/src/main/resources/lib/hudson/newFromList/form_hi_IN.properties new file mode 100644 index 0000000000..103076eaa0 --- /dev/null +++ b/core/src/main/resources/lib/hudson/newFromList/form_hi_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Copy\ from=\u0938\u0947 \u092A\u094D\u0930\u0924 \u092C\u0928\u093E\u092F\u0947 diff --git a/core/src/main/resources/lib/hudson/queue_hi_IN.properties b/core/src/main/resources/lib/hudson/queue_hi_IN.properties new file mode 100644 index 0000000000..2eb9e7c222 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_hi_IN.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Build\ Queue=\u0928\u093F\u0930\u094D\u092E\u093E\u0923 \u0915\u0924\u093E\u0930 +No\ builds\ in\ the\ queue.=\u0915\u0924\u093E\u0930 \u092E\u0947\u0902 \u090F\u0915 \u0928\u093F\u0930\u094D\u092E\u093E\u0923 \u092D\u0940 \u0928\u0939\u0940\u0902 + + diff --git a/core/src/main/resources/lib/hudson/rssBar_hi_IN.properties b/core/src/main/resources/lib/hudson/rssBar_hi_IN.properties index 6059b781a7..d8d00347e0 100644 --- a/core/src/main/resources/lib/hudson/rssBar_hi_IN.properties +++ b/core/src/main/resources/lib/hudson/rssBar_hi_IN.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Legend=\u0915\u093F\u0902\u0935\u0926\u0902\u0924\u0940 for\ all=\u0938\u092D\u0940 \u0915\u0947 \u0932\u093F\u090F for\ failures=\u0905\u0938\u092B\u0932\u0924\u093E\u0913\u0902 \u0915\u0947 \u0932\u093F\u090F for\ just\ latest\ builds=\u092C\u0938 \u0928\u0935\u0940\u0928 builds \u0915\u0947 \u0932\u093F\u090F diff --git a/core/src/main/resources/lib/hudson/test-result_hi_IN.properties b/core/src/main/resources/lib/hudson/test-result_hi_IN.properties new file mode 100644 index 0000000000..170c8d4273 --- /dev/null +++ b/core/src/main/resources/lib/hudson/test-result_hi_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +multifailures="{0} \u0935\u093F\u092B\u0932\u0924\u093E\u090F {1}" diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_hi_IN.properties b/core/src/main/resources/lib/layout/breadcrumbBar_hi_IN.properties new file mode 100644 index 0000000000..57849f75ed --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_hi_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=\u0938\u094D\u0935\u0924: \u0930\u093F\u092B\u094D\u0930\u0947\u0936 \u0938\u0915\u094D\u0937\u092E \u0915\u0930\u0947\u0902 diff --git a/core/src/main/resources/lib/layout/layout_hi_IN.properties b/core/src/main/resources/lib/layout/layout_hi_IN.properties index 241f6adc7f..16c469d4f9 100644 --- a/core/src/main/resources/lib/layout/layout_hi_IN.properties +++ b/core/src/main/resources/lib/layout/layout_hi_IN.properties @@ -20,6 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +ENABLE\ AUTO\ REFRESH=swatah Page\ generated=\u0909\u0924\u094D\u092A\u0928\u094D\u0928 \u092A\u0943\u0937\u094D\u0920 -search=\u0916\u094B\u091C\u0947\u0902 +logout=\u0938\u092E\u093E\u092A\u094D\u0924 \u0915\u0930\u0947 +search=\u0916\u094B\u091C searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -- GitLab From f56be2c270fe92993f69479e4f054981390db684 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:58 -0700 Subject: [PATCH 052/308] Community-contributed localization for Hungarian (hu) --- .../hudson/AboutJenkins/index_hu.properties | 5 +++++ .../PluginManager/advanced_hu.properties | 11 +++++++++++ .../hudson/PluginManager/index_hu.properties | 3 +++ .../PluginManager/installed_hu.properties | 5 +++++ .../hudson/PluginManager/table_hu.properties | 4 ++++ .../message_hu.properties | 4 ++-- .../LogRecorderManager/index_hu.properties | 6 ++++++ .../LogRecorderManager/sidepanel_hu.properties | 8 ++++++++ .../config_hu.properties | 4 ++++ .../matrix/MatrixProject/index_hu.properties | 3 +++ .../model/AbstractBuild/index_hu.properties | 9 ++++++++- .../AbstractBuild/sidepanel_hu.properties | 4 ++-- .../model/AbstractBuild/tasks_hu.properties | 7 ++++--- .../configure-common_hu.properties | 4 ++++ .../model/AbstractProject/main_hu.properties | 6 ++++++ .../AbstractProject/sidepanel_hu.properties | 14 ++++++++------ .../hudson/model/AllView/noJob_hu.properties | 6 ++++++ .../UserIdCause/description_hu.properties | 4 ++++ .../model/ComputerSet/_new_hu.properties | 4 ++++ .../model/ComputerSet/sidepanel_hu.properties | 6 +++--- .../DirectoryBrowserSupport/dir_hu.properties | 5 +++++ .../model/Job/buildTimeTrend_hu.properties | 7 +++++++ .../hudson/model/Job/configure_hu.properties | 7 +++++++ .../hudson/model/Job/index_hu.properties | 3 +++ .../hudson/model/Job/permalinks_hu.properties | 3 +++ .../ListView/configure-entries_hu.properties | 6 ++++++ .../model/LoadStatistics/main_hu.properties | 8 ++++++++ .../model/ParametersAction/index_hu.properties | 3 +++ .../config_hu.properties | 4 ++++ .../Run/KeepLogBuildBadge/badge_hu.properties | 3 +++ .../hudson/model/Run/configure_hu.properties | 6 ++++++ .../hudson/model/Run/console_hu.properties | 1 + .../hudson/model/Run/delete_hu.properties | 3 +++ .../hudson/model/Run/logKeep_hu.properties | 3 +++ .../CoreUpdateMonitor/message_hu.properties | 1 + .../model/UpdateCenter/body_hu.properties | 2 ++ .../hudson/model/User/configure_hu.properties | 4 ++++ .../hudson/model/User/index_hu.properties | 2 +- .../hudson/model/User/sidepanel_hu.properties | 6 +++--- .../model/View/People/index_hu.properties | 7 +++++++ .../hudson/model/View/builds_hu.properties | 4 ++-- .../hudson/model/View/configure_hu.properties | 2 ++ .../hudson/model/View/newJob_hu.properties | 4 ++++ .../hudson/model/View/sidepanel_hu.properties | 6 +++--- .../scm/EmptyChangeLogSet/digest_hu.properties | 2 +- .../scm/SCM/project-changes_hu.properties | 4 ++++ .../config_hu.properties | 3 +++ .../index_hu.properties | 5 +++++ .../sidepanel_hu.properties | 5 +++++ .../SecurityRealm/loginLink_hu.properties | 2 +- .../DumbSlave/configure-entries_hu.properties | 7 +++++++ .../FingerprintAction/index_hu.properties | 8 ++++++++ .../tasks/LogRotator/config_hu.properties | 3 +++ .../tasks/junit/CaseResult/index_hu.properties | 5 +++++ .../test/TestObject/sidepanel_hu.properties | 1 + .../BuildButtonColumn/column_hu.properties | 3 ++- .../columnHeader_hu.properties | 2 +- .../StatusColumn/columnHeader_hu.properties | 2 +- .../WeatherColumn/columnHeader_hu.properties | 2 +- .../BuildHistoryWidget/entries_hu.properties | 4 ++++ .../widgets/HistoryWidget/index_hu.properties | 1 + .../management/PluginsLink/info_hu.properties | 3 +++ .../jenkins/model/Jenkins/_cli_hu.properties | 4 ++++ .../model/Jenkins/configure_hu.properties | 3 +++ .../model/Jenkins/downgrade_hu.properties | 2 +- .../jenkins/model/Jenkins/legend_hu.properties | 15 +++++++++++++++ .../jenkins/model/Jenkins/manage_hu.properties | 18 +++++++++++++++++- .../model/Jenkins/systemInfo_hu.properties | 8 ++++++++ .../resources/lib/form/advanced_hu.properties | 3 +++ .../resources/lib/form/apply_hu.properties | 3 +++ .../breadcrumb-config-outline_hu.properties | 3 +++ .../lib/form/slave-mode_hu.properties | 3 +++ .../resources/lib/form/textarea_hu.properties | 4 ++++ .../lib/hudson/buildCaption_hu.properties | 4 ++-- .../lib/hudson/buildListTable_hu.properties | 3 ++- .../lib/hudson/buildProgressBar_hu.properties | 2 +- .../lib/hudson/executors_hu.properties | 9 +++++---- .../lib/hudson/iconSize_hu.properties | 2 +- .../lib/hudson/listScmBrowsers_hu.properties | 3 +++ .../lib/hudson/newFromList/form_hu.properties | 3 +++ .../config-customWorkspace_hu.properties | 4 ++++ .../project/config-disableBuild_hu.properties | 4 ++++ .../project/config-quietPeriod_hu.properties | 3 +++ .../project/config-retryCount_hu.properties | 3 +++ .../hudson/project/config-scm_hu.properties | 3 +++ .../lib/hudson/propertyTable_hu.properties | 4 ++++ .../resources/lib/hudson/queue_hu.properties | 7 +++++-- .../resources/lib/hudson/rssBar_hu.properties | 2 +- .../lib/hudson/scriptConsole_hu.properties | 4 ++++ .../lib/hudson/test-result_hu.properties | 4 ++++ .../hudson/thirdPartyLicenses_hu.properties | 4 ++++ .../lib/layout/breadcrumbBar_hu.properties | 4 ++++ .../resources/lib/layout/layout_hu.properties | 6 +++--- .../lib/layout/main-panel_hu.properties | 3 +++ .../layout/progressiveRendering_hu.properties | 3 +++ .../resources/lib/layout/task_hu.properties | 3 +++ 96 files changed, 383 insertions(+), 49 deletions(-) create mode 100644 core/src/main/resources/hudson/AboutJenkins/index_hu.properties create mode 100644 core/src/main/resources/hudson/PluginManager/advanced_hu.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/index_hu.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_hu.properties create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_hu.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/index_hu.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/configure-common_hu.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_hu.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UserIdCause/description_hu.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/_new_hu.properties create mode 100644 core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_hu.properties create mode 100644 core/src/main/resources/hudson/model/Job/buildTimeTrend_hu.properties create mode 100644 core/src/main/resources/hudson/model/Job/configure_hu.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_hu.properties create mode 100644 core/src/main/resources/hudson/model/Job/permalinks_hu.properties create mode 100644 core/src/main/resources/hudson/model/LoadStatistics/main_hu.properties create mode 100644 core/src/main/resources/hudson/model/ParametersAction/index_hu.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_hu.properties create mode 100644 core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_hu.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_hu.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_hu.properties create mode 100644 core/src/main/resources/hudson/model/Run/logKeep_hu.properties create mode 100644 core/src/main/resources/hudson/model/User/configure_hu.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_hu.properties create mode 100644 core/src/main/resources/hudson/model/View/newJob_hu.properties create mode 100644 core/src/main/resources/hudson/scm/SCM/project-changes_hu.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_hu.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_hu.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_hu.properties create mode 100644 core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_hu.properties create mode 100644 core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_hu.properties create mode 100644 core/src/main/resources/hudson/tasks/LogRotator/config_hu.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/CaseResult/index_hu.properties create mode 100644 core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_hu.properties create mode 100644 core/src/main/resources/jenkins/management/PluginsLink/info_hu.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/_cli_hu.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/legend_hu.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/systemInfo_hu.properties create mode 100644 core/src/main/resources/lib/form/advanced_hu.properties create mode 100644 core/src/main/resources/lib/form/apply_hu.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_hu.properties create mode 100644 core/src/main/resources/lib/form/slave-mode_hu.properties create mode 100644 core/src/main/resources/lib/form/textarea_hu.properties create mode 100644 core/src/main/resources/lib/hudson/listScmBrowsers_hu.properties create mode 100644 core/src/main/resources/lib/hudson/newFromList/form_hu.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-customWorkspace_hu.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-disableBuild_hu.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-quietPeriod_hu.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-retryCount_hu.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-scm_hu.properties create mode 100644 core/src/main/resources/lib/hudson/propertyTable_hu.properties create mode 100644 core/src/main/resources/lib/hudson/scriptConsole_hu.properties create mode 100644 core/src/main/resources/lib/hudson/test-result_hu.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_hu.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_hu.properties create mode 100644 core/src/main/resources/lib/layout/main-panel_hu.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_hu.properties create mode 100644 core/src/main/resources/lib/layout/task_hu.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_hu.properties b/core/src/main/resources/hudson/AboutJenkins/index_hu.properties new file mode 100644 index 0000000000..2d047c885b --- /dev/null +++ b/core/src/main/resources/hudson/AboutJenkins/index_hu.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +about=Jenkins {0} N\u00E9vjegye +blurb=Jenkins egy k\u00F6z\u00F6ss\u00E9gi fejleszt\u00E9s\u0171, ny\u00EDlt forr\u00E1s\u00FA CI szerver. +dependencies=Jenking a k\u00F6vetkez\u0151 3. f\u00E9lt\u0151l sz\u00E1rmaz\u00F3 k\u00F6nyvt\u00E1rakt\u00F3l f\u00FCgg. diff --git a/core/src/main/resources/hudson/PluginManager/advanced_hu.properties b/core/src/main/resources/hudson/PluginManager/advanced_hu.properties new file mode 100644 index 0000000000..911b0ee430 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/advanced_hu.properties @@ -0,0 +1,11 @@ +# This file is under the MIT License by authors + +Check\ now=Ellen\u0151rz\u00E9s most +File=\u00C1llom\u00E1ny +HTTP\ Proxy\ Configuration=HTTP Proxy Be\u00E1ll\u00EDt\u00E1sok +Submit=Elk\u00FCld +Update\ Site=Friss\u00EDt\u00E9si Oldal +Upload=Felt\u00F6lt +Upload\ Plugin=Be\u00E9p\u00FCl\u0151 Felt\u00F6lt\u00E9se +lastUpdated=Friss\u00EDt\u00E9si inform\u00E1ci\u00F3k utolj\u00E1ra lek\u00E9rve: {0} ezel\u0151tt +uploadtext=Felt\u00F6lthet egy .hpi \u00E1llom\u00E1nyt egy be\u00E9p\u00FCl\u0151 telep\u00EDt\u00E9s\u00E9hez, ami nem tal\u00E1lhat\u00F3 meg a k\u00F6zponti be\u00E9p\u00FCl\u0151 gy\u0171jtem\u00E9nyben. diff --git a/core/src/main/resources/hudson/PluginManager/index_hu.properties b/core/src/main/resources/hudson/PluginManager/index_hu.properties index 4362c28642..3a0919d6ea 100644 --- a/core/src/main/resources/hudson/PluginManager/index_hu.properties +++ b/core/src/main/resources/hudson/PluginManager/index_hu.properties @@ -20,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +All=\u00D6sszes +None=Semmi +Select=Kiv\u00E1laszt\u00E1s UpdatePageDescription=Ezen az oldalon tal\u00E1lhat\u00F3 az \u00D6n \u00E1ltal haszn\u00E1lt plugin-ek list\u00E1ja. diff --git a/core/src/main/resources/hudson/PluginManager/installed_hu.properties b/core/src/main/resources/hudson/PluginManager/installed_hu.properties index 2033d24dd9..01d83570d0 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_hu.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_hu.properties @@ -23,4 +23,9 @@ Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=A v\u00E1ltoztat\u00E1sok \u00E9rv\u00E9nyes\u00EDt\u00E9s\u00E9hez ind\u00EDtsa \u00FAjra a Jenkinst Enabled=Enged\u00E9lyezett Name=N\u00E9v +Previously\ installed\ version=Kor\u00E1bban telep\u00EDtett verzi\u00F3 +Restart\ Once\ No\ Jobs\ Are\ Running=\u00DAjraind\u00EDt\u00E1s ha m\u00E1r nincs fut\u00F3 folyamat +Uncheck\ to\ disable\ the\ plugin=T\u00F6r\u00F6lje a jel\u00F6l\u00E9st a be\u00E9p\u00FCl\u0151 kikapcsol\u00E1s\u00E1hoz Version=Verzi\u00F3 +downgradeTo=Visszafriss\u00EDt\u00E9s {0} verzi\u00F3ra +wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins diff --git a/core/src/main/resources/hudson/PluginManager/table_hu.properties b/core/src/main/resources/hudson/PluginManager/table_hu.properties index 5a6c66824c..d9ad06d926 100644 --- a/core/src/main/resources/hudson/PluginManager/table_hu.properties +++ b/core/src/main/resources/hudson/PluginManager/table_hu.properties @@ -21,7 +21,11 @@ # THE SOFTWARE. Check\ to\ install\ the\ plugin=Jel\u00F6lje ki a plugin telep\u00EDt\u00E9s\u00E9hez +Click\ this\ heading\ to\ sort\ by\ category=Nyomjon erre a c\u00EDmre kateg\u00F3ri\u00E1k szerinti rendez\u00E9shez +Download\ now\ and\ install\ after\ restart=Let\u00F6lti most \u00E9s \u00FAjraind\u00EDt\u00E1s ut\u00E1n telep\u00EDt Install=Telep\u00EDt\u00E9s +Install\ without\ restart=Telep\u00EDt\u00E9s \u00FAjraind\u00EDt\u00E1s n\u00E9lk\u00FCl Installed=Telep\u00EDtett Name=N\u00E9v +No\ updates=Nincsenek el\u00E9rhet\u0151 friss\u00EDt\u00E9sek Version=Verzi\u00F3 diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_hu.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_hu.properties index 3d4a2148f6..385910ac5f 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_hu.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_hu.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=Elutas\u00EDt -More\ Info=T\u00F6bb Inform\u00E1ci\u00F3 +Dismiss=Elvet +More\ Info=Tov\u00E1bbi inf\u00F3k blurb=A reverse proxy be\u00E1ll\u00EDt\u00E1sok rossznak t\u0171nnek. diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_hu.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_hu.properties new file mode 100644 index 0000000000..8ea10b75dc --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_hu.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Add\ new\ log\ recorder=\u00DAj log felvev\u0151 hozz\u00E1ad\u00E1sa +All\ Jenkins\ Logs=\u00D6sszes Jenkins Log +Log\ Recorders=Log Felvev\u0151 +Name=N\u00E9v diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_hu.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_hu.properties new file mode 100644 index 0000000000..3843692f11 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_hu.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +All\ Logs=\u00D6sszes Log +Back\ to\ Dashboard=Vissza a Dashboard-ra +Log\ Levels=Log Szintek +Logger\ List=Loggol\u00F3k List\u00E1ja +Manage\ Jenkins=Jenkins Kezel\u00E9se +New\ Log\ Recorder=\u00DAj Log Felvev\u0151 diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_hu.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_hu.properties new file mode 100644 index 0000000000..d1ba030ac7 --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_hu.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +blurb=A sz\u00F6veg kezel\u00E9se HTML-k\u00E9nt \u00E9s felhaszn\u00E1l\u00E1sa ford\u00EDt\u00E1s n\u00E9lk\u00FCl +disableSyntaxHighlighting=Szintaxis kiemel\u00E9s tilt\u00E1sa diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_hu.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_hu.properties new file mode 100644 index 0000000000..80775e5f46 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Latest\ Test\ Result=Legut\u00F3bbi teszteredm\u00E9nyek diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_hu.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_hu.properties index e92f2aad69..3816c91bf9 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_hu.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_hu.properties @@ -20,5 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Build=Ford\u00EDt\u00E1s +Build\ Artifacts=\u00C9p\u00EDt\u0151k\u00F6vek +Changes\ in\ dependency=V\u00E1ltoz\u00E1sok a f\u00FCgg\u0151s\u00E9g(ek)ben Not\ yet\ determined=M\u00E9g nincs feldolgozva -startedAgo=Ind\u00EDtva {0} +Took=tartott +beingExecuted=A build {} perce fut +detail=b\u0151vebben +on=@ +startedAgo=Elkezd\u0151d\u00F6tt {0}-kor diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hu.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hu.properties index 40d3098b61..fd5add7ab8 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hu.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hu.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=K\u00F6vetkez\u0151 \u00C9p\u00EDt\u00E9s -Previous\ Build=El\u0151z\u0151 ford\u00EDt\u00E1s +Next\ Build=K\u00F6vetkez\u0151 \u00E9p\u00EDt\u00E9s +Previous\ Build=El\u0151z\u0151 \u00C9p\u00EDt\u00E9s diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_hu.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_hu.properties index 355da9c221..272cbb4a2a 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_hu.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_hu.properties @@ -24,6 +24,7 @@ Back\ to\ Project=Vissza a projekthez Changes=V\u00E1ltoz\u00E1sok Console\ Output=Konzol kimenet View\ as\ plain\ text=Egyszer\u0171 sz\u00F6vegk\u00E9nt -Edit\ Build\ Information=Ford\u00EDt\u00E1si inform\u00E1ci\u00F3k szerkeszt\u00E9se -Status=\u00C1llapot -View\ Build\ Information=\u00C9p\u00EDt\u00E9si Inform\u00E1ci\u00F3k Megtekint\u00E9se +Edit\ Build\ Information=\u00C9p\u00EDt\u00E9s szerkeszt\u00E9se +Status=St\u00E1tusz +View\ Build\ Information=Ford\u00EDt\u00E1s inform\u00E1ci\u00F3k megtekint\u00E9se +raw=nyers diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_hu.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_hu.properties new file mode 100644 index 0000000000..db8d90f7de --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_hu.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Advanced\ Project\ Options=Halad\u00F3 projekt-be\u00E1ll\u00EDt\u00E1sok +Display\ Name=Megjelen\u00EDt\u00E9si n\u00E9v diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_hu.properties b/core/src/main/resources/hudson/model/AbstractProject/main_hu.properties new file mode 100644 index 0000000000..e7d47efa92 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_hu.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Last\ Successful\ Artifacts=Az utols\u00F3 sikeres eredm\u00E9nyek +Latest\ Test\ Result=A legut\u00F3bbi teszteredm\u00E9nyek +Recent\ Changes=Az ut\u00F3bbi v\u00E1ltoztat\u00E1sok +Workspace=Munkater\u00FClet diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_hu.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_hu.properties index 89c6b2bf9e..725fa0300d 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_hu.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_hu.properties @@ -20,12 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard= -Build\ scheduled=Id\u0151z\u00edtett \u00e9p\u00edt\u00e9s +Back\ to\ Dashboard=Vissza a ir\u00E1ny\u00EDt\u00F3pultra +Build\ scheduled=\u00C9p\u00EDt\u00E9s be\u00FCtemez\u00E9se Changes=V\u00e1ltoz\u00e1sok Configure=Be\u00e1ll\u00edt\u00e1sok -Status=\u00c1llapot -Wipe\ Out\ Workspace=Munkater\u00fclet t\u00f6rl\u00e9se -Workspace=Munkater\u00fclet -delete=T\u00f6rl\u00e9s {0} +Status=St\u00E1tusz +Wipe\ Out\ Workspace=Munkater\u00FClet kipucol\u00E1sa +Workspace=Munkater\u00FClet +delete={0} t\u00F6rl\u00E9se +delete.confirm=Biztosan t\u00F6rli a {0} \u2018{1}\u2019? + wipe.out.confirm=Biztosan t\u00f6r\u00f6lni akarja a munkater\u00fcletet? diff --git a/core/src/main/resources/hudson/model/AllView/noJob_hu.properties b/core/src/main/resources/hudson/model/AllView/noJob_hu.properties index 415fcd7335..a4bbc51a61 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_hu.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_hu.properties @@ -21,3 +21,9 @@ # THE SOFTWARE. Welcome\ to\ Jenkins!=\u00DCdv\u00F6zli a Jenkins! +newJob=K\u00E9rem, hozzon l\u00E9tre egy Jobot a kezd\u00E9shez. + + + + + diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_hu.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_hu.properties new file mode 100644 index 0000000000..1eae8f452e --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_hu.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +started_by_anonymous=Ismeretlen felhaszn\u00E1l\u00F3 \u00E1ltal ind\u00EDtva +started_by_user=Elind\u00EDtva {1} \u00E1ltal. diff --git a/core/src/main/resources/hudson/model/ComputerSet/_new_hu.properties b/core/src/main/resources/hudson/model/ComputerSet/_new_hu.properties new file mode 100644 index 0000000000..2e5f075a32 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/_new_hu.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Name=N\u00E9v +Name\ is\ mandatory=A n\u00E9v kit\u00F6lt\u00E9se k\u00F6telez\u0151 diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_hu.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_hu.properties index a0a3a14aca..88ff5d4576 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_hu.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_hu.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Vissza a Ir\u00E1ny\u00EDt\u00F3 pultra -Configure=Konfigur\u00E1l -Manage\ Jenkins=Jankins Kezel\u00E9s +Back\ to\ Dashboard=Vissza a Ir\u00E1ny\u00EDt\u00F3pultra +Configure=Megjelen\u00EDt\u00E9s be\u00E1ll\u00EDt\u00E1sa +Manage\ Jenkins=Jenkins Kezel\u00E9s New\ Node=\u00DAj Csom\u00F3pont diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_hu.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_hu.properties new file mode 100644 index 0000000000..b05da12cd0 --- /dev/null +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_hu.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +No\ files\ in\ directory=\u00DCres mappa +all\ files\ in\ zip=az \u00F6sszes file-t zip form\u00E1tumban +view=n\u00E9zet diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_hu.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_hu.properties new file mode 100644 index 0000000000..4464362e1c --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_hu.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Build=\u00C9p\u00EDt\u00E9s +Build\ Time\ Trend=\u00C9p\u00EDt\u00E9si id\u0151 tendencia +Duration=Id\u0151 +Slave=Csom\u00F3pont +Timeline=Id\u0151vonal diff --git a/core/src/main/resources/hudson/model/Job/configure_hu.properties b/core/src/main/resources/hudson/model/Job/configure_hu.properties new file mode 100644 index 0000000000..b8c94eb871 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/configure_hu.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Description=Le\u00EDr\u00E1s +Discard\ Old\ Builds=R\u00E9gi \u00E9p\u00EDt\u00E9sek t\u00F6rl\u00E9se +LOADING=BET\u00D6LT\u00C9S +Strategy=Strat\u00E9gia +name={0} n\u00E9v diff --git a/core/src/main/resources/hudson/model/Job/index_hu.properties b/core/src/main/resources/hudson/model/Job/index_hu.properties new file mode 100644 index 0000000000..b1b04e3bc0 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Disable\ Project=Projekt letilt\u00E1sa diff --git a/core/src/main/resources/hudson/model/Job/permalinks_hu.properties b/core/src/main/resources/hudson/model/Job/permalinks_hu.properties new file mode 100644 index 0000000000..193d7e2742 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/permalinks_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Permalinks=Permalinkek diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_hu.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_hu.properties index c443025aa9..5661c3bb65 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_hu.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_hu.properties @@ -21,6 +21,12 @@ # THE SOFTWARE. Add\ column=Oszlop hozz\u00E1ad\u00E1sa +All\ selected\ jobs=Minden kiv\u00E1lasztott feladat Columns=Oszlopok +Disabled\ jobs\ only=Csak letiltott feladatok +Enabled\ jobs\ only=Csak enged\u00E9lyezett feladatok +Job\ Filters=Feladatok Sz\u0171r\u00E9se +Jobs=Feladatok Regular\ expression=Regul\u00E1ris kifejez\u00E9s Status\ Filter=\u00C1llapot sz\u0171r\u0151 +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Haszn\u00E1ljon regul\u00E1ris kifejez\u00E9seket, hogy hozz\u00E1adjon feladatokat a n\u00E9zethez diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_hu.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_hu.properties new file mode 100644 index 0000000000..8e86540a14 --- /dev/null +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_hu.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Load\ statistics\ graph=Terhel\u00E9si statisztika grafikon +Long=Hossz\u00FA +Medium=K\u00F6zepes +Short=R\u00F6vid +Timespan=Id\u0151tartam +title=Terhel\u00E9si statisztika: {0} diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_hu.properties b/core/src/main/resources/hudson/model/ParametersAction/index_hu.properties new file mode 100644 index 0000000000..ef100fc275 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersAction/index_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Parameters=Param\u00E9terek diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_hu.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_hu.properties new file mode 100644 index 0000000000..7eb7f4cee3 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_hu.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Add\ Parameter=Param\u00E9ter hozz\u00E1ad\u00E1sa +This\ build\ is\ parameterized=Hozz\u00E1ad diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_hu.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_hu.properties new file mode 100644 index 0000000000..962526af0b --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Keep\ this\ build\ forever=Tartsa meg a buildet \u00F6r\u00F6kk\u00E9 diff --git a/core/src/main/resources/hudson/model/Run/configure_hu.properties b/core/src/main/resources/hudson/model/Run/configure_hu.properties new file mode 100644 index 0000000000..4c64a34745 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_hu.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Description=Le\u00EDr\u00E1s +DisplayName=Megjelen\u00E9si n\u00E9v +LOADING=BET\u00D6LT\u00C9S +Save=Ment\u00E9s diff --git a/core/src/main/resources/hudson/model/Run/console_hu.properties b/core/src/main/resources/hudson/model/Run/console_hu.properties index bd310e7f45..4cf20c4d39 100644 --- a/core/src/main/resources/hudson/model/Run/console_hu.properties +++ b/core/src/main/resources/hudson/model/Run/console_hu.properties @@ -21,4 +21,5 @@ # THE SOFTWARE. Console\ Output=Parancssor kimenete +View\ as\ plain\ text=Mutasd sima sz\u00F6vegk\u00E9nt skipSome=Kimaradt {0,number,integer} KB.. Teljes Napl\u00F3 diff --git a/core/src/main/resources/hudson/model/Run/delete_hu.properties b/core/src/main/resources/hudson/model/Run/delete_hu.properties new file mode 100644 index 0000000000..2f9f84411f --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete\ this\ build=\u00C9p\u00EDt\u00E9s t\u00F6rl\u00E9se diff --git a/core/src/main/resources/hudson/model/Run/logKeep_hu.properties b/core/src/main/resources/hudson/model/Run/logKeep_hu.properties new file mode 100644 index 0000000000..47bc23046d --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/logKeep_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Keep\ this\ build\ forever=\u00C9p\u00EDtm\u00E9ny megtart\u00E1sa \u00F6r\u00F6kre diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_hu.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_hu.properties index a4c494f9ca..c28160d659 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_hu.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_hu.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. NewVersionAvailable=A Jenkins \u00FAj verzi\u00F3ja ({0}) el\u00E9rhet\u0151 let\u00F6lt\u00E9sre (v\u00E1ltoz\u00E1sok). +Or\ Upgrade\ Automatically=Vagy friss\u00EDtsen automatikusan diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_hu.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_hu.properties index 335ec25e07..aa9034563f 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_hu.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_hu.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Go\ back\ to\ the\ top\ page=Vissza a kezd\u0151lapra warning=Ind\u00EDtsa \u00FAjra a Jenkinst, miut\u00E1n a telep\u00EDt\u00E9s sikeres volt \u00E9s nincs t\u00F6bb fut\u00F3 feladat +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=A plugin mostant\u00F3l haszn\u00E1lhat\u00F3 diff --git a/core/src/main/resources/hudson/model/User/configure_hu.properties b/core/src/main/resources/hudson/model/User/configure_hu.properties new file mode 100644 index 0000000000..0daa887205 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/configure_hu.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Description=Le\u00EDr\u00E1s +Your\ name=\u00D6n neve diff --git a/core/src/main/resources/hudson/model/User/index_hu.properties b/core/src/main/resources/hudson/model/User/index_hu.properties index 413a8f2b61..1cf6a37c1a 100644 --- a/core/src/main/resources/hudson/model/User/index_hu.properties +++ b/core/src/main/resources/hudson/model/User/index_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ User\ Id=Jenkins felhaszn\u00E1l\u00F3 azonos\u00EDt\u00F3 +Jenkins\ User\ Id=Jenkins azonos\u00EDt\u00F3 diff --git a/core/src/main/resources/hudson/model/User/sidepanel_hu.properties b/core/src/main/resources/hudson/model/User/sidepanel_hu.properties index cfe986007c..68c47239ca 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_hu.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_hu.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Builds=\u00C9p\u00EDt\u00E9sek -Configure=Konfigur\u00E1l -My\ Views=N\u00E9zeteim +Configure=Konfigur\u00E1l\u00E1s +My\ Views=Saj\u00E1t n\u00E9zet People=Emberek -Status=\u00C1llapot +Status=St\u00E1tusz diff --git a/core/src/main/resources/hudson/model/View/People/index_hu.properties b/core/src/main/resources/hudson/model/View/People/index_hu.properties new file mode 100644 index 0000000000..b7a0d9a498 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_hu.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Last\ Active=Utolj\u00E1ra akt\u00EDv +Name=N\u00E9v +On=Feladaton +People=Emberek +User\ Id=Azonos\u00EDt\u00F3 diff --git a/core/src/main/resources/hudson/model/View/builds_hu.properties b/core/src/main/resources/hudson/model/View/builds_hu.properties index b1a9b5b99c..be9ebe100e 100644 --- a/core/src/main/resources/hudson/model/View/builds_hu.properties +++ b/core/src/main/resources/hudson/model/View/builds_hu.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Export\ as\ plain\ XML=XML-k\u00E9nt export\u00E1lni -buildHistory={0} \u00E9p\u00EDt\u00E9si t\u00F6rt\u00E9nete +Export\ as\ plain\ XML=Kiexport\u00E1l\u00E1s sima XML-ben +buildHistory={0} build t\u00F6rt\u00E9nete diff --git a/core/src/main/resources/hudson/model/View/configure_hu.properties b/core/src/main/resources/hudson/model/View/configure_hu.properties index 6d6a8037b7..d349eea2e4 100644 --- a/core/src/main/resources/hudson/model/View/configure_hu.properties +++ b/core/src/main/resources/hudson/model/View/configure_hu.properties @@ -21,4 +21,6 @@ # THE SOFTWARE. Description=Le\u00EDr\u00E1s +Filter\ build\ executors=\u00C9p\u00EDt\u00E9s futtat\u00F3k sz\u0171r\u00E9se +Filter\ build\ queue=\u00C9p\u00EDt\u00E9si sor sz\u0171r\u00E9se Name=N\u00E9v diff --git a/core/src/main/resources/hudson/model/View/newJob_hu.properties b/core/src/main/resources/hudson/model/View/newJob_hu.properties new file mode 100644 index 0000000000..a295549902 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/newJob_hu.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +CopyExisting=L\u00E9tez\u0151 {0} m\u00E1sol\u00E1sa +JobName={0} neve diff --git a/core/src/main/resources/hudson/model/View/sidepanel_hu.properties b/core/src/main/resources/hudson/model/View/sidepanel_hu.properties index e3222fd844..a4882fd202 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_hu.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_hu.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=\u00C9p\u00EDt\u00E9sek t\u00F6rt\u00E9nete -Check\ File\ Fingerprint=F\u00E1jl ujjlenyomat ellen\u0151rz\u00E9se +Build\ History=Build t\u00F6rt\u00E9net +Check\ File\ Fingerprint=F\u00E1jl Verzi\u00F3 Ellen\u0151rz\u00E9se Delete\ View=N\u00E9zet t\u00F6rl\u00E9se Edit\ View=N\u00E9zet szerkeszt\u00E9se NewJob=\u00DAj {0} -People=Felhaszn\u00E1l\u00F3k +People=Emberek Project\ Relationship=Projekt kapcsolat diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_hu.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_hu.properties index 3052112809..ba87a6ca62 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_hu.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ changes.=Nincs v\u00E1ltoztat\u00E1s. +No\ changes.=Nincs v\u00E1ltoz\u00E1s diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_hu.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_hu.properties new file mode 100644 index 0000000000..5709664715 --- /dev/null +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_hu.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +No\ builds.=Nem folyik \u00E9p\u00EDt\u00E9s +detail=r\u00E9szletek diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_hu.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_hu.properties new file mode 100644 index 0000000000..e0fd69f04f --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Allow\ users\ to\ sign\ up=Felhaszn\u00E1l\u00F3k regisztr\u00E1ci\u00F3j\u00E1nak enged\u00E9lyez\u00E9se diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_hu.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_hu.properties new file mode 100644 index 0000000000..fb854d2f21 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_hu.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Name=N\u00E9v +User\ Id=Felhaszn\u00E1l\u00F3 azonos\u00EDt\u00F3 +Users=Felhaszn\u00E1l\u00F3k diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_hu.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_hu.properties new file mode 100644 index 0000000000..e1631dbeb0 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_hu.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=Vissza az Ir\u00E1ny\u00EDt\u00F3pultra +Create\ User=Felhaszn\u00E1l\u00F3 L\u00E9trehoz\u00E1s +Manage\ Jenkins=Jenkins Kezel\u00E9se diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_hu.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_hu.properties index 2a60860fcf..ed37a95084 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_hu.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=bejelentkez\u00E9s +login=Bejelentkez\u00E9s diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_hu.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_hu.properties new file mode 100644 index 0000000000..fe11b8aab3 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_hu.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +#\ of\ executors=P\u00E1rhuzamos sz\u00E1lak sz\u00E1ma +Description=Le\u00EDr\u00E1s +Labels=C\u00EDmke +Launch\ method=Futtat\u00E1si m\u00F3d +Remote\ FS\ root=T\u00E1voli FS root diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_hu.properties b/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_hu.properties new file mode 100644 index 0000000000..eb9366c09c --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_hu.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Age=Kor +File=\u00C1llom\u00E1ny +Original\ owner=Eredeti tulajdonos +Recorded\ Fingerprints=Mentett Ujjlenyomatok +more\ details=tov\u00E1bbi r\u00E9szletek +outside\ Jenkins=Jenkins-en k\u00EDv\u00FCl diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_hu.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_hu.properties new file mode 100644 index 0000000000..9cfa62ee19 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Max\ #\ of\ builds\ to\ keep=Maximum megtartand\u00F3 buildek sz\u00E1ma diff --git a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_hu.properties b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_hu.properties new file mode 100644 index 0000000000..854c1ab0d0 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_hu.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +failingFor=Hib\u00E1s az elm\u00FAlt {0} {0,choice,0#\u00E9p\u00EDt\u00E9s|1#\u00E9p\u00EDt\u00E9s|1<\u00E9p\u00EDt\u00E9s} \u00F3ta +since.before=Kezdve'' '' +took={0}-t vett ig\u00E9nybe. diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_hu.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_hu.properties index bb6c50eb99..a38e049148 100644 --- a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_hu.properties +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_hu.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. History=T\u00F6rt\u00E9net +Previous\ Build=El\u0151z\u0151 \u00E9p\u00EDt\u00E9s diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_hu.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_hu.properties index e578e0230e..ec02fb2e8d 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_hu.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_hu.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Schedule\ a\ build=\u00C9p\u00EDt\u00E9st be\u00FCtemezni +Build\ scheduled=Build \u00FCtemezve +Schedule\ a\ build=Build \u00FCtemez\u00E9se diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_hu.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_hu.properties index ad0815849e..616b7525af 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_hu.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=Utols\u00F3 hossza +Last\ Duration=Utols\u00F3 \u00E9p\u00EDt\u00E9s id\u0151tartama diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_hu.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_hu.properties index acc8f8c26c..7e8332d917 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_hu.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=Az utols\u00F3 \u00E9p\u00EDt\u00E9s \u00E1llapota +Status\ of\ the\ last\ build=Az utols\u00F3 build \u00E1llapota diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_hu.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_hu.properties index 50a84c6405..279cd9b34f 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_hu.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_hu.properties @@ -20,4 +20,4 @@ # 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=Leg\u00FAjabb \u00E9p\u00EDt\u00E9sek \u00E1llapot\u00E1t jelz\u0151 id\u0151j\u00E1r\u00E1sjelent\u00E9s +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Leg\u00FAjabb buildek \u00E1llapot\u00E1t jelz\u0151 jelent\u00E9s diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_hu.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_hu.properties new file mode 100644 index 0000000000..fd157020d9 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_hu.properties @@ -0,0 +1,4 @@ +# 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/HistoryWidget/index_hu.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_hu.properties index 052e6c7f0e..54af4f4f86 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_hu.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_hu.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +More\ ...=t\u00F6bb ... for\ all=mindegyikre for\ failures=hib\u00E1kra trend=tendencia diff --git a/core/src/main/resources/jenkins/management/PluginsLink/info_hu.properties b/core/src/main/resources/jenkins/management/PluginsLink/info_hu.properties new file mode 100644 index 0000000000..eb48bcff18 --- /dev/null +++ b/core/src/main/resources/jenkins/management/PluginsLink/info_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +updates\ available=friss\u00EDt\u00E9sek el\u00E9rhet\u0151k diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_hu.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_hu.properties new file mode 100644 index 0000000000..7feebb7654 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_hu.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Available\ Commands=El\u00E9rhet\u0151 Parancsok +Jenkins\ CLI=Jenkins Parancssori Fel\u00FClet diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_hu.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_hu.properties index 16038eef32..5c7e9d21ff 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_hu.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_hu.properties @@ -20,6 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Build\ Record\ Root\ Directory=Build Record gy\u00F6k\u00E9rk\u00F6nyvt\u00E1r +Home\ directory=Home k\u00F6nyvt\u00E1r LOADING=BET\u00D6LT\u00C9S Save=Ment\u00E9s System\ Message=Rendszer\u00FCzenet +Workspace\ Root\ Directory=Munkater\u00FClet gy\u00F6k\u00E9rk\u00F6nyvt\u00E1r diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_hu.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_hu.properties index 3f84ce8b2f..31d1284d5b 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_hu.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_hu.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restore\ the\ previous\ version\ of\ Jenkins=A kor\u00E1bbi Jenkins verzi\u00F3 vissza\u00E1ll\u00EDt\u00E1sa +Restore\ the\ previous\ version\ of\ Jenkins=El\u0151z\u0151 Jenkins v\u00E1ltozat vissza\u00E1ll\u00EDt\u00E1sa buttonText=Vissza\u00E1l\u00EDt\u00E1s {0}-ra diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_hu.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_hu.properties new file mode 100644 index 0000000000..01e19d7f83 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_hu.properties @@ -0,0 +1,15 @@ +# This file is under the MIT License by authors + +blue=Az utols\u00F3 Build sikeres volt. +blue_anime=Az utols\u00F3 Build sikeres volt. Az \u00FAj Build folyamatban van. +grey=A projekt m\u00E9g soha nem \u00E9p\u00FClt kor\u00E1bban, vagy a projekt le van tiltva. +grey_anime=Az els\u0151 \u00E9p\u00EDt\u00E9si projekt folyamatban van. +health-00to20=A projekt min\u0151s\u00E9ge 20% vagy alacsonyabb. H\u00FAzd az egeret a project"s ikonra a r\u00E9szletesebb magyar\u00E1zat\u00E9rt. +health-21to40=A projekt min\u0151s\u00E9ge t\u00F6bb mint 20% \u00E9s legfeljebb 40%. H\u00FAzd az egeret a projekt'''' s ikonra a r\u00E9szletesebb magyar\u00E1zat\u00E9rt. +health-41to60=A projekt min\u0151s\u00E9ge t\u00F6bb mint 40% \u00E9s legfeljebb 60%. H\u00FAzd az egeret a projekt'''' s ikonra a r\u00E9szletesebb magyar\u00E1zat\u00E9rt. +health-61to80=A projekt min\u0151s\u00E9ge t\u00F6bb mint 60% \u00E9s legfeljebb 80%. H\u00FAzd az egeret a projekt'''' s ikonra a r\u00E9szletesebb magyar\u00E1zat\u00E9rt. +health-81plus=A projekt min\u0151s\u00E9ge t\u00F6bb mint 80%. H\u00FAzd az egeret a projekt'''' s ikonra a r\u00E9szletesebb magyar\u00E1zat\u00E9rt. +red=Az utols\u00F3 Build v\u00E9gzetesen sikertelen. +red_anime=Az utols\u00F3 Build v\u00E9gzetesen sikertelen. Az \u00FAj Build folyamatban van. +yellow=Az utols\u00F3 Build sikeres volt, de instabil. Ez els\u0151sorban megmutatja a teszt hib\u00E1it. +yellow_anime=Az utols\u00F3 Build sikeres volt, de instabil. Az \u00FAj Build folyamatban van. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_hu.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_hu.properties index 575b5a7c90..c325e38487 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_hu.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_hu.properties @@ -20,4 +20,20 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Manage\ Jenkins=Jenkins Be\u00E1ll\u00EDt\u00E1sok +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Hozz\u00E1ad, elt\u00E1vol\u00EDt, vez\u00E9rel \u00E9s monitoroz egyes csom\u00F3pontokat, amin a Jenkins feladatokat futtat. +Cancel\ Shutdown=Le\u00E1ll\u00EDt\u00E1s megszak\u00EDt\u00E1sa +Configure\ System=Rendszer konfigur\u00E1l\u00E1sa +Configure\ global\ settings\ and\ paths.=Glob\u00E1lis be\u00E1ll\u00EDt\u00E1sok \u00E9s \u00FAtvonalak konfigur\u00E1l\u00E1sa +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Tetsz\u0151leges adminisztr\u00E1ci\u00F3s/hibakezel\u0151/diagnosztikai szkript futtat\u00E1sa. +Jenkins\ CLI=Jenkins parancssor +JenkinsCliText=El\u00E9rheti/ir\u00E1ny\u00EDthatja a Jenkins shell-b\u0151l, vagy a saj\u00E1t szkript-j\u00E9b\u0151l. +Load\ Statistics=Terhel\u00E9si statisztika +Manage\ Jenkins=Jenkins be\u00E1ll\u00EDt\u00E1sa +Manage\ Plugins=B\u0151v\u00EDtm\u00E9nyek be\u00E1ll\u00EDt\u00E1sa +Prepare\ for\ Shutdown=Lekapcsol\u00E1sra felk\u00E9sz\u00FClni +Reload\ Configuration\ from\ Disk=A mentett be\u00E1ll\u00EDt\u00E1sok \u00FAjrat\u00F6lt\u00E9se +Script\ Console=Szkript konzol +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Le\u00E1ll\u00EDtja az \u00FAj \u00E9p\u00EDt\u00E9sek futtat\u00E1s\u00E1t, \u00EDgy a rendszer biztons\u00E1gosan le\u00E1ll\u00EDthat\u00F3 lesz. +System\ Information=Rendszer inform\u00E1ci\u00F3k +System\ Log=Rendszer napl\u00F3 +SystemLogText=A rendszer log elkapja a java.util.logging kimenet\u00E9nek Jenkins-re vonatkoz\u00F3 \u00FCzeneteit. diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_hu.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_hu.properties new file mode 100644 index 0000000000..7f0154a5b7 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_hu.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Enabled=Enged\u00E9lyezve +Environment\ Variables=K\u00F6rnyezeti V\u00E1ltoz\u00F3k +Name=N\u00E9v +Plugins=Be\u00E9p\u00FCl\u0151k +System\ Properties=Rendszer Tulajdons\u00E1gok +Version=Verzi\u00F3 diff --git a/core/src/main/resources/lib/form/advanced_hu.properties b/core/src/main/resources/lib/form/advanced_hu.properties new file mode 100644 index 0000000000..8c5f404c89 --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Advanced=Halad\u00F3 diff --git a/core/src/main/resources/lib/form/apply_hu.properties b/core/src/main/resources/lib/form/apply_hu.properties new file mode 100644 index 0000000000..132698b0d6 --- /dev/null +++ b/core/src/main/resources/lib/form/apply_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Apply=Alkalmaz diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_hu.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_hu.properties new file mode 100644 index 0000000000..fa616a6653 --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=konfigur\u00E1ci\u00F3 diff --git a/core/src/main/resources/lib/form/slave-mode_hu.properties b/core/src/main/resources/lib/form/slave-mode_hu.properties new file mode 100644 index 0000000000..e606cd0764 --- /dev/null +++ b/core/src/main/resources/lib/form/slave-mode_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Usage=Haszn\u00E1lat diff --git a/core/src/main/resources/lib/form/textarea_hu.properties b/core/src/main/resources/lib/form/textarea_hu.properties new file mode 100644 index 0000000000..d843ac2b05 --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_hu.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=El\u0151n\u00E9zet elrejt\u00E9se +Preview=El\u0151n\u00E9zet diff --git a/core/src/main/resources/lib/hudson/buildCaption_hu.properties b/core/src/main/resources/lib/hudson/buildCaption_hu.properties index 7ffac07baf..85f5c277be 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_hu.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_hu.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Progress= -cancel=m\u00E9gsem +Progress=El\u0151rehalad\u00E1s +cancel=m\u00E9gse diff --git a/core/src/main/resources/lib/hudson/buildListTable_hu.properties b/core/src/main/resources/lib/hudson/buildListTable_hu.properties index adf22b1c98..5bdc2d65bb 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_hu.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_hu.properties @@ -21,6 +21,7 @@ # THE SOFTWARE. Build=\u00C9p\u00EDt\u00E9s +Click\ to\ center\ timeline\ on\ event=Klikkel\u00E9sre az id\u0151vonal k\u00F6z\u00E9ppontja az esem\u00E9ny lesz Console\ output=Konzol kimenet -Status=\u00C1llapot +Status=St\u00E1tusz Time\ Since=Eltelt id\u0151 diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_hu.properties b/core/src/main/resources/lib/hudson/buildProgressBar_hu.properties index cb48be5c80..93c6781d91 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_hu.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text={0} perce indult
K\u00F6r\u00FClbel\u00FCl {1} van h\u00E1tra +text={0} \u00F3ta fut.
K\u00F6r\u00FClbel\u00FCl {1} van h\u00E1tra. diff --git a/core/src/main/resources/lib/hudson/executors_hu.properties b/core/src/main/resources/lib/hudson/executors_hu.properties index 2b1e6e312c..3de15065d1 100644 --- a/core/src/main/resources/lib/hudson/executors_hu.properties +++ b/core/src/main/resources/lib/hudson/executors_hu.properties @@ -20,10 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=\u00C9p\u00EDt\u00E9sfuttat\u00F3 \u00E1llapota -Building=\u00C9p\u00EDt\u00E9s -Idle=\u00DCresj\u00E1rat +Build\ Executor\ Status=Buildfuttat\u00F3 \u00E1llapota +Building=Buildel\u00E9s +Dead=Halott +Idle=\u00DCres Master=Mester -Status=\u00C1llapot +Status=St\u00E1tusz offline=kapcsolat n\u00E9lk\u00FCl terminate\ this\ build=Build megszak\u00EDt\u00E1sa diff --git a/core/src/main/resources/lib/hudson/iconSize_hu.properties b/core/src/main/resources/lib/hudson/iconSize_hu.properties index c4185df59a..6c2ae6cfc2 100644 --- a/core/src/main/resources/lib/hudson/iconSize_hu.properties +++ b/core/src/main/resources/lib/hudson/iconSize_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=Ikon +Icon=Ikon m\u00E9rete diff --git a/core/src/main/resources/lib/hudson/listScmBrowsers_hu.properties b/core/src/main/resources/lib/hudson/listScmBrowsers_hu.properties new file mode 100644 index 0000000000..cae21ad75e --- /dev/null +++ b/core/src/main/resources/lib/hudson/listScmBrowsers_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Auto=Automatikus diff --git a/core/src/main/resources/lib/hudson/newFromList/form_hu.properties b/core/src/main/resources/lib/hudson/newFromList/form_hu.properties new file mode 100644 index 0000000000..c2f57d5579 --- /dev/null +++ b/core/src/main/resources/lib/hudson/newFromList/form_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Copy\ from=M\u00E1sol\u00E1s a k\u00F6vetkez\u0151r\u0151l: diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_hu.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_hu.properties new file mode 100644 index 0000000000..5cfbec05e4 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_hu.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Directory=K\u00F6nyvt\u00E1r +Use\ custom\ workspace=Saj\u00E1t workspace haszn\u00E1lata diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_hu.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_hu.properties new file mode 100644 index 0000000000..d2fb9342e7 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_hu.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Disable\ Build=\u00C9p\u00EDt\u00E9s tilt\u00E1sa +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=A projekt \u00FAjraenged\u00E9lyez\u00E9s\u00E9ig nem lesz \u00FAj ford\u00EDt\u00E1s elind\u00EDtva. diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_hu.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_hu.properties new file mode 100644 index 0000000000..c26bf4f8ea --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Number\ of\ seconds=M\u00E1sodpercek sz\u00E1ma diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_hu.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_hu.properties new file mode 100644 index 0000000000..f569a4382f --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Retry\ Count=Ism\u00E9tl\u00E9sek sz\u00E1ma diff --git a/core/src/main/resources/lib/hudson/project/config-scm_hu.properties b/core/src/main/resources/lib/hudson/project/config-scm_hu.properties new file mode 100644 index 0000000000..2fb69fa139 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-scm_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Source\ Code\ Management=Verzi\u00F3kezel\u0151 rendszer diff --git a/core/src/main/resources/lib/hudson/propertyTable_hu.properties b/core/src/main/resources/lib/hudson/propertyTable_hu.properties new file mode 100644 index 0000000000..221b04fec8 --- /dev/null +++ b/core/src/main/resources/lib/hudson/propertyTable_hu.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Name=N\u00E9v +Value=\u00C9rt\u00E9k diff --git a/core/src/main/resources/lib/hudson/queue_hu.properties b/core/src/main/resources/lib/hudson/queue_hu.properties index fcc8b12387..29a86fb569 100644 --- a/core/src/main/resources/lib/hudson/queue_hu.properties +++ b/core/src/main/resources/lib/hudson/queue_hu.properties @@ -20,5 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u00C9p\u00EDt\u00E9si sor -No\ builds\ in\ the\ queue.=Nincs \u00FCtemezett \u00E9p\u00EDt\u00E9s a sorban +Build\ Queue=\u00C9p\u00EDt\u00E9si Sor +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=A Jenkins le\u00E1ll. Nem hajt v\u00E9gre t\u00F6bb build-et. +No\ builds\ in\ the\ queue.=Nincs \u00FCtemezett build a sorban +WaitingFor=V\u00E1rakoz\u00E1s {0} +cancel=m\u00E9gse diff --git a/core/src/main/resources/lib/hudson/rssBar_hu.properties b/core/src/main/resources/lib/hudson/rssBar_hu.properties index b653e3bffb..fd49156b8a 100644 --- a/core/src/main/resources/lib/hudson/rssBar_hu.properties +++ b/core/src/main/resources/lib/hudson/rssBar_hu.properties @@ -23,4 +23,4 @@ Legend=Jelmagyar\u00E1zat for\ all=mindegyikre for\ failures=sikertelenekre -for\ just\ latest\ builds=legutols\u00F3 Build-ekre +for\ just\ latest\ builds=csak a legut\u00F3bbi \u00E9p\u00EDt\u00E9sekre diff --git a/core/src/main/resources/lib/hudson/scriptConsole_hu.properties b/core/src/main/resources/lib/hudson/scriptConsole_hu.properties new file mode 100644 index 0000000000..ae1156df0f --- /dev/null +++ b/core/src/main/resources/lib/hudson/scriptConsole_hu.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Run=Futtat +Script\ Console=Szkript Konzol diff --git a/core/src/main/resources/lib/hudson/test-result_hu.properties b/core/src/main/resources/lib/hudson/test-result_hu.properties new file mode 100644 index 0000000000..b326fa3516 --- /dev/null +++ b/core/src/main/resources/lib/hudson/test-result_hu.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +multifailures={0} hiba {1} +no\ failures=hibamentes diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_hu.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_hu.properties new file mode 100644 index 0000000000..425093b148 --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_hu.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +License=Licensz +Name=N\u00E9v diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_hu.properties b/core/src/main/resources/lib/layout/breadcrumbBar_hu.properties new file mode 100644 index 0000000000..a377c71f13 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_hu.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=Automatikus oldalfriss\u00EDt\u00E9s letilt\u00E1sa +ENABLE\ AUTO\ REFRESH=AUTOMATIKUS FRISS\u00CDT\u00C9S ENGED\u00C9LYEZ\u00C9SE diff --git a/core/src/main/resources/lib/layout/layout_hu.properties b/core/src/main/resources/lib/layout/layout_hu.properties index 5c9b840295..0fd78f11c4 100644 --- a/core/src/main/resources/lib/layout/layout_hu.properties +++ b/core/src/main/resources/lib/layout/layout_hu.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -DISABLE\ AUTO\ REFRESH=Automatikus lap friss\u00EDt\u00E9s tilt\u00E1sa -ENABLE\ AUTO\ REFRESH=Automatikus lap friss\u00EDt\u00E9s enged\u00E9lyez\u00E9se -Page\ generated= +DISABLE\ AUTO\ REFRESH=Automatikus friss\u00EDt\u00E9s kikapcsol\u00E1sa +ENABLE\ AUTO\ REFRESH=Oldal friss\u00EDt\u00E9se +Page\ generated=Oldal gener\u00E1l\u00E1s\u00E1nak id\u0151ponjta: logout=kijelentkez\u00E9s search=keres\u00E9s searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/core/src/main/resources/lib/layout/main-panel_hu.properties b/core/src/main/resources/lib/layout/main-panel_hu.properties new file mode 100644 index 0000000000..4377ddb19f --- /dev/null +++ b/core/src/main/resources/lib/layout/main-panel_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ is\ going\ to\ shut\ down=A Jenkins le\u00E1ll diff --git a/core/src/main/resources/lib/layout/progressiveRendering_hu.properties b/core/src/main/resources/lib/layout/progressiveRendering_hu.properties new file mode 100644 index 0000000000..f6bccc364f --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=sz\u00E1m\u00EDt\u00E1s folyamatba diff --git a/core/src/main/resources/lib/layout/task_hu.properties b/core/src/main/resources/lib/layout/task_hu.properties new file mode 100644 index 0000000000..2b5ef23add --- /dev/null +++ b/core/src/main/resources/lib/layout/task_hu.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Done.=K\u00E9sz -- GitLab From 10e790c5d46ce090c2fad6821833c18901ce635f Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:58 -0700 Subject: [PATCH 053/308] Community-contributed localization for Indonesian (id) --- .../hudson/PluginManager/installed_id.properties | 8 ++++++++ .../resources/hudson/PluginManager/tabBar_id.properties | 4 ++++ .../ReverseProxySetupMonitor/message_id.properties | 5 +++++ .../hudson/model/AbstractBuild/index_id.properties | 5 +++++ .../hudson/model/AbstractBuild/sidepanel_id.properties | 4 ++++ .../hudson/model/AbstractBuild/tasks_id.properties | 8 ++++++++ .../hudson/model/AbstractProject/main_id.properties | 3 +++ .../hudson/model/AbstractProject/sidepanel_id.properties | 1 + .../resources/hudson/model/AllView/noJob_id.properties | 4 ++++ .../model/FreeStyleProject/newJobDetail_id.properties | 3 +++ .../resources/hudson/model/Run/configure_id.properties | 5 +++++ .../main/resources/hudson/model/Run/console_id.properties | 3 +++ .../main/resources/hudson/model/Run/delete_id.properties | 3 +++ .../UpdateCenter/CoreUpdateMonitor/message_id.properties | 4 ++++ .../resources/hudson/model/User/configure_id.properties | 4 ++++ .../resources/hudson/model/User/sidepanel_id.properties | 7 +++++++ .../main/resources/hudson/model/View/builds_id.properties | 4 ++++ .../main/resources/hudson/model/View/newJob_id.properties | 4 ++++ .../resources/hudson/model/View/sidepanel_id.properties | 7 +++++-- .../hudson/scm/EmptyChangeLogSet/digest_id.properties | 3 +++ .../hudson/security/SecurityRealm/loginLink_id.properties | 2 +- .../hudson/views/BuildButtonColumn/column_id.properties | 4 ++++ .../views/LastSuccessColumn/columnHeader_id.properties | 2 +- .../hudson/views/LastSuccessColumn/column_id.properties | 2 +- .../widgets/BuildHistoryWidget/entries_id.properties | 3 +++ .../hudson/widgets/HistoryWidget/index_id.properties | 3 +++ .../jenkins/model/Jenkins/downgrade_id.properties | 4 ++++ .../resources/jenkins/model/Jenkins/manage_id.properties | 4 ++++ core/src/main/resources/lib/form/helpArea_id.properties | 3 +++ core/src/main/resources/lib/form/textarea_id.properties | 3 +++ .../main/resources/lib/hudson/buildCaption_id.properties | 3 +++ .../resources/lib/hudson/buildListTable_id.properties | 6 ++++++ .../resources/lib/hudson/buildProgressBar_id.properties | 3 +++ .../src/main/resources/lib/hudson/executors_id.properties | 3 +++ core/src/main/resources/lib/hudson/queue_id.properties | 2 +- core/src/main/resources/lib/hudson/rssBar_id.properties | 5 ++++- .../main/resources/lib/layout/breadcrumbBar_id.properties | 3 +++ core/src/main/resources/lib/layout/layout_id.properties | 3 ++- 38 files changed, 139 insertions(+), 8 deletions(-) create mode 100644 core/src/main/resources/hudson/PluginManager/installed_id.properties create mode 100644 core/src/main/resources/hudson/PluginManager/tabBar_id.properties create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_id.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_id.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_id.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_id.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_id.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_id.properties create mode 100644 core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_id.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_id.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_id.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_id.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_id.properties create mode 100644 core/src/main/resources/hudson/model/User/configure_id.properties create mode 100644 core/src/main/resources/hudson/model/User/sidepanel_id.properties create mode 100644 core/src/main/resources/hudson/model/View/builds_id.properties create mode 100644 core/src/main/resources/hudson/model/View/newJob_id.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_id.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_id.properties create mode 100644 core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_id.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_id.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/downgrade_id.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/manage_id.properties create mode 100644 core/src/main/resources/lib/form/helpArea_id.properties create mode 100644 core/src/main/resources/lib/form/textarea_id.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_id.properties create mode 100644 core/src/main/resources/lib/hudson/buildListTable_id.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_id.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_id.properties diff --git a/core/src/main/resources/hudson/PluginManager/installed_id.properties b/core/src/main/resources/hudson/PluginManager/installed_id.properties new file mode 100644 index 0000000000..880aaa392f --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/installed_id.properties @@ -0,0 +1,8 @@ +# 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/tabBar_id.properties b/core/src/main/resources/hudson/PluginManager/tabBar_id.properties new file mode 100644 index 0000000000..3bc33faeaf --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/tabBar_id.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Available=Tersedia +Installed=Terpasang diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_id.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_id.properties new file mode 100644 index 0000000000..4e64132989 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_id.properties @@ -0,0 +1,5 @@ +# 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/model/AbstractBuild/index_id.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_id.properties new file mode 100644 index 0000000000..6e007ebe62 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_id.properties @@ -0,0 +1,5 @@ +# 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/sidepanel_id.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_id.properties new file mode 100644 index 0000000000..57bdcb583b --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_id.properties @@ -0,0 +1,4 @@ +# 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/tasks_id.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_id.properties new file mode 100644 index 0000000000..ec0ae69592 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_id.properties @@ -0,0 +1,8 @@ +# 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/AbstractProject/main_id.properties b/core/src/main/resources/hudson/model/AbstractProject/main_id.properties new file mode 100644 index 0000000000..8e144d7528 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_id.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Recent\ Changes=Perubahan Terakhir diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_id.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_id.properties index e06bfd1b61..a0c22419b0 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_id.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_id.properties @@ -21,5 +21,6 @@ # THE SOFTWARE. Back\ to\ Dashboard=Kembali ke Dashboard +Build\ scheduled=Jadwal Pembangunan Changes=Perubahan Status=Status diff --git a/core/src/main/resources/hudson/model/AllView/noJob_id.properties b/core/src/main/resources/hudson/model/AllView/noJob_id.properties new file mode 100644 index 0000000000..4f66c58261 --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_id.properties @@ -0,0 +1,4 @@ +# 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/FreeStyleProject/newJobDetail_id.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_id.properties new file mode 100644 index 0000000000..0bd7d5726c --- /dev/null +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_id.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +body=Ini adalah fitur sentral dari Jenkins. Jenkins akan membangun proyek anda, mengkombinasikan SCM apa pun dengan sistem pembangunan, dan ini akan digunakan untuk sesuatu selain pembangunan piranti lunak. diff --git a/core/src/main/resources/hudson/model/Run/configure_id.properties b/core/src/main/resources/hudson/model/Run/configure_id.properties new file mode 100644 index 0000000000..73b6c06c95 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_id.properties @@ -0,0 +1,5 @@ +# 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/console_id.properties b/core/src/main/resources/hudson/model/Run/console_id.properties new file mode 100644 index 0000000000..ce4d855919 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_id.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +skipSome=Melompati {0,numer,integer) KB.. Log Penuh diff --git a/core/src/main/resources/hudson/model/Run/delete_id.properties b/core/src/main/resources/hudson/model/Run/delete_id.properties new file mode 100644 index 0000000000..8d627be1f9 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_id.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete\ this\ build=Hapus Build diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_id.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_id.properties new file mode 100644 index 0000000000..aa157c3f69 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_id.properties @@ -0,0 +1,4 @@ +# 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/main/resources/hudson/model/User/configure_id.properties b/core/src/main/resources/hudson/model/User/configure_id.properties new file mode 100644 index 0000000000..1f036c4cf8 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/configure_id.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Description=Penjelasan +Your\ name=Nama saya diff --git a/core/src/main/resources/hudson/model/User/sidepanel_id.properties b/core/src/main/resources/hudson/model/User/sidepanel_id.properties new file mode 100644 index 0000000000..573b91d594 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/sidepanel_id.properties @@ -0,0 +1,7 @@ +# 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/View/builds_id.properties b/core/src/main/resources/hudson/model/View/builds_id.properties new file mode 100644 index 0000000000..7b421231a0 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/builds_id.properties @@ -0,0 +1,4 @@ +# 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/newJob_id.properties b/core/src/main/resources/hudson/model/View/newJob_id.properties new file mode 100644 index 0000000000..f6762342cc --- /dev/null +++ b/core/src/main/resources/hudson/model/View/newJob_id.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +CopyExisting=Menyalin {0} yang telah ada +JobName=nama {0} diff --git a/core/src/main/resources/hudson/model/View/sidepanel_id.properties b/core/src/main/resources/hudson/model/View/sidepanel_id.properties index 7f4d918aad..0cebccd759 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_id.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_id.properties @@ -21,5 +21,8 @@ # THE SOFTWARE. Build\ History=Riwayat Pembangunan -NewJob=Baru {0} -People=Orang +Check\ File\ Fingerprint=Cek Sidik Jari Berkas +Edit\ View=Ubah Tilik +NewJob={0} Baru +People=Pengguna +Project\ Relationship=Hubungan antar Proyek diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_id.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_id.properties new file mode 100644 index 0000000000..e03eeed035 --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_id.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ changes.=Tidak Ada perubahan diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_id.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_id.properties index fc7af17eeb..2296c3521d 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_id.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_id.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=masuk +login=Masuk diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_id.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_id.properties new file mode 100644 index 0000000000..0d9f4ef82c --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_id.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build\ scheduled=Pekerjaan terjadwal +Schedule\ a\ build=Jadwalkan pekerjaan diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_id.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_id.properties index ee23e91f45..c4322a0f0b 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_id.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_id.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=Sukses Terakhir +Last\ Success=Kesuksesan Terakhir diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_id.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_id.properties index 5972548e14..86fd1005bb 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/column_id.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_id.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=N/A +N/A=Kosong diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_id.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_id.properties new file mode 100644 index 0000000000..c29c8cb335 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_id.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +pending=ditunda diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_id.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_id.properties new file mode 100644 index 0000000000..e6b9ef51f0 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_id.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +More\ ...=Selanjutnya ... diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_id.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_id.properties new file mode 100644 index 0000000000..12c93cf77b --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_id.properties @@ -0,0 +1,4 @@ +# 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/manage_id.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_id.properties new file mode 100644 index 0000000000..1319efa46f --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_id.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Configure\ System=Konfigurasi Sistem +Manage\ Jenkins=Atur Jenkins diff --git a/core/src/main/resources/lib/form/helpArea_id.properties b/core/src/main/resources/lib/form/helpArea_id.properties new file mode 100644 index 0000000000..03be07a863 --- /dev/null +++ b/core/src/main/resources/lib/form/helpArea_id.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Loading...=Memuat... diff --git a/core/src/main/resources/lib/form/textarea_id.properties b/core/src/main/resources/lib/form/textarea_id.properties new file mode 100644 index 0000000000..858ac1d3ac --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_id.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Hide\ preview=Sembunyikan Preview diff --git a/core/src/main/resources/lib/hudson/buildCaption_id.properties b/core/src/main/resources/lib/hudson/buildCaption_id.properties new file mode 100644 index 0000000000..09c0da9efc --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_id.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Progress=Perkembangan diff --git a/core/src/main/resources/lib/hudson/buildListTable_id.properties b/core/src/main/resources/lib/hudson/buildListTable_id.properties new file mode 100644 index 0000000000..2c130fa951 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildListTable_id.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Build=Membangun +Click\ to\ center\ timeline\ on\ event=Klik ke timeline pusat pada acara +Console\ output=konsol keluaran +Time\ Since=Sejak diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_id.properties b/core/src/main/resources/lib/hudson/buildProgressBar_id.properties new file mode 100644 index 0000000000..c465641adc --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_id.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +text=Dimulai {0} lalu
Perkiraan waktu selesai: {1} diff --git a/core/src/main/resources/lib/hudson/executors_id.properties b/core/src/main/resources/lib/hudson/executors_id.properties index a139b3ea82..e7042e6ad7 100644 --- a/core/src/main/resources/lib/hudson/executors_id.properties +++ b/core/src/main/resources/lib/hudson/executors_id.properties @@ -21,5 +21,8 @@ # THE SOFTWARE. Build\ Executor\ Status=Status Eksekutor Pembangunan +Building=Mengerjakan Idle=Diam Status=Status +offline=luring +terminate\ this\ build=batalkan pekerjaan ini diff --git a/core/src/main/resources/lib/hudson/queue_id.properties b/core/src/main/resources/lib/hudson/queue_id.properties index f6e50bac28..36859b17a1 100644 --- a/core/src/main/resources/lib/hudson/queue_id.properties +++ b/core/src/main/resources/lib/hudson/queue_id.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Build\ Queue=Antrian Pembangunan -No\ builds\ in\ the\ queue.=Tidak ada Pembangunan di antrian +No\ builds\ in\ the\ queue.=Tidak ada pembangunan di antrian diff --git a/core/src/main/resources/lib/hudson/rssBar_id.properties b/core/src/main/resources/lib/hudson/rssBar_id.properties index 1ff6649144..355a791dcf 100644 --- a/core/src/main/resources/lib/hudson/rssBar_id.properties +++ b/core/src/main/resources/lib/hudson/rssBar_id.properties @@ -20,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -for\ all=untuk semua +Legend=Legenda +for\ all=Untuk semua +for\ failures=untuk yang gagal +for\ just\ latest\ builds=untuk pekerjaan terakhir diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_id.properties b/core/src/main/resources/lib/layout/breadcrumbBar_id.properties new file mode 100644 index 0000000000..e25ec6d69a --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_id.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=AKTIFKAN PEMBARUAN OTOMATIS diff --git a/core/src/main/resources/lib/layout/layout_id.properties b/core/src/main/resources/lib/layout/layout_id.properties index b229e8093d..e10f86eb6c 100644 --- a/core/src/main/resources/lib/layout/layout_id.properties +++ b/core/src/main/resources/lib/layout/layout_id.properties @@ -20,7 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ENABLE\ AUTO\ REFRESH=AKTIVKAN PENYEGARAN OTOMATIS +ENABLE\ AUTO\ REFRESH=AKTIFKAN PENYEGARAN OTOMATIS +Page\ generated=Halaman dihasilkan logout=Keluar search=Pencarian searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Kotak+Pencarian -- GitLab From 03a67c1c768a98bcb8f769c8fbceee6d7fc2d2f2 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:59 -0700 Subject: [PATCH 054/308] Community-contributed localization for Icelandic (is) --- .../src/main/resources/hudson/model/View/newJob_is.properties | 4 ++++ .../main/resources/hudson/model/View/sidepanel_is.properties | 4 ++++ .../hudson/security/SecurityRealm/loginLink_is.properties | 3 +++ .../resources/lib/hudson/editableDescription_is.properties | 1 + core/src/main/resources/lib/hudson/executors_is.properties | 2 ++ .../src/main/resources/lib/layout/breadcrumbBar_is.properties | 3 +++ 6 files changed, 17 insertions(+) create mode 100644 core/src/main/resources/hudson/model/View/newJob_is.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_is.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_is.properties diff --git a/core/src/main/resources/hudson/model/View/newJob_is.properties b/core/src/main/resources/hudson/model/View/newJob_is.properties new file mode 100644 index 0000000000..35890abfdd --- /dev/null +++ b/core/src/main/resources/hudson/model/View/newJob_is.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +CopyExisting=Afrita n\u00FAverandi {0} +JobName={0} nafn diff --git a/core/src/main/resources/hudson/model/View/sidepanel_is.properties b/core/src/main/resources/hudson/model/View/sidepanel_is.properties index 3f0844fbbf..262d965e6a 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_is.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_is.properties @@ -21,5 +21,9 @@ # THE SOFTWARE. Build\ History=Keyrslu saga +Check\ File\ Fingerprint=Athuga fingrafar skr\u00E1ar +Delete\ View=Ey\u00F0a s\u00FDn +Edit\ View=Breyta s\u00FDn NewJob=N\u00FDtt {0} People=F\u00F3lk +Project\ Relationship=Verkefnistengsl diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_is.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_is.properties new file mode 100644 index 0000000000..2b54c6f26d --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_is.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +login=innskr\u00E1 diff --git a/core/src/main/resources/lib/hudson/editableDescription_is.properties b/core/src/main/resources/lib/hudson/editableDescription_is.properties index d2051579de..6714211db2 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_is.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_is.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +add\ description=B\u00E6ta l\u00FDsingu edit\ description=Breyta l\u00FDsingu diff --git a/core/src/main/resources/lib/hudson/executors_is.properties b/core/src/main/resources/lib/hudson/executors_is.properties index 719795ebb3..e1414ab949 100644 --- a/core/src/main/resources/lib/hudson/executors_is.properties +++ b/core/src/main/resources/lib/hudson/executors_is.properties @@ -21,3 +21,5 @@ # THE SOFTWARE. Build\ Executor\ Status=Sta\u00F0a keyrslu v\u00E9lar +Idle=A\u00F0ger\u00F0alaus +Status=Sta\u00F0a diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_is.properties b/core/src/main/resources/lib/layout/breadcrumbBar_is.properties new file mode 100644 index 0000000000..ee58c64a3b --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_is.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=UPPF\u00C6RA SJ\u00C1LFKRAFA -- GitLab From dd3d679ccc9cf7f1cbcc02a3cdf0e163d7c7510b Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:59 -0700 Subject: [PATCH 055/308] Community-contributed localization for Italian (it) --- .../hudson/AboutJenkins/index_it.properties | 5 +++++ .../hudson/PluginManager/advanced_it.properties | 4 ++++ .../hudson/PluginManager/index_it.properties | 3 ++- .../hudson/PluginManager/installed_it.properties | 3 ++- .../hudson/PluginManager/table_it.properties | 7 ++++++- .../diagnosis/OldDataMonitor/manage_it.properties | 9 +++++++++ .../ReverseProxySetupMonitor/message_it.properties | 2 +- .../logging/LogRecorderManager/all_it.properties | 3 +++ .../logging/LogRecorderManager/feeds_it.properties | 5 +++++ .../logging/LogRecorderManager/index_it.properties | 6 ++++++ .../logging/LogRecorderManager/levels_it.properties | 9 +++++++++ .../logging/LogRecorderManager/new_it.properties | 3 +++ .../LogRecorderManager/sidepanel_it.properties | 8 ++++++++ .../RawHtmlMarkupFormatter/config_it.properties | 4 ++++ .../hudson/model/AbstractBuild/index_it.properties | 9 ++++++--- .../model/AbstractBuild/sidepanel_it.properties | 4 ++-- .../hudson/model/AbstractBuild/tasks_it.properties | 12 +++++++----- .../AbstractItem/configure-common_it.properties | 6 +++++- .../hudson/model/AbstractItem/delete_it.properties | 4 ++++ .../hudson/model/AbstractProject/main_it.properties | 6 ++++-- .../model/AbstractProject/makeDisabled_it.properties | 2 +- .../model/AbstractProject/sidepanel_it.properties | 10 ++++++---- .../hudson/model/AllView/noJob_it.properties | 1 + .../ChoiceParameterDefinition/config_it.properties | 4 ++++ .../hudson/model/Computer/index_it.properties | 5 +++++ .../hudson/model/Computer/sidepanel_it.properties | 8 ++++++++ .../hudson/model/ComputerSet/configure_it.properties | 3 +++ .../hudson/model/ComputerSet/index_it.properties | 5 +++++ .../hudson/model/ComputerSet/new_it.properties | 4 ++++ .../hudson/model/ComputerSet/sidepanel_it.properties | 6 ++++++ .../model/DirectoryBrowserSupport/dir_it.properties | 2 +- .../FreeStyleProject/newJobDetail_it.properties | 2 +- .../resources/hudson/model/JDK/config_it.properties | 3 +++ .../hudson/model/Job/buildTimeTrend_it.properties | 4 ++++ .../hudson/model/Job/configure_it.properties | 5 ++++- .../resources/hudson/model/Job/index_it.properties | 4 ++++ .../hudson/model/Job/permalinks_it.properties | 2 +- .../model/ListView/newViewDetail_it.properties | 3 +++ .../hudson/model/LoadStatistics/main_it.properties | 9 +++++++++ .../hudson/model/MyView/newViewDetail_it.properties | 3 +++ .../model/MyViewsProperty/newView_it.properties | 3 +++ .../model/ParametersAction/index_it.properties | 3 +++ .../config_it.properties | 2 +- .../ParametersDefinitionProperty/index_it.properties | 2 ++ .../model/ProxyView/newViewDetail_it.properties | 3 +++ .../model/Run/KeepLogBuildBadge/badge_it.properties | 3 +++ .../resources/hudson/model/Run/console_it.properties | 4 +++- .../resources/hudson/model/Run/delete_it.properties | 2 +- .../resources/hudson/model/Run/logKeep_it.properties | 3 ++- .../StringParameterDefinition/config_it.properties | 5 +++++ .../CoreUpdateMonitor/message_it.properties | 4 ++-- .../UpdateCenter/RestartJenkinsJob/row_it.properties | 3 +++ .../hudson/model/UpdateCenter/body_it.properties | 4 +++- .../hudson/model/UpdateCenter/index_it.properties | 2 +- .../model/UpdateCenter/sidepanel_it.properties | 4 ++-- .../resources/hudson/model/User/index_it.properties | 3 +++ .../hudson/model/User/sidepanel_it.properties | 1 + .../resources/hudson/model/View/builds_it.properties | 2 +- .../hudson/model/View/sidepanel_it.properties | 8 ++++---- .../AbstractDiskSpaceMonitor/config_it.properties | 3 +++ .../scm/EmptyChangeLogSet/digest_it.properties | 3 +++ .../hudson/scm/SCM/project-changes_it.properties | 2 ++ .../_entryForm_it.properties | 5 +++++ .../HudsonPrivateSecurityRealm/config_it.properties | 3 +++ .../HudsonPrivateSecurityRealm/index_it.properties | 4 ++++ .../sidepanel_it.properties | 4 ++++ .../security/SecurityRealm/loginLink_it.properties | 2 +- .../config_it.properties | 5 +++++ .../hudson/slaves/JNLPLauncher/main_it.properties | 3 +++ .../slaves/SlaveComputer/sidepanel2_it.properties | 4 ++++ .../hudson/tasks/BuildTrigger/config_it.properties | 6 ++++++ .../hudson/tasks/LogRotator/config_it.properties | 5 ++++- .../test/MetaTabulatedResult/body_it.properties | 10 ++++++++++ .../tasks/test/TestObject/sidepanel_it.properties | 5 +++++ .../hudson/tasks/test/TestResult/index_it.properties | 3 +++ .../floatingBox_it.properties | 2 +- .../tools/InstallSourceProperty/config_it.properties | 4 ++++ .../hudson/tools/JDKInstaller/config_it.properties | 4 ++++ .../tools/ToolInstallation/global_it.properties | 6 ++++++ .../ToolLocationNodeProperty/config_it.properties | 4 ++++ .../views/BuildButtonColumn/column_it.properties | 2 ++ .../DefaultMyViewsTabBar/myViewTabs_it.properties | 2 +- .../views/DefaultViewsTabBar/viewTabs_it.properties | 2 +- .../LastDurationColumn/columnHeader_it.properties | 2 +- .../LastFailureColumn/columnHeader_it.properties | 2 +- .../LastSuccessColumn/columnHeader_it.properties | 2 +- .../views/StatusColumn/columnHeader_it.properties | 2 +- .../views/WeatherColumn/columnHeader_it.properties | 2 +- .../widgets/BuildHistoryWidget/entries_it.properties | 4 ++++ .../hudson/widgets/HistoryWidget/entry_it.properties | 2 +- .../hudson/widgets/HistoryWidget/index_it.properties | 4 ++-- .../management/PluginsLink/info_it.properties | 3 +++ .../jenkins/model/Jenkins/_cli_it.properties | 1 + .../jenkins/model/Jenkins/configure_it.properties | 5 +++++ .../jenkins/model/Jenkins/loginError_it.properties | 5 +++++ .../jenkins/model/Jenkins/login_it.properties | 4 ++-- .../jenkins/model/Jenkins/manage_it.properties | 12 ++++++++++++ .../jenkins/model/Jenkins/newView_it.properties | 3 +++ .../jenkins/model/Jenkins/systemInfo_it.properties | 3 ++- .../main/resources/lib/form/advanced_it.properties | 1 + core/src/main/resources/lib/form/apply_it.properties | 3 +++ .../lib/form/breadcrumb-config-outline_it.properties | 3 +++ .../lib/form/expandableTextbox_it.properties | 3 +++ .../main/resources/lib/form/slave-mode_it.properties | 3 +++ .../main/resources/lib/form/textarea_it.properties | 4 ++++ .../resources/lib/hudson/artifactList_it.properties | 3 +++ .../lib/hudson/buildListTable_it.properties | 3 ++- .../resources/lib/hudson/executors_it.properties | 7 ++++--- .../src/main/resources/lib/hudson/node_it.properties | 3 +++ .../project/config-concurrentBuild_it.properties | 2 +- .../hudson/project/config-disableBuild_it.properties | 2 +- .../hudson/project/config-publishers2_it.properties | 1 + .../hudson/project/config-quietPeriod_it.properties | 1 + .../hudson/project/config-retryCount_it.properties | 2 +- .../lib/hudson/project/config-scm_it.properties | 2 +- .../hudson/project/upstream-downstream_it.properties | 4 ++-- .../main/resources/lib/hudson/queue_it.properties | 7 +++++-- .../main/resources/lib/hudson/rssBar_it.properties | 8 ++++---- .../lib/hudson/thirdPartyLicenses_it.properties | 5 +++++ .../resources/lib/layout/breadcrumbBar_it.properties | 4 ++++ .../main/resources/lib/layout/layout_it.properties | 4 ++-- .../resources/lib/layout/main-panel_it.properties | 3 +++ .../lib/layout/progressiveRendering_it.properties | 3 +++ core/src/main/resources/lib/test/bar_it.properties | 4 ++++ 124 files changed, 417 insertions(+), 75 deletions(-) create mode 100644 core/src/main/resources/hudson/AboutJenkins/index_it.properties create mode 100644 core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_it.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/all_it.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/feeds_it.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/index_it.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/levels_it.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/new_it.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_it.properties create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_it.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/delete_it.properties create mode 100644 core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_it.properties create mode 100644 core/src/main/resources/hudson/model/Computer/index_it.properties create mode 100644 core/src/main/resources/hudson/model/Computer/sidepanel_it.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/configure_it.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/index_it.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/new_it.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/sidepanel_it.properties create mode 100644 core/src/main/resources/hudson/model/JDK/config_it.properties create mode 100644 core/src/main/resources/hudson/model/Job/buildTimeTrend_it.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_it.properties create mode 100644 core/src/main/resources/hudson/model/ListView/newViewDetail_it.properties create mode 100644 core/src/main/resources/hudson/model/LoadStatistics/main_it.properties create mode 100644 core/src/main/resources/hudson/model/MyView/newViewDetail_it.properties create mode 100644 core/src/main/resources/hudson/model/MyViewsProperty/newView_it.properties create mode 100644 core/src/main/resources/hudson/model/ParametersAction/index_it.properties create mode 100644 core/src/main/resources/hudson/model/ProxyView/newViewDetail_it.properties create mode 100644 core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_it.properties create mode 100644 core/src/main/resources/hudson/model/StringParameterDefinition/config_it.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_it.properties create mode 100644 core/src/main/resources/hudson/model/User/index_it.properties create mode 100644 core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_it.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_it.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_it.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_it.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_it.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_it.properties create mode 100644 core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_it.properties create mode 100644 core/src/main/resources/hudson/slaves/JNLPLauncher/main_it.properties create mode 100644 core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_it.properties create mode 100644 core/src/main/resources/hudson/tasks/BuildTrigger/config_it.properties create mode 100644 core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_it.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_it.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResult/index_it.properties create mode 100644 core/src/main/resources/hudson/tools/InstallSourceProperty/config_it.properties create mode 100644 core/src/main/resources/hudson/tools/JDKInstaller/config_it.properties create mode 100644 core/src/main/resources/hudson/tools/ToolInstallation/global_it.properties create mode 100644 core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_it.properties create mode 100644 core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_it.properties create mode 100644 core/src/main/resources/jenkins/management/PluginsLink/info_it.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/configure_it.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/loginError_it.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/newView_it.properties create mode 100644 core/src/main/resources/lib/form/apply_it.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_it.properties create mode 100644 core/src/main/resources/lib/form/expandableTextbox_it.properties create mode 100644 core/src/main/resources/lib/form/slave-mode_it.properties create mode 100644 core/src/main/resources/lib/form/textarea_it.properties create mode 100644 core/src/main/resources/lib/hudson/artifactList_it.properties create mode 100644 core/src/main/resources/lib/hudson/node_it.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_it.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_it.properties create mode 100644 core/src/main/resources/lib/layout/main-panel_it.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_it.properties create mode 100644 core/src/main/resources/lib/test/bar_it.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_it.properties b/core/src/main/resources/hudson/AboutJenkins/index_it.properties new file mode 100644 index 0000000000..f4b786b035 --- /dev/null +++ b/core/src/main/resources/hudson/AboutJenkins/index_it.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +about=Informazioni su Jenkins {0} +blurb=Jenkins \u00E8 un server di "continuous integration" a codice aperto sviluppato da una comunit\u00E0. +dependencies=Jenkins dipende dalle seguenti librerie di terze parti. diff --git a/core/src/main/resources/hudson/PluginManager/advanced_it.properties b/core/src/main/resources/hudson/PluginManager/advanced_it.properties index 91419ea77d..fe73e9d599 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_it.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_it.properties @@ -24,6 +24,10 @@ Check\ now=Controlla ora HTTP\ Proxy\ Configuration=Configurazione Proxy HTTP Port=Porta Submit=Invia +URL=Indirizzo URL +Update\ Site=Aggiorna sito +Upload=Carica +Upload\ Plugin=Carica estensione User\ name=Nome utente lastUpdated=Informazioni di aggiornamento ottenute: {0} fa uploadtext=Puoi fare l''upload di un file .hpi per installare diff --git a/core/src/main/resources/hudson/PluginManager/index_it.properties b/core/src/main/resources/hudson/PluginManager/index_it.properties index dcbe0777a5..a61bcf9820 100644 --- a/core/src/main/resources/hudson/PluginManager/index_it.properties +++ b/core/src/main/resources/hudson/PluginManager/index_it.properties @@ -23,4 +23,5 @@ All=Tutto None=Niente Select=Seleziona -UpdatePageDescription=Questa pagina elenca gli aggiornamenti dei plugin che usi attualmente. +UpdatePageDescription=Questa pagina elenca gli aggiornamenti dei plugin attualmente in uso. +UpdatePageLegend=Le righe disabilitate sono gi\u00E0 aggiornate e in attesa di riavvio. Le righe ombreggiate ma selezionabili sono in corso o fallite. diff --git a/core/src/main/resources/hudson/PluginManager/installed_it.properties b/core/src/main/resources/hudson/PluginManager/installed_it.properties index 3f83b714b5..0c30e7269d 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_it.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_it.properties @@ -25,8 +25,9 @@ Enabled=Attivo Name=Nome Pinned=Bloccato Previously\ installed\ version=Versione precedente -Restart\ Once\ No\ Jobs\ Are\ Running=Riavvia Quando Non Ci Sono Jobs In Esecuzione +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 diff --git a/core/src/main/resources/hudson/PluginManager/table_it.properties b/core/src/main/resources/hudson/PluginManager/table_it.properties index 93d6946436..f33abc80bb 100644 --- a/core/src/main/resources/hudson/PluginManager/table_it.properties +++ b/core/src/main/resources/hudson/PluginManager/table_it.properties @@ -20,8 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ to\ install\ the\ plugin=Seleziona per installare il plugin +Check\ to\ install\ the\ plugin=Seleziona per installare l''estensione +Click\ this\ heading\ to\ sort\ by\ category=Clicca questa intestazione per ordinare in base alla categoria +Download\ now\ and\ install\ after\ restart=Scarica ora ed installa dopo il riavvio +Filter=Filtro +Inactive=Non attiva Install=Installa +Install\ without\ restart=Installa senza riavviare Installed=Installato Name=Nome No\ updates=Nessun aggiornamento diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_it.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_it.properties new file mode 100644 index 0000000000..b995623eab --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_it.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Manage\ Old\ Data=Gestici dati vecchi +Name=Nome +No\ old\ data\ was\ found.=Nessun vecchio dato trovato. +Type=Tipo +Version=Versione +blurb.1=Quando ci sono cambiamenti nel modo in cui i dati sono salvati sul disco, Jenkins usa la seguente strategia: i dati sono migrati nella nuova struttura quando caricati, ma i file non sono salvati nel nuovo formato. Questo consente di fare il downgrade di Jenkins se necessario. Comunque, lascia anche i dati sul disco nel vecchio formato indefinitamente. La tabella sotto mostra la lista dei file contenenti tali dati, e le versioni di Jenkins dove la struttura dei dati \u00E8 stata cambiata. +blurb.2=Qualche volta capitano degli errori durante la lettura dei dati (se un plugin aggiunge alcuni dati e quel plugin viene successivamente disabilitato, se il codice di migrazione non \u00E8 scritto per cambiamenti strutturali o se a Jenkins \u00E8 fatto il downgrade dopo che ha gi\u00E0 scritto dati non leggibili nella vecchia versione). Questi errori sono inseriti nel log, ma i dati non leggibili vengono saltati, permettendo a Jenkins di partire e funzionare correttamente. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_it.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_it.properties index ca1d74d196..3b14d5112f 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_it.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_it.properties @@ -22,4 +22,4 @@ Dismiss=Chiudi More\ Info=Maggiori informazioni -blurb=Sembra che la configurazione del proxy inverso non sia funzionante. +blurb=Sembra che la tua configurazione di reverse proxy abbia problemi. diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/all_it.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/all_it.properties new file mode 100644 index 0000000000..20d6e85509 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/all_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ Log=Registro Jenkins diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_it.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_it.properties new file mode 100644 index 0000000000..8e0c7c77df --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_it.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +>\ SEVERE=> ERRORE GRAVE +>\ WARNING=> AVVERTIMENTO +All=Tutti diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_it.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_it.properties new file mode 100644 index 0000000000..a5ea62de25 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_it.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Add\ new\ log\ recorder=Aggiungi nuovo registro +All\ Jenkins\ Logs=Tutti i registri di Jenkins +Log\ Recorders=Registri +Name=Nome diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_it.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_it.properties new file mode 100644 index 0000000000..3450c5a729 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_it.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Adjust\ Levels=Aggiusta livelli +Level=Livello +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 diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/new_it.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/new_it.properties new file mode 100644 index 0000000000..2d6997306d --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/new_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=Nome diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_it.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_it.properties new file mode 100644 index 0000000000..17ba80936b --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_it.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +All\ Logs=Tutti i registri +Back\ to\ Dashboard=Ritorna al cruscotto +Log\ Levels=Livelli di registro +Logger\ List=Lista dei registri +Manage\ Jenkins=Configura Jenkins +New\ Log\ Recorder=Nuovo registro diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_it.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_it.properties new file mode 100644 index 0000000000..a40c7f44de --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_it.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +blurb=tratta il testo come HTML e usalo senza intepretarlo +disableSyntaxHighlighting=Disabilita il syntax highlighting diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_it.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_it.properties index 9c9fb98b96..3b701aa954 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_it.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_it.properties @@ -20,9 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Build -Build\ Artifacts=Prodotti della Build +Build=Compila +Build\ Artifacts=Prodotti della compilazione Build\ number=Numero build +Not\ yet\ determined=Non ancora determinato Permalinks=Permalink -Took=Impiegato +Took=Durata +beingExecuted=La build \u00E8 stata in esecuzione per {0} +on=Su startedAgo=Avviato {0} fa diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_it.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_it.properties index d85c040fd5..fa715528ff 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_it.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_it.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=Build successivo -Previous\ Build=Build precedente +Next\ Build=Build successiva +Previous\ Build=Compilazione precedente diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_it.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_it.properties index 668ff307ff..fd02ed3283 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_it.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_it.properties @@ -20,9 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=Torna al Progetto -Changes=Modifiche SCM -Console\ Output=Output Console -View\ as\ plain\ text=Vedi come testo semplice -Edit\ Build\ Information=Modifica informazioni sul build +Back\ to\ Project=Torna al progetto +Changes=Modifiche +Console\ Output=Output console +View\ Build\ Information=Visualizza Informazione della Build +View\ as\ plain\ text=Mostra come testo semplice +Edit\ Build\ Information=Modifica informazioni di compilazione Status=Stato +raw=grezzo diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_it.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_it.properties index 89d6106177..6f469cea76 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/configure-common_it.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_it.properties @@ -20,4 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Advanced\ Project\ Options=Opzioni avanzate del progetto +Advanced\ Project\ Options=Opzioni Avanzate del Progetto +Display\ Name=Mostra Nome +JDK\ to\ be\ used\ for\ this\ project=JDK da utilizzare per questo progetto +Label\ Expression=Etichetta espressione +Restrict\ where\ this\ project\ can\ be\ run=Limita dove questo progetto pu\u00F2 essere eseguito diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_it.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_it.properties new file mode 100644 index 0000000000..530b45d509 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_it.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Yes=Si +blurb=Sei sicuro di voler cancellare il {0} ''''{1}''''? diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_it.properties b/core/src/main/resources/hudson/model/AbstractProject/main_it.properties index 586db5e5e7..8bb670d5f9 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_it.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_it.properties @@ -20,5 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Successful\ Artifacts=Ultimo Artifatto Completato con Successo -Recent\ Changes=Modifiche Recenti +Last\ Successful\ Artifacts=Prodotti dell''ultima build completata con successo +Latest\ Test\ Result=Ultimo Risultato dei Test +Recent\ Changes=Cambiamenti Recenti +Workspace=Spazio di lavoro diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_it.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_it.properties index 2935886a82..b4a4955d20 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_it.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_it.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Disabilita Progetto +Disable\ Project=Disabilita progetto diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_it.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_it.properties index 15c04e0f9a..aef3cb3baf 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_it.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_it.properties @@ -20,12 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Ritorna alla Dashboard -Build\ scheduled=Build pianificato +Back\ to\ Dashboard=Ritorna al pannello di controllo +Build\ scheduled=Lavoro pianificato Changes=Modifiche Configure=Configura Status=Stato -Wipe\ Out\ Workspace=Pulisci workspace -Workspace=Workspace +Wipe\ Out\ Workspace=Pulisci Workspace +Workspace=Area di lavoro delete=Elimina {0} +delete.confirm=Si sicuro di voler cancellare {0} \u2018{1}\u2019? + wipe.out.confirm=Sei sicuro di voler pulire il workspace? diff --git a/core/src/main/resources/hudson/model/AllView/noJob_it.properties b/core/src/main/resources/hudson/model/AllView/noJob_it.properties index 8206b8f3bd..33797a7d0c 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_it.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_it.properties @@ -21,4 +21,5 @@ # THE SOFTWARE. Welcome\ to\ Jenkins!=Benvenuto in Jenkins! +login=Accedi se vuoi creare nuovi job. newJob=Per favore crea nuovi job per iniziare. diff --git a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_it.properties b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_it.properties new file mode 100644 index 0000000000..7c4b7967cc --- /dev/null +++ b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_it.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Choices=Scelte +Description=Descrizione diff --git a/core/src/main/resources/hudson/model/Computer/index_it.properties b/core/src/main/resources/hudson/model/Computer/index_it.properties new file mode 100644 index 0000000000..6b3e4be653 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/index_it.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Labels:=Etichette: +None=Nessono +title.projects_tied_on=Progetti associati a {0} diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_it.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_it.properties new file mode 100644 index 0000000000..62bd6909dc --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_it.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Back\ to\ List=Torna alla Lista +Build\ History=Storia dei Build +Configure=Configura +Delete\ Slave=Cancella Slave +Load\ Statistics=Carica Statistiche +Status=Stato diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_it.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_it.properties new file mode 100644 index 0000000000..68585cf3a2 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Preventive\ Node\ Monitoring=Monitoraggio preventivo dei nodi diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_it.properties b/core/src/main/resources/hudson/model/ComputerSet/index_it.properties new file mode 100644 index 0000000000..45e18d678c --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/index_it.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Configure=Configura +Name=Nome +Refresh\ status=Aggiorna stato diff --git a/core/src/main/resources/hudson/model/ComputerSet/new_it.properties b/core/src/main/resources/hudson/model/ComputerSet/new_it.properties new file mode 100644 index 0000000000..a16f4907c0 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/new_it.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Copy\ Existing\ Node=Copia nodo esistente +Node\ name=Nome nodo diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_it.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_it.properties new file mode 100644 index 0000000000..f0217c7032 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_it.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=Ritorna al cruscotto +Configure=Configura +Manage\ Jenkins=Gestisci Jenkins +New\ Node=Nuovo nodo diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_it.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_it.properties index a9f870d908..85f4695b40 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_it.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_it.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -all\ files\ in\ zip=Scarica tutti in un unico file zip +all\ files\ in\ zip=Scarica tutti i file in un unico file zip view=Apri diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_it.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_it.properties index f969357671..09ff3126d8 100644 --- a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_it.properties +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_it.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=Questa \u00E8 la funzione principale di Jenkins. Jenkins effettuer\u00E0 una build del progetto, combinando qualsiasi SCM con qualsiasi sistema di build e si pu\u00F2 usare anche per qualcosa di altro che non sia una build software. +body=Questa \u00E8 la funzione principale di Jenkins. Jenkins effettuer\u00E0 una compilazione del progetto, combinando qualsiasi SCM con qualsiasi sistema di compilazione e si pu\u00F2 usare anche per qualcosa di altro che non sia un programma di compilazione. diff --git a/core/src/main/resources/hudson/model/JDK/config_it.properties b/core/src/main/resources/hudson/model/JDK/config_it.properties new file mode 100644 index 0000000000..2d6997306d --- /dev/null +++ b/core/src/main/resources/hudson/model/JDK/config_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=Nome diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_it.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_it.properties new file mode 100644 index 0000000000..800384e7f9 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_it.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build\ Time\ Trend=Andamento delle build +More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=Per ottenere un report di andamento \u00E8 necessario avere pi\u00F9 di una build diff --git a/core/src/main/resources/hudson/model/Job/configure_it.properties b/core/src/main/resources/hudson/model/Job/configure_it.properties index f94273572d..f60881e74b 100644 --- a/core/src/main/resources/hudson/model/Job/configure_it.properties +++ b/core/src/main/resources/hudson/model/Job/configure_it.properties @@ -21,5 +21,8 @@ # THE SOFTWARE. Description=Descrizione -Discard\ Old\ Builds=Elimina build precedenti +Discard\ Old\ Builds=Elimina Build Precedenti +LOADING=CARICAMENTO +Save=Salva +Strategy=Strategia name={0} nome diff --git a/core/src/main/resources/hudson/model/Job/index_it.properties b/core/src/main/resources/hudson/model/Job/index_it.properties new file mode 100644 index 0000000000..fa918c35aa --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_it.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Disable\ Project=Disabilita progetto +Project\ name=Nome del progetto diff --git a/core/src/main/resources/hudson/model/Job/permalinks_it.properties b/core/src/main/resources/hudson/model/Job/permalinks_it.properties index 7cbc0f2fac..e18ab72f67 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_it.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_it.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Permalinks=Permalink +Permalinks=Collegamenti permanenti diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_it.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_it.properties new file mode 100644 index 0000000000..9e4226ba2e --- /dev/null +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +blurb=Mostra una lista dei lavori. Puoi scegliere quali lavori visualizzare in ciascuna lista. diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_it.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_it.properties new file mode 100644 index 0000000000..2312f0bcd8 --- /dev/null +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_it.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Load\ statistics\ graph=Grafico statistiche carico di lavoro +Long=Lungo +Medium=Medio +Short=Breve +Timespan=Intervallo +blurb=Le statistiche di carico tengono traccia di tre fattori di utilizzo delle risorse:
Numero totale degli esecutori
Per un computer, questo \u00E8 il numero di esecutori che un computer possiede. Per una etichetta, questa \u00E8 la somma di tutti gli esecutori presenti su tutti i computer in questa etichetta. Per tutto Jenkins, questa \u00E8 la somma di tutti gli esecutori presenti su tutti i computer per questa installazione di Jenkins. Quando la configurazione cambia, questo valore pu\u00F2 anche cambiare quando gli slave sono fuori linea.
Numero di esecutori occupati
Questa linea descrive il numero di esecutori (relativamente agli esecutori individuati sopra) che sono impegnati nelle compilazioni. Il rapporto di questo numero con il numero totale degli esecutori determina l''''utilizzo di risorse. Se tutti gli esecutori sono occupati per un periodo di tempo prolungato, sarebbe da considerare la possibilit\u00E0 di aggiungere ulteriori computer al proprio cluster di Jenkins.
Lunghezza della coda
Questa \u00E8 il numero di lavori che sono presenti nella coda di compilazione, i quali attendono la liberazione di un esecutore (di questo computer, di questa etichetta, o in questo Jenkins, rispettivamente.) Questa non include i lavori che sono nello stato di sospensione, non include nemmeno i lavori che sono presenti nella coda perch\u00E9 ci sono compilazioni ancora in esecuzione. Se questa linea non supera mai lo zero, ci\u00F2 significa che Jenkins eseguir\u00E0 pi\u00F9 compilazioni aggiungendo pi\u00F9 computer.
Il grafico \u00E8 una media mobile esponenziale dei dati registrati periodicamente. I 3 intervalli di tempo sono aggiornati ogni 10 secondi, 1 minuto, e 1 ora rispettivamente. +title=Statistiche del carico di lavoro: {0} diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_it.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_it.properties new file mode 100644 index 0000000000..9fc79918be --- /dev/null +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +blurb=Questa vista mostra automaticamente tutti i lavori a cui ha accesso l''utente corrente. diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/newView_it.properties b/core/src/main/resources/hudson/model/MyViewsProperty/newView_it.properties new file mode 100644 index 0000000000..a053c6df13 --- /dev/null +++ b/core/src/main/resources/hudson/model/MyViewsProperty/newView_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +View\ name=Nome della vista diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_it.properties b/core/src/main/resources/hudson/model/ParametersAction/index_it.properties new file mode 100644 index 0000000000..ec820cc2c9 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersAction/index_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Parameters=Parametri diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_it.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_it.properties index a7a9526588..df1251f2fd 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_it.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_it.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ Parameter=Aggiungi parametro +Add\ Parameter=Aggiungi Parametro This\ build\ is\ parameterized=Questa build \u00E8 parametrizzata diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_it.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_it.properties index 5e6e72a056..92d445fb79 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_it.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_it.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Build=Esegui +LOADING=CARICAMENTO description=Questa build richiede dei parametri: diff --git a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_it.properties b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_it.properties new file mode 100644 index 0000000000..c0c4cdceb7 --- /dev/null +++ b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Shows\ the\ content\ of\ a\ global\ view.=Mostra il contenuto di una vista globale diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_it.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_it.properties new file mode 100644 index 0000000000..7fb962e771 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Keep\ this\ build\ forever=Mantieni questo build per sempre diff --git a/core/src/main/resources/hudson/model/Run/console_it.properties b/core/src/main/resources/hudson/model/Run/console_it.properties index 2e9211d6f0..25abf4f2c9 100644 --- a/core/src/main/resources/hudson/model/Run/console_it.properties +++ b/core/src/main/resources/hudson/model/Run/console_it.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Output Console +Console\ Output=Output console +skipSome=Saltati {0,number,integer} KB.. Log Completo + diff --git a/core/src/main/resources/hudson/model/Run/delete_it.properties b/core/src/main/resources/hudson/model/Run/delete_it.properties index dd02c0945f..37b700d45c 100644 --- a/core/src/main/resources/hudson/model/Run/delete_it.properties +++ b/core/src/main/resources/hudson/model/Run/delete_it.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=Elimina questo build +Delete\ this\ build=Elimina build diff --git a/core/src/main/resources/hudson/model/Run/logKeep_it.properties b/core/src/main/resources/hudson/model/Run/logKeep_it.properties index bf789cc8fb..74a46b0298 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_it.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_it.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Keep\ this\ build\ forever=Mantieni per sempre questa build +Don''t\ keep\ this\ build\ forever=Non mantenere per sempre questa build +Keep\ this\ build\ forever=Mantieni per sempre questa compilazione diff --git a/core/src/main/resources/hudson/model/StringParameterDefinition/config_it.properties b/core/src/main/resources/hudson/model/StringParameterDefinition/config_it.properties new file mode 100644 index 0000000000..47c7586eb5 --- /dev/null +++ b/core/src/main/resources/hudson/model/StringParameterDefinition/config_it.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Default\ Value=Valore di default +Description=Descrizione +Name=Nome diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_it.properties index 0c828ce4b6..01a17cec38 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_it.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewVersionAvailable=Una nuova versione di Jenkins ({0}) \u00e8 disponibile per il download \ - (changelog). +NewVersionAvailable=C''\u00E8 una nuova versione di Jenkins ({0}) disponibile per il download (changelog). +Or\ Upgrade\ Automatically=Oppure aggiorna automaticamente UpgradeComplete=Aggiornamento a Jenkins {0} completato, in attesa di riavvio. UpgradeProgress=Aggiornamento a Jenkins {0} in corso oppure fallito. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_it.properties new file mode 100644 index 0000000000..ef7faab724 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Restarting\ Jenkins=Riavvio Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_it.properties index b5112aac15..1397d0d8e5 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_it.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -warning=Riavvia Jenkins quando l''installazione viene completata e non ci sono compiti in esecuzione +Go\ back\ to\ the\ top\ page=Torna alla pagina principale +warning=attenzione +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=Puoi cominciare ad utilizzare i plugin installati fin da subito diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_it.properties index 0febc20c3b..87f3567e2f 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_it.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing\ Plugins/Upgrades=Installazione Plugin/Aggiornamenti +Installing\ Plugins/Upgrades=Installazione di plugin/aggiornamenti warning=Al termine dell''installazione \u00E8 necessario riavviare Jenkins per far s\u00EC che le modifiche abbiano effetto. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_it.properties index 9bb7586316..6a09f42323 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_it.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Back\ to\ Dashboard=Torna alla Dashboard -Manage\ Jenkins=Configura Jenkins -Manage\ Plugins=Gestisci Plugin +Manage\ Jenkins=Gestisci Jenkins +Manage\ Plugins=Gestisci i plugin diff --git a/core/src/main/resources/hudson/model/User/index_it.properties b/core/src/main/resources/hudson/model/User/index_it.properties new file mode 100644 index 0000000000..fed6383893 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ User\ Id=Id utente Jenkins diff --git a/core/src/main/resources/hudson/model/User/sidepanel_it.properties b/core/src/main/resources/hudson/model/User/sidepanel_it.properties index 4806ca1ece..00f75b3cb4 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_it.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_it.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Builds=Compilazioni Configure=Configura Delete=Elimina My\ Views=Le mie viste diff --git a/core/src/main/resources/hudson/model/View/builds_it.properties b/core/src/main/resources/hudson/model/View/builds_it.properties index 0f48e2681c..cbb3bb77ce 100644 --- a/core/src/main/resources/hudson/model/View/builds_it.properties +++ b/core/src/main/resources/hudson/model/View/builds_it.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Export\ as\ plain\ XML=Esporta come XML -buildHistory=Cronologia build di {0} +buildHistory=Cronologia compilazioni di {0} diff --git a/core/src/main/resources/hudson/model/View/sidepanel_it.properties b/core/src/main/resources/hudson/model/View/sidepanel_it.properties index 84da4db1fd..975318f6ed 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_it.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_it.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=Cronologia build -Check\ File\ Fingerprint=Controlla impronta file +Build\ History=Cronologia Build +Check\ File\ Fingerprint=Controlla Impronta File Delete\ View=Elimina vista -Edit\ View=Modifica vista +Edit\ View=Modifica Vista NewJob=Nuovo {0} People=Utenti -Project\ Relationship=Relazioni fra progetti +Project\ Relationship=Relazioni Fra Progetti diff --git a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_it.properties b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_it.properties new file mode 100644 index 0000000000..4c70627bd5 --- /dev/null +++ b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Free\ Space\ Threshold=Soglia spazio libero diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_it.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_it.properties new file mode 100644 index 0000000000..6fe202a564 --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ changes.=Nessuna modifica. diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_it.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_it.properties index e14d50bbd8..70112d5ce9 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_it.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_it.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +No\ builds.=Nessuna build effettuata. +No\ changes\ in\ any\ of\ the\ builds.=Nessun cambiamento nelle build. detail=dettagli diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_it.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_it.properties new file mode 100644 index 0000000000..f96d5b0012 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_it.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Confirm\ password=Conferma password +E-mail\ address=Indirizzo e-mail +Full\ name=Nome completo diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_it.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_it.properties new file mode 100644 index 0000000000..a1b5ae3e93 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Allow\ users\ to\ sign\ up=permetti agli utenti di registrarsi diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_it.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_it.properties new file mode 100644 index 0000000000..ea16349107 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_it.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Name=Nome +Users=Utenti diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_it.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_it.properties new file mode 100644 index 0000000000..8cf816d65c --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_it.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Create\ User=Crea utente +Manage\ Jenkins=Gestisci Jenkins diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_it.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_it.properties index e02bb35c23..fac7adcc05 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_it.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_it.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=accedi +login=Accedi diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_it.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_it.properties new file mode 100644 index 0000000000..155f8ee2f4 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_it.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_it.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_it.properties new file mode 100644 index 0000000000..1787a9fa78 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Connected\ via\ JNLP\ agent.=Connesso via agent JNLP diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_it.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_it.properties new file mode 100644 index 0000000000..ab3fcbf261 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_it.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Disconnect=Disconnetti +System\ Information=Informazioni di Sistema diff --git a/core/src/main/resources/hudson/tasks/BuildTrigger/config_it.properties b/core/src/main/resources/hudson/tasks/BuildTrigger/config_it.properties new file mode 100644 index 0000000000..a08fac4fca --- /dev/null +++ b/core/src/main/resources/hudson/tasks/BuildTrigger/config_it.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Projects\ to\ build=Progetti di cui effettuare la build +Trigger\ even\ if\ the\ build\ fails=Innesca anche se la build fallisce +Trigger\ even\ if\ the\ build\ is\ unstable=Innesca anche se la build \u00E8 instabile +Trigger\ only\ if\ build\ succeeds=Innesca solo se la build ha successo diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_it.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_it.properties index 211f3cf836..32d6deafea 100644 --- a/core/src/main/resources/hudson/tasks/LogRotator/config_it.properties +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_it.properties @@ -23,5 +23,8 @@ Days\ to\ keep\ artifacts=Giorni per cui mantenere gli artifact Days\ to\ keep\ builds=Giorni per cui mantenere build Max\ #\ of\ builds\ to\ keep=Massimo # di build da mantenere -if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=Se non \u00E8 vuoto, le registrazione delle build vengono mantenute solo fino al numero di giorni indicato +Max\ #\ of\ builds\ to\ keep\ with\ artifacts=Massimo # di build da mantenere insieme agli artifacts +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=Se non \u00E8 vuoto, gli artifacts generati dalle build pi\u00F9 vecchie del numero di giorni indicato saranno cancellati, ma i logs, la storia, i reports, e tutte le altre informazioni sulla build verranno mantenute +if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=Se non \u00E8 vuoto, le registrazioni delle build vengono mantenute solo per il numero di giorni indicato if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=Se non \u00E8 vuoto, le build vengono mantenute solo fino al numero indicato +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ builds\ have\ their\ artifacts\ retained=Se non \u00E8 vuoto, gli artifacts delle build vengono mantenuti solo fino al numero indicato diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_it.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_it.properties new file mode 100644 index 0000000000..6b7ead0db8 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_it.properties @@ -0,0 +1,10 @@ +# This file is under the MIT License by authors + +All\ Failed\ Tests=Tutti i test falliti +All\ Tests=Tutti i test +Duration=Durata +Fail=Falliti +Loading...=Caricamento... +Skip=Saltati +Test\ Name=Nome test +Total=Totali diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_it.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_it.properties new file mode 100644 index 0000000000..d8a7564c99 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_it.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +History=Storia +Next\ Build=Build successiva +Previous\ Build=Build precedente diff --git a/core/src/main/resources/hudson/tasks/test/TestResult/index_it.properties b/core/src/main/resources/hudson/tasks/test/TestResult/index_it.properties new file mode 100644 index 0000000000..efed04b343 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResult/index_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +took=Durata {0}. diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_it.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_it.properties index fb7f28950b..b5dc696e53 100644 --- a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_it.properties +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_it.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Test\ Result\ Trend=Andamento risultati dei test -enlarge=allarga +enlarge=ingrandisci just\ show\ failures=mostra solo fallimenti show\ test\ #\ and\ failure\ #=mostra test # e fallimenti # diff --git a/core/src/main/resources/hudson/tools/InstallSourceProperty/config_it.properties b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_it.properties new file mode 100644 index 0000000000..4746054ddc --- /dev/null +++ b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_it.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Add\ Installer=Aggiungi installatore +Delete\ Installer=Elimina installatore diff --git a/core/src/main/resources/hudson/tools/JDKInstaller/config_it.properties b/core/src/main/resources/hudson/tools/JDKInstaller/config_it.properties new file mode 100644 index 0000000000..3753b2fbbf --- /dev/null +++ b/core/src/main/resources/hudson/tools/JDKInstaller/config_it.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +I\ agree\ to\ the\ Java\ SE\ Development\ Kit\ License\ Agreement=Accetto il Java SE Development Kit License Agreement +Version=Versione diff --git a/core/src/main/resources/hudson/tools/ToolInstallation/global_it.properties b/core/src/main/resources/hudson/tools/ToolInstallation/global_it.properties new file mode 100644 index 0000000000..be121007ec --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolInstallation/global_it.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +description=Lista delle {0} installazioni su questo sistema +label.add=Aggiungi {0} +label.delete=Rimuovi {0} +title={0} installazioni diff --git a/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_it.properties b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_it.properties new file mode 100644 index 0000000000..91c36e9211 --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_it.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +List\ of\ tool\ locations=Lista delle posizioni degli strumenti +Name=Nome diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_it.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_it.properties index b51b9c2573..0d6a1dbc4a 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_it.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_it.properties @@ -20,4 +20,6 @@ # 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 +Schedule\ a\ build\ with\ parameters=Pianifica una build personalizzata diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_it.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_it.properties index df85169055..055d28c2ed 100644 --- a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_it.properties +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_it.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -New\ View=Nuova Vista +New\ View=Nuova vista diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_it.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_it.properties index df85169055..055d28c2ed 100644 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_it.properties +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_it.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -New\ View=Nuova Vista +New\ View=Nuova vista diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_it.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_it.properties index f9ab9299d8..0071e4112d 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_it.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_it.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=Durata ultimo +Last\ Duration=Durata Ultimo diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_it.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_it.properties index 0edcc4c7b0..4720d2693b 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_it.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_it.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=Ultimo fallimento +Last\ Failure=Ultimo Fallimento diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_it.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_it.properties index f9dd47a737..1285c29171 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_it.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_it.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=Ultimo successo +Last\ Success=Ultimo Successo diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_it.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_it.properties index f47a0d4075..dd102b85e5 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_it.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_it.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=Stato dell''ultimo build +Status\ of\ the\ last\ build=Stato dell''''ultima build diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_it.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_it.properties index 0d7666b927..ec3db00f39 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_it.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_it.properties @@ -20,4 +20,4 @@ # 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=Previsioni del tempo che mostrano lo status aggregato di build recenti +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Weather report che mostra lo stato complessivo delle build recenti diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_it.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_it.properties new file mode 100644 index 0000000000..d210c738dd --- /dev/null +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_it.properties @@ -0,0 +1,4 @@ +# 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/HistoryWidget/entry_it.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_it.properties index 2e9211d6f0..c2f68141c4 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_it.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_it.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Output Console +Console\ Output=Output della console diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_it.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_it.properties index 096188a1ac..33b4f28d1b 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_it.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_it.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. More\ ...=Altro... -for\ all=per tutto -for\ failures=per i fallimenti +for\ all=per tutti +for\ failures=per i falliti trend=andamento diff --git a/core/src/main/resources/jenkins/management/PluginsLink/info_it.properties b/core/src/main/resources/jenkins/management/PluginsLink/info_it.properties new file mode 100644 index 0000000000..bc5f1bff61 --- /dev/null +++ b/core/src/main/resources/jenkins/management/PluginsLink/info_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +updates\ available=aggiornamenti disponibili diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_it.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_it.properties index 397d8a36c0..fb7ef102f1 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_cli_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_it.properties @@ -1,3 +1,4 @@ +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. \ diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_it.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_it.properties new file mode 100644 index 0000000000..f645eb9355 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_it.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Home\ directory=Cartella utente +LOADING=CARICAMENTO +System\ Message=Messaggio di sistema diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_it.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_it.properties new file mode 100644 index 0000000000..39003c370c --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_it.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=Se sei l''amministratore di sistema e sospetti che questo sia un problema di configurazione, controlla l''output della console del server per maggiori dettagli. +Invalid\ login\ information.\ Please\ try\ again.=I dati di accesso non sono corretti. Si prega di riprovare. +Try\ again=Riprova diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_it.properties b/core/src/main/resources/jenkins/model/Jenkins/login_it.properties index 0352602f4a..3bd3addc5e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_it.properties @@ -23,5 +23,5 @@ Password=Password Remember\ me\ on\ this\ computer=Ricordami su questo computer User=Utente -login=accedi -signUp=Crea un account se non sei ancora membro. +login=Accedi +signUp=Crea un account se non sei ancora registrato. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_it.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_it.properties index ee16477157..9b10fa114a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_it.properties @@ -20,4 +20,16 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Aggiungi, elimina, controlla e monitorizza i vari nodi sui quali Jenkins esegue i lavori. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Aggiungi, elimina, disattiva o attiva estensioni che possono estendere le funzionalit\u00E0 di Jenkins. +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Mostra varie informazioni di ambiente per l''''assistenza ai problemi. +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Esegue script arbitrari per amministrazione/risoluzione dei problemi/diagnostica. +LoadStatisticsText=Controlla l''''utilizzo delle risorse per vedere se sono necessari altri computer per le compilazioni. Manage\ Jenkins=Gestisci Jenkins +Manage\ Plugins=Gestisci estensioni +Prepare\ for\ Shutdown=Prepara per spegnimento +Script\ Console=Console degli script +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Blocca l''''esecuzione di nuove build, in modo che si possa eventualmente effettuare lo shutdown del sistema in modo sicuro. +System\ Log=Registro di sistema +SystemLogText=Il log di sistema cattura l''''output di java.util.logging relativo a Jenkins. +are.you.sure={0}: sei sicuro? diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_it.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_it.properties new file mode 100644 index 0000000000..18a27e25e6 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +View\ name=Nome vista diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_it.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_it.properties index 0d7f60e777..358b6eac52 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_it.properties @@ -24,5 +24,6 @@ Enabled=Attivo Environment\ Variables=Variabili d''ambiente Name=Nome Pinned=Fisso -Plugins=Plugin +Plugins=Estensioni +System\ Properties=Propriet\u00E0 di sistema Version=Versione diff --git a/core/src/main/resources/lib/form/advanced_it.properties b/core/src/main/resources/lib/form/advanced_it.properties index 83c6f8114b..d36ab1db41 100644 --- a/core/src/main/resources/lib/form/advanced_it.properties +++ b/core/src/main/resources/lib/form/advanced_it.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Advanced=Avanzate +customizedFields=Uno o pi\u00F9 campi in questa sezione sono stati modificati. diff --git a/core/src/main/resources/lib/form/apply_it.properties b/core/src/main/resources/lib/form/apply_it.properties new file mode 100644 index 0000000000..aa6783c77f --- /dev/null +++ b/core/src/main/resources/lib/form/apply_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Apply=Applica diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_it.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_it.properties new file mode 100644 index 0000000000..b2b684fc61 --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=configurazione diff --git a/core/src/main/resources/lib/form/expandableTextbox_it.properties b/core/src/main/resources/lib/form/expandableTextbox_it.properties new file mode 100644 index 0000000000..471c0620ba --- /dev/null +++ b/core/src/main/resources/lib/form/expandableTextbox_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +tooltip=Cliccare per espandere su pi\u00F9 linee
dove \u00E8 possibile utilizzare nuove righe al posto degli spazi.
Per ritornare alla singola linea scrivere tutto in una sola riga e quindi inviare. diff --git a/core/src/main/resources/lib/form/slave-mode_it.properties b/core/src/main/resources/lib/form/slave-mode_it.properties new file mode 100644 index 0000000000..f679a78a71 --- /dev/null +++ b/core/src/main/resources/lib/form/slave-mode_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Usage=Utilizzo diff --git a/core/src/main/resources/lib/form/textarea_it.properties b/core/src/main/resources/lib/form/textarea_it.properties new file mode 100644 index 0000000000..8bed193a13 --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_it.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=Nascondi anteprima +Preview=Anteprima diff --git a/core/src/main/resources/lib/hudson/artifactList_it.properties b/core/src/main/resources/lib/hudson/artifactList_it.properties new file mode 100644 index 0000000000..61dee94714 --- /dev/null +++ b/core/src/main/resources/lib/hudson/artifactList_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +View=Vedere diff --git a/core/src/main/resources/lib/hudson/buildListTable_it.properties b/core/src/main/resources/lib/hudson/buildListTable_it.properties index 609cae5f06..bb28d0e1c1 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_it.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_it.properties @@ -20,7 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Build +Build=Compila +Click\ to\ center\ timeline\ on\ event=Clicca per centrare la cronologia sull''''evento Console\ output=Output console Time\ Since=Data Status=Stato diff --git a/core/src/main/resources/lib/hudson/executors_it.properties b/core/src/main/resources/lib/hudson/executors_it.properties index 0fc0545142..f51f610759 100644 --- a/core/src/main/resources/lib/hudson/executors_it.properties +++ b/core/src/main/resources/lib/hudson/executors_it.properties @@ -20,8 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Stato esecutore build +Build\ Executor\ Status=Stato Esecutore Build Idle=Inattivo -Master=Nodo principale Status=Stato -terminate\ this\ build=termina questa build +offline=fuori linea +suspended=sospeso +terminate\ this\ build=termina questa compilazione diff --git a/core/src/main/resources/lib/hudson/node_it.properties b/core/src/main/resources/lib/hudson/node_it.properties new file mode 100644 index 0000000000..fbd505d120 --- /dev/null +++ b/core/src/main/resources/lib/hudson/node_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +master=Principale diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_it.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_it.properties index 8d439a6b41..2aa80f1b28 100644 --- a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_it.properties +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_it.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title.concurrentbuilds=Esegui build in concorrenza se necessario (beta) +title.concurrentbuilds=Esegui build contemporanee se necessario (beta) diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_it.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_it.properties index bf31be1a28..43b7b20a6e 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_it.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_it.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Build=Disabilita build +Disable\ Build=Disabilita Build No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Non saranno effettuate nuove build finch\u00E8 questo progetto non sar\u00E0 riattivato. diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_it.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_it.properties index c8463612e4..a7d911f347 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers2_it.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_it.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Add\ post-build\ action=Aggiungi azione dopo la build Post-build\ Actions=Azioni dopo la build diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_it.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_it.properties index e97dcf5785..7e396e7d99 100644 --- a/core/src/main/resources/lib/hudson/project/config-quietPeriod_it.properties +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_it.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Number\ of\ seconds=Numero di secondi +Quiet\ period=Periodo di quiete diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_it.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_it.properties index f9daed74cb..3ee64786c7 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_it.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_it.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Retry\ Count=Tentativi da rieffettuare +Retry\ Count=Tentativi da Rieffettuare SCM\ checkout\ retry\ count=Tentativi da rieffettuare nel checkout SCM diff --git a/core/src/main/resources/lib/hudson/project/config-scm_it.properties b/core/src/main/resources/lib/hudson/project/config-scm_it.properties index a59a96a29f..488d21f3b9 100644 --- a/core/src/main/resources/lib/hudson/project/config-scm_it.properties +++ b/core/src/main/resources/lib/hudson/project/config-scm_it.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Source\ Code\ Management=Gestione codice sorgente +Source\ Code\ Management=Gestione Codice Sorgente diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_it.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_it.properties index 4054cfb66f..92937a46c3 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_it.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_it.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Downstream\ Projects=Progetti a valle -Upstream\ Projects=Progetti a monte +Downstream\ Projects=Progetti downstream +Upstream\ Projects=Progetti upstream diff --git a/core/src/main/resources/lib/hudson/queue_it.properties b/core/src/main/resources/lib/hudson/queue_it.properties index 59ae8f41b8..c4f5d09e7f 100644 --- a/core/src/main/resources/lib/hudson/queue_it.properties +++ b/core/src/main/resources/lib/hudson/queue_it.properties @@ -20,5 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Coda di build -No\ builds\ in\ the\ queue.=Nessun build in coda. +Build\ Queue=Elenco build +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins si spegner\u00E0 a breve. Nessuna nuova build verr\u00E0 eseguita. +No\ builds\ in\ the\ queue.=Nessun Build In Coda. +WaitingFor=In attesa di {0} +cancel=annulla diff --git a/core/src/main/resources/lib/hudson/rssBar_it.properties b/core/src/main/resources/lib/hudson/rssBar_it.properties index 785450a801..46ac092029 100644 --- a/core/src/main/resources/lib/hudson/rssBar_it.properties +++ b/core/src/main/resources/lib/hudson/rssBar_it.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=Legenda -for\ all=tutti -for\ failures=solo fallimenti -for\ just\ latest\ builds=solo le ultime build +Legend=Leggenda +for\ all=Per Tutti +for\ failures=Solo Fallimenti +for\ just\ latest\ builds=Solo Per Le Ultime Build diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_it.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_it.properties new file mode 100644 index 0000000000..c6e209ff85 --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_it.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +License=Licenza +Maven\ ID=ID Maven +Name=Nome diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_it.properties b/core/src/main/resources/lib/layout/breadcrumbBar_it.properties new file mode 100644 index 0000000000..bc87a81b9c --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_it.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=Disabilita Auto-Refresh pagina +ENABLE\ AUTO\ REFRESH=ABILITA IL REFRESH AUTOMATICO diff --git a/core/src/main/resources/lib/layout/layout_it.properties b/core/src/main/resources/lib/layout/layout_it.properties index f6afa93f6f..16191e4e3d 100644 --- a/core/src/main/resources/lib/layout/layout_it.properties +++ b/core/src/main/resources/lib/layout/layout_it.properties @@ -22,7 +22,7 @@ DISABLE\ AUTO\ REFRESH=DISABILITA AGGIORNAMENTO AUTOMATICO ENABLE\ AUTO\ REFRESH=ABILITA AGGIORNAMENTO AUTOMATICO -Page\ generated=Pagina generata il +Page\ generated=Pagina Generata Il logout=esci -search=cerca +search=Cerca searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/core/src/main/resources/lib/layout/main-panel_it.properties b/core/src/main/resources/lib/layout/main-panel_it.properties new file mode 100644 index 0000000000..b94339c9fb --- /dev/null +++ b/core/src/main/resources/lib/layout/main-panel_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ is\ going\ to\ shut\ down=Jenkins si spegner\u00E0 a breve diff --git a/core/src/main/resources/lib/layout/progressiveRendering_it.properties b/core/src/main/resources/lib/layout/progressiveRendering_it.properties new file mode 100644 index 0000000000..ee457abcaa --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_it.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=Elaborazione in corso. diff --git a/core/src/main/resources/lib/test/bar_it.properties b/core/src/main/resources/lib/test/bar_it.properties new file mode 100644 index 0000000000..1cc3ae9050 --- /dev/null +++ b/core/src/main/resources/lib/test/bar_it.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +failures={0} fallimenti +tests={0} test -- GitLab From 6949aa510a0258ca543f8b7d8b4d596487bee023 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:59 -0700 Subject: [PATCH 056/308] Community-contributed localization for Japanese (ja) --- .../resources/hudson/AboutJenkins/index_ja.properties | 4 ++-- .../hudson/PluginManager/installed_ja.properties | 2 +- .../hudson/model/AbstractBuild/tasks_ja.properties | 2 +- .../UpdateCenter/DownloadJob/Pending/status_ja.properties | 2 +- .../hudson/model/UpdateCenter/body_ja.properties | 2 +- .../resources/hudson/model/View/sidepanel_ja.properties | 2 +- .../TestResultProjectAction/floatingBox_ja.properties | 2 +- .../model/Jenkins/MasterComputer/configure_ja.properties | 8 ++++---- .../resources/lib/hudson/buildProgressBar_ja.properties | 2 +- .../lib/hudson/editableDescription_ja.properties | 2 +- core/src/main/resources/lib/hudson/queue_ja.properties | 4 ++-- .../main/resources/lib/layout/breadcrumbBar_ja.properties | 4 ++-- core/src/main/resources/lib/layout/layout_ja.properties | 2 +- 13 files changed, 19 insertions(+), 19 deletions(-) diff --git a/core/src/main/resources/hudson/AboutJenkins/index_ja.properties b/core/src/main/resources/hudson/AboutJenkins/index_ja.properties index 92d9893c0d..d4c5b5f961 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_ja.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_ja.properties @@ -23,6 +23,6 @@ about=Jenkins {0} \u306b\u3064\u3044\u3066 blurb=Jenkins \u306f\u30b3\u30df\u30e5\u30cb\u30c6\u30a3\u3067\u958b\u767a\u3055\u308c\u3066\u3044\u308b\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u306eCI\u30b5\u30fc\u30d0\u3067\u3059\u3002 -dependencies=Jenkins \u306f\u6b21\u306e\u30b5\u30fc\u30c9\u30d1\u30fc\u30c6\u30a3\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059\u3002. +dependencies=Jenkins \u306F\u6B21\u306E\u30B5\u30FC\u30C9\u30D1\u30FC\u30C6\u30A3\u306E\u30E9\u30A4\u30D6\u30E9\u30EA\u3092\u4F7F\u7528\u3057\u3066\u3044\u307E\u3059\u3002 plugin.dependencies=\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3068\u4f9d\u5b58\u6027: -No\ information\ recorded=\u60c5\u5831\u304c\u3042\u308a\u307e\u305b\u3093\u3002 \ No newline at end of file +No\ information\ recorded=\u60c5\u5831\u304c\u3042\u308a\u307e\u305b\u3093\u3002 diff --git a/core/src/main/resources/hudson/PluginManager/installed_ja.properties b/core/src/main/resources/hudson/PluginManager/installed_ja.properties index c61d88f4c1..2734eafebe 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_ja.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_ja.properties @@ -33,5 +33,5 @@ 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 -Uninstall=\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb +Uninstall=\u30A2\u30F3\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB Uninstallation\ pending=\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u5b9f\u884c\u5f85\u3061 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ja.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ja.properties index 1ff1bb9566..4ac300d2ee 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ja.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ja.properties @@ -24,7 +24,7 @@ Back\ to\ Project=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3078\u623b\u308b Status=\u72b6\u614b Changes=\u5909\u66f4\u5c65\u6b74 Console\ Output=\u30b3\u30f3\u30bd\u30fc\u30eb\u51fa\u529b -View\ as\ plain\ text=\u30d7\u30ec\u30a4\u30f3\u30c6\u30ad\u30b9\u30c8\u3067\u8868\u793a +View\ as\ plain\ text=\u30D7\u30EC\u30FC\u30F3\u30C6\u30AD\u30B9\u30C8\u3067\u8868\u793A raw=\u672a\u52a0\u5de5 Edit\ Build\ Information=\u8aac\u660e\u306e\u7de8\u96c6 View\ Build\ Information=\u8aac\u660e\u3092\u53c2\u7167 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ja.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ja.properties index 44db8e6f55..c5f4455548 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ja.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=\u4fdd\u7559 \ No newline at end of file +Pending=\u5F85\u6A5F\u4E2D diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_ja.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_ja.properties index 15eb09778b..ba35f7b406 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_ja.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Go\ back\ to\ the\ top\ page=\u30c8\u30c3\u30d7\u3078\u623b\u308b +Go\ back\ to\ the\ top\ page=\u30DA\u30FC\u30B8\u306E\u5148\u982D\u3078\u623B\u308B you\ can\ start\ using\ the\ installed\ plugins\ right\ away=\ \u3059\u3050\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u4f7f\u7528\u3067\u304d\u307e\u3059 warning=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u5b8c\u4e86\u5f8c\u3001\u30b8\u30e7\u30d6\u304c\u306a\u3051\u308c\u3070Jenkins\u3092\u518d\u8d77\u52d5\u3059\u308b diff --git a/core/src/main/resources/hudson/model/View/sidepanel_ja.properties b/core/src/main/resources/hudson/model/View/sidepanel_ja.properties index e70f8ba386..2e1b209b19 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_ja.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_ja.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. NewJob=\u65b0\u898f{0}\u4f5c\u6210 -People=\u958b\u767a\u8005 +People=\u30E6\u30FC\u30B6\u4E00\u89A7 Build\ History=\u30d3\u30eb\u30c9\u5c65\u6b74 Edit\ View=\u30d3\u30e5\u30fc\u306e\u5909\u66f4 Delete\ View=\u30d3\u30e5\u30fc\u306e\u524a\u9664 diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_ja.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_ja.properties index 9856ed5c33..ab062d7e12 100644 --- a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_ja.properties +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_ja.properties @@ -23,4 +23,4 @@ Test\ Result\ Trend=\u30C6\u30B9\u30C8\u7D50\u679C\u306E\u63A8\u79FB show\ test\ \#\ and\ failure\ \#=\u30C6\u30B9\u30C8 # \u3068\u5931\u6557 #\u3092\u8868\u793A just\ show\ failures=\u5931\u6557\u306E\u307F\u3092\u8868\u793A -enlarge=\u62E1\u5927 \ No newline at end of file +enlarge=\u62E1\u5927 diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ja.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ja.properties index c388ed8ddd..d193c398d7 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ja.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ja.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. \#\ of\ executors=\u540c\u6642\u5b9f\u884c\u6570 -Labels=\u30e9\u30d9\u30eb -Node\ Properties=\u30ce\u30fc\u30c9\u30d7\u30ed\u30d1\u30c6\u30a3 -Save=\u4fdd\u5b58 -Description=\u8aac\u660e \ No newline at end of file +Labels=\u30E9\u30D9\u30EB +Node\ Properties=\u30CE\u30FC\u30C9\u30D7\u30ED\u30D1\u30C6\u30A3 +Save=\u4FDD\u5B58 +Description=\u8aac\u660e diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_ja.properties b/core/src/main/resources/lib/hudson/buildProgressBar_ja.properties index c4413fd5d6..54ca62ad75 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_ja.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_ja.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=\u958B\u59CB\u6642\u9593: {0}
\u4E88\u60F3\u7D42\u4E86\u6642\u9593: {1} \ No newline at end of file +text=\u958B\u59CB\u6642\u9593: {0}
\u4E88\u60F3\u6B8B\u308A\u6642\u9593: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_ja.properties b/core/src/main/resources/lib/hudson/editableDescription_ja.properties index f64f153f1b..fd3ccd5dbf 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_ja.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_ja.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. add\ description=\u8aac\u660e\u3092\u8a18\u5165 -edit\ description=\u8aac\u660e\u3092\u5909\u66f4 +edit\ description=\u8AAC\u660E\u306E\u7DE8\u96C6 diff --git a/core/src/main/resources/lib/hudson/queue_ja.properties b/core/src/main/resources/lib/hudson/queue_ja.properties index 5dad263d05..94dc845b85 100644 --- a/core/src/main/resources/lib/hudson/queue_ja.properties +++ b/core/src/main/resources/lib/hudson/queue_ja.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. Build\ Queue=\u30d3\u30eb\u30c9\u30ad\u30e5\u30fc -No\ builds\ in\ the\ queue.=\u306a\u3057 +No\ builds\ in\ the\ queue.=\u30D3\u30EB\u30C9\u5F85\u3061 Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=\ Jenkins\u306f\u7d42\u4e86\u6e96\u5099\u4e2d\u306e\u305f\u3081\u30d3\u30eb\u30c9\u306f\u5b9f\u884c\u3055\u308c\u307e\u305b\u3093\u3002 cancel=\u30ad\u30e3\u30f3\u30bb\u30eb Unknown\ Task=\u672a\u77e5\u306e\u30bf\u30b9\u30af -WaitingFor={0} \u3092\u5f85\u6a5f\u4e2d \ No newline at end of file +WaitingFor={0} \u306E\u305F\u3081\u306B\u5F85\u6A5F\u3057\u3066\u3044\u307E\u3059 diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_ja.properties b/core/src/main/resources/lib/layout/breadcrumbBar_ja.properties index 3a203db5ce..3a49b6b244 100644 --- a/core/src/main/resources/lib/layout/breadcrumbBar_ja.properties +++ b/core/src/main/resources/lib/layout/breadcrumbBar_ja.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ENABLE\ AUTO\ REFRESH=\u81ea\u52d5\u30ea\u30ed\u30fc\u30c9on -DISABLE\ AUTO\ REFRESH=\u81ea\u52d5\u30ea\u30ed\u30fc\u30c9off +ENABLE\ AUTO\ REFRESH=\u81EA\u52D5\u30EA\u30ED\u30FC\u30C9\u3092on +DISABLE\ AUTO\ REFRESH=\u81EA\u52D5\u30EA\u30ED\u30FC\u30C9\u3092off diff --git a/core/src/main/resources/lib/layout/layout_ja.properties b/core/src/main/resources/lib/layout/layout_ja.properties index 170b63fd8e..292505a78e 100644 --- a/core/src/main/resources/lib/layout/layout_ja.properties +++ b/core/src/main/resources/lib/layout/layout_ja.properties @@ -22,5 +22,5 @@ searchBox.url=http://wiki.jenkins-ci.org/display/JA/Search+Box search=\u691c\u7d22 -Page\ generated=\u66f4\u65b0 +Page\ generated=\u30DA\u30FC\u30B8\u66F4\u65B0\u6642 logout=\u30ed\u30b0\u30a2\u30a6\u30c8 -- GitLab From 3e0e971ec901a3412c585804a2c368a43a8e941f Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:59 -0700 Subject: [PATCH 057/308] Community-contributed localization for Georgian (ka) --- .../hudson/model/AbstractBuild/index_ka.properties | 6 ++++++ .../hudson/model/AbstractBuild/sidepanel_ka.properties | 3 +++ .../hudson/model/AbstractBuild/tasks_ka.properties | 8 ++++++++ .../main/resources/hudson/model/Run/delete_ka.properties | 3 +++ .../main/resources/hudson/model/View/builds_ka.properties | 3 +++ .../main/resources/hudson/model/View/newJob_ka.properties | 4 ++++ .../resources/hudson/model/View/sidepanel_ka.properties | 7 +++++++ .../HudsonPrivateSecurityRealm/loginLink_ka.properties | 3 +++ .../hudson/security/SecurityRealm/loginLink_ka.properties | 3 +++ .../views/DefaultViewsTabBar/viewTabs_ka.properties | 3 +++ .../views/LastDurationColumn/columnHeader_ka.properties | 3 +++ .../views/LastFailureColumn/columnHeader_ka.properties | 3 +++ .../views/LastSuccessColumn/columnHeader_ka.properties | 3 +++ .../jenkins/model/Jenkins/fingerprintCheck_ka.properties | 7 +++++++ .../model/Jenkins/projectRelationship_ka.properties | 6 ++++++ .../lib/form/breadcrumb-config-outline_ka.properties | 3 +++ .../main/resources/lib/hudson/buildHealth_ka.properties | 3 +++ .../resources/lib/hudson/buildListTable_ka.properties | 4 ++++ .../lib/hudson/editableDescription_ka.properties | 3 +++ .../src/main/resources/lib/hudson/executors_ka.properties | 4 ++++ core/src/main/resources/lib/hudson/iconSize_ka.properties | 3 +++ .../resources/lib/hudson/newFromList/form_ka.properties | 3 +++ core/src/main/resources/lib/hudson/queue_ka.properties | 3 +++ core/src/main/resources/lib/hudson/rssBar_ka.properties | 6 ++++++ .../main/resources/lib/layout/breadcrumbBar_ka.properties | 3 +++ core/src/main/resources/lib/layout/layout_ka.properties | 5 +++++ 26 files changed, 105 insertions(+) create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_ka.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ka.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_ka.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_ka.properties create mode 100644 core/src/main/resources/hudson/model/View/builds_ka.properties create mode 100644 core/src/main/resources/hudson/model/View/newJob_ka.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_ka.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ka.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_ka.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ka.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ka.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ka.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ka.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ka.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/projectRelationship_ka.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_ka.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_ka.properties create mode 100644 core/src/main/resources/lib/hudson/buildListTable_ka.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_ka.properties create mode 100644 core/src/main/resources/lib/hudson/executors_ka.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_ka.properties create mode 100644 core/src/main/resources/lib/hudson/newFromList/form_ka.properties create mode 100644 core/src/main/resources/lib/hudson/queue_ka.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_ka.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_ka.properties create mode 100644 core/src/main/resources/lib/layout/layout_ka.properties diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_ka.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_ka.properties new file mode 100644 index 0000000000..ef6e6e64e7 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_ka.properties @@ -0,0 +1,6 @@ +# 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/sidepanel_ka.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ka.properties new file mode 100644 index 0000000000..a953e89dd9 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ka.properties @@ -0,0 +1,3 @@ +# 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/tasks_ka.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ka.properties new file mode 100644 index 0000000000..8bf07a3666 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ka.properties @@ -0,0 +1,8 @@ +# 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/Run/delete_ka.properties b/core/src/main/resources/hudson/model/Run/delete_ka.properties new file mode 100644 index 0000000000..fdcf5f84ac --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_ka.properties @@ -0,0 +1,3 @@ +# 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/View/builds_ka.properties b/core/src/main/resources/hudson/model/View/builds_ka.properties new file mode 100644 index 0000000000..584a2662a0 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/builds_ka.properties @@ -0,0 +1,3 @@ +# 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/newJob_ka.properties b/core/src/main/resources/hudson/model/View/newJob_ka.properties new file mode 100644 index 0000000000..cf0acb7824 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/newJob_ka.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +CopyExisting=\u10D2\u10D0\u10D3\u10D0\u10D8\u10E6\u10D4 {0}\u10D3\u10D0\u10DC +JobName={0} \u10E1\u10D0\u10EE\u10D4\u10DA\u10D8 diff --git a/core/src/main/resources/hudson/model/View/sidepanel_ka.properties b/core/src/main/resources/hudson/model/View/sidepanel_ka.properties new file mode 100644 index 0000000000..4e72f6fbc6 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_ka.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Build\ History=\u10D1\u10D8\u10DA\u10D3\u10D8\u10E1 \u10D8\u10E1\u10E2\u10DD\u10E0\u10D8\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 +NewJob=\u10D0\u10EE\u10D0\u10DA\u10D8 {0} +People=\u10EE\u10D0\u10DA\u10EE\u10D8 +Project\ Relationship=\u10DE\u10E0\u10DD\u10D4\u10E5\u10E2\u10D8\u10E1 \u10D9\u10D0\u10D5\u10E8\u10D8\u10E0\u10D4\u10D1\u10D8 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ka.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ka.properties new file mode 100644 index 0000000000..f2e1d6492f --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ka.properties @@ -0,0 +1,3 @@ +# 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/SecurityRealm/loginLink_ka.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ka.properties new file mode 100644 index 0000000000..609b1be4e7 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ka.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +login=\u10E8\u10D4\u10E1\u10D5\u10DA\u10D0 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ka.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ka.properties new file mode 100644 index 0000000000..c647fa13d8 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ka.properties @@ -0,0 +1,3 @@ +# 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/LastDurationColumn/columnHeader_ka.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ka.properties new file mode 100644 index 0000000000..0ed0259ab9 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ka.properties @@ -0,0 +1,3 @@ +# 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/LastFailureColumn/columnHeader_ka.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ka.properties new file mode 100644 index 0000000000..d8b0c7ce0c --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ka.properties @@ -0,0 +1,3 @@ +# 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/LastSuccessColumn/columnHeader_ka.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ka.properties new file mode 100644 index 0000000000..dcaa6bc262 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ka.properties @@ -0,0 +1,3 @@ +# 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/jenkins/model/Jenkins/fingerprintCheck_ka.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ka.properties new file mode 100644 index 0000000000..b25a4accbf --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ka.properties @@ -0,0 +1,7 @@ +# 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/projectRelationship_ka.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_ka.properties new file mode 100644 index 0000000000..cff930fe1d --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_ka.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Compare=\u10E8\u10D4\u10D3\u10D0\u10E0\u10D4\u10D1\u10D0 +Project\ Relationship=\u10DE\u10E0\u10DD\u10D4\u10E5\u10E2\u10D8\u10E1 \u10D9\u10D0\u10D5\u10E8\u10D8\u10E0\u10D4\u10D1\u10D8 +downstream\ project=\u10E5\u10D5\u10D4\u10DB\u10DD \u10DE\u10E0\u10DD\u10D4\u10E5\u10E2\u10D8 +upstream\ project=\u10D6\u10D4\u10DB\u10DD \u10DE\u10E0\u10DD\u10D4\u10E5\u10E2\u10D8 diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_ka.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_ka.properties new file mode 100644 index 0000000000..0a980fa839 --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_ka.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=\u10D9\u10DD\u10DC\u10E4\u10D8\u10D2\u10E3\u10E0\u10D0\u10EA\u10D8\u10D0 diff --git a/core/src/main/resources/lib/hudson/buildHealth_ka.properties b/core/src/main/resources/lib/hudson/buildHealth_ka.properties new file mode 100644 index 0000000000..46ab07a48e --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_ka.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Description=\u10D0\u10E6\u10EC\u10D4\u10E0\u10D0 diff --git a/core/src/main/resources/lib/hudson/buildListTable_ka.properties b/core/src/main/resources/lib/hudson/buildListTable_ka.properties new file mode 100644 index 0000000000..a6e1bd6f08 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildListTable_ka.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Status=\u10E1\u10E2\u10D0\u10E2\u10E3\u10E1\u10D8 +Time\ Since=\u10D2\u10D0\u10E1\u10E3\u10DA\u10D8 \u10D3\u10E0\u10DD diff --git a/core/src/main/resources/lib/hudson/editableDescription_ka.properties b/core/src/main/resources/lib/hudson/editableDescription_ka.properties new file mode 100644 index 0000000000..5136a939d3 --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_ka.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +add\ description=\u10D0\u10E6\u10EC\u10D4\u10E0\u10D8\u10E1 \u10D3\u10D0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D0 diff --git a/core/src/main/resources/lib/hudson/executors_ka.properties b/core/src/main/resources/lib/hudson/executors_ka.properties new file mode 100644 index 0000000000..42a1d75320 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_ka.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Idle=\u10D7\u10D0\u10D5\u10D8\u10E1\u10E3\u10E4\u10D0\u10DA\u10D8 +Status=\u10E1\u10E2\u10D0\u10E2\u10E3\u10E1\u10D8 diff --git a/core/src/main/resources/lib/hudson/iconSize_ka.properties b/core/src/main/resources/lib/hudson/iconSize_ka.properties new file mode 100644 index 0000000000..704e02b460 --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_ka.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Icon=\u10EE\u10D0\u10E2\u10E3\u10DA\u10D0 diff --git a/core/src/main/resources/lib/hudson/newFromList/form_ka.properties b/core/src/main/resources/lib/hudson/newFromList/form_ka.properties new file mode 100644 index 0000000000..fab700ef37 --- /dev/null +++ b/core/src/main/resources/lib/hudson/newFromList/form_ka.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Copy\ from=\u10E1\u10EE\u10D5\u10D8\u10E1 \u10DB\u10D8\u10EE\u10D4\u10D3\u10D5\u10D8\u10D7 diff --git a/core/src/main/resources/lib/hudson/queue_ka.properties b/core/src/main/resources/lib/hudson/queue_ka.properties new file mode 100644 index 0000000000..68505ebd91 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_ka.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Build\ Queue=\u10D1\u10D8\u10DA\u10D3\u10D8\u10E1 \u10E0\u10D8\u10D2\u10D8 diff --git a/core/src/main/resources/lib/hudson/rssBar_ka.properties b/core/src/main/resources/lib/hudson/rssBar_ka.properties new file mode 100644 index 0000000000..5cc8817dee --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_ka.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Legend=\u10DA\u10D4\u10D2\u10D4\u10DC\u10D3\u10D0 +for\ all=\u10E7\u10D5\u10D4\u10DA\u10D0\u10E1\u10D0\u10D7\u10D5\u10D8\u10E1 +for\ failures=\u10EC\u10D0\u10E0\u10E3\u10DB\u10D0\u10E2\u10D4\u10D1\u10DA\u10DD\u10D1\u10D4\u10D1\u10D8\u10E1\u10D0\u10D7\u10D5\u10D8\u10E1 +for\ just\ latest\ builds=\u10DB\u10EE\u10DD\u10DA\u10DD\u10D3 \u10D1\u10DD\u10DA\u10DD \u10D1\u10D8\u10DA\u10D3\u10D4\u10D1\u10D8\u10E1\u10D7\u10D5\u10D8\u10E1 diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_ka.properties b/core/src/main/resources/lib/layout/breadcrumbBar_ka.properties new file mode 100644 index 0000000000..f0740763ac --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_ka.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=\u10D0\u10D5\u10E2\u10DD\u10DB\u10D0\u10E2\u10E3\u10E0\u10D8 \u10D2\u10D0\u10DC\u10D0\u10EE\u10DA\u10D4\u10D1\u10D8\u10E1 \u10E9\u10D0\u10E0\u10D7\u10D5\u10D0 diff --git a/core/src/main/resources/lib/layout/layout_ka.properties b/core/src/main/resources/lib/layout/layout_ka.properties new file mode 100644 index 0000000000..ad9ecf0622 --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_ka.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Page\ generated=\u10D2\u10D4\u10DC\u10D4\u10E0\u10D8\u10E0\u10D4\u10D1\u10E3\u10DA\u10D8 +search=\u10EB\u10D4\u10D1\u10DC\u10D0 +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -- GitLab From f041d3f58f7e42231de7942aefa713103fb8f15d Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:09:59 -0700 Subject: [PATCH 058/308] Community-contributed localization for Kannada (kn) --- .../hudson/model/AbstractBuild/index_kn.properties | 5 +++++ .../hudson/model/AbstractBuild/sidepanel_kn.properties | 4 ++++ .../hudson/model/AbstractBuild/tasks_kn.properties | 7 ++++++- .../hudson/model/AbstractProject/main_kn.properties | 5 +++++ .../model/AbstractProject/sidepanel_kn.properties | 10 ++++++++++ .../resources/hudson/model/Job/index_kn.properties | 3 +++ .../hudson/model/Job/permalinks_kn.properties | 3 +++ .../Permalink/link_kn.properties | 3 +++ .../resources/hudson/model/Run/console_kn.properties | 3 +++ .../UpdateCenter/ConnectionCheckJob/row_kn.properties | 3 +++ .../DownloadJob/Pending/status_kn.properties | 3 +++ .../RestartJenkinsJob/Pending/status_kn.properties | 3 +++ .../hudson/model/View/AsynchPeople/index_kn.properties | 3 +++ .../hudson/model/View/sidepanel_kn.properties | 6 ++++++ .../hudson/scm/EmptyChangeLogSet/digest_kn.properties | 3 +++ .../HudsonPrivateSecurityRealm/loginLink_kn.properties | 3 +++ .../security/SecurityRealm/loginLink_kn.properties | 3 +++ .../views/BuildButtonColumn/column_kn.properties | 4 ++++ .../DefaultMyViewsTabBar/myViewTabs_kn.properties | 3 +++ .../views/DefaultViewsTabBar/viewTabs_kn.properties | 3 +++ .../LastDurationColumn/columnHeader_kn.properties | 3 +++ .../views/LastDurationColumn/column_kn.properties | 3 +++ .../views/LastFailureColumn/columnHeader_kn.properties | 3 +++ .../views/LastFailureColumn/column_kn.properties | 3 +++ .../views/LastSuccessColumn/columnHeader_kn.properties | 3 +++ .../views/LastSuccessColumn/column_kn.properties | 3 +++ .../views/StatusColumn/columnHeader_kn.properties | 3 +++ .../views/WeatherColumn/columnHeader_kn.properties | 3 +++ .../hudson/widgets/HistoryWidget/entry_kn.properties | 3 +++ .../hudson/widgets/HistoryWidget/index_kn.properties | 5 +++++ .../lib/form/breadcrumb-config-outline_kn.properties | 3 +++ .../resources/lib/hudson/buildCaption_kn.properties | 3 +++ .../resources/lib/hudson/buildHealth_kn.properties | 3 +++ .../lib/hudson/buildProgressBar_kn.properties | 3 +++ .../lib/hudson/editableDescription_kn.properties | 4 ++++ .../main/resources/lib/hudson/executors_kn.properties | 6 ++++++ .../main/resources/lib/hudson/iconSize_kn.properties | 3 +++ .../hudson/project/upstream-downstream_kn.properties | 4 ++++ core/src/main/resources/lib/hudson/queue_kn.properties | 4 ++++ .../src/main/resources/lib/hudson/rssBar_kn.properties | 6 ++++++ .../resources/lib/layout/breadcrumbBar_kn.properties | 3 +++ .../src/main/resources/lib/layout/layout_kn.properties | 6 +++++- 42 files changed, 158 insertions(+), 2 deletions(-) create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_kn.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_kn.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_kn.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_kn.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_kn.properties create mode 100644 core/src/main/resources/hudson/model/Job/permalinks_kn.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_kn.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_kn.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_kn.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_kn.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_kn.properties create mode 100644 core/src/main/resources/hudson/model/View/AsynchPeople/index_kn.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_kn.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_kn.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_kn.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_kn.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_kn.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_kn.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_kn.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_kn.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/column_kn.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_kn.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_kn.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_kn.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_kn.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_kn.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_kn.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_kn.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_kn.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_kn.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_kn.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_kn.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_kn.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_kn.properties create mode 100644 core/src/main/resources/lib/hudson/executors_kn.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_kn.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_kn.properties create mode 100644 core/src/main/resources/lib/hudson/queue_kn.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_kn.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_kn.properties diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_kn.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_kn.properties new file mode 100644 index 0000000000..8e0eb288c2 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_kn.properties @@ -0,0 +1,5 @@ +# 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/sidepanel_kn.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_kn.properties new file mode 100644 index 0000000000..1857c8eead --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_kn.properties @@ -0,0 +1,4 @@ +# 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/tasks_kn.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_kn.properties index 4b8a75317d..c9e414b782 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_kn.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_kn.properties @@ -20,5 +20,10 @@ # 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 -Status=\u0CB8\u0CBF\u0CCD\u0CA4\u0CA4\u0CBF +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/AbstractProject/main_kn.properties b/core/src/main/resources/hudson/model/AbstractProject/main_kn.properties new file mode 100644 index 0000000000..eca13c63c3 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_kn.properties @@ -0,0 +1,5 @@ +# 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/sidepanel_kn.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_kn.properties new file mode 100644 index 0000000000..0573b46f91 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_kn.properties @@ -0,0 +1,10 @@ +# 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 +Build\ scheduled=\u0CAC\u0CBF\u0CB2\u0CCD\u0CA1\u0CCD \u0C85\u0CA8\u0CC1\u0CB8\u0CC2\u0C9A\u0CBF +Changes=\u0CAC\u0CA6\u0CB2\u0CBE\u0CB5\u0CA3\u0CC6 +Configure=\u0CB8\u0C82\u0CB0\u0C9A\u0CBF\u0CB8\u0CC1 +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 +delete=\u0C85\u0CB3\u0CBF\u0CB8\u0CC1 diff --git a/core/src/main/resources/hudson/model/Job/index_kn.properties b/core/src/main/resources/hudson/model/Job/index_kn.properties new file mode 100644 index 0000000000..788bbb67de --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_kn.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Disable\ Project=\u0CAA\u0CCD\u0CB0\u0CBE\u0C9C\u0CC6\u0C95\u0CCD\u0C9F\u0CCD \u0CA8\u0CBF\u0CB7\u0CCD\u0C95\u0CCD\u0CB0\u0CBF\u0CAF\u0C97\u0CCA\u0CB3\u0CBF\u0CB8\u0CC1 diff --git a/core/src/main/resources/hudson/model/Job/permalinks_kn.properties b/core/src/main/resources/hudson/model/Job/permalinks_kn.properties new file mode 100644 index 0000000000..265ad32779 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/permalinks_kn.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Permalinks=\u0CAA\u0CC6\u0CB0\u0CCD\u0CAE\u0CB2\u0CBF\u0CA8\u0CCD\u0C95\u0CCD\u0CB8\u0CCD 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 new file mode 100644 index 0000000000..210d73cfc8 --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_kn.properties @@ -0,0 +1,3 @@ +# 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/Run/console_kn.properties b/core/src/main/resources/hudson/model/Run/console_kn.properties new file mode 100644 index 0000000000..18836465d7 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_kn.properties @@ -0,0 +1,3 @@ +# 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/UpdateCenter/ConnectionCheckJob/row_kn.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_kn.properties new file mode 100644 index 0000000000..551476e9c0 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_kn.properties @@ -0,0 +1,3 @@ +# 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/DownloadJob/Pending/status_kn.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_kn.properties new file mode 100644 index 0000000000..2c76ca0610 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_kn.properties @@ -0,0 +1,3 @@ +# 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_kn.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_kn.properties new file mode 100644 index 0000000000..2c76ca0610 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_kn.properties @@ -0,0 +1,3 @@ +# 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/View/AsynchPeople/index_kn.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_kn.properties new file mode 100644 index 0000000000..7723da1d6c --- /dev/null +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_kn.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +People=\u0C9C\u0CA8\u0CB0\u0CC1 diff --git a/core/src/main/resources/hudson/model/View/sidepanel_kn.properties b/core/src/main/resources/hudson/model/View/sidepanel_kn.properties new file mode 100644 index 0000000000..a411165aa5 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_kn.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Build\ History=\u0CA8\u0CBF\u0CB0\u0CCD\u0CAE\u0CBE\u0CA3\u0CA6 \u0C87\u0CA4\u0CBF\u0CB9\u0CBE\u0CB8 +Edit\ View=\u0C8E\u0CA1\u0CBF\u0C9F\u0CCD \u0CB5\u0CBF\u0CB5\u0C83 +NewJob=\u0CB9\u0CC6\u0CC2\u0CB8 {0} +People=\u0C9C\u0CA8\u0CB0\u0CC1 diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_kn.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_kn.properties new file mode 100644 index 0000000000..4b58c3480d --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_kn.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ changes.=\u0C8F\u0CA8\u0CC2 \u0CAC\u0CA6\u0CB2\u0CBE\u0CB5\u0CA3\u0CC6\u0C97\u0CB3\u0CBF\u0CB2\u0CCD\u0CB2 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_kn.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_kn.properties new file mode 100644 index 0000000000..9f494ee261 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_kn.properties @@ -0,0 +1,3 @@ +# 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/SecurityRealm/loginLink_kn.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_kn.properties new file mode 100644 index 0000000000..189cc0339b --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_kn.properties @@ -0,0 +1,3 @@ +# 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/views/BuildButtonColumn/column_kn.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_kn.properties new file mode 100644 index 0000000000..bfa73ab9e7 --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_kn.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build\ scheduled=\u0CA8\u0CBF\u0C97\u0CA6\u0CBF\u0CA4 \u0CA8\u0CBF\u0CB0\u0CCD\u0CAE\u0CBE\u0CA3 +Schedule\ a\ build=\u0C92\u0C82\u0CA6\u0CC1 \u0CA8\u0CBF\u0CB0\u0CCD\u0CAE\u0CBE\u0CA3 \u0CB5\u0CC6\u0CD5\u0CB3\u0CBE\u0CAA\u0C9F\u0CCD\u0C9F\u0CBF diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_kn.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_kn.properties new file mode 100644 index 0000000000..6026558a39 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_kn.properties @@ -0,0 +1,3 @@ +# 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/DefaultViewsTabBar/viewTabs_kn.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_kn.properties new file mode 100644 index 0000000000..71849fb2f9 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_kn.properties @@ -0,0 +1,3 @@ +# 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/LastDurationColumn/columnHeader_kn.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_kn.properties new file mode 100644 index 0000000000..daee4f9e48 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_kn.properties @@ -0,0 +1,3 @@ +# 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/column_kn.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_kn.properties new file mode 100644 index 0000000000..a8191ffeda --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_kn.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=Idu illa diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_kn.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_kn.properties new file mode 100644 index 0000000000..271aef45c5 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_kn.properties @@ -0,0 +1,3 @@ +# 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/column_kn.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_kn.properties new file mode 100644 index 0000000000..dd5e1f1782 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_kn.properties @@ -0,0 +1,3 @@ +# 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/LastSuccessColumn/columnHeader_kn.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_kn.properties new file mode 100644 index 0000000000..9f463c1780 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_kn.properties @@ -0,0 +1,3 @@ +# 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/column_kn.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_kn.properties new file mode 100644 index 0000000000..337202c2e1 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_kn.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=idu illa diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_kn.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_kn.properties new file mode 100644 index 0000000000..c564139a4b --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_kn.properties @@ -0,0 +1,3 @@ +# 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/WeatherColumn/columnHeader_kn.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_kn.properties new file mode 100644 index 0000000000..882e8a14d7 --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_kn.properties @@ -0,0 +1,3 @@ +# 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/widgets/HistoryWidget/entry_kn.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_kn.properties new file mode 100644 index 0000000000..03f9bf6188 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_kn.properties @@ -0,0 +1,3 @@ +# 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/index_kn.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_kn.properties new file mode 100644 index 0000000000..2726574b64 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_kn.properties @@ -0,0 +1,5 @@ +# 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/lib/form/breadcrumb-config-outline_kn.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_kn.properties new file mode 100644 index 0000000000..0c45276071 --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_kn.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=\u0CB8\u0C82\u0CB0\u0C9A\u0CA8\u0CBE diff --git a/core/src/main/resources/lib/hudson/buildCaption_kn.properties b/core/src/main/resources/lib/hudson/buildCaption_kn.properties new file mode 100644 index 0000000000..07c18a7362 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_kn.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Progress=\u0CAA\u0CCD\u0CB0\u0C97\u0CA4\u0CBF diff --git a/core/src/main/resources/lib/hudson/buildHealth_kn.properties b/core/src/main/resources/lib/hudson/buildHealth_kn.properties new file mode 100644 index 0000000000..2fb39c0851 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_kn.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Description=\u0CB5\u0CBF\u0CB5\u0CB0\u0CA3\u0CC6 diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_kn.properties b/core/src/main/resources/lib/hudson/buildProgressBar_kn.properties new file mode 100644 index 0000000000..40c3b95c3d --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_kn.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +text={0} \u0CB8\u0CAE\u0CAF\u0CA6 \u0CB9\u0CBF\u0C82\u0CA6\u0CC6 \u0CAA\u0CCD\u0CB0\u0CBE\u0CB0\u0C82\u0CAD\u0CB5\u0CBE\u0CAF\u0CBF\u0CA4\u0CC1
\u0C87\u0CA8\u0CCD\u0CA8\u0CC1 {1} \u0CB8\u0CAE\u0CAF \u0CAC\u0CBE\u0C95\u0CBF \u0C87\u0CA6\u0CC6 diff --git a/core/src/main/resources/lib/hudson/editableDescription_kn.properties b/core/src/main/resources/lib/hudson/editableDescription_kn.properties new file mode 100644 index 0000000000..72b14e6418 --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_kn.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +add\ description=\u0CB5\u0CBF\u0CB5\u0CB0\u0CA3\u0CC6 \u0CB9\u0CBE\u0C95\u0CC1 +edit\ description=\u0CB5\u0CBF\u0CB5\u0CB0\u0CA3\u0CC6 \u0CB8\u0C82\u0CAA\u0CBE\u0CA6\u0CBF\u0CB8\u0CBF diff --git a/core/src/main/resources/lib/hudson/executors_kn.properties b/core/src/main/resources/lib/hudson/executors_kn.properties new file mode 100644 index 0000000000..91347359f7 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_kn.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Build\ Executor\ Status=\u0CA8\u0CBF\u0CB0\u0CCD\u0CB5\u0CBE\u0CB9\u0C95 \u0CB8\u0CCD\u0CA5\u0CBF\u0CA4\u0CBF \u0CA8\u0CBF\u0CB0\u0CCD\u0CAE\u0CBF\u0CB8\u0CBF +Idle=\u0CB8\u0CC1\u0CAE\u0CCD\u0CAE\u0CA8\u0CC6\u0CAF +Master=\u0CAF\u0C9C\u0CAE\u0CBE\u0CA8 +Status=\u0CB8\u0CCD\u0CA0\u0CBF\u0CA4\u0CBF diff --git a/core/src/main/resources/lib/hudson/iconSize_kn.properties b/core/src/main/resources/lib/hudson/iconSize_kn.properties new file mode 100644 index 0000000000..f5ab2d0b99 --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_kn.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Icon=\u0CB5\u0CBF\u0C97\u0CCD\u0CB0\u0CB9 diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_kn.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_kn.properties new file mode 100644 index 0000000000..d148556978 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_kn.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Downstream\ Projects=\u0CA6\u0CCA\u0CB5\u0CA8\u0CCD\u0CB8\u0CCD\u0CA4\u0CCD\u0CB0\u0CC6\u0C82 \u0CAA\u0CCD\u0CB0\u0CBE\u0C9C\u0CC6\u0C95\u0CCD\u0C9F\u0CCD\u0CB8\u0CCD +Upstream\ Projects=\u0C89\u0CAA\u0CCD\u0CB8\u0CCD\u0CA4\u0CCD\u0CB0\u0CC6\u0C82 \u0CAA\u0CCD\u0CB0\u0CBE\u0C9C\u0CC6\u0C95\u0CCD\u0C9F\u0CCD diff --git a/core/src/main/resources/lib/hudson/queue_kn.properties b/core/src/main/resources/lib/hudson/queue_kn.properties new file mode 100644 index 0000000000..735a8801e8 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_kn.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build\ Queue=\u0CA8\u0CBF\u0CB0\u0CCD\u0CAE\u0CBE\u0CA3\u0CA6 \u0CB8\u0CB0\u0CA6\u0CBF \u0CB8\u0CBE\u0CB2\u0CC1 +No\ builds\ in\ the\ queue.=\u0CB8\u0CB0\u0CA6\u0CBF \u0CB8\u0CBE\u0CB2\u0CBF\u0CA8\u0CB2\u0CCD\u0CB2\u0CBF \u0CA8\u0CBF\u0CB0\u0CCD\u0CAE\u0CBE\u0CA3\u0C97\u0CB3\u0CC1 \u0C87\u0CB2\u0CCD\u0CB2 diff --git a/core/src/main/resources/lib/hudson/rssBar_kn.properties b/core/src/main/resources/lib/hudson/rssBar_kn.properties new file mode 100644 index 0000000000..620a2633f9 --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_kn.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Legend=\u0C85\u0C96\u0CCD\u0CAF\u0CBE\u0CA8 +for\ all=\u0C8E\u0CB2\u0CCD\u0CB2\u0CBE +for\ failures=\u0CB5\u0CBF\u0CAB\u0CB2\u0CA4\u0CC6\u0C97\u0CBE\u0C97\u0CBF +for\ just\ latest\ builds=\u0C95\u0CC7\u0CB5\u0CB2 \u0C87\u0CA4\u0CCD\u0CA4\u0CC0\u0C9A\u0CBF\u0CA8 \u0CA8\u0CBF\u0CB0\u0CCD\u0CAE\u0CBE\u0CA3\u0C97\u0CB3\u0CBF\u0C97\u0CBE\u0C97\u0CBF diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_kn.properties b/core/src/main/resources/lib/layout/breadcrumbBar_kn.properties new file mode 100644 index 0000000000..c6af67a96e --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_kn.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=\u0CB8\u0CCD\u0CB5\u0CAF\u0C82 \u0CA4\u0CBE\u0C9C\u0CBE\u0C97\u0CC6\u0CC2\u0CB3\u0CBF\u0CB8\u0CB2\u0CC1 \u0CB8\u0C95\u0CCD\u0CB0\u0CBF\u0CAF\u0C97\u0CC6\u0CC2\u0CB3\u0CBF\u0CB8\u0CBF diff --git a/core/src/main/resources/lib/layout/layout_kn.properties b/core/src/main/resources/lib/layout/layout_kn.properties index c753ff03ae..28091a447a 100644 --- a/core/src/main/resources/lib/layout/layout_kn.properties +++ b/core/src/main/resources/lib/layout/layout_kn.properties @@ -20,4 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -search=\u0CB9\u0CC1\u0CA1\u0CC1\u0C95\u0CC1 +ENABLE\ AUTO\ REFRESH=\u0C86\u0C9F\u0CC6\u0CC2\u0CD5 \u0CB0\u0CBF\u0CAB\u0CCD\u0CB0\u0CC6\u0CB6\u0CCD \u0CB8\u0C95\u0CCD\u0CB0\u0CBF\u0CAF\u0C97\u0CC6\u0CC2\u0CB3\u0CBF\u0CB8\u0CBF +Page\ generated=\u0CB0\u0C9A\u0CBF\u0CA4\u0CB5\u0CBE\u0CA6 \u0CAA\u0CC1\u0C9F +logout=\u0CB2\u0CBE\u0C97\u0CCD \u0C94\u0C9F\u0CCD +search=\u0CB9\u0CC1\u0CA1\u0CC1\u0C95\u0CBF\u0CB0\u0CBF +searchBox.url=\u0CB9\u0CCD\u0CA4\u0CCD\u0CA4\u0CCD\u0CAA\u0CCD://\u0CB5\u0CBF\u0C95\u0CBF.\u0C9C\u0CC6\u0C82\u0C95\u0CBF\u0CA8\u0CCD\u0CB8\u0CCD-\u0CB8\u0CBF.\u0C93\u0CB0\u0CCD\u0C97\u0CCD/\u0CA6\u0CBF\u0CB8\u0CCD\u0CAA\u0CCD\u0CB3\u0CBF/\u0C9C\u0CC6\u0C82\u0C95\u0CBF\u0CA8\u0CCD\u0CB8\u0CCD/\u0CB8\u0CB0\u0CCD\u0C9A\u0CCD+\u0CAC\u0CBE\u0C95\u0CCD\u0CB8\u0CCD -- GitLab From 31416f7b8279120285c3f4f6c0f654c64c9f5c78 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:00 -0700 Subject: [PATCH 059/308] Community-contributed localization for Korean (ko) --- .../hudson/PluginManager/advanced_ko.properties | 2 ++ .../hudson/PluginManager/index_ko.properties | 3 ++- .../hudson/PluginManager/installed_ko.properties | 6 ++++++ .../hudson/PluginManager/table_ko.properties | 4 ++++ .../OldDataMonitor/message_ko.properties | 5 +++++ .../message_ko.properties | 2 ++ .../LogRecorderManager/levels_ko.properties | 9 +++++++++ .../LogRecorderManager/sidepanel_ko.properties | 1 + .../RawHtmlMarkupFormatter/config_ko.properties | 4 ++++ .../matrix/MatrixBuild/delete_ko.properties | 4 ++++ .../configure-entries_ko.properties | 6 ++++++ .../matrix/MatrixProject/index_ko.properties | 4 ++++ .../model/AbstractBuild/index_ko.properties | 5 +++-- .../model/AbstractBuild/tasks_ko.properties | 7 +++++-- .../AbstractItem/configure-common_ko.properties | 3 +++ .../model/AbstractItem/delete_ko.properties | 3 ++- .../model/AbstractItem/noWorkspace_ko.properties | 4 ++++ .../model/AbstractProject/main_ko.properties | 7 ++++--- .../AbstractProject/makeDisabled_ko.properties | 2 ++ .../AbstractProject/sidepanel_ko.properties | 16 +++++++++------- .../BuildAuthorizationToken/config_ko.properties | 5 +++++ .../hudson/model/ComputerSet/index_ko.properties | 1 + .../DirectoryBrowserSupport/dir_ko.properties | 2 ++ .../model/Job/buildTimeTrend_ko.properties | 2 +- .../hudson/model/Job/configure_ko.properties | 3 +++ .../hudson/model/Job/index_ko.properties | 3 +++ .../hudson/model/Job/permalinks_ko.properties | 2 +- .../ListView/configure-entries_ko.properties | 11 +++++++++++ .../model/LoadStatistics/main_ko.properties | 3 ++- .../model/ParametersAction/index_ko.properties | 4 ++++ .../config_ko.properties | 4 ++++ .../Run/KeepLogBuildBadge/badge_ko.properties | 3 +++ .../hudson/model/Run/console_ko.properties | 1 + .../hudson/model/Run/logKeep_ko.properties | 3 +++ .../DownloadJob/Installing/status_ko.properties | 3 +++ .../DownloadJob/Success/status_ko.properties | 3 +++ .../hudson/model/UpdateCenter/body_ko.properties | 2 ++ .../model/UpdateCenter/sidepanel_ko.properties | 2 +- .../hudson/model/User/builds_ko.properties | 3 +++ .../hudson/model/User/configure_ko.properties | 4 ++++ .../hudson/model/User/index_ko.properties | 3 +++ .../hudson/model/User/sidepanel_ko.properties | 8 ++++++++ .../model/View/AsynchPeople/index_ko.properties | 6 +++--- .../hudson/model/View/configure_ko.properties | 5 +++++ .../hudson/model/View/sidepanel_ko.properties | 8 ++++---- .../hudson/scm/SCM/project-changes_ko.properties | 3 ++- .../config_ko.properties | 3 +++ .../index_ko.properties | 4 +++- .../success_ko.properties | 4 ++++ .../LegacySecurityRealm/config_ko.properties | 4 ++++ .../config_ko.properties | 5 +++++ .../hudson/tasks/LogRotator/config_ko.properties | 6 ++++++ .../test/MetaTabulatedResult/body_ko.properties | 10 ++++++++++ .../test/TestObject/sidepanel_ko.properties | 5 +++++ .../floatingBox_ko.properties | 5 +++++ .../config_ko.properties | 5 +++++ .../util/HudsonIsLoading/index_ko.properties | 4 ++++ .../views/BuildButtonColumn/column_ko.properties | 1 + .../DefaultViewsTabBar/viewTabs_ko.properties | 2 +- .../StatusColumn/columnHeader_ko.properties | 2 +- .../WeatherColumn/columnHeader_ko.properties | 2 +- .../BuildHistoryWidget/entries_ko.properties | 4 ++++ .../widgets/HistoryWidget/index_ko.properties | 6 +++--- .../SecurityIsOffMonitor/message_ko.properties | 3 +++ .../management/PluginsLink/info_ko.properties | 3 +++ .../MasterComputer/configure_ko.properties | 4 ++++ .../jenkins/model/Jenkins/_cli_ko.properties | 4 ++++ .../model/Jenkins/configure_ko.properties | 4 ++++ .../model/Jenkins/downgrade_ko.properties | 4 ++++ .../model/Jenkins/fingerprintCheck_ko.properties | 7 +++++++ .../jenkins/model/Jenkins/legend_ko.properties | 5 +++++ .../model/Jenkins/loginError_ko.properties | 1 + .../jenkins/model/Jenkins/manage_ko.properties | 13 +++++++++++++ .../model/Jenkins/systemInfo_ko.properties | 7 ++++++- .../main/resources/lib/form/apply_ko.properties | 3 +++ .../form/breadcrumb-config-outline_ko.properties | 3 +++ .../form/repeatableDeleteButton_ko.properties | 3 +++ .../resources/lib/form/repeatable_ko.properties | 3 +++ .../resources/lib/form/textarea_ko.properties | 4 ++++ .../lib/hudson/buildCaption_ko.properties | 2 +- .../lib/hudson/buildListTable_ko.properties | 3 ++- .../lib/hudson/buildProgressBar_ko.properties | 3 ++- .../lib/hudson/editableDescription_ko.properties | 2 +- .../lib/hudson/listScmBrowsers_ko.properties | 3 +++ .../main/resources/lib/hudson/node_ko.properties | 3 +++ ...fig-blockWhenDownstreamBuilding_ko.properties | 3 +++ ...onfig-blockWhenUpstreamBuilding_ko.properties | 3 +++ .../project/config-buildWrappers_ko.properties | 3 +++ .../project/config-concurrentBuild_ko.properties | 3 +++ .../project/config-publishers2_ko.properties | 4 ++++ .../project/config-quietPeriod_ko.properties | 3 +++ .../project/config-retryCount_ko.properties | 1 + .../hudson/project/config-trigger_ko.properties | 2 +- .../lib/hudson/project/matrix_ko.properties | 3 +++ .../resources/lib/hudson/queue_ko.properties | 1 + .../resources/lib/hudson/rssBar_ko.properties | 8 ++++---- .../lib/hudson/scriptConsole_ko.properties | 6 ++++++ .../lib/hudson/test-result_ko.properties | 4 ++++ .../lib/hudson/thirdPartyLicenses_ko.properties | 4 ++++ .../lib/layout/breadcrumbBar_ko.properties | 4 ++++ .../resources/lib/layout/layout_ko.properties | 5 +++-- .../lib/layout/main-panel_ko.properties | 3 +++ .../layout/progressiveRendering_ko.properties | 3 +++ .../main/resources/lib/layout/task_ko.properties | 3 +++ .../main/resources/lib/test/bar_ko.properties | 4 ++++ 105 files changed, 376 insertions(+), 47 deletions(-) create mode 100644 core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_ko.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/levels_ko.properties create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_ko.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixBuild/delete_ko.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_ko.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/index_ko.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ko.properties create mode 100644 core/src/main/resources/hudson/model/BuildAuthorizationToken/config_ko.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_ko.properties create mode 100644 core/src/main/resources/hudson/model/ListView/configure-entries_ko.properties create mode 100644 core/src/main/resources/hudson/model/ParametersAction/index_ko.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_ko.properties create mode 100644 core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_ko.properties create mode 100644 core/src/main/resources/hudson/model/Run/logKeep_ko.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ko.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ko.properties create mode 100644 core/src/main/resources/hudson/model/User/builds_ko.properties create mode 100644 core/src/main/resources/hudson/model/User/configure_ko.properties create mode 100644 core/src/main/resources/hudson/model/User/index_ko.properties create mode 100644 core/src/main/resources/hudson/model/User/sidepanel_ko.properties create mode 100644 core/src/main/resources/hudson/model/View/configure_ko.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_ko.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_ko.properties create mode 100644 core/src/main/resources/hudson/security/LegacySecurityRealm/config_ko.properties create mode 100644 core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ko.properties create mode 100644 core/src/main/resources/hudson/tasks/LogRotator/config_ko.properties create mode 100644 core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_ko.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_ko.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_ko.properties create mode 100644 core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_ko.properties create mode 100644 core/src/main/resources/hudson/util/HudsonIsLoading/index_ko.properties create mode 100644 core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_ko.properties create mode 100644 core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_ko.properties create mode 100644 core/src/main/resources/jenkins/management/PluginsLink/info_ko.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ko.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/_cli_ko.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/downgrade_ko.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ko.properties create mode 100644 core/src/main/resources/lib/form/apply_ko.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_ko.properties create mode 100644 core/src/main/resources/lib/form/repeatableDeleteButton_ko.properties create mode 100644 core/src/main/resources/lib/form/repeatable_ko.properties create mode 100644 core/src/main/resources/lib/form/textarea_ko.properties create mode 100644 core/src/main/resources/lib/hudson/listScmBrowsers_ko.properties create mode 100644 core/src/main/resources/lib/hudson/node_ko.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_ko.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_ko.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-buildWrappers_ko.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-concurrentBuild_ko.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-publishers2_ko.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-quietPeriod_ko.properties create mode 100644 core/src/main/resources/lib/hudson/project/matrix_ko.properties create mode 100644 core/src/main/resources/lib/hudson/test-result_ko.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_ko.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_ko.properties create mode 100644 core/src/main/resources/lib/layout/main-panel_ko.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_ko.properties create mode 100644 core/src/main/resources/lib/layout/task_ko.properties create mode 100644 core/src/main/resources/lib/test/bar_ko.properties diff --git a/core/src/main/resources/hudson/PluginManager/advanced_ko.properties b/core/src/main/resources/hudson/PluginManager/advanced_ko.properties index 5e6bc9f481..c7b39b4eb3 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_ko.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_ko.properties @@ -27,6 +27,8 @@ Password=\uC554\uD638 Port=\uD3EC\uD2B8 Server=\uC11C\uBC84 Submit=\uC800\uC7A5 +URL=\uC0AC\uC774\uD2B8\uACBD\uB85C +Update\ Site=\uC5C5\uB370\uC774\uD2B8 \uC0AC\uC774\uD2B8 Upload=\uC62C\uB9AC\uAE30 Upload\ Plugin=\uD50C\uB7EC\uADF8\uC778 \uC62C\uB9AC\uAE30 User\ name=\uC0AC\uC6A9\uC790\uBA85 diff --git a/core/src/main/resources/hudson/PluginManager/index_ko.properties b/core/src/main/resources/hudson/PluginManager/index_ko.properties index e079e1b00b..d2df0ecb70 100644 --- a/core/src/main/resources/hudson/PluginManager/index_ko.properties +++ b/core/src/main/resources/hudson/PluginManager/index_ko.properties @@ -23,4 +23,5 @@ All=\uBAA8\uB450 \uC120\uD0DD None=\uBAA8\uB450 \uC120\uD0DD \uC548\uD568 Select=\uC120\uD0DD -UpdatePageDescription=\uC774 \uD398\uC774\uC9C0 \uBAA9\uB85D\uC740 \uD604\uC7AC \uC0AC\uC6A9 \uC911\uC778 \uD50C\uB7EC\uADF8\uC778\uC5D0 \uB300\uD574\uC11C \uAC31\uC2E0\uD588\uC2B5\uB2C8\uB2E4. +UpdatePageDescription=\uC774 \uD398\uC774\uC9C0\uB294 \uD604\uC7AC \uC0AC\uC6A9\uD558\uB294 \uD50C\uB7EC\uADF8\uC778\uC5D0 \uB300\uD55C \uC5C5\uB370\uC774\uD2B8 \uBAA9\uB85D\uC785\uB2C8\uB2E4. +UpdatePageLegend=\uBE44\uD65C\uC131\uD654\uB41C \uD589\uB4E4\uC740 \uC774\uBBF8 \uC5C5\uADF8\uB808\uC774\uB4DC \uB418\uC5C8\uACE0, \uC7AC\uC2DC\uC791\uC744 \uAE30\uB2E4\uB9AC\uACE0 \uC788\uC2B5\uB2C8\uB2E4. \uC74C\uC601\uC774\uC9C0\uB9CC \uC120\uD0DD\uAC00\uB2A5\uD55C \uD589\uB4E4\uC740 \uC9C4\uD589\uC911\uC774\uAC70\uB098 \uC2E4\uD328\uD55C \uAC83\uC785\uB2C8\uB2E4. diff --git a/core/src/main/resources/hudson/PluginManager/installed_ko.properties b/core/src/main/resources/hudson/PluginManager/installed_ko.properties index a31db55fd0..7a6397fbf4 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_ko.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_ko.properties @@ -23,7 +23,13 @@ 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/table_ko.properties b/core/src/main/resources/hudson/PluginManager/table_ko.properties index d06c45e856..015e6abae7 100644 --- a/core/src/main/resources/hudson/PluginManager/table_ko.properties +++ b/core/src/main/resources/hudson/PluginManager/table_ko.properties @@ -22,8 +22,12 @@ Check\ to\ install\ the\ plugin=\uD50C\uB7EC\uADF8\uC778 \uC124\uCE58 \uD655\uC778 Click\ this\ heading\ to\ sort\ by\ category=\uC815\uB82C\uD558\uB824\uBA74 \uC5EC\uAE30\uB97C \uD074\uB9AD +Download\ now\ and\ install\ after\ restart=\uC9C0\uAE08 \uB2E4\uC6B4\uB85C\uB4DC\uD558\uACE0 \uC7AC\uC2DC\uC791 \uD6C4 \uC124\uCE58\uD558\uAE30 +Filter=\uD544\uD130 Install=\uC124\uCE58 +Install\ without\ restart=\uC7AC\uC2DC\uC791 \uC5C6\uC774 \uC124\uCE58\uD558\uAE30 Installed=\uC124\uCE58\uB428 Name=\uC774\uB984 +No\ updates=\uC5C5\uB370\uC774\uD2B8\uD560 \uAC83\uC774 \uC5C6\uC74C Version=\uBC84\uC804 coreWarning=\uC8FC\uC758: \uC774 \uD50C\uB7EC\uADF8\uC778\uC740 Jenkins {0} \uBC84\uC804 \uC774\uD6C4\uC5D0\uC11C \uB9CC\uB4E4\uC5B4\uC84C\uC2B5\uB2C8\uB2E4. \uD604 Jenkins\uC5D0\uC11C \uB3D9\uC791\uD558\uC9C0 \uC54A\uC744 \uC218 \uC788\uC2B5\uB2C8\uB2E4. diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_ko.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_ko.properties new file mode 100644 index 0000000000..b0ee13823d --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_ko.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Dismiss=\uD45C\uC2DC \uC548\uD568 +Manage=\uAD00\uB9AC +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=\uC624\uB798\uB41C \uD615\uC2DD\uC774\uAC70\uB098 \uC77D\uC744 \uC218 \uC5C6\uB294 \uB370\uC774\uD130\uAC00 \uC788\uC2B5\uB2C8\uB2E4. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ko.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ko.properties index 35c2cfb916..a5da1c2739 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ko.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ko.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Dismiss=\uD574\uC81C More\ Info=\uCD94\uAC00 \uC815\uBCF4 +blurb=\uC5ED\uBC29\uD5A5 \uD504\uB85D\uC2DC \uC124\uC815\uC774 \uC798\uBABB\uB41C \uAC83\uC73C\uB85C \uD30C\uC545\uB418\uC5C8\uC2B5\uB2C8\uB2E4. diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ko.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ko.properties new file mode 100644 index 0000000000..b2ae008852 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ko.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Adjust\ Levels=\uB808\uBCA8 \uC870\uC815 +Level=\uB808\uBCA8 +Logger\ Configuration=\uB85C\uAC70 \uC124\uC815 +Name=\uC774\uB984 +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 diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_ko.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_ko.properties index 1294e6f472..6cf1b6d7c2 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_ko.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_ko.properties @@ -23,5 +23,6 @@ All\ Logs=\ubaa8\ub4e0 \ub85c\uadf8 Manage\ Jenkins=Jenkins \uad00\ub9ac Back\ to\ Dashboard=\ub300\uc2dc\ubcf4\ub4dc\ub85c \ub3cc\uc544\uac10 +Log\ Levels=\uB85C\uADF8 \uB808\uBCA8 Logger\ List=\ub85c\uadf8 \ubaa9\ub85d New\ Log\ Recorder=\uc0c8 \ub85c\uadf8 \uae30\ub85d\uae30 diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_ko.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_ko.properties new file mode 100644 index 0000000000..8eb6bde30c --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_ko.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +blurb=\uD14D\uC2A4\uD2B8\uB97C HTML\uB85C \uB2E4\uB8E8\uACE0 \uBC88\uC5ED\uD558\uC9C0 \uC54A\uACE0 \uADF8\uB300\uB85C \uC0AC\uC6A9\uD569\uB2C8\uB2E4. +disableSyntaxHighlighting=\uBB38\uBC95 \uD558\uC774\uB77C\uC774\uD305 \uBE44\uD65C\uC131\uD654 diff --git a/core/src/main/resources/hudson/matrix/MatrixBuild/delete_ko.properties b/core/src/main/resources/hudson/matrix/MatrixBuild/delete_ko.properties new file mode 100644 index 0000000000..3d074ebceb --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixBuild/delete_ko.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Delete\ Build=\uBE4C\uB4DC \uC0AD\uC81C +Delete\ this\ build\ and\ all\ configurations\ in\ this\ build=\uC774 \uBE4C\uB4DC\uC640 \uBAA8\uB4E0 \uAD6C\uC131\uC758 \uBE4C\uB4DC\uB4E4\uC744 \uC0AD\uC81C diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_ko.properties b/core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_ko.properties new file mode 100644 index 0000000000..99575b6f77 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_ko.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Advanced\ Project\ Options=\uACE0\uAE09 \uD504\uB85C\uC81D\uD2B8 \uC635\uC158 +Directory=\uB514\uB809\uD130\uB9AC +Directory\ for\ sub-builds=\uC11C\uBE0C \uBE4C\uB4DC \uB514\uB809\uD130\uB9AC +Display\ Name=\uD45C\uC2DC \uC774\uB984 diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_ko.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_ko.properties new file mode 100644 index 0000000000..1bd658bb25 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_ko.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Disable\ Project=\uD504\uB85C\uC81D\uD2B8 \uBE44\uD65C\uC131\uD654 +Project=\uD504\uB85C\uC81D\uD2B8 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_ko.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_ko.properties index 8de75e1658..7cb867b33d 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_ko.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_ko.properties @@ -21,10 +21,11 @@ # THE SOFTWARE. Build=\uBE4C\uB4DC -Build\ Artifacts=\uBE4C\uB4DC \uC0B0\uCD9C\uBB3C +Build\ Artifacts=\uBE4C\uB4DC\uB41C \uC774\uBBF8\uC9C0 Build\ number=\uBE4C\uB4DC \uBC88\uD638 Not\ yet\ determined=\uC544\uC9C1 \uC815\uBCF4 \uC5C6\uC74C Permalinks=\uC601\uAD6C\uB9C1\uD06C Took=\uC18C\uC694 +beingExecuted=\uBE4C\uB4DC\uAC00 \uB2E4\uC74C \uC2DC\uAC04\uB3D9\uC548 \uC2E4\uD589 \uC911: {0} on=on -startedAgo={0} \uC804\uC5D0 \uC2DC\uC791\uB428 +startedAgo={0} \uC804\uC5D0 \uC5C5\uB370\uC774\uB4DC \uB428. diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ko.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ko.properties index c5ae13d1b5..bff32e3091 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ko.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ko.properties @@ -21,8 +21,11 @@ # THE SOFTWARE. Back\ to\ Project=\uD504\uB85C\uC81D\uD2B8\uB85C \uB3CC\uC544\uAC00\uAE30 -Changes=\uBCC0\uACBD\uC0AC\uD56D -Console\ Output=\uCF58\uC194 \uCD9C\uB825\uACB0\uACFC +Changes=\uBC14\uB010\uC810 +Console\ Output=\uCF58\uC194 \uCD9C\uB825 +View\ Build\ Information=\uBE4C\uB4DC \uC815\uBCF4 \uBCF4\uAE30 View\ as\ plain\ text=\uC77C\uBC18 \uD14D\uC2A4\uD2B8\uB85C \uBCF4\uAE30 Edit\ Build\ Information=\uBE4C\uB4DC \uC815\uBCF4 \uC218\uC815 Status=\uC0C1\uD0DC +raw=\uC5F4 + diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_ko.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_ko.properties index 716de2c3e2..16ab8c083f 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/configure-common_ko.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_ko.properties @@ -21,3 +21,6 @@ # THE SOFTWARE. Advanced\ Project\ Options=\uACE0\uAE09 \uD504\uB85C\uC81D\uD2B8 \uC635\uC158 +Display\ Name=\uD45C\uC2DC \uC774\uB984 +JDK\ to\ be\ used\ for\ this\ project=JDK\uAC00 \uC774 \uD504\uB85C\uC81D\uD2B8\uC5D0 \uC0AC\uC6A9\uB420 \uAC83\uC785\uB2C8\uB2E4. +default.value=(\uAE30\uBCF8) diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_ko.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_ko.properties index 89f1bc181f..2c2de1fcbf 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_ko.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_ko.properties @@ -21,4 +21,5 @@ # THE SOFTWARE. Are\ you\ sure\ about\ deleting\ the\ job?=\uC815\uB9D0\uB85C \uC774 \uC791\uC5C5\uC744 \uC0AD\uC81C\uD569\uB2C8\uAE4C? -Yes=\uB124 +Yes=\uC608 +blurb=\uC815\uB9D0 "{1}" \uD504\uB85C\uC81D\uD2B8\uB97C \uC0AD\uC81C \uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C? diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ko.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ko.properties new file mode 100644 index 0000000000..759f87e84c --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ko.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Error:\ no\ workspace=\uC5D0\uB7EC: \uC791\uC5C5\uACF5\uAC04\uC774 \uC5C6\uC2B5\uB2C8\uB2E4. +text=\uC820\uD0A8\uC2A4\uAC00 \uC791\uC5C5\uACF5\uAC04\uC744 \uB9CC\uB4E4\uAE30 \uC704\uD574 \uBE4C\uB4DC\uC2E4\uD589. diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_ko.properties b/core/src/main/resources/hudson/model/AbstractProject/main_ko.properties index 6ac307cce4..5ed1009d99 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_ko.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_ko.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Successful\ Artifacts=\uCD5C\uADFC\uC131\uACF5\uD55C\uACB0\uACFC -Recent\ Changes=\uCD5C\uADFC\uBCC0\uACBD\uC0AC\uD56D\uB4E4 -Workspace=\uC791\uC5C5\uACF5\uAC04 +Last\ Successful\ Artifacts=\uCD5C\uADFC \uC131\uACF5\uD55C \uACB0\uACFC\uBB3C\uB4E4 +Latest\ Test\ Result=\uAC00\uC7A5 \uCD5C\uADFC \uD14C\uC2A4\uD2B8 \uACB0\uACFC +Recent\ Changes=\uCD5C\uADFC \uBCC0\uACBD\uC0AC\uD56D +Workspace=\uC791\uC5C5 \uACF5\uAC04 diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ko.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ko.properties index c4790b7aa0..2dd607537e 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ko.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ko.properties @@ -21,3 +21,5 @@ # THE SOFTWARE. Disable\ Project=\uD504\uB85C\uC81D\uD2B8 \uC911\uC9C0\uD558\uAE30 +Enable=\uD65C\uC131 +This\ project\ is\ currently\ disabled=\uC774 \uD504\uB85C\uC81D\uD2B8\uB294 \uD604\uC7AC \uBE44\uD65C\uC131 \uC0C1\uD0DC\uC785\uB2C8\uB2E4 diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ko.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ko.properties index 1f33be59bc..179555e01b 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ko.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ko.properties @@ -20,11 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\uB300\uC2DC\uBCF4\uB4DC\uB85C \uAC00\uAE30 -Build\ scheduled=\uACC4\uD68D\uB41C \uBE4C\uB4DC -Changes=\uBCC0\uACBD \uC0AC\uD56D -Configure=\uC124\uC815 +Back\ to\ Dashboard=\uB300\uC2DC\uBCF4\uB4DC\uB85C \uB3CC\uC544\uAC00\uAE30 +Build\ scheduled=\uACC4\uD68D\uB41C \uBE4C\uB4DC +Changes=\uBCC0\uACBD\uC0AC\uD56D +Configure=\uAD6C\uC131 Status=\uC0C1\uD0DC -Wipe\ Out\ Workspace=\uC791\uC5C5 \uACF5\uAC04 \uB0A0\uB9AC\uAE30 -Workspace=\uC791\uC5C5 \uACF5\uAC04 -delete=\uC0AD\uC81C {0} +Wipe\ Out\ Workspace=\uC791\uC5C5\uACF5\uAC04 \uCD08\uAE30\uD654 +Workspace=\uC791\uC5C5\uACF5\uAC04 +delete={0} \uC0AD\uC81C +delete.confirm={0} \uC744 \uC0AD\uC81C\uD558\uB294\uAC70\uC5D0 \uB300\uD574 \uB3D9\uC758\uD558\uC2ED\uB2C8\uAE4C? ''{1}'' +wipe.out.confirm=\uC791\uC5C5\uACF5\uAC04\uC744 \uCD08\uAE30\uD654\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C? diff --git a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_ko.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_ko.properties new file mode 100644 index 0000000000..a4867282d1 --- /dev/null +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_ko.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Trigger\ builds\ remotely=\uBE4C\uB4DC\uB97C \uC6D0\uACA9\uC73C\uB85C \uC720\uBC1C +Use\ the\ following\ URL\ to\ trigger\ build\ remotely:=\uB2E4\uC74C URL\uC744 \uC0AC\uC6A9\uD558\uC5EC \uC6D0\uACA9 \uBE4C\uB4DC \uC720\uBC1C: +e.g.,\ from\ scripts=\uC608: \uC2A4\uD06C\uB9BD\uD2B8 \uC0AC\uC6A9 diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_ko.properties b/core/src/main/resources/hudson/model/ComputerSet/index_ko.properties index 19a74ad372..621a5071c8 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_ko.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_ko.properties @@ -21,5 +21,6 @@ # THE SOFTWARE. Configure=\uC124\uC815 +Data\ obtained=\uC218\uC9D1\uB41C \uB370\uC774\uD130 Name=\uC774\uB984 Refresh\ status=\uC0C1\uD0DC \uB2E4\uC2DC \uC77D\uAE30 diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ko.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ko.properties index 38e5062802..3f362cb550 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ko.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ko.properties @@ -21,3 +21,5 @@ # THE SOFTWARE. No\ files\ in\ directory=\uB514\uB809\uD1A0\uB9AC\uC5D0 \uD30C\uC77C\uC774 \uC5C6\uC2B5\uB2C8\uB2E4 +all\ files\ in\ zip=zip \uD30C\uC77C\uB85C \uC555\uCD95 +view=\uBCF4\uAE30 diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_ko.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_ko.properties index 8a3ed187dc..d9b3a8e6d1 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_ko.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_ko.properties @@ -22,7 +22,7 @@ Build=\uBE4C\uB4DC Build\ Time\ Trend=\uBE4C\uB4DC \uC18C\uC694 \uC2DC\uAC04 \uACBD\uD5A5 -Duration=\uC9C0\uC18D\uC2DC\uAC04 +Duration=\uC18C\uC694\uC2DC\uAC04 More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=\uACBD\uD5A5 \uBCF4\uACE0\uC11C\uB294 1\uAC1C \uC774\uC0C1\uC758 \uBE4C\uB4DC\uAC00 \uD544\uC694\uD569\uB2C8\uB2E4. Slave=Slave Timeline=\uD0C0\uC784\uB77C\uC778 diff --git a/core/src/main/resources/hudson/model/Job/configure_ko.properties b/core/src/main/resources/hudson/model/Job/configure_ko.properties index 51fcf1363f..6e4b97f731 100644 --- a/core/src/main/resources/hudson/model/Job/configure_ko.properties +++ b/core/src/main/resources/hudson/model/Job/configure_ko.properties @@ -21,5 +21,8 @@ # THE SOFTWARE. Description=\uC124\uBA85 +Discard\ Old\ Builds=\uC624\uB798\uB41C \uBE4C\uB4DC \uC0AD\uC81C +LOADING=\uBD88\uB7EC\uC624\uB294 \uC911 Save=\uC800\uC7A5 +Strategy=\uC804\uB7B5 name=\uC774\uB984 diff --git a/core/src/main/resources/hudson/model/Job/index_ko.properties b/core/src/main/resources/hudson/model/Job/index_ko.properties new file mode 100644 index 0000000000..eb5c25adad --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Project\ name=\uD504\uB85C\uC81D\uD2B8 \uC774\uB984 diff --git a/core/src/main/resources/hudson/model/Job/permalinks_ko.properties b/core/src/main/resources/hudson/model/Job/permalinks_ko.properties index eb3959a006..2ed1f345ef 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_ko.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Permalinks=\uC8FC\uC694 \uB9C1\uD06C +Permalinks=\uACE0\uC815\uB9C1\uD06C diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_ko.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_ko.properties new file mode 100644 index 0000000000..1bbd4b1aba --- /dev/null +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_ko.properties @@ -0,0 +1,11 @@ +# This file is under the MIT License by authors + +Add\ column=\uCEEC\uB7FC \uCD94\uAC00 +All\ selected\ jobs=\uC120\uD0DD\uD55C \uBAA8\uB4E0 \uC791\uC5C5 +Columns=\uCEEC\uB7FC +Enabled\ jobs\ only=\uC0AC\uC6A9\uAC00\uB2A5\uD55C \uC791\uC5C5 +Job\ Filters=\uC791\uC5C5 \uD544\uD130 +Jobs=\uC791\uC5C5 +Regular\ expression=\uC815\uADDC\uC2DD +Status\ Filter=\uC0C1\uD0DC \uD544\uD130 +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=\uC815\uADDC\uC2DD\uC744 \uC774\uC6A9\uD55C \uC791\uC5C5 \uBAA9\uB85D \uD544\uD130 diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_ko.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_ko.properties index f52b6a00f3..e8137dbca9 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_ko.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_ko.properties @@ -20,8 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Load\ statistics\ graph=\uB85C\uB4DC \uD1B5\uACC4 \uADF8\uB798\uD504 Long=\uAE38\uAC8C Medium=\uC911\uAC04 Short=\uC9E7\uAC8C Timespan=\uC2DC\uAC04\uAC04\uACA9 -title=\uD1B5\uACC4 \uBD88\uB7EC\uC624\uAE30: {0} +title=\uBD80\uD558 \uD1B5\uACC4 : {0} diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_ko.properties b/core/src/main/resources/hudson/model/ParametersAction/index_ko.properties new file mode 100644 index 0000000000..99b7730f57 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersAction/index_ko.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build=\uBE4C\uB4DC +Parameters=\uB9E4\uAC1C\uBCC0\uC218 diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_ko.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_ko.properties new file mode 100644 index 0000000000..daaae005f8 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_ko.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Add\ Parameter=\uB9E4\uAC1C\uBCC0\uC218 \uCD94\uAC00 +This\ build\ is\ parameterized=\uC774 \uBE4C\uB4DC\uB294 \uB9E4\uAC1C\uBCC0\uC218\uAC00 \uC788\uC2B5\uB2C8\uB2E4 diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_ko.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_ko.properties new file mode 100644 index 0000000000..72507e922d --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Keep\ this\ build\ forever=\uC774 \uBE4C\uB4DC\uB97C \uC601\uAD6C \uBCF4\uC874 diff --git a/core/src/main/resources/hudson/model/Run/console_ko.properties b/core/src/main/resources/hudson/model/Run/console_ko.properties index 40e8fc0728..7724f523a6 100644 --- a/core/src/main/resources/hudson/model/Run/console_ko.properties +++ b/core/src/main/resources/hudson/model/Run/console_ko.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Console\ Output=\uCF58\uC194 \uCD9C\uB825 +skipSome=\uAC74\uB108 \uB6F0\uAE30 {0,number,integer} KB.. Full Log diff --git a/core/src/main/resources/hudson/model/Run/logKeep_ko.properties b/core/src/main/resources/hudson/model/Run/logKeep_ko.properties new file mode 100644 index 0000000000..92d4d84e62 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/logKeep_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Keep\ this\ build\ forever=\uC774\uBC88 \uBE4C\uB4DC \uC601\uAD6C \uBCF4\uAD00\uD558\uAE30 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ko.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ko.properties new file mode 100644 index 0000000000..a0f3471333 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Installing=\uC124\uCE58\uC911 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ko.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ko.properties new file mode 100644 index 0000000000..32771e23ce --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Success=\uC131\uACF5 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_ko.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_ko.properties index 5a2ea98f56..54056172f8 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_ko.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_ko.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Go\ back\ to\ the\ top\ page=\uBA54\uC778 \uD398\uC774\uC9C0\uB85C \uB3CC\uC544\uAC00\uAE30 warning=\uC124\uCE58\uAC00 \uB05D\uB098\uACE0 \uC2E4\uD589\uC911\uC778 \uC791\uC5C5\uC774 \uC5C6\uC73C\uBA74 Jenkins \uC7AC\uC2DC\uC791. +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=\uC124\uCE58\uB41C \uD50C\uB7EC\uADF8\uC778\uC744 \uBC14\uB85C \uC0AC\uC6A9\uD558\uC2E4 \uC218 \uC788\uC2B5\uB2C8\uB2E4. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ko.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ko.properties index 2493a460bb..38d66ae7b4 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ko.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ko.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\uB300\uC2DC\uBCF4\uB4DC\uB85C +Back\ to\ Dashboard=\uB300\uC2DC\uBCF4\uB4DC\uB85C \uC774\uB3D9 Manage\ Jenkins=Jenkins \uAD00\uB9AC Manage\ Plugins=\uD50C\uB7EC\uADF8\uC778 \uAD00\uB9AC diff --git a/core/src/main/resources/hudson/model/User/builds_ko.properties b/core/src/main/resources/hudson/model/User/builds_ko.properties new file mode 100644 index 0000000000..2c33002c12 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/builds_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title={0}\uC758 \uBE4C\uB4DC \uAE30\uB85D diff --git a/core/src/main/resources/hudson/model/User/configure_ko.properties b/core/src/main/resources/hudson/model/User/configure_ko.properties new file mode 100644 index 0000000000..beb314d8ae --- /dev/null +++ b/core/src/main/resources/hudson/model/User/configure_ko.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Description=\uC18C\uAC1C +Your\ name=\uC774\uB984 diff --git a/core/src/main/resources/hudson/model/User/index_ko.properties b/core/src/main/resources/hudson/model/User/index_ko.properties new file mode 100644 index 0000000000..fd4b856322 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ User\ Id=Jenkins \uC0AC\uC6A9\uC790 Id diff --git a/core/src/main/resources/hudson/model/User/sidepanel_ko.properties b/core/src/main/resources/hudson/model/User/sidepanel_ko.properties new file mode 100644 index 0000000000..5e20104125 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/sidepanel_ko.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Builds=\uBE4C\uB4DC +Configure=\uC124\uC815 +Delete=\uC0AD\uC81C +My\ Views=\uB0B4 \uAE30\uB85D +People=\uC0AC\uC6A9\uC790 +Status=\uC0C1\uD0DC diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_ko.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_ko.properties index f9a365890f..c36e71e58a 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_ko.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_ko.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Active=\uCD5C\uC885 \uC791\uC5C5 +Last\ Active=\uB9C8\uC9C0\uB9C9 \uD65C\uB3D9\uC0AC\uD56D Name=\uC774\uB984 On=\uC811\uC18D \uC911 -People=\uAC1C\uBC1C\uC790 -User\ Id=ID +People=\uC0AC\uC6A9\uC790 +User\ Id= diff --git a/core/src/main/resources/hudson/model/View/configure_ko.properties b/core/src/main/resources/hudson/model/View/configure_ko.properties new file mode 100644 index 0000000000..8bf2f923c3 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/configure_ko.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Description=\uC124\uBA85 +Name=\uC774\uB984 +OK=\uD655\uC778 diff --git a/core/src/main/resources/hudson/model/View/sidepanel_ko.properties b/core/src/main/resources/hudson/model/View/sidepanel_ko.properties index 8073aa93db..db5f30b460 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_ko.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_ko.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Edit\ View=\uBDF0 \uD3B8\uC9D1 +Edit\ View=\uBCF4\uAE30 \uC218\uC815 NewJob=\uC0C8\uB85C\uC6B4 {0} -Check\ File\ Fingerprint=\uD30C\uC77C \uD551\uAC70\uD504\uB9B0\uD2B8 \uCCB4\uD06C -Delete\ View=\uBCF4\uAE30 \uC0AD\uC81C -People=\uC0AC\uC6A9\uC790 +Check\ File\ Fingerprint=\uD30C\uC77C \uD551\uAC70\uD504\uB9B0\uD2B8 \uD655\uC778 +Delete\ View=\uBDF0 \uC0AD\uC81C +People=\uC0AC\uB78C Build\ History=\uBE4C\uB4DC \uAE30\uB85D Project\ Relationship=\uD504\uB85C\uC81D\uD2B8 \uC5F0\uAD00 \uAD00\uACC4 diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_ko.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_ko.properties index 70ffa6c796..277288f21b 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_ko.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_ko.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ changes\ in\ any\ of\ the\ builds.=\uC5B4\uB5A4 \uBE4C\uB4DC\uC5D0\uB3C4 \uBCC0\uACBD \uC0AC\uD56D\uC774 \uC5C6\uC2B5\uB2C8\uB2E4. +No\ changes\ in\ any\ of\ the\ builds.=\uBAA8\uB4E0 \uBE4C\uB4DC\uC5D0 \uBCC0\uACBD \uC0AC\uD56D\uC774 \uC5C6\uC2B5\uB2C8\uB2E4 +detail=\uC138\uBD80\uC0AC\uD56D diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_ko.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_ko.properties new file mode 100644 index 0000000000..030725fbd7 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Allow\ users\ to\ sign\ up=\uC0AC\uC6A9\uC790\uC758 \uAC00\uC785 \uD5C8\uC6A9 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_ko.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_ko.properties index 16062b88d9..a115fcda02 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_ko.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_ko.properties @@ -21,4 +21,6 @@ # THE SOFTWARE. Name=\uc774\ub984 -blurb=\uc774 \uc0ac\uc6a9\uc790\ub4e4\uc740 Jenkins\uc5d0 \ub85c\uadf8\uc778\ud560 \uc218 \uc788\uc74c. \uc5b4\ub5a4 \ud504\ub85c\uc81d\ud2b8\uc5d0\uc11c \uc5b4\ub5a4 \uc801\uc6a9\uc744 \ub9c9 \ub9cc\ub4e4\uc5b4 \ub0b4\uace0 Jenkins\uc5d0 \uc811\uadfc\ud558\uc9c0 \uc54a\uc740 \uc790\ub3d9 \uc0dd\uc131\ub41c \uc0ac\uc6a9\uc790\ub3c4 \ud3ec\ud568\ud55c \ubaa9\ub85d\uc784. +User\ Id=\uC0AC\uC6A9\uC790 ID +Users=\uC0AC\uC6A9\uC790 +blurb=\uC774 \uC0AC\uC6A9\uC790\uB4E4\uC740 Jenkins \uC5D0 \uB85C\uADF8\uC778 \uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4. \uC774 \uC0AC\uC6A9\uC790\uB4E4\uC740 \uAC1C\uBC1C\uC790 \uBAA9\uB85D\uC758 \uC77C\uBD80\uC785\uB2C8\uB2E4. \uAC1C\uBC1C\uC790 \uBAA9\uB85D\uC740 \uB2E8\uC9C0 \uCEE4\uBC0B\uB9CC \uD558\uACE0 \uC9C1\uC811 Jenkins \uC5D0 \uC811\uC18D\uD558\uC9C0 \uC54A\uC740 \uC790\uB3D9 \uC0DD\uC131\uB41C \uC0AC\uB78C\uB4E4\uC744 \uD3EC\uD568\uD569\uB2C8\uB2E4. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_ko.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_ko.properties new file mode 100644 index 0000000000..de018185d8 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_ko.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Success=\uC131\uACF5 +description=\uD604\uC7AC \uB85C\uADF8\uC778\uB418\uC5B4 \uC788\uC2B5\uB2C8\uB2E4. \uCCAB\uD398\uC774\uC9C0\uB85C \uB3CC\uC544\uAC00\uC2DC\uC2ED\uC624. diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_ko.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_ko.properties new file mode 100644 index 0000000000..94f99da7d6 --- /dev/null +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_ko.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Unprotected\ URLs=\uBCF4\uD638\uB418\uC9C0 \uC54A\uC740 URL\uB4E4 +blurb=\uC774 URL(\uADF8\uB9AC\uACE0 \uC774 \uCCA8\uB450\uBB38\uC790\uC640 /\uB85C \uC2DC\uC791\uD558\uB294 URL)\uB4E4\uC740 \uC778\uC99D\uC744 \uC694\uAD6C\uD558\uC9C0 \uC54A\uC544\uC57C\uD569\uB2C8\uB2E4. \uAC00\uB2A5\uD558\uB2E4\uBA74, \uB85C\uADF8\uC778\uC744 \uC694\uCCAD\uC5C6\uC774 \uC774 \uC694\uCCAD\uB4E4\uC744 \uCEE8\uD14C\uC774\uB108\uAC00 Jenkins\uC5D0\uAC8C \uBC14\uB85C \uC804\uB2EC\uD558\uB3C4\uB85D \uC124\uC815\uD558\uC2ED\uC2DC\uC694. diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ko.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ko.properties new file mode 100644 index 0000000000..328e56c2d4 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_ko.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_ko.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_ko.properties new file mode 100644 index 0000000000..ffaf642a42 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_ko.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Days\ to\ keep\ artifacts=\uC0B0\uCD9C\uBB3C \uBCF4\uAD00 \uC77C\uC218 +Days\ to\ keep\ builds=\uBE4C\uB4DC \uC774\uB825 \uC720\uC9C0 \uAE30\uAC04(\uC77C) +Max\ #\ of\ builds\ to\ keep=\uBCF4\uAD00\uD560 \uCD5C\uB300\uAC2F\uC218 +if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=\uACF5\uBC31\uC77C \uACBD\uC6B0, [\uBCF4\uAD00\uD560 \uCD5C\uB300\uAC2F\uC218] \uB9CC\uD07C \uAE30\uB85D\uB429\uB2C8\uB2E4. diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_ko.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_ko.properties new file mode 100644 index 0000000000..0fcb3ff96c --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_ko.properties @@ -0,0 +1,10 @@ +# This file is under the MIT License by authors + +All\ Failed\ Tests=\uC2E4\uD328\uD55C \uBAA8\uB4E0 \uD14C\uC2A4\uD2B8 +All\ Tests=\uBAA8\uB4E0 \uD14C\uC2A4\uD2B8 +Duration=\uC2E4\uD589\uC2DC\uAC04 +Fail=\uC2E4\uD328 +Skip=\uAC74\uB108\uB700 +Test\ Name=\uD14C\uC2A4\uD2B8 \uBA85 +Total=\uCD1D +diff=\uBE44\uAD50 diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_ko.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_ko.properties new file mode 100644 index 0000000000..e5dc694bf8 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_ko.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +History=\uB0B4\uC5ED +Next\ Build=\uB2E4\uC74C \uBE4C\uB4DC +Previous\ Build=\uC774\uC804 \uB0B4\uC5ED diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_ko.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_ko.properties new file mode 100644 index 0000000000..b3b4c3cd6e --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_ko.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Test\ Result\ Trend=\uD14C\uC2A4\uD2B8 \uACB0\uACFC \uD604\uD669 +enlarge=\uD06C\uAC8C\uBCF4\uAE30 +just\ show\ failures=\uC2E4\uD328\uD55C \uD14C\uC2A4\uD2B8\uB9CC \uBCF4\uAE30 diff --git a/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_ko.properties b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_ko.properties new file mode 100644 index 0000000000..dec66c1e56 --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_ko.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Home=\uD648 +List\ of\ tool\ locations=\uD234 \uACBD\uB85C\uB4E4\uC758 \uBAA9\uB85D +Name=\uC774\uB984 diff --git a/core/src/main/resources/hudson/util/HudsonIsLoading/index_ko.properties b/core/src/main/resources/hudson/util/HudsonIsLoading/index_ko.properties new file mode 100644 index 0000000000..429a48cff9 --- /dev/null +++ b/core/src/main/resources/hudson/util/HudsonIsLoading/index_ko.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Please\ wait\ while\ Jenkins\ is\ getting\ ready\ to\ work=Jenkins\uAC00 \uC900\uBE44 \uB420 \uB54C\uAE4C\uC9C0 \uAE30\uB2E4\uB824\uC8FC\uC138\uC694. +Your\ browser\ will\ reload\ automatically\ when\ Jenkins\ is\ ready.=Jenkins\uAC00 \uC900\uBE44 \uB418\uBA74 \uC790\uB3D9 \uB9AC\uB85C\uB529 \uD569\uB2C8\uB2E4. diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ko.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_ko.properties index 46899bbff7..46e31d22c5 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ko.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_ko.properties @@ -20,4 +20,5 @@ # 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 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ko.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ko.properties index 2ccb0250bf..c0f0d45f54 100644 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ko.properties +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -New\ View=\uC0C8 \uBDF0 +New\ View=\uC0C8 \uBCF4\uAE30 diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ko.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ko.properties index 2c555fd3a2..b30ef52a22 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ko.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=\uB9C8\uC9C0\uB9C9 \uBE4C\uB4DC \uC0C1\uD0DC +Status\ of\ the\ last\ build=\uCD5C\uADFC \uBE4C\uB4DC \uC0C1\uD0DC diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ko.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ko.properties index b305a7fc2b..3801a9bd62 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ko.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ko.properties @@ -20,4 +20,4 @@ # 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=\uB0A0\uC528 \uB9AC\uD3EC\uD2B8\uB294 \uCD5C\uADFC \uBE4C\uB4DC\uB4E4\uC758 \uC0C1\uD0DC\uB97C \uCDE8\uD569\uD558\uC5EC \uBCF4\uC5EC\uC90D\uB2C8\uB2E4. +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\uB0A0\uC528 \uBCF4\uACE0\uC11C\uB294 \uCD5C\uADFC \uBE4C\uB4DC\uB4E4\uC758 \uC0C1\uD0DC\uB97C \uCDE8\uD569\uD558\uC5EC \uBCF4\uC5EC\uC90D\uB2C8\uB2E4. diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_ko.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_ko.properties new file mode 100644 index 0000000000..53a941f547 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_ko.properties @@ -0,0 +1,4 @@ +# 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/HistoryWidget/index_ko.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_ko.properties index c8bacc1a13..16afbdac35 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_ko.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_ko.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. More\ ...=\uB354\uBCF4\uAE30... -for\ all=\uBAA8\uB4E0 \uAC83\uC5D0 \uB300\uD574 -for\ failures=\uC2E4\uD328\uC5D0 \uB300\uD574 -trend=\uD1B5\uACC4 +for\ all=(\uC804\uCCB4) +for\ failures=(\uC2E4\uD328) +trend=\uCD94\uC774 diff --git a/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_ko.properties b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_ko.properties new file mode 100644 index 0000000000..02d6a301f5 --- /dev/null +++ b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Setup\ Security=\uBCF4\uC548 \uC124\uC815 diff --git a/core/src/main/resources/jenkins/management/PluginsLink/info_ko.properties b/core/src/main/resources/jenkins/management/PluginsLink/info_ko.properties new file mode 100644 index 0000000000..c3bda1d572 --- /dev/null +++ b/core/src/main/resources/jenkins/management/PluginsLink/info_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +updates\ available=\uC5C5\uB370\uC774\uD2B8 \uAC00\uB2A5\uD568 diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ko.properties new file mode 100644 index 0000000000..97f282aca2 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_ko.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Labels=\uB77C\uBCA8 +Save=\uC800\uC7A5 diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_ko.properties new file mode 100644 index 0000000000..0a3081fdd1 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_ko.properties @@ -0,0 +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: diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_ko.properties index bc34866980..24c477b6ac 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_ko.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_ko.properties @@ -20,5 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Build\ Record\ Root\ Directory=\uBE4C\uB4DC \uAE30\uB85D \uCD5C\uC0C1\uC704 \uB514\uB809\uD1A0\uB9AC Home\ directory=\uD648 \uB514\uB809\uD130\uB9AC +LOADING=\uBD88\uB7EC\uC624\uB294\uC911 Save=\uC800\uC7A5 +System\ Message=\uC2DC\uC2A4\uD15C \uBA54\uC138\uC9C0 +Workspace\ Root\ Directory=\uC791\uC5C5\uACF5\uAC04 \uCD5C\uC0C1\uC704 \uB514\uB809\uD1A0\uB9AC diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_ko.properties new file mode 100644 index 0000000000..0bb43edd87 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_ko.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Restore\ the\ previous\ version\ of\ Jenkins=\uC774\uC804 \uBC84\uC804\uC758 Jenkins \uB85C \uBCF5\uC6D0 +buttonText={0}\uB85C \uB2E4\uC6B4\uADF8\uB808\uC774\uB4DC diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ko.properties new file mode 100644 index 0000000000..d79e17e422 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_ko.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Check=\uD655\uC778\uD558\uAE30 +Check\ File\ Fingerprint=\uD30C\uC77C \uC9C0\uBB38\uC744 \uD655\uC778\uD569\uB2C8\uB2E4 +File\ to\ check=\uD655\uC778\uD560 \uD30C\uC77C +description=jar\uD30C\uC77C\uC744 \uAC00\uC9C0\uACE0 \uC788\uC9C0\uB9CC \uC5B4\uB5A4 \uBC84\uC804\uC778\uC9C0 \uBAA8\uB974\uC2DC\uB098\uC694
Jenkins\uC5D0 \uB370\uC774\uD130\uBCA0\uC774\uC2A4\uC5D0 \uB300\uD55C \uC9C0\uBB38\uC744 \uD655\uC778\uD558\uB294 \uAC83\uC73C\uB85C \uBC84\uC804\uC744 \uCC3E\uC544\uBCF4\uC138\uC694 +more\ details=\uB354 \uC790\uC138\uD788 diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_ko.properties index 4141e036c1..699b262351 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_ko.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_ko.properties @@ -25,10 +25,15 @@ blue_anime=\uB9C8\uC9C0\uB9C9 \uBE4C\uB4DC\uAC00 \uC131\uACF5\uD568. \uC2E0\uADD grey=\uD504\uB85C\uC81D\uD2B8\uAC00 \uBE4C\uB4DC\uB41C \uC801\uC774 \uC5C6\uAC70\uB098, \uC0AC\uC6A9\uBD88\uAC00\uC784. grey_anime=\uD504\uB85C\uC81D\uD2B8\uC758 \uCD5C\uCD08 \uBE4C\uB4DC\uAC00 \uC9C4\uD589 \uC911\uC784. health-00to19=\uD504\uB85C\uC81D\uD2B8 \uAC74\uAC15\uC0C1\uD0DC\uAC00 \uC801\uC5B4\uB3C4 20% \uBBF8\uB9CC \uC784. \uC880 \uB354 \uC790\uC138\uD55C \uC124\uBA85\uC744 \uC704\uD574\uC11C \uD504\uB85C\uC81D\uD2B8 \uC544\uC774\uCF58 \uC704\uC5D0 \uB9C8\uC6B0\uC2A4\uB97C \uC704\uCE58\uC2DC\uD0AC \uC218 \uC788\uC74C +health-00to20=\uD504\uB85C\uC81D\uD2B8 \uAC74\uAC15\uC0C1\uD0DC\uAC00 20% \uC774\uD558\uC784. \uB9C8\uC6B0\uC2A4\uB97C \uD504\uB85C\uC81D\uD2B8 \uC544\uC774\uCF58\uC5D0 \uC62C\uB824\uB193\uC73C\uBA74 \uB354 \uC790\uC138\uD55C \uC124\uBA85\uC744 \uBCFC \uC218 \uC788\uC2B5\uB2C8\uB2E4. health-20to39=\uD504\uB85C\uC81D\uD2B8 \uAC74\uAC15\uC0C1\uD0DC\uAC00 \uC801\uC5B4\uB3C4 20% \uC774\uC0C1 40% \uBBF8\uB9CC \uC784. \uC880 \uB354 \uC790\uC138\uD55C \uC124\uBA85\uC744 \uC704\uD574\uC11C \uD504\uB85C\uC81D\uD2B8 \uC544\uC774\uCF58 \uC704\uC5D0 \uB9C8\uC6B0\uC2A4\uB97C \uC704\uCE58\uC2DC\uD0AC \uC218 \uC788\uC74C +health-21to40=\uD504\uB85C\uC81D\uD2B8 \uAC74\uAC15\uC0C1\uD0DC\uAC00 20% \uCD08\uACFC 40% \uC774\uD558\uC784. \uB9C8\uC6B0\uC2A4\uB97C \uD504\uB85C\uC81D\uD2B8 \uC544\uC774\uCF58\uC5D0 \uC62C\uB824\uB193\uC73C\uBA74 \uB354 \uC790\uC138\uD55C \uC124\uBA85\uC744 \uBCFC \uC218 \uC788\uC2B5\uB2C8\uB2E4. health-40to59=\uD504\uB85C\uC81D\uD2B8 \uAC74\uAC15\uC0C1\uD0DC\uAC00 \uC801\uC5B4\uB3C4 40% \uC774\uC0C1 60% \uBBF8\uB9CC \uC784. \uC880 \uB354 \uC790\uC138\uD55C \uC124\uBA85\uC744 \uC704\uD574\uC11C \uD504\uB85C\uC81D\uD2B8 \uC544\uC774\uCF58 \uC704\uC5D0 \uB9C8\uC6B0\uC2A4\uB97C \uC704\uCE58\uC2DC\uD0AC \uC218 \uC788\uC74C +health-41to60=\uD504\uB85C\uC81D\uD2B8 \uAC74\uAC15\uC0C1\uD0DC\uAC00 40% \uCD08\uACFC 60% \uC774\uD558\uC784. \uB9C8\uC6B0\uC2A4\uB97C \uD504\uB85C\uC81D\uD2B8 \uC544\uC774\uCF58\uC5D0 \uC62C\uB824\uB193\uC73C\uBA74 \uB354 \uC790\uC138\uD55C \uC124\uBA85\uC744 \uBCFC \uC218 \uC788\uC2B5\uB2C8\uB2E4. health-60to79=\uD504\uB85C\uC81D\uD2B8 \uAC74\uAC15\uC0C1\uD0DC\uAC00 \uC801\uC5B4\uB3C4 60% \uC774\uC0C1 80% \uBBF8\uB9CC \uC784. \uC880 \uB354 \uC790\uC138\uD55C \uC124\uBA85\uC744 \uC704\uD574\uC11C \uD504\uB85C\uC81D\uD2B8 \uC544\uC774\uCF58 \uC704\uC5D0 \uB9C8\uC6B0\uC2A4\uB97C \uC704\uCE58\uC2DC\uD0AC \uC218 \uC788\uC74C +health-61to80=\uD504\uB85C\uC81D\uD2B8 \uAC74\uAC15\uC0C1\uD0DC\uAC00 60% \uCD08\uACFC\uC784. \uB9C8\uC6B0\uC2A4\uB97C \uD504\uB85C\uC81D\uD2B8 \uC544\uC774\uCF58\uC5D0 \uC62C\uB824\uB193\uC73C\uBA74 \uB354 \uC790\uC138\uD55C \uC124\uBA85\uC744 \uBCFC \uC218 \uC788\uC2B5\uB2C8\uB2E4. health-80plus=\uD504\uB85C\uC81D\uD2B8 \uAC74\uAC15\uC0C1\uD0DC\uAC00 \uC801\uC5B4\uB3C4 80%\uC784. \uC880 \uB354 \uC790\uC138\uD55C \uC124\uBA85\uC744 \uC704\uD574\uC11C \uD504\uB85C\uC81D\uD2B8 \uC544\uC774\uCF58 \uC704\uC5D0 \uB9C8\uC6B0\uC2A4\uB97C \uC704\uCE58\uC2DC\uD0AC \uC218 \uC788\uC74C +health-81plus=\uD504\uB85C\uC81D\uD2B8 \uAC74\uAC15\uC0C1\uD0DC\uAC00 28% \uCD08\uACFC\uC784. \uB9C8\uC6B0\uC2A4\uB97C \uD504\uB85C\uC81D\uD2B8 \uC544\uC774\uCF58\uC5D0 \uC62C\uB824\uB193\uC73C\uBA74 \uB354 \uC790\uC138\uD55C \uC124\uBA85\uC744 \uBCFC \uC218 \uC788\uC2B5\uB2C8\uB2E4. red=\uB9C8\uC9C0\uB9C9 \uBE4C\uB4DC\uAC00 \uC2EC\uAC01\uD558\uAC8C \uC2E4\uD328\uD568. red_anime=\uB9C8\uC9C0\uB9C9 \uBE4C\uB4DC\uAC00 \uC2EC\uAC01\uD558\uAC8C \uC2E4\uD328\uD568. \uC2E0\uADDC \uBE4C\uB4DC\uAC00 \uC9C4\uD589 \uC911\uC784. yellow=\uB9C8\uC9C0\uB9C9 \uBE4C\uB4DC\uAC00 \uC131\uACF5\uD588\uC9C0\uB9CC \uBD88\uC548\uC815\uD568. \uC8FC\uB85C \uB0A8\uC544\uC788\uB358 \uAC80\uC99D \uC2E4\uD328\uB97C \uC0AC\uC6A9\uD55C \uAC83\uC784. diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_ko.properties index 7dd6cb5e0f..6fb7fed59b 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/loginError_ko.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_ko.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=\uAD00\uB9AC\uC790\uB294 \uC124\uC815\uC5D0 \uBB38\uC81C\uAC00 \uC788\uC744 \uACBD\uC6B0 \uC11C\uBC84 \uCF58\uC194\uC744 \uD1B5\uD574 \uC790\uC138\uD55C \uC815\uBCF4\uB97C \uD655\uC778\uD558\uC2ED\uC2DC\uC624. Invalid\ login\ information.\ Please\ try\ again.=\uB85C\uADF8\uC778 \uC815\uBCF4\uAC00 \uD2C0\uB9BD\uB2C8\uB2E4. \uC7AC\uC2DC\uB3C4\uD574 \uC8FC\uC138\uC694 Try\ again=\uC7AC\uC2DC\uB3C4 diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_ko.properties index 44b1bf18fb..078b20a03a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_ko.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_ko.properties @@ -20,4 +20,17 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Jenkins\uC758 Job\uB4E4\uC774 \uC2E4\uD589\uB418\uB294 \uB2E4\uC591\uD55C \uB178\uB4DC\uB4E4 \uCD94\uAC00, \uC81C\uAC70, \uC81C\uC5B4 \uBC0F \uBAA8\uB2C8\uD130\uB9C1 +Cancel\ Shutdown=\uB044\uAE30 \uCDE8\uC18C +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=\uBA54\uBAA8\uB9AC\uC5D0 \uB85C\uB4DC\uB41C \uBAA8\uB4E0 \uB370\uC774\uD130\uB97C \uD3D0\uAE30\uD558\uACE0, \uD30C\uC77C\uC2DC\uC2A4\uD15C\uC5D0\uC11C \uBAA8\uB4E0 \uB370\uC774\uD130\uB97C \uB9AC\uB85C\uB4DC\uD55C\uB2E4. +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=\uAD00\uB9AC/\uBB38\uC81C\uD574\uACB0/\uC9C4\uB2E8\uC744 \uC704\uD55C \uC784\uC758\uC758 \uC2A4\uD06C\uB9BD\uD2B8\uB97C \uC2E4\uD589\uD569\uB2C8\uB2E4. +Jenkins\ CLI=Jenkins CLI ( Command Line Interface ) +JenkinsCliText=\uC9C1\uC811 \uC791\uC131\uD55C \uC258, \uC2A4\uD06C\uB9BD\uD2B8\uB85C Jenkins \uC811\uADFC/\uAD00\uB9AC Manage\ Jenkins=Jenkins \uAD00\uB9AC +Prepare\ for\ Shutdown=\uB044\uAE30 \uC804 \uC900\uBE44 +Reload\ Configuration\ from\ Disk=\uB514\uC2A4\uD06C\uC5D0\uC11C \uC124\uC815\uC744 \uB2E4\uC2DC \uB85C\uB4DC +Script\ Console=\uC2A4\uD06C\uB9BD\uD2B8 \uCF58\uC194 +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=\uC0C8\uB85C\uC6B4 \uBE4C\uB4DC +SystemLogText=java.util.loggin\uC5D0\uC11C \uCD9C\uB825\uB41C \uC820\uD0A8\uC2A4\uC640 \uB87C\uACAC\uB41C \uC2DC\uC2A4\uD15C \uB85C\uADF8 +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=\uB514\uC2A4\uD06C\uC758 \uD30C\uC77C\uC744 \uC9C1\uC811 \uBCC0\uACBD\uD588\uC744 \uB54C \uC720\uC6A9\uD569\uB2C8\uB2E4. +are.you.sure=\uD655\uC2E4 \uD569\uB2C8\uAE4C? diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ko.properties index 36cfd25411..ca302f6157 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ko.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ko.properties @@ -20,5 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Enabled=\uD65C\uC131\uD654 Environment\ Variables=\uD658\uACBD \uBCC0\uC218 -System\ Properties=\uC2DC\uC2A4\uD15C \uD504\uB85C\uD37C\uD2F0 +Name=\uC774\uB984 +Pinned=\uACE0\uC815 +Plugins=\uD50C\uB7EC\uADF8\uC778 +System\ Properties=\uC2DC\uC2A4\uD15C \uC18D\uC131 +Version=\uBC84\uC804 diff --git a/core/src/main/resources/lib/form/apply_ko.properties b/core/src/main/resources/lib/form/apply_ko.properties new file mode 100644 index 0000000000..25b121945a --- /dev/null +++ b/core/src/main/resources/lib/form/apply_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Apply=\uC801\uC6A9 diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_ko.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_ko.properties new file mode 100644 index 0000000000..1ccf4fdead --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=\uD658\uACBD\uC124\uC815 diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_ko.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_ko.properties new file mode 100644 index 0000000000..0bbe35a0b2 --- /dev/null +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete=\uC0AD\uC81C diff --git a/core/src/main/resources/lib/form/repeatable_ko.properties b/core/src/main/resources/lib/form/repeatable_ko.properties new file mode 100644 index 0000000000..90bb0b349c --- /dev/null +++ b/core/src/main/resources/lib/form/repeatable_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Add=\uCD94\uAC00 diff --git a/core/src/main/resources/lib/form/textarea_ko.properties b/core/src/main/resources/lib/form/textarea_ko.properties new file mode 100644 index 0000000000..9699247755 --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_ko.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=\uBBF8\uB9AC\uBCF4\uAE30 \uC228\uAE30\uAE30 +Preview=\uBBF8\uB9AC\uBCF4\uAE30 diff --git a/core/src/main/resources/lib/hudson/buildCaption_ko.properties b/core/src/main/resources/lib/hudson/buildCaption_ko.properties index 314b110dee..aa099b25ed 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_ko.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_ko.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Progress=\uC9C4\uD589 \uD604\uD669 +Progress=\uC9C4\uD589 cancel=\uCDE8\uC18C diff --git a/core/src/main/resources/lib/hudson/buildListTable_ko.properties b/core/src/main/resources/lib/hudson/buildListTable_ko.properties index 31b09bdf9e..a2c51011b4 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_ko.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_ko.properties @@ -21,6 +21,7 @@ # THE SOFTWARE. Build=\uBE4C\uB4DC +Click\ to\ center\ timeline\ on\ event=\uD074\uB9AD \uC2DC \uD574\uB2F9 \uC774\uBCA4\uD2B8\uC758 \uD0C0\uC784\uB77C\uC778\uC744 \uBCF4\uC5EC\uC90D\uB2C8\uB2E4. Console\ output=\uCF58\uC194 \uCD9C\uB825 -Time\ Since=\uB0A0\uC790 +Time\ Since=\uACBD\uACFC\uC2DC\uAC04 Status=\uC0C1\uD0DC diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_ko.properties b/core/src/main/resources/lib/hudson/buildProgressBar_ko.properties index 1f55ea1644..d1cc19cd4e 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_ko.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_ko.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=\uC9C4\uD589 \uC2DC\uAC04: {0}
\uB0A8\uC740 \uC2DC\uAC04: {1} +text="{0} \uC804\uC5D0 \uC2DC\uC791 +\uC608\uC0C1 \uC794\uC5EC \uC2DC\uAC04: {1}" diff --git a/core/src/main/resources/lib/hudson/editableDescription_ko.properties b/core/src/main/resources/lib/hudson/editableDescription_ko.properties index 1f082c0fba..270f4ce985 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_ko.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_ko.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=\uC18C\uAC1C \uB0B4\uC6A9 \uC785\uB825 +add\ description=\uC0C1\uC138 \uB0B4\uC6A9 \uC785\uB825 edit\ description=\uB0B4\uC6A9 \uC218\uC815 diff --git a/core/src/main/resources/lib/hudson/listScmBrowsers_ko.properties b/core/src/main/resources/lib/hudson/listScmBrowsers_ko.properties new file mode 100644 index 0000000000..73d77fd6b9 --- /dev/null +++ b/core/src/main/resources/lib/hudson/listScmBrowsers_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Auto=\uC790\uB3D9 diff --git a/core/src/main/resources/lib/hudson/node_ko.properties b/core/src/main/resources/lib/hudson/node_ko.properties new file mode 100644 index 0000000000..4754bdb4f5 --- /dev/null +++ b/core/src/main/resources/lib/hudson/node_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +master=\uB9C8\uC2A4\uD130 diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_ko.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_ko.properties new file mode 100644 index 0000000000..ad1923dcf3 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Block\ build\ when\ downstream\ project\ is\ building=\uB2E4\uC6B4\uC2A4\uD2B8\uB9BC \uD504\uB85C\uC81D\uD2B8\uAC00 \uBE4C\uB4DC\uD558\uB294 \uB3D9\uC548 \uBE4C\uB4DC \uBA48\uCDA4 diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_ko.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_ko.properties new file mode 100644 index 0000000000..7ca6348c22 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Block\ build\ when\ upstream\ project\ is\ building=\uC5C5\uC2A4\uD2B8\uB9BC \uD504\uB85C\uC81D\uD2B8\uAC00 \uBE4C\uB4DC\uD558\uB294 \uB3D9\uC548 \uBE4C\uB4DC \uBA48\uCDA4 diff --git a/core/src/main/resources/lib/hudson/project/config-buildWrappers_ko.properties b/core/src/main/resources/lib/hudson/project/config-buildWrappers_ko.properties new file mode 100644 index 0000000000..bc78b489ac --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-buildWrappers_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Build\ Environment=\uBE4C\uB4DC \uD658\uACBD diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_ko.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_ko.properties new file mode 100644 index 0000000000..57ae1adf7d --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title.concurrentbuilds=\uD544\uC694\uD55C \uACBD\uC6B0 concurrent \uBE4C\uB4DC \uC2E4\uD589 diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_ko.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_ko.properties new file mode 100644 index 0000000000..29c22b11b5 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_ko.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Add\ post-build\ action=\uBE4C\uB4DC \uD6C4 \uC870\uCE58 \uCD94\uAC00 +Post-build\ Actions=\uBE4C\uB4DC \uD6C4 \uC870\uCE58 diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_ko.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_ko.properties new file mode 100644 index 0000000000..51446a3d98 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Number\ of\ seconds=\uCD08 diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_ko.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_ko.properties index 22f3c3d192..bcc9f3d8b2 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_ko.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_ko.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Retry\ Count=\uC7AC\uC2DC\uB3C4 \uD69F\uC218 SCM\ checkout\ retry\ count=\uC18C\uC2A4\uCF54\uB4DC \uD615\uC0C1\uAD00\uB9AC \uCCB4\uD06C\uC544\uC6C3 \uBC18\uBCF5 \uD68C\uC218 diff --git a/core/src/main/resources/lib/hudson/project/config-trigger_ko.properties b/core/src/main/resources/lib/hudson/project/config-trigger_ko.properties index e1c03892ce..774ef9ebed 100644 --- a/core/src/main/resources/lib/hudson/project/config-trigger_ko.properties +++ b/core/src/main/resources/lib/hudson/project/config-trigger_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Triggers=\uBE4C\uB4DC \uD2B8\uB9AC\uAC70 +Build\ Triggers=\uBE4C\uB4DC \uC720\uBC1C diff --git a/core/src/main/resources/lib/hudson/project/matrix_ko.properties b/core/src/main/resources/lib/hudson/project/matrix_ko.properties new file mode 100644 index 0000000000..5c19c1c25c --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/matrix_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Configurations=\uC124\uC815 diff --git a/core/src/main/resources/lib/hudson/queue_ko.properties b/core/src/main/resources/lib/hudson/queue_ko.properties index 2ae4c8bc56..c859e75dbd 100644 --- a/core/src/main/resources/lib/hudson/queue_ko.properties +++ b/core/src/main/resources/lib/hudson/queue_ko.properties @@ -23,5 +23,6 @@ Build\ Queue=\uBE4C\uB4DC \uB300\uAE30 \uBAA9\uB85D Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=\ Jenkins\uC774 \uC885\uB8CC \uC900\uBE44\uC911\uC774\uAE30 \uB54C\uBB38\uC5D0 \uBE4C\uB4DC\uB97C \uC2E4\uD589\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4. +WaitingFor={0} \uAE30\uB2E4\uB9AC\uB294 \uC911 cancel=\uCDE8\uC18C No\ builds\ in\ the\ queue.=\uBE4C\uB4DC \uB300\uAE30 \uD56D\uBAA9\uC774 \uC5C6\uC2B5\uB2C8\uB2E4. diff --git a/core/src/main/resources/lib/hudson/rssBar_ko.properties b/core/src/main/resources/lib/hudson/rssBar_ko.properties index f89858214b..45029f5c07 100644 --- a/core/src/main/resources/lib/hudson/rssBar_ko.properties +++ b/core/src/main/resources/lib/hudson/rssBar_ko.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=\uBC94\uB840 -for\ all= -for\ failures= -for\ just\ latest\ builds= +Legend= +for\ all=\uBAA8\uB450 +for\ failures=\uC2E4\uD328 +for\ just\ latest\ builds=\uCD5C\uADFC \uBE4C\uB4DC diff --git a/core/src/main/resources/lib/hudson/scriptConsole_ko.properties b/core/src/main/resources/lib/hudson/scriptConsole_ko.properties index 0005c2f67f..6e8c7a8bf9 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_ko.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_ko.properties @@ -20,5 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Result=\uACB0\uACFC Run=\uC2E4\uD589 Script\ Console=\uC2A4\uD06C\uB9BD\uD2B8 \uCF58\uC194 +description=\uC784\uC758\uC758 Groovy\uC2A4\uD06C\uB9BD\uD2B8\uB97C \uC785\uB825\uD558\uC5EC \uC11C\uBC84\uC5D0\uC11C \uC2E4\uD589\uD569\uB2C8\uB2E4.
\uBB38\uC81C\uD574\uACB0\uACFC \uC9C4\uB2E8\uC2DC\uC5D0 \uC720\uC6A9\uD569\uB2C8\uB2E4. \uCD9C\uB825\uBB3C\uC744 \uBCF4\uB824\uBA74 ''println'' \uBA85\uB839\uC744 \uC0AC\uC6A9\uD558\uC138\uC694.
(System.out\uB97C \uC0AC\uC6A9\uD558\uBA74 \uC11C\uBC84\uC758 \uD45C\uC900\uCD9C\uB825\uC73C\uB85C \uBCF4\uB0B4\uC9C0\uACE0, \uAC00\uB3C5\uC131\uC774 \uB5A8\uC5B4\uC9D1\uB2C8\uB2E4.)

+\uC608\uC81C:
+ +\uC608\uC81C:
+ diff --git a/core/src/main/resources/lib/hudson/test-result_ko.properties b/core/src/main/resources/lib/hudson/test-result_ko.properties new file mode 100644 index 0000000000..4bc8e3a959 --- /dev/null +++ b/core/src/main/resources/lib/hudson/test-result_ko.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +multifailures="{0} \uC2E4\uD328 {1}" +no\ failures=\uC2E4\uD328\uAC00 \uC5C6\uC2B5\uB2C8\uB2E4 diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_ko.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_ko.properties new file mode 100644 index 0000000000..1865923484 --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_ko.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +License=\uB77C\uC774\uC13C\uC2A4 +Name=\uD56D\uBAA9 diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_ko.properties b/core/src/main/resources/lib/layout/breadcrumbBar_ko.properties new file mode 100644 index 0000000000..ff69aa319d --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_ko.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=\uC790\uB3D9 \uC7AC\uC2DC\uC791 \uBE44 \uD65C\uC131\uD654 +ENABLE\ AUTO\ REFRESH=\uC790\uB3D9\uC73C\uB85C \uC0C8\uB85C\uACE0\uCE68 diff --git a/core/src/main/resources/lib/layout/layout_ko.properties b/core/src/main/resources/lib/layout/layout_ko.properties index 6081df600b..7073d24c64 100644 --- a/core/src/main/resources/lib/layout/layout_ko.properties +++ b/core/src/main/resources/lib/layout/layout_ko.properties @@ -21,8 +21,9 @@ # THE SOFTWARE. search=\uAC80\uC0C9 + searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -Page\ generated=\uC791\uC131\uB41C \uD398\uC774\uC9C0 +Page\ generated=\uD398\uC774\uC9C0 \uC0DD\uC131\uC77C\uC2DC logout=\uB85C\uADF8\uC544\uC6C3 DISABLE\ AUTO\ REFRESH=\uC790\uB3D9 \uC7AC\uC2E4\uD589 \uB044\uAE30 -ENABLE\ AUTO\ REFRESH=\uC790\uB3D9 \uAC31\uC2E0 \uCF1C\uAE30 +ENABLE\ AUTO\ REFRESH=\uC790\uB3D9 \uC0C8\uB85C\uACE0\uCE68 \uCF1C\uAE30 diff --git a/core/src/main/resources/lib/layout/main-panel_ko.properties b/core/src/main/resources/lib/layout/main-panel_ko.properties new file mode 100644 index 0000000000..07290de5d4 --- /dev/null +++ b/core/src/main/resources/lib/layout/main-panel_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ is\ going\ to\ shut\ down=\uACE7 Jenkins\uAC00 \uC885\uB8CC\uB420 \uC608\uC815\uC785\uB2C8\uB2E4. diff --git a/core/src/main/resources/lib/layout/progressiveRendering_ko.properties b/core/src/main/resources/lib/layout/progressiveRendering_ko.properties new file mode 100644 index 0000000000..8f2029edf9 --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=\uC791\uC5C5\uC744 \uACC4\uC0B0\uC911\uC785\uB2C8\uB2E4. diff --git a/core/src/main/resources/lib/layout/task_ko.properties b/core/src/main/resources/lib/layout/task_ko.properties new file mode 100644 index 0000000000..91243ba81b --- /dev/null +++ b/core/src/main/resources/lib/layout/task_ko.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Done.=\uC644\uB8CC diff --git a/core/src/main/resources/lib/test/bar_ko.properties b/core/src/main/resources/lib/test/bar_ko.properties new file mode 100644 index 0000000000..5a11416fbd --- /dev/null +++ b/core/src/main/resources/lib/test/bar_ko.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +failures={0} \uC2E4\uD328 +tests={0} \uD14C\uC2A4\uD2B8 -- GitLab From 9585f209047cfb0c036feae76f1df2e935c55e2a Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:00 -0700 Subject: [PATCH 060/308] Community-contributed localization for Lithuanian (lt) --- .../hudson/AboutJenkins/index_lt.properties | 5 +++++ .../PluginManager/advanced_lt.properties | 9 +++++++++ .../hudson/PluginManager/index_lt.properties | 6 ++++++ .../PluginManager/installed_lt.properties | 9 +++++++++ .../hudson/PluginManager/tabBar_lt.properties | 6 ++++++ .../hudson/PluginManager/table_lt.properties | 11 ++++++++++ .../message_lt.properties | 5 +++++ .../LogRecorderManager/index_lt.properties | 4 ++++ .../LogRecorderManager/levels_lt.properties | 5 +++++ .../sidepanel_lt.properties | 5 +++++ .../config_lt.properties | 3 +++ .../model/AbstractBuild/index_lt.properties | 5 +++++ .../AbstractBuild/sidepanel_lt.properties | 3 ++- .../model/AbstractBuild/tasks_lt.properties | 5 +++-- .../configure-common_lt.properties | 5 +++++ .../model/AbstractItem/delete_lt.properties | 4 ++++ .../AbstractItem/noWorkspace_lt.properties | 4 ++++ .../AbstractProject/changes_lt.properties | 3 +++ .../model/AbstractProject/main_lt.properties | 5 +++++ .../makeDisabled_lt.properties | 3 +++ .../AbstractProject/sidepanel_lt.properties | 11 +++++++--- .../UserIdCause/description_lt.properties | 3 +++ .../hudson/model/Computer/index_lt.properties | 4 ++++ .../model/Computer/sidepanel_lt.properties | 2 ++ .../model/ComputerSet/index_lt.properties | 5 +++++ .../model/ComputerSet/sidepanel_lt.properties | 3 +++ .../DirectoryBrowserSupport/dir_lt.properties | 4 ++++ .../newJobDetail_lt.properties | 3 +++ .../hudson/model/JDK/config_lt.properties | 3 +++ .../model/Job/buildTimeTrend_lt.properties | 6 ++++++ .../hudson/model/Job/configure_lt.properties | 8 ++++++++ .../hudson/model/Job/permalinks_lt.properties | 3 +++ .../ListView/configure-entries_lt.properties | 10 ++++++++++ .../ListView/newViewDetail_lt.properties | 3 +++ .../model/LoadStatistics/main_lt.properties | 8 ++++++++ .../config_lt.properties | 4 ++++ .../Permalink/link_lt.properties | 3 +++ .../hudson/model/Run/configure_lt.properties | 6 ++++++ .../hudson/model/Run/delete_lt.properties | 3 +++ .../hudson/model/Run/logKeep_lt.properties | 3 +++ .../CoreUpdateMonitor/message_lt.properties | 4 ++++ .../hudson/model/User/index_lt.properties | 3 +++ .../hudson/model/User/sidepanel_lt.properties | 5 +++++ .../View/AsynchPeople/index_lt.properties | 1 + .../model/View/People/index_lt.properties | 5 +++++ .../hudson/model/View/builds_lt.properties | 4 ++++ .../hudson/model/View/configure_lt.properties | 4 ++++ .../hudson/model/View/newJob_lt.properties | 4 ++++ .../EmptyChangeLogSet/digest_lt.properties | 3 +++ .../scm/SCM/project-changes_lt.properties | 3 +++ .../config_lt.properties | 3 +++ .../SecurityRealm/loginLink_lt.properties | 2 +- .../config_lt.properties | 4 ++++ .../SlaveComputer/sidepanel2_lt.properties | 4 ++++ .../SlaveComputer/systemInfo_lt.properties | 4 ++++ .../tasks/LogRotator/config_lt.properties | 7 +++++++ .../junit/CaseResult/index_lt.properties | 5 +++++ .../test/TestObject/sidepanel_lt.properties | 3 +++ .../floatingBox_lt.properties | 4 ++++ .../tools/JDKInstaller/config_lt.properties | 4 ++++ .../ToolInstallation/global_lt.properties | 5 +++++ .../config_lt.properties | 5 +++++ .../BuildButtonColumn/column_lt.properties | 1 + .../myViewTabs_lt.properties | 3 +++ .../columnHeader_lt.properties | 2 +- .../LastDurationColumn/column_lt.properties | 3 +++ .../columnHeader_lt.properties | 2 +- .../columnHeader_lt.properties | 2 +- .../widgets/HistoryWidget/entry_lt.properties | 3 +++ .../widgets/HistoryWidget/index_lt.properties | 6 ++++++ .../management/PluginsLink/info_lt.properties | 3 +++ .../model/Jenkins/configure_lt.properties | 6 ++++++ .../model/Jenkins/legend_lt.properties | 3 +++ .../model/Jenkins/manage_lt.properties | 20 +++++++++++++++++++ .../model/Jenkins/newView_lt.properties | 3 +++ .../resources/lib/form/advanced_lt.properties | 3 +++ .../breadcrumb-config-outline_lt.properties | 3 +++ .../resources/lib/form/helpArea_lt.properties | 3 +++ .../form/repeatableDeleteButton_lt.properties | 3 +++ .../lib/form/repeatable_lt.properties | 3 +++ .../resources/lib/form/textarea_lt.properties | 4 ++++ .../lib/hudson/buildListTable_lt.properties | 6 ++++++ .../lib/hudson/buildProgressBar_lt.properties | 2 +- .../lib/hudson/executors_lt.properties | 2 ++ ...-blockWhenDownstreamBuilding_lt.properties | 3 +++ ...ig-blockWhenUpstreamBuilding_lt.properties | 3 +++ .../project/config-builders_lt.properties | 4 ++++ .../config-customWorkspace_lt.properties | 3 +++ .../project/config-disableBuild_lt.properties | 3 +++ .../project/config-publishers2_lt.properties | 4 ++++ .../project/config-quietPeriod_lt.properties | 3 +++ .../project/config-retryCount_lt.properties | 3 +++ .../hudson/project/config-scm_lt.properties | 3 +++ .../project/upstream-downstream_lt.properties | 4 ++++ .../lib/hudson/propertyTable_lt.properties | 4 ++++ .../resources/lib/hudson/queue_lt.properties | 2 ++ .../resources/lib/hudson/rssBar_lt.properties | 4 ++-- .../hudson/thirdPartyLicenses_lt.properties | 4 ++++ .../lib/layout/breadcrumbBar_lt.properties | 4 ++++ .../resources/lib/layout/layout_lt.properties | 6 +++--- .../layout/progressiveRendering_lt.properties | 3 +++ 101 files changed, 416 insertions(+), 16 deletions(-) create mode 100644 core/src/main/resources/hudson/AboutJenkins/index_lt.properties create mode 100644 core/src/main/resources/hudson/PluginManager/advanced_lt.properties create mode 100644 core/src/main/resources/hudson/PluginManager/index_lt.properties create mode 100644 core/src/main/resources/hudson/PluginManager/installed_lt.properties create mode 100644 core/src/main/resources/hudson/PluginManager/tabBar_lt.properties create mode 100644 core/src/main/resources/hudson/PluginManager/table_lt.properties create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_lt.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/index_lt.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/levels_lt.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_lt.properties create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_lt.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/configure-common_lt.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/delete_lt.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/noWorkspace_lt.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/changes_lt.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_lt.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/makeDisabled_lt.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UserIdCause/description_lt.properties create mode 100644 core/src/main/resources/hudson/model/Computer/index_lt.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/index_lt.properties create mode 100644 core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_lt.properties create mode 100644 core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_lt.properties create mode 100644 core/src/main/resources/hudson/model/JDK/config_lt.properties create mode 100644 core/src/main/resources/hudson/model/Job/buildTimeTrend_lt.properties create mode 100644 core/src/main/resources/hudson/model/Job/configure_lt.properties create mode 100644 core/src/main/resources/hudson/model/Job/permalinks_lt.properties create mode 100644 core/src/main/resources/hudson/model/ListView/configure-entries_lt.properties create mode 100644 core/src/main/resources/hudson/model/ListView/newViewDetail_lt.properties create mode 100644 core/src/main/resources/hudson/model/LoadStatistics/main_lt.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_lt.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_lt.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_lt.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_lt.properties create mode 100644 core/src/main/resources/hudson/model/Run/logKeep_lt.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_lt.properties create mode 100644 core/src/main/resources/hudson/model/User/index_lt.properties create mode 100644 core/src/main/resources/hudson/model/User/sidepanel_lt.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_lt.properties create mode 100644 core/src/main/resources/hudson/model/View/builds_lt.properties create mode 100644 core/src/main/resources/hudson/model/View/configure_lt.properties create mode 100644 core/src/main/resources/hudson/model/View/newJob_lt.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_lt.properties create mode 100644 core/src/main/resources/hudson/scm/SCM/project-changes_lt.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_lt.properties create mode 100644 core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_lt.properties create mode 100644 core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_lt.properties create mode 100644 core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_lt.properties create mode 100644 core/src/main/resources/hudson/tasks/LogRotator/config_lt.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/CaseResult/index_lt.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_lt.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_lt.properties create mode 100644 core/src/main/resources/hudson/tools/JDKInstaller/config_lt.properties create mode 100644 core/src/main/resources/hudson/tools/ToolInstallation/global_lt.properties create mode 100644 core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_lt.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_lt.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/column_lt.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_lt.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_lt.properties create mode 100644 core/src/main/resources/jenkins/management/PluginsLink/info_lt.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/configure_lt.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/legend_lt.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/manage_lt.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/newView_lt.properties create mode 100644 core/src/main/resources/lib/form/advanced_lt.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_lt.properties create mode 100644 core/src/main/resources/lib/form/helpArea_lt.properties create mode 100644 core/src/main/resources/lib/form/repeatableDeleteButton_lt.properties create mode 100644 core/src/main/resources/lib/form/repeatable_lt.properties create mode 100644 core/src/main/resources/lib/form/textarea_lt.properties create mode 100644 core/src/main/resources/lib/hudson/buildListTable_lt.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_lt.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_lt.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-builders_lt.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-customWorkspace_lt.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-disableBuild_lt.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-publishers2_lt.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-quietPeriod_lt.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-retryCount_lt.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-scm_lt.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_lt.properties create mode 100644 core/src/main/resources/lib/hudson/propertyTable_lt.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_lt.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_lt.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_lt.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_lt.properties b/core/src/main/resources/hudson/AboutJenkins/index_lt.properties new file mode 100644 index 0000000000..f599a67508 --- /dev/null +++ b/core/src/main/resources/hudson/AboutJenkins/index_lt.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +about=Apie Jenkins {0} +blurb=Jenkins - bendruomen\u0117s kuriamas atviro kodo pastovios integracijos (CIS) serveris. +dependencies=Jenkins priklauso nuo \u0161i\u0173 3-i\u0173j\u0173 \u0161ali\u0173 bibliotek\u0173. diff --git a/core/src/main/resources/hudson/PluginManager/advanced_lt.properties b/core/src/main/resources/hudson/PluginManager/advanced_lt.properties new file mode 100644 index 0000000000..cae3c77175 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/advanced_lt.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Check\ now=Tikrinti dabar +File=Failas +HTTP\ Proxy\ Configuration=HTTP \u0161liuzo konfig\u016Bracija +Update\ Site=Atnaujinimo svetain\u0117 +Upload=\u012Ekelti +Upload\ Plugin=\u012Ekelti pried\u0105 +lastUpdated=Atnaujinimo informacija gauta: prie\u0161 {0} diff --git a/core/src/main/resources/hudson/PluginManager/index_lt.properties b/core/src/main/resources/hudson/PluginManager/index_lt.properties new file mode 100644 index 0000000000..64d8f02f1e --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/index_lt.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +All=Visi +None=N\u0117 vieno +Select=Pa\u017Eym\u0117ti +UpdatePageDescription=\u0160iame puslapyje rodomi j\u016Bs\u0173 naudojam\u0173 pried\u0173 atnaujinimai. diff --git a/core/src/main/resources/hudson/PluginManager/installed_lt.properties b/core/src/main/resources/hudson/PluginManager/installed_lt.properties new file mode 100644 index 0000000000..223d9bf445 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/installed_lt.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Pakeitimai \u012Fsigalios jums perstartavus Jenkins +Enabled=\u012Ejungtas +Name=Pavadinimas +Previously\ installed\ version=Anks\u010Diau \u012Fdiegta versija +Restart\ Once\ No\ Jobs\ Are\ Running=Perstartuoti, kai nebus vykdom\u0173 darb\u0173 +Uncheck\ to\ disable\ the\ plugin=Nu\u017Eym\u0117kite, kad atjungtum\u0117te pried\u0105 +Version=Versija diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_lt.properties b/core/src/main/resources/hudson/PluginManager/tabBar_lt.properties new file mode 100644 index 0000000000..9e5fcd2010 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/tabBar_lt.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Advanced=Sud\u0117tingesni +Available=Prieinami +Installed=\u012Ediegti +Updates=Atnaujinimai diff --git a/core/src/main/resources/hudson/PluginManager/table_lt.properties b/core/src/main/resources/hudson/PluginManager/table_lt.properties new file mode 100644 index 0000000000..bebbd9b96b --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/table_lt.properties @@ -0,0 +1,11 @@ +# This file is under the MIT License by authors + +Check\ to\ install\ the\ plugin=Pa\u017Eym\u0117kite, kad \u012Fdiegtum\u0117te pried\u0105 +Download\ now\ and\ install\ after\ restart=Atsi\u0173sti dabar ir \u012Fdiegti po perstartavimo +Filter=Filtras +Install=\u012Ediegti +Install\ without\ restart=\u012Ediegti be perstartavimo +Installed=\u012Ediegta +Name=Pavadinimas +Version=Versija +coreWarning=\u012Esp\u0117jimas: \u0161is priedas sukurtas {0} arba naujesnei Jenkins versijai. Jis gali veikti, o gali ir neveikti su j\u016Bs\u0173 Jenkins. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_lt.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_lt.properties new file mode 100644 index 0000000000..97c7d54209 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_lt.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Dismiss=At\u0161aukti +More\ Info=Daugiau Informacijos +blurb=Pana\u0161u kad j\u016Bs\u0173 atvirk\u0161tinio proxy nustatymuose yra klaid\u0173. diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_lt.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_lt.properties new file mode 100644 index 0000000000..684991829b --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_lt.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +All\ Jenkins\ Logs=Visi Jenkins \u017Eurnalai +Name=Pavadinimas diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_lt.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_lt.properties new file mode 100644 index 0000000000..c406abf796 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_lt.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Adjust\ Levels=Keisti lygius +Level=Lygis +Name=Pavadinimas diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_lt.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_lt.properties new file mode 100644 index 0000000000..442871dc69 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_lt.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +All\ Logs=Visi \u017Eurnalai +Log\ Levels=\u017Durnal\u0173 lygiai +Manage\ Jenkins=Valdyti Jenkins diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_lt.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_lt.properties new file mode 100644 index 0000000000..281c3a427a --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +disableSyntaxHighlighting=I\u0161jungti spalvinim\u0105 pagal sintaks\u0119 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_lt.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_lt.properties index 3f4b2096ed..a5b4ccd647 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_lt.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_lt.properties @@ -20,4 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Build=Darbas +Build\ Artifacts=Vykdymo rezultatai +Took=U\u017Etruko +beingExecuted=Darbas jau vykdomas {0} +on=aplinkoje startedAgo=Prad\u0117ta prie\u0161 {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_lt.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_lt.properties index 738953c7df..3f0c76dbf6 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_lt.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_lt.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Previous\ Build=Praeitas bildas +Next\ Build=Sekanti konstrukcija +Previous\ Build=Ankstesnis darbas diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_lt.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_lt.properties index fdf28921a2..6f09674285 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_lt.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_lt.properties @@ -23,7 +23,8 @@ Back\ to\ Project=Gr\u012F\u017Eti prie projekto Changes=Pakeitimai Console\ Output=Konsol\u0117s i\u0161vestis +View\ Build\ Information=Per\u017Ei\u016Br\u0117ti vykdymo informacij\u0105 View\ as\ plain\ text=\u017Di\u016Br\u0117ti kaip tekst\u0105 -Edit\ Build\ Information=Redaguoti bildo informacij\u0105 -Status=B\u016Bkl\u0117 +Edit\ Build\ Information=Redaguoti konstrukcijos informacij\u0105 +Status=B\u016Bsena raw=grynas diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_lt.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_lt.properties new file mode 100644 index 0000000000..bc54a27909 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_lt.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Advanced\ Project\ Options\ configure-common=Sud\u0117tingesn\u0117s projekto parinktys +Display\ Name=Rodomas pavadinimas +Restrict\ where\ this\ project\ can\ be\ run=Apriboti, kur gali b\u016Bti vykdomas \u0161is darbas diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_lt.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_lt.properties new file mode 100644 index 0000000000..3dc124314b --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_lt.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Yes=Taip +blurb=At tikrai norite i\u0161trinti {0} "{1}"? diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_lt.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_lt.properties new file mode 100644 index 0000000000..c4c43f0c11 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_lt.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Error:\ no\ workspace=Klaida: n\u0117ra darbalaukio +text=Paleisti konstrukcij\u0105, kad Jenkins sukurt\u0173 darbalauk\u012F. diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_lt.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_lt.properties new file mode 100644 index 0000000000..7dac52e112 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=Pakeitimai diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_lt.properties b/core/src/main/resources/hudson/model/AbstractProject/main_lt.properties new file mode 100644 index 0000000000..59a8dc76c5 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_lt.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Last\ Successful\ Artifacts=Paskutiniai s\u0117kmingi artifaktai +Recent\ Changes=Paskutiniai pakeitimai +Workspace=Darbalaukis diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_lt.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_lt.properties new file mode 100644 index 0000000000..f4732ee85e --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Disable\ Project=I\u0161jungti projekt\u0105 diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lt.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lt.properties index 27e4312dd4..543f60fae0 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lt.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lt.properties @@ -20,8 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Gr\u012F\u017Eti \u012F Prietais\u0173 skydel\u012F -Changes=Pasikeitimai -Status=Statusas +Back\ to\ Dashboard=Gr\u012F\u017Eti \u012F Prietais\u0173 skydel\u012Fsdfs +Build\ scheduled=Konstrukcija suplanuota +Changes=Pakeitimai +Configure=Nustatyti +Status=B\u016Bsena Wipe\ Out\ Workspace=I\u0161valyti vis\u0105 darbalauk\u012F Workspace=Darbalaukis +delete=I\u0161trinti {0} +delete.confirm=Ar j\u016Bs tikri, kad norite i\u0161trinti {0} "{1}"? +wipe.out.confirm=Ar j\u016Bs tikri, kad norite i\u0161trinti visus duomenis darbalaukyje? diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_lt.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_lt.properties new file mode 100644 index 0000000000..024fa631eb --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +started_by_user=Prad\u0117jo nautotojas {1} diff --git a/core/src/main/resources/hudson/model/Computer/index_lt.properties b/core/src/main/resources/hudson/model/Computer/index_lt.properties new file mode 100644 index 0000000000..3ba411d3ed --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/index_lt.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +submit.not.temporarilyOffline=Pa\u017Eym\u0117ti \u0161\u012F mazg\u0105 laikinai atjungtu +title.projects_tied_on=Prie {0} prisieti projektai diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_lt.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_lt.properties index 1daeb6960f..d06880df35 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_lt.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_lt.properties @@ -20,6 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Back\ to\ List=Atgal \u012F s\u0105ra\u0161\u0105 +Build\ History=Darb\u0173 istorija Configure=Nustatymai Delete\ Slave=I\u0161trinti ''Slave'' Load\ Statistics=Kr\u016Bvio statistika diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_lt.properties b/core/src/main/resources/hudson/model/ComputerSet/index_lt.properties new file mode 100644 index 0000000000..69135b703f --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/index_lt.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Configure=Konfig\u016Bruoti +Name=Pavadinimas +Refresh\ status=Atnaujinti b\u016Bsen\u0105 diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_lt.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_lt.properties index a8e8ba5cb1..ac75fec954 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_lt.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_lt.properties @@ -20,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Back\ to\ Dashboard=Atgal \u012F darbalauk\u012F Configure=Nustatymai +Manage\ Jenkins=Valdyti Jenkins +New\ Node=Naujas mazgas diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_lt.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_lt.properties new file mode 100644 index 0000000000..77a1900ab8 --- /dev/null +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_lt.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +all\ files\ in\ zip=visi failai zip formate +view=per\u017Ei\u016Br\u0117ti diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_lt.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_lt.properties new file mode 100644 index 0000000000..60ae6f7c9d --- /dev/null +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +body=Pagrindin\u0117 Jenkins funkcija. Jenkins sukonstruos j\u016Bs\u0173 projekt\u0105, sujungdamas betkok\u012F SCM su betkokia konstravimo sistema. \u0160is darbo tipas gali b\u016Bt pritaikytas ne tik program\u0173 konstravimui. diff --git a/core/src/main/resources/hudson/model/JDK/config_lt.properties b/core/src/main/resources/hudson/model/JDK/config_lt.properties new file mode 100644 index 0000000000..796e394852 --- /dev/null +++ b/core/src/main/resources/hudson/model/JDK/config_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=Pavadinimas diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_lt.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_lt.properties new file mode 100644 index 0000000000..effbad657b --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_lt.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Build=Darbas +Build\ Time\ Trend=Darbo laiko tendencija +Duration=Trukm\u0117 +Timeline=Laiko juosta diff --git a/core/src/main/resources/hudson/model/Job/configure_lt.properties b/core/src/main/resources/hudson/model/Job/configure_lt.properties new file mode 100644 index 0000000000..b594bec592 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/configure_lt.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Description=Apra\u0161ymas +Discard\ Old\ Builds=Pa\u0161alinti senus darbus +LOADING=\u012EKELIAMA +Save=\u012Era\u0161yti +Strategy=Strategija +name={0} pavadinimas diff --git a/core/src/main/resources/hudson/model/Job/permalinks_lt.properties b/core/src/main/resources/hudson/model/Job/permalinks_lt.properties new file mode 100644 index 0000000000..ad56d3bfbc --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/permalinks_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Permalinks=Nuorodos diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_lt.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_lt.properties new file mode 100644 index 0000000000..d06573f5f9 --- /dev/null +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_lt.properties @@ -0,0 +1,10 @@ +# This file is under the MIT License by authors + +Add\ column=Prid\u0117ti stulpel\u012F +Columns=Stulpeliai +Disabled\ jobs\ only=Tik i\u0161jungti darbai +Enabled\ jobs\ only=Tik \u012Fjungti darbai +Job\ Filters=Darb\u0173 filtrai +Jobs=Darbai +Regular\ expression=Reguliarusis rei\u0161kinys +Status\ Filter=B\u016Bsenos filtras diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_lt.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_lt.properties new file mode 100644 index 0000000000..a9d6133e99 --- /dev/null +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +blurb=Parodo elementus paprastame s\u0105ra\u0161e. J\u016Bs galite pasirinkti kokias u\u017Eduotis kokiame vaizde rodyti. diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_lt.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_lt.properties new file mode 100644 index 0000000000..571ced6064 --- /dev/null +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_lt.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Load\ statistics\ graph=Apkrovos statistikos diagrama +Long=Ilgas +Medium=Vidutinis +Short=Trumpas +Timespan=Laikotarpis +title=Apkrovos statistika: {0} diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_lt.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_lt.properties new file mode 100644 index 0000000000..4c66949799 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_lt.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Add\ Parameter=Prid\u0117ti parametr\u0105 +This\ build\ is\ parameterized=\u0160is darbas yra parametrizuotas diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_lt.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_lt.properties new file mode 100644 index 0000000000..1d706b51cf --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +format=prie\u0161 {0} ({1}), {2} diff --git a/core/src/main/resources/hudson/model/Run/configure_lt.properties b/core/src/main/resources/hudson/model/Run/configure_lt.properties new file mode 100644 index 0000000000..7d29bab1fb --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_lt.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Description=Apra\u0161ymas +DisplayName=Pavadinimas +LOADING=KRAUNAMA +Save=I\u0161saugoti diff --git a/core/src/main/resources/hudson/model/Run/delete_lt.properties b/core/src/main/resources/hudson/model/Run/delete_lt.properties new file mode 100644 index 0000000000..0cda1d875f --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete\ this\ build=I\u0161trinti konstrukcij\u0105 diff --git a/core/src/main/resources/hudson/model/Run/logKeep_lt.properties b/core/src/main/resources/hudson/model/Run/logKeep_lt.properties new file mode 100644 index 0000000000..f0ee369419 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/logKeep_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Keep\ this\ build\ forever=Palikti \u0161it\u0105 darb\u0105 am\u017Einai diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_lt.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_lt.properties new file mode 100644 index 0000000000..b9995fe88b --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_lt.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +NewVersionAvailable=Galima parsisi\u0173sti nauj\u0105 ({0}) Jenkins versij\u0105. (pakeitimai). +Or\ Upgrade\ Automatically=Parsi\u0173sti automati\u0161kai diff --git a/core/src/main/resources/hudson/model/User/index_lt.properties b/core/src/main/resources/hudson/model/User/index_lt.properties new file mode 100644 index 0000000000..6764891efe --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ User\ Id=Jenkins vartotojo Id diff --git a/core/src/main/resources/hudson/model/User/sidepanel_lt.properties b/core/src/main/resources/hudson/model/User/sidepanel_lt.properties new file mode 100644 index 0000000000..903c253b1a --- /dev/null +++ b/core/src/main/resources/hudson/model/User/sidepanel_lt.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Configure=Konfig\u016Bruoti +People=\u017Dmon\u0117s +Status=B\u016Bsena diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_lt.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_lt.properties index 60e0617cb8..43e2b4e3bc 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_lt.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_lt.properties @@ -21,6 +21,7 @@ # THE SOFTWARE. All\ People=Visi vartotojai +Last\ Active=Paskutiniai Veiksmai Name=Vardas People=Vartotojai User\ Id=Slapyvardis diff --git a/core/src/main/resources/hudson/model/View/People/index_lt.properties b/core/src/main/resources/hudson/model/View/People/index_lt.properties new file mode 100644 index 0000000000..ff0ca527b3 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_lt.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Last\ Active=Paskutinis aktyvumas +On=Su +People=Naudotojai diff --git a/core/src/main/resources/hudson/model/View/builds_lt.properties b/core/src/main/resources/hudson/model/View/builds_lt.properties new file mode 100644 index 0000000000..3ad781ecaf --- /dev/null +++ b/core/src/main/resources/hudson/model/View/builds_lt.properties @@ -0,0 +1,4 @@ +# 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/configure_lt.properties b/core/src/main/resources/hudson/model/View/configure_lt.properties new file mode 100644 index 0000000000..e8d0d7de41 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/configure_lt.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Description=Apra\u0161ymas +Name=Pavadinimas diff --git a/core/src/main/resources/hudson/model/View/newJob_lt.properties b/core/src/main/resources/hudson/model/View/newJob_lt.properties new file mode 100644 index 0000000000..9cde1d2d1e --- /dev/null +++ b/core/src/main/resources/hudson/model/View/newJob_lt.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +CopyExisting=Kpijuoti egzistuojant\u012F {0} +JobName=U\u017Eduoties pavadinimas diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_lt.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_lt.properties new file mode 100644 index 0000000000..567b02c880 --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ changes.=N\u0117ra pakeitim\u0173. diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_lt.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_lt.properties new file mode 100644 index 0000000000..6f72e8a5ca --- /dev/null +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ changes\ in\ any\ of\ the\ builds.=Joki\u0173 pakeitimu neivienoje konstrukcijoje. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_lt.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_lt.properties new file mode 100644 index 0000000000..e8db4a8bf3 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Allow\ users\ to\ sign\ up=Leisti vartotojam u\u017Esiregistruoti diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_lt.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_lt.properties index 441a3bf7e1..a5746e411d 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_lt.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_lt.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=Prisijungti +login=Prisijungtidsfs diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_lt.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_lt.properties new file mode 100644 index 0000000000..106fcf9802 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_lt.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +name=pavadinimas +value=reik\u0161m\u0117 diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_lt.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_lt.properties new file mode 100644 index 0000000000..5d525dd82d --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_lt.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Disconnect=Atjungti +System\ Information=Sistemin\u0117 informacija diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_lt.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_lt.properties new file mode 100644 index 0000000000..a19a53ef6b --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_lt.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Environment\ Variables=Aplinkos kintamieji +System\ Properties=Sistemos savyb\u0117s diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_lt.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_lt.properties new file mode 100644 index 0000000000..28d87c347c --- /dev/null +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_lt.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Days\ to\ keep\ artifacts=Rezultatus laikyti dien\u0173 +Days\ to\ keep\ builds=Darbus laikyti dien\u0173 +Max\ #\ of\ builds\ to\ keep=Maksimalus saugom\u0173 darb\u0173 skai\u010Dius +if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=jei u\u017Epildytas, darb\u0173 \u012Fra\u0161ai saugomi tik nurodyt\u0105 skai\u010Di\u0173 dien\u0173 +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=jei u\u017Epildytas, saugoma ne daugiau nurodyto skai\u010Diaus darb\u0173 \u012Fra\u0161\u0173 diff --git a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_lt.properties b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_lt.properties new file mode 100644 index 0000000000..59d7453d95 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_lt.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Error\ Message=Klaidos \u017Einut\u0117 +since.before=Nuo'' '' +took=U\u017Etruko {0}. diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_lt.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_lt.properties new file mode 100644 index 0000000000..7ddf60258e --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +History=Istorija diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_lt.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_lt.properties new file mode 100644 index 0000000000..a60d59bc44 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_lt.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +enlarge=padidinti +just\ show\ failures=rodyti tik klaidas diff --git a/core/src/main/resources/hudson/tools/JDKInstaller/config_lt.properties b/core/src/main/resources/hudson/tools/JDKInstaller/config_lt.properties new file mode 100644 index 0000000000..9f493071ba --- /dev/null +++ b/core/src/main/resources/hudson/tools/JDKInstaller/config_lt.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +I\ agree\ to\ the\ Java\ SE\ Development\ Kit\ License\ Agreement=Sutinku su Java SE Development Kit licenzija +Version=Versija diff --git a/core/src/main/resources/hudson/tools/ToolInstallation/global_lt.properties b/core/src/main/resources/hudson/tools/ToolInstallation/global_lt.properties new file mode 100644 index 0000000000..4c84880da5 --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolInstallation/global_lt.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +label.add=Prid\u0117ti {0} +label.delete=I\u0161trinti {0} +title={0} ira\u0161ymai diff --git a/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_lt.properties b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_lt.properties new file mode 100644 index 0000000000..287c68083f --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_lt.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Home=Namai +List\ of\ tool\ locations=\u012Eranki\u0173 viet\u0173 s\u0105ra\u0161as +Name=Pavadinimas diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_lt.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_lt.properties index 0369427795..ad3501938e 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_lt.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_lt.properties @@ -20,4 +20,5 @@ # 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 diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_lt.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_lt.properties new file mode 100644 index 0000000000..8de527e506 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +New\ View=Naujas rodinys diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_lt.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_lt.properties index 727de537bd..f8323fbb4a 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_lt.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_lt.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=Paskutin\u0117s u\u017Eduoties trukm\u0117 +Last\ Duration=Paskutin\u0117 trukm\u0117 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_lt.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_lt.properties new file mode 100644 index 0000000000..c0479fbbee --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=N\u0117ra diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_lt.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_lt.properties index 32fbe39236..760aa98544 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_lt.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_lt.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=Paskutin\u0117 nepavykusi u\u017Eduotis +Last\ Failure=Paskutin\u0117 nes\u0117km\u0117 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_lt.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_lt.properties index e300624b3d..6fee5d9154 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_lt.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_lt.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=Paskutin\u0117 pavykusi u\u017Eduotis +Last\ Success=Paskutin\u0117 s\u0117km\u0117 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_lt.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_lt.properties new file mode 100644 index 0000000000..a4dd4b50d4 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Console\ Output=Konsol\u0117s i\u0161vestis diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_lt.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_lt.properties new file mode 100644 index 0000000000..dc535cf3ce --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_lt.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +More\ ...=Daugiau... +for\ all=visiem +for\ failures=nesekm\u0117m +trend=tendencija diff --git a/core/src/main/resources/jenkins/management/PluginsLink/info_lt.properties b/core/src/main/resources/jenkins/management/PluginsLink/info_lt.properties new file mode 100644 index 0000000000..767ecead8a --- /dev/null +++ b/core/src/main/resources/jenkins/management/PluginsLink/info_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +updates\ available=yra atnaujinim\u0173 diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_lt.properties new file mode 100644 index 0000000000..5ec9b9de62 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_lt.properties @@ -0,0 +1,6 @@ +# 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 diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_lt.properties new file mode 100644 index 0000000000..f16e98122a --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +grey=Projektas dar nebuvo surinkin\u0117jamas, arba projektas i\u0161jungtas. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_lt.properties new file mode 100644 index 0000000000..7e9e409bf2 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_lt.properties @@ -0,0 +1,20 @@ +# This file is under the MIT License by authors + +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Prid\u0117ti, \u0161alinti, valdyti ir steb\u0117ti \u012Fvairius mazgus, kuriuose Jenkins vykdo darbus. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Prid\u0117ti, pa\u0161alinti, i\u0161jungti ar \u012Fjungti priedus, kurie prapl\u0117\u010Dia Jenkins funkcionalum\u0105. +Configure\ System=Konfig\u016Bruoti sistem\u0105 +Configure\ global\ settings\ and\ paths.=Konfig\u016Bruoti bendrus nustatymus ir kelius. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=I\u0161mesti visus \u012Fkeltus duomenis ir i\u0161 naujo \u012Fkelti i\u0161 fail\u0173 sistemos. +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Rodo \u012Fvairi\u0105 aplinkos informacij\u0105, padedan\u010Di\u0105 spr\u0119sti problemas. +Load\ Statistics=Apkrovos statistika +Manage\ Jenkins=Tvarkyti Jenkins +Manage\ Nodes=Valdyti mazgus +Manage\ Plugins=Valdyti priedus +Prepare\ for\ Shutdown=Pasiruo\u0161ti i\u0161jungimui +Reload\ Configuration\ from\ Disk=I\u0161 naujo \u012Fkelti konfig\u016Bracij\u0105 i\u0161 disko +Script\ Console=Scenarijaus konsol\u0117 +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Nebepradeda nauj\u0173 darb\u0173, kad b\u016Bt\u0173 galima saugiai i\u0161jungti sistem\u0105. +System\ Information=Sistemos informacija +System\ Log=Sistemos \u017Eurnalas +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Naudinga, kai kei\u010Diate konfig\u016Bracijos failus tiesiai diske. +are.you.sure={0}: ar j\u016Bs tikri? diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_lt.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_lt.properties new file mode 100644 index 0000000000..1a01db4bba --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +View\ name=Vaizdo pavadinimas diff --git a/core/src/main/resources/lib/form/advanced_lt.properties b/core/src/main/resources/lib/form/advanced_lt.properties new file mode 100644 index 0000000000..1178839d1b --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Advanced=Sud\u0117tingesni diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_lt.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_lt.properties new file mode 100644 index 0000000000..ddad17ee19 --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=nustatymai diff --git a/core/src/main/resources/lib/form/helpArea_lt.properties b/core/src/main/resources/lib/form/helpArea_lt.properties new file mode 100644 index 0000000000..3c753f498d --- /dev/null +++ b/core/src/main/resources/lib/form/helpArea_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Loading...=Kraunasi... diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_lt.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_lt.properties new file mode 100644 index 0000000000..8eba309c1b --- /dev/null +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete=I\u0161trinti diff --git a/core/src/main/resources/lib/form/repeatable_lt.properties b/core/src/main/resources/lib/form/repeatable_lt.properties new file mode 100644 index 0000000000..e86820212e --- /dev/null +++ b/core/src/main/resources/lib/form/repeatable_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Add=Prid\u0117ti diff --git a/core/src/main/resources/lib/form/textarea_lt.properties b/core/src/main/resources/lib/form/textarea_lt.properties new file mode 100644 index 0000000000..86c88885ef --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_lt.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=I\u0161jungti per\u017Ei\u016Br\u0105 +Preview=Per\u017Ei\u016Bra diff --git a/core/src/main/resources/lib/hudson/buildListTable_lt.properties b/core/src/main/resources/lib/hudson/buildListTable_lt.properties new file mode 100644 index 0000000000..c554364029 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildListTable_lt.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Build=Surinkimas +Console\ output=Konsol\u0117s i\u0161vestis +Status=Statusas +Time\ Since=Laiko nuo diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_lt.properties b/core/src/main/resources/lib/hudson/buildProgressBar_lt.properties index 61668920eb..57281b2c71 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_lt.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_lt.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Prad\u0117ta prie\u0161 {0}
Lik\u0119s sp\u0117jamas laikas: {1} +text=Prad\u0117ta prie\u0161 {0}
Numatoma, kad liko: {1} diff --git a/core/src/main/resources/lib/hudson/executors_lt.properties b/core/src/main/resources/lib/hudson/executors_lt.properties index b6b9ffa8fd..f0a8baff58 100644 --- a/core/src/main/resources/lib/hudson/executors_lt.properties +++ b/core/src/main/resources/lib/hudson/executors_lt.properties @@ -21,8 +21,10 @@ # THE SOFTWARE. Build\ Executor\ Status=U\u017Eduoties vykdytojo b\u016Bsena +Building=Vykdomas Idle=Nenaudojamas Master=Pagrindinis Offline=Nepasiekiamas Status=B\u016Bsena offline=nepasiekiamas +terminate\ this\ build=sustabdyti \u0161i\u0105 u\u017Eduot\u012F diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_lt.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_lt.properties new file mode 100644 index 0000000000..08882e2118 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Block\ build\ when\ downstream\ project\ is\ building=Blokuoti darb\u0105, kai vykdomas tolimesnis darbas diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_lt.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_lt.properties new file mode 100644 index 0000000000..61411b42e8 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Block\ build\ when\ upstream\ project\ is\ building=Blokuoti darb\u0105, kai vykdomas ankstesnis darbas diff --git a/core/src/main/resources/lib/hudson/project/config-builders_lt.properties b/core/src/main/resources/lib/hudson/project/config-builders_lt.properties new file mode 100644 index 0000000000..0f98a17204 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-builders_lt.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Add\ build\ step=Prid\u0117ti darbo \u017Eingsn\u012F +Build=Darbas diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_lt.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_lt.properties new file mode 100644 index 0000000000..af73618c53 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Directory=Aplankas diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_lt.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_lt.properties new file mode 100644 index 0000000000..87f83496b0 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Disable\ Build=I\u0161jungti darb\u0105 diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_lt.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_lt.properties new file mode 100644 index 0000000000..22b5c33476 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_lt.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Add\ post-build\ action=Prid\u0117ti veiksm\u0105 po darbo +Post-build\ Actions=Veiksmai po darbo diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_lt.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_lt.properties new file mode 100644 index 0000000000..faa706773f --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Number\ of\ seconds=Sekund\u017Ei\u0173 skai\u010Dius diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_lt.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_lt.properties new file mode 100644 index 0000000000..5c022d60b0 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Retry\ Count=Pakartojim\u0173 skai\u010Dius diff --git a/core/src/main/resources/lib/hudson/project/config-scm_lt.properties b/core/src/main/resources/lib/hudson/project/config-scm_lt.properties new file mode 100644 index 0000000000..9b13803f1d --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-scm_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Source\ Code\ Management=I\u0161eities kodo valdymas diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_lt.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_lt.properties new file mode 100644 index 0000000000..2b92bc40d4 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_lt.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Downstream\ Projects=\u017Demesni projektai +Upstream\ Projects=Auk\u0161tesni projektai diff --git a/core/src/main/resources/lib/hudson/propertyTable_lt.properties b/core/src/main/resources/lib/hudson/propertyTable_lt.properties new file mode 100644 index 0000000000..b5aa8899d7 --- /dev/null +++ b/core/src/main/resources/lib/hudson/propertyTable_lt.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Name=Pavadinimas +Value=Reik\u0161m\u0117 diff --git a/core/src/main/resources/lib/hudson/queue_lt.properties b/core/src/main/resources/lib/hudson/queue_lt.properties index cb631a8e20..54aeb73ab1 100644 --- a/core/src/main/resources/lib/hudson/queue_lt.properties +++ b/core/src/main/resources/lib/hudson/queue_lt.properties @@ -21,4 +21,6 @@ # THE SOFTWARE. Build\ Queue=U\u017Eduo\u010Di\u0173 eil\u0117 +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkinsas ruo\u0161iasi i\u0161jungimui. Nebus vykdomi jokie darbai. No\ builds\ in\ the\ queue.=U\u017Eduo\u010Di\u0173 eil\u0117 tu\u0161\u010Dia. +cancel=nutraukti diff --git a/core/src/main/resources/lib/hudson/rssBar_lt.properties b/core/src/main/resources/lib/hudson/rssBar_lt.properties index 5f439b2330..9a403f4046 100644 --- a/core/src/main/resources/lib/hudson/rssBar_lt.properties +++ b/core/src/main/resources/lib/hudson/rssBar_lt.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=Legenda +Legend=Apra\u0161ymas for\ all=visiems for\ failures=nepavykusios u\u017Eduotims -for\ just\ latest\ builds=tik paskutinioms u\u017Eduotims +for\ just\ latest\ builds=tik paskutin\u0117ms u\u017Eduotims diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_lt.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_lt.properties new file mode 100644 index 0000000000..49f1448638 --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_lt.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +License=Licencija +Name=Pavadinimas diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_lt.properties b/core/src/main/resources/lib/layout/breadcrumbBar_lt.properties new file mode 100644 index 0000000000..7eef78362b --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_lt.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=SUSTABDYTI AUTOMATIN\u012E ATNAUJINIM\u0104 +ENABLE\ AUTO\ REFRESH=\u012Ejunkti automatin\u012F perkrovim\u0105 diff --git a/core/src/main/resources/lib/layout/layout_lt.properties b/core/src/main/resources/lib/layout/layout_lt.properties index eecffdab0c..666cb01150 100644 --- a/core/src/main/resources/lib/layout/layout_lt.properties +++ b/core/src/main/resources/lib/layout/layout_lt.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ENABLE\ AUTO\ REFRESH= -Page\ generated=Puslapis sugeneruotas +ENABLE\ AUTO\ REFRESH=\u012Ejungti automatin\u012F puslapio atnaujinim\u0105 +Page\ generated=Puslapis sukurtas logout=atsijungti -search=paie\u0161ka +search=paie\u0161kafdf searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/core/src/main/resources/lib/layout/progressiveRendering_lt.properties b/core/src/main/resources/lib/layout/progressiveRendering_lt.properties new file mode 100644 index 0000000000..be4c46fe0e --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_lt.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=Vyksta skai\u010Diavimai. -- GitLab From 5d124998a08bc1d94ba1becfd2ae25978652340b Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:00 -0700 Subject: [PATCH 061/308] Community-contributed localization for Latvian (lv) --- .../hudson/AboutJenkins/index_lv.properties | 1 + .../hudson/PluginManager/advanced_lv.properties | 11 +++++++++++ .../hudson/PluginManager/index_lv.properties | 1 + .../hudson/PluginManager/installed_lv.properties | 13 +++++++++++++ .../hudson/PluginManager/table_lv.properties | 9 ++++++++- .../diagnosis/OldDataMonitor/manage_lv.properties | 10 ++++++++++ .../OldDataMonitor/message_lv.properties | 5 +++++ .../logging/LogRecorder/configure_lv.properties | 8 ++++++++ .../logging/LogRecorder/sidepanel_lv.properties | 6 ++++++ .../logging/LogRecorderManager/all_lv.properties | 3 +++ .../LogRecorderManager/feeds_lv.properties | 5 +++++ .../LogRecorderManager/levels_lv.properties | 6 ++++++ .../logging/LogRecorderManager/new_lv.properties | 3 +++ .../RawHtmlMarkupFormatter/config_lv.properties | 3 +++ .../model/AbstractBuild/index_lv.properties | 10 ++++++++-- .../model/AbstractBuild/tasks_lv.properties | 6 +++--- .../AbstractItem/configure-common_lv.properties | 4 ++++ .../model/AbstractItem/delete_lv.properties | 1 + .../model/AbstractItem/noWorkspace_lv.properties | 4 ++-- .../model/AbstractModelObject/error_lv.properties | 4 ++++ .../model/AbstractProject/changes_lv.properties | 2 ++ .../model/AbstractProject/main_lv.properties | 6 ++++-- .../model/AbstractProject/sidepanel_lv.properties | 8 +++++--- .../Cause/UpstreamCause/description_lv.properties | 4 ++++ .../model/CauseAction/summary_lv.properties | 3 +++ .../config_lv.properties | 5 +++++ .../hudson/model/Computer/builds_lv.properties | 3 +++ .../hudson/model/Computer/configure_lv.properties | 3 +++ .../hudson/model/Computer/delete_lv.properties | 3 +++ .../hudson/model/Computer/index_lv.properties | 2 +- .../hudson/model/Computer/sidepanel_lv.properties | 2 +- .../model/ComputerSet/configure_lv.properties | 4 ++++ .../hudson/model/ComputerSet/index_lv.properties | 1 + .../hudson/model/Job/buildTimeTrend_lv.properties | 1 + .../hudson/model/Job/configure_lv.properties | 2 ++ .../hudson/model/Job/index_lv.properties | 3 +++ .../hudson/model/Job/permalinks_lv.properties | 2 +- .../ListView/configure-entries_lv.properties | 1 + .../model/MyViewsProperty/config_lv.properties | 1 + .../config_lv.properties | 3 +++ .../hudson/model/Run/configure_lv.properties | 4 ++-- .../hudson/model/Run/console_lv.properties | 4 +++- .../hudson/model/Run/logKeep_lv.properties | 1 + .../config_lv.properties | 4 ++++ .../DownloadJob/Failure/status_lv.properties | 4 ++++ .../hudson/model/UpdateCenter/body_lv.properties | 2 ++ .../hudson/model/User/sidepanel_lv.properties | 1 + .../hudson/model/View/configure_lv.properties | 1 + .../hudson/model/View/noJob_lv.properties | 4 ++++ .../AbstractDiskSpaceMonitor/config_lv.properties | 3 +++ .../config_lv.properties | 5 +++++ .../hudson/scm/SCM/project-changes_lv.properties | 1 + .../search/Search/search-failed_lv.properties | 4 ++++ .../loginLink_lv.properties | 3 +++ .../SecurityRealm/loginLink_lv.properties | 3 +++ .../DumbSlave/configure-entries_lv.properties | 7 +++++++ .../slaves/JNLPLauncher/config_lv.properties | 3 +++ .../RetentionStrategy/Demand/config_lv.properties | 3 +++ .../slaves/SlaveComputer/disconnect_lv.properties | 5 +++++ .../slaves/SlaveComputer/systemInfo_lv.properties | 4 ++++ .../hudson/tasks/LogRotator/config_lv.properties | 4 ++++ .../tasks/junit/CaseResult/index_lv.properties | 8 ++++++++ .../tasks/junit/CaseResult/list_lv.properties | 6 ++++++ .../tasks/junit/ClassResult/body_lv.properties | 6 ++++++ .../summary_lv.properties | 3 +++ .../TestResultAction/index_lv.properties | 7 +++++++ .../test/MetaTabulatedResult/body_lv.properties | 4 ++++ .../floatingBox_lv.properties | 2 +- .../tools/JDKInstaller/config_lv.properties | 3 +++ .../tools/ToolInstallation/global_lv.properties | 3 +++ .../ToolLocationNodeProperty/config_lv.properties | 3 +++ .../util/HudsonIsLoading/index_lv.properties | 4 ++++ .../views/BuildButtonColumn/column_lv.properties | 2 ++ .../LastDurationColumn/columnHeader_lv.properties | 2 +- .../views/LastDurationColumn/column_lv.properties | 2 +- .../LastFailureColumn/columnHeader_lv.properties | 2 +- .../views/LastFailureColumn/column_lv.properties | 2 +- .../views/LastSuccessColumn/column_lv.properties | 2 +- .../WeatherColumn/columnHeader_lv.properties | 3 ++- .../widgets/HistoryWidget/entry_lv.properties | 2 +- .../widgets/HistoryWidget/index_lv.properties | 6 +++--- .../management/PluginsLink/info_lv.properties | 3 +++ .../jenkins/model/Jenkins/_cli_lv.properties | 1 + .../jenkins/model/Jenkins/configure_lv.properties | 1 + .../jenkins/model/Jenkins/legend_lv.properties | 15 +++++++++++++++ .../model/Jenkins/loginError_lv.properties | 5 +++++ .../jenkins/model/Jenkins/manage_lv.properties | 3 +++ .../Jenkins/projectRelationship_lv.properties | 1 + .../model/Jenkins/systemInfo_lv.properties | 9 +++++++++ .../form/breadcrumb-config-outline_lv.properties | 3 +++ .../resources/lib/form/slave-mode_lv.properties | 3 +++ .../resources/lib/form/textarea_lv.properties | 4 ++++ .../lib/hudson/buildCaption_lv.properties | 3 +-- .../lib/hudson/buildListTable_lv.properties | 1 + .../lib/hudson/buildProgressBar_lv.properties | 2 +- .../lib/hudson/editableDescription_lv.properties | 2 +- .../resources/lib/hudson/executors_lv.properties | 6 +++--- .../project/config-assignedLabel_lv.properties | 3 +++ .../project/config-buildWrappers_lv.properties | 3 +++ .../hudson/project/config-builders_lv.properties | 4 ++++ .../project/config-disableBuild_lv.properties | 3 +++ .../project/config-publishers2_lv.properties | 4 ++++ .../project/upstream-downstream_lv.properties | 4 ++-- .../lib/hudson/propertyTable_lv.properties | 4 ++++ .../main/resources/lib/hudson/queue_lv.properties | 4 +++- .../resources/lib/hudson/rssBar_lv.properties | 4 ++-- .../lib/hudson/test-result_lv.properties | 4 +++- .../lib/layout/breadcrumbBar_lv.properties | 4 ++++ .../resources/lib/layout/layout_lv.properties | 8 ++++---- .../lib/layout/progressiveRendering_lv.properties | 3 +++ .../src/main/resources/lib/test/bar_lv.properties | 3 ++- 111 files changed, 383 insertions(+), 48 deletions(-) create mode 100644 core/src/main/resources/hudson/PluginManager/advanced_lv.properties create mode 100644 core/src/main/resources/hudson/PluginManager/installed_lv.properties create mode 100644 core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_lv.properties create mode 100644 core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_lv.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorder/configure_lv.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorder/sidepanel_lv.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/all_lv.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/feeds_lv.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/levels_lv.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/new_lv.properties create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_lv.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/configure-common_lv.properties create mode 100644 core/src/main/resources/hudson/model/AbstractModelObject/error_lv.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UpstreamCause/description_lv.properties create mode 100644 core/src/main/resources/hudson/model/CauseAction/summary_lv.properties create mode 100644 core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_lv.properties create mode 100644 core/src/main/resources/hudson/model/Computer/builds_lv.properties create mode 100644 core/src/main/resources/hudson/model/Computer/configure_lv.properties create mode 100644 core/src/main/resources/hudson/model/Computer/delete_lv.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/configure_lv.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_lv.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_lv.properties create mode 100644 core/src/main/resources/hudson/model/StringParameterDefinition/config_lv.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_lv.properties create mode 100644 core/src/main/resources/hudson/model/View/noJob_lv.properties create mode 100644 core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_lv.properties create mode 100644 core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_lv.properties create mode 100644 core/src/main/resources/hudson/search/Search/search-failed_lv.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_lv.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_lv.properties create mode 100644 core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_lv.properties create mode 100644 core/src/main/resources/hudson/slaves/JNLPLauncher/config_lv.properties create mode 100644 core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_lv.properties create mode 100644 core/src/main/resources/hudson/slaves/SlaveComputer/disconnect_lv.properties create mode 100644 core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_lv.properties create mode 100644 core/src/main/resources/hudson/tasks/LogRotator/config_lv.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/CaseResult/index_lv.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/CaseResult/list_lv.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/ClassResult/body_lv.properties create mode 100644 core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_lv.properties create mode 100644 core/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/TestResultAction/index_lv.properties create mode 100644 core/src/main/resources/hudson/tools/JDKInstaller/config_lv.properties create mode 100644 core/src/main/resources/hudson/tools/ToolInstallation/global_lv.properties create mode 100644 core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_lv.properties create mode 100644 core/src/main/resources/hudson/util/HudsonIsLoading/index_lv.properties create mode 100644 core/src/main/resources/jenkins/management/PluginsLink/info_lv.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/legend_lv.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/loginError_lv.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/systemInfo_lv.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_lv.properties create mode 100644 core/src/main/resources/lib/form/slave-mode_lv.properties create mode 100644 core/src/main/resources/lib/form/textarea_lv.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-assignedLabel_lv.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-buildWrappers_lv.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-builders_lv.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-disableBuild_lv.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-publishers2_lv.properties create mode 100644 core/src/main/resources/lib/hudson/propertyTable_lv.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_lv.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_lv.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_lv.properties b/core/src/main/resources/hudson/AboutJenkins/index_lv.properties index c07a01fe91..5b6d1d23be 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_lv.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_lv.properties @@ -22,3 +22,4 @@ about=Par Jenkins {0} dependencies=Jenkins ir atkar\u012Bgs no tre\u0161\u0101s puses bibliot\u0113k\u0101m. +plugin.dependencies=Licences un atkar\u012Bbu inform\u0101cija par spraud\u0146iem: diff --git a/core/src/main/resources/hudson/PluginManager/advanced_lv.properties b/core/src/main/resources/hudson/PluginManager/advanced_lv.properties new file mode 100644 index 0000000000..a1dcbc726f --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/advanced_lv.properties @@ -0,0 +1,11 @@ +# This file is under the MIT License by authors + +Check\ now=P\u0101rbaud\u012Bt tagad +File=Fails +HTTP\ Proxy\ Configuration=HTTP Starpniekservera konfigur\u0101cija +Submit=Nos\u016Bt\u012Bt +Update\ Site=Aug\u0161upl\u0101des vietne +Upload=Aug\u0161upl\u0101d\u0113t +Upload\ Plugin=Aug\u0161upl\u0101d\u0113t spraudni +lastUpdated=Atjaunin\u0101jumu inform\u0101cija ieg\u016Bta: pirms {0} +uploadtext=J\u016Bs varat aug\u0161upl\u0101d\u0113t .hpi failu lai uzst\u0101d\u012Btu spraudni \u0101rpus centr\u0101l\u0101 spraud\u0146u repozitorija. diff --git a/core/src/main/resources/hudson/PluginManager/index_lv.properties b/core/src/main/resources/hudson/PluginManager/index_lv.properties index d530c17f88..cea2a3beda 100644 --- a/core/src/main/resources/hudson/PluginManager/index_lv.properties +++ b/core/src/main/resources/hudson/PluginManager/index_lv.properties @@ -24,3 +24,4 @@ All=Visus None=Nevienu Select=Iez\u012Bm\u0113t UpdatePageDescription=\u0160\u012B lapa uzr\u0101da sarakstu ar pa\u0161laik lietotajiem spraud\u0146iem +UpdatePageLegend=Atsp\u0113jot\u0101s rindas jau tiku\u0161as atjaunotas un t\u0101s gaida p\u0101rstart\u0113\u0161ana. No\u0113not\u0101s, bet iez\u012Bm\u0113jam\u0101s rindas ir progres\u0101 vai neveiksm\u012Bgas. diff --git a/core/src/main/resources/hudson/PluginManager/installed_lv.properties b/core/src/main/resources/hudson/PluginManager/installed_lv.properties new file mode 100644 index 0000000000..27b7271b2c --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/installed_lv.properties @@ -0,0 +1,13 @@ +# This file is under the MIT License by authors + +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Izmai\u0146as st\u0101sies sp\u0113k\u0101 p\u0113c Jenkins p\u0101rstart\u0113\u0161anas +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/table_lv.properties b/core/src/main/resources/hudson/PluginManager/table_lv.properties index d19e31b1fe..cf863360bb 100644 --- a/core/src/main/resources/hudson/PluginManager/table_lv.properties +++ b/core/src/main/resources/hudson/PluginManager/table_lv.properties @@ -22,7 +22,14 @@ Check\ to\ install\ the\ plugin=Ie\u0137es\u0113 lai uzst\u0101d\u012Btu spraud\u0146us Click\ this\ heading\ to\ sort\ by\ category=Noklik\u0161\u0137ini \u0161o virsrakstu, lai k\u0101rtotu p\u0113c kategorijas +Download\ now\ and\ install\ after\ restart=Lejupl\u0101d\u0113t tagad un instal\u0113t p\u0113c p\u0101rstart\u0113\u0161anas +Filter=Filtrs +Inactive=Neakt\u012Bvs Install=Uzst\u0101d\u012Bt -Installed=Uzinst\u0101d\u012Btie +Install\ without\ restart=Instal\u0113t bez p\u0101rstart\u0113\u0161anas +Installed=Uzst\u0101d\u012Btie Name=Nosaukums +No\ updates=Nav atjaunin\u0101jumu Version=Versija +compatWarning=Br\u012Bdin\u0101jums: Jaun\u0101 versija nav savietojama ar eso\u0161o uzst\u0101d\u012Bto spraud\u0146a versiju. Jobs, kuri izmanto \u0161o spraudni, var b\u016Bt par iemeslu \u0161o Jobu p\u0101rkonfigur\u0101cijai. +coreWarning=Br\u012Bdin\u0101jums: \u0160is spraudnis ir paredz\u0113ts Jenkins {0} un jaun\u0101kai versijai. Tas var gan str\u0101d\u0101t, gan nestr\u0101d\u0101t ar J\u016Bsu Jenkins instal\u0101ciju. diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_lv.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_lv.properties new file mode 100644 index 0000000000..22fdeca807 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_lv.properties @@ -0,0 +1,10 @@ +# This file is under the MIT License by authors + +Discard\ Unreadable\ Data=Nelietot nenolas\u0101mos datus +Error=K\u013C\u016Bda +Manage\ Old\ Data=P\u0101rvald\u012Bt vecos datus +Name=V\u0101rds +No\ old\ data\ was\ found.=Vecie dati nav atrasti. +Type=Tips +Unreadable\ Data=Nenolas\u0101mi dati +Version=Versija diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_lv.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_lv.properties new file mode 100644 index 0000000000..355b635034 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_lv.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Dismiss=Izlaist +Manage=P\u0101rvald\u012Bt +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Jums ir saglab\u0101ti dati, kuri ir vec\u0101k\u0101 form\u0101ta vai ir nenolas\u0101mi. diff --git a/core/src/main/resources/hudson/logging/LogRecorder/configure_lv.properties b/core/src/main/resources/hudson/logging/LogRecorder/configure_lv.properties new file mode 100644 index 0000000000..1ff5e4dcbf --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorder/configure_lv.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +List\ of\ loggers\ and\ the\ log\ levels\ to\ record=Uzskait\u012Bt visu \u017Eurnal\u0113t\u0101jus un \u017Eurn\u0101l satura l\u012Bme\u0146us, kurus ierakst\u012Bt +Log\ level=\u017Durn\u0101la satura l\u012Bmenis +Logger=\u017Durnal\u0113tajs +Loggers=\u017Durnal\u0113t\u0101ji +Name=Nosaukums +Save=Saglab\u0101t diff --git a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_lv.properties b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_lv.properties new file mode 100644 index 0000000000..d00a921a29 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_lv.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Back\ to\ Loggers=Atpaka\u013C uz \u017Eurnal\u0113t\u0101jiem +Configure=Konfigur\u0113t +Delete=Dz\u0113st +Log\ records=\u017Durn\u0101la ieraksti diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/all_lv.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/all_lv.properties new file mode 100644 index 0000000000..c342e07e25 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/all_lv.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ Log=Jenkins logs diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_lv.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_lv.properties new file mode 100644 index 0000000000..a97055944e --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_lv.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +>\ SEVERE=> SMAGS +>\ WARNING=> BR\u012ADIN\u0100JUMS +All=Visi diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_lv.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_lv.properties new file mode 100644 index 0000000000..f69399af5f --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_lv.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Adjust\ Levels=Piel\u0101got l\u012Bme\u0146us +Level=L\u012Bmenis +Logger\ Configuration=\u017Durnal\u0113t\u0101ja Konfigur\u0101cija +Name=Nosaukums diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/new_lv.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/new_lv.properties new file mode 100644 index 0000000000..ea374b9e4b --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/new_lv.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=Nosaukums diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_lv.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_lv.properties new file mode 100644 index 0000000000..e89ef35678 --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_lv.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +disableSyntaxHighlighting=Atsp\u0113jot sintakses izgaismo\u0161anu diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_lv.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_lv.properties index 305f72cbff..a6b5bec5db 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_lv.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_lv.properties @@ -21,9 +21,15 @@ # THE SOFTWARE. Build=B\u016Bv\u0113jums +Build\ Artifacts=Artefakti Changes\ in\ dependency=Atkar\u012Bbu izmai\u0146as +Downstream\ Builds=Lejupstraumes b\u016Bv\u0113jumi +Failed\ to\ determine=Neizdev\u0101s noteikt Not\ yet\ determined=V\u0113l nav noteikts -Took=Pras\u012Bja +Took=Aiz\u0146\u0113ma +beingExecuted=B\u016Bv\u0113jums tiek izpild\u012Bts {0} detail=s\u012Bk\u0101k +log=\u017Eurn\u0101ls +none=neviens on=uz -startedAgo=S\u0101kts pirms {0} +startedAgo=Uzs\u0101kts pirms {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_lv.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_lv.properties index f16ea86258..588b980b9c 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_lv.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_lv.properties @@ -22,9 +22,9 @@ Back\ to\ Project=Atpaka\u013C uz projektu Changes=Izmai\u0146as -Console\ Output=Konsoles izvaddati +Console\ Output=Konsoles izvads View\ as\ plain\ text=Rad\u012Bt k\u0101 neformat\u0113tu tekstu -Edit\ Build\ Information=Redi\u0123\u0113t b\u016Bv\u0113juma inform\u0101ciju -Status=St\u0101voklis +Edit\ Build\ Information=Labot b\u016Bv\u0113juma inform\u0101ciju +Status=Statuss View\ Build\ Information=Att\u0113lot b\u016Bv\u0113juma inform\u0101ciju raw=pamatforma diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_lv.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_lv.properties new file mode 100644 index 0000000000..c65f457e99 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_lv.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +JDK\ to\ be\ used\ for\ this\ project=Lietotais JDK \u0161im projektam +default.value=(Noklus\u0113ti) diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_lv.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_lv.properties index ae17484ffc..3da1af6362 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_lv.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_lv.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Yes=J\u0101 +blurb=Vai j\u016Bs esat dro\u0161s par {0} ''''{1}'''' dz\u0113s\u0161anu? diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_lv.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_lv.properties index 2b635bf735..6274786530 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_lv.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_lv.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are:=Nav darbavietas \u0161im projektam. Iesp\u0113jamie iemesli: -text=Palaist b\u016Bv\u0113jumi lai izveidotu darbavietu priek\u0161 Jenkins. +There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are:=\u0160im projektam nav nevienas darbavietas. Tam var\u0113tu b\u016Bt \u0161\u0101di iemesli: +text=Palaist b\u016Bv\u0113jumu lai izveidotu darbavietu priek\u0161 Jenkins. diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/error_lv.properties b/core/src/main/resources/hudson/model/AbstractModelObject/error_lv.properties new file mode 100644 index 0000000000..567829432a --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractModelObject/error_lv.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Detail...=S\u012Bk\u0101k... +Error=K\u013C\u016Bda diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_lv.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_lv.properties index 8be382bdc9..0a322242aa 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_lv.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_lv.properties @@ -21,3 +21,5 @@ # THE SOFTWARE. Changes=Izmai\u0146as +from.label=no #{0} +to.label=l\u012Bdz #{0} diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_lv.properties b/core/src/main/resources/hudson/model/AbstractProject/main_lv.properties index 5dc832d8f8..8e71cc424c 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_lv.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_lv.properties @@ -20,5 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Recent\ Changes=Nesen\u0101k\u0101s izmai\u0146as -Workspace=Darbavieta +Last\ Successful\ Artifacts=P\u0113d\u0113jie veiksm\u012Bgie artefakti +Latest\ Test\ Result=P\u0113d\u0113jie testa rezult\u0101ti +Recent\ Changes=Nesen\u0101s izmai\u0146as +Workspace=Darbavirsma diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lv.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lv.properties index fdf43d783b..7f65c98e37 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lv.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lv.properties @@ -20,11 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Atpaka\u013C uz paneli +Back\ to\ Dashboard=Atpaka\u013C uz m\u0113rinstrumentu paneli Build\ scheduled=B\u016Bv\u0113jums iepl\u0101nots Changes=Izmai\u0146as Configure=Konfigur\u0113t Status=Statuss -Wipe\ Out\ Workspace=Izt\u012Br\u012Bt darbavietu -Workspace=Darbavieta +Wipe\ Out\ Workspace=Izt\u012Br\u012Bt darbavirsmu +Workspace=Darbavirsma delete=Dz\u0113st {0} +delete.confirm=Vai tie\u0161\u0101m dz\u0113st {0}, \u2018{1}\u2019? +wipe.out.confirm=Vai esi p\u0101rliecin\u0101ts, ka v\u0113lies izt\u012Br\u012Bt darba mapi? diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_lv.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_lv.properties new file mode 100644 index 0000000000..84e30925ff --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_lv.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +caused_by=s\u0101kotn\u0113ji izrais\u012Bjis: +started_by_project=S\u0101kts no aug\u0161upstraumes projekta {0} b\u016Bv\u0113juma {1} diff --git a/core/src/main/resources/hudson/model/CauseAction/summary_lv.properties b/core/src/main/resources/hudson/model/CauseAction/summary_lv.properties new file mode 100644 index 0000000000..816eb26a9a --- /dev/null +++ b/core/src/main/resources/hudson/model/CauseAction/summary_lv.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Ntimes=({0} reizes) diff --git a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_lv.properties b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_lv.properties new file mode 100644 index 0000000000..ffe0b6521f --- /dev/null +++ b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_lv.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Choices=Izv\u0113les +Description=Apraksts +Name=Nosaukums diff --git a/core/src/main/resources/hudson/model/Computer/builds_lv.properties b/core/src/main/resources/hudson/model/Computer/builds_lv.properties new file mode 100644 index 0000000000..8723c28b70 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/builds_lv.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title=B\u016Bv\u0113jumu v\u0113sture uz {0} diff --git a/core/src/main/resources/hudson/model/Computer/configure_lv.properties b/core/src/main/resources/hudson/model/Computer/configure_lv.properties new file mode 100644 index 0000000000..ea374b9e4b --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/configure_lv.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=Nosaukums diff --git a/core/src/main/resources/hudson/model/Computer/delete_lv.properties b/core/src/main/resources/hudson/model/Computer/delete_lv.properties new file mode 100644 index 0000000000..3d7aed4a56 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/delete_lv.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Yes=J\u0101 diff --git a/core/src/main/resources/hudson/model/Computer/index_lv.properties b/core/src/main/resources/hudson/model/Computer/index_lv.properties index 194fe12aa9..35a7a4017a 100644 --- a/core/src/main/resources/hudson/model/Computer/index_lv.properties +++ b/core/src/main/resources/hudson/model/Computer/index_lv.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Labels:=Birkas: +Labels:=Birkas: None=Neveins title.projects_tied_on=Projekti, kuri piesaist\u012Bti pie {0} diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_lv.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_lv.properties index 20b6a83a3e..2b1f18e714 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_lv.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_lv.properties @@ -23,7 +23,7 @@ Back\ to\ List=Atpaka\u013C pie saraksta Build\ History=B\u016Bv\u0113jumu v\u0113sture Configure=Konfigur\u0113t -Delete\ Slave=D\u017E\u0113st pak\u0101rtoto izpild\u012Btaju +Delete\ Slave=Dz\u0113st pak\u0101rtoto izpild\u012Btaju Load\ Statistics=Noslodzes statistika Script\ Console=Skriptu konsole Status=St\u0101voklis diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_lv.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_lv.properties new file mode 100644 index 0000000000..bd2285970f --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_lv.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +OK=Labi +Preventive\ Node\ Monitoring=Aizsarg\u0101jo\u0161\u0101 Nodes Uzraudz\u012Bba diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_lv.properties b/core/src/main/resources/hudson/model/ComputerSet/index_lv.properties index 6d224780f5..3299a2a7ba 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_lv.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_lv.properties @@ -21,5 +21,6 @@ # THE SOFTWARE. Configure=Konfigur\u0113t +Data\ obtained=Dati ieg\u016Bti Name=Nosaukums Refresh\ status=Atsvaidzin\u0101t st\u0101vokli diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_lv.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_lv.properties index 91f25b9b8e..df8252d96f 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_lv.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_lv.properties @@ -23,5 +23,6 @@ Build=B\u016Bv\u0113jums Build\ Time\ Trend=B\u016Bv\u0113jumu laika tendence Duration=Ilgums +More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=Tendences atskaitei nepiecie\u0161ams vismaz 1 b\u016Bv\u0113jums. Slave=Slave Timeline=Laika nogrieznis diff --git a/core/src/main/resources/hudson/model/Job/configure_lv.properties b/core/src/main/resources/hudson/model/Job/configure_lv.properties index e616217fad..b5608a91ae 100644 --- a/core/src/main/resources/hudson/model/Job/configure_lv.properties +++ b/core/src/main/resources/hudson/model/Job/configure_lv.properties @@ -21,5 +21,7 @@ # THE SOFTWARE. Description=Apraksts +Discard\ Old\ Builds=Dz\u0113st vecos b\u016Bv\u0113jumus LOADING=IEL\u0100D\u0112 +Save=Saglab\u0101t name={0} nosaukums diff --git a/core/src/main/resources/hudson/model/Job/index_lv.properties b/core/src/main/resources/hudson/model/Job/index_lv.properties new file mode 100644 index 0000000000..35d10330b3 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_lv.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Disable\ Project=Deaktiviz\u0113t projektu diff --git a/core/src/main/resources/hudson/model/Job/permalinks_lv.properties b/core/src/main/resources/hudson/model/Job/permalinks_lv.properties index 42e5f1c075..004d30e448 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_lv.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_lv.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Permalinks=Permasaites +Permalinks=Past\u0101v\u012Bg\u0101s saites diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_lv.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_lv.properties index efa3977c0b..f97619694d 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_lv.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_lv.properties @@ -27,6 +27,7 @@ Disabled\ jobs\ only=Tikai atsl\u0113gtie darbi Enabled\ jobs\ only=Tikai iesl\u0113gtie darbi Job\ Filters=Darbu filtri Jobs=Darbi +Recurse\ in\ subfolders=Rekursija apak\u0161direktorij\u0101s Regular\ expression=Regul\u0101r\u0101 izteiksme Status\ Filter=Statusa filtrs Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Lietot regul\u0101r\u0101s izteiksmes, lai iek\u013Cautu darbus \u0161aj\u0101 skat\u0101 diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_lv.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_lv.properties index 37cf9d8a99..96f3fc3d3c 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/config_lv.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_lv.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Default\ View=Noklus\u0113tais skats +description=Noklus\u0113ti izv\u0113l\u0113tais skats, veicot ie\u0161anu uz lietot\u0101ja priv\u0101tajiem skatiem diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_lv.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_lv.properties new file mode 100644 index 0000000000..dcea0b8118 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_lv.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Add\ Parameter=Pievienot parametru diff --git a/core/src/main/resources/hudson/model/Run/configure_lv.properties b/core/src/main/resources/hudson/model/Run/configure_lv.properties index 0e5de8f8da..9558fc9982 100644 --- a/core/src/main/resources/hudson/model/Run/configure_lv.properties +++ b/core/src/main/resources/hudson/model/Run/configure_lv.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Description=Apraksts -DisplayName=Atr\u0101d\u012B\u0161anas v\u0101rds -LOADING=IEL\u0100D\u0112JU +DisplayName=Nosaukums +LOADING=Iel\u0101d\u0113ju... Save=Saglab\u0101t diff --git a/core/src/main/resources/hudson/model/Run/console_lv.properties b/core/src/main/resources/hudson/model/Run/console_lv.properties index d8248b0160..77b52000b0 100644 --- a/core/src/main/resources/hudson/model/Run/console_lv.properties +++ b/core/src/main/resources/hudson/model/Run/console_lv.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Konsoles izvaddati +Console\ Output=Konsoles izvads +View\ as\ plain\ text=R\u0101d\u012Bt k\u0101 vienk\u0101r\u0161u tekstu +skipSome=Izlai\u017E {0,number,integer} KB.. Viss \u017Eurn\u0101ls diff --git a/core/src/main/resources/hudson/model/Run/logKeep_lv.properties b/core/src/main/resources/hudson/model/Run/logKeep_lv.properties index 209cd839dd..8f4b761fce 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_lv.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_lv.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Don''t\ keep\ this\ build\ forever=Nesaglab\u0101t \u0161o b\u016Bv\u0113jumu m\u016B\u017E\u012Bgi Keep\ this\ build\ forever=Glab\u0101t \u0161o b\u016Bv\u0113jumu visu laiku diff --git a/core/src/main/resources/hudson/model/StringParameterDefinition/config_lv.properties b/core/src/main/resources/hudson/model/StringParameterDefinition/config_lv.properties new file mode 100644 index 0000000000..8e71887820 --- /dev/null +++ b/core/src/main/resources/hudson/model/StringParameterDefinition/config_lv.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Description=Apraksts +Name=Nosaukums diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_lv.properties new file mode 100644 index 0000000000..bb809aa7dd --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_lv.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Details=S\u012Bk\u0101k +Failure=Neveiksme diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_lv.properties index 5cf25f14f4..24ee51d534 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_lv.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_lv.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Go\ back\ to\ the\ top\ page=Iet atpaka\u013C uz iepriek\u0161\u0113jo lapu warning=P\u0101rstart\u0113t Jenkins kad instal\u0101cija ir pabeigta un nav neviens str\u0101d\u0101jo\u0161s darbs +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=j\u016Bs varat s\u0101kt lietot uzst\u0101d\u012Btos spraud\u0146us uzreiz diff --git a/core/src/main/resources/hudson/model/User/sidepanel_lv.properties b/core/src/main/resources/hudson/model/User/sidepanel_lv.properties index a20e21004d..6643b74b61 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_lv.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_lv.properties @@ -22,6 +22,7 @@ Builds=B\u016Bv\u0113jumi Configure=Konfigur\u0113t +Delete=Dz\u0113st My\ Views=Mani Skati People=Cilv\u0113ki Status=St\u0101voklis diff --git a/core/src/main/resources/hudson/model/View/configure_lv.properties b/core/src/main/resources/hudson/model/View/configure_lv.properties index 075796012a..ad50141170 100644 --- a/core/src/main/resources/hudson/model/View/configure_lv.properties +++ b/core/src/main/resources/hudson/model/View/configure_lv.properties @@ -24,3 +24,4 @@ Description=Apraksts Filter\ build\ executors=Filtr\u0113t b\u016Bv\u0113t\u0101jus Filter\ build\ queue=Filtr\u0113t b\u016Bv\u0113jumu rindu Name=V\u0101rds +OK=Labi diff --git a/core/src/main/resources/hudson/model/View/noJob_lv.properties b/core/src/main/resources/hudson/model/View/noJob_lv.properties new file mode 100644 index 0000000000..20c54db27c --- /dev/null +++ b/core/src/main/resources/hudson/model/View/noJob_lv.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +description_1=\u0160im skatam nav neviena saisto\u0161\u0101 projekta. +description_2=J\u016Bs varat vai nu pievienot eso\u0161os projektus \u0161im skatam, vai ar\u012B izveidot jaunu projektu \u0161im skatam. diff --git a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_lv.properties b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_lv.properties new file mode 100644 index 0000000000..842cb6559e --- /dev/null +++ b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_lv.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Free\ Space\ Threshold=Br\u012Bv\u0101s Vietas Uztur\u0113\u0161ana diff --git a/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_lv.properties b/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_lv.properties new file mode 100644 index 0000000000..470d235356 --- /dev/null +++ b/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_lv.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +JVM\ options=JVM opcijas +Path\ to\ java\ executable=Ce\u013C\u0161 uz java izpild\u0101mo failu +Run\ service\ as=Palaist servisu k\u0101 diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_lv.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_lv.properties index 2663e7ea10..273852ae5b 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_lv.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_lv.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +No\ builds.=Nav neviena b\u016Bv\u0113juma. No\ changes\ in\ any\ of\ the\ builds.=Nevien\u0101 no b\u016Bv\u0113jumiem izmai\u0146u nav. detail=detaliz\u0113ti diff --git a/core/src/main/resources/hudson/search/Search/search-failed_lv.properties b/core/src/main/resources/hudson/search/Search/search-failed_lv.properties new file mode 100644 index 0000000000..1822266642 --- /dev/null +++ b/core/src/main/resources/hudson/search/Search/search-failed_lv.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Nothing\ seems\ to\ match.=Liekas, ka nekas neatbilst mekl\u0113jamajam. +Search\ for=Mekl\u0113t diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_lv.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_lv.properties new file mode 100644 index 0000000000..f62c827a78 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_lv.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +sign\ up=Piere\u0123istr\u0113t ies diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_lv.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_lv.properties new file mode 100644 index 0000000000..948ee8aea7 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_lv.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +login=Ieiet diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_lv.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_lv.properties new file mode 100644 index 0000000000..202537429e --- /dev/null +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_lv.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +#\ of\ executors=# izpild\u012Bt\u0101ju +Description=Apraksts +Labels=Markas +Launch\ method=Palaiz\u0161anas metode +Remote\ FS\ root=Att\u0101lin\u0101t\u0101 FS s\u0101kumdirektorija diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/config_lv.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_lv.properties new file mode 100644 index 0000000000..9d75533aa4 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_lv.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +JVM\ options=JVM opcijas diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_lv.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_lv.properties new file mode 100644 index 0000000000..8e6905db4c --- /dev/null +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_lv.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=D\u012Bkst\u0101ves aizture ir oblig\u0101ta un t\u0101s v\u0113rt\u012Bbai ir j\u0101b\u016Bt skaitlim. diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/disconnect_lv.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/disconnect_lv.properties new file mode 100644 index 0000000000..2e69c9e7bc --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/disconnect_lv.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Are\ you\ sure\ about\ disconnecting?=Vai J\u016Bs esat dro\u0161s par apvieno\u0161anos? +Yes=J\u0101 +blurb=Papildus J\u016Bs varat izskaidrot citiem atvieno\u0161an\u0101s iemeslus: diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_lv.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_lv.properties new file mode 100644 index 0000000000..a79e3b7339 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_lv.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Environment\ Variables=Vides main\u012Bgie +System\ Properties=Sist\u0113mas parametri diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_lv.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_lv.properties new file mode 100644 index 0000000000..23ccde5c3e --- /dev/null +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_lv.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Days\ to\ keep\ builds=B\u016Bv\u0113jumus glab\u0101t tik dienas +Max\ #\ of\ builds\ to\ keep=Maksim\u0101lais paturamo b\u016Bvejumu skaits diff --git a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_lv.properties b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_lv.properties new file mode 100644 index 0000000000..e8a3b1799b --- /dev/null +++ b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_lv.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Error\ Message=K\u013C\u016Bdas zi\u0146ojums +Standard\ Output=Standarta Izvaddati +failingFor=Izg\u0101\u017Eas p\u0113c p\u0113d\u0113jiem {0} {0,choice,0#builds|1#build|1 Aptuvenais atliku\u0161ais laiks: {1} +text=S\u0101ka pirms {0}
Palicis aptuveni: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_lv.properties b/core/src/main/resources/lib/hudson/editableDescription_lv.properties index dba232a389..d48f05b723 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_lv.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_lv.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=pievienot aprakstu +add\ description=Pievienot aprakstu edit\ description=redi\u0123\u0113t aprakstu diff --git a/core/src/main/resources/lib/hudson/executors_lv.properties b/core/src/main/resources/lib/hudson/executors_lv.properties index 22112e96e7..7daa529fe3 100644 --- a/core/src/main/resources/lib/hudson/executors_lv.properties +++ b/core/src/main/resources/lib/hudson/executors_lv.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=B\u016Bv\u0113jumu izpild\u012Bt\u0101ja statuss. +Build\ Executor\ Status=B\u016Bv\u0113jumu izpildes statuss Building=B\u016Bv\u0113ju -Idle=D\u012Bkst\u0101v\u0113 +Idle=D\u012Bkst\u0101ve Master=Galvenais -Status=Statu +Status=Statuss offline=bezsait\u0113 terminate\ this\ build=p\u0101rtraukt \u0161o b\u016Bv\u0113jumu diff --git a/core/src/main/resources/lib/hudson/project/config-assignedLabel_lv.properties b/core/src/main/resources/lib/hudson/project/config-assignedLabel_lv.properties new file mode 100644 index 0000000000..3e3ad397fd --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-assignedLabel_lv.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Restrict\ where\ this\ project\ can\ be\ run=Ierobe\u017Eot, kur \u0161is projekts var b\u016Bt izpild\u0101ms diff --git a/core/src/main/resources/lib/hudson/project/config-buildWrappers_lv.properties b/core/src/main/resources/lib/hudson/project/config-buildWrappers_lv.properties new file mode 100644 index 0000000000..60fba7cbbe --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-buildWrappers_lv.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Build\ Environment=B\u016Bv\u0113juma vide diff --git a/core/src/main/resources/lib/hudson/project/config-builders_lv.properties b/core/src/main/resources/lib/hudson/project/config-builders_lv.properties new file mode 100644 index 0000000000..d4d7c1fe73 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-builders_lv.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Add\ build\ step=Pievienot b\u016Bv\u0113juma soli +Build=B\u016Bv\u0113jums diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_lv.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_lv.properties new file mode 100644 index 0000000000..5251258cf7 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_lv.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Jauni b\u016Bv\u0113jumi netiks veikti l\u012Bdz projekts netiks iesp\u0113jots diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_lv.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_lv.properties new file mode 100644 index 0000000000..0a3620f283 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_lv.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Add\ post-build\ action=Pievienot p\u0113c-b\u016Bv\u0113juma darb\u012Bbas +Post-build\ Actions=P\u0113c-b\u016Bv\u0113juma darb\u012Bbas diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_lv.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_lv.properties index 96d5165806..0c9baf5d72 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_lv.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_lv.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Downstream\ Projects=Lejupstruames projekti -Upstream\ Projects=Aug\u0161upstraumes projekti +Downstream\ Projects=Sekojo\u0161ie projekti +Upstream\ Projects=Iepriek\u0161\u0113jie projekti diff --git a/core/src/main/resources/lib/hudson/propertyTable_lv.properties b/core/src/main/resources/lib/hudson/propertyTable_lv.properties new file mode 100644 index 0000000000..d7d9e66e13 --- /dev/null +++ b/core/src/main/resources/lib/hudson/propertyTable_lv.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Name=Nosaukums +Value=V\u0113rt\u012Bba diff --git a/core/src/main/resources/lib/hudson/queue_lv.properties b/core/src/main/resources/lib/hudson/queue_lv.properties index 95ecc1c0d0..a0797366b0 100644 --- a/core/src/main/resources/lib/hudson/queue_lv.properties +++ b/core/src/main/resources/lib/hudson/queue_lv.properties @@ -22,5 +22,7 @@ Build\ Queue=B\u016Bv\u0113jumu rinda Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins tiks izsl\u0113gts. Turpm\u0101ki b\u016Bv\u0113jumi netiks izpild\u012Bti. -No\ builds\ in\ the\ queue.=Rind\u0101 nav b\u016Bv\u0113jumu. +No\ builds\ in\ the\ queue.=Rind\u0101 nav b\u016Bv\u0113jumu +WaitingFor=Gaidu uz {0} +WaitingSince=Gaidu kop\u0161 {0} cancel=Atsaukt diff --git a/core/src/main/resources/lib/hudson/rssBar_lv.properties b/core/src/main/resources/lib/hudson/rssBar_lv.properties index a450fccaee..ff74dbcf20 100644 --- a/core/src/main/resources/lib/hudson/rssBar_lv.properties +++ b/core/src/main/resources/lib/hudson/rssBar_lv.properties @@ -22,5 +22,5 @@ Legend=Le\u0123enda for\ all=visiem -for\ failures=neveiksm\u0113m -for\ just\ latest\ builds=tikai jaun\u0101kajiem b\u016Bv\u0113jumiem +for\ failures=k\u013C\u016Bm\u0113m +for\ just\ latest\ builds=p\u0113d\u0113jiem b\u016Bv\u0113jumiem diff --git a/core/src/main/resources/lib/hudson/test-result_lv.properties b/core/src/main/resources/lib/hudson/test-result_lv.properties index b882ccfa7e..2080abcfbd 100644 --- a/core/src/main/resources/lib/hudson/test-result_lv.properties +++ b/core/src/main/resources/lib/hudson/test-result_lv.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -no\ failures=nav k\u013C\u016Bdu +multifailures="{0} izg\u0101z\u0161an\u0101s {1}" +no\ failures=nav k\u013C\u016Bmju +no\ tests=testu nav diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_lv.properties b/core/src/main/resources/lib/layout/breadcrumbBar_lv.properties new file mode 100644 index 0000000000..18ee12ca92 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_lv.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=ATSP\u0112JOT AUTOM\u0100TISKO ATSVAIDZIN\u0100S\u0100NU +ENABLE\ AUTO\ REFRESH=Ieslegt automatisku atjauno\u0161anu diff --git a/core/src/main/resources/lib/layout/layout_lv.properties b/core/src/main/resources/lib/layout/layout_lv.properties index 6afafd2663..bbefd944a0 100644 --- a/core/src/main/resources/lib/layout/layout_lv.properties +++ b/core/src/main/resources/lib/layout/layout_lv.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. DISABLE\ AUTO\ REFRESH=ATSP\u0112JOT AUTOM\u0100TISKO -ENABLE\ AUTO\ REFRESH=Iesp\u0113jot autom\u0101tisko atsvaidzin\u0101\u0161anu -Page\ generated=Lappuse izveidota -logout=Izlogoties -search=Mek\u0113t +ENABLE\ AUTO\ REFRESH=Atjaunot automatiski +Page\ generated=Lapa \u0123ener\u0113ta +logout=Iziet +search=Mekl\u0113t searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/core/src/main/resources/lib/layout/progressiveRendering_lv.properties b/core/src/main/resources/lib/layout/progressiveRendering_lv.properties new file mode 100644 index 0000000000..72b909704e --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_lv.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=Skait\u013Co\u0161ana tiek veikta. diff --git a/core/src/main/resources/lib/test/bar_lv.properties b/core/src/main/resources/lib/test/bar_lv.properties index 8df1f39ea4..2ab160480a 100644 --- a/core/src/main/resources/lib/test/bar_lv.properties +++ b/core/src/main/resources/lib/test/bar_lv.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -failures={0} izg\u0101z\u0161an\u0101s reizes +No\ tests=Testu nav +failures={0} neveiksm\u012Bgi testi tests={0} testi -- GitLab From 609d4e2511571919688e195fd8da7c19f65b2cdd Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:00 -0700 Subject: [PATCH 062/308] Community-contributed localization for Macedonian (mk) --- .../hudson/model/AbstractBuild/sidepanel_mk.properties | 3 +++ .../hudson/model/AbstractBuild/tasks_mk.properties | 5 +++++ .../main/resources/hudson/model/AllView/noJob_mk.properties | 3 +++ .../main/resources/hudson/model/Run/delete_mk.properties | 3 +++ .../hudson/views/BuildButtonColumn/column_mk.properties | 3 +++ .../views/LastDurationColumn/columnHeader_mk.properties | 3 +++ .../src/main/resources/lib/hudson/buildHealth_mk.properties | 3 +++ .../resources/lib/hudson/editableDescription_mk.properties | 3 +++ core/src/main/resources/lib/hudson/executors_mk.properties | 3 +++ core/src/main/resources/lib/hudson/iconSize_mk.properties | 3 +++ core/src/main/resources/lib/hudson/rssBar_mk.properties | 6 ++++++ .../main/resources/lib/layout/breadcrumbBar_mk.properties | 3 +++ core/src/main/resources/lib/layout/layout_mk.properties | 6 ++++++ 13 files changed, 47 insertions(+) create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_mk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_mk.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_mk.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_mk.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_mk.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_mk.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_mk.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_mk.properties create mode 100644 core/src/main/resources/lib/hudson/executors_mk.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_mk.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_mk.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_mk.properties create mode 100644 core/src/main/resources/lib/layout/layout_mk.properties diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_mk.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_mk.properties new file mode 100644 index 0000000000..5ffa4f7005 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_mk.properties @@ -0,0 +1,3 @@ +# 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/tasks_mk.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_mk.properties new file mode 100644 index 0000000000..b9f726fe53 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_mk.properties @@ -0,0 +1,5 @@ +# 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/AllView/noJob_mk.properties b/core/src/main/resources/hudson/model/AllView/noJob_mk.properties new file mode 100644 index 0000000000..636f006bca --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_mk.properties @@ -0,0 +1,3 @@ +# 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/Run/delete_mk.properties b/core/src/main/resources/hudson/model/Run/delete_mk.properties new file mode 100644 index 0000000000..cb4c33c08e --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_mk.properties @@ -0,0 +1,3 @@ +# 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/views/BuildButtonColumn/column_mk.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_mk.properties new file mode 100644 index 0000000000..443ad83ee1 --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_mk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Schedule\ a\ build=\u0417\u0430\u043A\u0430\u0436\u0438 build-\u0430\u045A\u0435 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_mk.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_mk.properties new file mode 100644 index 0000000000..8aed61546c --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_mk.properties @@ -0,0 +1,3 @@ +# 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/lib/hudson/buildHealth_mk.properties b/core/src/main/resources/lib/hudson/buildHealth_mk.properties new file mode 100644 index 0000000000..c55807b8b0 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_mk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Description=\u041E\u043F\u0438\u0441 diff --git a/core/src/main/resources/lib/hudson/editableDescription_mk.properties b/core/src/main/resources/lib/hudson/editableDescription_mk.properties new file mode 100644 index 0000000000..7d626fa1cf --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_mk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +add\ description=\u0434\u043E\u0434\u0430\u0434\u0435\u0442\u0435 \u043E\u043F\u0438\u0441 diff --git a/core/src/main/resources/lib/hudson/executors_mk.properties b/core/src/main/resources/lib/hudson/executors_mk.properties new file mode 100644 index 0000000000..c1d6d168bf --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_mk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Status=\u0421\u0442\u0430\u0442\u0443\u0441 diff --git a/core/src/main/resources/lib/hudson/iconSize_mk.properties b/core/src/main/resources/lib/hudson/iconSize_mk.properties new file mode 100644 index 0000000000..ff50ab524f --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_mk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Icon=\u0418\u043A\u043E\u043D\u0430 diff --git a/core/src/main/resources/lib/hudson/rssBar_mk.properties b/core/src/main/resources/lib/hudson/rssBar_mk.properties new file mode 100644 index 0000000000..e86d48d8d5 --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_mk.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Legend=\u041B\u0435\u0433\u0435\u043D\u0434\u0430 +for\ all=\u0437\u0430 \u0441\u0438\u0442\u0435 +for\ failures=\u0437\u0430 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0438 +for\ just\ latest\ builds=\u0441\u0430\u043C\u043E \u0437\u0430 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0438\u0442\u0435 build-\u043E\u0432\u0438 diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_mk.properties b/core/src/main/resources/lib/layout/breadcrumbBar_mk.properties new file mode 100644 index 0000000000..35a34ca06e --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_mk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=\u041E\u0412\u041E\u0417\u041C\u041E\u0416\u0418 \u0410\u0412\u0422\u041E\u041C\u0410\u0422\u0421\u041A\u041E \u041E\u0421\u0412\u0415\u0416\u0423\u0412\u0410\u040A\u0415 diff --git a/core/src/main/resources/lib/layout/layout_mk.properties b/core/src/main/resources/lib/layout/layout_mk.properties new file mode 100644 index 0000000000..7a78c3dcaf --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_mk.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Page\ generated=\u0413\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 +logout=\u043E\u0434\u0458\u0430\u0432\u0438 \u0441\u0435 +search=\u043F\u0440\u0435\u0431\u0430\u0440\u0430\u0458 +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -- GitLab From ce703188481c44331f1e00581c3dcbe40cff7034 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:00 -0700 Subject: [PATCH 063/308] Community-contributed localization for Mongolian (mn) --- .../main/resources/hudson/model/View/sidepanel_mn.properties | 5 +++++ core/src/main/resources/lib/hudson/executors_mn.properties | 3 +++ core/src/main/resources/lib/hudson/queue_mn.properties | 4 ++++ .../main/resources/lib/layout/breadcrumbBar_mn.properties | 3 +++ core/src/main/resources/lib/layout/layout_mn.properties | 5 +++++ 5 files changed, 20 insertions(+) create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_mn.properties create mode 100644 core/src/main/resources/lib/hudson/executors_mn.properties create mode 100644 core/src/main/resources/lib/hudson/queue_mn.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_mn.properties create mode 100644 core/src/main/resources/lib/layout/layout_mn.properties diff --git a/core/src/main/resources/hudson/model/View/sidepanel_mn.properties b/core/src/main/resources/hudson/model/View/sidepanel_mn.properties new file mode 100644 index 0000000000..5b243a386e --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_mn.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Build\ History=\u0411\u0430\u0439\u0433\u0443\u0443\u043B\u0441\u0430\u043D \u0442\u04AF\u04AF\u0445 +NewJob=\u0428\u0438\u043D\u044D {0} +People=\u0425\u04AF\u043C\u04AF\u04AF\u0441 diff --git a/core/src/main/resources/lib/hudson/executors_mn.properties b/core/src/main/resources/lib/hudson/executors_mn.properties new file mode 100644 index 0000000000..b8b530f816 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_mn.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Status=\u0422\u04E9\u043B\u04E9\u0432 diff --git a/core/src/main/resources/lib/hudson/queue_mn.properties b/core/src/main/resources/lib/hudson/queue_mn.properties new file mode 100644 index 0000000000..e5dc1b4af1 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_mn.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build\ Queue=\u0411\u0430\u0439\u0433\u0443\u0443\u043B\u0430\u0445 \u0436\u0430\u0433\u0441\u0430\u0430\u043B\u0442 +No\ builds\ in\ the\ queue.=\u042D\u043D\u044D \u0436\u0430\u0433\u0441\u0430\u0430\u043B\u0442\u0430\u0434 \u0431\u0430\u0439\u0433\u0443\u0443\u043B\u0430\u043B\u0442 \u0430\u043B\u0433\u0430 \u0431\u0430\u0439\u043D\u0430. diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_mn.properties b/core/src/main/resources/lib/layout/breadcrumbBar_mn.properties new file mode 100644 index 0000000000..be5781bcb9 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_mn.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=\u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0430\u0430\u0440 \u0441\u044D\u0440\u0433\u044D\u044D\u0445 diff --git a/core/src/main/resources/lib/layout/layout_mn.properties b/core/src/main/resources/lib/layout/layout_mn.properties new file mode 100644 index 0000000000..47a279eb63 --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_mn.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +logout=\u0433\u0430\u0440\u0430\u0445 +search=\u0445\u0430\u0439\u0445 +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -- GitLab From cb9081c70b9e757e57d16a2be2fa83ad0bcfe6ca Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:01 -0700 Subject: [PATCH 064/308] Community-contributed localization for Marathi (mr) --- .../hudson/model/AbstractBuild/tasks_mr.properties | 3 +++ .../hudson/model/AbstractModelObject/error_mr.properties | 3 +++ .../hudson/model/AbstractProject/sidepanel_mr.properties | 3 +++ .../resources/hudson/model/View/sidepanel_mr.properties | 8 +++++--- .../HudsonPrivateSecurityRealm/loginLink_mr.properties | 3 +++ .../hudson/security/SecurityRealm/loginLink_mr.properties | 3 +++ .../views/LastDurationColumn/columnHeader_mr.properties | 2 +- .../hudson/views/LastFailureColumn/column_mr.properties | 3 +++ .../hudson/views/StatusColumn/columnHeader_mr.properties | 2 +- .../hudson/views/WeatherColumn/columnHeader_mr.properties | 2 +- .../hudson/widgets/HistoryWidget/index_mr.properties | 3 +++ .../main/resources/lib/hudson/buildCaption_mr.properties | 3 +++ .../resources/lib/hudson/buildProgressBar_mr.properties | 3 +++ .../src/main/resources/lib/hudson/executors_mr.properties | 7 +++++-- core/src/main/resources/lib/hudson/queue_mr.properties | 5 +++-- core/src/main/resources/lib/hudson/rssBar_mr.properties | 4 ++-- .../main/resources/lib/layout/breadcrumbBar_mr.properties | 3 +++ core/src/main/resources/lib/layout/layout_mr.properties | 4 +++- 18 files changed, 51 insertions(+), 13 deletions(-) create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_mr.properties create mode 100644 core/src/main/resources/hudson/model/AbstractModelObject/error_mr.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_mr.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_mr.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_mr.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_mr.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_mr.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_mr.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_mr.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_mr.properties diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_mr.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_mr.properties new file mode 100644 index 0000000000..3c529e083e --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_mr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=\u092C\u0926\u0932 diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/error_mr.properties b/core/src/main/resources/hudson/model/AbstractModelObject/error_mr.properties new file mode 100644 index 0000000000..24ff40a533 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractModelObject/error_mr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Error=\u091A\u0942\u0915 diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_mr.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_mr.properties new file mode 100644 index 0000000000..3c529e083e --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_mr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=\u092C\u0926\u0932 diff --git a/core/src/main/resources/hudson/model/View/sidepanel_mr.properties b/core/src/main/resources/hudson/model/View/sidepanel_mr.properties index 3f89d058a9..18d24a4edf 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_mr.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_mr.properties @@ -20,8 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=\u092C\u093E\u0902\u0927\u0915\u093E\u092E \u0907\u0924\u093F\u0939\u093E\u0938 +Build\ History=\u0907\u0924\u093F\u0939\u093E\u0938 Check\ File\ Fingerprint=\u092B\u093E\u0908\u0932 \u0920\u0938\u093E \u0924\u092A\u093E\u0938\u093E -NewJob=\u0928\u0935\u0940\u0928 {0} -People=\u0932\u094B\u0915 +Delete\ View=\u0926\u0943\u0936\u094D\u092F \u0915\u093E\u0922\u093E +Edit\ View=\u0926\u0943\u0936\u094D\u092F \u0938\u0902\u092A\u093E\u0926\u0928 +NewJob=\u0928\u0935\u093F\u0928 {0} +People=\u0932\u094B\u0915\u0902 Project\ Relationship=\u092A\u094D\u0930\u0915\u0932\u094D\u092A \u0928\u093E\u0924\u0947 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_mr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_mr.properties new file mode 100644 index 0000000000..d35ce53499 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_mr.properties @@ -0,0 +1,3 @@ +# 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/SecurityRealm/loginLink_mr.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_mr.properties new file mode 100644 index 0000000000..77408a2085 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_mr.properties @@ -0,0 +1,3 @@ +# 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/views/LastDurationColumn/columnHeader_mr.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_mr.properties index 70df627c4a..08128c3efe 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_mr.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_mr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=\u0936\u0947\u0935\u091F\u091A\u0947 \u0915\u093E\u0933\u093E\u0935\u093F\u0927\u0940 +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/LastFailureColumn/column_mr.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_mr.properties new file mode 100644 index 0000000000..522a62dc4b --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_mr.properties @@ -0,0 +1,3 @@ +# 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/StatusColumn/columnHeader_mr.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_mr.properties index 3bacf4109b..b8a553410a 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_mr.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_mr.properties @@ -20,4 +20,4 @@ # 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\u091F\u0947\u091F\u0938 +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/WeatherColumn/columnHeader_mr.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_mr.properties index 320f7ec647..5a8142f152 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_mr.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_mr.properties @@ -20,4 +20,4 @@ # 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\u091F\u0947\u091F\u0938 \u0926\u0930\u094D\u0936\u093F\u0935\u094D\u0923\u093E\u0930\u0947 \u0939\u0935\u093E\u092E\u093E\u0928 +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/widgets/HistoryWidget/index_mr.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_mr.properties new file mode 100644 index 0000000000..77fae8e654 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_mr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +More\ ...=\u0905\u0927\u093F\u0915 ... diff --git a/core/src/main/resources/lib/hudson/buildCaption_mr.properties b/core/src/main/resources/lib/hudson/buildCaption_mr.properties new file mode 100644 index 0000000000..bba6f40d6f --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_mr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Progress=\u092A\u094D\u0930\u0917\u0924\u0940 diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_mr.properties b/core/src/main/resources/lib/hudson/buildProgressBar_mr.properties new file mode 100644 index 0000000000..e972bc2a0c --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_mr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +text="{0} \u092A\u0942\u0930\u094D\u0935\u0940 \u0938\u0941\u0930\u0935\u093E\u0924 \u0915\u0947\u0932\u0940
\u0905\u0902\u0926\u093E\u091C\u0947 \u0909\u0930\u094D\u0935\u0930\u093F\u0924 \u0935\u0947\u0933: {1}" diff --git a/core/src/main/resources/lib/hudson/executors_mr.properties b/core/src/main/resources/lib/hudson/executors_mr.properties index f5db650bf6..ec7b63d483 100644 --- a/core/src/main/resources/lib/hudson/executors_mr.properties +++ b/core/src/main/resources/lib/hudson/executors_mr.properties @@ -21,5 +21,8 @@ # THE SOFTWARE. Build\ Executor\ Status=\u092C\u093E\u0902\u0927\u0915\u093E\u092E \u0915\u093E\u092E\u0917\u093E\u0930\u093E\u091A\u0947 \u0938\u0927\u094D\u092F\u093E\u091A\u0947 \u0938\u094D\u091F\u0947\u091F\u0938 -Idle=\u092E\u094B\u0915\u0933\u093E -Status= \u0938\u094D\u091F\u0947\u091F\u0938 +Building=\u092C\u093E\u0902\u0927\u0923\u0940 +Idle=\u0936\u093E\u0902\u0924 +Master=\u092E\u093E\u0932\u0915 +Status=\u0938\u094D\u0925\u093F\u0924\u0940 +terminate\ this\ build=\u092C\u093E\u0902\u0927\u0923\u0940 \u0915\u0930\u0923\u0947 \u0925\u093E\u0902\u092C\u0935\u093E diff --git a/core/src/main/resources/lib/hudson/queue_mr.properties b/core/src/main/resources/lib/hudson/queue_mr.properties index 77c4d6dd02..d01a6067a9 100644 --- a/core/src/main/resources/lib/hudson/queue_mr.properties +++ b/core/src/main/resources/lib/hudson/queue_mr.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u092C\u093E\u0902\u0927\u0915\u093E\u092E\u093E\u091A\u0940 \u0930\u093E\u0902\u0917 -No\ builds\ in\ the\ queue.=\u092C\u093E\u0902\u0927\u0915\u093E\u092E\u093E\u091A\u0940 \u0930\u093E\u0902\u0917 \u092E\u094B\u0915\u0933\u0940 +Build\ Queue=\u092C\u093F\u0932\u094D\u0921\u094D\u091A\u0940 \u0930\u093E\u0902\u0917 +No\ builds\ in\ the\ queue.=\u0930\u093E\u0902\u0917\u0947\u092E\u0927\u0947 \u090F\u0915\u0939\u0940 \u092C\u093F\u0932\u094D\u0921 \u0928\u093E\u0939\u0940 +WaitingFor=\u092A\u094D\u0930\u0924\u0940\u0915\u094D\u0937\u0947\u0924 diff --git a/core/src/main/resources/lib/hudson/rssBar_mr.properties b/core/src/main/resources/lib/hudson/rssBar_mr.properties index f15bd85985..7e3ad16213 100644 --- a/core/src/main/resources/lib/hudson/rssBar_mr.properties +++ b/core/src/main/resources/lib/hudson/rssBar_mr.properties @@ -22,5 +22,5 @@ Legend=\u0910\u0924\u093F\u0939\u093E\u0938\u093F\u0915 \u092E\u093E\u0939\u093F\u0924\u0940 for\ all=\u0938\u0917\u0933\u094D\u092F\u093E\u0902\u0938\u093E\u0920\u0940 -for\ failures=\u0905\u092A\u092F\u0936\u093E\u0938 -for\ just\ latest\ builds=\u0928\u0941\u0915\u0924\u092F\u093E \u092C\u093E\u0902\u0927\u0915\u093E\u092E\u093E\u0938\u093E\u0920\u0940 +for\ failures=\u0905\u092A\u092F\u0936\u093E\u0902\u0938\u093E\u0920\u0940 +for\ just\ latest\ builds=\u092B\u0915\u094D\u0924 \u0936\u0947\u0935\u091F\u091A\u094D\u092F\u093E \u092C\u093F\u0932\u094D\u0921 \u0938\u093E\u0920\u0940 diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_mr.properties b/core/src/main/resources/lib/layout/breadcrumbBar_mr.properties new file mode 100644 index 0000000000..b5fe8ea49b --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_mr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=\u0938\u094D\u0935\u092F\u0902\u091A\u0932\u093F\u0924 \u0930\u093F\u092B\u094D\u0930\u0947\u0936 diff --git a/core/src/main/resources/lib/layout/layout_mr.properties b/core/src/main/resources/lib/layout/layout_mr.properties index 845f6186f8..7477e01086 100644 --- a/core/src/main/resources/lib/layout/layout_mr.properties +++ b/core/src/main/resources/lib/layout/layout_mr.properties @@ -21,5 +21,7 @@ # THE SOFTWARE. ENABLE\ AUTO\ REFRESH=\u0906\u092A\u094B\u0906\u092A \u092A\u093E\u0928 \u0924\u093E\u091C\u0947 \u0915\u0930\u093E -Page\ generated=\u0928\u093F\u0930\u094D\u092E\u093E\u0923 \u0915\u0947\u0932\u0947\u0932\u0947 \u092A\u093E\u0928 +Page\ generated=\u0939\u0947 \u0935\u0947\u092C\u092A\u0947\u091C \u092C\u0928\u093E\u092F\u091A\u0940 \u0935\u0947\u0933 +logout=\u092C\u093E\u0939\u0947\u0930 \u091C\u093E search=\u0936\u094B\u0927\u093E +searchBox.url=http://wiki.jenkins-ci.org/\u0926\u093F\u0938\u094D\u092A\u094D\u0932\u093E\u092F /\u091C\u0947\u0928\u0915\u093F\u0928\u094D\u0938 /\u0936\u094B\u0927+\u091C\u093E\u0917\u093E -- GitLab From 67492cd9ba15b163391e0f6251996c2aeecbf169 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:01 -0700 Subject: [PATCH 065/308] Community-contributed localization for nb_NO (nb_NO) --- .../model/AbstractBuild/index_nb_NO.properties | 6 ++++-- .../AbstractBuild/sidepanel_nb_NO.properties | 2 +- .../model/AbstractBuild/tasks_nb_NO.properties | 10 +++++----- .../configure-common_nb_NO.properties | 4 ++++ .../model/AbstractProject/main_nb_NO.properties | 4 ++-- .../AbstractProject/sidepanel_nb_NO.properties | 8 +++++--- .../model/Computer/sidepanel_nb_NO.properties | 2 +- .../model/Job/buildTimeTrend_nb_NO.properties | 6 ++++++ .../hudson/model/Job/index_nb_NO.properties | 3 +++ .../ListView/configure-entries_nb_NO.properties | 12 ++++++++++++ .../config_nb_NO.properties | 1 + .../Run/KeepLogBuildBadge/badge_nb_NO.properties | 3 +++ .../hudson/model/Run/configure_nb_NO.properties | 6 ++++++ .../hudson/model/Run/console_nb_NO.properties | 4 +++- .../hudson/model/Run/delete_nb_NO.properties | 2 +- .../model/View/People/index_nb_NO.properties | 5 +++++ .../hudson/model/View/builds_nb_NO.properties | 4 ++-- .../hudson/model/View/configure_nb_NO.properties | 2 +- .../hudson/model/View/sidepanel_nb_NO.properties | 4 ++-- .../scm/EmptyChangeLogSet/digest_nb_NO.properties | 3 +++ .../loginLink_nb_NO.properties | 2 +- .../SecurityRealm/loginLink_nb_NO.properties | 2 +- .../tasks/LogRotator/config_nb_NO.properties | 7 +++++++ .../tasks/junit/ClassResult/body_nb_NO.properties | 5 +++++ .../floatingBox_nb_NO.properties | 5 +++-- .../HudsonIsRestarting/index_nb_NO.properties | 4 ++++ .../BuildButtonColumn/column_nb_NO.properties | 1 + .../DefaultViewsTabBar/viewTabs_nb_NO.properties | 2 +- .../LastFailureColumn/column_nb_NO.properties | 2 +- .../WeatherColumn/columnHeader_nb_NO.properties | 2 +- .../BuildHistoryWidget/entries_nb_NO.properties | 4 ++++ .../widgets/HistoryWidget/entry_nb_NO.properties | 2 +- .../jenkins/model/Jenkins/legend_nb_NO.properties | 15 +++++++++++++++ .../jenkins/model/Jenkins/manage_nb_NO.properties | 3 +++ .../resources/lib/form/textarea_nb_NO.properties | 4 ++++ .../lib/hudson/buildCaption_nb_NO.properties | 2 +- .../lib/hudson/buildListTable_nb_NO.properties | 2 +- .../lib/hudson/buildProgressBar_nb_NO.properties | 2 +- .../hudson/editableDescription_nb_NO.properties | 2 +- .../lib/hudson/executors_nb_NO.properties | 2 +- ...g-blockWhenDownstreamBuilding_nb_NO.properties | 3 +++ ...fig-blockWhenUpstreamBuilding_nb_NO.properties | 3 +++ .../project/config-disableBuild_nb_NO.properties | 1 + .../project/config-retryCount_nb_NO.properties | 4 ++++ .../project/upstream-downstream_nb_NO.properties | 4 ++-- .../resources/lib/hudson/queue_nb_NO.properties | 3 ++- .../lib/layout/breadcrumbBar_nb_NO.properties | 4 ++++ .../resources/lib/layout/layout_nb_NO.properties | 2 +- 48 files changed, 147 insertions(+), 38 deletions(-) create mode 100644 core/src/main/resources/hudson/model/AbstractItem/configure-common_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/Job/buildTimeTrend_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/ListView/configure-entries_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_nb_NO.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_nb_NO.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/ClassResult/body_nb_NO.properties create mode 100644 core/src/main/resources/hudson/util/HudsonIsRestarting/index_nb_NO.properties create mode 100644 core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_nb_NO.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/legend_nb_NO.properties create mode 100644 core/src/main/resources/lib/form/textarea_nb_NO.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_nb_NO.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_nb_NO.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-retryCount_nb_NO.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_nb_NO.properties diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_nb_NO.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_nb_NO.properties index e782dfed75..eb7c0d2fab 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_nb_NO.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_nb_NO.properties @@ -20,11 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Bygg -Build\ Artifacts=Bygge Artifakter +Build=Versjon +Build\ Artifacts=Byggeartifakter Build\ number=Bygg nummer +Not\ yet\ determined=Enn\u00E5 ikke bestemt Permalinks=Permanente lenker Took=Tok +beingExecuted=Har bygget i {0} log=logg on=p\u00E5 startedAgo=Startet for {0} siden diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_nb_NO.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_nb_NO.properties index 32c0fa0d24..d2c5830a98 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_nb_NO.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_nb_NO.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Next\ Build=Neste bygg -Previous\ Build=Forrige bygg +Previous\ Build=Forrige Versjon diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_nb_NO.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_nb_NO.properties index cd7e744356..3a8f26f4a4 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_nb_NO.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_nb_NO.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=Tilbake til prosjektet +Back\ to\ Project=Tilbake til prosjekt Changes=Endringer -Console\ Output=Konsollutskrift -View\ as\ plain\ text=Se som vanlig tekst -Edit\ Build\ Information=Endre bygginformasjon +Console\ Output=Konsoll-resultat +View\ as\ plain\ text=Vis som vanlig tekst +Edit\ Build\ Information=Rediger bygg-informasjon Status=Status View\ Build\ Information=Vis byggeinformasjon -raw=r\u00E5tekst +raw=r\u00E5format diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_nb_NO.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_nb_NO.properties new file mode 100644 index 0000000000..c516f60331 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_nb_NO.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Advanced\ Project\ Options\ configure-common=Avanserte innstillinger for prosjektet +title.concurrentbuilds=Utf\u00F8r samtidige build hvis n\u00F8dvendig diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_nb_NO.properties b/core/src/main/resources/hudson/model/AbstractProject/main_nb_NO.properties index f0702e4b11..ffacffdf51 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_nb_NO.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_nb_NO.properties @@ -22,5 +22,5 @@ Last\ Successful\ Artifacts=Siste vellykkede artifakter Latest\ Test\ Result=Siste testresultater -Recent\ Changes=Siste endringer -Workspace=arbeidskatalog +Recent\ Changes=Nylige endringer +Workspace=Arbeidsomr\u00E5de diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_nb_NO.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_nb_NO.properties index 000fb4e134..88e88c3957 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_nb_NO.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_nb_NO.properties @@ -21,11 +21,13 @@ # THE SOFTWARE. Back\ to\ Dashboard=Tilbake til oversikt -Build\ scheduled=Bygging lagt i k\u00F8 +Build\ scheduled=Versjonssteg lagt i k\u00F8 Changes=Endringer -Configure=Konfigurer +Configure=Konfigur\u00E9r Status=Status View\ Configuration=Vis konfigurasjon -Wipe\ Out\ Workspace=Slett arbeidsomr\u00E5de +Wipe\ Out\ Workspace=Nullstill arbeidsomr\u00E5de Workspace=Arbeidsomr\u00E5de delete=Slett {0} +delete.confirm=Er du sikker p\u00E5 at du vil slette {0} \u2018{1}\u2019? +wipe.out.confirm=Er du sikker p\u00E5 at du vil slette filene i arbeids omr\u00E5de diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_nb_NO.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_nb_NO.properties index 49f6258d3b..0a9fcd4fec 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_nb_NO.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_nb_NO.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ List=Tilbake til lista +Back\ to\ List=Tilbake til listen Build\ History=Bygghistorikk Configure=Konfigur\u00E9r Delete\ Slave=Slett slave diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_nb_NO.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_nb_NO.properties new file mode 100644 index 0000000000..29a4717e45 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_nb_NO.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Build=Bygg +Build\ Time\ Trend=Trend for byggetid +Duration=Varighet +Timeline=Tidslinje diff --git a/core/src/main/resources/hudson/model/Job/index_nb_NO.properties b/core/src/main/resources/hudson/model/Job/index_nb_NO.properties new file mode 100644 index 0000000000..617a539ddf --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_nb_NO.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Disable\ Project=Deaktiv\u00E9r prosjekt diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_nb_NO.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_nb_NO.properties new file mode 100644 index 0000000000..086a85a97a --- /dev/null +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_nb_NO.properties @@ -0,0 +1,12 @@ +# This file is under the MIT License by authors + +Add\ column=Legg til kolonne +All\ selected\ jobs=Alle valgte jobber +Columns=Kolonner +Disabled\ jobs\ only=Kun deaktiverte jobber +Enabled\ jobs\ only=Kun aktiverte jobber +Job\ Filters=Jobbfiltre +Jobs=Jobber +Regular\ expression=Regul\u00E6rt uttrykk +Status\ Filter=Statusfilter +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Bruk regul\u00E6rt uttrykk for \u00E5 ta med jobber i visningen diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_nb_NO.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_nb_NO.properties index 0e081ccb9f..7a09188ef8 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_nb_NO.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_nb_NO.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Add\ Parameter=Legg til parameter +This\ build\ is\ parameterized=Denne build har parametre diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_nb_NO.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_nb_NO.properties new file mode 100644 index 0000000000..04c437f4e1 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_nb_NO.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Keep\ this\ build\ forever=Behold dette versjonssteget for alltid diff --git a/core/src/main/resources/hudson/model/Run/configure_nb_NO.properties b/core/src/main/resources/hudson/model/Run/configure_nb_NO.properties new file mode 100644 index 0000000000..5dd9d9da99 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_nb_NO.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Description=Beskrivelse +DisplayName=Visningsnavn +LOADING=LASTER +Save=Lagre diff --git a/core/src/main/resources/hudson/model/Run/console_nb_NO.properties b/core/src/main/resources/hudson/model/Run/console_nb_NO.properties index 3f8a1bed84..0d356f2200 100644 --- a/core/src/main/resources/hudson/model/Run/console_nb_NO.properties +++ b/core/src/main/resources/hudson/model/Run/console_nb_NO.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Konsoll utdata +Console\ Output=Konsoll-resultat +View\ as\ plain\ text=Vis som vanlig tekst +skipSome=Dropper {0,number,integer} KB.. Full logg diff --git a/core/src/main/resources/hudson/model/Run/delete_nb_NO.properties b/core/src/main/resources/hudson/model/Run/delete_nb_NO.properties index 03ce744016..9086a5432a 100644 --- a/core/src/main/resources/hudson/model/Run/delete_nb_NO.properties +++ b/core/src/main/resources/hudson/model/Run/delete_nb_NO.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=Slett denne byggeloggen +Delete\ this\ build=Slett dette bygget diff --git a/core/src/main/resources/hudson/model/View/People/index_nb_NO.properties b/core/src/main/resources/hudson/model/View/People/index_nb_NO.properties new file mode 100644 index 0000000000..f505e6a85f --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_nb_NO.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +All\ People=Alle personer +People=Personer +User\ Id=Bruker-id diff --git a/core/src/main/resources/hudson/model/View/builds_nb_NO.properties b/core/src/main/resources/hudson/model/View/builds_nb_NO.properties index b6f0724981..e030fed17f 100644 --- a/core/src/main/resources/hudson/model/View/builds_nb_NO.properties +++ b/core/src/main/resources/hudson/model/View/builds_nb_NO.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Export\ as\ plain\ XML=Eksporter som ren XML -buildHistory=Bygghistorie for {0} +Export\ as\ plain\ XML=Eksport\u00E9r som ren XML +buildHistory=Bygghistorikk for {0} diff --git a/core/src/main/resources/hudson/model/View/configure_nb_NO.properties b/core/src/main/resources/hudson/model/View/configure_nb_NO.properties index d43593ccca..e1d57899bc 100644 --- a/core/src/main/resources/hudson/model/View/configure_nb_NO.properties +++ b/core/src/main/resources/hudson/model/View/configure_nb_NO.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Description=Beskrivelse -Filter\ build\ executors=Filtr\u00E9r byggutf\u00F8rer +Filter\ build\ executors=Filtr\u00E9r bygg-agenter Filter\ build\ queue=Filtr\u00E9r byggk\u00F8 Name=Navn diff --git a/core/src/main/resources/hudson/model/View/sidepanel_nb_NO.properties b/core/src/main/resources/hudson/model/View/sidepanel_nb_NO.properties index 97fb5c053e..8ed6afe877 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_nb_NO.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_nb_NO.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=Bygghistorie +Build\ History=Bygghistorikk Check\ File\ Fingerprint=Unders\u00F8k fingeravtrykk for filer Delete\ View=Slett visning Edit\ View=Rediger visning -NewJob=Ny {0} +NewJob=Nye {0} People=Personer Project\ Relationship=Forhold mellom prosjekter diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_nb_NO.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_nb_NO.properties new file mode 100644 index 0000000000..026f76b08f --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_nb_NO.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ changes.=Ingen endringer. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_nb_NO.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_nb_NO.properties index b267b68677..f11fda90c8 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_nb_NO.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_nb_NO.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -sign\ up=registr\u00E9r deg +sign\ up=registrer deg diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_nb_NO.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_nb_NO.properties index 3346f44645..146e61ef40 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_nb_NO.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_nb_NO.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=logg inn +login=Logg inn diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_nb_NO.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_nb_NO.properties index 41189f2f4e..c83335c09a 100644 --- a/core/src/main/resources/hudson/tasks/LogRotator/config_nb_NO.properties +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_nb_NO.properties @@ -20,4 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Days\ to\ keep\ artifacts=antall dager artifakter beholdes Days\ to\ keep\ builds=Dager bygg skal lagres +Max\ #\ of\ builds\ to\ keep=maks antall build records som beholdes +Max\ #\ of\ builds\ to\ keep\ with\ artifacts=Maks antall builds som beholdes med artifakter +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=n\u00E5r angitt, artifakter fra builds eldre enn dette antall dager slettes, men logger, historie, rapporter etc. beholdes +if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=n\u00E5r angitt, antall dager build records beholdes +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=n\u00E5r angitt, bare dette antallet build records beholdes +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ builds\ have\ their\ artifacts\ retained=n\u00E5r angitt, bare dette antall builds beholder sine artifakter diff --git a/core/src/main/resources/hudson/tasks/junit/ClassResult/body_nb_NO.properties b/core/src/main/resources/hudson/tasks/junit/ClassResult/body_nb_NO.properties new file mode 100644 index 0000000000..27e8c7883a --- /dev/null +++ b/core/src/main/resources/hudson/tasks/junit/ClassResult/body_nb_NO.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +All\ Tests=Alle Tester +Duration=Varighet +Test\ name=Testnavn diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_nb_NO.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_nb_NO.properties index e8d5742c42..c91cd92f7b 100644 --- a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_nb_NO.properties +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_nb_NO.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Test\ Result\ Trend=Test Result trend -enlarge=st\u00F8rre +Test\ Result\ Trend=Test resultatstrenden +enlarge=forst\u00F8rr just\ show\ failures=bare vis feil +show\ test\ #\ and\ failure\ #=vis test # og feil # diff --git a/core/src/main/resources/hudson/util/HudsonIsRestarting/index_nb_NO.properties b/core/src/main/resources/hudson/util/HudsonIsRestarting/index_nb_NO.properties new file mode 100644 index 0000000000..676074ad2b --- /dev/null +++ b/core/src/main/resources/hudson/util/HudsonIsRestarting/index_nb_NO.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Please\ wait\ while\ Jenkins\ is\ restarting=Vennligst vent mens Jenkins restartes +Your\ browser\ will\ reload\ automatically\ when\ Jenkins\ is\ ready.=Nettleseren vil automatisk lastes p\u00E5 nytt n\u00E5r Jenkins er klar 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 index 7795473bf3..d47451fa99 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_nb_NO.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_nb_NO.properties @@ -20,4 +20,5 @@ # 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 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_nb_NO.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_nb_NO.properties index b079a08059..1231efc63a 100644 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_nb_NO.properties +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_nb_NO.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -New\ View=Ny visning +New\ View=Ny Visning diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_nb_NO.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_nb_NO.properties index 1d44665c97..39762721b1 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/column_nb_NO.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_nb_NO.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=Ikke tilgjengelig +N/A= diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_nb_NO.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_nb_NO.properties index 2db7187cf7..5bb3101516 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_nb_NO.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_nb_NO.properties @@ -20,4 +20,4 @@ # 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=V\u00E6rsymbol som viser aggregert status p\u00E5 de siste byggene +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=V\u00E6rsymbol som viser samlet status p\u00E5 de siste byggene 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 new file mode 100644 index 0000000000..3e0077b87f --- /dev/null +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_nb_NO.properties @@ -0,0 +1,4 @@ +# 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/HistoryWidget/entry_nb_NO.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_nb_NO.properties index e631fbf761..a208f85a02 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_nb_NO.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_nb_NO.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Konsollutskrift +Console\ Output=Konsoll-resultat diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_nb_NO.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_nb_NO.properties new file mode 100644 index 0000000000..7690c53197 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_nb_NO.properties @@ -0,0 +1,15 @@ +# This file is under the MIT License by authors + +blue=Siste bygging av prosjektet var en suksess. +blue_anime=Siste bygging av prosjektet var en suksess. Et nytt bygg er i gang. +grey=Prosjektet er enten deaktivert eller har ikke blitt bygget f\u00F8r. +grey_anime=F\u00F8rstegangsbygging av prosjektet er i gang. +health-00to20=Prosjektets helsestatus er under 20%. Du kan holde musen over prosjektikonet for en mer detaljert forklaring. +health-21to40=Prosjektets helsestatus er over 20% og opp til 40%. Du kan holde musen over prosjektikonet for en mer detaljert forklaring. +health-41to60=Prosjektets helsestatus er over 40% og opp til 60%. Du kan holde musen over prosjektikonet for en mer detaljert forklaring. +health-61to80=Prosjektets helsestatus er over 60% og opp til 80%. Du kan holde musen over prosjektikonet for en mer detaljert forklaring. +health-81plus=Prosjektets helsestatus er over 80%. Du kan holde musen over prosjektikonet for en mer detaljert forklaring. +red=Siste bygging av prosjektet feilet alvorlig. +red_anime=Siste bygging av prosjektet feilet alvorlig. Et nytt bygg er i gang. +yellow=Siste bygging av prosjektet var en suksess, men ustabil. Dette skyldes som regel feilende tester. +yellow_anime=Siste bygging av prosjektet var en suksess, men ustabil. Et nytt bygg er i gang. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_nb_NO.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_nb_NO.properties index f1b3e2b76b..96eff84e99 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_nb_NO.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_nb_NO.properties @@ -20,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=T\u00F8m minnet for innlastede data, og last alt inn p\u00E5 nytt fra filsystemet. +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Viser forskjellig informasjon om milj\u00F8et til Jenkins serveren for \u00E5 hjelpe til med feils\u00F8king. +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Kj\u00F8r vilk\u00E5rlige script for administrative/feils\u00F8king/diagnose oppgaver. Manage\ Jenkins=Behandle Jenkins diff --git a/core/src/main/resources/lib/form/textarea_nb_NO.properties b/core/src/main/resources/lib/form/textarea_nb_NO.properties new file mode 100644 index 0000000000..b18a782245 --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_nb_NO.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=Skjul forh\u00E5ndsvisning +Preview=Forh\u00E5ndsvis diff --git a/core/src/main/resources/lib/hudson/buildCaption_nb_NO.properties b/core/src/main/resources/lib/hudson/buildCaption_nb_NO.properties index 45c6825f1c..a9682f5695 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_nb_NO.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Progress=Progresjon +Progress=Fremdrift cancel=avbryt diff --git a/core/src/main/resources/lib/hudson/buildListTable_nb_NO.properties b/core/src/main/resources/lib/hudson/buildListTable_nb_NO.properties index 69a4ab0abb..1479accd90 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_nb_NO.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Build=Bygg -Console\ output=Konsolltekst +Console\ output=Konsoll-resultat Time\ Since=Tid siden bygg Status=Status diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_nb_NO.properties b/core/src/main/resources/lib/hudson/buildProgressBar_nb_NO.properties index fb705033e3..54a311f410 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_nb_NO.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Startet for {0} siden
Estimert tid igjen: {1} +text=Startet for {0] siden
Ansl\u00E5tt gjenst\u00E5ende tid: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_nb_NO.properties b/core/src/main/resources/lib/hudson/editableDescription_nb_NO.properties index 67fdec369c..a8ae6ea179 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_nb_NO.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. add\ description=legg til beskrivelse -edit\ description=Endre beskrivelse +edit\ description=rediger beskrivelse diff --git a/core/src/main/resources/lib/hudson/executors_nb_NO.properties b/core/src/main/resources/lib/hudson/executors_nb_NO.properties index 29fb2cc8a6..bf84166f3a 100644 --- a/core/src/main/resources/lib/hudson/executors_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/executors_nb_NO.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Status p\u00E5 byggutf\u00F8rer +Build\ Executor\ Status=Byggeksekverings-status Building=Bygger Idle=Ledig Master=Master diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_nb_NO.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_nb_NO.properties new file mode 100644 index 0000000000..3a469490e6 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_nb_NO.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Block\ build\ when\ downstream\ project\ is\ building=Blokk\u00E9r build n\u00E5r downstream prosjekt bygges diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_nb_NO.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_nb_NO.properties new file mode 100644 index 0000000000..4c2c25f947 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_nb_NO.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Block\ build\ when\ upstream\ project\ is\ building=Blokk\u00E9r build n\u00E5r upstream prosjekt bygges diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_nb_NO.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_nb_NO.properties index 6ace8ab761..a46d1293e1 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_nb_NO.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Disable\ Build=Deaktiver bygg +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Ingen nye builds blir utf\u00F8rt f\u00F8r prosjektet er reaktivert. diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_nb_NO.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_nb_NO.properties new file mode 100644 index 0000000000..fadca4113c --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_nb_NO.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Retry\ Count=antall fors\u00F8k +SCM\ checkout\ retry\ count=Antall fors\u00F8k for SCM checkout diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_nb_NO.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_nb_NO.properties index bf76568b89..8389d9ab73 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_nb_NO.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Downstream\ Projects=Barneprosjekter -Upstream\ Projects=Foreldreprosjekter +Downstream\ Projects=Nedstr\u00F8ms prosjekter +Upstream\ Projects=Oppstr\u00F8ms prosjekter diff --git a/core/src/main/resources/lib/hudson/queue_nb_NO.properties b/core/src/main/resources/lib/hudson/queue_nb_NO.properties index f6989d4202..5e5cb9b584 100644 --- a/core/src/main/resources/lib/hudson/queue_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/queue_nb_NO.properties @@ -21,5 +21,6 @@ # THE SOFTWARE. Build\ Queue=Byggek\u00F8 -No\ builds\ in\ the\ queue.=Ingen bygg er i k\u00F8en. +No\ builds\ in\ the\ queue.=Ingen bygg i k\u00F8en. +WaitingFor=Venter p\u00E5 {0} cancel=avbryt diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_nb_NO.properties b/core/src/main/resources/lib/layout/breadcrumbBar_nb_NO.properties new file mode 100644 index 0000000000..4f35e256a2 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_nb_NO.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=DEAKTIVER AUTOOPPDATERING +ENABLE\ AUTO\ REFRESH=Sl\u00E5 p\u00E5 auto oppdatering diff --git a/core/src/main/resources/lib/layout/layout_nb_NO.properties b/core/src/main/resources/lib/layout/layout_nb_NO.properties index 1415d3b777..ab4916ec57 100644 --- a/core/src/main/resources/lib/layout/layout_nb_NO.properties +++ b/core/src/main/resources/lib/layout/layout_nb_NO.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. DISABLE\ AUTO\ REFRESH=Deaktiver automatisk oppfrisking -ENABLE\ AUTO\ REFRESH=Aktiv\u00E9r automatisk oppfrisking +ENABLE\ AUTO\ REFRESH=Aktiver automatisk oppfrisking Page\ generated=Side generert logout=logg ut search=s\u00F8k -- GitLab From f8af1eca0f834e463204e1723e3f6720e96ed4aa Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:01 -0700 Subject: [PATCH 066/308] Community-contributed localization for Dutch; Flemish (nl) --- .../hudson/AboutJenkins/index_nl.properties | 1 + .../PluginManager/advanced_nl.properties | 6 +++--- .../PluginManager/checkUpdates_nl.properties | 4 ++-- .../hudson/PluginManager/index_nl.properties | 3 ++- .../PluginManager/installed_nl.properties | 7 ++++++- .../hudson/PluginManager/table_nl.properties | 3 +++ .../OldDataMonitor/manage_nl.properties | 8 +++++++ .../OldDataMonitor/message_nl.properties | 5 +++++ .../message_nl.properties | 6 +++--- .../LogRecorderManager/index_nl.properties | 1 + .../config_nl.properties | 1 + .../MatrixBuild/ajaxMatrix_nl.properties | 3 +++ .../configure-entries_nl.properties | 1 + .../MatrixProject/newJobDetail_nl.properties | 4 +--- .../model/AbstractBuild/index_nl.properties | 8 +++---- .../AbstractBuild/sidepanel_nl.properties | 4 ++-- .../model/AbstractBuild/tasks_nl.properties | 14 +++++++------ .../configure-common_nl.properties | 3 +++ .../model/AbstractItem/delete_nl.properties | 2 +- .../AbstractProject/changes_nl.properties | 2 +- .../model/AbstractProject/main_nl.properties | 2 +- .../makeDisabled_nl.properties | 2 +- .../AbstractProject/sidepanel_nl.properties | 16 +++++++------- .../UpstreamCause/description_nl.properties | 4 ++++ .../model/CauseAction/summary_nl.properties | 3 +++ .../model/Computer/builds_nl.properties | 3 +++ .../hudson/model/Computer/index_nl.properties | 5 ++--- .../model/Computer/sidepanel_nl.properties | 11 +++++----- .../model/ComputerSet/index_nl.properties | 5 +++-- .../model/ComputerSet/sidepanel_nl.properties | 8 +++---- .../DirectoryBrowserSupport/dir_nl.properties | 3 ++- .../newJobDetail_nl.properties | 6 +----- .../model/Job/buildTimeTrend_nl.properties | 1 + .../hudson/model/Job/configure_nl.properties | 8 ++++--- .../hudson/model/Job/index_nl.properties | 4 ++++ .../hudson/model/Job/permalinks_nl.properties | 2 +- .../ListView/newViewDetail_nl.properties | 3 +++ .../model/LoadStatistics/main_nl.properties | 4 ++-- .../model/MyView/newViewDetail_nl.properties | 3 +++ .../MyViewsProperty/newView_nl.properties | 3 +++ .../config_nl.properties | 4 ++++ .../index_nl.properties | 4 ++++ .../config_nl.properties | 5 +++++ .../ProxyView/newViewDetail_nl.properties | 3 +++ .../Run/KeepLogBuildBadge/badge_nl.properties | 3 +++ .../hudson/model/Run/configure_nl.properties | 8 +++---- .../hudson/model/Run/console_nl.properties | 3 ++- .../hudson/model/Run/delete_nl.properties | 2 +- .../hudson/model/Run/logKeep_nl.properties | 2 +- .../config_nl.properties | 5 +++++ .../CoreUpdateMonitor/message_nl.properties | 3 ++- .../Installing/status_nl.properties | 3 +++ .../RestartJenkinsJob/row_nl.properties | 3 +++ .../model/UpdateCenter/body_nl.properties | 4 +++- .../model/UpdateCenter/index_nl.properties | 2 +- .../UpdateCenter/sidepanel_nl.properties | 4 ++-- .../hudson/model/User/builds_nl.properties | 3 +++ .../hudson/model/User/sidepanel_nl.properties | 5 +++-- .../View/AsynchPeople/index_nl.properties | 10 +++++---- .../model/View/People/index_nl.properties | 7 +++++++ .../hudson/model/View/builds_nl.properties | 2 +- .../hudson/model/View/newJob_nl.properties | 4 ++-- .../hudson/model/View/sidepanel_nl.properties | 14 ++++++------- .../EmptyChangeLogSet/digest_nl.properties | 2 +- .../search/Search/search-failed_nl.properties | 4 ++++ .../UserSearchProperty/config_nl.properties | 4 ++++ .../_entryForm_nl.properties | 7 +++++++ .../config_nl.properties | 2 +- .../index_nl.properties | 6 ++++++ .../sidepanel_nl.properties | 4 ++++ .../LegacySecurityRealm/config_nl.properties | 4 ++++ .../SecurityRealm/loginLink_nl.properties | 2 +- .../DefaultCrumbIssuer/config_nl.properties | 3 +++ .../DumbSlave/configure-entries_nl.properties | 6 +++--- .../SlaveComputer/sidepanel2_nl.properties | 4 ++-- .../FingerprintAction/index_nl.properties | 1 + .../tasks/LogRotator/config_nl.properties | 10 ++++++--- .../junit/CaseResult/index_nl.properties | 2 +- .../summary_nl.properties | 2 +- .../MetaTabulatedResult/body_nl.properties | 3 ++- .../floatingBox_nl.properties | 2 +- .../ToolInstallation/config_nl.properties | 3 +++ .../config_nl.properties | 2 ++ .../message_nl.properties | 2 +- .../BuildAction/index_nl.properties | 6 +++--- .../DescriptorImpl/index_nl.properties | 9 +++----- .../SCMTrigger/SCMAction/index_nl.properties | 2 +- .../BuildButtonColumn/column_nl.properties | 4 +++- .../myViewTabs_nl.properties | 3 +++ .../DefaultViewsTabBar/viewTabs_nl.properties | 2 +- .../columnHeader_nl.properties | 2 +- .../LastDurationColumn/column_nl.properties | 2 +- .../columnHeader_nl.properties | 2 +- .../LastFailureColumn/column_nl.properties | 2 +- .../columnHeader_nl.properties | 3 +++ .../LastSuccessColumn/column_nl.properties | 2 +- .../StatusColumn/columnHeader_nl.properties | 2 +- .../WeatherColumn/columnHeader_nl.properties | 2 +- .../BuildHistoryWidget/entries_nl.properties | 2 +- .../widgets/HistoryWidget/entry_nl.properties | 2 +- .../widgets/HistoryWidget/index_nl.properties | 4 ++-- .../message_nl.properties | 5 +++++ .../management/PluginsLink/info_nl.properties | 3 +++ .../model/Jenkins/configure_nl.properties | 6 ++++-- .../Jenkins/fingerprintCheck_nl.properties | 4 ++-- .../model/Jenkins/legend_nl.properties | 15 +++++++++++++ .../model/Jenkins/loginError_nl.properties | 1 + .../jenkins/model/Jenkins/login_nl.properties | 2 +- .../model/Jenkins/manage_nl.properties | 21 ++++++++++++++++++- .../projectRelationship-help_nl.properties | 1 + .../model/Jenkins/systemInfo_nl.properties | 2 +- .../resources/lib/form/advanced_nl.properties | 2 +- .../resources/lib/form/apply_nl.properties | 3 +++ .../breadcrumb-config-outline_nl.properties | 3 +++ .../lib/form/expandableTextbox_nl.properties | 4 +--- .../resources/lib/form/helpArea_nl.properties | 2 +- .../resources/lib/form/textarea_nl.properties | 3 +++ .../lib/hudson/artifactList_nl.properties | 3 +++ .../lib/hudson/buildListTable_nl.properties | 6 +++--- .../lib/hudson/buildProgressBar_nl.properties | 2 +- .../hudson/editableDescription_nl.properties | 4 ++-- .../lib/hudson/executors_nl.properties | 11 +++++----- .../lib/hudson/iconSize_nl.properties | 2 +- .../lib/hudson/newFromList/form_nl.properties | 2 +- .../resources/lib/hudson/node_nl.properties | 2 +- ...-blockWhenDownstreamBuilding_nl.properties | 3 +++ ...ig-blockWhenUpstreamBuilding_nl.properties | 3 +++ .../config-concurrentBuild_nl.properties | 3 +++ .../config-customWorkspace_nl.properties | 3 +++ .../project/config-disableBuild_nl.properties | 4 ++-- .../project/config-publishers2_nl.properties | 3 ++- .../project/config-retryCount_nl.properties | 2 +- .../hudson/project/config-scm_nl.properties | 2 +- ...nfig-upstream-pseudo-trigger_nl.properties | 0 .../project/upstream-downstream_nl.properties | 4 ++-- .../resources/lib/hudson/queue_nl.properties | 9 +++++--- .../resources/lib/hudson/rssBar_nl.properties | 8 +++---- .../lib/layout/breadcrumbBar_nl.properties | 5 +++++ .../resources/lib/layout/layout_nl.properties | 10 ++++----- .../lib/layout/main-panel_nl.properties | 3 +++ .../layout/progressiveRendering_nl.properties | 3 +++ .../resources/lib/layout/task_nl.properties | 3 +++ .../main/resources/lib/test/bar_nl.properties | 2 +- 143 files changed, 414 insertions(+), 176 deletions(-) create mode 100644 core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_nl.properties create mode 100644 core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_nl.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixBuild/ajaxMatrix_nl.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UpstreamCause/description_nl.properties create mode 100644 core/src/main/resources/hudson/model/CauseAction/summary_nl.properties create mode 100644 core/src/main/resources/hudson/model/Computer/builds_nl.properties create mode 100644 core/src/main/resources/hudson/model/ListView/newViewDetail_nl.properties create mode 100644 core/src/main/resources/hudson/model/MyView/newViewDetail_nl.properties create mode 100644 core/src/main/resources/hudson/model/MyViewsProperty/newView_nl.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_nl.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_nl.properties create mode 100644 core/src/main/resources/hudson/model/PasswordParameterDefinition/config_nl.properties create mode 100644 core/src/main/resources/hudson/model/ProxyView/newViewDetail_nl.properties create mode 100644 core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_nl.properties create mode 100644 core/src/main/resources/hudson/model/StringParameterDefinition/config_nl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_nl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_nl.properties create mode 100644 core/src/main/resources/hudson/model/User/builds_nl.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_nl.properties create mode 100644 core/src/main/resources/hudson/search/Search/search-failed_nl.properties create mode 100644 core/src/main/resources/hudson/search/UserSearchProperty/config_nl.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_nl.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_nl.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_nl.properties create mode 100644 core/src/main/resources/hudson/security/LegacySecurityRealm/config_nl.properties create mode 100644 core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_nl.properties create mode 100644 core/src/main/resources/hudson/tools/ToolInstallation/config_nl.properties mode change 100755 => 100644 core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_nl.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_nl.properties create mode 100644 core/src/main/resources/hudson/views/LastStableColumn/columnHeader_nl.properties create mode 100644 core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_nl.properties create mode 100644 core/src/main/resources/jenkins/management/PluginsLink/info_nl.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/legend_nl.properties mode change 100755 => 100644 core/src/main/resources/lib/form/advanced_nl.properties create mode 100644 core/src/main/resources/lib/form/apply_nl.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_nl.properties create mode 100644 core/src/main/resources/lib/form/textarea_nl.properties create mode 100644 core/src/main/resources/lib/hudson/artifactList_nl.properties mode change 100755 => 100644 core/src/main/resources/lib/hudson/buildListTable_nl.properties mode change 100755 => 100644 core/src/main/resources/lib/hudson/buildProgressBar_nl.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_nl.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_nl.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-concurrentBuild_nl.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-customWorkspace_nl.properties mode change 100755 => 100644 core/src/main/resources/lib/hudson/project/config-disableBuild_nl.properties mode change 100755 => 100644 core/src/main/resources/lib/hudson/project/config-publishers2_nl.properties mode change 100755 => 100644 core/src/main/resources/lib/hudson/project/config-scm_nl.properties mode change 100755 => 100644 core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_nl.properties mode change 100755 => 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_nl.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_nl.properties create mode 100644 core/src/main/resources/lib/layout/main-panel_nl.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_nl.properties create mode 100644 core/src/main/resources/lib/layout/task_nl.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_nl.properties b/core/src/main/resources/hudson/AboutJenkins/index_nl.properties index a33e630c20..89cddecdaa 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_nl.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_nl.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. about=Over Jenkins {0} +dependencies=Jenkins is afhankelijk van de volgende bibliotheken van derden. diff --git a/core/src/main/resources/hudson/PluginManager/advanced_nl.properties b/core/src/main/resources/hudson/PluginManager/advanced_nl.properties index 2ac1e6f751..5d53638e22 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_nl.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_nl.properties @@ -20,16 +20,16 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -lastUpdated=Laats geactualizeerd: {0} geleden +lastUpdated=Laatst geactualiseerd: {0} geleden uploadtext=U kunt een .hpi bestand uploaden om een plugin te installeren die niet aanwezig is in de centrale pluginlijst. Password=Wachtwoord Server=Server Port=Poortnummer User\ name=Gebruikersnaam -Check\ now=Actualizeer nu +Check\ now=Actualiseer nu URL=URL Upload=Uploaden HTTP\ Proxy\ Configuration=HTTP-proxyconfiguratie -Submit=Doorsturen +Submit=Versturen Upload\ Plugin=Plugin uploaden File=Bestand diff --git a/core/src/main/resources/hudson/PluginManager/checkUpdates_nl.properties b/core/src/main/resources/hudson/PluginManager/checkUpdates_nl.properties index 65fd746875..6a68aa3c9c 100644 --- a/core/src/main/resources/hudson/PluginManager/checkUpdates_nl.properties +++ b/core/src/main/resources/hudson/PluginManager/checkUpdates_nl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Checking\ Updates...=Zoekt actuelere versies... -Go\ back\ to\ update\ center=Ga terug naar het actualizatiecentrum +Checking\ Updates...=Zoekt actuele versies... +Go\ back\ to\ update\ center=Ga terug naar het actualisatiecentrum Done=Klaar diff --git a/core/src/main/resources/hudson/PluginManager/index_nl.properties b/core/src/main/resources/hudson/PluginManager/index_nl.properties index 7f25e24234..ead8e141fc 100644 --- a/core/src/main/resources/hudson/PluginManager/index_nl.properties +++ b/core/src/main/resources/hudson/PluginManager/index_nl.properties @@ -23,4 +23,5 @@ All=Alle None=Geen Select=Selecteer -UpdatePageDescription=Deze pagina geeft een overzicht van de gebruikte plugins waarvoor een actuelere versie beschikbaar is. +UpdatePageDescription=Deze pagina geeft een overzicht van de gebruikte plugins waarvoor een bijgewerkte versie beschikbaar is. +UpdatePageLegend=Uitgeschakelde rijen zijn al bijgewerkt maar wachten op een herstart. Selecteerbare rijen met schaduw zijn bezig of mislukt. diff --git a/core/src/main/resources/hudson/PluginManager/installed_nl.properties b/core/src/main/resources/hudson/PluginManager/installed_nl.properties index 48e88a8633..78c5ea2861 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_nl.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_nl.properties @@ -23,9 +23,14 @@ No\ plugins\ installed.=Er werd nog geen enkele plugin ge\u00EFnstalleerd. New\ plugins\ will\ take\ effect\ once\ you\ restart\ Jenkins=Neuw geregistreerde plugins worden pas actie na het herstarten van Jenkins. Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Uw wijzigingen zullen actief worden na het herstarten van Jenkins. -Uncheck\ to\ disable\ the\ plugin=Vink aan om de plugin te desactiveren. +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/table_nl.properties b/core/src/main/resources/hudson/PluginManager/table_nl.properties index fd09f1654b..695d44137d 100644 --- a/core/src/main/resources/hudson/PluginManager/table_nl.properties +++ b/core/src/main/resources/hudson/PluginManager/table_nl.properties @@ -21,9 +21,12 @@ # THE SOFTWARE. Check\ to\ install\ the\ plugin=Vink aan om te installeren Click\ this\ heading\ to\ sort\ by\ category=Klik op deze titel om te sorteren op categorie +Download\ now\ and\ install\ after\ restart=Nu downloaden en installeren tijdens herstart Inactive=Inactief Install=Installeren +Install\ without\ restart=Installeer zonder herstart Installed=Ge\u00EFnstalleerd Name=Naam Version=Versie No\ updates=Geen nieuwere versies beschikbaar. +coreWarning=Waarschuwing: Deze plugin is gemaakt voor Jenkins {0} of nieuwer. Het is mogelijk dat deze niet werkt in uw installatie. diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_nl.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_nl.properties new file mode 100644 index 0000000000..76231c51b7 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_nl.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Manage\ Old\ Data=Oude gegevens beheren +Name=Naam +No\ old\ data\ was\ found.=Er werden geen oude gegevens gevonden. +Version=Versie +blurb.1=Bij veranderingen in de opslagwijze van gegevens op schijf gebruikt Jenkins de volgende aanpak: gegevens worden bij het laden naar de nieuwe structuur gemigreerd, maar het bestand wordt niet opnieuw in de nieuwe structuur opgeslagen. Op deze manier blijft ''downgraden'' van Jenkins mogelijk. Ook is het mogelijk gegevens onbeperkt lang in de oude structuur op te slaan. In de onderstaande tabel staan deze gegevens samen met de Jenkins-versie(s) waarvan de gegevensstructuur is gewijzigd. +blurb.2=Soms ontstaan fouten bij het lezen van gegevens (als een plugin gegevens toevoegd waarna deze plugin uitgeschakeld wordt, als migragiecode niet geschreven is voor structuurwijzigingen of als Jenkins gedowngrade is nadat er gegevens zijn opgeslgen die onleesbaar zijn voor de oudere versie). Deze fouten worden gelogd, maar de onleesbare gegevens worden overgeslagen zodat Jenkins toch op kan starten en juist kan functioneren. diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_nl.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_nl.properties new file mode 100644 index 0000000000..78ab685276 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_nl.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Dismiss=Afwijzen +Manage=Beheren +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Er zijn gegevens opgeslagen in een oudere structuur en/of gegevens zijn onleesbaar. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_nl.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_nl.properties index 6439c6d0ef..ce5da612c6 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_nl.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_nl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=OK -More\ Info=Meer informatie -blurb=Het lijkt erop dat uw reverse proxy instellingen incorrect zijn. +Dismiss=Afwijzen +More\ Info=Meer Informatie +blurb=Het lijkt erop dat uw ''reverse proxy''-instellingen onjuist zijn. diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_nl.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_nl.properties index 165f9dddac..0e395ecdc3 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/index_nl.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_nl.properties @@ -26,6 +26,7 @@ Logger\ Configuration=Configuratie loggingsysteem Name=Naam Level=Niveau Submit=Verzend +Add\ new\ log\ recorder=Voeg een log recorder toe All=Alle >\ SEVERE=> ERNSTIG >\ WARNING=> WAARSCHUWING diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_nl.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_nl.properties index 594b659025..9a3abd4f69 100644 --- a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_nl.properties +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_nl.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. blurb=Gebruik deze tekst als HTML zonder vertaling +disableSyntaxHighlighting=Syntaxnadruk uitschakelen diff --git a/core/src/main/resources/hudson/matrix/MatrixBuild/ajaxMatrix_nl.properties b/core/src/main/resources/hudson/matrix/MatrixBuild/ajaxMatrix_nl.properties new file mode 100644 index 0000000000..b9da819d2a --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixBuild/ajaxMatrix_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Not\ run=Niet uitgevoerd diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_nl.properties b/core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_nl.properties index 09c0749934..014476cf27 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_nl.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_nl.properties @@ -24,6 +24,7 @@ Advanced\ Project\ Options=Geavanceerde projectopties Configuration\ Matrix=Configuratiematrix Build\ on\ multiple\ nodes=Start een bouwpoging op meerder nodes. Node=Node +Display\ Name=Weergegeven naam Name=Naam Values=Waarden Add\ more\ axis=Voeg assen toe diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_nl.properties b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_nl.properties index 623ac29911..bf3d392da6 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_nl.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_nl.properties @@ -20,6 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=\ - Geschikt voor projecten die nood hebben aan een groot aantal configuraties,\ - zoals testen op meerdere omgevingen, platformspecifieke bouwpogingen, ... +body=Geschikt voor projecten die een groot aantal verschillende configuraties nodig hebben,zoals testen op meerdere omgevingen, platformspecifieke bouwpogingen, etc. diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_nl.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_nl.properties index 3c67fc7ac2..a1f895b67e 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_nl.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_nl.properties @@ -23,15 +23,15 @@ on=op startedAgo= {0} geleden gestart Took=Duurde -Build=Bouwpoging Build\ Artifacts=Opgeleverde artefacten -Changes\ in\ dependency=Gewijzigde afhankelijkheden +Changes\ in\ dependency=Wijzigingen in afhankelijkheid +beingExecuted=Build wordt uitgevoerd voor {0} detail=detail Not\ yet\ determined=Nog niet bepaald +Downstream\ Builds=Stroomafwaartse bouwpogingen Failed\ to\ determine=Kon niet bepaald worden log=log Upstream\ Builds=Stroomopwaartse bouwpogingen -Downstream\ Builds= -none=geen enkel +none=Geen Permalinks=Permanente referenties Build\ number=Nummer bouwpoging diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_nl.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_nl.properties index aa1777af34..170d259bfd 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_nl.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_nl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Previous\ Build=Vorige bouwpoging -Next\ Build=Volgende bouwpoging +Previous\ Build=Vorige build +Next\ Build=Volgende Bouwpoging diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_nl.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_nl.properties index 2b4ae86bfe..3922944ffc 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_nl.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_nl.properties @@ -20,10 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=Terug naar Project +Back\ to\ Project=Terug naar het Project Changes=Wijzigingen -Console\ Output=Console -View\ as\ plain\ text=Bekijken als eenvoudige tekst -Edit\ Build\ Information=Wijzig Build gegevens -Status=Status -raw=ruw +View\ Build\ Information=Laat bouwpoging informatie zien + +View\ as\ plain\ text=Bekijken als platte tekst +Console\ Output=Console Weergave +Edit\ Build\ Information=Wijzig Build Informatie +Status=Statusoverzicht +raw=rauw diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_nl.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_nl.properties index fc27b82789..6376b28f52 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/configure-common_nl.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_nl.properties @@ -21,3 +21,6 @@ # THE SOFTWARE. Advanced\ Project\ Options=Geavanceerde projectopties +Display\ Name=Weergavenaam +JDK\ to\ be\ used\ for\ this\ project=JDK voor dit project +default.value=(Standaard) diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_nl.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_nl.properties index 6041c399cb..a8b9b8eaa3 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_nl.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_nl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Bent u zeker? U staat op het punt deze {0} te verwijderen! +blurb=Bent u zeker? U staat op het punt dit {0} te verwijderen! Yes=Ja diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_nl.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_nl.properties index 81ecb7e758..c1e0cd1e3a 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_nl.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=Wijzigingen +Changes=Changelog diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_nl.properties b/core/src/main/resources/hudson/model/AbstractProject/main_nl.properties index 4fee38649e..50bdb9f1a1 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_nl.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_nl.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Workspace=Werkplaats -Last\ Successful\ Artifacts=Laatste succesvol gebouwde artefacten +Last\ Successful\ Artifacts=Laatste succesvol gebouwde producten Recent\ Changes=Recente wijzigingen Latest\ Test\ Result=Laatste testresultaten diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_nl.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_nl.properties index 17fd7cee18..363567c88f 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_nl.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_nl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Deactiveer project +Disable\ Project=Deactiveer Project Enable=Activeren This\ project\ is\ currently\ disabled=Dit project is gedeactiveerd diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_nl.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_nl.properties index 1162a7e8de..0e4a786c58 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_nl.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_nl.properties @@ -20,11 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Terug naar Dashboard -Status=Status -Build\ scheduled=Bouwpoging gepland +Back\ to\ Dashboard=Terug naar dashboard +Status=Projectstatus +Build\ scheduled=Bouw gepland Changes=Wijzigingen -Wipe\ Out\ Workspace=Maak werkplaats leeg -Workspace=Werkplaats -delete=Verwijder {0} -Configure=Configureer +Wipe\ Out\ Workspace=Leeg Werkmap +Workspace=Werkmap +delete={0} verwijderen +Configure=Configureren +delete.confirm=Ben je zeker van het verwijderen van de {0} {1}? +wipe.out.confirm=Ben je zeker van de werkplaats leegmaken? diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_nl.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_nl.properties new file mode 100644 index 0000000000..7790e9864f --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_nl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +caused_by=oorspronkelijk veroorzaakt door: +started_by_project=Gestart door stroomopwaarts project {0}, bouwpoging {1} diff --git a/core/src/main/resources/hudson/model/CauseAction/summary_nl.properties b/core/src/main/resources/hudson/model/CauseAction/summary_nl.properties new file mode 100644 index 0000000000..bdfc183fc9 --- /dev/null +++ b/core/src/main/resources/hudson/model/CauseAction/summary_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Ntimes=({0} maal) diff --git a/core/src/main/resources/hudson/model/Computer/builds_nl.properties b/core/src/main/resources/hudson/model/Computer/builds_nl.properties new file mode 100644 index 0000000000..bb78267b38 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/builds_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title=Build geschiedenis op {0} diff --git a/core/src/main/resources/hudson/model/Computer/index_nl.properties b/core/src/main/resources/hudson/model/Computer/index_nl.properties index efbab951cb..c83ffe0b12 100644 --- a/core/src/main/resources/hudson/model/Computer/index_nl.properties +++ b/core/src/main/resources/hudson/model/Computer/index_nl.properties @@ -20,8 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Labels:=Labels: None=Geen -submit.not.temporarilyOffline=Markeer deze machine als tijdelijk niet beschikbaar +submit.not.temporarilyOffline=Markeer als tijdelijk offline submit.temporarilyOffline=Deze node is opnieuw online -title.projects_tied_on=Projecten verbonden aan {0}: +title.projects_tied_on=Projecten gebonden aan {0} diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_nl.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_nl.properties index 4600ef3983..8c6eea983d 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_nl.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_nl.properties @@ -20,9 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ List=Terug naar de lijst -Build\ History=Bouwhistoriek -Configure=Configureer -Delete\ Slave=Slave verwijderen -Script\ Console=Script Console +Back\ to\ List=Terug naar overzicht +Build\ History=Bouwhistorie +Configure=Configureren +Delete\ Slave=Verwijderen +Load\ Statistics=Belasting statistieken +Script\ Console=Scriptconsole Status=Status diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_nl.properties b/core/src/main/resources/hudson/model/ComputerSet/index_nl.properties index 6ae714a5b9..61416fcf68 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_nl.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_nl.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Configure=Configureer +Configure=Configureren +Data\ obtained=Verkregen data Name=Naam -Refresh\ status=Ververs status +Refresh\ status=Status vernieuwen diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_nl.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_nl.properties index 15a080c925..be3b08a113 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_nl.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_nl.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Terug naar Dashboard -Manage\ Jenkins=Beheer Jenkins -Configure=Configureer -New\ Node=Nieuwe Node +Back\ to\ Dashboard=Terug naar dashboard +Manage\ Jenkins=Jenkins Beheren +Configure=Configureren +New\ Node=Nieuwe node diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_nl.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_nl.properties index de7e5cfd4f..2150395623 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_nl.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_nl.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +No\ files\ in\ directory=Geen bestanden in de directorie all\ files\ in\ zip=alle bestanden in een zip-archief -view=bekijk +view=weergeven diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_nl.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_nl.properties index 1513133766..7d46644c79 100644 --- a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_nl.properties +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_nl.properties @@ -20,8 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=\ - Dit is een basiseigenschap van Jenkins. Jenkins zal uw project bouwen. \ - Hierbij kun je gebruik maken van een willekeurige combinatie tussen SCM \ - en bouwsysteem. Je zou Jenkins zelfs kunnen gebruiken voor andere zaken dan \ - het bouwen van software. +body=Dit is de basisfunctionaliteit van Jenkins. Bij dit type project kun je gebruik maken van een willekeurige combinatie van versiebeheer- en bouwsysteem. Je zou Jenkins zelfs kunnen gebruiken voor andere zaken dan het bouwen van software. diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_nl.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_nl.properties index 549c200fca..b9bfcb6ba4 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_nl.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_nl.properties @@ -23,6 +23,7 @@ Timeline=Tijdslijn title={0} Duurtrend van een bouwpoging Build=Bouwpoging +Build\ Time\ Trend=Bouw tijd trend Duration=Duur Slave=Slaaf More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=Er dienen minsten 2 bouwpogingen plaatsgevonden te hebben, vooralleer een trendrapport kan opgesteld worden. diff --git a/core/src/main/resources/hudson/model/Job/configure_nl.properties b/core/src/main/resources/hudson/model/Job/configure_nl.properties index 30999c652e..332107a255 100644 --- a/core/src/main/resources/hudson/model/Job/configure_nl.properties +++ b/core/src/main/resources/hudson/model/Job/configure_nl.properties @@ -20,7 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -name={0}naam +Strategy=Strategie +name={0} naam Description=Omschrijving -Discard\ Old\ Builds=Oude bouwpogingen automatisch verwijderen -Save=Bewaar +Discard\ Old\ Builds=Oude builds automatisch verwijderen +LOADING=LADEN +Save=Opslaan diff --git a/core/src/main/resources/hudson/model/Job/index_nl.properties b/core/src/main/resources/hudson/model/Job/index_nl.properties index eafbfdf086..ef85dbf21c 100644 --- a/core/src/main/resources/hudson/model/Job/index_nl.properties +++ b/core/src/main/resources/hudson/model/Job/index_nl.properties @@ -21,7 +21,11 @@ # THE SOFTWARE. Permalinks=Permanente referenties +Disable\ Project=Deactiveer Project +Enable=Activeren Last\ build=Laatste bouwpoging Last\ stable\ build=Laatste stabiele bouwpoging Last\ successful\ build=Laatste succesvolle bouwpoging Last\ failed\ build=Laatst gefaalde bouwpoging +Project\ name=Projectnaam +This\ project\ is\ currently\ disabled=Dit project is momenteel gedeactiveerd diff --git a/core/src/main/resources/hudson/model/Job/permalinks_nl.properties b/core/src/main/resources/hudson/model/Job/permalinks_nl.properties index 61858e409c..cdfcb3a90d 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_nl.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Permalinks=Permanente referenties +Permalinks=Links diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_nl.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_nl.properties new file mode 100644 index 0000000000..f554888906 --- /dev/null +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +blurb=Toont items in een eenvoudig lijst formaat. Je kan kiezen welke bouw opdrachten te tonen zijn in welk overzicht. diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_nl.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_nl.properties index 44d5955a8c..4628ca9553 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_nl.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_nl.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Load\ statistics\ graph=Grafiek load statistieken +Load\ statistics\ graph=Grafiek bezettingsstatistieken Long=Lang Medium=Medium Short=Kort Timespan=Tijdsspanne -title=Load statistieken: {0} +title=Bezettingsstatistieken: {0} diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_nl.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_nl.properties new file mode 100644 index 0000000000..24567966a7 --- /dev/null +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +blurb=Dit overzicht toont automatisch alle bouw opdrachten de huidige gebruiker toegang toe heeft. diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/newView_nl.properties b/core/src/main/resources/hudson/model/MyViewsProperty/newView_nl.properties new file mode 100644 index 0000000000..4564ead705 --- /dev/null +++ b/core/src/main/resources/hudson/model/MyViewsProperty/newView_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +View\ name=Naam overzicht diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_nl.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_nl.properties new file mode 100644 index 0000000000..7b7fe50685 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_nl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Add\ Parameter=Instelling toevoegen +This\ build\ is\ parameterized=Deze bouwpoging is geparametriseerd diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_nl.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_nl.properties new file mode 100644 index 0000000000..4b74b1c583 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_nl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build=Bouwen +description=Deze bouwpoging heeft parameters nodig: diff --git a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_nl.properties b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_nl.properties new file mode 100644 index 0000000000..d11e720315 --- /dev/null +++ b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_nl.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Default\ Value=Standaardwaarde +Description=Beschrijving +Name=Naam diff --git a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_nl.properties b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_nl.properties new file mode 100644 index 0000000000..74bb2109d8 --- /dev/null +++ b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Shows\ the\ content\ of\ a\ global\ view.=Inhoud van het algemene overzicht tonen diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_nl.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_nl.properties new file mode 100644 index 0000000000..4752e0c57f --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Keep\ this\ build\ forever=Bewaar deze build voor altijd diff --git a/core/src/main/resources/hudson/model/Run/configure_nl.properties b/core/src/main/resources/hudson/model/Run/configure_nl.properties index f3abece272..c5d14d628b 100644 --- a/core/src/main/resources/hudson/model/Run/configure_nl.properties +++ b/core/src/main/resources/hudson/model/Run/configure_nl.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=Beschrijving -DisplayName=Weergave naam -LOADING=OPHALEN -Save=Opslaan +Description=Omschrijving +DisplayName=Naam +LOADING=LADEN +Save=Bewaar diff --git a/core/src/main/resources/hudson/model/Run/console_nl.properties b/core/src/main/resources/hudson/model/Run/console_nl.properties index c410fbb195..9b992f60a3 100644 --- a/core/src/main/resources/hudson/model/Run/console_nl.properties +++ b/core/src/main/resources/hudson/model/Run/console_nl.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Console +Console\ Output=Console weergave +View\ as\ plain\ text=Bekijken als ruwe tekst skipSome={0,number,integer} KB overgeslagen..Volledige Log diff --git a/core/src/main/resources/hudson/model/Run/delete_nl.properties b/core/src/main/resources/hudson/model/Run/delete_nl.properties index 1e41abed98..572509c47f 100644 --- a/core/src/main/resources/hudson/model/Run/delete_nl.properties +++ b/core/src/main/resources/hudson/model/Run/delete_nl.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=Deze bouwpoging verwijderen +Delete\ this\ build=Deze build verwijderen diff --git a/core/src/main/resources/hudson/model/Run/logKeep_nl.properties b/core/src/main/resources/hudson/model/Run/logKeep_nl.properties index 72f366d1d3..ebc3d9e7cc 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_nl.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_nl.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Don't\ keep\ this\ build\ forever=Deze bouwpoging niet eeuwig bijhouden. -Keep\ this\ build\ forever=Hou deze bouwpoging eeuwig bij +Keep\ this\ build\ forever=Bewaar deze Build eeuwig diff --git a/core/src/main/resources/hudson/model/StringParameterDefinition/config_nl.properties b/core/src/main/resources/hudson/model/StringParameterDefinition/config_nl.properties new file mode 100644 index 0000000000..787155fcd1 --- /dev/null +++ b/core/src/main/resources/hudson/model/StringParameterDefinition/config_nl.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Default\ Value=Standaardwaarde +Description=Omschrijving +Name=Naam diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_nl.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_nl.properties index 425d6dfc7d..564d7aac7d 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_nl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_nl.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewVersionAvailable=Er is een nieuwe versie van Jenkins ({0}) beschikbaar (changelog). +NewVersionAvailable=Er is een nieuwere versie van Jenkins ({0}) beschikbaar. downloaden (changelog). +Or\ Upgrade\ Automatically=Of werk automatisch bij UpgradeComplete=Upgrade naar Jenkins {0} is volledig; aan het wachten op herstart. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_nl.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_nl.properties new file mode 100644 index 0000000000..912bc8694d --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Installing=Bezig met installeren diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_nl.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_nl.properties new file mode 100644 index 0000000000..46ce660750 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Restarting\ Jenkins=Jenkins opnieuw starten diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_nl.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_nl.properties index 372c67c235..2f626af09e 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_nl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_nl.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -warning=Herstart Jenkins zodra de installatie voltooid is en er geen taken draaien +Go\ back\ to\ the\ top\ page=Ga terug naar de hoogste pagina +warning=Jenkins herstarten zodra de installatie voltooid is en er geen taken draaien +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=Je kunt de ge\u00EFnstalleerde plugins meteen gebruiken diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_nl.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_nl.properties index b5f671c71d..90a06f16d1 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_nl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_nl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing\ Plugins/Upgrades=Plugins/Upgrades installeren +Installing\ Plugins/Upgrades=Plugins/upgrades installeren warning=Wanneer de installatie is gedaan, moet Jenkins herstart worden opdat de wijzigingen zouden toegepast worden. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_nl.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_nl.properties index 6edcef69fb..b3dee64ec8 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_nl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_nl.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Back\ to\ Dashboard=Terug naar Dashboard -Manage\ Jenkins=Beheer Jenkins -Manage\ Plugins=Beheer plugins +Manage\ Jenkins=Jenkins beheren +Manage\ Plugins=Plugins beheren diff --git a/core/src/main/resources/hudson/model/User/builds_nl.properties b/core/src/main/resources/hudson/model/User/builds_nl.properties new file mode 100644 index 0000000000..183da71366 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/builds_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title=Bouwopdrachten voor {0} diff --git a/core/src/main/resources/hudson/model/User/sidepanel_nl.properties b/core/src/main/resources/hudson/model/User/sidepanel_nl.properties index df755f4009..3bfedaf65e 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_nl.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_nl.properties @@ -21,7 +21,8 @@ # THE SOFTWARE. Delete=Verwijder +My\ Views=Mijn weergaves People=Gebruikers Status=Status -Builds=Bouwpogingen -Configure=Configureer +Builds=Bouwpogingen tonen +Configure=Configureren diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_nl.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_nl.properties index 64c1251676..f696b19bbd 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_nl.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_nl.properties @@ -21,7 +21,9 @@ # THE SOFTWARE. Name=Naam -Last\ Active=Laatste activiteit -On=Job -People=Gebruikers -User\ Id=Gebruiker id +All\ People=Iedereen +Last\ Active=Laatst actief +On= +People=Mensen +User\ Id=Id gebruiker +blurb=Dit zijn alle bekende \u201Cgebruikers\u201D, inclusief geregistreerde inloggers, plus alle mensen genoemd in wijzingings logboeken die wijzinging hebben gedaan. diff --git a/core/src/main/resources/hudson/model/View/People/index_nl.properties b/core/src/main/resources/hudson/model/View/People/index_nl.properties new file mode 100644 index 0000000000..facfd6ed55 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_nl.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +All\ People=Alle gebruikers +Last\ Active=Laatst Actief +On=op +People=Echte Naam +User\ Id=Gebruikers Id diff --git a/core/src/main/resources/hudson/model/View/builds_nl.properties b/core/src/main/resources/hudson/model/View/builds_nl.properties index eb3a8d3855..611ac055b0 100644 --- a/core/src/main/resources/hudson/model/View/builds_nl.properties +++ b/core/src/main/resources/hudson/model/View/builds_nl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Export\ as\ plain\ XML=Exporteert als gewone XML +Export\ as\ plain\ XML=Exporteert als XML buildHistory=Overzicht bouwpogingen diff --git a/core/src/main/resources/hudson/model/View/newJob_nl.properties b/core/src/main/resources/hudson/model/View/newJob_nl.properties index b80344bed7..83db35c44a 100644 --- a/core/src/main/resources/hudson/model/View/newJob_nl.properties +++ b/core/src/main/resources/hudson/model/View/newJob_nl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -JobName={0} naam -CopyExisting=Kopi\u00EBer bestaande {0} +JobName={0}-naam +CopyExisting=Kopieer bestaande {0} Copy\ from=Kopi\u00EBer van diff --git a/core/src/main/resources/hudson/model/View/sidepanel_nl.properties b/core/src/main/resources/hudson/model/View/sidepanel_nl.properties index a60c2cad03..01f590fbc5 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_nl.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_nl.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewJob=Nieuw {0} -People=Mensen -Build\ History=Build historie -Edit\ View=View bewerken -Delete\ View=Overzichtsscherm verwijderen -Project\ Relationship=Relaties tussen projecten -Check\ File\ Fingerprint=Controleer checkums +NewJob=Nieuwe {0} +People=Gebruikers +Build\ History=Build-geschiedenis +Edit\ View=Huidige scherm bewerken +Delete\ View=Overzichtsscherm Verwijderen +Project\ Relationship=Relaties tussen Projecten +Check\ File\ Fingerprint=Vingerafdrukken Controleren diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_nl.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_nl.properties index 0194c2a3b1..bccc655f52 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_nl.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ changes.=Geen wijzigingen +No\ changes.=Geen wijzigingen. diff --git a/core/src/main/resources/hudson/search/Search/search-failed_nl.properties b/core/src/main/resources/hudson/search/Search/search-failed_nl.properties new file mode 100644 index 0000000000..3e7fc779c0 --- /dev/null +++ b/core/src/main/resources/hudson/search/Search/search-failed_nl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Nothing\ seems\ to\ match.=Niets correspondeert +Search\ for=Zoeken van diff --git a/core/src/main/resources/hudson/search/UserSearchProperty/config_nl.properties b/core/src/main/resources/hudson/search/UserSearchProperty/config_nl.properties new file mode 100644 index 0000000000..89a5472718 --- /dev/null +++ b/core/src/main/resources/hudson/search/UserSearchProperty/config_nl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Case-sensitivity=Hoofdlettergevoelig +Insensitive\ search\ tool=Geen onderscheid tussen hoofd- en kleine letters diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_nl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_nl.properties new file mode 100644 index 0000000000..ec635b9079 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_nl.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Confirm\ password=Bevestig wachtwoord +E-mail\ address=Emailadres +Full\ name=Naam +Password=Wachtwoord +Username=Gebruikersnaam diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_nl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_nl.properties index 49f909f28b..b0d875026f 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_nl.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Allow\ users\ to\ sign\ up=Sta gebruikers to in te loggen +Allow\ users\ to\ sign\ up=Sta gebruikers toe in te loggen diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_nl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_nl.properties new file mode 100644 index 0000000000..f8ec6653a7 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_nl.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Name=Naam +User\ Id=Gebruikersnaam +Users=Gebruikers +blurb=Deze gebruikers kunnen op Jenkins inloggen. Dit is een sub set van deze lijst, deze bevat ook automatisch aangemaakte gebruikers die hebben bijgedragen bij een of meer projecten maar die geen directe toegang tot Jenkins hebben. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_nl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_nl.properties new file mode 100644 index 0000000000..c1ca6776f6 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_nl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Create\ User=Cree\u00EBr gebruiker +Manage\ Jenkins=Beheer Jenkins diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_nl.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_nl.properties new file mode 100644 index 0000000000..7ddc52fb73 --- /dev/null +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_nl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Unprotected\ URLs=Onbeschermde URLs +blurb=Deze URLs (en URLs met deze prefix plus een /) vereisen geen authentificatie. Configureer uw container indien mogelijk om deze requests direct naar Jenkins te sturen, zonder login. diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_nl.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_nl.properties index 33bf906057..8328862f5b 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_nl.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=Aanmelden +login=inloggen diff --git a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_nl.properties b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_nl.properties new file mode 100644 index 0000000000..6f46d973fa --- /dev/null +++ b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Enable\ proxy\ compatibility=Proxy compatibiliteit inschakelen diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_nl.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_nl.properties index 07ff15658a..de6739a4e2 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_nl.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_nl.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +#\ of\ executors=Aantal uitvoerders Availability=Beschikbaarheid -Description=Omschrijving -Labels=Labels -Launch\ method=Start methode +Description=Beschrijving +Launch\ method=Uitvoermethode diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_nl.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_nl.properties index a3f05aa4dd..6fa69f44d7 100644 --- a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_nl.properties +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_nl.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Disconnect=Verbinding verbreken -Log=Log -System\ Information=Systeem Informatie +Log=Logboek +System\ Information=Systeeminformatie diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_nl.properties b/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_nl.properties index 674077c876..74cb8eb431 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_nl.properties +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_nl.properties @@ -25,3 +25,4 @@ File=Bestand Original\ owner=Oorspronkelijke eigenaar Age=Leeftijd more\ details=meer details +outside\ Jenkins=buiten Jenkins diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_nl.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_nl.properties index 2833b05f43..3810e06241 100644 --- a/core/src/main/resources/hudson/tasks/LogRotator/config_nl.properties +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_nl.properties @@ -20,7 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Days\ to\ keep\ builds=Max. # dagen om bouwpogingen bij te houden -if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=Indien gespecifieerd, zullen bouwpogingen maximaal het opgegeven aantal bouwpogingen bijgehouden worden. +Days\ to\ keep\ artifacts=Dagen dat de artefacten bewaard blijven +Days\ to\ keep\ builds=Max. # dagen om builds bij te houden +Max\ #\ of\ builds\ to\ keep\ with\ artifacts=Maximum # van bouwpogingen om te bewaren met artefacten +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=Als dit niet leeg is worden artefacten ouder dan het ingestelde aantal dagen gewist, maar de logbestanden, historie, rapporten etc van de bouwpoging worden bewaard. +if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=Indien gespecificeerd, zullen bouwpogingen maximaal het opgegeven aantal dagen bijgehouden worden. Max\ \#\ of\ builds\ to\ keep=Max. # bouwpogingen bij te houden -if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=Indien gespecifieerd, zullen enkel het opgegeven aantal bouwpogingen bijgehouden worden. +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=Indien gespecifieerd, zullen enkel het opgegeven aantal bouwpogingen worden bijgehouden. +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ builds\ have\ their\ artifacts\ retained=Indien niet leeg, behouden alleen dit aantal bouwpogingen hun artefacten diff --git a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_nl.properties b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_nl.properties index 1cfae7e2eb..ecf05c7408 100644 --- a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_nl.properties +++ b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_nl.properties @@ -22,7 +22,7 @@ skippedFor=Overgeslagen voor de laatste {0} {0,choice,0#bouwpogingen|1#bouwpoging|1Kijk na of je bemonstering blijft hangen en/of verhoog het aantal draden indien nodig. diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_nl.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_nl.properties index 2b2e9ce1a2..67f07e5a03 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_nl.properties +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_nl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Polling\ Log=Polling Log -View\ as\ plain\ text=Toon als platte tekst -blurb=Deze pagina laat het polling log zien dat deze build heeft getriggerd +Polling\ Log=Bemonsteringslog +View\ as\ plain\ text=Toon als normale tekst +blurb=Deze pagina laat de laatste bemonsteringslog zien die deze build heeft getriggerd diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/DescriptorImpl/index_nl.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/DescriptorImpl/index_nl.properties index 82b8d09fdc..4471513f78 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/DescriptorImpl/index_nl.properties +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/DescriptorImpl/index_nl.properties @@ -19,12 +19,9 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -clogged=Er zijn meer versiecontrolebemonsteringsactiviteiten gepland dan er \ - gelijktijdig afgehandeld kunnen worden. Gelieven na te gaan of er geen \ - bemonsteringsactiviteiten geblokkeerd zijn en/of verhoog indien nodig uw \ - maximum aantal gelijktijdige bemonsteringsactiviteiten. -Current\ SCM\ Polling\ Activities=Huidige versiecontrolebemonsteringsactiviteiten. -clogged=bouché +clogged=Er zijn meer versiebeheersbemonsteringen gepland dan er behandeld kunnen worden, dus de draden kunnen de vraag niet bijhouden. Kijk na of je bemonstering blijft hangen en/of verhoog het aantal draden indien nodig. +Current\ SCM\ Polling\ Activities=Huidige versiebeheersbemonsteringen. +clogged=Er zijn meer versiebeheersbemonsteringen gepland dan er behandeld kunnen worden, dus de draden kunnen de vraag niet bijhouden. Kijk na of je bemonstering blijft hangen en/of verhoog het aantal draden indien nodig. No\ polling\ activity\ is\ in\ progress.=Geen versiecontrolebemonsteringen actief. The\ following\ polling\ activities\ are\ currently\ in\ progress\:=Volgende versiecontrolebemonsteringen zijn actief: Project=Project diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_nl.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_nl.properties old mode 100755 new mode 100644 index f141de8981..0cae76b05a --- a/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_nl.properties +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_nl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=Laatste {0} +title="{0}" Polling\ has\ not\ run\ yet.=Er werd nog niet bemonsterd. diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_nl.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_nl.properties index 42a61e5342..995b60a356 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_nl.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_nl.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Schedule\ a\ build=Start nu een bouwpoging +Build\ scheduled=Build geplanned +Schedule\ a\ build=Plan een project +Schedule\ a\ build\ with\ parameters=Plan een build met parameters diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_nl.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_nl.properties new file mode 100644 index 0000000000..b8a64ea8bc --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +New\ View=Nieuw overzicht diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_nl.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_nl.properties index 7856d0a9a4..3d861487f3 100644 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_nl.properties +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -New\ View=Nieuwe beeldconfiguratie +New\ View=Nieuwe weergave diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_nl.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_nl.properties index 1e62f3a134..9a35af9537 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_nl.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=Duur laatste bouwpoging +Last\ Duration=Duur laatste project uitvoer diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_nl.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_nl.properties index 819cac5d55..23e9565c98 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/column_nl.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=N.B. +N/A=N.v.t. diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_nl.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_nl.properties index a168189f78..d525ec17c1 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_nl.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=Laatste gefaald +Last\ Failure=Laatst mislukte diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_nl.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_nl.properties index 23e9565c98..819cac5d55 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/column_nl.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=N.v.t. +N/A=N.B. diff --git a/core/src/main/resources/hudson/views/LastStableColumn/columnHeader_nl.properties b/core/src/main/resources/hudson/views/LastStableColumn/columnHeader_nl.properties new file mode 100644 index 0000000000..afea40a0f7 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastStableColumn/columnHeader_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Stable=Laatste Stabiel diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_nl.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_nl.properties index 23e9565c98..819cac5d55 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/column_nl.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=N.v.t. +N/A=N.B. diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_nl.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_nl.properties index 73756041de..8471d91b03 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_nl.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=Status van de laatste build +Status\ of\ the\ last\ build=Status laatste bouw diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_nl.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_nl.properties index ade86f03cb..a18c04153d 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_nl.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_nl.properties @@ -20,4 +20,4 @@ # 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=Weerbericht dat de verzamelde status van de laatste builds toont +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Weerbericht met de verzamelde status van de laatst uitgevoerde projecten diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_nl.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_nl.properties index b631de17d0..1c159f0f32 100644 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_nl.properties +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_nl.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. pending=gepland -cancel\ this\ build=annuleer deze bouwpoging +cancel\ this\ build=annuleer deze bouw poging diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_nl.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_nl.properties index 46d1b2771f..25bc89f596 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_nl.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Uitvoer van de console +Console\ Output=Uitvoer van het console diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_nl.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_nl.properties index 1998110e79..c6a4d911fa 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_nl.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_nl.properties @@ -22,5 +22,5 @@ trend=trend More\ ...=Meer ... -for\ all=alle -for\ failures=enkel gefaalde +for\ all=voor allen +for\ failures=voor mislukkingen diff --git a/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_nl.properties b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_nl.properties new file mode 100644 index 0000000000..59a18211bc --- /dev/null +++ b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_nl.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Dismiss=Ok +Setup\ Security=Beveiliging instellen +blurb=Onbeveiligd staat Jenkins iedereen op het netwerk toe om namens u processen te starten. Overweeg om ten minste authenticatie in te stellen om misbruik te ontmoedigen. diff --git a/core/src/main/resources/jenkins/management/PluginsLink/info_nl.properties b/core/src/main/resources/jenkins/management/PluginsLink/info_nl.properties new file mode 100644 index 0000000000..c29bfe95a0 --- /dev/null +++ b/core/src/main/resources/jenkins/management/PluginsLink/info_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +updates\ available=updates beschikbaar diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_nl.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_nl.properties index 1af4c0f8a0..24650d86e4 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_nl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_nl.properties @@ -20,7 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Home\ directory=Jenkins hoofdfolder +Build\ Record\ Root\ Directory=Hoofdmap bouwrapporten +Home\ directory=Jenkins hoofdmap System\ Message=Systeemboodschap LOADING=LADEN -Save=Bewaar +Save=Opslaan +Workspace\ Root\ Directory=Hoofdmap werkruimte 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 0f272afc4e..5e41e8d23b 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_nl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_nl.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ File\ Fingerprint=Controleer numerische vingerafdruk +Check\ File\ Fingerprint=Controleer de vingerafdruk van bestanden File\ to\ check=Te controleren bestand -Check=Controleer +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 more\ details=meer details diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_nl.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_nl.properties new file mode 100644 index 0000000000..451665c66a --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_nl.properties @@ -0,0 +1,15 @@ +# This file is under the MIT License by authors + +blue=De laatste bouw was geslaagd. +blue_anime=De laastste bouw was geslaagd. Een nieuwe bouw is bezig. +grey=Het projekt is nooit eerder gebouwd, of is niet actief. +grey_anime=De eerste bouw van het projekt is bezig. +health-00to20=Project gezondheid is 20% of minder. Je kan de muis over het project icoon laten sweven voor een gedetaileerdere verklaring. +health-21to40=Project gezondheid is tussen 20% en 40%. Je kan de muis over het project icoon laten sweven voor een gedetaileerdere verklaring. +health-41to60=Project gezondheid is tussen 40% en 60%. Je kan de muis over het project icoon laten sweven voor een gedetaileerdere verklaring. +health-61to80=Project gezondheid is tussen 60% en 80%. Je kan de muis over het project icoon laten sweven voor een gedetaileerdere verklaring. +health-81plus=Project gezondheid is meer dan 80%. Je kan de muis over het project icoon laten sweven voor een gedetaileerdere verklaring. +red=De laatste bouw faalde compleet. +red_anime=De laatste bouw faalde compleet. Een nieuwe bouw is bezig. +yellow=De laatste bouw was geslaagd maar instabiel. Dit is primair gebruikt voor het tonen van gefaalde tests. +yellow_anime=De laatste bouw was geslaagd maar instabiel. Een nieuwe bouw is bezig. diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_nl.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_nl.properties index 1cf5b40f06..f05bef0954 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/loginError_nl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_nl.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=Als je beheerder bent en denkt dat dit een configuratieprobleem kan zijn, kijk dan in de console-output van de server voor meer details. Invalid\ login\ information.\ Please\ try\ again.=Ongeldige aanmeldinformatie. Gelieve opnieuw te proberen. Try\ again=Probeer opnieuw diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_nl.properties b/core/src/main/resources/jenkins/model/Jenkins/login_nl.properties index bec69638b3..e9efc3e64d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_nl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_nl.properties @@ -22,6 +22,6 @@ User=Gebruiker Password=Wachtwoord -Remember\ me\ on\ this\ computer=Aanmeldgegevens op deze computer bijhouden. +Remember\ me\ on\ this\ computer=Onthouden op deze computer login=Aanmelden signUp=Als nieuwe gebruiker registreren. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_nl.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_nl.properties index a1cf5652a2..04600075c1 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_nl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_nl.properties @@ -20,4 +20,23 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Manage\ Jenkins=Beheer Jenkins +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Toevoegen, verwijderen, beheren en volgen van de verschillende Jenkins-nodes. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Plugins die de functionaliteit van Jenkins uitbreiden toevoegen, verwijderen of in- en uitschakelen. +Configure\ System=Systeem configureren +Configure\ global\ settings\ and\ paths.=Algemene instellingen en paden configureren +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Alle gegevens in het geheugen weggooien en deze opnieuw vanaf het bestandssysteem laden. +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Omgevingsinformatie tonen die kan helpen bij oplossen van problemen. +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Script uitvoeren voor administratie, probleemherstel of diagnose. +JenkinsCliText=Toegang tot en beheer van Jenkins vanuit een shell of script. +Load\ Statistics=statistieken laden +LoadStatisticsText=Gebruik van systeembronnen bekijken en daarmee beoordelen of meer computers voor de bouwopdrachten nodig zijn. +Manage\ Jenkins=Jenkins beheren +Manage\ Nodes=Nodes beheren +Manage\ Plugins=Plugins beheren +Prepare\ for\ Shutdown=Afsluiten voorbereiden +Reload\ Configuration\ from\ Disk=Configuratie opnieuw vanaf schijf laden +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Uitvoering van nieuwe bouwopdrachten stoppen, opdat het systeem uiteindelijk veilig kan afsluiten. +System\ Log=Systeemlogboek +SystemLogText=De uitvoer van java.util.logging voor Jenkins wordt geregistreerd. +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Dit is nuttig wanneer u configuratiebestanden buiten Jenkins om heeft bewerkt. +are.you.sure={0}: weet u het zeker? diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_nl.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_nl.properties index e746d9d446..8a48bc5914 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_nl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_nl.properties @@ -28,5 +28,6 @@ body=\ de,door een bouwpoging, opgeleverde artefacten. For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=Aan volgende voorwaarden dient voldaan om met deze functionaliteit te werken: The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts=Het bovenliggende project registreert elektronische vingerafdrukken van zijn bouwartefacten. +The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses=Het onderliggend project registreert de vingerafdrukken van de bestanden van het bovenliggende project The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ jar\ files\ it\ uses=Het onderliggende project registreert de elektronische vingerafdrukken van de gebruikte jar bestanden van bovenliggende projecten. This\ allows\ Jenkins\ to\ correlate\ two\ projects.=Dit stelt Jenkins in staat om 2 projecten met elkaar in verband te brengen. diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_nl.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_nl.properties index cc78f16ec8..2b6039f5c7 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_nl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_nl.properties @@ -24,5 +24,5 @@ Name=Naam Plugins=Invoegtoepassingen System\ Properties=Systeeminstellingen Enabled=Ingeschakeld -Environment\ Variables=Omgevingsinstellingen +Environment\ Variables=Omgevingsvariabelen Version=Versie diff --git a/core/src/main/resources/lib/form/advanced_nl.properties b/core/src/main/resources/lib/form/advanced_nl.properties old mode 100755 new mode 100644 index 8411c2a856..de57d1bcea --- a/core/src/main/resources/lib/form/advanced_nl.properties +++ b/core/src/main/resources/lib/form/advanced_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Advanced=Uitgebreid... \ No newline at end of file +Advanced=Uitgebreid diff --git a/core/src/main/resources/lib/form/apply_nl.properties b/core/src/main/resources/lib/form/apply_nl.properties new file mode 100644 index 0000000000..4781a8fdb2 --- /dev/null +++ b/core/src/main/resources/lib/form/apply_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Apply=Toepassen diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_nl.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_nl.properties new file mode 100644 index 0000000000..2686e9ed10 --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=configuratie diff --git a/core/src/main/resources/lib/form/expandableTextbox_nl.properties b/core/src/main/resources/lib/form/expandableTextbox_nl.properties index 711c25c725..c447be723b 100644 --- a/core/src/main/resources/lib/form/expandableTextbox_nl.properties +++ b/core/src/main/resources/lib/form/expandableTextbox_nl.properties @@ -19,6 +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. -tooltip=\ - Klik om meerdere lijnen te krijgen,
waarbij u nieuwe lijnen kunt gebruiken i.p.v. spaties.
\ - Om terug te keren naar enkelelijnsmodus, geeft u alles in op 1 lijn en stuurt dit door. +tooltip=Klik om meerdere regels te krijgen,
waarbij u nieuwe regels kunt gebruiken i.p.v. spaties.
Om terug te keren naar enkele regel modus, geeft u alles in op 1 regel en stuurt dit door. diff --git a/core/src/main/resources/lib/form/helpArea_nl.properties b/core/src/main/resources/lib/form/helpArea_nl.properties index ef0b3e4f3e..c6adb2d6c7 100644 --- a/core/src/main/resources/lib/form/helpArea_nl.properties +++ b/core/src/main/resources/lib/form/helpArea_nl.properties @@ -19,4 +19,4 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Loading...=Ophalen... +Loading...=Laden... diff --git a/core/src/main/resources/lib/form/textarea_nl.properties b/core/src/main/resources/lib/form/textarea_nl.properties new file mode 100644 index 0000000000..8c4e610f55 --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Hide\ preview=Verberg voorbeeld diff --git a/core/src/main/resources/lib/hudson/artifactList_nl.properties b/core/src/main/resources/lib/hudson/artifactList_nl.properties new file mode 100644 index 0000000000..47b8a881e1 --- /dev/null +++ b/core/src/main/resources/lib/hudson/artifactList_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +View=Uitklappen diff --git a/core/src/main/resources/lib/hudson/buildListTable_nl.properties b/core/src/main/resources/lib/hudson/buildListTable_nl.properties old mode 100755 new mode 100644 index 1988acf5e6..e8568f09f6 --- a/core/src/main/resources/lib/hudson/buildListTable_nl.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_nl.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ output=Console-uitvoer -Time\ Since=Datum +Click\ to\ center\ timeline\ on\ event=Klik om de tijdslijn op een gebeurtenis te centreren. +Console\ output=Console Uitvoer +Time\ Since=Datum vanaf Status=Status -Build=Bouwpoging diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_nl.properties b/core/src/main/resources/lib/hudson/buildProgressBar_nl.properties old mode 100755 new mode 100644 index e1a14acc03..8fc7e2cf51 --- a/core/src/main/resources/lib/hudson/buildProgressBar_nl.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Gestart sinds {0}
Geschatte resterende duur: {1} +text=Gestart {0} geleden
Geschatte resterende duur: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_nl.properties b/core/src/main/resources/lib/hudson/editableDescription_nl.properties index f87b229b29..d2038bda3f 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_nl.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_nl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=voeg omschrijving toe -edit\ description=Wijzig omschrijving +add\ description=een beschrijving toevoegen +edit\ description=wijzig omschrijving diff --git a/core/src/main/resources/lib/hudson/executors_nl.properties b/core/src/main/resources/lib/hudson/executors_nl.properties index 670e66c53f..1778ca195d 100644 --- a/core/src/main/resources/lib/hudson/executors_nl.properties +++ b/core/src/main/resources/lib/hudson/executors_nl.properties @@ -20,12 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Status uitvoerders +Build\ Executor\ Status=Status Project Uitvoerders +Idle=Inactief Offline=Niet verbonden Status=Status -Master=Hoofdnode -offline=Niet verbonden +Unknown\ Task=Onbekende taak Dead=Niet actief -Idle=Nietsdoend -Building=Bouwt -terminate\ this\ build=Stop bouwpoging +Building=Aan het bouwen +terminate\ this\ build=Stop deze bouw diff --git a/core/src/main/resources/lib/hudson/iconSize_nl.properties b/core/src/main/resources/lib/hudson/iconSize_nl.properties index 6e8f59ef85..b5dd4d6ec0 100644 --- a/core/src/main/resources/lib/hudson/iconSize_nl.properties +++ b/core/src/main/resources/lib/hudson/iconSize_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=Pictogram +Icon=Iconen diff --git a/core/src/main/resources/lib/hudson/newFromList/form_nl.properties b/core/src/main/resources/lib/hudson/newFromList/form_nl.properties index 02306230a6..bef27ebd01 100644 --- a/core/src/main/resources/lib/hudson/newFromList/form_nl.properties +++ b/core/src/main/resources/lib/hudson/newFromList/form_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Copy\ from=Kopieer van +Copy\ from=Kopi\u00EBer van diff --git a/core/src/main/resources/lib/hudson/node_nl.properties b/core/src/main/resources/lib/hudson/node_nl.properties index 4f252dda20..0b6e6f9046 100644 --- a/core/src/main/resources/lib/hudson/node_nl.properties +++ b/core/src/main/resources/lib/hudson/node_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -master=Hoofdnode +master=hoofdnode diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_nl.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_nl.properties new file mode 100644 index 0000000000..eed7e51496 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Block\ build\ when\ downstream\ project\ is\ building=Blokkeer de bouwpoging als het onderliggende project aan het bouwen is diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_nl.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_nl.properties new file mode 100644 index 0000000000..0f2405d8a0 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Block\ build\ when\ upstream\ project\ is\ building=Blokkeer de bouwpoging als het bovenliggende project aan het bouwen is diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_nl.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_nl.properties new file mode 100644 index 0000000000..4a9c269e51 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title.concurrentbuilds=Gelijktijdige bouwpogingen uitvoeren indien noodzakelijk diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_nl.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_nl.properties new file mode 100644 index 0000000000..c8d34cb594 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Use\ custom\ workspace=Gebruik eigen werkplaats diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_nl.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_nl.properties old mode 100755 new mode 100644 index f0be6a5e64..7364856e7c --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_nl.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_nl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Build=Bouwen desactiveren -No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Er zullen geen nieuwe bouwpogingen uitgevoerd worden tot het project opnieuw gectiveerd wordt. \ No newline at end of file +Disable\ Build=Bouwen deactiveren +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Er zullen geen nieuwe bouwpogingen uitgevoerd worden tot het project opnieuw geactiveerd wordt. diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_nl.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_nl.properties old mode 100755 new mode 100644 index 47c729ec9f..66b54c7dfc --- a/core/src/main/resources/lib/hudson/project/config-publishers2_nl.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_nl.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Post-build\ Actions=Acties na bouwpoging \ No newline at end of file +Add\ post-build\ action=Toevoegen actie na bouwpoging +Post-build\ Actions=Acties na bouwpoging diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_nl.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_nl.properties index cb63b4d322..48ae0fe996 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_nl.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_nl.properties @@ -22,4 +22,4 @@ Retry\ Count=Aantal pogingen -SCM\ checkout\ retry\ count=Aantal toegelaten pogingen voor het ophalen uit versiecontrole +SCM\ checkout\ retry\ count=Aantal pogingen uitchecken SCM diff --git a/core/src/main/resources/lib/hudson/project/config-scm_nl.properties b/core/src/main/resources/lib/hudson/project/config-scm_nl.properties old mode 100755 new mode 100644 index 4844a359c3..98ecae00b2 --- a/core/src/main/resources/lib/hudson/project/config-scm_nl.properties +++ b/core/src/main/resources/lib/hudson/project/config-scm_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Source\ Code\ Management=Beheer broncode +Source\ Code\ Management=Broncodebeheer (SCM) diff --git a/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_nl.properties b/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_nl.properties old mode 100755 new mode 100644 diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_nl.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_nl.properties old mode 100755 new mode 100644 index e530729c04..18380c28a1 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_nl.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_nl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Upstream\ Projects=Bovenliggende projecten -Downstream\ Projects=Onderliggende projecten +Upstream\ Projects=Bovenliggende Projecten +Downstream\ Projects=Onderliggende Projecten diff --git a/core/src/main/resources/lib/hudson/queue_nl.properties b/core/src/main/resources/lib/hudson/queue_nl.properties index c044dc620f..555048c309 100644 --- a/core/src/main/resources/lib/hudson/queue_nl.properties +++ b/core/src/main/resources/lib/hudson/queue_nl.properties @@ -20,7 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Build wachtrij -No\ builds\ in\ the\ queue.=Er staan geen builds in de wachtrij. -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Er werd Jenkins gevraagd zichzelf te be\u00EBindigen. Er zullen geen nieuwe bouwpogingen meer ondernomen worden. +Build\ Queue=Build-wachtrij +No\ builds\ in\ the\ queue.=Er staan geen projecten in de wachtrij. +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Er werd een signaal gestuurd om Jenkins zichzelf te laten afsluiten. Er zullen geen nieuwe bouwpogingen meer ondernomen worden. +Unknown\ Task=Onbekende taak +WaitingFor=Wachtende op {0} +WaitingSince=Wacht sinds {0} cancel=Annuleer diff --git a/core/src/main/resources/lib/hudson/rssBar_nl.properties b/core/src/main/resources/lib/hudson/rssBar_nl.properties index 0673b8c7d6..09dca0fda8 100644 --- a/core/src/main/resources/lib/hudson/rssBar_nl.properties +++ b/core/src/main/resources/lib/hudson/rssBar_nl.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=Legenda -for\ all=alle -for\ failures=van mislukte pogingen -for\ just\ latest\ builds=enkel de laatste bouwpogingen +Legend=Legende +for\ all=voor allemaal +for\ failures=voor gefaalde +for\ just\ latest\ builds=enkel de laatste uitvoerpogingen diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_nl.properties b/core/src/main/resources/lib/layout/breadcrumbBar_nl.properties new file mode 100644 index 0000000000..20e2dfabab --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_nl.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=ZET AUTO VERVERSING UIT + +ENABLE\ AUTO\ REFRESH=Automatisch herladen inschakelen diff --git a/core/src/main/resources/lib/layout/layout_nl.properties b/core/src/main/resources/lib/layout/layout_nl.properties index e5b239ba39..4907a3ba8d 100644 --- a/core/src/main/resources/lib/layout/layout_nl.properties +++ b/core/src/main/resources/lib/layout/layout_nl.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -search=zoeken -searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -Page\ generated=Pagina aangemaakt -logout=Afmelden +search=zoek +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/zoek+veld +Page\ generated=Pagina gegenereerd +logout=afmelden DISABLE\ AUTO\ REFRESH=Niet automatisch herladen -ENABLE\ AUTO\ REFRESH=Automatisch herladen +ENABLE\ AUTO\ REFRESH=Automatisch herladen inschakelen diff --git a/core/src/main/resources/lib/layout/main-panel_nl.properties b/core/src/main/resources/lib/layout/main-panel_nl.properties new file mode 100644 index 0000000000..1f12acd1ba --- /dev/null +++ b/core/src/main/resources/lib/layout/main-panel_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ is\ going\ to\ shut\ down=Jenkins zal dadelijk afgesloten worden diff --git a/core/src/main/resources/lib/layout/progressiveRendering_nl.properties b/core/src/main/resources/lib/layout/progressiveRendering_nl.properties new file mode 100644 index 0000000000..33c88a96a3 --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=Bezig met berekenen. diff --git a/core/src/main/resources/lib/layout/task_nl.properties b/core/src/main/resources/lib/layout/task_nl.properties new file mode 100644 index 0000000000..695e806a85 --- /dev/null +++ b/core/src/main/resources/lib/layout/task_nl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Done.=Klaar. diff --git a/core/src/main/resources/lib/test/bar_nl.properties b/core/src/main/resources/lib/test/bar_nl.properties index 729520f824..f5faaa6bb8 100644 --- a/core/src/main/resources/lib/test/bar_nl.properties +++ b/core/src/main/resources/lib/test/bar_nl.properties @@ -23,4 +23,4 @@ No\ tests=Geen testen beschikbaar failures={0} gefaald skipped={0} genegeerd -tests={0} testen +tests={0} tests -- GitLab From 9cd6456966bc5f021827171a8c639a2db6c77356 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:01 -0700 Subject: [PATCH 067/308] =?UTF-8?q?Community-contributed=20localization=20?= =?UTF-8?q?for=20Occitan=20(post=201500);=20Proven=C3=A7al=20(oc)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../hudson/model/AbstractBuild/sidepanel_oc.properties | 3 +++ .../hudson/model/AbstractBuild/tasks_oc.properties | 8 ++++++++ .../main/resources/hudson/model/Run/console_oc.properties | 5 +++++ .../main/resources/lib/hudson/buildCaption_oc.properties | 4 ++++ .../resources/lib/hudson/buildProgressBar_oc.properties | 3 +++ core/src/main/resources/lib/layout/layout_oc.properties | 6 ++++++ 6 files changed, 29 insertions(+) create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_oc.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_oc.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_oc.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_oc.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_oc.properties create mode 100644 core/src/main/resources/lib/layout/layout_oc.properties diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_oc.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_oc.properties new file mode 100644 index 0000000000..180e139577 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_oc.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Previous\ Build=That last one diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_oc.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_oc.properties new file mode 100644 index 0000000000..44b14c1cba --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_oc.properties @@ -0,0 +1,8 @@ +# 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/Run/console_oc.properties b/core/src/main/resources/hudson/model/Run/console_oc.properties new file mode 100644 index 0000000000..1b9cc2ee0d --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_oc.properties @@ -0,0 +1,5 @@ +# 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/lib/hudson/buildCaption_oc.properties b/core/src/main/resources/lib/hudson/buildCaption_oc.properties new file mode 100644 index 0000000000..ee21360eac --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_oc.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Progress=The future +cancel=Get out of my head diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_oc.properties b/core/src/main/resources/lib/hudson/buildProgressBar_oc.properties new file mode 100644 index 0000000000..f855fc9353 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_oc.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +text=Lickety split {0} till {1} diff --git a/core/src/main/resources/lib/layout/layout_oc.properties b/core/src/main/resources/lib/layout/layout_oc.properties new file mode 100644 index 0000000000..905967a0a9 --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_oc.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Page\ generated=I made this +logout=go away +search=Find-it +searchBox.url=http://google.com -- GitLab From 20d12882eed6ea00122e875e49de51460a613bc2 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:01 -0700 Subject: [PATCH 068/308] Community-contributed localization for pa_IN (pa_IN) --- .../hudson/model/View/sidepanel_pa_IN.properties | 9 +++++++++ .../views/DefaultViewsTabBar/viewTabs_pa_IN.properties | 3 +++ .../LastDurationColumn/columnHeader_pa_IN.properties | 3 +++ .../LastFailureColumn/columnHeader_pa_IN.properties | 3 +++ .../LastSuccessColumn/columnHeader_pa_IN.properties | 3 +++ .../views/StatusColumn/columnHeader_pa_IN.properties | 3 +++ .../resources/lib/hudson/buildHealth_pa_IN.properties | 3 +++ .../lib/hudson/editableDescription_pa_IN.properties | 3 +++ .../main/resources/lib/hudson/executors_pa_IN.properties | 6 ++++++ .../main/resources/lib/hudson/iconSize_pa_IN.properties | 3 +++ .../main/resources/lib/hudson/rssBar_pa_IN.properties | 4 ++++ .../resources/lib/layout/breadcrumbBar_pa_IN.properties | 3 +++ .../main/resources/lib/layout/layout_pa_IN.properties | 3 +++ 13 files changed, 49 insertions(+) create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_pa_IN.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_pa_IN.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_pa_IN.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_pa_IN.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_pa_IN.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_pa_IN.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_pa_IN.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_pa_IN.properties create mode 100644 core/src/main/resources/lib/hudson/executors_pa_IN.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_pa_IN.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_pa_IN.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_pa_IN.properties create mode 100644 core/src/main/resources/lib/layout/layout_pa_IN.properties diff --git a/core/src/main/resources/hudson/model/View/sidepanel_pa_IN.properties b/core/src/main/resources/hudson/model/View/sidepanel_pa_IN.properties new file mode 100644 index 0000000000..fbd4fccbb8 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_pa_IN.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Build\ History=BANNAN DA ITEHAAS +Check\ File\ Fingerprint=FILE DE UNGLI NISHAAN WEKHO +Delete\ View=DIKH MITAA DEVO +Edit\ View=DIKH BADLO +NewJob=NAVAAN +People=LOK +Project\ Relationship=KARAJ DA RISHTA 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 new file mode 100644 index 0000000000..555978e51f --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_pa_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +New\ View=NAVIN DIKH 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 new file mode 100644 index 0000000000..6ef6c5171a --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_pa_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Duration=AAKHRI SAMAA 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 new file mode 100644 index 0000000000..338b400991 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_pa_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Failure=AAKHRI HAAR 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 new file mode 100644 index 0000000000..2c1951ed21 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_pa_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Success=AAKHRI SAFALTA 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 new file mode 100644 index 0000000000..ab8419f402 --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pa_IN.properties @@ -0,0 +1,3 @@ +# 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/lib/hudson/buildHealth_pa_IN.properties b/core/src/main/resources/lib/hudson/buildHealth_pa_IN.properties new file mode 100644 index 0000000000..40a31d25fd --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_pa_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Description=VISTAAR diff --git a/core/src/main/resources/lib/hudson/editableDescription_pa_IN.properties b/core/src/main/resources/lib/hudson/editableDescription_pa_IN.properties new file mode 100644 index 0000000000..ad1deee5a3 --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_pa_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +add\ description=VISTAAR KARO diff --git a/core/src/main/resources/lib/hudson/executors_pa_IN.properties b/core/src/main/resources/lib/hudson/executors_pa_IN.properties new file mode 100644 index 0000000000..328a1fe8a8 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_pa_IN.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Building=BANN REHA HAI +Idle=WEHLA +Status=HAAL +offline=BAND HAI diff --git a/core/src/main/resources/lib/hudson/iconSize_pa_IN.properties b/core/src/main/resources/lib/hudson/iconSize_pa_IN.properties new file mode 100644 index 0000000000..fab32f2d4f --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_pa_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Icon=TASVEER diff --git a/core/src/main/resources/lib/hudson/rssBar_pa_IN.properties b/core/src/main/resources/lib/hudson/rssBar_pa_IN.properties new file mode 100644 index 0000000000..8cf51d04fe --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_pa_IN.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +for\ all=SAREYAN LAYI +for\ failures=HAAR LAYI diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_pa_IN.properties b/core/src/main/resources/lib/layout/breadcrumbBar_pa_IN.properties new file mode 100644 index 0000000000..6d7004048e --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_pa_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=PAGE AAP HI MUDH TAZA HOVE diff --git a/core/src/main/resources/lib/layout/layout_pa_IN.properties b/core/src/main/resources/lib/layout/layout_pa_IN.properties new file mode 100644 index 0000000000..0757e54e80 --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_pa_IN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +search=Labho -- GitLab From 55bc94d553dc732f2e8882ff64d0af38d3ba76ca Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:02 -0700 Subject: [PATCH 069/308] Community-contributed localization for Polish (pl) --- .../hudson/AboutJenkins/index_pl.properties | 6 ++++++ .../PluginManager/advanced_pl.properties | 7 ++++--- .../PluginManager/installed_pl.properties | 2 ++ .../hudson/PluginManager/table_pl.properties | 5 +++++ .../OldDataMonitor/manage_pl.properties | 7 +++++++ .../message_pl.properties | 4 ++-- .../LogRecorderManager/all_pl.properties | 3 +++ .../LogRecorderManager/feeds_pl.properties | 5 +++++ .../LogRecorderManager/index_pl.properties | 6 ++++++ .../LogRecorderManager/levels_pl.properties | 8 +++++++ .../LogRecorderManager/new_pl.properties | 3 +++ .../sidepanel_pl.properties | 8 +++++++ .../config_pl.properties | 4 ++++ .../matrix/MatrixBuild/delete_pl.properties | 4 ++++ .../model/AbstractBuild/index_pl.properties | 14 ++++++++----- .../AbstractBuild/sidepanel_pl.properties | 4 ++-- .../model/AbstractBuild/tasks_pl.properties | 11 +++++----- .../configure-common_pl.properties | 6 ++++++ .../editDescription_pl.properties | 3 +++ .../model/AbstractProject/main_pl.properties | 6 +++--- .../makeDisabled_pl.properties | 2 ++ .../AbstractProject/sidepanel_pl.properties | 12 ++++++----- .../hudson/model/AllView/noJob_pl.properties | 2 +- .../UpstreamCause/description_pl.properties | 4 ++-- .../UserIdCause/description_pl.properties | 2 +- .../model/CauseAction/summary_pl.properties | 3 +++ .../model/Computer/configure_pl.properties | 3 +++ .../hudson/model/Computer/index_pl.properties | 7 +++++-- .../model/Computer/sidepanel_pl.properties | 6 +++--- .../model/ComputerSet/index_pl.properties | 1 + .../model/ComputerSet/sidepanel_pl.properties | 3 ++- .../DirectoryBrowserSupport/dir_pl.properties | 5 +++-- .../newJobDetail_pl.properties | 2 +- .../hudson/model/JDK/config_pl.properties | 3 +++ .../model/Job/buildTimeTrend_pl.properties | 3 ++- .../hudson/model/Job/configure_pl.properties | 3 +++ .../hudson/model/Job/index_pl.properties | 6 ++++++ .../hudson/model/Job/permalinks_pl.properties | 2 +- .../ListView/configure-entries_pl.properties | 12 +++++++++++ .../model/LoadStatistics/main_pl.properties | 9 ++++++++ .../model/MyView/newViewDetail_pl.properties | 3 +++ .../MyViewsProperty/config_pl.properties | 3 +++ .../MyViewsProperty/newView_pl.properties | 3 +++ .../ParametersAction/index_pl.properties | 3 +++ .../config_pl.properties | 1 + .../ProxyView/newViewDetail_pl.properties | 3 +++ .../Run/KeepLogBuildBadge/badge_pl.properties | 3 +++ .../model/Run/confirmDelete_pl.properties | 2 +- .../hudson/model/Run/console_pl.properties | 4 +++- .../hudson/model/Run/delete_pl.properties | 2 +- .../hudson/model/Run/logKeep_pl.properties | 2 +- .../ConnectionCheckJob/row_pl.properties | 2 +- .../CoreUpdateMonitor/message_pl.properties | 5 +++++ .../DownloadJob/Failure/status_pl.properties | 4 ++++ .../DownloadJob/Pending/status_pl.properties | 2 +- .../Canceled/status_pl.properties | 3 +++ .../Pending/status_pl.properties | 2 +- .../RestartJenkinsJob/row_pl.properties | 2 +- .../model/UpdateCenter/body_pl.properties | 4 +++- .../model/UpdateCenter/index_pl.properties | 2 +- .../UpdateCenter/sidepanel_pl.properties | 6 +++--- .../hudson/model/User/builds_pl.properties | 3 +++ .../hudson/model/User/configure_pl.properties | 4 ++++ .../hudson/model/User/index_pl.properties | 3 +++ .../hudson/model/User/sidepanel_pl.properties | 7 +++++++ .../View/AsynchPeople/index_pl.properties | 3 ++- .../model/View/People/index_pl.properties | 8 +++++++ .../hudson/model/View/builds_pl.properties | 2 +- .../hudson/model/View/configure_pl.properties | 6 ++++++ .../hudson/model/View/delete_pl.properties | 4 ++++ .../hudson/model/View/sidepanel_pl.properties | 10 ++++----- .../EmptyChangeLogSet/digest_pl.properties | 2 +- .../search/Search/search-failed_pl.properties | 3 +++ .../_entryForm_pl.properties | 7 +++++++ .../config_pl.properties | 3 +++ .../loginLink_pl.properties | 2 +- .../LegacySecurityRealm/config_pl.properties | 4 ++++ .../SecurityRealm/loginLink_pl.properties | 2 +- .../DumbSlave/configure-entries_pl.properties | 7 +++++++ .../config_pl.properties | 5 +++++ .../slaves/JNLPLauncher/main_pl.properties | 3 +++ .../SlaveComputer/sidepanel2_pl.properties | 4 ++++ .../tasks/LogRotator/config_pl.properties | 4 ++++ .../junit/CaseResult/index_pl.properties | 6 ++++++ .../tasks/junit/History/index_pl.properties | 4 ++++ .../summary_pl.properties | 2 +- .../MetaTabulatedResult/body_pl.properties | 14 ++++++------- .../test/TestObject/sidepanel_pl.properties | 2 ++ .../tasks/test/TestResult/index_pl.properties | 2 +- .../floatingBox_pl.properties | 6 ++++-- .../config_pl.properties | 4 ++++ .../tools/JDKInstaller/config_pl.properties | 3 +++ .../ToolInstallation/global_pl.properties | 5 +++++ .../config_pl.properties | 5 +++++ .../BuildAction/index_pl.properties | 5 +++++ .../util/HudsonIsLoading/index_pl.properties | 4 ++++ .../BuildButtonColumn/column_pl.properties | 4 +++- .../DefaultViewsTabBar/viewTabs_pl.properties | 2 +- .../columnHeader_pl.properties | 2 +- .../LastDurationColumn/column_pl.properties | 2 +- .../columnHeader_pl.properties | 2 +- .../LastFailureColumn/column_pl.properties | 2 +- .../columnHeader_pl.properties | 3 +++ .../columnHeader_pl.properties | 2 +- .../LastSuccessColumn/column_pl.properties | 2 +- .../StatusColumn/columnHeader_pl.properties | 2 +- .../WeatherColumn/columnHeader_pl.properties | 2 +- .../BuildHistoryWidget/entries_pl.properties | 2 +- .../widgets/HistoryWidget/entry_pl.properties | 2 +- .../widgets/HistoryWidget/index_pl.properties | 5 ++--- .../management/PluginsLink/info_pl.properties | 2 +- .../jenkins/model/Jenkins/_cli_pl.properties | 4 ++++ .../model/Jenkins/configure_pl.properties | 7 +++++++ .../Jenkins/fingerprintCheck_pl.properties | 4 ++-- .../model/Jenkins/legend_pl.properties | 10 +++++++++ .../model/Jenkins/loginError_pl.properties | 5 +++++ .../jenkins/model/Jenkins/login_pl.properties | 8 +++++++ .../model/Jenkins/manage_pl.properties | 21 +++++++++++++++++++ .../Jenkins/projectRelationship_pl.properties | 6 ++++++ .../model/Jenkins/systemInfo_pl.properties | 9 ++++++++ .../resources/lib/form/apply_pl.properties | 3 +++ .../breadcrumb-config-outline_pl.properties | 3 +++ .../lib/form/expandableTextbox_pl.properties | 3 +++ .../resources/lib/form/helpArea_pl.properties | 2 +- .../lib/form/slave-mode_pl.properties | 3 +++ .../resources/lib/form/textarea_pl.properties | 4 ++++ .../lib/hudson/artifactList_pl.properties | 3 +++ .../lib/hudson/buildCaption_pl.properties | 2 +- .../lib/hudson/buildListTable_pl.properties | 8 +++---- .../lib/hudson/buildProgressBar_pl.properties | 2 +- .../hudson/editableDescription_pl.properties | 2 +- .../lib/hudson/executors_pl.properties | 12 +++++------ .../resources/lib/hudson/node_pl.properties | 2 +- .../config-concurrentBuild_pl.properties | 3 +++ .../config-customWorkspace_pl.properties | 3 +++ .../project/config-disableBuild_pl.properties | 4 ++++ .../project/config-quietPeriod_pl.properties | 4 ++++ .../project/config-retryCount_pl.properties | 4 ++++ .../hudson/project/config-scm_pl.properties | 3 +++ .../lib/hudson/project/matrix_pl.properties | 1 + .../project/upstream-downstream_pl.properties | 4 ++-- .../lib/hudson/propertyTable_pl.properties | 4 ++++ .../resources/lib/hudson/queue_pl.properties | 9 +++++--- .../resources/lib/hudson/rssBar_pl.properties | 6 +++--- .../lib/hudson/scriptConsole_pl.properties | 8 +++++++ .../lib/hudson/test-result_pl.properties | 6 ++++-- .../hudson/thirdPartyLicenses_pl.properties | 5 +++++ .../lib/layout/breadcrumbBar_pl.properties | 4 ++++ .../resources/lib/layout/layout_pl.properties | 9 +++++--- .../lib/layout/main-panel_pl.properties | 2 +- .../layout/progressiveRendering_pl.properties | 3 +++ .../resources/lib/layout/task_pl.properties | 3 +++ .../main/resources/lib/test/bar_pl.properties | 3 ++- 153 files changed, 549 insertions(+), 123 deletions(-) create mode 100644 core/src/main/resources/hudson/AboutJenkins/index_pl.properties create mode 100644 core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pl.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/all_pl.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/feeds_pl.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/index_pl.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/levels_pl.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/new_pl.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pl.properties create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_pl.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixBuild/delete_pl.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/configure-common_pl.properties create mode 100644 core/src/main/resources/hudson/model/AbstractModelObject/editDescription_pl.properties create mode 100644 core/src/main/resources/hudson/model/CauseAction/summary_pl.properties create mode 100644 core/src/main/resources/hudson/model/Computer/configure_pl.properties create mode 100644 core/src/main/resources/hudson/model/JDK/config_pl.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_pl.properties create mode 100644 core/src/main/resources/hudson/model/ListView/configure-entries_pl.properties create mode 100644 core/src/main/resources/hudson/model/LoadStatistics/main_pl.properties create mode 100644 core/src/main/resources/hudson/model/MyView/newViewDetail_pl.properties create mode 100644 core/src/main/resources/hudson/model/MyViewsProperty/config_pl.properties create mode 100644 core/src/main/resources/hudson/model/MyViewsProperty/newView_pl.properties create mode 100644 core/src/main/resources/hudson/model/ParametersAction/index_pl.properties create mode 100644 core/src/main/resources/hudson/model/ProxyView/newViewDetail_pl.properties create mode 100644 core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_pl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_pl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_pl.properties create mode 100644 core/src/main/resources/hudson/model/User/builds_pl.properties create mode 100644 core/src/main/resources/hudson/model/User/configure_pl.properties create mode 100644 core/src/main/resources/hudson/model/User/index_pl.properties create mode 100644 core/src/main/resources/hudson/model/User/sidepanel_pl.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_pl.properties create mode 100644 core/src/main/resources/hudson/model/View/configure_pl.properties create mode 100644 core/src/main/resources/hudson/model/View/delete_pl.properties create mode 100644 core/src/main/resources/hudson/search/Search/search-failed_pl.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_pl.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_pl.properties create mode 100644 core/src/main/resources/hudson/security/LegacySecurityRealm/config_pl.properties create mode 100644 core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_pl.properties create mode 100644 core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pl.properties create mode 100644 core/src/main/resources/hudson/slaves/JNLPLauncher/main_pl.properties create mode 100644 core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_pl.properties create mode 100644 core/src/main/resources/hudson/tasks/LogRotator/config_pl.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/CaseResult/index_pl.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/History/index_pl.properties create mode 100644 core/src/main/resources/hudson/tools/InstallSourceProperty/config_pl.properties create mode 100644 core/src/main/resources/hudson/tools/JDKInstaller/config_pl.properties create mode 100644 core/src/main/resources/hudson/tools/ToolInstallation/global_pl.properties create mode 100644 core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_pl.properties create mode 100644 core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_pl.properties create mode 100644 core/src/main/resources/hudson/util/HudsonIsLoading/index_pl.properties create mode 100644 core/src/main/resources/hudson/views/LastStableColumn/columnHeader_pl.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/_cli_pl.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/configure_pl.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/legend_pl.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/loginError_pl.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/login_pl.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/projectRelationship_pl.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/systemInfo_pl.properties create mode 100644 core/src/main/resources/lib/form/apply_pl.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_pl.properties create mode 100644 core/src/main/resources/lib/form/expandableTextbox_pl.properties create mode 100644 core/src/main/resources/lib/form/slave-mode_pl.properties create mode 100644 core/src/main/resources/lib/form/textarea_pl.properties create mode 100644 core/src/main/resources/lib/hudson/artifactList_pl.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-concurrentBuild_pl.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-customWorkspace_pl.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-disableBuild_pl.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-quietPeriod_pl.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-retryCount_pl.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-scm_pl.properties create mode 100644 core/src/main/resources/lib/hudson/propertyTable_pl.properties create mode 100644 core/src/main/resources/lib/hudson/scriptConsole_pl.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_pl.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_pl.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_pl.properties create mode 100644 core/src/main/resources/lib/layout/task_pl.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_pl.properties b/core/src/main/resources/hudson/AboutJenkins/index_pl.properties new file mode 100644 index 0000000000..0b9e7c410c --- /dev/null +++ b/core/src/main/resources/hudson/AboutJenkins/index_pl.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +about=O Jenkins''ie {0} +blurb=Jenkins jest rozwijanym przez spo\u0142eczno\u015B\u0107 open-source serwerem Continuous Integration +dependencies=Jenkins jest oparty na nast\u0119puj\u0105cych zewn\u0119trznych bibliotekach: +plugin.dependencies=Informacja o licencji i zale\u017Cno\u015Bci plugin\u00F3w: diff --git a/core/src/main/resources/hudson/PluginManager/advanced_pl.properties b/core/src/main/resources/hudson/PluginManager/advanced_pl.properties index ed2794c752..e2a4db4d6e 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_pl.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_pl.properties @@ -26,10 +26,11 @@ HTTP\ Proxy\ Configuration=Konfiguracja HTTP Proxy Password=Has\u0142o Port=Port Server=Serwer +Submit=Prze\u015Blij URL=Adres URL Update\ Site=Strona z aktualizacjami -Upload=Wgraj -Upload\ Plugin=Wgraj wtyczk\u0119 +Upload=Prze\u015Blij +Upload\ Plugin=Prze\u015Blij wtyczk\u0119 User\ name=Nazwa u\u017Cytkownika lastUpdated=Informacje o aktualizacjach pobrane: {0} temu -uploadtext=Mo\u017Cesz wgra\u0107 plik .hpi \u017Ceby zainstalowa\u0107 wtyczk\u0119 z poza centralnego repozytorium wtyczek +uploadtext=Mo\u017Cesz przes\u0142a\u0107 plik .hpi \u017Ceby zainstalowa\u0107 wtyczk\u0119 z poza centralnego repozytorium wtyczek diff --git a/core/src/main/resources/hudson/PluginManager/installed_pl.properties b/core/src/main/resources/hudson/PluginManager/installed_pl.properties index b04bff6e71..799c461da7 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_pl.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_pl.properties @@ -27,6 +27,8 @@ Pinned=Przypi\u0119ta Previously\ installed\ version=Poprzednia zainstalowana wersja Restart\ Once\ No\ Jobs\ Are\ Running=Zrestartuj 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} +wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins diff --git a/core/src/main/resources/hudson/PluginManager/table_pl.properties b/core/src/main/resources/hudson/PluginManager/table_pl.properties index 4ae8010902..b6b6025d9a 100644 --- a/core/src/main/resources/hudson/PluginManager/table_pl.properties +++ b/core/src/main/resources/hudson/PluginManager/table_pl.properties @@ -22,8 +22,13 @@ Check\ to\ install\ the\ plugin=Zaznacz aby zainstalowa\u0107 wtyczk\u0119 Click\ this\ heading\ to\ sort\ by\ category=Kliknij w nag\u0142\u00F3wek by posortowa\u0107 po kategorii +Download\ now\ and\ install\ after\ restart=Pobierz teraz, zainstaluj po ponownym uruchomieniu +Filter=Filtruj +Inactive=Nieaktywne Install=Instaluj +Install\ without\ restart=Zainstaluj bez ponownego uruchamiania Installed=Wersja zainstalowana 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. diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pl.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pl.properties new file mode 100644 index 0000000000..c93304c390 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pl.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Manage\ Old\ Data=Zarz\u0105dzanie starymi danymi +Name=Nazwa +No\ old\ data\ was\ found.=Nie znaleziono starych danych +Type=Typ +Version=Wersja diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pl.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pl.properties index bdbfe96493..db3951f6e3 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pl.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=Ignoruj +Dismiss=Odrzu\u0107 More\ Info=Wi\u0119cej informacji -blurb=Wygl\u0105da na to, \u017Ce twoje ustawienia reverse proxy s\u0105 nieprawid\u0142owe. +blurb=Wygl\u0105da na to, \u017Ce Twoja konfiguracja (reverse) proxy jest niepoprawna. diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/all_pl.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/all_pl.properties new file mode 100644 index 0000000000..e9e1a09dbe --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/all_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ Log=Log Jenkins''a diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_pl.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_pl.properties new file mode 100644 index 0000000000..0e34577cb4 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_pl.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +>\ SEVERE=> POWA\u017BNE +>\ WARNING=> OSTRZE\u017BENIE +All=Wszystko diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_pl.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_pl.properties new file mode 100644 index 0000000000..abfa7767ba --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_pl.properties @@ -0,0 +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 +Log\ Recorders=Rejestratory log\u00F3w +Name=Nazwa diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_pl.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_pl.properties new file mode 100644 index 0000000000..b8451f3f6f --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_pl.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Adjust\ Levels=Dopasuj poziomy +Level=Poziom +Logger\ Configuration=Konfiguracja rejestratora +Name=Nazwa +Submit=Zg\u0142o\u015B +defaultLoggerMsg=Rejestrator bez nazwy jest domy\u015Blnym rejestratorem. Ten poziom b\u0119dzie dziedziczony przez wszystkie rejestratory bez skonfigurowanego poziomu. diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/new_pl.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/new_pl.properties new file mode 100644 index 0000000000..52e6f0466e --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/new_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=Nazwa diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pl.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pl.properties new file mode 100644 index 0000000000..4945181f27 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pl.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +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 diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_pl.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_pl.properties new file mode 100644 index 0000000000..73faff5b54 --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_pl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +blurb=Uznaj tekst za HTML i u\u017Cyj go bez jakiegokolwiek t\u0142umaczenia +disableSyntaxHighlighting=Wy\u0142\u0105cz wyr\u00F3\u017Cnianie sk\u0142adni diff --git a/core/src/main/resources/hudson/matrix/MatrixBuild/delete_pl.properties b/core/src/main/resources/hudson/matrix/MatrixBuild/delete_pl.properties new file mode 100644 index 0000000000..61901505f9 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixBuild/delete_pl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Delete\ Build=Usu\u0144 build +Delete\ this\ build\ and\ all\ configurations\ in\ this\ build=Usu\u0144 ten build i wszystkie konfiguracje w nim 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 47322da604..13a1635b6d 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_pl.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_pl.properties @@ -20,11 +20,15 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Build -Build\ Artifacts=Artefakty -Downstream\ Builds=Buildy zst\u0119puj\u0105ce +Build=Buduj +Build\ Artifacts=Artefakty budowania +Changes\ in\ dependency=Zmiany w zale\u017Cno\u015Bciach +Downstream\ Builds=Buildy podrz\u0119dne Not\ yet\ determined=Jeszcze nie ustalono -Took=Zaj\u0119\u0142o +Took=Trwa\u0142o +Upstream\ Builds=Buildy nadrz\u0119dne +beingExecuted=Zadanie jest wykonywane od {0} +detail=Detale none=brak on=na -startedAgo=Wystartowano {0} temu +startedAgo=Opublikowano {0} temu 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 58f385ecc3..1f6bd5f5e8 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\u0119pny build -Previous\ Build=Poprzedni build +Next\ Build=Nast\u0119pna wersja +Previous\ Build=Poprzednie zadanie 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 8d91f071ab..0d03d2fca9 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_pl.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_pl.properties @@ -20,11 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=Powr\u00F3t do Projektu +Back\ to\ Project=Wr\u00F3\u0107 do projektu Changes=Zmiany -Console\ Output=Podgl\u0105d konsoli +Console\ Output=Logi konsoli View\ as\ plain\ text=Otw\u00F3rz jako zwyk\u0142y tekst -Edit\ Build\ Information=Edycja informacji o budowaniu -Status=Status -View\ Build\ Information=Poka\u017C informacje o przebiegu budowania -raw=czyste +Edit\ Build\ Information=Edytuj informacje o kompilacji +View\ Build\ Information=Poka\u017C Informacje o build''zie +raw=surowe wyj\u015Bcie diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_pl.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_pl.properties new file mode 100644 index 0000000000..8381c8fb76 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_pl.properties @@ -0,0 +1,6 @@ +# 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) diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/editDescription_pl.properties b/core/src/main/resources/hudson/model/AbstractModelObject/editDescription_pl.properties new file mode 100644 index 0000000000..18411cab6f --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractModelObject/editDescription_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Submit=Zapisz 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 b94d2a0b5f..850d4b2469 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_pl.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_pl.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Successful\ Artifacts=Ostatnie Udane Artefakty +Last\ Successful\ Artifacts=Ostatnie Powiedzione Artefakty Latest\ Test\ Result=Ostatni wynik test\u00F3w -Recent\ Changes=Ostatnie Zmiany -Workspace=Przestrze\u0144 robocza +Recent\ Changes=Ostatnie zmiany +Workspace=Obszar roboczy diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_pl.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_pl.properties index 5ea1ab5912..1890a5ee68 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_pl.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_pl.properties @@ -21,3 +21,5 @@ # THE SOFTWARE. Disable\ Project=Wy\u0142\u0105cz projekt +Enable=W\u0142\u0105cz +This\ project\ is\ currently\ disabled=Ten projekt jest teraz wy\u0142\u0105czony 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 ff4159d42b..06ae13020a 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pl.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pl.properties @@ -20,11 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Powr\u00F3t do Pulpitu -Build\ scheduled=Build zaplanowany -Changes=Zmiany -Configure=Konfiguracja -Status=Status +Back\ to\ Dashboard=Powr\u00F3t do Dashboard''u +Build\ scheduled=Kompilacja zaplanowana +Changes=Rejestr zmian +Configure=Konfiguruj +View\ Configuration=Podgl\u0105d konfiguracji Wipe\ Out\ Workspace=Wyczy\u015B\u0107 przestrze\u0144 robocz\u0105 Workspace=Przestrze\u0144 robocza delete=Usu\u0144 {0} +delete.confirm=Czy na pewno usun\u0105\u0107 {0} \u2018{1}\u2019? +wipe.out.confirm=Czy na pewno wyczy\u015Bci\u0107 przestrze\u0144 robocz\u0105? 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 89041db538..993648df37 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_pl.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_pl.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Welcome\ to\ Jenkins!=Witamy w Jenkins! -newJob=Prosz\u0119 utworzy\u0107 nowe zadanie by rozpocz\u0105\u0107 prac\u0119. +newJob=Prosz\u0119 utworzy\u0107 nowe zadanie aby rozpocz\u0105\u0107 prac\u0119. diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_pl.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_pl.properties index d8a2b8f823..3f7e182c85 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_pl.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_pl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_project=Wystartowane z nadrz\u0119dnego projektu {0} przez build o numerze {1} -caused_by=oryginalnie wystartowany przez: +started_by_project=Wystartowany przez projekt nadrz\u0119dny {0} o numerze {1} +caused_by=Pierwotnie spowodowany przez: diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pl.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pl.properties index 6571093ee9..40b402ab4b 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pl.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pl.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. started_by_anonymous=Uruchomiono przez anonimowego u\u017Cytkownika -started_by_user=Wystartowane przez u\u017Cytkownika {1} +started_by_user=Wystartowane przez u\u017Cytkownika {1} diff --git a/core/src/main/resources/hudson/model/CauseAction/summary_pl.properties b/core/src/main/resources/hudson/model/CauseAction/summary_pl.properties new file mode 100644 index 0000000000..a60e4d2c54 --- /dev/null +++ b/core/src/main/resources/hudson/model/CauseAction/summary_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Ntimes=({0} razy) diff --git a/core/src/main/resources/hudson/model/Computer/configure_pl.properties b/core/src/main/resources/hudson/model/Computer/configure_pl.properties new file mode 100644 index 0000000000..52e6f0466e --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/configure_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=Nazwa diff --git a/core/src/main/resources/hudson/model/Computer/index_pl.properties b/core/src/main/resources/hudson/model/Computer/index_pl.properties index a8afbdeb21..e73c0c4213 100644 --- a/core/src/main/resources/hudson/model/Computer/index_pl.properties +++ b/core/src/main/resources/hudson/model/Computer/index_pl.properties @@ -20,5 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -None=\u017Baden -title.projects_tied_on=Projekty powi\u0105zane z {0} +Labels:=Kategorie/tagi +None=\u017Badne +anonymous\ user=anonimowy u\u017Cytkownik +submit.not.temporarilyOffline=Zaznacz tymczasowo ofline +title.projects_tied_on=Projekty przywi\u0105zane do {0} diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_pl.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_pl.properties index a58119ec68..bd34753cda 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_pl.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_pl.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Back\ to\ List=Powr\u00F3t do listy -Build\ History=Historia build\u00F3w +Build\ History=Historia kompilacji Configure=Konfiguruj -Load\ Statistics=Wczytaj statystyki +Delete\ Slave=Usu\u0144 Slave +Load\ Statistics=Statystyka obci\u0105\u017Cenia Script\ Console=Konsola skrypt\u00F3w -Status=Status diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_pl.properties b/core/src/main/resources/hudson/model/ComputerSet/index_pl.properties index d23bf6890b..9ba74c8449 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_pl.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_pl.properties @@ -21,5 +21,6 @@ # THE SOFTWARE. Configure=Konfiguruj +Data\ obtained=Pozyskane dane Name=Nazwa Refresh\ status=Od\u015Bwie\u017C status diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pl.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pl.properties index 1f2b029f7e..53481b13b8 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pl.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pl.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Powr\u00F3t do Dashboard +Back\ to\ Dashboard=Powr\u00F3t do panelu Configure=Konfiguruj Manage\ Jenkins=Zarz\u0105dzaj Jenkins''em +New\ Node=Nowy w\u0119ze\u0142 diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pl.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pl.properties index a528b105f5..2d6b9ac0f3 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pl.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pl.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -all\ files\ in\ zip=wszystkie pliki w zipie -view=zajrzyj +No\ files\ in\ directory=Brak plik\u00F3w w katalogu +all\ files\ in\ zip=wszystkie pliki jako zip +view=zobacz diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_pl.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_pl.properties index 8c188cffc9..2e8e7fa70d 100644 --- a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_pl.properties +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=To jest podstawowa funkcjonalno\u015B\u0107 Jenkinsa. Jenkins stworzy projekt \u0142\u0105cz\u0105cy dowolny SCM z dowolnym systemem buduj\u0105cym, mo\u017Ce to by\u0107 r\u00F3wnie\u017C wykorzystane do czego\u015B innego ni\u017C budowanie oprogramowania. +body=To jest podstawowa funkcja Jenkinsa. Jenkins stworzy projekt \u0142\u0105cz\u0105cy dowolny SCM z dowolnym systemem buduj\u0105cym, mo\u017Ce to by\u0107 r\u00F3wnie\u017C wykorzystane do czego\u015B innego ni\u017C budowanie oprogramowania. diff --git a/core/src/main/resources/hudson/model/JDK/config_pl.properties b/core/src/main/resources/hudson/model/JDK/config_pl.properties new file mode 100644 index 0000000000..52e6f0466e --- /dev/null +++ b/core/src/main/resources/hudson/model/JDK/config_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=Nazwa diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_pl.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_pl.properties index 3a3dc86fc1..736dc2efb4 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_pl.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_pl.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Time\ Trend=Trendy czasu budowania +Build\ Time\ Trend=Trend czasu budowania +Duration=Czas trwania More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=Potrzeba wi\u0119cej ni\u017C 1 builda by przygotowa\u0107 raport trendu Timeline=Linia czasu diff --git a/core/src/main/resources/hudson/model/Job/configure_pl.properties b/core/src/main/resources/hudson/model/Job/configure_pl.properties index 9adb9e6d36..d71bd2df45 100644 --- a/core/src/main/resources/hudson/model/Job/configure_pl.properties +++ b/core/src/main/resources/hudson/model/Job/configure_pl.properties @@ -21,5 +21,8 @@ # THE SOFTWARE. Description=Opis +Discard\ Old\ Builds=Porzu\u0107 stare buildy LOADING=\u0141ADOWANIE Save=Zapisz +Strategy=Strategia +name={0} nazwa diff --git a/core/src/main/resources/hudson/model/Job/index_pl.properties b/core/src/main/resources/hudson/model/Job/index_pl.properties new file mode 100644 index 0000000000..7aee47b620 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_pl.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Disable\ Project=Wy\u0142\u0105cz projekt +Enable=W\u0142\u0105cz +Project\ name=Nazwa projektu +This\ project\ is\ currently\ disabled=Projekt jest obecnie wy\u0142\u0105czony. diff --git a/core/src/main/resources/hudson/model/Job/permalinks_pl.properties b/core/src/main/resources/hudson/model/Job/permalinks_pl.properties index 408bf0706e..f5ff9bd483 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_pl.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Permalinks=Link bezpo\u015Bredni +Permalinks=Odno\u015Bniki permanentne diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_pl.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_pl.properties new file mode 100644 index 0000000000..b1c478e57b --- /dev/null +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_pl.properties @@ -0,0 +1,12 @@ +# This file is under the MIT License by authors + +Add\ column=Dodaj kolumn\u0119 +All\ selected\ jobs=Wszystkie wybrane projekty +Columns=Kolumny +Disabled\ jobs\ only=Tylko wy\u0142\u0105czone projekty +Enabled\ jobs\ only=Tylko w\u0142\u0105czone projekty +Job\ Filters=Filtry projekt\u00F3w +Jobs=Projekty +Regular\ expression=Wyra\u017Cenie regularne +Status\ Filter=Status (filtr) +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=U\u017Cyj wyra\u017Cenia regularnego aby doda\u0107 projekty do widoku diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_pl.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_pl.properties new file mode 100644 index 0000000000..f79b1f5550 --- /dev/null +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_pl.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Load\ statistics\ graph=Za\u0142adowane graficzne statystyki +Long=d\u0142ugi +Medium=\u015Bredni +Short=kr\u00F3tki +Timespan=Okres czasu +blurb=Statystyki obci\u0105\u017Cenia przechowuj\u0105 informacje o trzech wska\u017Anikach wykorzystania zasob\u00F3w:
Ca\u0142kowita liczba proces\u00F3w wykonawczych
W przypadku komputera jest to liczba proces\u00F3w wykonawczych przypisanych do komputera. Dla etykiety, jest to suma wszystkich proces\u00F3w wykonawczych przypisanych do komputer\u00F3w powi\u0105zanych z etykiet\u0105. Dla ca\u0142ego Jenkinsa, jest to suba wszystkich proces\u00F3w wykonawczych na wszystkich komputerach w ramach ca\u0142ej instalacji Jenkinsa. Poza zmianami wynikaj\u0105cymi z konfiguracji, warto\u015B\u0107 ta mo\u017Ce zmienia\u0107 si\u0119 gdy w\u0119z\u0142y przechodz\u0105 w tryb offline.
Ilo\u015B\u0107 wykorzystywanych proces\u00F3w wykonawczych
Linia prezentuje ilo\u015B\u0107 proces\u00F3w wykonawczych (spo\u015Br\u00F3d proces\u00F3w wykonawczych wyliczonych powy\u017Cej), kt\u00F3re prowadz\u0105 aktualnie kompilacje. Stosunek tej warto\u015Bci do ca\u0142kowitej liczby proces\u00F3w wykonawczych jest aktualn\u0105 warto\u015Bci\u0105 wykorzystania zasob\u00F3w. Je\u017Celi wszystkie procesy wykonawcze s\u0105 zaj\u0119te przez d\u0142u\u017Cszy czas, rozwa\u017C dodanie kolejnych komputer\u00F3w do twojego klastra Jenkinsa.
D\u0142ugo\u015B\u0107 kolejki
Ilo\u015B\u0107 zada\u0144 w kolejce, oczekuj\u0105cych na wolny proces wykonawczy (odpowiednio na tym komputerze, w ramach etykiety lub w ca\u0142ym Jenkinsie). Liczba ta nie zawiera zada\u0144 b\u0119d\u0105cych w okresie u\u015Bpienia, jak r\u00F3wnie\u017C zada\u0144 oczekuj\u0105cych na uko\u0144czenie wcze\u015Bniejszej/zale\u017Cnej kompilacji. Je\u017Celi ta linia kiedykolwiek przekroczy 0, oznacza to i\u017C Jenkins b\u0119dzie m\u00F3g\u0142 uruchomi\u0107 wi\u0119cej zada\u0144 je\u017Celi dodasz wi\u0119cej komputer\u00F3w/w\u0119z\u0142\u00F3w.
Wykres prezentuje wyk\u0142adnicz\u0105 \u015Bredni\u0105 krocz\u0105c\u0105 zebranych pr\u00F3bek. 3 w/w okresy czasu prezentuj\u0105 dane aktualizowane co odpowiednio 10 sekund, 1 minut\u0119 i 1 godzin\u0119. +title=Odczyt statystyk diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_pl.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_pl.properties new file mode 100644 index 0000000000..ce3d5d1c9e --- /dev/null +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +blurb=Widok ten, automatycznie wy\u015Bwietla wszystkie prace do kt\u00F3rych aktualnie zalogowany u\u017Cytkownik ma dost\u0119p. diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_pl.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_pl.properties new file mode 100644 index 0000000000..807824ceee --- /dev/null +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +description=Domy\u015Blny widok po przej\u015Bciu do strony ''''Moje widoki'''' diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/newView_pl.properties b/core/src/main/resources/hudson/model/MyViewsProperty/newView_pl.properties new file mode 100644 index 0000000000..e8a68f5bc9 --- /dev/null +++ b/core/src/main/resources/hudson/model/MyViewsProperty/newView_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +View\ name=Nazwa widoku diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_pl.properties b/core/src/main/resources/hudson/model/ParametersAction/index_pl.properties new file mode 100644 index 0000000000..4ceec4f4b6 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersAction/index_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Parameters=Parametry diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_pl.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_pl.properties index e929a96a2c..3fccb98d7a 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_pl.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_pl.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Add\ Parameter=Dodaj parametr +This\ build\ is\ parameterized=Ten build jest sparametryzowany diff --git a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_pl.properties b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_pl.properties new file mode 100644 index 0000000000..d4a258276c --- /dev/null +++ b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Shows\ the\ content\ of\ a\ global\ view.=Pokazuje zawarto\u015B\u0107 globalnego widoku diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_pl.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_pl.properties new file mode 100644 index 0000000000..5bc5254f09 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Keep\ this\ build\ forever=Zachowaj ten build na zawsze diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_pl.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_pl.properties index 5db2738ec0..6449988b97 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_pl.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_pl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ deleting\ the\ build?=Czy na pewno chcesz usun\u0105\u0107 ten build? +Are\ you\ sure\ about\ deleting\ the\ build?=Potwierdzasz usuni\u0119cie zadania? Yes=Tak 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 3dc5cc2c1e..10ae388c90 100644 --- a/core/src/main/resources/hudson/model/Run/console_pl.properties +++ b/core/src/main/resources/hudson/model/Run/console_pl.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Wyj\u015Bcie konsoli +Console\ Output=Wyj\u015Bcie Konsoli +View\ as\ plain\ text=Poka\u017C jako tekst niesformatowany +skipSome=Pomini\u0119to {0,number,integer} KB.. Poka\u017C wszystko 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 3c9d963574..2a23b65679 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 ten build +Delete\ this\ build=Usu\u0144 t\u0105 wersje 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 6638583ef8..6b14a6a1a0 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_pl.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Keep\ this\ build\ forever=Zatrzymaj t\u0105 budowe na zawsze +Keep\ this\ build\ forever=Zchowaj to wykonanie diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pl.properties index 5097d8d94f..40076505b9 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preparation=Przygotowanie +Preparation=Przygotowywanie diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pl.properties new file mode 100644 index 0000000000..d22c58b0cc --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pl.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +NewVersionAvailable=Nowa wersja Jenkinsa ({0}) jest dost\u0119pna do pobrania (changelog). +Or\ Upgrade\ Automatically=Albo uaktualnij automatycznie +UpgradeProgress=Aktualizacja Jenkinsa do wersji {0} trwa lub nie powiod\u0142a si\u0119. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_pl.properties new file mode 100644 index 0000000000..310fe22562 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_pl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Details=Szczeg\u00F3\u0142y +Failure=Niepowodzenie diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_pl.properties index 0a3ee2cf44..5b19afe24a 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_pl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=Pracuj\u0119 +Pending=Oczekuje diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_pl.properties new file mode 100644 index 0000000000..6e2bac81e8 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Canceled=Anulowane diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_pl.properties index 5cf6d31d01..fcd68a6705 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_pl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=W oczekiwaniu +Pending=Do czasu diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_pl.properties index 9842e696cf..b6b796fbf4 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_pl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restarting\ Jenkins=Uruchom ponownie +Restarting\ Jenkins=Ponowne uruchomienie Jenkinsa 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 e679617df1..d63f523d32 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_pl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_pl.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -warning=Zrestartuj Jenkinsa gdy instalacja si\u0119 zako\u0144czy i \u017Caden job nie b\u0119dzie wykonywany +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 +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/index_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_pl.properties index 45da1067cc..11dfad78d0 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_pl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing\ Plugins/Upgrades=Instaluj\u0119 wtyczki/aktualizacje +Installing\ Plugins/Upgrades=Instalowanie Wtyczek/Aktualizacji 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 9e61f826fc..8727a01346 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Powr\u00F3t do Dashboard -Manage\ Jenkins=Konfiguruj -Manage\ Plugins=Zarz\u0105dzaj wtyczkami +Back\ to\ Dashboard=Wr\u00F3\u0107 na Stron\u0119 G\u0142\u00F3wn\u0105 +Manage\ Jenkins=Zarz\u0105dzanie Jenkins +Manage\ Plugins=Zarz\u0105dzanie wtyczkami diff --git a/core/src/main/resources/hudson/model/User/builds_pl.properties b/core/src/main/resources/hudson/model/User/builds_pl.properties new file mode 100644 index 0000000000..44e113ee04 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/builds_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title=Budowy {0} diff --git a/core/src/main/resources/hudson/model/User/configure_pl.properties b/core/src/main/resources/hudson/model/User/configure_pl.properties new file mode 100644 index 0000000000..d9cefe04d4 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/configure_pl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Description=Opis +Your\ name=Twoje imi\u0119 i nazwisko diff --git a/core/src/main/resources/hudson/model/User/index_pl.properties b/core/src/main/resources/hudson/model/User/index_pl.properties new file mode 100644 index 0000000000..f9e21a20ec --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ User\ Id=Id u\u017Cytkownika diff --git a/core/src/main/resources/hudson/model/User/sidepanel_pl.properties b/core/src/main/resources/hudson/model/User/sidepanel_pl.properties new file mode 100644 index 0000000000..5292105692 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/sidepanel_pl.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Builds=Build''''y +Configure=Konfiguracja +Delete=Usu\u0144 +My\ Views=Moje widoki +People=U\u017Cytkownicy 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 8240ed2f08..9748cfd3ff 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_pl.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_pl.properties @@ -22,5 +22,6 @@ Last\ Active=Ostatnio aktywny Name=Nazwa +On=Na People=Ludzie -User\ Id=Id u\u017Cytkownika +User\ Id=Identyfikator u\u017Cytkownika diff --git a/core/src/main/resources/hudson/model/View/People/index_pl.properties b/core/src/main/resources/hudson/model/View/People/index_pl.properties new file mode 100644 index 0000000000..a2e4ffcc6b --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_pl.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +All\ People=Wszyscy Ludzie +Last\ Active=Ostatnia aktywno\u015B\u0107 +Name=Imi\u0119 +On=Projekt +People=Osoby +User\ Id=Id U\u017Cytkownika 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 8974db5fab..56fc8275f8 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=Histora budowania {0} +buildHistory=Historia komplikacji projektu {0} diff --git a/core/src/main/resources/hudson/model/View/configure_pl.properties b/core/src/main/resources/hudson/model/View/configure_pl.properties new file mode 100644 index 0000000000..e9a7446b35 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/configure_pl.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Description=Opis +Filter\ build\ executors=Filtr wykonawc\u00F3w Builda +Filter\ build\ queue=Filtr kolejki budowania +Name=Nazwa diff --git a/core/src/main/resources/hudson/model/View/delete_pl.properties b/core/src/main/resources/hudson/model/View/delete_pl.properties new file mode 100644 index 0000000000..5b32231e46 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/delete_pl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Are\ you\ sure\ about\ deleting\ the\ view?=Czy na pewno chcesz usun\u0105\u0107 ten widok? +Yes=Tak diff --git a/core/src/main/resources/hudson/model/View/sidepanel_pl.properties b/core/src/main/resources/hudson/model/View/sidepanel_pl.properties index 57c97ea20b..48fc4878ba 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_pl.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_pl.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=Historia Zada\u0144 -Check\ File\ Fingerprint=Sprawd\u017A "odcisk" (Fingerprint) pliku +Build\ History=Historia zada\u0144 +Check\ File\ Fingerprint=Sprawd\u017A Odcisk Palca Pliku Delete\ View=Usu\u0144 Widok -Edit\ View=Edytuj Widok +Edit\ View=Edytuj widok Manage\ Jenkins= New\ Job= -NewJob=Nowe +NewJob=New {0} People=Ludzie -Project\ Relationship=Zale\u017Cno\u015Bci projektu +Project\ Relationship=Projekty powi\u0105zane diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_pl.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_pl.properties index 18cc2fbc7a..15279cd5b3 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_pl.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ changes.=Brak Zmian +No\ changes.=Brak zmian diff --git a/core/src/main/resources/hudson/search/Search/search-failed_pl.properties b/core/src/main/resources/hudson/search/Search/search-failed_pl.properties new file mode 100644 index 0000000000..8a49102d75 --- /dev/null +++ b/core/src/main/resources/hudson/search/Search/search-failed_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Nothing\ seems\ to\ match.=Brak wynik\u00F3w diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_pl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_pl.properties new file mode 100644 index 0000000000..232cf06c4b --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_pl.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Confirm\ password=Has\u0142o +E-mail\ address=Adres e-mail +Full\ name=Pe\u0142na nazwa +Password=Has\u0142o +Username=Login diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_pl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_pl.properties new file mode 100644 index 0000000000..c90b977db4 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Allow\ users\ to\ sign\ up=Pozw\u00F3l ludziom na rejestrowanie si\u0119 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 72d26aa862..2256c9f917 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/LegacySecurityRealm/config_pl.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_pl.properties new file mode 100644 index 0000000000..559f8a43bc --- /dev/null +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_pl.properties @@ -0,0 +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. 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 9a40e354d2..a17c45ef4e 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 +login=zaloguj si\u0119 diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_pl.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_pl.properties new file mode 100644 index 0000000000..5b5f7e89ff --- /dev/null +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_pl.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +#\ of\ executors=Liczba uruchomie\u0144 +Description=Opis +Labels=Etykiety +Launch\ method=Metoda uruchomienia +Remote\ FS\ root=Zdalny system plik\u00F3w diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pl.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pl.properties new file mode 100644 index 0000000000..6590886f6c --- /dev/null +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pl.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_pl.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_pl.properties new file mode 100644 index 0000000000..d0bb3259cd --- /dev/null +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Connected\ via\ JNLP\ agent.=Po\u0142\u0105czony za pomoc\u0105 agenta JNLP. diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_pl.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_pl.properties new file mode 100644 index 0000000000..0437591ac7 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_pl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Disconnect=Od\u0142\u0105cz +System\ Information=Informacja o systemie diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_pl.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_pl.properties new file mode 100644 index 0000000000..a6aa76c5ae --- /dev/null +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_pl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Days\ to\ keep\ artifacts=Ilo\u015B\u0107 dni przechowywania artefaktu +Days\ to\ keep\ builds=Ilo\u015B\u0107 dni przechowywania builda diff --git a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_pl.properties b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_pl.properties new file mode 100644 index 0000000000..557502f6be --- /dev/null +++ b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_pl.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +failingFor=Zawodzi od {0} {0,choice,0#uruchomie\u0144|1#uruchomienia|1 +N/A=\u2014 diff --git a/core/src/main/resources/hudson/views/LastStableColumn/columnHeader_pl.properties b/core/src/main/resources/hudson/views/LastStableColumn/columnHeader_pl.properties new file mode 100644 index 0000000000..c43fa4aab8 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastStableColumn/columnHeader_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Stable=Ostatnia stabilna diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_pl.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_pl.properties index d188be71e2..c09e14ce7c 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_pl.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/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\ Success=Ostatni sukces +Last\ Success=Ostatni Sukces diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_pl.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_pl.properties index 97e56177d3..d70569791a 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/column_pl.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A= +N/A=\u2014 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 34341b5987..ba4a183921 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pl.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=Status ostatniego build''a +Status\ of\ the\ last\ build=Status ostatniej kompilacji 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 5387db7caa..f518d43c5a 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pl.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pl.properties @@ -20,4 +20,4 @@ # 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 pokazuj\u0105cy agregowany status ostatnich wykona\u0144 +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Raport z ostatnich wykona\u0144 diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_pl.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_pl.properties index 79bcda36e5..e306eb89d1 100644 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_pl.properties +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_pl.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. cancel\ this\ build=anuluj build -pending=wykonywany +pending=oczekiwanie 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 f487703b2b..3dc5cc2c1e 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=Konsola +Console\ Output=Wyj\u015Bcie konsoli 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 8e6ab98320..7e8a35df85 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_pl.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_pl.properties @@ -21,6 +21,5 @@ # THE SOFTWARE. More\ ...=Wi\u0119cej ... -for\ all=dla wszystkich -for\ failures=dla pora\u017Cek -trend=zmiany +for\ all=Dla wszystkich +for\ failures=dla nieudanych 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 8baf283cd3..29bc40f579 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=dost\u0119pne s\u0105 aktualizacje +updates\ available=uaktualnienia s\u0105 dost\u0119pne diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_pl.properties new file mode 100644 index 0000000000..c66365c63b --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_pl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Available\ Commands=Dost\u0119pne komendy +Jenkins\ CLI=Wyj\u015Bcie Konsoli diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_pl.properties new file mode 100644 index 0000000000..52107feb39 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_pl.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +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 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 dec44d3b57..b07d6409b6 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pl.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Check=Sprawd\u017A -Check\ File\ Fingerprint=Sprawd\u017A odcisk pliku +Check\ File\ Fingerprint=Wyszukaj wyst\u0105pienia artefaktu File\ to\ check=Plik do sprawdzenia -description=Masz plik typu .jar ale nie wiesz do kt\u00F3rej wersji nale\u017Cy?
Dowiedz si\u0119 przez sprawdzenie odcisku w bazie danych Jenkinsa. +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 more\ details=wi\u0119cej detali diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_pl.properties new file mode 100644 index 0000000000..3e072ee764 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_pl.properties @@ -0,0 +1,10 @@ +# 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=Ostatnia wgrywka nie powiod\u0142a si\u0119. +red_anime=Ostatnia wgrywka nie powiod\u0142a 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. diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_pl.properties new file mode 100644 index 0000000000..00dd3f0c63 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_pl.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=Je\u015Bli jeste\u015B administratorem serwera i podejrzewasz, \u017Ce mo\u017Ce to by\u0107 problem z konfiguracj\u0105 sprawd\u017A wyj\u015Bcie z konsoli by uzyska\u0107 wi\u0119cej szczeg\u00F3\u0142\u00F3w +Invalid\ login\ information.\ Please\ try\ again.=Nieprawid\u0142owe po\u015Bwiadczenia. Spr\u00F3buj ponownie. +Try\ again=Spr\u00F3buj ponownie diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/login_pl.properties new file mode 100644 index 0000000000..d62d74ae14 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/login_pl.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Password=Has\u0142o +Remember\ me\ on\ this\ computer=Zapami\u0119taj mnie na tym komputerze +User=Login +login=zaloguj +signUp=Za\u0142u\u017C konto je\u015Bli nie jeste\u015B jeszcze uczestnikiem. + diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_pl.properties index 6c78d531fa..b6ad8a6ec2 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_pl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_pl.properties @@ -20,4 +20,25 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Dodaj, usu\u0144, kontroluj i monitoruj r\u00F3\u017Cne w\u0119z\u0142y, kt\u00F3re Jenkins obs\u0142uguje. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Dodaj, usu\u0144, wy\u0142\u0105cz lub w\u0142\u0105cz wtyczki, kt\u00F3re mog\u0105 rozszerzy\u0107 funkcjonalno\u015B\u0107 Jenkinsa. +Configure\ System=Konfiguracja systemu +Configure\ global\ settings\ and\ paths.=Konfiguruj ustawienia globalne i \u015Bcie\u017Cki. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Porzu\u0107 wszystkie niezapisane zmiany i wczytaj wszystko z plik\u00F3w konfiguracyjnych. +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Wy\u015Bwietlaj r\u00F3\u017Cne informacje \u015Brodowiskowe, by pom\u00F3c w rozwi\u0105zywaniu problem\u00F3w. +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Wykonywanie dowolnych skrypt\u00F3w dla administracji/rozwi\u0105zywania b\u0142\u0119d\u00F3w/diagnostyki. +JenkinsCliText=Dost\u0119p/zarz\u0105dzanie Jenkinsem z twojej pow\u0142oki, lub skryptu +Load\ Statistics=Statystyki \u0141adowania +LoadStatisticsText=Sprawd\u017A swoje zmniejszone zasoby i sprawd\u017A czy potrzebujesz wi\u0119cej komputer\u00F3w do budowy. Manage\ Jenkins=Zarz\u0105dzaj Jenkinsem +Manage\ Nodes=Zarz\u0105dzaj W\u0119z\u0142ami +Manage\ Plugins=Zarz\u0105dzaj wtyczkami +Prepare\ for\ Shutdown=Przygotuj si\u0119 do wy\u0142\u0105czenia +Reload\ Configuration\ from\ Disk=Wczytaj ponownie zapisan\u0105 konfiguracj\u0119 +Script\ Console=Scenariusz konsoli +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Zatrzyma wykonanie nowych build\u00F3w, tak by system m\u00F3g\u0142 by\u0107 bezpiecznie wy\u0142\u0105czony. +System\ Information=Informacje o systemie +System\ Log=Log systemu +SystemLogText=Log systemowy przechwytuje wyj\u015Bcie z java.util.logging zwi\u0105zane z Jenkinsem. +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Przydatne gdy modyfikowa\u0142e\u015B pliki konfiguracyjne bezpo\u015Brednio na dysku serwera. +are.you.sure={0}: czy jeste\u015B pewien? diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_pl.properties new file mode 100644 index 0000000000..4b71e2b25a --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_pl.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Compare=Por\u00F3wnaj +Project\ Relationship=Zale\u017Cno\u015Bci projekt\u00F3w +downstream\ project=Projekt podrz\u0119dny +upstream\ project=Projekt nadrz\u0119dny diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pl.properties new file mode 100644 index 0000000000..96c85cb8bf --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pl.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Enabled=W\u0142\u0105czony +Environment\ Variables=Zmienne systemowe +Name=Nazwa +Pinned=Przypi\u0119ty +Plugins=Wtyczki +System\ Properties=W\u0142a\u015Bciwo\u015Bci systemu +Version=Wersja diff --git a/core/src/main/resources/lib/form/apply_pl.properties b/core/src/main/resources/lib/form/apply_pl.properties new file mode 100644 index 0000000000..b7aa9252c5 --- /dev/null +++ b/core/src/main/resources/lib/form/apply_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Apply=Zastosuj diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_pl.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_pl.properties new file mode 100644 index 0000000000..f28de3a558 --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=konfiguracja diff --git a/core/src/main/resources/lib/form/expandableTextbox_pl.properties b/core/src/main/resources/lib/form/expandableTextbox_pl.properties new file mode 100644 index 0000000000..b44bd19429 --- /dev/null +++ b/core/src/main/resources/lib/form/expandableTextbox_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +tooltip=Kliknij by rozwin\u0105\u0107 do wielu linii gdzie mo\u017Cesz u\u017Cywa\u0107 nowych linii zamiast spacji.
By powr\u00F3ci\u0107 do pojedynczej linii zapisz wszystko w jednej linii i zachowaj zmiany. diff --git a/core/src/main/resources/lib/form/helpArea_pl.properties b/core/src/main/resources/lib/form/helpArea_pl.properties index 71e73f208e..501d441202 100644 --- a/core/src/main/resources/lib/form/helpArea_pl.properties +++ b/core/src/main/resources/lib/form/helpArea_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Loading...=Wczytywanie... +Loading...=\u0141adowanie... diff --git a/core/src/main/resources/lib/form/slave-mode_pl.properties b/core/src/main/resources/lib/form/slave-mode_pl.properties new file mode 100644 index 0000000000..8c93692f59 --- /dev/null +++ b/core/src/main/resources/lib/form/slave-mode_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Usage=Plan wykorzystania diff --git a/core/src/main/resources/lib/form/textarea_pl.properties b/core/src/main/resources/lib/form/textarea_pl.properties new file mode 100644 index 0000000000..ff2fef6c17 --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_pl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=Ukryj podgl\u0105d +Preview=Podgl\u0105d diff --git a/core/src/main/resources/lib/hudson/artifactList_pl.properties b/core/src/main/resources/lib/hudson/artifactList_pl.properties new file mode 100644 index 0000000000..bd873feafb --- /dev/null +++ b/core/src/main/resources/lib/hudson/artifactList_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +View=Rozwi\u0144 diff --git a/core/src/main/resources/lib/hudson/buildCaption_pl.properties b/core/src/main/resources/lib/hudson/buildCaption_pl.properties index 057d639a7b..67f0ee4fae 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_pl.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_pl.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Progress=Post\u0119p -cancel=Anuluj +cancel=anuluj diff --git a/core/src/main/resources/lib/hudson/buildListTable_pl.properties b/core/src/main/resources/lib/hudson/buildListTable_pl.properties index 1fef005f1d..c4a6dfc08e 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_pl.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_pl.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Budowanie -Console\ output=Wyj\u015Bcie konsoli -Status=Status -Time\ Since=Czas od +Build=Kompilacja +Click\ to\ center\ timeline\ on\ event=Kliknij aby wycentrowa\u0107 o\u015B czasu na zdarzeniu +Console\ output=Wynik consoli +Time\ Since=Czasu temu diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_pl.properties b/core/src/main/resources/lib/hudson/buildProgressBar_pl.properties index 5e3369da0e..02ca1c3072 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_pl.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Rozpocz\u0119to {0} temu
Orientacyjny pozosta\u0142y czas: {1} +text=Zacz\u0119to {0} ago
spodziewany czas do ko\u0144ca {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_pl.properties b/core/src/main/resources/lib/hudson/editableDescription_pl.properties index 7c8a980d8f..2f40a08109 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_pl.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_pl.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. add\ description=dodaj opis -edit\ description=zmie\u0144 opis +edit\ description=edytuj opis diff --git a/core/src/main/resources/lib/hudson/executors_pl.properties b/core/src/main/resources/lib/hudson/executors_pl.properties index 8c244d15b3..732e8b302d 100644 --- a/core/src/main/resources/lib/hudson/executors_pl.properties +++ b/core/src/main/resources/lib/hudson/executors_pl.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Status zarz\u0105dcy zada\u0144 -Building=Buduje +Build\ Executor\ Status=Stan Wykonawcy Zada\u0144 +Building=Budynek +Dead=Pad\u0142 Idle=Bezczynny -Master=Kierownik -Status=Status -offline=Nieaktywny -terminate\ this\ build=Annuluj budowe. +Unknown\ Task=Nieznane zadanie +offline=roz\u0142\u0105czony +terminate\ this\ build=terminuj ten build diff --git a/core/src/main/resources/lib/hudson/node_pl.properties b/core/src/main/resources/lib/hudson/node_pl.properties index 2bccc54d7a..c71caf50dc 100644 --- a/core/src/main/resources/lib/hudson/node_pl.properties +++ b/core/src/main/resources/lib/hudson/node_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -master=mistrz +master= diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_pl.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_pl.properties new file mode 100644 index 0000000000..679be54936 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title.concurrentbuilds=Wykon\u00F3j buildy wsp\u00F3\u0142bie\u017Cnie, je\u015Bli zajdzie potrzeba diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_pl.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_pl.properties new file mode 100644 index 0000000000..79803b201f --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Directory=Katalog diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_pl.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_pl.properties new file mode 100644 index 0000000000..d1237e44e8 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_pl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Disable\ Build=Zablokuj build +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Nowe buildy nie b\u0119d\u0105 wykonywane dop\u00F3ki projekt nie b\u0119dzie odblokowany diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_pl.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_pl.properties new file mode 100644 index 0000000000..e7ed49f02c --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_pl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Number\ of\ seconds=Liczba sekund +Quiet\ period=Cichy okres diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_pl.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_pl.properties new file mode 100644 index 0000000000..447c8f00df --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_pl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Retry\ Count=Liczba ponowie\u0144 +SCM\ checkout\ retry\ count=Ilo\u015B\u0107 ponowie\u0144 pobrania kodu z repozytorium diff --git a/core/src/main/resources/lib/hudson/project/config-scm_pl.properties b/core/src/main/resources/lib/hudson/project/config-scm_pl.properties new file mode 100644 index 0000000000..e0d39300b5 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-scm_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Source\ Code\ Management=Repozytorium kodu \u017Ar\u00F3d\u0142owego diff --git a/core/src/main/resources/lib/hudson/project/matrix_pl.properties b/core/src/main/resources/lib/hudson/project/matrix_pl.properties index 5bdd9a5938..5290fbdd4e 100644 --- a/core/src/main/resources/lib/hudson/project/matrix_pl.properties +++ b/core/src/main/resources/lib/hudson/project/matrix_pl.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Configuration\ Matrix=Macierz konfiguracji Configurations=Konfiguracje diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_pl.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_pl.properties index e182f1ff34..e245fd0b97 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_pl.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_pl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Downstream\ Projects=Projekty podrz\u0119dne -Upstream\ Projects=Projekty nadrz\u0119dne +Downstream\ Projects=Projekty mniej wa\u017Cne +Upstream\ Projects=Projekty wa\u017Cniejsze diff --git a/core/src/main/resources/lib/hudson/propertyTable_pl.properties b/core/src/main/resources/lib/hudson/propertyTable_pl.properties new file mode 100644 index 0000000000..c2c03aa55a --- /dev/null +++ b/core/src/main/resources/lib/hudson/propertyTable_pl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Name=Nazwa +Value=Warto\u015B\u0107 diff --git a/core/src/main/resources/lib/hudson/queue_pl.properties b/core/src/main/resources/lib/hudson/queue_pl.properties index 9c7cda62cd..f2a13d06bc 100644 --- a/core/src/main/resources/lib/hudson/queue_pl.properties +++ b/core/src/main/resources/lib/hudson/queue_pl.properties @@ -20,6 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Kolejka budowania -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins zaraz si\u0119 wy\u0142\u0105czy. Nie ma zaplanowanych bud\u00F3w do wykonania. -No\ builds\ in\ the\ queue.=Brak zada\u0144 w kolejce. +Build\ Queue=Kolejka Budowania +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins przygotowuje si\u0119 do wy\u0142\u0105czenia. Uruchamianie nast\u0119pnych kompilacji zosta\u0142o wstrzymane. +No\ builds\ in\ the\ queue.=Nie ma build\u00F3w w kolejce +WaitingFor=Czeka na {0} +WaitingSince=Oczekiwanie od {0} +cancel=anuluj diff --git a/core/src/main/resources/lib/hudson/rssBar_pl.properties b/core/src/main/resources/lib/hudson/rssBar_pl.properties index 97304ae034..cd90486892 100644 --- a/core/src/main/resources/lib/hudson/rssBar_pl.properties +++ b/core/src/main/resources/lib/hudson/rssBar_pl.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Legend=Legenda -for\ all=dla wszystkich -for\ failures=tylko niepowodzenia -for\ just\ latest\ builds=tylko dla najnowszych +for\ all=Dla wszystkich +for\ failures=Tylko niepowodzenia +for\ just\ latest\ builds=Tylko dla najnowszych diff --git a/core/src/main/resources/lib/hudson/scriptConsole_pl.properties b/core/src/main/resources/lib/hudson/scriptConsole_pl.properties new file mode 100644 index 0000000000..bb22871fb6 --- /dev/null +++ b/core/src/main/resources/lib/hudson/scriptConsole_pl.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Result=Rezultat +Run=Wykonaj +Script\ Console=Konsola Skrypt\u00F3w +description=Wpisz skrypt Groovy script i wykonaj go na serwerze. U\u017Cyteczne w przypadku problem\u00F3w i diagnostyki. U\u017Cyj komendy ''''println'''' aby zobaczy\u0107 wynik (je\u015Bli u\u017Cyjesz System.out, wynik b\u0119dzie trudniejszy do znalezienia). Przyk\u0142ad: + +description2=Wszystkie klasy ze wszystkich dodatk\u00F3w s\u0105 widoczne. jenkins.*, jenkins.model.*, hudson.*, i hudson.model.* s\u0105 wst\u0119pnie zaimportowane. diff --git a/core/src/main/resources/lib/hudson/test-result_pl.properties b/core/src/main/resources/lib/hudson/test-result_pl.properties index 897f526750..efd0a0dc81 100644 --- a/core/src/main/resources/lib/hudson/test-result_pl.properties +++ b/core/src/main/resources/lib/hudson/test-result_pl.properties @@ -20,5 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -multifailures="{0} b\u0142\u0119dy/\u00F3w {1}" -no\ failures=bez b\u0142\u0119d\u00F3w +1failure=1 pora\u017Cka {0} +multifailures="{0} b\u0142\u0119d\u00F3w {1}" +no\ failures=Bez b\u0142\u0119d\u00F3w +no\ tests=Brak test\u00F3w diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_pl.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_pl.properties new file mode 100644 index 0000000000..f2f9426c66 --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_pl.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +License=Licencja +Maven\ ID=ID Maven +Name=Nazwa diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_pl.properties b/core/src/main/resources/lib/layout/breadcrumbBar_pl.properties new file mode 100644 index 0000000000..1055d459e1 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_pl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=WY\u0141\u0104CZ AUTO OD\u015AWIE\u017BANIE +ENABLE\ AUTO\ REFRESH=W\u0141\u0104CZ AUTOMATYCZNE OD\u015AWIE\u017BANIE diff --git a/core/src/main/resources/lib/layout/layout_pl.properties b/core/src/main/resources/lib/layout/layout_pl.properties index f1f66c05a0..9ddd40897c 100644 --- a/core/src/main/resources/lib/layout/layout_pl.properties +++ b/core/src/main/resources/lib/layout/layout_pl.properties @@ -21,8 +21,11 @@ # THE SOFTWARE. DISABLE\ AUTO\ REFRESH=Wy\u0142\u0105cz auto od\u015Bwie\u017Canie -ENABLE\ AUTO\ REFRESH=W\u0142\u0105cz automatyczne od\u015Bwie\u017Canie strony +ENABLE\ AUTO\ REFRESH=W\u0141\u0104CZ AUTOMATYCZNE OD\u015AWIE\u017BANIE STRONY Page\ generated=Strona wygenerowana -logout=Zako\u0144cz -search=szukaj +logout=Wyloguj +search=Szukaj... searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box + + + diff --git a/core/src/main/resources/lib/layout/main-panel_pl.properties b/core/src/main/resources/lib/layout/main-panel_pl.properties index 1a1d17e73e..9b71ab36e3 100644 --- a/core/src/main/resources/lib/layout/main-panel_pl.properties +++ b/core/src/main/resources/lib/layout/main-panel_pl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ is\ going\ to\ shut\ down=Jenkins przygotowuje si\u0119 do wy\u0142\u0105czenia +Jenkins\ is\ going\ to\ shut\ down=Jenkins przygotowuje si\u0119 do wy\u0142\u0105czenia. diff --git a/core/src/main/resources/lib/layout/progressiveRendering_pl.properties b/core/src/main/resources/lib/layout/progressiveRendering_pl.properties new file mode 100644 index 0000000000..8e69cf0622 --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=Obliczenia w toku. diff --git a/core/src/main/resources/lib/layout/task_pl.properties b/core/src/main/resources/lib/layout/task_pl.properties new file mode 100644 index 0000000000..9836bf82f1 --- /dev/null +++ b/core/src/main/resources/lib/layout/task_pl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Done.=Gotowe. diff --git a/core/src/main/resources/lib/test/bar_pl.properties b/core/src/main/resources/lib/test/bar_pl.properties index c5acaf1891..53c588e308 100644 --- a/core/src/main/resources/lib/test/bar_pl.properties +++ b/core/src/main/resources/lib/test/bar_pl.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -failures={0} b\u0142\u0119d\u00F3w +failures={0} pora\u017Cek +skipped={0} pomini\u0119tych tests={0} test\u00F3w -- GitLab From 1d0c28952e94fbdd8f7c2d890bdeff9c0f2bc249 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:02 -0700 Subject: [PATCH 070/308] Community-contributed localization for pt_BR (pt_BR) --- .../PluginManager/advanced_pt_BR.properties | 2 +- .../PluginManager/index_pt_BR.properties | 3 + .../PluginManager/installed_pt_BR.properties | 5 ++ .../PluginManager/tabBar_pt_BR.properties | 2 +- .../PluginManager/table_pt_BR.properties | 3 + .../message_pt_BR.properties | 4 +- .../OldDataMonitor/manage_pt_BR.properties | 32 ++--------- .../OldDataMonitor/message_pt_BR.properties | 2 +- .../message_pt_BR.properties | 2 +- .../message_pt_BR.properties | 6 +- .../LogRecorder/sidepanel_pt_BR.properties | 6 +- .../MatrixBuild/delete_pt_BR.properties | 4 ++ .../configure-entries_pt_BR.properties | 4 ++ .../MatrixProject/index_pt_BR.properties | 2 + .../AbstractBuild/index_pt_BR.properties | 8 +-- .../AbstractBuild/sidepanel_pt_BR.properties | 4 +- .../AbstractBuild/tasks_pt_BR.properties | 55 +++++++++++++++++-- .../configure-common_pt_BR.properties | 1 + .../AbstractItem/delete_pt_BR.properties | 1 + .../AbstractProject/main_pt_BR.properties | 4 +- .../makeDisabled_pt_BR.properties | 2 +- .../requirePOST_pt_BR.properties | 3 + .../sidepanel_pt_BR.properties | 14 ++--- .../model/AllView/noJob_pt_BR.properties | 2 +- .../description_pt_BR.properties | 3 +- .../UserCause/description_pt_BR.properties | 2 +- .../UserIdCause/description_pt_BR.properties | 4 +- .../model/Computer/sidepanel_pt_BR.properties | 8 +-- .../model/ComputerSet/_new_pt_BR.properties | 2 +- .../dir_pt_BR.properties | 2 +- .../newJobDetail_pt_BR.properties | 2 +- .../model/Job/buildTimeTrend_pt_BR.properties | 5 +- .../model/Job/configure_pt_BR.properties | 5 +- .../hudson/model/Job/index_pt_BR.properties | 5 ++ .../model/Label/sidepanel_pt_BR.properties | 2 +- .../configure-entries_pt_BR.properties | 1 + .../ListView/newViewDetail_pt_BR.properties | 2 +- .../LoadStatistics/main_pt_BR.properties | 4 +- .../MyView/newViewDetail_pt_BR.properties | 2 +- .../config_pt_BR.properties | 2 +- .../index_pt_BR.properties | 3 +- .../configure-entries_pt_BR.properties | 2 +- .../hudson/model/Run/console_pt_BR.properties | 4 +- .../hudson/model/Run/delete_pt_BR.properties | 2 +- .../ConnectionCheckJob/row_pt_BR.properties | 2 +- .../Running/status_pt_BR.properties | 3 + .../model/UpdateCenter/body_pt_BR.properties | 4 +- .../model/UpdateCenter/index_pt_BR.properties | 2 +- .../hudson/model/User/builds_pt_BR.properties | 3 + .../hudson/model/User/index_pt_BR.properties | 3 + .../View/AsynchPeople/index_pt_BR.properties | 5 +- .../model/View/sidepanel_pt_BR.properties | 12 ++-- .../config_pt_BR.properties | 2 +- .../config_pt_BR.properties | 5 ++ .../scm/SCM/project-changes_pt_BR.properties | 2 +- .../Search/search-failed_pt_BR.properties | 3 +- .../loginLink_pt_BR.properties | 2 +- .../config_pt_BR.properties | 4 ++ .../SecurityRealm/loginLink_pt_BR.properties | 2 +- .../CommandLauncher/config_pt_BR.properties | 2 +- .../configure-entries_pt_BR.properties | 10 ++-- .../newInstanceDetail_pt_BR.properties | 2 +- .../config_pt_BR.properties | 6 +- .../JNLPLauncher/config_pt_BR.properties | 4 +- .../SlaveComputer/sidepanel2_pt_BR.properties | 2 +- .../junit/CaseResult/index_pt_BR.properties | 4 +- .../test/TestResult/index_pt_BR.properties | 2 +- .../floatingBox_pt_BR.properties | 6 +- .../credentialOK_pt_BR.properties | 4 ++ .../ToolInstallation/global_pt_BR.properties | 2 +- .../config_pt_BR.properties | 2 +- .../message_pt_BR.properties | 5 +- .../DescriptorImpl/index_pt_BR.properties | 7 +-- .../SCMAction/index_pt_BR.properties | 2 +- .../BuildButtonColumn/column_pt_BR.properties | 3 +- .../viewTabs_pt_BR.properties | 2 +- .../columnHeader_pt_BR.properties | 2 +- .../column_pt_BR.properties | 2 +- .../columnHeader_pt_BR.properties | 2 +- .../columnHeader_pt_BR.properties | 2 +- .../HistoryWidget/entry_pt_BR.properties | 2 +- .../HistoryWidget/index_pt_BR.properties | 6 +- .../message_pt_BR.properties | 4 ++ .../PluginsLink/info_pt_BR.properties | 3 + .../MasterComputer/configure_pt_BR.properties | 6 +- .../model/Jenkins/_cli_pt_BR.properties | 1 + .../model/Jenkins/configure_pt_BR.properties | 8 +-- .../Jenkins/fingerprintCheck_pt_BR.properties | 2 +- .../model/Jenkins/legend_pt_BR.properties | 26 ++++----- .../model/Jenkins/manage_pt_BR.properties | 8 +++ .../model/Jenkins/newView_pt_BR.properties | 2 +- .../projectRelationship_pt_BR.properties | 2 +- .../lib/form/advanced_pt_BR.properties | 1 + .../resources/lib/form/apply_pt_BR.properties | 3 + ...breadcrumb-config-outline_pt_BR.properties | 3 + .../lib/form/textarea_pt_BR.properties | 4 ++ .../lib/hudson/buildHealth_pt_BR.properties | 2 +- .../hudson/buildListTable_pt_BR.properties | 3 +- .../hudson/buildProgressBar_pt_BR.properties | 2 +- .../editableDescription_pt_BR.properties | 2 +- .../lib/hudson/executors_pt_BR.properties | 6 +- .../lib/hudson/iconSize_pt_BR.properties | 2 +- ...ockWhenDownstreamBuilding_pt_BR.properties | 3 + .../config-concurrentBuild_pt_BR.properties | 2 +- .../config-retryCount_pt_BR.properties | 2 +- .../upstream-downstream_pt_BR.properties | 4 +- .../lib/hudson/queue_pt_BR.properties | 6 +- .../lib/hudson/rssBar_pt_BR.properties | 6 +- .../lib/layout/breadcrumbBar_pt_BR.properties | 8 +++ .../lib/layout/layout_pt_BR.properties | 8 +-- .../progressiveRendering_pt_BR.properties | 3 + .../lib/layout/task_pt_BR.properties | 3 + .../resources/lib/test/bar_pt_BR.properties | 2 +- 113 files changed, 314 insertions(+), 191 deletions(-) create mode 100644 core/src/main/resources/hudson/matrix/MatrixBuild/delete_pt_BR.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/requirePOST_pt_BR.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_pt_BR.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_pt_BR.properties create mode 100644 core/src/main/resources/hudson/model/User/builds_pt_BR.properties create mode 100644 core/src/main/resources/hudson/model/User/index_pt_BR.properties create mode 100644 core/src/main/resources/hudson/security/LegacySecurityRealm/config_pt_BR.properties create mode 100644 core/src/main/resources/hudson/tools/JDKInstaller/DescriptorImpl/credentialOK_pt_BR.properties create mode 100644 core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_pt_BR.properties create mode 100644 core/src/main/resources/jenkins/management/PluginsLink/info_pt_BR.properties create mode 100644 core/src/main/resources/lib/form/apply_pt_BR.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_pt_BR.properties create mode 100644 core/src/main/resources/lib/form/textarea_pt_BR.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_pt_BR.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_pt_BR.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_pt_BR.properties create mode 100644 core/src/main/resources/lib/layout/task_pt_BR.properties diff --git a/core/src/main/resources/hudson/PluginManager/advanced_pt_BR.properties b/core/src/main/resources/hudson/PluginManager/advanced_pt_BR.properties index 2be180125b..4b75e27df8 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_pt_BR.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. lastUpdated=Informa\u00e7\u00e3o de atualiza\u00e7\u00e3o obtida: {0} atr\u00e1s -uploadtext=Voc\u00ea pode fazer o upload de um arquivo .hpi para instalar um plugin de fora do reposit\u00f3rio central de plugin. +uploadtext=Voc\u00EA pode fazer o upload de um arquivo .hpi para instalar um plugin fora do reposit\u00F3rio central. Server=Servidor Update\ Site=Site de atualiza\u00e7\u00e3o Check\ now=Verificar agora diff --git a/core/src/main/resources/hudson/PluginManager/index_pt_BR.properties b/core/src/main/resources/hudson/PluginManager/index_pt_BR.properties index 2cb0e3adca..8842fedc64 100644 --- a/core/src/main/resources/hudson/PluginManager/index_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginManager/index_pt_BR.properties @@ -20,6 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +All=Todos +None=Nenhum +Select=Selecionar UpdatePageDescription=Essa p\u00e1gina lista as atualiza\u00e7\u00f5es dos plugins que voc\u00ea est\u00e1 usando. UpdatePageLegend=Desativar as colunas que j\u00e1 est\u00e3o atualizadas, aguardando reiniciar. 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 048a7d62b1..969e093724 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_pt_BR.properties @@ -25,7 +25,12 @@ New\ plugins\ will\ take\ effect\ once\ you\ restart\ Jenkins=O novos plugins s\ Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=A mudan\u00e7as ter\u00e3o efeito quando voc\u00ea reiniciar o Jenkins Uncheck\ to\ disable\ the\ plugin=Desmarque para desativar o Plugin Enabled=Habilitar +Pinned=afixado Previously\ installed\ version=Vers\u00E3o anterior instalada Restart\ Once\ No\ Jobs\ Are\ Running=Reiniciar assim que nenhuma tarefa 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 diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_pt_BR.properties b/core/src/main/resources/hudson/PluginManager/tabBar_pt_BR.properties index 3e6d22991e..f8d540dc41 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_pt_BR.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Updates=Atualiza\u00e7\u00e3o +Updates=Atualiza\u00E7\u00F5es Available=Dispon\u00edveis Installed=Instalados Advanced=Avan\u00e7ado diff --git a/core/src/main/resources/hudson/PluginManager/table_pt_BR.properties b/core/src/main/resources/hudson/PluginManager/table_pt_BR.properties index 0c32f1d7de..48f2922d55 100644 --- a/core/src/main/resources/hudson/PluginManager/table_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginManager/table_pt_BR.properties @@ -31,9 +31,12 @@ Pode n\u00e3o funcionar corretamente no seu Jenkins compatWarning=Aten\u00e7\u00e3o: Esse plugin n\u00e3o \u00e9 compat\u00edvel com a vers\u00e3o instalada do Jenkins\ Tarefas usando esse plugin ter\u00e3o que ser reconfiguradas Version=Vers\u00e3o +Download\ now\ and\ install\ after\ restart=Baixar agora, intalar e depois reiniciar +Filter=Filtrar Inactive=Inativo Check\ to\ install\ the\ plugin=Verifique a instala\u00e7\u00e3o desse plugin No\ updates=Nenhuma atualiza\u00e7\u00e3o +Install\ without\ restart=Instalar sem reiniciar Installed=Instalados Install=Instalar Click\ this\ heading\ to\ sort\ by\ category=Clique para classificar por categoria diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_pt_BR.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_pt_BR.properties index 0e29e8e691..5ffdaa262e 100644 --- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_pt_BR.properties +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_pt_BR.properties @@ -22,6 +22,6 @@ Dismiss=Descartar # Your Jenkins data directory "{0}" (AKA JENKINS_HOME) is almost full. You should act on it before it gets completely full. -blurb=O diret\ufffdrio do Jenkins "{0}" (JENKINS_HOME) est\ufffd quase cheio. Algo deve ser feito antes que fique completamente cheio. +blurb=O diret\u00F3rio do Jenkins "{0}" (JENKINS_HOME) est\u00E1 quase cheio. Algo deve ser feito antes que fique completamente cheio. # Estes usu\u00E1rios podem se logar no Jenkins. Este \u00E9 um super conjunto desta lista, \ -Tell\ me\ more=Mais informa\ufffd\ufffdes +Tell\ me\ more=Mais informa\u00E7\u00F5es diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pt_BR.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pt_BR.properties index e4e8d5d33e..660eb7fa0f 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pt_BR.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pt_BR.properties @@ -26,24 +26,14 @@ # new format. This allows for downgrading Jenkins if needed. However, it can also leave data \ # on disk in the old format indefinitely. The table below lists files containing such data, \ # and the Jenkins version(s) where the data structure was changed. -blurb.1=\ - Quando existem mudan\ufffdas em como os dados s\ufffdo armazenados no disco, o Jenkins usa a seguinte estrat\ufffdgia: \ - os dados s\ufffdo migrados para a nova estrutura quando o Jenkins \ufffd carregado, mas o arquivo n\ufffdo \ufffd salvo \ - novamente no novo formato. Isto permite o downgrade do Jenkins se necess\ufffdrio. Entretanto, ele tamb\ufffdm \ - pode ser deixado no disco no formato antigo. A table abaixo lista os arquivos contendo tais dados, \ - e a(s) vers\ufffdo(\ufffdes) do Jenkins onde a estrutura de dados foi alterada. +blurb.1=Quando existem mudan\u00E7as em como os dados s\u00E3o armazenados no disco, o Jenkins usa a seguinte estrat\u00E9gia: os dados s\u00E3o migrados para a nova estrutura quando o Jenkins \u00E9 carregado, mas o arquivo n\u00E3o \u00E9 salvo novamente no novo formato. Isto permite o downgrade do Jenkins se necess\u00E1rio. Entretanto, ele tamb\u00E9m pode ser deixado no disco no formato antigo. A tabela abaixo lista os arquivos contendo tais dados, e a(s) vers\u00E3o(\u00F5es) do Jenkins onde a estrutura de dados foi alterada. # \ # Sometimes errors occur while reading data (if a plugin adds some data and that plugin is \ # later disabled, if migration code is not written for structure changes, or if Jenkins is \ # downgraded after it has already written data not readable by the older version). \ # These errors are logged, but the unreadable data is then skipped over, allowing Jenkins to \ # startup and function properly. -blurb.2=\ - Alguma vezes ocorrem erros enquanto lendo dados (se um plugin adiciona algum dado e este plugin \ufffd \ - desativado posteriormente, se o c\ufffddigo de migra\ufffd\ufffdo n\ufffdo suporta mudan\ufffdas de estrutura, ou se for feito \ - um downgrade do Jenkins ap\ufffds ele j\ufffd ter escrito dados n\ufffdo suportados por vers\ufffdes anteriores). \ - Estes erros s\ufffdo registrados no log, mas os dados ileg\ufffdveis ignorados, permitindo que o Jenkins \ - seja iniciado e funcione apropriadamente. +blurb.2=Alguma vezes ocorrem erros enquanto lendo dados (se um plugin adiciona algum dado e este plugin \u00E9 desativado posteriormente, se o c\u00F3digo de migra\u00E7\u00E3o n\u00E3o suporta mudan\u00E7as de estrutura, ou se for feito um downgrade do Jenkins ap\u00F3s ele j\u00E1 ter escrito dados n\u00E3o suportados por vers\u00F5es anteriores). Estes erros s\u00E3o registrados no log, mas os dados ileg\u00EDveis ignorados, permitindo que o Jenkins seja iniciado e funcione apropriadamente. # \ # The form below may be used to resave these files in the current format. Doing so means a \ # downgrade to a Jenkins release older than the selected version will not be able to read the \ @@ -51,21 +41,12 @@ blurb.2=\ # and run builds can save data that may not be readable by older Jenkins releases, even when \ # this form is not used. Also if any unreadable data errors are reported in the right side \ # of the table above, note that this data will be lost when the file is resaved. -blurb.3=\ - O formul\ufffdrio abaixo pode ser usado para salvar novamente estes arquivos no formato atual. Fazer isso \ - significa que um downgrade para uma vers\ufffdo do Jenkins mais antiga do que a selecionada n\ufffdo ser\ufffd capaz \ - de ler os dados armazenados no novo formato. Note que simplesmente usando o Jenkins para criar e configurar \ - tarefas e executar constru\ufffd\ufffdes pode salvar dados que n\ufffdo podem ser lidos por vers\ufffdes anteriores do Jenkins,\ - mesmo quando este formul\ufffdrio n\ufffdo \ufffd usado. Tamb\ufffdm se qualquer erro de dado ileg\ufffdvel for reportado no lado \ - direito da tabela acima, estes dados ser\ufffdo perdidos quando o arquivo for salvo novamente. +blurb.3=O formul\u00E1rio abaixo pode ser usado para salvar novamente estes arquivos no formato atual. Fazer isso significa que um downgrade para uma vers\u00E3o do Jenkins mais antiga do que a selecionada n\u00E3o ser\u00E1 capaz de ler os dados armazenados no novo formato. Note que simplesmente usando o Jenkins para criar e configurar tarefas e executar constru\u00E7\u00F5es pode salvar dados que n\u00E3o podem ser lidos por vers\u00F5es anteriores do Jenkins,mesmo quando este formul\u00E1rio n\u00E3o \u00E9 usado. Tamb\u00E9m se qualquer erro de dado ileg\u00EDvel for reportado no lado direito da tabela acima, estes dados ser\u00E3o perdidos quando o arquivo for salvo novamente. # \ # Eventually the code supporting these data migrations may be removed. Compatibility will be \ # retained for at least 150 releases since the structure change. Versions older than this are \ # in bold above, and it is recommended to resave these files. -blurb.4=\ - Eventualmente o c\ufffddigo que suporta a migra\ufffd\ufffdo de dados pode ser removido. A compatibilidade \ - ser\ufffd mantida ao menos por 150 vers\ufffdes desde a mudan\ufffda na estrutura. Vers\ufffdes mais antigas que\ - esta ent\ufffdo em negrito, e \ufffd recomendado salvar novamente estes arquivos. +blurb.4=Eventualmente o c\u00F3digo que suporta a migra\u00E7\u00E3o de dados pode ser removido. A compatibilidade ser\u00E1 mantida ao menos por 150 vers\u00F5es desde a mudan\u00E7a na estrutura. Vers\u00F5es mais antigas que esta ent\u00E3o em negrito, e \u00E9 recomendado salvar novamente estes arquivos. # \ # (downgrade as far back as the selected version may still be possible) blurb.5=\ @@ -74,10 +55,7 @@ blurb.5=\ # It is acceptable to leave unreadable data in these files, as Jenkins will safely ignore it. \ # To avoid the log messages at Jenkins startup you can permanently delete the unreadable data \ # by resaving these files using the button below. -blurb.6=\ - \ufffd aceit\ufffdvel deixar dados ileg\ufffdveis nestes arquivos, porque o Jenkins ir\ufffd ignor\ufffd-los. \ - Para evitar mensagens de erro na inicializa\ufffd\ufffdo do Hudos voc\ufffd pode excluir permanentemente\ - os dados ileg\ufffdveis usando o bot\ufffdo abaixo. +blurb.6=\u00C9 aceit\u00E1vel deixar dados ileg\u00EDveis nestes arquivos, porque o Jenkins ir\u00E1 ignor\u00E1-los. Para evitar mensagens de erro na inicializa\u00E7\u00E3o do Jenkins voc\u00EA pode excluir permanentemente os dados ileg\u00EDveis usando o bot\u00E3o abaixo. Type=Tipo Discard\ Unreadable\ Data=Descartar Dados Ileg\u00EDveis diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_pt_BR.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_pt_BR.properties index 8ce9116a9a..51ba8765bf 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_pt_BR.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_pt_BR.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Dismiss=Descartar -You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Voc\ufffd tem dados armazenados no formato antigo ou dados ileg\ufffdveis. +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Voc\u00EA tem dados armazenados no formato antigo ou dados ileg\u00EDveis. Manage=Administrar diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_BR.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_BR.properties index d0057d2bf0..2e6fdc7fcb 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_BR.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_BR.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Dismiss=Descartar -More\ Info=Mais Informa\u00E7\u00F5es +More\ Info=Mais informa\u00E7\u00F5es # It appears that your reverse proxy set up is broken. blurb=Parece que a configura\u00E7\u00E3o do proxy reverso est\u00E1 com problemas. diff --git a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_pt_BR.properties b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_pt_BR.properties index fc654c242c..98f1a25cfa 100644 --- a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_pt_BR.properties +++ b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_pt_BR.properties @@ -23,7 +23,5 @@ Dismiss=Descartar # There appears to be a large number of jobs. Did you know that you can organize your jobs to different views? \ # You can click '+' in the top page to create a new view any time. -blurb=\ - Parece haver um n\ufffdmero grande de tarefas. Voc\ufffd sabia que voc\ufffd pode orgazinar suas tarefas para diferentes visualiza\ufffd\ufffdes? \ - Voc\ufffd pode clicar '+' no topo da p\ufffdgina para criar uma nova visualiza\ufffd\ufffdo a qualquer hora. -Create\ a\ view\ now=Criar uma nova visualiza\ufffd\ufffdo agora +blurb=Parece haver um n\u00FAmero grande de tarefas. Voc\u00EA sabia que pode orgazinar suas tarefas para diferentes visualiza\u00E7\u00F5es? Voc\u00EA pode clicar ''+'' no topo da p\u00E1gina para criar uma nova visualiza\u00E7\u00E3o a qualquer hora. +Create\ a\ view\ now=Criar uma nova visualiza\u00E7\u00E3o agora diff --git a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_pt_BR.properties b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_pt_BR.properties index f92bad9a89..e517e7e215 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_pt_BR.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_pt_BR.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Configure=Configurar -Delete= -Back\ to\ Loggers= -Log\ records= +Delete=Excluir +Back\ to\ Loggers=Voltar aos Loggers +Log\ records=Registros de log diff --git a/core/src/main/resources/hudson/matrix/MatrixBuild/delete_pt_BR.properties b/core/src/main/resources/hudson/matrix/MatrixBuild/delete_pt_BR.properties new file mode 100644 index 0000000000..b226959dfd --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixBuild/delete_pt_BR.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Delete\ Build=Remover este Build +Delete\ this\ build\ and\ all\ configurations\ in\ this\ build=Remover este build e todas as suas configura\u00E7\u00F5es diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_pt_BR.properties b/core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_pt_BR.properties index 04aba62a27..539f488478 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_pt_BR.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_pt_BR.properties @@ -25,10 +25,14 @@ Configuration\ Matrix=Matriz de Configura\u00E7\u00E3o Build\ on\ multiple\ nodes=Construir em m\u00FAltiplos nodos Node=N\u00f3 Name=Nome +Use\ custom\ workspace=Usar workspace customizado Values=Valor Add\ more\ axis=Adicionar mais eixos Delete=ApagarAxes= Deletar eixos Labels= R\u00f3tulo +Directory=Pasta +Directory\ for\ sub-builds=Pasta para sub-builds +Display\ Name=Nome a ser mostrado Individual\ nodes= N\u00f3s individuais Combination\ Filter= Filtro combinado Axes= Eixos diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_pt_BR.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_pt_BR.properties index deaf7ae5ab..a7c444e763 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/index_pt_BR.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_pt_BR.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Disable\ Project=Desabilitar Projeto +Latest\ Test\ Result=\u00DAltimo resultado do teste Project=Projeto 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 47ecf0b884..1adbd7d62b 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_pt_BR.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. startedAgo=Iniciado {0} atr\u00e1s -Build=Constru\u00e7\u00e3o -Build\ Artifacts=Artefatos da Constru\u00E7\u00E3o +Build\ Artifacts=Artefatos da constru\u00E7\u00E3o Changes\ in\ dependency=Mudan\u00E7as na depend\u00EAncia +beingExecuted=Tempo de execu\u00E7\u00E3o da constru\u00E7\u00E3o {0} detail=detalhe Not\ yet\ determined=Ainda n\u00e3o determinado Failed\ to\ determine=Falhou ao determinar @@ -31,5 +31,5 @@ log=log Upstream\ Builds=Constru\u00E7\u00F5es Pai Downstream\ Builds=Contru\u00e7\u00f5es Filho none=nenhum -Took=Levou -on=ligar +Took=Demorou +on=no slave diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_BR.properties index f3bf13fb34..7811da01d6 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Previous\ Build=Build Anterior -Next\ Build=Pr\u00f3xima Constru\u00e7\u00e3o +Previous\ Build=Constru\u00E7\u00E3o Anterior +Next\ Build=Pr\u00F3ximo Build diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_BR.properties index 3a2de08609..a5e30827f7 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_BR.properties @@ -21,10 +21,55 @@ # THE SOFTWARE. Back\ to\ Project=Voltar ao Projeto -Changes=Mudan\u00e7as -Console\ Output=Resultados no Console +Changes=Altera\u00E7\u00F5es +Console\ Output=Sa\u00EDda do Console View\ as\ plain\ text=Visualizar como texto -Edit\ Build\ Information=Editar Dados da Build -Status=Estado -View\ Build\ Information=Visualizar Informa\u00E7\u00F5es de Constru\u00E7\u00E3o +Edit\ Build\ Information=Editar informa\u00E7\u00F5es de compila\u00E7\u00E3o +Status=Estado pessoal +Jenkins +\u2026 +Translation Assistance Plugin +License of contribution to Jenkins translation +Edit +Add +Page +Gliffy Diagram +Comment +Attachment +Tools +Attachments (0) +Page History +Restrictions +Edit in Word +Favourite +Watch +Info +Link to this Page\u2026 +View in Hierarchy +View Wiki Markup +Export to PDF +Export to Word +Import Word Document +Copy +Move + License of contribution to Jenkins translation +Added by Kohsuke Kawaguchi, last edited by Kohsuke Kawaguchi on Aug 29, 2011 +Jenkins +Home +Mailing lists +Source code +Bugtracker +Security Advisories +Donation +Commercial Support +Wiki Site Map +Documents +Meet Jenkins +Use Jenkins +Extend Jenkins +Plugins +Servlet Container Notes + This page is the landing page for the translation assistance plugin''s "contribute" link +When you check the "I contribute my translations to the Jenkins project" link, you acknowledge that your submission will be licensed under the MIT license (the same license that the rest of the Jenkins core uses) and you have the rights to release them under the said license. +View\ Build\ Information=Ver informa\u00E7\u00F5es de constru\u00E7\u00E3o raw=sem formata\u00e7\u00e3o diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_pt_BR.properties index 9603946bfa..6f61d6e012 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/configure-common_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_pt_BR.properties @@ -25,4 +25,5 @@ Advanced\ Project\ Options=Op\u00E7\u00F5es Avan\u00E7adas do Projeto default.value=Default Node=N\u00F3 Tie\ this\ project\ to\ a\ node=Vincular esse projeto a um N\u00F3 +Display\ Name=Nome de Exibi\u00E7\u00E3o JDK\ to\ be\ used\ for\ this\ project=Necess\u00E1rio usar JDK nesse projeto diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_pt_BR.properties index 5687313b68..9088a770d4 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_pt_BR.properties @@ -22,3 +22,4 @@ Are\ you\ sure\ about\ deleting\ the\ job?=Tem certeza que deseja excluir a tarefa? Yes=Sim +blurb=Tem certeza que deseja excluir o diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractProject/main_pt_BR.properties index 409a51bf4d..2030ff769a 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_pt_BR.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Workspace=Workspace -Last\ Successful\ Artifacts=\u00daltimos Artefatos que obtiveram Sucesso +Workspace=\u00C1rea de Trabalho +Last\ Successful\ Artifacts=\u00DAltimos artefatos que obtiveram sucesso Recent\ Changes=Mudan\u00e7as Recentes Latest\ Test\ Result=\u00daltimo Resultado de Teste diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_pt_BR.properties index 4f20ae8f03..7d50b9a3ce 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_pt_BR.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Disable\ Project=Desabilitar Projeto -Enable=Habilitado +Enable=Habilitar This\ project\ is\ currently\ disabled=Este projeto est\u00e1 atualmente desabilitado. diff --git a/core/src/main/resources/hudson/model/AbstractProject/requirePOST_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractProject/requirePOST_pt_BR.properties new file mode 100644 index 0000000000..97a012278c --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/requirePOST_pt_BR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Proceed=Prosseguir diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pt_BR.properties index 815dddd6d9..8ecb4b978a 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pt_BR.properties @@ -20,13 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Voltar para Painel Principal -Status=Status -Build\ scheduled=Constru\u00e7\u00e3o agendada -Changes=Mudan\u00e7as -Wipe\ Out\ Workspace=Limpar Workspace -Workspace=\u00c1rea de Trabalho +Back\ to\ Dashboard=Voltar para o Dashboard +Status=Situa\u00E7\u00E3o +Build\ scheduled=Constru\u00E7\u00E3o Agendada +Changes=Altera\u00E7\u00F5es +Wipe\ Out\ Workspace=Limpar \u00C1rea de Trabalho delete=Excluir {0} Configure=Configurar View\ Configuration= Configurar a View -wipe.out.confirm=Tem certeza que quer excluir esse workspace? +delete.confirm=Quer mesmo deletar {0} \u2018{1}\u2019? +wipe.out.confirm=Tem certeza que quer apagar o espa\u00E7o de trabalho? diff --git a/core/src/main/resources/hudson/model/AllView/noJob_pt_BR.properties b/core/src/main/resources/hudson/model/AllView/noJob_pt_BR.properties index f0c481d80e..7efbeda624 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_pt_BR.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -newJob=Por favor clique em: crie novas tarefas para iniciar. +newJob=Por favor clique em: Novo Job para iniciar. login=Efetue login para criar novas tarefas. signup=Se voc\u00ea ainda n\u00e3o tem uma conta, voc\u00ea pode criar uma conta agora. Welcome\ to\ Jenkins!=Bem-vindo ao Jenkins! diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_pt_BR.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_pt_BR.properties index 704cb2723f..031c7a84e0 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_pt_BR.properties @@ -21,4 +21,5 @@ # THE SOFTWARE. # Started by upstream project {0} build number {1} -started_by_project=Iniciado pela constru\u00E7\u00E3o {1} do projeto {0} +caused_by=Criado por originalidade de: +started_by_project=Iniciado pela constru\u00E7\u00E3o {1} do projeto {0} diff --git a/core/src/main/resources/hudson/model/Cause/UserCause/description_pt_BR.properties b/core/src/main/resources/hudson/model/Cause/UserCause/description_pt_BR.properties index a0be18f269..36fc95c91b 100644 --- a/core/src/main/resources/hudson/model/Cause/UserCause/description_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Cause/UserCause/description_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. # Started by user {0} -started_by_user=Iniciado pelo usu\u00e1rio {0} +started_by_user=Iniciado pelo(a) usu\u00E1rio(a) {0} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pt_BR.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pt_BR.properties index 5ddfd1fd87..36ed335316 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pt_BR.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. # Started by user {1} -started_by_anonymous=Iniciado por usu\u00E1rio an\u00F4nimo -started_by_user=Iniciado pelo usu\u00e1rio {1} +started_by_anonymous=Iniciado pelo usu\u00E1rio an\u00F4nimo +started_by_user=Iniciado pelo(a) usu\u00E1rio(a) {1} diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_pt_BR.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_pt_BR.properties index 7ea0b3b1c5..5e15451b31 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_pt_BR.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. Back\ to\ List=Voltar para a Lista -Build\ History=Hist\u00f3rico de Constru\u00e7\u00f5es +Build\ History=Hist\u00F3rico de Build\u00B4s Configure=Configurar -Status=Estado -Delete\ Slave= Deletar Slave +Status=Situa\u00E7\u00E3o +Delete\ Slave=Remover Slave Load\ Statistics=Carregar Estat\u00edsticas -Script\ Console=Console de Script +Script\ Console=Terminal de Script diff --git a/core/src/main/resources/hudson/model/ComputerSet/_new_pt_BR.properties b/core/src/main/resources/hudson/model/ComputerSet/_new_pt_BR.properties index 190d435436..f4e4fb8839 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/_new_pt_BR.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/_new_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Save=SAlvar +Save=Salvar Name\ is\ mandatory=Nome \u00e9 obrigat\u00f3rio Name=Nome diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pt_BR.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pt_BR.properties index 2da2d3e571..da72b1eab6 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pt_BR.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -all\ files\ in\ zip=Todos os arquivos est\u00E3o compactados +all\ files\ in\ zip=Todos os arquivos em .zip view=ver No\ files\ in\ directory=Nenhum arquivo no diret\u00f3rio diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_pt_BR.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_pt_BR.properties index 6384945df2..e6c2344c79 100644 --- a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_pt_BR.properties +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=Esta \u00E9 a central de funcionalidades do Jenkins. Jenkins construir\u00E1 seu projeto, voc\u00EA pode combinar qualquer SCM com qualquer sistema de constru\u00E7\u00E3o, e at\u00E9 mesmo ser usadopara outras tarefas diferentes de constru\u00E7\u00E3o de software. +body=Esta \u00E9 a central de funcionalidades do Jenkins. Jenkins construir\u00E1 seu projeto, voc\u00EA pode combinar qualquer SCM com qualquer sistema de constru\u00E7\u00E3o, e at\u00E9 mesmo ser usado para outras tarefas diferentes de constru\u00E7\u00E3o de software. diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_pt_BR.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_pt_BR.properties index 984970accf..41c1ddf26d 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_pt_BR.properties @@ -21,9 +21,8 @@ # THE SOFTWARE. title={0} Tend\u00eancia de tempo de constru\u00e7\u00e3o -Build=Constru\u00e7\u00e3o Duration=Dura\u00e7\u00e3o Slave=Slave More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=Mais do que uma constru\u00e7\u00e3o \u00e9 necess\u00e1ria para o relat\u00f3rio de tend\u00eancia. -Build\ Time\ Trend= Trend de constru\u00e7\u00e3o -Timeline=Limite de tempo +Build\ Time\ Trend=Trend de Build +Timeline=Linha do tempo diff --git a/core/src/main/resources/hudson/model/Job/configure_pt_BR.properties b/core/src/main/resources/hudson/model/Job/configure_pt_BR.properties index 06ff987563..670c304808 100644 --- a/core/src/main/resources/hudson/model/Job/configure_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Job/configure_pt_BR.properties @@ -20,8 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -name={0} nome +Strategy=Estrat\u00E9gia +name=Nome do {0} Description=Descri\u00e7\u00e3o Discard\ Old\ Builds=Descartar Constru\u00e7\u00f5es Antigas Save=Salvar -LOADING=Carregando +LOADING=CARREGANDO diff --git a/core/src/main/resources/hudson/model/Job/index_pt_BR.properties b/core/src/main/resources/hudson/model/Job/index_pt_BR.properties new file mode 100644 index 0000000000..480aef1000 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_pt_BR.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Disable\ Project=Desabilitar projeto +Enable=Habilitar +Project\ name=Nome do Projeto diff --git a/core/src/main/resources/hudson/model/Label/sidepanel_pt_BR.properties b/core/src/main/resources/hudson/model/Label/sidepanel_pt_BR.properties index ac5b2f5d9e..9bd5177ffa 100644 --- a/core/src/main/resources/hudson/model/Label/sidepanel_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Label/sidepanel_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Voltar ao menu principal +Back\ to\ Dashboard=Voltar ao Dashboard Overview={0}Vis\u00e3o Geral Load\ Statistics=Carregar Estat\u00edsticas diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_pt_BR.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_pt_BR.properties index 5e98a1bd56..3c6b56cb9d 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_pt_BR.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_pt_BR.properties @@ -24,6 +24,7 @@ Jobs=Tarefas All\ selected\ jobs=Todas as tarefas selecionadas Status\ Filter=Status do filtro Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Use uma express\u00e3o regular para incluir tarefas na View +Recurse\ in\ subfolders=Recursivo nos sub-diret\u00F3rios Regular\ expression=Express\u00e3o regular Columns=Colunas Add\ column=Adicionar coluna diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_pt_BR.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_pt_BR.properties index 09af1aa207..a5bafdc8e9 100644 --- a/core/src/main/resources/hudson/model/ListView/newViewDetail_pt_BR.properties +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_pt_BR.properties @@ -22,5 +22,5 @@ # \ # Shows jobs in a simple list format. You can choose which jobs are to be displayed in which view. -blurb=/Mostrar as tarefas em uma lista simples. Voc\u00ea pode escolher quais trabalhos ser\u00e3o listados. +blurb=Mostrar as tarefas em uma lista simples. Voc\u00EA pode escolher quais trabalhos ser\u00E3o listados. #Shows jobs in a simple list format. You can choose which jobs are to be displayed in which view. diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_pt_BR.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_pt_BR.properties index 10c17d07d0..8061f79ab6 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_pt_BR.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_pt_BR.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. # Load statistics: {0} -title=Carregar estatisticas: {0} +title=Carregar estat\u00EDsticas: {0} Short=Curto Load\ statistics\ graph=Carregar estat\u00edstica gr\u00e1fica Medium=M\u00e9dia @@ -55,6 +55,6 @@ Timespan=Intervalo # \ # The graph is exponential moving average of periodically collected data values. \ # 3 timespans are updated every 10 seconds, 1 minute, and 1 hour respectively. -blurb=\ +blurb= As estat\u00EDsticas carregadas rastreiam tr\u00EAs m\u00E9tricas de utiliza\u00E7\u00E3o de recursos:
N\u00FAmero total de de executores
Para um computador, este \u00E9 o n\u00FAmero de executores que o computador tem. Para um r\u00F3tulo, esta \u00E9 a soma de todos os executores entre todos os computadores neste r\u00F3tulo. Para todo o Jenkins, esta \u00E9 a soma de todos os executores entre todos os computadores que utilizam o Jenkins. Al\u00E9m das altera\u00E7\u00F5es na configura\u00E7\u00E3o, este valor tamb\u00E9m pode mudar quando um "escravo" fica indispon\u00EDvel.
N\u00FAmero de executores ocupados
Esta linha rastreia o n\u00FAmero de executores (entre todos os executores contados anteriormente) que est\u00E3o construindo. A rela\u00E7\u00E3o deste com o n\u00FAmero total de executores possibilita conhecer a utiliza\u00E7\u00E3o do recurso. Se todos os seus executores est\u00E3o ocupados por um longo per\u00EDodo de tempo, considere adicionar mais computadores ao "cluster" do Jenkins.
Comprimento da fila
Este \u00E9 o n\u00FAmero de trabalhos que est\u00E3o na fila de constru\u00E7\u00E3o, esperando por um executor dispon\u00EDvel (do computador, com r\u00F3tulo, ou do pr\u00F3prio Jenkins, respectivamente). Isto n\u00E3o inclui trabalhos que est\u00E3o em per\u00EDodo de espera, nem inclui trabalhos que est\u00E3o na fila devido a constru\u00E7\u00F5es prematuras est\u00E3o em progresso. Se esta linha nunca passa de zero, significa que o Jenkins realizar\u00E1 mais constru\u00E7\u00F5es adicionando mais computadores.
O gr\u00E1fico \u00E9 a m\u00E9dia de movimenta\u00E7\u00E3o exponencial de dados coletados periodicamente. 3 per\u00EDodos s\u00E3o atualizados a cada 10 segundos, 1 minuto, e 1 hora respectivamente. # Estes usu\u00E1rios podem se logar no Jenkins. Este \u00E9 um super conjunto desta lista, \ Long=Longo diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_pt_BR.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_pt_BR.properties index 559d3beb57..1468ea23e7 100644 --- a/core/src/main/resources/hudson/model/MyView/newViewDetail_pt_BR.properties +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_pt_BR.properties @@ -22,4 +22,4 @@ # \ # This view automatically displays all the jobs that the current user has an access to. -blurb=Essa view monstra todas as tarefas que o usu\u00e1rio est\u00e1 acessando +blurb=Essa view mostra todas as tarefas que o usu\u00E1rio est\u00E1 acessando diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_pt_BR.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_pt_BR.properties index 27beddc4d1..bc9cbe94ee 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_pt_BR.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -This\ build\ is\ parameterized=Esta constru\u00e7\u00e3o est\u00e1 parametrizada +This\ build\ is\ parameterized=Esta constru\u00E7\u00E3o \u00E9 parametrizada Add\ Parameter=Adicionar Par\u00e2metro diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_pt_BR.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_pt_BR.properties index d11953e752..f810b3d8e1 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_pt_BR.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_pt_BR.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +LOADING=CARREGANDO description=Esta constru\u00e7\u00e3o requer par\u00e2metros: -Build=Constru\u00e7\u00e3o +Build=Construir diff --git a/core/src/main/resources/hudson/model/ProxyView/configure-entries_pt_BR.properties b/core/src/main/resources/hudson/model/ProxyView/configure-entries_pt_BR.properties index 02d05f6fa8..ab237b41fe 100644 --- a/core/src/main/resources/hudson/model/ProxyView/configure-entries_pt_BR.properties +++ b/core/src/main/resources/hudson/model/ProxyView/configure-entries_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=O nome da View global que ser\u00e1 mostrada -View\ name=Visualizar nome +View\ name=Nome da visualiza\u00E7\u00E3o diff --git a/core/src/main/resources/hudson/model/Run/console_pt_BR.properties b/core/src/main/resources/hudson/model/Run/console_pt_BR.properties index 71a1377296..6d32d7768c 100644 --- a/core/src/main/resources/hudson/model/Run/console_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Run/console_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Sa\u00edda do Console +Console\ Output=Sa\u00EDda do console # Skipping {0,number,integer} KB.. Full Log -skipSome= Ignorando {0,number,integer} KB.. Log Completo +skipSome=Ignorando {0,number,integer} KB.. Ver log completo diff --git a/core/src/main/resources/hudson/model/Run/delete_pt_BR.properties b/core/src/main/resources/hudson/model/Run/delete_pt_BR.properties index d06e0b4319..06b15d03a2 100644 --- a/core/src/main/resources/hudson/model/Run/delete_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Run/delete_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=Excluir esta constru\u00e7\u00e3o +Delete\ this\ build=Excluir Esta Constru\u00E7\u00E3o diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pt_BR.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pt_BR.properties index b7c871197e..1d6cbbe00b 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pt_BR.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preparation=Preparando +Preparation=Prepara\u00E7\u00E3o diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_pt_BR.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_pt_BR.properties new file mode 100644 index 0000000000..2fbd70bb8a --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_pt_BR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Running=Rodando diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_pt_BR.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_pt_BR.properties index bdb2600c82..7757a0c8cd 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_pt_BR.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_pt_BR.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -warning=Reinicie Jenkins quando a instala\u00E7\u00E3o estiver completa e nenhum Job rodando +Go\ back\ to\ the\ top\ page=Voltar para a p\u00E1gina principal +warning=Reinicie o Jenkins quando a instala\u00E7\u00E3o estiver completa e nenhum Job estiver rodando +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=voc\u00EA pode come\u00E7ar a usar os plugins intalados imediatamente diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_pt_BR.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_pt_BR.properties index 9baeb7d981..d72c730d1f 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_pt_BR.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_pt_BR.properties @@ -23,5 +23,5 @@ Update\ Center=Central de atualiza\u00e7\u00e3o # Once the installation is completed, Jenkins needs to be restarted for changes to take effect. warning=Assim que a instala\u00e7\u00e3 do Jenkins estiver completa, ser\u00e1 necess\u00e1ria sua reinicializa\u00e7\u00e3o para as mudan\u00e7as terem efeito -Installing\ Plugins/Upgrades=Atualizando os Plugins +Installing\ Plugins/Upgrades=Instalando Plugins/Atualizando Restart\ When\ No\ Jobs\ Are\ Running=Reiniciar quando terminar de executar as tarefas diff --git a/core/src/main/resources/hudson/model/User/builds_pt_BR.properties b/core/src/main/resources/hudson/model/User/builds_pt_BR.properties new file mode 100644 index 0000000000..9b672a5157 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/builds_pt_BR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title=Constru\u00E7\u00F5es de {0} diff --git a/core/src/main/resources/hudson/model/User/index_pt_BR.properties b/core/src/main/resources/hudson/model/User/index_pt_BR.properties new file mode 100644 index 0000000000..09339e2c85 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_pt_BR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ User\ Id=C\u00F3digo de Usu\u00E1rio diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_pt_BR.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_pt_BR.properties index 038f94d231..d6d53e1527 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_pt_BR.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_pt_BR.properties @@ -21,8 +21,9 @@ # THE SOFTWARE. Name=Nome -Last\ Active=\u00DAltima execu\u00E7\u00E3o +Last\ Active=\u00DAltima atividade On=Em People=Pessoas All\ People=Todas as pessoas -User\ Id=Identifica\u00E7\u00E3o do Usu\u00E1rio +User\ Id=ID do usu\u00E1rio +blurb=Inclui todos os "usu\u00E1rios" conhecidos, incluindo identidades de logins as quais o reino de seguran\u00E7a consegue enumerar, assim como pessoas mencionadas nas mensagens de commits nos registros de mudan\u00E7as gravados. diff --git a/core/src/main/resources/hudson/model/View/sidepanel_pt_BR.properties b/core/src/main/resources/hudson/model/View/sidepanel_pt_BR.properties index 6c793911a7..25754bed8b 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_pt_BR.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_pt_BR.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewJob=Novo(a) {0} -People=Pessoas -Build\ History=Hist\u00F3rico de Constru\u00E7\u00F5es -Edit\ View=Editar Visualiza\u00E7\u00E3o +NewJob=Novo {0} +People=Usu\u00E1rios +Build\ History=Hist\u00F3rico de compila\u00E7\u00F5es +Edit\ View=Editar visualiza\u00E7\u00E3o Delete\ View=Deletar Visualiza\u00E7\u00E3o -Project\ Relationship=Relacionamento entre Projetos -Check\ File\ Fingerprint=Checar Fingerprint de Arquivo +Project\ Relationship=Relacionamento entre projetos +Check\ File\ Fingerprint=Checar Arquivo Digital diff --git a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_pt_BR.properties b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_pt_BR.properties index daf60d56db..48f1c7b57b 100644 --- a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_pt_BR.properties +++ b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Free\ Space\ Threshold=Tempo livre +Free\ Space\ Threshold=Limite de espa\u00E7o livre diff --git a/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_pt_BR.properties b/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_pt_BR.properties index 5b7bd707a9..2ca9b2aa9f 100644 --- a/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_pt_BR.properties +++ b/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_pt_BR.properties @@ -20,5 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Host=host +JVM\ options=Op\u00E7\u00F5es de JVM Password=Senha Administrator\ user\ name=Nome do Usu\u00e1rio Administrador +Path\ to\ java\ executable=Camiho para o execut\u00E1vel do Java +Run\ service\ as=Executar servi\u00E7o como +blurb=Este m\u00E9todo de inicializa\u00E7\u00E3o confia no DCOM e \u00E9 comumente associado com problemas sutis. Ao inv\u00E9s disso, considere utilizar Inicialize Slave Agents utilizando Java Web Start, o que tamb\u00E9m permite a instala\u00E7\u00E3o como um servi\u00E7o Windows mas tamb\u00E9m considerando mais confi\u00E1vel. diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_pt_BR.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_pt_BR.properties index 353d9136b4..5db8a7b8fc 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_pt_BR.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_pt_BR.properties @@ -22,4 +22,4 @@ No\ builds.=Sem constru\u00e7\u00f5es. No\ changes\ in\ any\ of\ the\ builds.=Sem mudan\u00e7as em qualquer uma das constru\u00e7\u00f5es. -detail=detalhe +detail=detalhes diff --git a/core/src/main/resources/hudson/search/Search/search-failed_pt_BR.properties b/core/src/main/resources/hudson/search/Search/search-failed_pt_BR.properties index 740895dc4f..a9a2ba9818 100644 --- a/core/src/main/resources/hudson/search/Search/search-failed_pt_BR.properties +++ b/core/src/main/resources/hudson/search/Search/search-failed_pt_BR.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Nothing\ seems\ to\ match.=Nada se enquadra. +Nothing\ seems\ to\ match.=Nenhum resultado encontrado. +Search\ for=Pesquisar por diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_pt_BR.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_pt_BR.properties index 8f68135c86..58f101aaf9 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_pt_BR.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -sign\ up=registrar +sign\ up=Registrar diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_pt_BR.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_pt_BR.properties new file mode 100644 index 0000000000..0c45194d30 --- /dev/null +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_pt_BR.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Unprotected\ URLs=URLs desprotegidas +blurb=Estas URLs (e URLs iniciando com estes prefixos mais uma /) n\u00E3o devem requerer autentica\u00E7\u00E3o. Se poss\u00EDvel, configure o seu container para passar estas requisi\u00E7\u00F5es diretamente para o Jonkins sem precisar de login. diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pt_BR.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pt_BR.properties index c79fbd4446..b6aae07c30 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pt_BR.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=Logar +login=Log-in diff --git a/core/src/main/resources/hudson/slaves/CommandLauncher/config_pt_BR.properties b/core/src/main/resources/hudson/slaves/CommandLauncher/config_pt_BR.properties index e49fb6f853..6554a4c42b 100644 --- a/core/src/main/resources/hudson/slaves/CommandLauncher/config_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/CommandLauncher/config_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Launch\ command=executar comando +Launch\ command=Executar comando diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_pt_BR.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_pt_BR.properties index 1186ce7262..c002697a3f 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_pt_BR.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=Descri\ufffd\ufffdo +Description=Descri\u00E7\u00E3o \#\ of\ executors=N\ufffdmero de executores -Remote\ FS\ root=Diret\ufffdrio root remoto -Labels=Etiquetas -Launch\ method=M\ufffdtodo de lan\ufffdamento +Remote\ FS\ root=Diret\u00F3rio root remoto +Labels=R\u00F3tulos +Launch\ method=M\u00E9todo de lan\u00E7amento Availability=Disponibilidade -Node\ Properties=Propriedades dos N\ufffdS +Node\ Properties=Propriedades dos N\u00D3S diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_pt_BR.properties b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_pt_BR.properties index 1dc23c232c..1e6d41f7d1 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_pt_BR.properties @@ -25,4 +25,4 @@ # 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=detalhe +detail=Adiciona um simples, escravo burro ao Jenkins. \u00C9 chamado "burro" porque o Jenkins n\u00E3o prov\u00EA um maior n\u00EDvel de integra\u00E7\u00E3o com estes escravos, como um provisionamento din\u00E2mico. Selecione este tipo se nenhum outro escravo 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/EnvironmentVariablesNodeProperty/config_pt_BR.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pt_BR.properties index 7bb93a2964..c1c03bf6e8 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 valor-chave +value=valor +name=nome +List\ of\ key-value\ pairs=Lista de pares de chave-valor diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/config_pt_BR.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_pt_BR.properties index e0a0c86c14..51cc60c251 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/config_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Tunnel\ connection\ through=Liga\u00e7\u00e3o de t\u00fanel atrav\u00e9s -JVM\ options=Op\u00e7\u00f5es JVM +Tunnel\ connection\ through=T\u00FAnel conecta atrav\u00E9s +JVM\ options=Op\u00E7\u00F5es da JVM diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_pt_BR.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_pt_BR.properties index 516c43c814..78e0c7ca77 100644 --- a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_pt_BR.properties +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disconnect= +Disconnect=Desconectar System\ Information=Informa\u00e7\u00e3o de Sistema Log=Log diff --git a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_pt_BR.properties b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_pt_BR.properties index 3d82755cac..9b67d72aa9 100644 --- a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_pt_BR.properties +++ b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_pt_BR.properties @@ -22,10 +22,10 @@ failingFor=Falhando para {0} {0,choice,0#builds|1#build|1Check if your polling is \ # hanging, and/or increase the number of threads if necessary. -blurb=Existe mais atividades agendadas SCM do que manuais, ent\u00e3o\ - as threads n\u00e3o est\u00e3o acompanhando as demandas. \ - Verifique se as vota\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/DescriptorImpl/index_pt_BR.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/DescriptorImpl/index_pt_BR.properties index e35bb7d4a2..907f68645d 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/DescriptorImpl/index_pt_BR.properties +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/DescriptorImpl/index_pt_BR.properties @@ -26,9 +26,6 @@ The\ following\ polling\ activities\ are\ currently\ in\ progress\:=As seguintes # There are more SCM polling activities scheduled than handled, so \ # the threads are not keeping up with the demands. Check if your polling is \ # hanging, and/or increase the number of threads if necessary. -clogged=Existe mais atividades agendadas SCM do que manuais, ent\u00e3o\ - as threads n\u00e3o est\u00e3o acompanhando as demandas. \ - Verifique se as vota\u00e7\u00f5es est\u00e3o pendentes, e \ - aumente o n\u00famero de threads se necess\u00e1rio. -Running\ for=Execu\u00e7\u00e3o para +clogged=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 travando e aumente o n\u00FAmero de threads se necess\u00E1rio. +Running\ for=Executando para Project=Projeto diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_pt_BR.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_pt_BR.properties index 9c75c59274..1c09fc3751 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_pt_BR.properties +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. title=\u00daltimo {0} -Polling\ has\ not\ run\ yet.=Vota\u00e7ao ainda n\u00e3o foi executada. +Polling\ has\ not\ run\ yet.=Consulta ainda n\u00E3o foi executada. 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 index b1dab13766..4e4d798fe2 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_pt_BR.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_pt_BR.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Schedule\ a\ build=Agendar uma constru\u00e7\u00e3o +Build\ scheduled=Constru\u00E7\u00F5es agendadas +Schedule\ a\ build=Agendar um build diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_pt_BR.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_pt_BR.properties index 5b71b83271..0c59334b2c 100644 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_pt_BR.properties +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -New\ View=Nova Vis\u00E3o +New\ View=Nova Visualiza\u00E7\u00E3o diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_pt_BR.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_pt_BR.properties index dbaf6d3bd8..d375c4aaa3 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_pt_BR.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=\u00daltima Dura\u00e7\u00e3o +Last\ Duration=\u00DAltima dura\u00E7\u00E3o diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_pt_BR.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_pt_BR.properties index 2750d1da1d..42d54ad0fd 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/column_pt_BR.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=N/A +N/A=N/D diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pt_BR.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pt_BR.properties index 23a86a8097..e7d16247a6 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pt_BR.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=Estado da \u00FAltima compila\u00E7\u00E3o +Status\ of\ the\ last\ build=Estado da \u00FAltima constru\u00E7\u00E3o diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pt_BR.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pt_BR.properties index c00ee92697..f6b7ae7795 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pt_BR.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pt_BR.properties @@ -20,4 +20,4 @@ # 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=Relat\u00F3rio de clima mostrando o status consolidado das constru\u00E7\u00F5es recentes +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Relat\u00F3rio de clima mostrando o estadp consolidado das constru\u00E7\u00F5es recentes diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_pt_BR.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_pt_BR.properties index dbd062b5d8..00e1f9b6e8 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_pt_BR.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Sa\u00EDda Padr\u00E3o +Console\ Output=Sa\u00EDda de console diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_pt_BR.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_pt_BR.properties index 4171fac052..083ee6f071 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_pt_BR.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_pt_BR.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -trend=tend\u00eancia +trend=Tend\u00EAncia More\ ...=Mais ... -for\ all=para todas -for\ failures=para falhas +for\ all=para todos +for\ failures=por falhas diff --git a/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_pt_BR.properties b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_pt_BR.properties new file mode 100644 index 0000000000..fca9cc5b8e --- /dev/null +++ b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_pt_BR.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Setup\ Security=Configura\u00E7\u00F5es de Seguran\u00E7a +blurb=O Jenkins sem seguran\u00E7a permite que qualquer um na rede inicie processos. Considere habilitar a autentica\u00E7\u00E3o para evitar acessos indesejados. diff --git a/core/src/main/resources/jenkins/management/PluginsLink/info_pt_BR.properties b/core/src/main/resources/jenkins/management/PluginsLink/info_pt_BR.properties new file mode 100644 index 0000000000..577b37bb2d --- /dev/null +++ b/core/src/main/resources/jenkins/management/PluginsLink/info_pt_BR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +updates\ available=Atualiza\u00E7\u00F5es dispon\u00EDveis diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_pt_BR.properties index ffdb222552..7062aa0784 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_pt_BR.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. \#\ of\ executors=N\u00famero de executores -Labels=Etiquetas -Node\ Properties=Propriedades dos N\ufffds -Save=Salvar \ No newline at end of file +Labels=R\u00F3tulos +Node\ Properties=Propriedades do n\u00F3 +Save=Salvar diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_pt_BR.properties index dec8f98f18..c7ab59c1b3 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_cli_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_pt_BR.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +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.\ diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_pt_BR.properties index 6b7d71a63f..d4ca5fb9d3 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_pt_BR.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Home\ directory=Diret\u00F3rio principal -System\ Message=Mensagem do Sistema +System\ Message=Mensagem do sistema Save=Salvar -LOADING=Carregando -Build\ Record\ Root\ Directory=Diret\u00F3rio raiz de armazenamento dos builds -Workspace\ Root\ Directory=Diret\u00F3rio raiz da Workspace +LOADING=CARREGANDO +Build\ Record\ Root\ Directory=Diret\u00F3rio Ra\u00EDz dos Registros de Constru\u00E7\u00F5es +Workspace\ Root\ Directory=Diret\u00F3rio raiz da \u00C1rea de Trabalho 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 5aba2099d8..65888e0336 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pt_BR.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ File\ Fingerprint=Verificar Fingerprint de Arquivo +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 diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_pt_BR.properties index 2c4250bc2f..3d74df5aa4 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_pt_BR.properties @@ -21,30 +21,30 @@ # THE SOFTWARE. # The last build was successful but unstable. A new build is in progress. -yellow_anime=A \u00faltima constru\u00e7\u00e3o realizada mas instavel. Uma nova constru\u00e7\u00e3o esta em progresso. +yellow_anime=O \u00FAltimo build foi bem-sucedido mas inst\u00E1vel. Um novo build est\u00E1 em andamento. # Project health is over 20% and up to 40%. You can hover the mouse over the project''s icon for a more detailed explanation. -health-21to40=A sa\u00fade do seu projeto esta entre 20% e 40%. Passe o mouse no icone para maiores detalhes. +health-21to40=A sa\u00FAde do seu projeto esta entre 20% e 40%. Passe o mouse no \u00EDcone para maiores detalhes. # Project health is over 40% and up to 60%. You can hover the mouse over the project''s icon for a more detailed explanation. -health-41to60=A sa\u00fade do seu projeto est\u00e1 entre 40% e 60%. Passe o mouse no icone para maiores detalhes. +health-41to60=A sa\u00FAde do projeto est\u00E1 entre 40% e 60%. Passe o mouse no \u00EDcone para maiores detalhes. # The last build fatally failed. -red=A ultima constru\u00e7\u00e3o teve um erro fatal +red=A \u00FAltima constru\u00E7\u00E3o teve um erro fatal # The project has never been built before, or the project is disabled. -grey=Essa foi a primeira constru\u00e7\u00e3o do projeto, ou esse projeto estava desativado. +grey=Essa foi o primeiro build do projeto, ou esse projeto estava desativado. # Project health is over 60% and up to 80%. You can hover the mouse over the project''s icon for a more detailed explanation. -health-61to80=A sa\u00fade do seu projeto esta entre 60% e 80%. Passe o mouse no \u00edcone para maiores detalhes. +health-61to80=A sa\u00FAde do projeto est\u00E1 entre 60% e 80%. Passe o mouse no \u00EDcone para maiores detalhes. # The last build was successful but unstable.\ # This is primarily used to represent test failures. -yellow=A \u00faltima constru\u00e7\u00e3o foi bem-sucedida, mas inst\u00e1vel +yellow=O \u00FAltimo build foi bem-sucedido, mas inst\u00E1vel. Isto \u00E9 utilizado primeiramente para representar falhas nos testes. # The last build was successful. A new build is in progress. -blue_anime=A \u00faltima constru\u00e7\u00e3o foi bem-sucedida. Uma nova constru\u00e7\u00e3o est\u00e1 em progresso. +blue_anime=O \u00FAltimo build foi bem-sucedido. Um novo build est\u00E1 em andamento. # Project health is 20% or less. You can hover the mouse over the project''s icon for a more detailed explanation. -health-00to20=A sa\u00fade do seu projeto foi que 20%. Passe o mouse no \u00edcone para maiores detalhes. +health-00to20=A sa\u00FAde do seu projeto est\u00E1 em 20% ou menos. Passe o mouse no \u00EDcone do projeto para maiores detalhes. # The first build of the project is in progress. -grey_anime=A primeira constru\u00e7\u00e3o do projeto est\u00e1 em andamento. +grey_anime=O primeiro build do projeto est\u00E1 em andamento. # The last build was successful. -blue=A \u00faltima constru\u00e7\u00e3o foi bem-sucedida. +blue=O \u00FAltimo build foi bem-sucedido. # Project health is over 80%. You can hover the mouse over the project''s icon for a more detailed explanation. -health-81plus=A sa\u00fade do seu projeto foi maior que 80%. Passe o mouse no \u00edcone para maiores detalhes. +health-81plus=A sa\u00FAde do projeto foi maior que 80%. Passe o mouse no \u00EDcone para maiores detalhes. # The last build fatally failed. A new build is in progress. -red_anime=A \u00faltima constru\u00e7\u00e3o teve um erro fatal. Uma nova constru\u00e7\u00e3o est\u00e1 em andamento, +red_anime=O \u00FAltimo build teve um erro fatal. Um novo build est\u00E1 em andamento. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_pt_BR.properties index 0f3bc82788..b2ed5e4e33 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_pt_BR.properties @@ -20,4 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Adicionar, remover, controlar e monitorar os v\u00E1rios N\u00F3s em quem o Jenkins executa seus trabalhos. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Adicionar, remover, desabilitar e habilitar plugins que podem ampliar as funcionalidades do Jenkins. +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Executa script arbitr\u00E1rio para administrar, diagn\u00F3sticar problemas ou corrigir problemas. +Load\ Statistics=Estat\u00EDsticas de Carga +LoadStatisticsText=Verificar a utiliza\u00E7\u00E3o de recursos e se voc\u00EA precisa de mais computadores para suas constru\u00E7\u00F5es Manage\ Jenkins=Gerenciar o Jenkins +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Interrompe a execu\u00E7\u00E3o de novas constru\u00E7\u00F5es, para que o sistema possa ser eventualmente desligar-se com seguran\u00E7a. +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=\u00DAtil quando voc\u00EA modificou, diretamente no disco, seus arquivos de configura\u00E7\u00E3o. +are.you.sure={0}: tem certeza? diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_pt_BR.properties index 5ae5e509cf..1305f64b6d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/newView_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -View\ name=Visualizar nome +View\ name=Nome da view diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_pt_BR.properties index a4c8ec581e..7e90015f7b 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_pt_BR.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Project\ Relationship=Projeto de relacionamento +Project\ Relationship=Relacionamento de Projetos upstream\ project=Projeto pai downstream\ project=Projeto filho Compare=Comparar diff --git a/core/src/main/resources/lib/form/advanced_pt_BR.properties b/core/src/main/resources/lib/form/advanced_pt_BR.properties index 89794e15d4..622714f9b0 100644 --- a/core/src/main/resources/lib/form/advanced_pt_BR.properties +++ b/core/src/main/resources/lib/form/advanced_pt_BR.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Advanced=Avan\u00e7ado +customizedFields=Um ou mais campos neste bloco foi editado. diff --git a/core/src/main/resources/lib/form/apply_pt_BR.properties b/core/src/main/resources/lib/form/apply_pt_BR.properties new file mode 100644 index 0000000000..90235e731c --- /dev/null +++ b/core/src/main/resources/lib/form/apply_pt_BR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Apply=Aplicar diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_pt_BR.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_pt_BR.properties new file mode 100644 index 0000000000..0f68c58df0 --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_pt_BR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=Configura\u00E7\u00E3o diff --git a/core/src/main/resources/lib/form/textarea_pt_BR.properties b/core/src/main/resources/lib/form/textarea_pt_BR.properties new file mode 100644 index 0000000000..f48a8b76e1 --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_pt_BR.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=Ocultar visualiza\u00E7\u00E3o +Preview=Visualizar diff --git a/core/src/main/resources/lib/hudson/buildHealth_pt_BR.properties b/core/src/main/resources/lib/hudson/buildHealth_pt_BR.properties index 278a58525d..4327d8a558 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=Descri\u00e7\u00e3o +Description=Descri\u00E7\u00E3o diff --git a/core/src/main/resources/lib/hudson/buildListTable_pt_BR.properties b/core/src/main/resources/lib/hudson/buildListTable_pt_BR.properties index 60108e2627..01286f3659 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_pt_BR.properties @@ -20,7 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Time\ Since=Data +Time\ Since=Tempo Desde Status=Estado Build=Constru\u00e7\u00e3o +Click\ to\ center\ timeline\ on\ event=Clique para centralizar a linha do tempo no evento Console\ output=Sa\u00edda do console diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_pt_BR.properties b/core/src/main/resources/lib/hudson/buildProgressBar_pt_BR.properties index 0119d2018e..a44412357d 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Iniciado {0} atr\u00E1s
Tempo estimado restante: {1} +text=Iniciado {0} atr\u00E1s
Tempo estimado restante: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_pt_BR.properties b/core/src/main/resources/lib/hudson/editableDescription_pt_BR.properties index abe07167b2..8d538bb2e9 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=adicionar descri\u00e7\u00e3o +add\ description=Adicionar descri\u00E7\u00E3o edit\ description=editar descri\u00e7\u00e3o diff --git a/core/src/main/resources/lib/hudson/executors_pt_BR.properties b/core/src/main/resources/lib/hudson/executors_pt_BR.properties index b00e3ca7c9..fc42883314 100644 --- a/core/src/main/resources/lib/hudson/executors_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/executors_pt_BR.properties @@ -20,14 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Estado do Executador de Compila\u00E7\u00E3o -Status=Estado +Build\ Executor\ Status=Estado do executor de constru\u00E7\u00E3o Master=Mestre offline=desconectado Dead=Morto -Idle=Ocioso +Idle=Parado Building=Construindo terminate\ this\ build=terminar esta constru\u00e7\u00e3o +Status=Situa\u00E7\u00E3o Unknown\ Task=Tarefa n\u00e3o localizada suspended=suspenso Offline=desconectado diff --git a/core/src/main/resources/lib/hudson/iconSize_pt_BR.properties b/core/src/main/resources/lib/hudson/iconSize_pt_BR.properties index bec2996b0d..a8b6703241 100644 --- a/core/src/main/resources/lib/hudson/iconSize_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/iconSize_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=\u00cdcone +Icon=\u00CDcone diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_pt_BR.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_pt_BR.properties new file mode 100644 index 0000000000..7e41a46cc0 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_pt_BR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Block\ build\ when\ downstream\ project\ is\ building=Bloquear constru\u00E7\u00E3o quando o projeto jusante estiver construindo diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_pt_BR.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_pt_BR.properties index 8eb2b0d000..a80edab665 100644 --- a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title.concurrentbuilds=Execute as construcoes se necessario +title.concurrentbuilds=Execute as constru\u00E7\u00F5es se necess\u00E1rio diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_pt_BR.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_pt_BR.properties index 86e787993a..ea9cd50e7a 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_pt_BR.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. -Retry\ Count=Contar novamente +Retry\ Count=N\u00FAmero de tentativas SCM\ checkout\ retry\ count=N\u00famero de tentativas de checkout diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_pt_BR.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_pt_BR.properties index 9d9f3e22a8..7371994e5b 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Upstream\ Projects=Projetos Pai -Downstream\ Projects=Projetos Filho +Upstream\ Projects=Projetos Piloto +Downstream\ Projects=Projetos descendentes diff --git a/core/src/main/resources/lib/hudson/queue_pt_BR.properties b/core/src/main/resources/lib/hudson/queue_pt_BR.properties index e690252436..7b90e06be3 100644 --- a/core/src/main/resources/lib/hudson/queue_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/queue_pt_BR.properties @@ -20,8 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Fila de Compila\u00E7\u00E3o -No\ builds\ in\ the\ queue.=Nenhuma compila\u00E7\u00E3o na fila. +Build\ Queue=Fila de Constru\u00E7\u00E3o +No\ builds\ in\ the\ queue.=Nenhuma constru\u00E7\u00E3o na fila. Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins est\u00e1 sendo desligado. Nenhuma constru\u00e7\u00e3o futura ser\u00e1 executada. +WaitingFor=Aguardando por {0} +WaitingSince=Esperando desde {0} cancel=cancelar Unknown\ Task=Tarefa n\u00e3o localizada diff --git a/core/src/main/resources/lib/hudson/rssBar_pt_BR.properties b/core/src/main/resources/lib/hudson/rssBar_pt_BR.properties index 21e1b68390..24a53544f6 100644 --- a/core/src/main/resources/lib/hudson/rssBar_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/rssBar_pt_BR.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Legend=Legenda -for\ all=para todos -for\ failures=para falhas -for\ just\ latest\ builds=apenas para as \u00FAltimas constru\u00E7\u00F5es +for\ all=de tudo +for\ failures=das falhas +for\ just\ latest\ builds=apenas para os \u00FAltimos build\u00B4s diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_pt_BR.properties b/core/src/main/resources/lib/layout/breadcrumbBar_pt_BR.properties new file mode 100644 index 0000000000..906f41cc52 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_pt_BR.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=Desabilitar atualiza\u00E7\u00E3o autom\u00E1tica + + + +Por exemplo: +Uma aba chamada ''\u00C1rea do Cliente'' deve ser exibido primeiro do que uma aba ''Dados'' e n\u00E3o depois. diff --git a/core/src/main/resources/lib/layout/layout_pt_BR.properties b/core/src/main/resources/lib/layout/layout_pt_BR.properties index a661407d43..22c39d76c5 100644 --- a/core/src/main/resources/lib/layout/layout_pt_BR.properties +++ b/core/src/main/resources/lib/layout/layout_pt_BR.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -search=buscar +search=pesquisar -searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -Page\ generated=P\u00e1gina gerada em -logout=Sair +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Caixa+De+Procura +Page\ generated=P\u00E1gina gerada +logout= DISABLE\ AUTO\ REFRESH=DESABILITAR ATUALIZA\u00c7\u00c3O AUTOM\u00c1TICA ENABLE\ AUTO\ REFRESH=HABILITAR ATUALIZA\u00C7\u00C3O AUTOM\u00C1TICA diff --git a/core/src/main/resources/lib/layout/progressiveRendering_pt_BR.properties b/core/src/main/resources/lib/layout/progressiveRendering_pt_BR.properties new file mode 100644 index 0000000000..29cd0bbb22 --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_pt_BR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=Processamento em progresso diff --git a/core/src/main/resources/lib/layout/task_pt_BR.properties b/core/src/main/resources/lib/layout/task_pt_BR.properties new file mode 100644 index 0000000000..306441e0a0 --- /dev/null +++ b/core/src/main/resources/lib/layout/task_pt_BR.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Done.=Pronto. diff --git a/core/src/main/resources/lib/test/bar_pt_BR.properties b/core/src/main/resources/lib/test/bar_pt_BR.properties index b7ad6b71d8..f233138d6e 100644 --- a/core/src/main/resources/lib/test/bar_pt_BR.properties +++ b/core/src/main/resources/lib/test/bar_pt_BR.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. failures={0} falhas -skipped={0} n\u00e3o executadas +skipped={0} n\u00E3o executados tests={0} testesNo\ tests=testes No\ tests=sem testes -- GitLab From 1227d3b15592b71134c127eb12a78c078e4cc855 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:02 -0700 Subject: [PATCH 071/308] Community-contributed localization for pt_PT (pt_PT) --- .../hudson/AboutJenkins/index_pt_PT.properties | 4 ++++ .../hudson/PluginManager/advanced_pt_PT.properties | 10 ++++++++++ .../PluginManager/checkUpdates_pt_PT.properties | 5 +++++ .../hudson/PluginManager/index_pt_PT.properties | 6 ++++++ .../hudson/PluginManager/installed_pt_PT.properties | 13 +++++++++++++ .../hudson/PluginManager/tabBar_pt_PT.properties | 6 ++++++ .../hudson/PluginManager/table_pt_PT.properties | 12 ++++++++++++ .../OldDataMonitor/manage_pt_PT.properties | 7 +++++++ .../message_pt_PT.properties | 3 ++- .../LogRecorderManager/index_pt_PT.properties | 6 ++++++ .../LogRecorderManager/sidepanel_pt_PT.properties | 8 ++++++++ .../RawHtmlMarkupFormatter/config_pt_PT.properties | 4 ++++ .../model/AbstractBuild/index_pt_PT.properties | 7 ++++++- .../model/AbstractBuild/sidepanel_pt_PT.properties | 4 ++-- .../model/AbstractBuild/tasks_pt_PT.properties | 9 +++++---- .../model/AbstractItem/delete_pt_PT.properties | 4 ++++ .../model/AbstractItem/noWorkspace_pt_PT.properties | 4 ++++ .../model/AbstractProject/changes_pt_PT.properties | 3 +++ .../model/AbstractProject/main_pt_PT.properties | 5 +++++ .../AbstractProject/makeDisabled_pt_PT.properties | 3 +++ .../AbstractProject/sidepanel_pt_PT.properties | 8 ++++++++ .../hudson/model/AllView/noJob_pt_PT.properties | 2 +- .../Cause/UserIdCause/description_pt_PT.properties | 4 ++++ .../hudson/model/Computer/index_pt_PT.properties | 4 ++++ .../model/Computer/sidepanel_pt_PT.properties | 8 ++++++++ .../hudson/model/ComputerSet/index_pt_PT.properties | 5 +++++ .../model/ComputerSet/sidepanel_pt_PT.properties | 6 ++++++ .../DirectoryBrowserSupport/dir_pt_PT.properties | 5 +++++ .../FreeStyleProject/newJobDetail_pt_PT.properties | 3 +++ .../hudson/model/JDK/config_pt_PT.properties | 3 +++ .../hudson/model/Job/configure_pt_PT.properties | 6 ++++++ .../hudson/model/Job/permalinks_pt_PT.properties | 3 +++ .../model/LoadStatistics/main_pt_PT.properties | 8 ++++++++ .../Permalink/link_pt_PT.properties | 3 +++ .../Run/KeepLogBuildBadge/badge_pt_PT.properties | 3 +++ .../hudson/model/Run/configure_pt_PT.properties | 5 +++++ .../hudson/model/Run/console_pt_PT.properties | 3 ++- .../hudson/model/Run/delete_pt_PT.properties | 3 +++ .../hudson/model/Run/logKeep_pt_PT.properties | 3 +++ .../ConnectionCheckJob/row_pt_PT.properties | 3 +++ .../CoreUpdateMonitor/message_pt_PT.properties | 4 ++++ .../DownloadJob/Installing/status_pt_PT.properties | 3 +++ .../Pending/status_pt_PT.properties | 3 +++ .../RestartJenkinsJob/row_pt_PT.properties | 3 +++ .../hudson/model/UpdateCenter/body_pt_PT.properties | 2 ++ .../hudson/model/User/builds_pt_PT.properties | 3 +++ .../hudson/model/User/index_pt_PT.properties | 3 +++ .../hudson/model/User/sidepanel_pt_PT.properties | 7 +++++++ .../model/View/AsynchPeople/index_pt_PT.properties | 7 +++++++ .../hudson/model/View/People/index_pt_PT.properties | 7 +++++++ .../hudson/model/View/builds_pt_PT.properties | 4 ++++ .../hudson/model/View/newJob_pt_PT.properties | 4 ++++ .../hudson/model/View/sidepanel_pt_PT.properties | 10 ++++++---- .../scm/EmptyChangeLogSet/digest_pt_PT.properties | 3 +++ .../hudson/scm/SCM/project-changes_pt_PT.properties | 3 +++ .../config_pt_PT.properties | 3 +++ .../index_pt_PT.properties | 6 ++++++ .../loginLink_pt_PT.properties | 3 +++ .../sidepanel_pt_PT.properties | 5 +++++ .../SecurityRealm/loginLink_pt_PT.properties | 2 +- .../config_pt_PT.properties | 5 +++++ .../FingerprintAction/index_pt_PT.properties | 5 +++++ .../hudson/tasks/LogRotator/config_pt_PT.properties | 10 ++++++++++ .../test/MetaTabulatedResult/body_pt_PT.properties | 4 ++++ .../test/TestObject/sidepanel_pt_PT.properties | 3 +++ .../InstallSourceProperty/config_pt_PT.properties | 4 ++++ .../tools/JDKInstaller/config_pt_PT.properties | 4 ++++ .../tools/ToolInstallation/global_pt_PT.properties | 6 ++++++ .../config_pt_PT.properties | 4 ++++ .../views/BuildButtonColumn/column_pt_PT.properties | 2 ++ .../myViewTabs_pt_PT.properties | 3 +++ .../columnHeader_pt_PT.properties | 2 +- .../LastDurationColumn/column_pt_PT.properties | 3 +++ .../LastFailureColumn/columnHeader_pt_PT.properties | 2 +- .../views/LastFailureColumn/column_pt_PT.properties | 2 +- .../LastSuccessColumn/columnHeader_pt_PT.properties | 2 +- .../StatusColumn/columnHeader_pt_PT.properties | 2 +- .../WeatherColumn/columnHeader_pt_PT.properties | 2 +- .../BuildHistoryWidget/entries_pt_PT.properties | 4 ++++ .../widgets/HistoryWidget/entry_pt_PT.properties | 3 +++ .../widgets/HistoryWidget/index_pt_PT.properties | 6 ++++++ .../management/PluginsLink/info_pt_PT.properties | 3 +++ .../MasterComputer/configure_pt_PT.properties | 3 +++ .../jenkins/model/Jenkins/_cli_pt_PT.properties | 4 ++++ .../model/Jenkins/configure_pt_PT.properties | 7 +++++++ .../model/Jenkins/fingerprintCheck_pt_PT.properties | 5 +++++ .../jenkins/model/Jenkins/manage_pt_PT.properties | 7 +++++++ .../model/Jenkins/systemInfo_pt_PT.properties | 7 +++++++ .../resources/lib/form/advanced_pt_PT.properties | 3 +++ .../form/breadcrumb-config-outline_pt_PT.properties | 3 +++ .../resources/lib/form/helpArea_pt_PT.properties | 3 +++ .../form/repeatableDeleteButton_pt_PT.properties | 3 +++ .../resources/lib/form/repeatable_pt_PT.properties | 3 +++ .../resources/lib/form/textarea_pt_PT.properties | 4 ++++ .../lib/hudson/buildCaption_pt_PT.properties | 2 +- .../lib/hudson/buildListTable_pt_PT.properties | 7 +++++++ .../lib/hudson/buildProgressBar_pt_PT.properties | 2 +- .../resources/lib/hudson/executors_pt_PT.properties | 8 ++++---- .../resources/lib/hudson/iconSize_pt_PT.properties | 2 +- .../lib/hudson/newFromList/form_pt_PT.properties | 3 +++ .../project/config-customWorkspace_pt_PT.properties | 3 +++ .../project/upstream-downstream_pt_PT.properties | 4 ++++ .../lib/hudson/propertyTable_pt_PT.properties | 4 ++++ .../resources/lib/hudson/queue_pt_PT.properties | 5 ++++- .../resources/lib/hudson/rssBar_pt_PT.properties | 4 ++-- .../lib/hudson/scriptConsole_pt_PT.properties | 4 ++++ .../lib/hudson/thirdPartyLicenses_pt_PT.properties | 5 +++++ .../lib/layout/breadcrumbBar_pt_PT.properties | 5 +++++ .../resources/lib/layout/layout_pt_PT.properties | 7 ++++--- .../lib/layout/main-panel_pt_PT.properties | 3 +++ .../layout/progressiveRendering_pt_PT.properties | 3 +++ 111 files changed, 466 insertions(+), 34 deletions(-) create mode 100644 core/src/main/resources/hudson/AboutJenkins/index_pt_PT.properties create mode 100644 core/src/main/resources/hudson/PluginManager/advanced_pt_PT.properties create mode 100644 core/src/main/resources/hudson/PluginManager/checkUpdates_pt_PT.properties create mode 100644 core/src/main/resources/hudson/PluginManager/index_pt_PT.properties create mode 100644 core/src/main/resources/hudson/PluginManager/installed_pt_PT.properties create mode 100644 core/src/main/resources/hudson/PluginManager/tabBar_pt_PT.properties create mode 100644 core/src/main/resources/hudson/PluginManager/table_pt_PT.properties create mode 100644 core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pt_PT.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/index_pt_PT.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pt_PT.properties create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/delete_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/noWorkspace_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/changes_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/makeDisabled_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UserIdCause/description_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/Computer/index_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/Computer/sidepanel_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/index_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/sidepanel_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/JDK/config_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/Job/configure_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/Job/permalinks_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/LoadStatistics/main_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/Run/logKeep_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/User/builds_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/User/index_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/User/sidepanel_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/View/AsynchPeople/index_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/View/builds_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/View/newJob_pt_PT.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_pt_PT.properties create mode 100644 core/src/main/resources/hudson/scm/SCM/project-changes_pt_PT.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_pt_PT.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pt_PT.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_pt_PT.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_pt_PT.properties create mode 100644 core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pt_PT.properties create mode 100644 core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_pt_PT.properties create mode 100644 core/src/main/resources/hudson/tasks/LogRotator/config_pt_PT.properties create mode 100644 core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_pt_PT.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_pt_PT.properties create mode 100644 core/src/main/resources/hudson/tools/InstallSourceProperty/config_pt_PT.properties create mode 100644 core/src/main/resources/hudson/tools/JDKInstaller/config_pt_PT.properties create mode 100644 core/src/main/resources/hudson/tools/ToolInstallation/global_pt_PT.properties create mode 100644 core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_pt_PT.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_pt_PT.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/column_pt_PT.properties create mode 100644 core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_pt_PT.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_pt_PT.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_pt_PT.properties create mode 100644 core/src/main/resources/jenkins/management/PluginsLink/info_pt_PT.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_pt_PT.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/_cli_pt_PT.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/configure_pt_PT.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pt_PT.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/systemInfo_pt_PT.properties create mode 100644 core/src/main/resources/lib/form/advanced_pt_PT.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_pt_PT.properties create mode 100644 core/src/main/resources/lib/form/helpArea_pt_PT.properties create mode 100644 core/src/main/resources/lib/form/repeatableDeleteButton_pt_PT.properties create mode 100644 core/src/main/resources/lib/form/repeatable_pt_PT.properties create mode 100644 core/src/main/resources/lib/form/textarea_pt_PT.properties create mode 100644 core/src/main/resources/lib/hudson/buildListTable_pt_PT.properties create mode 100644 core/src/main/resources/lib/hudson/newFromList/form_pt_PT.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-customWorkspace_pt_PT.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_pt_PT.properties create mode 100644 core/src/main/resources/lib/hudson/propertyTable_pt_PT.properties create mode 100644 core/src/main/resources/lib/hudson/scriptConsole_pt_PT.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_pt_PT.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_pt_PT.properties create mode 100644 core/src/main/resources/lib/layout/main-panel_pt_PT.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_pt_PT.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_pt_PT.properties b/core/src/main/resources/hudson/AboutJenkins/index_pt_PT.properties new file mode 100644 index 0000000000..4dea591a3f --- /dev/null +++ b/core/src/main/resources/hudson/AboutJenkins/index_pt_PT.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +about=Acerca do Jenkins {0} +dependencies=Jenkins depende das seguintes bibliotecas de terceiros. diff --git a/core/src/main/resources/hudson/PluginManager/advanced_pt_PT.properties b/core/src/main/resources/hudson/PluginManager/advanced_pt_PT.properties new file mode 100644 index 0000000000..c59e4ac3d2 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/advanced_pt_PT.properties @@ -0,0 +1,10 @@ +# This file is under the MIT License by authors + +Check\ now=Verificar agora +File=Ficheiro +Submit=Enviar +Update\ Site=Atualizar Site +Upload=Enviar +Upload\ Plugin=Enviar Plugin +lastUpdated=Verifica\u00E7\u00E3o de atualiza\u00E7\u00E3o obtida h\u00E1: {0} +uploadtext=Tu podes enviar um ficheiro .hpi para instalar um plugin que n\u00E3o esteja no reposit\u00F3rio de plugins central diff --git a/core/src/main/resources/hudson/PluginManager/checkUpdates_pt_PT.properties b/core/src/main/resources/hudson/PluginManager/checkUpdates_pt_PT.properties new file mode 100644 index 0000000000..555771d03c --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/checkUpdates_pt_PT.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Checking\ Updates...=Verificando por Atualiza\u00E7\u00F5es... +Done=Finalizado +Go\ back\ to\ update\ center=Voltar ao centro de atualiza\u00E7\u00E3o diff --git a/core/src/main/resources/hudson/PluginManager/index_pt_PT.properties b/core/src/main/resources/hudson/PluginManager/index_pt_PT.properties new file mode 100644 index 0000000000..b8445cada8 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/index_pt_PT.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +All=Todos +None=Nenhum +Select=Selecionar +UpdatePageDescription=Esta p\u00E1gina lista as atualiza\u00E7\u00F5es aos plugins que est\u00E3o instalados. diff --git a/core/src/main/resources/hudson/PluginManager/installed_pt_PT.properties b/core/src/main/resources/hudson/PluginManager/installed_pt_PT.properties new file mode 100644 index 0000000000..32259b92ec --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/installed_pt_PT.properties @@ -0,0 +1,13 @@ +# This file is under the MIT License by authors + +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=As altera\u00E7\u00F5es ser\u00E3o aplicadas quando reiniciares o Jenkins +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/tabBar_pt_PT.properties b/core/src/main/resources/hudson/PluginManager/tabBar_pt_PT.properties new file mode 100644 index 0000000000..6d226246e1 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/tabBar_pt_PT.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Advanced=Avan\u00E7ado +Available=Dispon\u00EDveis +Installed=Instalados +Updates=Atualiza\u00E7\u00F5es diff --git a/core/src/main/resources/hudson/PluginManager/table_pt_PT.properties b/core/src/main/resources/hudson/PluginManager/table_pt_PT.properties new file mode 100644 index 0000000000..df0b099ea0 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/table_pt_PT.properties @@ -0,0 +1,12 @@ +# This file is under the MIT License by authors + +Check\ to\ install\ the\ plugin=Marcar para instalar o Plugin +Download\ now\ and\ install\ after\ restart=Fazer download agora e instalar depois de reiniciado +Filter=Filtro +Inactive=Inactivos +Install=Instalar +Install\ without\ restart=Instalar sem reinciar +Installed=Instalado +Name=Nome +No\ updates=Sem atualiza\u00E7\u00F5es +Version=Vers\u00E3o diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pt_PT.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pt_PT.properties new file mode 100644 index 0000000000..3f0997d6e4 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pt_PT.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Manage\ Old\ Data=Gerir dados antigos +Name=Nome +No\ old\ data\ was\ found.=N\u00E3o foram encontrados dados passados. +Type=Tipo +Version=Vers\u00E3o diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_PT.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_PT.properties index aba825ec70..0a577af9d8 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_PT.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_PT.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Dismiss=Dispensar More\ Info=Mais Informa\u00E7\u00E3o -blurb=A configura\u00E7\u00E3o do seu reserve proxy aparenta estar quebrado +blurb=Aparentemente a configura\u00E7\u00E3o do seu proxy de reserva est\u00E1 inv\u00E1lida. diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_pt_PT.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_pt_PT.properties new file mode 100644 index 0000000000..fa3bf805b3 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_pt_PT.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Add\ new\ log\ recorder=Adicionar novo gravador de Log +All\ Jenkins\ Logs=Todos os Logs do Jenkins +Log\ Recorders=Gravadores de Log +Name=Nome diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pt_PT.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pt_PT.properties new file mode 100644 index 0000000000..b8a9aa3d99 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_pt_PT.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +All\ Logs=Todos os Logs +Back\ to\ Dashboard=Voltar ao Painel +Log\ Levels=N\u00EDveis de Log +Logger\ List=Lista de Loggers +Manage\ Jenkins=Gerir o Jenkins +New\ Log\ Recorder=Novo Gravador de Log diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_pt_PT.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_pt_PT.properties new file mode 100644 index 0000000000..bd32412409 --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_pt_PT.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +blurb=Tratar o texto como HTML e usar sem qualquer transla\u00E7\u00E3o +disableSyntaxHighlighting=Desactivar destaque de sintaxe. diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_pt_PT.properties index 8ec3aec734..cb85ec5b93 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_pt_PT.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_pt_PT.properties @@ -20,4 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -startedAgo=Iniciado {0} h\u00E1 +Build=Contru\u00E7\u00E3o +Build\ Artifacts=Contru\u00E7\u00E3o de artefactos +Took=Demorou +beingExecuted=Compila\u00E7\u00E3o a ser executada h\u00E1 {0} +on=em +startedAgo=Iniciado {0} atr\u00E1s diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_PT.properties index d08749e1fc..dadf9b07bc 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_PT.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_PT.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=Pr\u00F3xima Build -Previous\ Build=Compila\u00E7\u00E3o anterior +Next\ Build=Pr\u00F3xima constru\u00E7\u00E3o +Previous\ Build=Prever/ver contru\u00E7\u00E3o diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_PT.properties index 2f5c6feb90..0a680cf488 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_PT.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_PT.properties @@ -20,10 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=Voltar ao Projecto -Changes=Altera\u00E7\u00F5es -Console\ Output=Output da Consola +Back\ to\ Project=Retroceder ao Projeto +Changes=Mudan\u00E7as +Console\ Output=Consola View\ as\ plain\ text=Ver como texto Edit\ Build\ Information=Editar informa\u00E7\u00F5es da compila\u00E7\u00E3o Status=Estado -View\ Build\ Information=Ver Informa\u00E7\u00E3o da Build +View\ Build\ Information=Visualizar informa\u00E7\u00F5es de compila\u00E7\u00E3o +raw=texto diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_pt_PT.properties new file mode 100644 index 0000000000..f109dd91b0 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_pt_PT.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Yes=Sim +blurb=Tens a certeza que queres apagar o {0} "{1}"? diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_pt_PT.properties new file mode 100644 index 0000000000..a2abb2fce8 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_pt_PT.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Error:\ no\ workspace=Erro: nenhum espa\u00E7od e trabalho +text=Executa um build para que o Jenkins crie um espa\u00E7o de trabalho. diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_pt_PT.properties new file mode 100644 index 0000000000..85e5a78e42 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=Altera\u00E7\u00F5es diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractProject/main_pt_PT.properties new file mode 100644 index 0000000000..82cbaf56b3 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_pt_PT.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Last\ Successful\ Artifacts=\u00DAltimos artefatos bem sucedidos +Recent\ Changes=Altera\u00E7\u00F5es Recentes +Workspace=Espa\u00E7o de Trabalho diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_pt_PT.properties new file mode 100644 index 0000000000..d1bf6a24f9 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Disable\ Project=Desativar Projeto diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pt_PT.properties index 0469203bb9..59425a653f 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pt_PT.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pt_PT.properties @@ -20,4 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Back\ to\ Dashboard=Voltar para o Dashboard +Build\ scheduled=Build Agendado +Changes=Altera\u00E7\u00F5es Configure=Configurar +Status=Estado +Wipe\ Out\ Workspace=Limpe para fora o espa\u00E7o de trabalho atual +delete=Eliminar {0} +delete.confirm=Voc\u00EA tem certeza sobre a exclus\u00E3o do {0} {1} ''? +wipe.out.confirm=Tem certeza acabando com o espa\u00E7o de trabalho? diff --git a/core/src/main/resources/hudson/model/AllView/noJob_pt_PT.properties b/core/src/main/resources/hudson/model/AllView/noJob_pt_PT.properties index fe371f8f8f..a01cc1d5ae 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_pt_PT.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_pt_PT.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Welcome\ to\ Jenkins!=Bem vindo ao Jenkins! -newJob=Para iniciar crie um novo Job. +newJob=Para iniciar crie um novo Projecto. diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pt_PT.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pt_PT.properties new file mode 100644 index 0000000000..d9b941ee45 --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pt_PT.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +started_by_anonymous=Iniciada por anonymous user +started_by_user=Iniciado pelo utilizador {1} diff --git a/core/src/main/resources/hudson/model/Computer/index_pt_PT.properties b/core/src/main/resources/hudson/model/Computer/index_pt_PT.properties new file mode 100644 index 0000000000..beb0f4578b --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/index_pt_PT.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +None=Nenhum +title.projects_tied_on=Projetos vinculados a {0} diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_pt_PT.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_pt_PT.properties new file mode 100644 index 0000000000..677b381cb6 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_pt_PT.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Back\ to\ List=Voltar para a Lista +Build\ History=Hist\u00F3rico de Compila\u00E7\u00F5es +Configure=Configurar +Delete\ Slave=Apagar Escravo +Load\ Statistics=Carregar Estat\u00EDsticas +Status=Estado diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_pt_PT.properties b/core/src/main/resources/hudson/model/ComputerSet/index_pt_PT.properties new file mode 100644 index 0000000000..e3ee891f7f --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/index_pt_PT.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Configure=Configurar +Name=Nome +Refresh\ status=Actualizar diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pt_PT.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pt_PT.properties new file mode 100644 index 0000000000..e694331a4a --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pt_PT.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=Voltar ao Quadro Geral +Configure=Configurar +Manage\ Jenkins=Gerir o Jenkins +New\ Node=Novo N\u00F3 diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pt_PT.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pt_PT.properties new file mode 100644 index 0000000000..ff125def6c --- /dev/null +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pt_PT.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +No\ files\ in\ directory=Sem ficheiros no diret\u00F3rio +all\ files\ in\ zip=Todos os ficheiros em formato zip +view=vista diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_pt_PT.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_pt_PT.properties new file mode 100644 index 0000000000..769ad93de7 --- /dev/null +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +body=Isto \u00E9 uma caracter\u00EDstica central do Jenkins. Jenkins vai construir o seu projecto, combinando qualquer SCM com qualquer sistema de compila\u00E7\u00E3o e isto pode ser usado mesmo em qualquer outra compila\u00E7\u00E3o de software. diff --git a/core/src/main/resources/hudson/model/JDK/config_pt_PT.properties b/core/src/main/resources/hudson/model/JDK/config_pt_PT.properties new file mode 100644 index 0000000000..2d6997306d --- /dev/null +++ b/core/src/main/resources/hudson/model/JDK/config_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=Nome diff --git a/core/src/main/resources/hudson/model/Job/configure_pt_PT.properties b/core/src/main/resources/hudson/model/Job/configure_pt_PT.properties new file mode 100644 index 0000000000..7de593bdf3 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/configure_pt_PT.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Description=Descri\u00E7\u00E3o +Discard\ Old\ Builds=Descartar compila\u00E7\u00F5es antigas +LOADING=A CARREGAR +name={0} nome diff --git a/core/src/main/resources/hudson/model/Job/permalinks_pt_PT.properties b/core/src/main/resources/hudson/model/Job/permalinks_pt_PT.properties new file mode 100644 index 0000000000..61a69a2a4b --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/permalinks_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Permalinks=Links permanentes diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_pt_PT.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_pt_PT.properties new file mode 100644 index 0000000000..64047cd545 --- /dev/null +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_pt_PT.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Load\ statistics\ graph=Gr\u00E1fico de estat\u00EDsticas de carga +Long=Longo +Medium=M\u00E9dio +Short=Curto +Timespan=Espa\u00E7amento no tempo +title=Estat\u00EDsticas de carga: {0} diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_pt_PT.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_pt_PT.properties new file mode 100644 index 0000000000..1e11a9e5e4 --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +format={0} ({1}), {2} atr\u00E1s diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_pt_PT.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_pt_PT.properties new file mode 100644 index 0000000000..83f2543cac --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Keep\ this\ build\ forever=Manter esta vers\u00E3o para sempre diff --git a/core/src/main/resources/hudson/model/Run/configure_pt_PT.properties b/core/src/main/resources/hudson/model/Run/configure_pt_PT.properties new file mode 100644 index 0000000000..4152cc31e2 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_pt_PT.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Description=Descri\u00E7\u00E3o +DisplayName=Nome para Apresenta\u00E7\u00E3o +LOADING=A CARREGAR diff --git a/core/src/main/resources/hudson/model/Run/console_pt_PT.properties b/core/src/main/resources/hudson/model/Run/console_pt_PT.properties index a564ec544e..320621229c 100644 --- a/core/src/main/resources/hudson/model/Run/console_pt_PT.properties +++ b/core/src/main/resources/hudson/model/Run/console_pt_PT.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Output da Consola +Console\ Output=Consola +skipSome=A saltar {0,number,integer} KB... Registo completo diff --git a/core/src/main/resources/hudson/model/Run/delete_pt_PT.properties b/core/src/main/resources/hudson/model/Run/delete_pt_PT.properties new file mode 100644 index 0000000000..e85ce08983 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete\ this\ build=Apagar Build diff --git a/core/src/main/resources/hudson/model/Run/logKeep_pt_PT.properties b/core/src/main/resources/hudson/model/Run/logKeep_pt_PT.properties new file mode 100644 index 0000000000..bb2e75f3bb --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/logKeep_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Keep\ this\ build\ forever=Mantenha esta f\u00E1brica para sempre diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pt_PT.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pt_PT.properties new file mode 100644 index 0000000000..7a5069a5f8 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Preparation=Preparando diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pt_PT.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pt_PT.properties new file mode 100644 index 0000000000..ad3dcdcaef --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_pt_PT.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +NewVersionAvailable=Uma nova vers\u00E3o do Jenkins ({0}) est\u00E1 dispon\u00EDvel para download (registo de altera\u00E7\u00F5es). +Or\ Upgrade\ Automatically=Ou atualizar automaticamente diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_pt_PT.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_pt_PT.properties new file mode 100644 index 0000000000..b169c05a06 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Installing=Instalando diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_pt_PT.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_pt_PT.properties new file mode 100644 index 0000000000..4c5fb7cfdc --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Pending=Pendente diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_pt_PT.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_pt_PT.properties new file mode 100644 index 0000000000..5f11cb53b4 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Restarting\ Jenkins=Reiniciando o Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_pt_PT.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_pt_PT.properties index d1558df100..0f948b981d 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_pt_PT.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_pt_PT.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Go\ back\ to\ the\ top\ page=Voltar na P\u00E1gina Inicial warning=Reiniciar o Jenkins assim que a instala\u00E7\u00E3o acabar e n\u00E3o houver execu\u00E7\u00F5es em curso +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=voc\u00EA pode come\u00E7ar a utilizar os plugins instalados imediatamente diff --git a/core/src/main/resources/hudson/model/User/builds_pt_PT.properties b/core/src/main/resources/hudson/model/User/builds_pt_PT.properties new file mode 100644 index 0000000000..f8242bbd7b --- /dev/null +++ b/core/src/main/resources/hudson/model/User/builds_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title=Compila\u00E7\u00F5es de {0} diff --git a/core/src/main/resources/hudson/model/User/index_pt_PT.properties b/core/src/main/resources/hudson/model/User/index_pt_PT.properties new file mode 100644 index 0000000000..672eb4a782 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ User\ Id=Id Utilizador Jenkins diff --git a/core/src/main/resources/hudson/model/User/sidepanel_pt_PT.properties b/core/src/main/resources/hudson/model/User/sidepanel_pt_PT.properties new file mode 100644 index 0000000000..e15d0d8e9f --- /dev/null +++ b/core/src/main/resources/hudson/model/User/sidepanel_pt_PT.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Builds=Compila\u00E7\u00F5es +Configure=Configurar +My\ Views=As Minhas Vistas +People=Pessoas +Status=Estado diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_pt_PT.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_pt_PT.properties new file mode 100644 index 0000000000..bae373c40b --- /dev/null +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_pt_PT.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Last\ Active=Ultima Actividade +Name=Nome +On=Ligado +People=Pessoas +User\ Id=Id do Utilizado diff --git a/core/src/main/resources/hudson/model/View/People/index_pt_PT.properties b/core/src/main/resources/hudson/model/View/People/index_pt_PT.properties new file mode 100644 index 0000000000..dfa0ed9d04 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_pt_PT.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Last\ Active=Ultimo activo em +Name=Nome +On=Em +People=Pessoal +User\ Id=ID DE Utilizador diff --git a/core/src/main/resources/hudson/model/View/builds_pt_PT.properties b/core/src/main/resources/hudson/model/View/builds_pt_PT.properties new file mode 100644 index 0000000000..250436dc2c --- /dev/null +++ b/core/src/main/resources/hudson/model/View/builds_pt_PT.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Export\ as\ plain\ XML=Exportar em XML Simples +buildHistory=Hist\u00F3rico de Compila\u00E7\u00F5es de {0} diff --git a/core/src/main/resources/hudson/model/View/newJob_pt_PT.properties b/core/src/main/resources/hudson/model/View/newJob_pt_PT.properties new file mode 100644 index 0000000000..53ed4bcf4c --- /dev/null +++ b/core/src/main/resources/hudson/model/View/newJob_pt_PT.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +CopyExisting=Copiar {0} existente +JobName=Nome do {0}: diff --git a/core/src/main/resources/hudson/model/View/sidepanel_pt_PT.properties b/core/src/main/resources/hudson/model/View/sidepanel_pt_PT.properties index bb4654ff8e..c2cfb63f94 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_pt_PT.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_pt_PT.properties @@ -20,8 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=Historial de compila\u00E7\u00F5es -Check\ File\ Fingerprint=Verificar a impress\u00E3o digital de ficheiro +Build\ History=Historial de Compila\u00E7\u00F5es +Check\ File\ Fingerprint=Verificar a Impress\u00E3o Digital de Ficheiro +Delete\ View=Apagar Vista +Edit\ View=Editar Vista NewJob=Novo {0} -People=Pessoal -Project\ Relationship=Relacionamento de Projectos +People=Utilizadores +Project\ Relationship=Rela\u00E7\u00E3o dos Projectos diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_pt_PT.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_pt_PT.properties new file mode 100644 index 0000000000..d6277c7cde --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ changes.=Sem altera\u00E7\u00F5es. diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_pt_PT.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_pt_PT.properties new file mode 100644 index 0000000000..2078e2f444 --- /dev/null +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ builds.=Sem builds. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_pt_PT.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_pt_PT.properties new file mode 100644 index 0000000000..b4dcb49538 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Allow\ users\ to\ sign\ up=Permitir os utilizadores inscreverem-se diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pt_PT.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pt_PT.properties new file mode 100644 index 0000000000..e30a397502 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pt_PT.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Name=Nome +User\ Id=Id Utilizador +Users=Utilizadores +blurb=Estes utilizadores conseguem autenticar-se no Jenkins. Este \u00E9 um sub conjunto desta lista, que tamb\u00E9m cont\u00E9m utilizadores auto-criados que s\u00F3 realizaram alguns commits nalgum projecto e n\u00E3o t\u00EAm acesso directo no Jenkins. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_pt_PT.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_pt_PT.properties new file mode 100644 index 0000000000..545be7f0e8 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +sign\ up=Registar-se diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_pt_PT.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_pt_PT.properties new file mode 100644 index 0000000000..c9bdc92e92 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_pt_PT.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=Voltar ao Painel +Create\ User=Criar Utilizador +Manage\ Jenkins=Gerir o Jenkins diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pt_PT.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pt_PT.properties index 3e5952023f..af2ca823e5 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pt_PT.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pt_PT.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=Entrar +login=Iniciar sess\u00E3o 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 new file mode 100644 index 0000000000..7454a85ecc --- /dev/null +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_pt_PT.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_pt_PT.properties b/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_pt_PT.properties new file mode 100644 index 0000000000..67b10d97a8 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_pt_PT.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Age=Idade +File=Ficheiro +more\ details=mais detalhes diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_pt_PT.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_pt_PT.properties new file mode 100644 index 0000000000..11c1c45234 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_pt_PT.properties @@ -0,0 +1,10 @@ +# This file is under the MIT License by authors + +Days\ to\ keep\ artifacts=Dias para manter os artefactos +Days\ to\ keep\ builds=Dias para manter as compila\u00E7\u00F5es +Max\ #\ of\ builds\ to\ keep=M\u00E1ximo # de compila\u00E7\u00F5es a manter +Max\ #\ of\ builds\ to\ keep\ with\ artifacts=M\u00E1ximo # de compila\u00E7\u00F5es a manter com artefactos +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=se n\u00E3o estiver vazio, os artefactos de compila\u00E7\u00F5es mais antigas que este n\u00FAmero de dias ser\u00E3o apagados, no entanto, logs, hist\u00F3rico, relat\u00F3rios, etc, ser\u00E3o mantidos +if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=se n\u00E3o estiver vazio, as compila\u00E7\u00F5es s\u00F3 s\u00E3o mantidas este n\u00FAmero de dias +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=se n\u00E3o estiver vazio, s\u00F3 este n\u00FAmero de registos de compila\u00E7\u00F5es s\u00E3o mantidas +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ builds\ have\ their\ artifacts\ retained=se n\u00E3o estiver vazio, s\u00F3 este n\u00FAmero de compila\u00E7\u00F5es ver\u00E3o retidos os seus artefactos diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_pt_PT.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_pt_PT.properties new file mode 100644 index 0000000000..dc6d4616a8 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_pt_PT.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Duration=Dura\u00E7\u00E3o +Test\ Name=Nome do teste diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_pt_PT.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_pt_PT.properties new file mode 100644 index 0000000000..3eede2aff8 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +History=Hist\u00F3rico diff --git a/core/src/main/resources/hudson/tools/InstallSourceProperty/config_pt_PT.properties b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_pt_PT.properties new file mode 100644 index 0000000000..c1c8ec41ca --- /dev/null +++ b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_pt_PT.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Add\ Installer=Adicionar Instalador +Delete\ Installer=Apagar Instalador diff --git a/core/src/main/resources/hudson/tools/JDKInstaller/config_pt_PT.properties b/core/src/main/resources/hudson/tools/JDKInstaller/config_pt_PT.properties new file mode 100644 index 0000000000..7488995900 --- /dev/null +++ b/core/src/main/resources/hudson/tools/JDKInstaller/config_pt_PT.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +I\ agree\ to\ the\ Java\ SE\ Development\ Kit\ License\ Agreement=Aceito os termos da Licen\u00E7a de Utiliza\u00E7\u00E3o do Java SE Development Kit +Version=Vers\u00E3o diff --git a/core/src/main/resources/hudson/tools/ToolInstallation/global_pt_PT.properties b/core/src/main/resources/hudson/tools/ToolInstallation/global_pt_PT.properties new file mode 100644 index 0000000000..d2e9ca38df --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolInstallation/global_pt_PT.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +description=Lista de instala\u00E7\u00F5es de {0} neste sistema +label.add=Adicionar {0} +label.delete=Apagar{0} +title={0} instala\u00E7\u00F5es diff --git a/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_pt_PT.properties b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_pt_PT.properties new file mode 100644 index 0000000000..2c24e2cce0 --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_pt_PT.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +List\ of\ tool\ locations=List de localiza\u00E7\u00F5es de ferramentas +Name=Nome 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 index 179cc96279..acaa0d75b5 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_pt_PT.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_pt_PT.properties @@ -20,4 +20,6 @@ # 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 +Schedule\ a\ build\ with\ parameters=Agendar compila\u00E7\u00E3o com par\u00E2metros diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_pt_PT.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_pt_PT.properties new file mode 100644 index 0000000000..d526066a1f --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +New\ View=Nova Vista diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_pt_PT.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_pt_PT.properties index e75594b771..aa84a8c67c 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_pt_PT.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_pt_PT.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=Dura\u00E7\u00E3o da \u00FAltima +Last\ Duration=Dura\u00E7\u00E3o da \u00DAltima diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_pt_PT.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_pt_PT.properties new file mode 100644 index 0000000000..50103e290d --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=N/D diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_pt_PT.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_pt_PT.properties index 516c322cd9..d3038effe5 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_pt_PT.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_pt_PT.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=\u00DAltima Falha +Last\ Failure=\u00DAltima falha diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_pt_PT.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_pt_PT.properties index 5972548e14..ac71bd1d7a 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/column_pt_PT.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_pt_PT.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=N/A +N/A= diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_pt_PT.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_pt_PT.properties index 5f53f1c19c..5f4f12a879 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_pt_PT.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_pt_PT.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=\u00DAltimo sucesso +Last\ Success=\u00DAltimo Sucesso diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pt_PT.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pt_PT.properties index b4317620c6..47f6990e07 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pt_PT.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pt_PT.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=Estado da \u00FAltima compila\u00E7\u00E3o +Status\ of\ the\ last\ build=Estado da \u00FAltima build diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pt_PT.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pt_PT.properties index f5e9c8b4b5..5783dc7b33 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pt_PT.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pt_PT.properties @@ -20,4 +20,4 @@ # 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=Estado tempo a mostrar o estado agregado de compila\u00E7\u00F5es recentes +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Informa\u00E7\u00E3o meteorol\u00F3gica a mostrar o estado agregado de builds recentes 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 new file mode 100644 index 0000000000..86a3ce7595 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_pt_PT.properties @@ -0,0 +1,4 @@ +# 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/HistoryWidget/entry_pt_PT.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_pt_PT.properties new file mode 100644 index 0000000000..a351b74f02 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Console\ Output=Output da consola diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_pt_PT.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_pt_PT.properties new file mode 100644 index 0000000000..506b472727 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_pt_PT.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +More\ ...=Mais ... +for\ all=para todos +for\ failures=apenas os que falharam +trend=tend\u00EAncia diff --git a/core/src/main/resources/jenkins/management/PluginsLink/info_pt_PT.properties b/core/src/main/resources/jenkins/management/PluginsLink/info_pt_PT.properties new file mode 100644 index 0000000000..bb989c80b4 --- /dev/null +++ b/core/src/main/resources/jenkins/management/PluginsLink/info_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +updates\ available=Existem atualiza\u00E7\u00F5es dispon\u00EDveis diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_pt_PT.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_pt_PT.properties new file mode 100644 index 0000000000..18054cc321 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Save=Salvar diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_pt_PT.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_pt_PT.properties new file mode 100644 index 0000000000..591e0ed763 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_pt_PT.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Available\ Commands=Comandos dispon\u00EDveis +Jenkins\ CLI=CLI Jenkins diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_pt_PT.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_pt_PT.properties new file mode 100644 index 0000000000..26590eaf1b --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_pt_PT.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Build\ Record\ Root\ Directory=Raiz do direct\u00F3rio de compila\u00E7\u00F5es +Home\ directory=Direct\u00F3rio Inicial +LOADING=A CARREGAR +System\ Message=Mensagem do Sistema +Workspace\ Root\ Directory=Raiz do espa\u00E7o de trabalho diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pt_PT.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pt_PT.properties new file mode 100644 index 0000000000..de0db57740 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pt_PT.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Check=Verificar +File\ to\ check=Ficheiro a verificar +more\ details=mais detalhes diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_pt_PT.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_pt_PT.properties index 198d128d56..51e306f715 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_pt_PT.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_pt_PT.properties @@ -20,4 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Adicionar, remover, controlar e monitorizar v\u00E1rios nodes que o Jenkins +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Mostrar v\u00E1rias informa\u00E7\u00F5es de ambiente para resolver problemas +Load\ Statistics=Carregar Estat\u00EDsticas Manage\ Jenkins=Gerir o Jenkins +Manage\ Nodes=Gerir "Nodes" +Prepare\ for\ Shutdown=Preparar para Encerramento +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Para de executar novos builds, para que o sistema possa ser desligado em seguran\u00E7a. +System\ Log=Log Sistema diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pt_PT.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pt_PT.properties new file mode 100644 index 0000000000..ae8489dc91 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pt_PT.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Enabled=Activo +Environment\ Variables=Vari\u00E1veis de Ambiente +Name=Nome +System\ Properties=Propriedades de Sistema +Version=Vers\u00E3o diff --git a/core/src/main/resources/lib/form/advanced_pt_PT.properties b/core/src/main/resources/lib/form/advanced_pt_PT.properties new file mode 100644 index 0000000000..076d763bf5 --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Advanced=Avan\u00E7adas diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_pt_PT.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_pt_PT.properties new file mode 100644 index 0000000000..8d7ad50496 --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=configura\u00E7\u00E3o diff --git a/core/src/main/resources/lib/form/helpArea_pt_PT.properties b/core/src/main/resources/lib/form/helpArea_pt_PT.properties new file mode 100644 index 0000000000..1eb0b07dc3 --- /dev/null +++ b/core/src/main/resources/lib/form/helpArea_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Loading...=A carregar... diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_pt_PT.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_pt_PT.properties new file mode 100644 index 0000000000..e005304ffd --- /dev/null +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete=Apagar diff --git a/core/src/main/resources/lib/form/repeatable_pt_PT.properties b/core/src/main/resources/lib/form/repeatable_pt_PT.properties new file mode 100644 index 0000000000..f4d950330e --- /dev/null +++ b/core/src/main/resources/lib/form/repeatable_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Add=Adicionar diff --git a/core/src/main/resources/lib/form/textarea_pt_PT.properties b/core/src/main/resources/lib/form/textarea_pt_PT.properties new file mode 100644 index 0000000000..8c6a41af1b --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_pt_PT.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=Esconder pr\u00E9-visualiza\u00E7\u00E3o +Preview=Pr\u00E9-visualiza\u00E7\u00E3o diff --git a/core/src/main/resources/lib/hudson/buildCaption_pt_PT.properties b/core/src/main/resources/lib/hudson/buildCaption_pt_PT.properties index 1fc4e380b6..25cfb43db5 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_pt_PT.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_pt_PT.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Progress=Progresso -cancel=ancelar +cancel=cancelar diff --git a/core/src/main/resources/lib/hudson/buildListTable_pt_PT.properties b/core/src/main/resources/lib/hudson/buildListTable_pt_PT.properties new file mode 100644 index 0000000000..85464dc4ce --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildListTable_pt_PT.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Build=Compila\u00E7\u00E3o +Click\ to\ center\ timeline\ on\ event=Clicke para centrar a timeline neste evento +Console\ output=Output da consola +Status=Estado +Time\ Since=Tempo desde diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_pt_PT.properties b/core/src/main/resources/lib/hudson/buildProgressBar_pt_PT.properties index bd55c7fac0..e35b51ca12 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_pt_PT.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_pt_PT.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Come\u00E7ado \u00E0 {0}
Tempo estimado para terminar: {1} +text=Come\u00E7ou {0} atr\u00E1s
Tempo que falta (estimativa): {1} diff --git a/core/src/main/resources/lib/hudson/executors_pt_PT.properties b/core/src/main/resources/lib/hudson/executors_pt_PT.properties index 7f01711c32..3a3a104e18 100644 --- a/core/src/main/resources/lib/hudson/executors_pt_PT.properties +++ b/core/src/main/resources/lib/hudson/executors_pt_PT.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Estado de execu\u00E7\u00E3o de compila\u00E7\u00F5es -Building=Compilando +Build\ Executor\ Status=Estado de execu\u00E7\u00E3o de builds +Building=A compilar Idle=Parado Status=Estado -offline=desligado -terminate\ this\ build=Parar esta compila\u00E7\u00E3o +offline=Desligado +terminate\ this\ build=parar esta compila\u00E7\u00E3o diff --git a/core/src/main/resources/lib/hudson/iconSize_pt_PT.properties b/core/src/main/resources/lib/hudson/iconSize_pt_PT.properties index f46712e062..53fa506f2a 100644 --- a/core/src/main/resources/lib/hudson/iconSize_pt_PT.properties +++ b/core/src/main/resources/lib/hudson/iconSize_pt_PT.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=Icon +Icon=\u00CDcone diff --git a/core/src/main/resources/lib/hudson/newFromList/form_pt_PT.properties b/core/src/main/resources/lib/hudson/newFromList/form_pt_PT.properties new file mode 100644 index 0000000000..2c23141d5d --- /dev/null +++ b/core/src/main/resources/lib/hudson/newFromList/form_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Copy\ from=Copiar de diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_pt_PT.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_pt_PT.properties new file mode 100644 index 0000000000..4aa8af4594 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Directory=Diret\u00F3rio diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_pt_PT.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_pt_PT.properties new file mode 100644 index 0000000000..17f71c271c --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_pt_PT.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Downstream\ Projects=Projetos antigos +Upstream\ Projects=Projetos recentes diff --git a/core/src/main/resources/lib/hudson/propertyTable_pt_PT.properties b/core/src/main/resources/lib/hudson/propertyTable_pt_PT.properties new file mode 100644 index 0000000000..22f8c0a529 --- /dev/null +++ b/core/src/main/resources/lib/hudson/propertyTable_pt_PT.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Name=Nome +Value=Valor diff --git a/core/src/main/resources/lib/hudson/queue_pt_PT.properties b/core/src/main/resources/lib/hudson/queue_pt_PT.properties index 3a99897486..cd1b8a545b 100644 --- a/core/src/main/resources/lib/hudson/queue_pt_PT.properties +++ b/core/src/main/resources/lib/hudson/queue_pt_PT.properties @@ -21,4 +21,7 @@ # THE SOFTWARE. Build\ Queue=Fila de Compila\u00E7\u00F5es -No\ builds\ in\ the\ queue.=Sem compila\u00E7\u00F5es em espera. +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=O Jenkins vai encerrar. Nenhum outro build ser\u00E1 levado a cabo. +No\ builds\ in\ the\ queue.=Sem builds em espera. +WaitingFor=\u00C0 espera de {0} +cancel=cancelar diff --git a/core/src/main/resources/lib/hudson/rssBar_pt_PT.properties b/core/src/main/resources/lib/hudson/rssBar_pt_PT.properties index fea972cb1a..62a16aa908 100644 --- a/core/src/main/resources/lib/hudson/rssBar_pt_PT.properties +++ b/core/src/main/resources/lib/hudson/rssBar_pt_PT.properties @@ -22,5 +22,5 @@ Legend=Legenda for\ all=para todos -for\ failures=para falhas -for\ just\ latest\ builds=s\u00F3 para \u00FAltimas compila\u00E7\u00F5es +for\ failures=s\u00F3 para falhas +for\ just\ latest\ builds=s\u00F3 para \u00FAltimas builds diff --git a/core/src/main/resources/lib/hudson/scriptConsole_pt_PT.properties b/core/src/main/resources/lib/hudson/scriptConsole_pt_PT.properties new file mode 100644 index 0000000000..a0617738be --- /dev/null +++ b/core/src/main/resources/lib/hudson/scriptConsole_pt_PT.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Run=Correr +Script\ Console=Consola de Script diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_pt_PT.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_pt_PT.properties new file mode 100644 index 0000000000..101c82b546 --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_pt_PT.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +License=Licenciamento +Maven\ ID=ID Maven +Name=Nome diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_pt_PT.properties b/core/src/main/resources/lib/layout/breadcrumbBar_pt_PT.properties new file mode 100644 index 0000000000..cabe35349b --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_pt_PT.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=Desativar refrescamento autom\u00E1tico + +ENABLE\ AUTO\ REFRESH=ATIVAR AUTO-ATUALIZA\u00C7\u00C3O diff --git a/core/src/main/resources/lib/layout/layout_pt_PT.properties b/core/src/main/resources/lib/layout/layout_pt_PT.properties index e8e2d1fec1..cb56f5e3ca 100644 --- a/core/src/main/resources/lib/layout/layout_pt_PT.properties +++ b/core/src/main/resources/lib/layout/layout_pt_PT.properties @@ -20,8 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +DISABLE\ AUTO\ REFRESH=DESLIGAR ACTUALIZA\u00C7\u00D5ES AUTOM\u00C1TICAS ENABLE\ AUTO\ REFRESH=LIGAR ACTUALIZA\u00C7\u00D5ES AUTOM\u00C1TICAS -Page\ generated=P\u00E1gina gerada +Page\ generated=P\u00E1gina gerada em logout=sair -search=Pesquisa -searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Procurar+Box +search=Pesquisar +searchBox.url= diff --git a/core/src/main/resources/lib/layout/main-panel_pt_PT.properties b/core/src/main/resources/lib/layout/main-panel_pt_PT.properties new file mode 100644 index 0000000000..050cac0505 --- /dev/null +++ b/core/src/main/resources/lib/layout/main-panel_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ is\ going\ to\ shut\ down=O Jenkins vai encerrar diff --git a/core/src/main/resources/lib/layout/progressiveRendering_pt_PT.properties b/core/src/main/resources/lib/layout/progressiveRendering_pt_PT.properties new file mode 100644 index 0000000000..e433815ecc --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_pt_PT.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=Computa\u00E7\u00E3o em curso. -- GitLab From a4ef863b0354f32b64bc776106500f43c16982dd Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:02 -0700 Subject: [PATCH 072/308] Community-contributed localization for Romanian; Moldavian; Moldovan (ro) --- .../hudson/PluginManager/installed_ro.properties | 13 +++++++++++++ .../hudson/PluginManager/tabBar_ro.properties | 2 +- .../hudson/PluginManager/table_ro.properties | 1 + .../message_ro.properties | 4 +++- .../MatrixProject/ajaxMatrix_ro.properties | 3 +++ .../matrix/MatrixProject/index_ro.properties | 4 ++++ .../model/AbstractBuild/index_ro.properties | 7 +++++++ .../model/AbstractBuild/sidepanel_ro.properties | 3 ++- .../model/AbstractBuild/tasks_ro.properties | 11 ++++++----- .../AbstractItem/configure-common_ro.properties | 4 ++++ .../AbstractProject/sidepanel_ro.properties | 16 +++++++++------- .../hudson/model/AllView/noJob_ro.properties | 4 ++++ .../Cause/UserIdCause/description_ro.properties | 3 +++ .../FreeStyleProject/newJobDetail_ro.properties | 3 +++ .../hudson/model/Job/configure_ro.properties | 7 +++++++ .../hudson/model/Job/index_ro.properties | 3 +++ .../config_ro.properties | 4 ++++ .../hudson/model/Run/console_ro.properties | 2 +- .../hudson/model/Run/delete_ro.properties | 3 +++ .../hudson/model/Run/logKeep_ro.properties | 3 +++ .../RestartJenkinsJob/row_ro.properties | 3 +++ .../hudson/model/UpdateCenter/body_ro.properties | 3 +++ .../model/UpdateCenter/index_ro.properties | 3 +++ .../model/UpdateCenter/sidepanel_ro.properties | 3 +++ .../hudson/model/View/People/index_ro.properties | 3 +++ .../hudson/model/View/newJob_ro.properties | 4 ++++ .../hudson/model/View/sidepanel_ro.properties | 14 ++++++++++++-- .../scm/EmptyChangeLogSet/digest_ro.properties | 3 +++ .../SecurityRealm/loginLink_ro.properties | 2 +- .../test/MetaTabulatedResult/body_ro.properties | 11 +++++++++++ .../test/TestObject/sidepanel_ro.properties | 4 ++++ .../tasks/test/TestResult/index_ro.properties | 3 +++ .../views/BuildButtonColumn/column_ro.properties | 3 ++- .../DefaultViewsTabBar/viewTabs_ro.properties | 2 +- .../columnHeader_ro.properties | 2 +- .../LastFailureColumn/columnHeader_ro.properties | 2 +- .../views/LastFailureColumn/column_ro.properties | 3 +++ .../LastSuccessColumn/columnHeader_ro.properties | 2 +- .../StatusColumn/columnHeader_ro.properties | 2 +- .../WeatherColumn/columnHeader_ro.properties | 3 +++ .../widgets/HistoryWidget/entry_ro.properties | 2 +- .../widgets/HistoryWidget/index_ro.properties | 7 ++++--- .../jenkins/model/Jenkins/manage_ro.properties | 15 +++++++++++++++ .../resources/lib/form/advanced_ro.properties | 3 +++ .../form/breadcrumb-config-outline_ro.properties | 3 +++ .../resources/lib/form/helpArea_ro.properties | 3 +++ .../form/repeatableDeleteButton_ro.properties | 3 +++ .../resources/lib/form/textarea_ro.properties | 4 ++++ .../lib/hudson/buildProgressBar_ro.properties | 2 +- .../lib/hudson/editableDescription_ro.properties | 3 ++- .../resources/lib/hudson/executors_ro.properties | 14 +++++++++++--- .../resources/lib/hudson/iconSize_ro.properties | 2 +- .../project/config-assignedLabel_ro.properties | 4 ++++ .../project/config-concurrentBuild_ro.properties | 3 +++ .../project/config-customWorkspace_ro.properties | 4 ++++ .../project/config-disableBuild_ro.properties | 4 ++++ .../project/config-quietPeriod_ro.properties | 4 ++++ .../project/config-retryCount_ro.properties | 3 +++ .../lib/hudson/project/config-scm_ro.properties | 3 +++ .../lib/hudson/project/matrix_ro.properties | 3 +++ .../resources/lib/hudson/queue_ro.properties | 7 +++++-- .../lib/hudson/test-result_ro.properties | 1 + .../lib/layout/breadcrumbBar_ro.properties | 4 ++++ .../resources/lib/layout/layout_ro.properties | 6 +++--- .../lib/layout/main-panel_ro.properties | 3 +++ .../layout/progressiveRendering_ro.properties | 3 +++ .../main/resources/lib/test/bar_ro.properties | 4 ++++ 67 files changed, 252 insertions(+), 40 deletions(-) create mode 100644 core/src/main/resources/hudson/PluginManager/installed_ro.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_ro.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/index_ro.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_ro.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/configure-common_ro.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_ro.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UserIdCause/description_ro.properties create mode 100644 core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_ro.properties create mode 100644 core/src/main/resources/hudson/model/Job/configure_ro.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_ro.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_ro.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_ro.properties create mode 100644 core/src/main/resources/hudson/model/Run/logKeep_ro.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ro.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_ro.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/index_ro.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ro.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_ro.properties create mode 100644 core/src/main/resources/hudson/model/View/newJob_ro.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ro.properties create mode 100644 core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_ro.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_ro.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResult/index_ro.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_ro.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ro.properties create mode 100644 core/src/main/resources/lib/form/advanced_ro.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_ro.properties create mode 100644 core/src/main/resources/lib/form/helpArea_ro.properties create mode 100644 core/src/main/resources/lib/form/repeatableDeleteButton_ro.properties create mode 100644 core/src/main/resources/lib/form/textarea_ro.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-assignedLabel_ro.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-concurrentBuild_ro.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-customWorkspace_ro.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-disableBuild_ro.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-quietPeriod_ro.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-retryCount_ro.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-scm_ro.properties create mode 100644 core/src/main/resources/lib/hudson/project/matrix_ro.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_ro.properties create mode 100644 core/src/main/resources/lib/layout/main-panel_ro.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_ro.properties create mode 100644 core/src/main/resources/lib/test/bar_ro.properties diff --git a/core/src/main/resources/hudson/PluginManager/installed_ro.properties b/core/src/main/resources/hudson/PluginManager/installed_ro.properties new file mode 100644 index 0000000000..9d960272ae --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/installed_ro.properties @@ -0,0 +1,13 @@ +# This file is under the MIT License by authors + +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Schimb\u0103rile vor avea efect c\u00E2nd ve\u021Bi reporni Jenkins +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/tabBar_ro.properties b/core/src/main/resources/hudson/PluginManager/tabBar_ro.properties index eab4c2bf21..49fb33b3d6 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_ro.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_ro.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Advanced=Avansat -Available=Disponibil +Available=Disponibile Installed=Instalat Updates=Actualiz\u0103ri diff --git a/core/src/main/resources/hudson/PluginManager/table_ro.properties b/core/src/main/resources/hudson/PluginManager/table_ro.properties index abd259a5cb..b9ac7a4fe2 100644 --- a/core/src/main/resources/hudson/PluginManager/table_ro.properties +++ b/core/src/main/resources/hudson/PluginManager/table_ro.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Filter=Filtru Install=Instalare Installed=Instalat Name=Nume diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ro.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ro.properties index 2401c9d676..5a2c60a82f 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ro.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ro.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -More\ Info=Mai multe informa\u0163ii +Dismiss=Revocare +More\ Info=Mai multe informa\u021Bii +blurb=Se pare c\u0103 configurarea la proxy reversibil e stricat\u0103 diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_ro.properties b/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_ro.properties new file mode 100644 index 0000000000..bcdb4dc200 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Not\ configured=Neconfigurat diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_ro.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_ro.properties new file mode 100644 index 0000000000..f6b94da0e3 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_ro.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Disable\ Project=Dezactiveaza Proiect +Project=Proiect diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_ro.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_ro.properties new file mode 100644 index 0000000000..8876182a79 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_ro.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Build\ Artifacts=Artefacte Build +Took=A durat +detail=detaliu +on=pe +startedAgo=Pornit acum {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ro.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ro.properties index fc4d85acb9..beb2da91e9 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ro.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ro.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Previous\ Build=Build-ul anterior +Next\ Build=Urmatorul Build +Previous\ Build=Buildul anterior diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ro.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ro.properties index dcb5864b37..bfa5cd1996 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ro.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ro.properties @@ -20,10 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=Inapoi la proiect -Changes=Schimbari -Console\ Output=Afisaj consola -View\ as\ plain\ text=Vizualizati ca text -Edit\ Build\ Information=Modifica informatiile build-ului +Back\ to\ Project=\u00CEnapoi la proiect +Changes=Schimb\u0103ri +Console\ Output=Afi\u0219aj consola +View\ as\ plain\ text=Vezi ca text +Edit\ Build\ Information=Modific\u0103 informa\u021Biile build-ului Status=Stare View\ Build\ Information=Vezi informa\u0163iile despre build +raw=Neformatat diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_ro.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_ro.properties new file mode 100644 index 0000000000..0fd04c5793 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_ro.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Advanced\ Project\ Options=Optiuni Avansate ale Proiectului +Display\ Name=Nume Afisat diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ro.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ro.properties index c67dbfb081..f2bfdcc1cb 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ro.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ro.properties @@ -20,11 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Inapoi la pagina principala -Build\ scheduled=Rularea proiectului a fost programata -Changes=Schimbari -Configure=Configureaza +Back\ to\ Dashboard=Inapoi la Dashboard +Build\ scheduled=Build programat +Changes=Schimb\u0103ri +Configure=Configureaz\u0103 Status=Stare -Wipe\ Out\ Workspace=Sterge spatiul de lucru -Workspace=Spatiu de lucru -delete=Sterge {0} +Wipe\ Out\ Workspace=Cur\u0103\u021B\u0103 spa\u021Biul de lucru +Workspace=Spa\u021Biul de lucru +delete=\u0218terge {0} +delete.confirm=E\u0219ti sigur c\u0103 vrei s\u0103 \u0219tergi {0} \u2018{1}\u2019? +wipe.out.confirm=E\u0219ti sigur c\u0103 vrei s\u0103 cure\u021Bi spa\u021Biul de lucru? diff --git a/core/src/main/resources/hudson/model/AllView/noJob_ro.properties b/core/src/main/resources/hudson/model/AllView/noJob_ro.properties new file mode 100644 index 0000000000..66751ba952 --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_ro.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Welcome\ to\ Jenkins!=Bine ai venit la Jenkins! +newJob=Va rugam creati un job nou pentru a incepe. diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ro.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ro.properties new file mode 100644 index 0000000000..ef4b724e42 --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +started_by_anonymous=Pornit de utilizator anonim diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_ro.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_ro.properties new file mode 100644 index 0000000000..b9a2e8fb70 --- /dev/null +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +body=Aceasta este func\u021Bionalitatea principal\u0103 a lui Jenkins. Jenkins va construi proiectul dvs, combin\u00E2nd orice SCM cu orice sistem de build-uri, \u0219i aceasta poate fi folosit\u0103 chiar \u0219i la altceva dec\u00E2t build-uri de aplica\u021Bii. diff --git a/core/src/main/resources/hudson/model/Job/configure_ro.properties b/core/src/main/resources/hudson/model/Job/configure_ro.properties new file mode 100644 index 0000000000..2260b1a4b1 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/configure_ro.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Description=Descriere +Discard\ Old\ Builds=Anuleaza Build-urile vechi +LOADING=SE INCARCA +Strategy=Strategie +name=numele {0} diff --git a/core/src/main/resources/hudson/model/Job/index_ro.properties b/core/src/main/resources/hudson/model/Job/index_ro.properties new file mode 100644 index 0000000000..a8cc9164f4 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Project\ name=Nume proiect diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_ro.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_ro.properties new file mode 100644 index 0000000000..1f84c50491 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_ro.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Add\ Parameter=Adauga Parametru +This\ build\ is\ parameterized=Acest build este parametrizat diff --git a/core/src/main/resources/hudson/model/Run/console_ro.properties b/core/src/main/resources/hudson/model/Run/console_ro.properties index 3d6408a454..685cc428e2 100644 --- a/core/src/main/resources/hudson/model/Run/console_ro.properties +++ b/core/src/main/resources/hudson/model/Run/console_ro.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Afisaj consola +Console\ Output=Afi\u0219aj consola diff --git a/core/src/main/resources/hudson/model/Run/delete_ro.properties b/core/src/main/resources/hudson/model/Run/delete_ro.properties new file mode 100644 index 0000000000..4d745f778f --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete\ this\ build=Sterge Build diff --git a/core/src/main/resources/hudson/model/Run/logKeep_ro.properties b/core/src/main/resources/hudson/model/Run/logKeep_ro.properties new file mode 100644 index 0000000000..11a7943545 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/logKeep_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Keep\ this\ build\ forever=Pastreaza acest Build permanent diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ro.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ro.properties new file mode 100644 index 0000000000..2aca271312 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Restarting\ Jenkins=Repornire Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_ro.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_ro.properties new file mode 100644 index 0000000000..791dd672a1 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +warning=Reporneste Jenkins atunci cand instalarea s-a terminat si nu mai ruleaza "job"-uri diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_ro.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_ro.properties new file mode 100644 index 0000000000..a3b240c885 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Installing\ Plugins/Upgrades=Instalare "plugin"-uri/Upgrade diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ro.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ro.properties new file mode 100644 index 0000000000..e6b516501f --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Manage\ Plugins=Administrare "plugin"-uri diff --git a/core/src/main/resources/hudson/model/View/People/index_ro.properties b/core/src/main/resources/hudson/model/View/People/index_ro.properties new file mode 100644 index 0000000000..2ac76d689c --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +All\ People=Toti Oameni diff --git a/core/src/main/resources/hudson/model/View/newJob_ro.properties b/core/src/main/resources/hudson/model/View/newJob_ro.properties new file mode 100644 index 0000000000..eee3c006d8 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/newJob_ro.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +CopyExisting=Copie {0} existent +JobName=Denumire {0} diff --git a/core/src/main/resources/hudson/model/View/sidepanel_ro.properties b/core/src/main/resources/hudson/model/View/sidepanel_ro.properties index 547eaf8b3a..8aad505ecc 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_ro.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_ro.properties @@ -20,6 +20,16 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=Istorie build-uri -NewJob={0} Noi +Build\ History=Istoric build-uri +Check\ File\ Fingerprint=verifica amprenta fisierului +Delete\ View=Sterge Fereastra +(view is not necessarily fereastra but i think this is what i understand ) +(view is not necessarily fereastra but i think this is what i understand ) +(view is not necessarily fereastra but i think this is what i understand ) +Edit\ View=Editare Fereastra +(view is not necessarily fereastra but i think this is what i understand ) +(view is not necessarily fereastra but i think this is what i understand ) +(view is not necessarily fereastra but i think this is what i understand ) +NewJob={0} nou People=Persoane +Project\ Relationship=Relatiile proiectului diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ro.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ro.properties new file mode 100644 index 0000000000..492a823148 --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ changes.=F\u0103r\u0103 schimb\u0103ri. diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ro.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ro.properties index 66b8baedbc..88805b8c31 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ro.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ro.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=Logare +login=Login diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_ro.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_ro.properties new file mode 100644 index 0000000000..537397a73e --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_ro.properties @@ -0,0 +1,11 @@ +# This file is under the MIT License by authors + +Age=Varsta +All\ Failed\ Tests=Toate testele gresite +All\ Tests=Toate testele +Duration=Durata +Fail=Gresit +Loading...=Se incarca... +Skip=Sari peste +Test\ Name=Nume test +diff=Differente diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_ro.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_ro.properties new file mode 100644 index 0000000000..5aed2b2578 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_ro.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +History=Istoric +Previous\ Build=Build anterior diff --git a/core/src/main/resources/hudson/tasks/test/TestResult/index_ro.properties b/core/src/main/resources/hudson/tasks/test/TestResult/index_ro.properties new file mode 100644 index 0000000000..efed04b343 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResult/index_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +took=Durata {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 index 9e3a8db775..3b354623e6 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ro.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_ro.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Schedule\ a\ build=Programeaz\u0103 un buil +Build\ scheduled=Build programat +Schedule\ a\ build=Programeaz\u0103 un build diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ro.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ro.properties index 743e078552..3812bf7590 100644 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ro.properties +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ro.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -New\ View=Vedere nou\u0103 +New\ View=Perspectiv\u0103 nou\u0103 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ro.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ro.properties index 30d316b26c..366e1ce34c 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ro.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ro.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=Ultima durat\u0103 +Last\ Duration=Durata ultimului build diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ro.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ro.properties index 035597851d..c2642ee2a7 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ro.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ro.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=Ultima ratare +Last\ Failure=Ultimul Esec diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_ro.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_ro.properties new file mode 100644 index 0000000000..5d0cd49382 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=Nu este aplicabil diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ro.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ro.properties index 9b41ef3fc9..a14220f87a 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ro.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ro.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=Ultimul succes +Last\ Success=Ultimul Build efectuat cu succes diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ro.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ro.properties index 06816844a0..4ce580cc85 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ro.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ro.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=Statusul ultimului build +Status\ of\ the\ last\ build=Situa\u0163ia ultimului build diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ro.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ro.properties new file mode 100644 index 0000000000..8217b67a30 --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Raport care va arata starea agregata a ultimelor build-uri diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ro.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ro.properties index 775253764a..dfe9c90d65 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ro.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ro.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Rezultate afisate in consola +Console\ Output=Consola diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_ro.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_ro.properties index 6ecc4882ed..9ccf9b8957 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_ro.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_ro.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -for\ all=pentru toate rezultatele -for\ failures=esecuri -trend=evolutie +More\ ...=Mai mult +for\ all=pentru toate +for\ failures=pentru e\u0219ecuri +trend=tendin\u021Ba diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_ro.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_ro.properties index 56903b612c..014701bcb4 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_ro.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_ro.properties @@ -20,4 +20,19 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Adauga\u021Bi, \u0219terge\u021Bi, activa\u021Bi sau dezactiva\u021Bi plugin-uri ce pot extinde func\u021Bionalitate lui Jenkins. +Configure\ System=Configureaz\u0103 Sistemul +Configure\ global\ settings\ and\ paths.=Configureaz\u0103 set\u0103rile globale \u015Fi c\u0103ile. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Arunc\u0103 toate datele \u00EEnc\u0103rcate \u00EEn memorie \u0219i re\u00EEncarc\u0103 totul de pe sistemul de fi\u0219iere. +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Afi\u0219eaz\u0103 o varietate de informa\u021Bie de mediu pentru a asista la rezolvarea problemelor. +JenkinsCliText=Accesa\u021Bi/organiza\u021Bi Jenkins din consola dvs, sau din scriptul dvs. +Load\ Statistics=Statistici de \u00CEnc\u0103rcare +LoadStatisticsText=Verifica\u021Bi utilizarea dvs de resurse \u0219i vede\u021Bi dac\u0103 ave\u021Bi nevoie de mai multe computere pentru build-urile dvs. Manage\ Jenkins=Administrare Jenkins +Manage\ Nodes=Configureaza nodurile +Reload\ Configuration\ from\ Disk=Re\u00EEncarc\u0103 Configura\u021Bia de pe Disc +Script\ Console=Consol\u0103 de Script +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Opreste crearea de pachete noi pentru ca sistemul sa poata fi oprit in siguranta. +System\ Information=Informa\u021Bii de Sistem +System\ Log=Log de Sistem +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Util dac\u0103 a\u021Bi modificat fi\u0219ierele de configurare direct pe disc. diff --git a/core/src/main/resources/lib/form/advanced_ro.properties b/core/src/main/resources/lib/form/advanced_ro.properties new file mode 100644 index 0000000000..2cd0d85dd0 --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Advanced=Avansat diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_ro.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_ro.properties new file mode 100644 index 0000000000..2686e9ed10 --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=configuratie diff --git a/core/src/main/resources/lib/form/helpArea_ro.properties b/core/src/main/resources/lib/form/helpArea_ro.properties new file mode 100644 index 0000000000..bcf63ba756 --- /dev/null +++ b/core/src/main/resources/lib/form/helpArea_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Loading...=Se incarca... diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_ro.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_ro.properties new file mode 100644 index 0000000000..aa77f4c6aa --- /dev/null +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete=Sterge diff --git a/core/src/main/resources/lib/form/textarea_ro.properties b/core/src/main/resources/lib/form/textarea_ro.properties new file mode 100644 index 0000000000..df3ec489f4 --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_ro.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=Ascunde previzualizarea +Preview=Previzualizare diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_ro.properties b/core/src/main/resources/lib/hudson/buildProgressBar_ro.properties index 1a3d60184d..46d44c508c 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_ro.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_ro.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Inceput {0} in urma
Timp ramas estimat: {1} +text=\u00CEnceput {0} in urma
Timp r\u0103mas estimat: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_ro.properties b/core/src/main/resources/lib/hudson/editableDescription_ro.properties index 41a2500f12..0d4f4def1c 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_ro.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_ro.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=adauga descriere +add\ description=adaug\u0103 descriere +edit\ description=schimba descriere diff --git a/core/src/main/resources/lib/hudson/executors_ro.properties b/core/src/main/resources/lib/hudson/executors_ro.properties index 1fb8ce0a17..dc72abc1e0 100644 --- a/core/src/main/resources/lib/hudson/executors_ro.properties +++ b/core/src/main/resources/lib/hudson/executors_ro.properties @@ -20,6 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Starea -Idle=\u00CEn a\u015Fteptare -Status=stare +Build\ Executor\ Status=Starea builder-ului Executant +Idle=\u00CEn a\u0219teptare +(need to specify the context) +(need to specify the context) +(need to specify the context) +Status=Stare +offline=oprit +terminate\ this\ build=opreste build-ul +(i think in Romania build is called build) +(i think in Romania build is called build) +(i think in Romania build is called build) diff --git a/core/src/main/resources/lib/hudson/iconSize_ro.properties b/core/src/main/resources/lib/hudson/iconSize_ro.properties index dc18a1d56f..0be70f925b 100644 --- a/core/src/main/resources/lib/hudson/iconSize_ro.properties +++ b/core/src/main/resources/lib/hudson/iconSize_ro.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=Poz\u0103 +Icon=Icoana diff --git a/core/src/main/resources/lib/hudson/project/config-assignedLabel_ro.properties b/core/src/main/resources/lib/hudson/project/config-assignedLabel_ro.properties new file mode 100644 index 0000000000..76e3ec4443 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-assignedLabel_ro.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Label\ Expression=Exprimarea Etichetei +Restrict\ where\ this\ project\ can\ be\ run=Restrictioneaza unde poate fi rulat acest proiect diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_ro.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_ro.properties new file mode 100644 index 0000000000..c5685aad43 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title.concurrentbuilds=Executa build-uri concurente daca este necesar diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_ro.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_ro.properties new file mode 100644 index 0000000000..b4ca5d9e7c --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_ro.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Directory=Director +Use\ custom\ workspace=Foloseste spatiu de lucru personalizat diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_ro.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_ro.properties new file mode 100644 index 0000000000..580183571c --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_ro.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Disable\ Build=Dezactiveaza Build +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Nici un build nou nu va fi executat pana cand proiectul nu va fi re-activat. diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_ro.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_ro.properties new file mode 100644 index 0000000000..d83b0c5360 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_ro.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Number\ of\ seconds=Numar de secunde +Quiet\ period=Perioada de pauza diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_ro.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_ro.properties new file mode 100644 index 0000000000..73123025be --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Retry\ Count=Contor de reincercari diff --git a/core/src/main/resources/lib/hudson/project/config-scm_ro.properties b/core/src/main/resources/lib/hudson/project/config-scm_ro.properties new file mode 100644 index 0000000000..561ce44ae7 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-scm_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Source\ Code\ Management=Gestiunea Codului Sursa diff --git a/core/src/main/resources/lib/hudson/project/matrix_ro.properties b/core/src/main/resources/lib/hudson/project/matrix_ro.properties new file mode 100644 index 0000000000..ca9f67dae8 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/matrix_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Configuration\ Matrix=Matricea de configurare diff --git a/core/src/main/resources/lib/hudson/queue_ro.properties b/core/src/main/resources/lib/hudson/queue_ro.properties index f210304c50..09209ec89f 100644 --- a/core/src/main/resources/lib/hudson/queue_ro.properties +++ b/core/src/main/resources/lib/hudson/queue_ro.properties @@ -20,5 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Stiv\u0103 build-uri -No\ builds\ in\ the\ queue.=Nu sunt bild-uri in stiv\u0103 +Build\ Queue=Lista de asteptare +No\ builds\ in\ the\ queue.=Nu sunt build-uri in lista de asteptare +WaitingFor=Astept {0} +WaitingSince=Asteapta de +cancel=anuleaz\u0103 diff --git a/core/src/main/resources/lib/hudson/test-result_ro.properties b/core/src/main/resources/lib/hudson/test-result_ro.properties index c20ae2cef4..b5b43f7f79 100644 --- a/core/src/main/resources/lib/hudson/test-result_ro.properties +++ b/core/src/main/resources/lib/hudson/test-result_ro.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +multifailures="{0} esecuri {1}" no\ tests=nici un test diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_ro.properties b/core/src/main/resources/lib/layout/breadcrumbBar_ro.properties new file mode 100644 index 0000000000..7ae30945a0 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_ro.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=DEZACTIVEAZ\u0102 RE\u00CENC\u0102RCAREA AUTOMAT\u0102 +ENABLE\ AUTO\ REFRESH=ACTIVEAZA ACTUALIZAREA AUTOMATA diff --git a/core/src/main/resources/lib/layout/layout_ro.properties b/core/src/main/resources/lib/layout/layout_ro.properties index 3bb773020b..276c6d7a9e 100644 --- a/core/src/main/resources/lib/layout/layout_ro.properties +++ b/core/src/main/resources/lib/layout/layout_ro.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. ENABLE\ AUTO\ REFRESH=Activeaz\u0103 auto refresh -Page\ generated=Pagina generata -logout=iesire -search=cautare +Page\ generated=Pagin\u0103 generat\u0103 +logout=ie\u015Fire +search=c\u0103utare searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/core/src/main/resources/lib/layout/main-panel_ro.properties b/core/src/main/resources/lib/layout/main-panel_ro.properties new file mode 100644 index 0000000000..87969a5edc --- /dev/null +++ b/core/src/main/resources/lib/layout/main-panel_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ is\ going\ to\ shut\ down=Jenkins e in proces de oprire diff --git a/core/src/main/resources/lib/layout/progressiveRendering_ro.properties b/core/src/main/resources/lib/layout/progressiveRendering_ro.properties new file mode 100644 index 0000000000..cf1f4f356f --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_ro.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=Se calculeaz\u0103. diff --git a/core/src/main/resources/lib/test/bar_ro.properties b/core/src/main/resources/lib/test/bar_ro.properties new file mode 100644 index 0000000000..1618e61afe --- /dev/null +++ b/core/src/main/resources/lib/test/bar_ro.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +failures={0} erori +tests={0} teste -- GitLab From 7828dcb46d9a18f88cc8e71046edc9ee91ed95e6 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:02 -0700 Subject: [PATCH 073/308] Community-contributed localization for Russian (ru) --- .../hudson/AboutJenkins/index_ru.properties | 3 ++- .../hudson/PluginManager/index_ru.properties | 4 +-- .../PluginManager/installed_ru.properties | 4 ++- .../hudson/PluginManager/tabBar_ru.properties | 2 +- .../hudson/PluginManager/table_ru.properties | 4 +++ .../thirdPartyLicenses_ru.properties | 3 +++ .../message_ru.properties | 6 +++++ .../OldDataMonitor/message_ru.properties | 5 ++++ .../message_ru.properties | 6 ++--- .../message_ru.properties | 1 + .../MatrixBuild/ajaxMatrix_ru.properties | 4 +++ .../confirmDeleteAll_ru.properties | 4 +++ .../matrix/MatrixBuild/delete_ru.properties | 4 +++ .../MatrixProject/ajaxMatrix_ru.properties | 3 +++ .../matrix/MatrixProject/index_ru.properties | 3 ++- .../MatrixProject/newJobDetail_ru.properties | 4 +-- .../model/AbstractBuild/index_ru.properties | 9 ++++--- .../model/AbstractBuild/tasks_ru.properties | 16 ++++++------ .../configure-common_ru.properties | 2 ++ .../model/AbstractItem/delete_ru.properties | 2 +- .../AbstractItem/noWorkspace_ru.properties | 2 +- .../editDescription_ru.properties | 2 +- .../AbstractModelObject/error_ru.properties | 3 +++ .../AbstractProject/changes_ru.properties | 2 ++ .../model/AbstractProject/main_ru.properties | 4 +-- .../AbstractProject/sidepanel_ru.properties | 10 ++++--- .../model/AllView/newViewDetail_ru.properties | 3 +++ .../UpstreamCause/description_ru.properties | 4 +++ .../UserIdCause/description_ru.properties | 4 +-- .../model/Computer/_script_ru.properties | 3 +++ .../hudson/model/Computer/index_ru.properties | 1 + .../model/Computer/sidepanel_ru.properties | 6 ++--- .../model/ComputerSet/index_ru.properties | 3 ++- .../DirectoryBrowserSupport/dir_ru.properties | 3 ++- .../newJobDetail_ru.properties | 2 +- .../hudson/model/JDK/config_ru.properties | 2 +- .../model/Job/buildTimeTrend_ru.properties | 2 +- .../hudson/model/Job/configure_ru.properties | 4 ++- .../hudson/model/Job/index_ru.properties | 2 ++ .../hudson/model/Job/rename_ru.properties | 6 +++++ .../ListView/configure-entries_ru.properties | 1 + .../model/LoadStatistics/main_ru.properties | 2 +- .../NoFingerprintMatch/index_ru.properties | 7 +++++ .../ParametersAction/index_ru.properties | 2 +- .../index_ru.properties | 5 ++++ .../hudson/model/Run/configure_ru.properties | 2 +- .../hudson/model/Run/console_ru.properties | 4 +-- .../CoreUpdateMonitor/message_ru.properties | 1 + .../DownloadJob/Failure/status_ru.properties | 4 +++ .../Installing/status_ru.properties | 2 +- .../DownloadJob/Pending/status_ru.properties | 2 +- .../DownloadJob/Success/status_ru.properties | 2 +- .../Canceled/status_ru.properties | 3 +++ .../RestartJenkinsJob/row_ru.properties | 2 +- .../model/UpdateCenter/body_ru.properties | 4 ++- .../model/UpdateCenter/index_ru.properties | 2 +- .../UpdateCenter/sidepanel_ru.properties | 6 ++--- .../hudson/model/User/index_ru.properties | 3 ++- .../View/AsynchPeople/index_ru.properties | 1 + .../model/View/People/index_ru.properties | 3 +++ .../hudson/model/View/newJob_ru.properties | 4 +-- .../hudson/model/View/noJob_ru.properties | 1 + .../hudson/model/View/sidepanel_ru.properties | 11 ++++---- .../UserSearchProperty/config_ru.properties | 4 +++ .../loginLink_ru.properties | 2 +- .../success_ru.properties | 4 +++ .../LegacySecurityRealm/config_ru.properties | 4 +++ .../SecurityRealm/loginLink_ru.properties | 2 +- .../tasks/BatchFile/config_ru.properties | 3 +++ .../tasks/BuildTrigger/config_ru.properties | 4 ++- .../tasks/LogRotator/config_ru.properties | 3 +++ .../junit/CaseResult/index_ru.properties | 1 + .../tasks/junit/CaseResult/list_ru.properties | 6 +++++ .../tasks/junit/History/index_ru.properties | 5 ++++ .../summary_ru.properties | 1 + .../TestResultAction/index_ru.properties | 5 ++++ .../MetaTabulatedResult/body_ru.properties | 9 ++++--- .../MetaTabulatedResult/list_ru.properties | 8 ++++++ .../test/TestObject/sidepanel_ru.properties | 2 +- .../tasks/test/TestResult/index_ru.properties | 2 +- .../floatingBox_ru.properties | 2 +- .../config_ru.properties | 4 +-- .../tools/JDKInstaller/config_ru.properties | 2 +- .../ToolInstallation/config_ru.properties | 4 +++ .../ToolInstallation/global_ru.properties | 4 +-- .../config_ru.properties | 2 +- .../BuildAction/index_ru.properties | 2 +- .../SCMTrigger/SCMAction/index_ru.properties | 2 +- .../HudsonIsRestarting/index_ru.properties | 4 +++ .../BuildButtonColumn/column_ru.properties | 6 ++++- .../DefaultViewsTabBar/viewTabs_ru.properties | 2 +- .../columnHeader_ru.properties | 2 +- .../LastDurationColumn/column_ru.properties | 2 +- .../columnHeader_ru.properties | 2 +- .../LastFailureColumn/column_ru.properties | 2 +- .../columnHeader_ru.properties | 2 +- .../LastSuccessColumn/column_ru.properties | 2 +- .../StatusColumn/columnHeader_ru.properties | 2 +- .../WeatherColumn/columnHeader_ru.properties | 2 +- .../widgets/HistoryWidget/entry_ru.properties | 2 +- .../widgets/HistoryWidget/index_ru.properties | 8 +++--- .../message_ru.properties | 5 ++++ .../management/PluginsLink/info_ru.properties | 3 +++ .../MasterComputer/configure_ru.properties | 6 ++--- .../jenkins/model/Jenkins/_cli_ru.properties | 2 ++ .../model/Jenkins/_restart_ru.properties | 4 +++ .../model/Jenkins/_safeRestart_ru.properties | 4 +++ .../model/Jenkins/legend_ru.properties | 26 +++++++++---------- .../jenkins/model/Jenkins/login_ru.properties | 4 +-- .../model/Jenkins/manage_ru.properties | 1 + .../model/Jenkins/newView_ru.properties | 2 +- .../projectRelationship-help_ru.properties | 1 + .../model/Jenkins/systemInfo_ru.properties | 2 +- .../resources/lib/form/advanced_ru.properties | 1 + .../resources/lib/form/apply_ru.properties | 3 +++ .../lib/form/booleanRadio_ru.properties | 4 +++ .../breadcrumb-config-outline_ru.properties | 3 +++ .../lib/form/hetero-list_ru.properties | 3 +++ .../lib/hudson/artifactList_ru.properties | 3 +++ .../lib/hudson/buildCaption_ru.properties | 2 +- .../lib/hudson/buildHealth_ru.properties | 2 +- .../lib/hudson/buildListTable_ru.properties | 3 ++- .../lib/hudson/buildProgressBar_ru.properties | 2 +- .../hudson/editableDescription_ru.properties | 4 +-- .../lib/hudson/executors_ru.properties | 12 ++++----- .../lib/hudson/iconSize_ru.properties | 2 +- .../config-assignedLabel_ru.properties | 1 + ...-blockWhenDownstreamBuilding_ru.properties | 3 +++ ...ig-blockWhenUpstreamBuilding_ru.properties | 3 +++ .../config-concurrentBuild_ru.properties | 3 +++ .../project/config-publishers2_ru.properties | 1 + .../project/config-retryCount_ru.properties | 4 +++ ...nfig-upstream-pseudo-trigger_ru.properties | 1 + .../project/upstream-downstream_ru.properties | 4 +-- .../resources/lib/hudson/queue_ru.properties | 6 +++-- .../resources/lib/hudson/rssBar_ru.properties | 8 +++--- .../lib/hudson/scriptConsole_ru.properties | 2 ++ .../lib/hudson/test-result_ru.properties | 2 +- .../hudson/thirdPartyLicenses_ru.properties | 3 +-- .../lib/layout/breadcrumbBar_ru.properties | 6 +++++ .../resources/lib/layout/layout_ru.properties | 10 +++---- .../layout/progressiveRendering_ru.properties | 3 +++ .../resources/lib/layout/task_ru.properties | 3 +++ .../main/resources/lib/test/bar_ru.properties | 2 +- 144 files changed, 376 insertions(+), 149 deletions(-) create mode 100644 core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_ru.properties create mode 100644 core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_ru.properties create mode 100644 core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_ru.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixBuild/ajaxMatrix_ru.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixBuild/confirmDeleteAll_ru.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixBuild/delete_ru.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_ru.properties create mode 100644 core/src/main/resources/hudson/model/AbstractModelObject/error_ru.properties create mode 100644 core/src/main/resources/hudson/model/AllView/newViewDetail_ru.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UpstreamCause/description_ru.properties create mode 100644 core/src/main/resources/hudson/model/Computer/_script_ru.properties create mode 100644 core/src/main/resources/hudson/model/Job/rename_ru.properties create mode 100644 core/src/main/resources/hudson/model/NoFingerprintMatch/index_ru.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ru.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_ru.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_ru.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_ru.properties create mode 100644 core/src/main/resources/hudson/search/UserSearchProperty/config_ru.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_ru.properties create mode 100644 core/src/main/resources/hudson/security/LegacySecurityRealm/config_ru.properties create mode 100644 core/src/main/resources/hudson/tasks/BatchFile/config_ru.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/CaseResult/list_ru.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/History/index_ru.properties create mode 100644 core/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/TestResultAction/index_ru.properties create mode 100644 core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/list_ru.properties create mode 100644 core/src/main/resources/hudson/tools/ToolInstallation/config_ru.properties create mode 100644 core/src/main/resources/hudson/util/HudsonIsRestarting/index_ru.properties create mode 100644 core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_ru.properties create mode 100644 core/src/main/resources/jenkins/management/PluginsLink/info_ru.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/_restart_ru.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/_safeRestart_ru.properties create mode 100644 core/src/main/resources/lib/form/apply_ru.properties create mode 100644 core/src/main/resources/lib/form/booleanRadio_ru.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_ru.properties create mode 100644 core/src/main/resources/lib/form/hetero-list_ru.properties create mode 100644 core/src/main/resources/lib/hudson/artifactList_ru.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_ru.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_ru.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-concurrentBuild_ru.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-retryCount_ru.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_ru.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_ru.properties create mode 100644 core/src/main/resources/lib/layout/task_ru.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_ru.properties b/core/src/main/resources/hudson/AboutJenkins/index_ru.properties index 3eb889b6f2..295096a453 100644 --- a/core/src/main/resources/hudson/AboutJenkins/index_ru.properties +++ b/core/src/main/resources/hudson/AboutJenkins/index_ru.properties @@ -22,4 +22,5 @@ about=\u041E Jenkins {0} blurb=Jenkins \u0441\u0435\u0440\u0432\u0435\u0440 \u043D\u0435\u043F\u0440\u0435\u0440\u044B\u0432\u043D\u043E\u0439 \u0438\u043D\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u0438 \u0441 \u043E\u0442\u043A\u0440\u044B\u0442\u044B\u043C \u0438\u0441\u0445\u043E\u0434\u043D\u044B\u043C \u043A\u043E\u0434\u043E\u043C. -dependencies=Jenkins \u0437\u0430\u0432\u0438\u0441\u0438\u0442 \u043E\u0442 \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0445 \u0431\u0438\u0431\u043B\u0438\u043E\u0442\u0435\u043A \u0442\u0440\u0435\u0442\u044C\u0438\u0445 \u0441\u0442\u043E\u0440\u043E\u043D. +dependencies=Jenkins \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442 \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0435 \u0441\u0442\u043E\u0440\u043E\u043D\u043D\u0438\u0435 \u0431\u0438\u0431\u043B\u0438\u043E\u0442\u0435\u043A\u0438. +plugin.dependencies=\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F \u043E \u043B\u0438\u0446\u0435\u043D\u0437\u0438\u044F\u0445 \u0438 \u0437\u0430\u0432\u0438\u0441\u0438\u043C\u043E\u0441\u0442\u044F\u0445 \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u0432: diff --git a/core/src/main/resources/hudson/PluginManager/index_ru.properties b/core/src/main/resources/hudson/PluginManager/index_ru.properties index 859da8d8c1..9e8dbd520a 100644 --- a/core/src/main/resources/hudson/PluginManager/index_ru.properties +++ b/core/src/main/resources/hudson/PluginManager/index_ru.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. All=\u0412\u0441\u0435 -None=\u041D\u0438\u0447\u0435\u0433\u043E -Select=\u0412\u044B\u0431\u0440\u0430\u0442\u044C +None=\u041D\u0438\u043A\u0430\u043A\u0438\u0435 +Select=\u0412\u044B\u0431\u043E\u0440 UpdatePageDescription=\u041D\u0430 \u0434\u0430\u043D\u043D\u043E\u0439 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u044B \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u044B \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F \u0434\u043B\u044F \u0443\u0436\u0435 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044B\u0445 \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u0432. UpdatePageLegend=\u0417\u0430\u0431\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0435 \u0441\u0442\u0440\u043E\u043A\u0438 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u044B \u0438 \u043E\u0436\u0438\u0434\u0430\u044E\u0442 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0430. \u0417\u0430\u0442\u0435\u043D\u0435\u043D\u043D\u044B\u0435 \u043D\u043E \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0435 \u0434\u043B\u044F \u0432\u044B\u0431\u043E\u0440\u0430 \u0443\u0441\u0442\u0430\u043D\u0430\u0432\u043B\u0438\u0432\u0430\u044E\u0442\u0441\u044F \u0438\u043B\u0438 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u043B\u0438\u0441\u044C \u043D\u0435\u0443\u0434\u0430\u0447\u043D\u043E. diff --git a/core/src/main/resources/hudson/PluginManager/installed_ru.properties b/core/src/main/resources/hudson/PluginManager/installed_ru.properties index 4e018280af..3a7d2c9b8c 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_ru.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_ru.properties @@ -27,7 +27,9 @@ Pinned=\u041F\u0440\u0438\u043A\u0440\u0435\u043F\u043B\u0451\u043D\u043D\u044B\ 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 -Unpin=\u041E\u0442\u043A\u0440\u0435\u043F\u0438\u0442\u044C +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\u043B\u044E\u0447\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/tabBar_ru.properties b/core/src/main/resources/hudson/PluginManager/tabBar_ru.properties index 0e34abaf92..9036562693 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_ru.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_ru.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Advanced=\u0414\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u043E -Available=\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0435 \u043F\u043B\u0430\u0433\u0438\u043D\u044B +Available=\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0435 Installed=\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044B\u0435 Updates=\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F diff --git a/core/src/main/resources/hudson/PluginManager/table_ru.properties b/core/src/main/resources/hudson/PluginManager/table_ru.properties index dca8d8f50b..52aa4c0d46 100644 --- a/core/src/main/resources/hudson/PluginManager/table_ru.properties +++ b/core/src/main/resources/hudson/PluginManager/table_ru.properties @@ -22,10 +22,14 @@ Check\ to\ install\ the\ plugin=\u041F\u0440\u043E\u0432\u0435\u0440\u0438\u0442\u044C \u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E\u0441\u0442\u044C \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0438 \u043F\u043B\u0430\u0433\u0438\u043D\u0430 Click\ this\ heading\ to\ sort\ by\ category=\u041D\u0430\u0436\u043C\u0438\u0442\u0435 \u043D\u0430 \u0437\u0430\u0433\u043E\u043B\u043E\u0432\u043E\u043A \u0434\u043B\u044F \u0441\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u043A\u0438 \u043F\u043E \u043A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u044F\u043C +Download\ now\ and\ install\ after\ restart=\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C \u0438 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u043F\u043E\u0441\u043B\u0435 \u043F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0438 +Filter=\u0424\u0438\u043B\u044C\u0442\u0440 Inactive=\u041D\u0435\u0430\u043A\u0442\u0438\u0432\u043D\u044B\u0435 Install=\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C +Install\ without\ restart=\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u0431\u0435\u0437 \u043F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0438 Installed=\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043E Name=\u041D\u0430\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u0438\u0435 No\ updates=\u041D\u0435\u0442 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0439 Version=\u0412\u0435\u0440\u0441\u0438\u044F +compatWarning=\u0412\u043D\u0438\u043C\u0430\u043D\u0438\u0435: \u043D\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u0441\u0438\u044F \u043D\u0435 \u0441\u043E\u0432\u043C\u0435\u0441\u0442\u0438\u043C\u0430 \u0441 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u043E\u0439 \u0432\u0435\u0440\u0441\u0438\u0435\u0439. \u0417\u0430\u0434\u0430\u0447\u0430\u043C \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u044E\u0449\u0438\u043C \u0434\u0430\u043D\u043D\u044B\u0439 \u043F\u043B\u0430\u0433\u0438\u043D \u043C\u043E\u0436\u0435\u0442 \u043F\u043E\u0442\u0440\u0435\u0431\u043E\u0432\u0430\u0442\u044C\u0441\u044F \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u0435 \u043D\u0430\u0441\u0442\u0440\u043E\u0435\u043A. coreWarning=\u041F\u0440\u0435\u0434\u0443\u043F\u0440\u0435\u0436\u0434\u0435\u043D\u0438\u0435: \u041F\u043B\u0430\u0433\u0438\u043D \u0441\u043E\u0432\u043C\u0435\u0441\u0442\u0438\u043C \u0441 Jenkins \u0432\u0435\u0440\u0441\u0438\u0438 {0} \u0438\u043B\u0438 \u043D\u043E\u0432\u0435\u0435. \u0412\u043E\u0437\u043C\u043E\u0436\u043D\u0430 \u043D\u0435\u043A\u043E\u0440\u0440\u0435\u043A\u0442\u043D\u0430\u044F \u0440\u0430\u0431\u043E\u0442\u0430 \u043F\u043B\u0430\u0433\u0438\u043D\u0430 \u0441 \u0432\u0430\u0448\u0435\u0439 \u0432\u0435\u0440\u0441\u0438\u0435\u0439 Jenkins. diff --git a/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_ru.properties b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_ru.properties new file mode 100644 index 0000000000..2f27fff8d9 --- /dev/null +++ b/core/src/main/resources/hudson/PluginWrapper/thirdPartyLicenses_ru.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +about=\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F \u043E {0} diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_ru.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_ru.properties new file mode 100644 index 0000000000..4e49d3443b --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_ru.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Dismiss=\u041E\u0442\u043A\u043B\u043E\u043D\u0438\u0442\u044C +Tell\ me\ more=\u0411\u043E\u043B\u044C\u0448\u0435 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438 +blurb=\u0412\u0430\u0448\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u044F "{0}" (JENKINS_HOME) \u043F\u043E\u0447\u0442\u0438 \u0437\u0430\u043F\u043E\u043B\u043D\u0435\u043D\u0430. \u0412\u0430\u043C \u0441\u0442\u043E\u0438\u0442 \u043E\u0447\u0438\u0441\u0442\u0438\u0442\u044C \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u044E, \u043F\u043E\u043A\u0430 \u043E\u043D\u0430 \u043D\u0435 \u0437\u0430\u043F\u043E\u043B\u043D\u0438\u043B\u0430\u0441\u044C. + diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_ru.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_ru.properties new file mode 100644 index 0000000000..5c9cb47c0a --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_ru.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Dismiss=\u0423\u0431\u0440\u0430\u0442\u044C +Manage=\u041D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=\u0423 \u0432\u0430\u0441 \u0438\u043C\u0435\u044E\u0442\u0441\u044F \u0434\u0430\u043D\u043D\u044B\u0435, \u0445\u0440\u0430\u043D\u044F\u0449\u0438\u0435\u0441\u044F \u0432 \u0443\u0441\u0442\u0430\u0440\u0435\u0432\u0448\u0435\u043C \u0444\u043E\u0440\u043C\u0430\u0442\u0435 \u0438/\u0438\u043B\u0438 \u043D\u0435\u0447\u0438\u0442\u0430\u0435\u043C\u044B\u0435 \u0434\u0430\u043D\u043D\u044B\u0435. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ru.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ru.properties index 827b428042..911e748090 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ru.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=\u0423\u0431\u0440\u0430\u0442\u044C -More\ Info=\u0411\u043E\u043B\u044C\u0448\u0435 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438 -blurb=\u0415\u0441\u0442\u044C \u043F\u043E\u0434\u043E\u0437\u0440\u0435\u043D\u0438\u0435 \u0447\u0442\u043E \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u0432\u0430\u0448\u0435\u0433\u043E \u0440\u0435\u0432\u0435\u0440\u0441\u043D\u043E\u0433\u043E \u043F\u0440\u043E\u043A\u0441\u0438 \u043D\u0435\u043A\u043E\u0440\u0440\u0435\u043A\u0442\u043D\u044B +Dismiss=\u041E\u0442\u043C\u0435\u043D\u0438\u0442\u044C +More\ Info=\u041F\u043E\u0434\u0440\u043E\u0431\u043D\u0435\u0435 +blurb=\u0415\u0441\u0442\u044C \u043F\u043E\u0434\u043E\u0437\u0440\u0435\u043D\u0438\u0435, \u0447\u0442\u043E \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u0432\u0430\u0448\u0435\u0433\u043E \u043E\u0431\u0440\u0430\u0442\u043D\u043E\u0433\u043E \u043F\u0440\u043E\u043A\u0441\u0438 \u043D\u0435\u043A\u043E\u0440\u0440\u0435\u043A\u0442\u043D\u044B. diff --git a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_ru.properties b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_ru.properties index b57cca4232..eb1655a621 100644 --- a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_ru.properties +++ b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_ru.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Dismiss=\u0423\u0431\u0440\u0430\u0442\u044C +blurb=\u041A\u0430\u0436\u0435\u0442\u0441\u044F \u0443 \u0412\u0430\u0441 \u0431\u043E\u043B\u044C\u0448\u043E\u0435 \u043A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E \u0437\u0430\u0434\u0430\u0447. \u0417\u043D\u0430\u0435\u0442\u0435 \u043B\u0438 \u0432\u044B, \u0447\u0442\u043E \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u043E\u0440\u0433\u0430\u043D\u0438\u0437\u043E\u0432\u0430\u0442\u044C \u0437\u0430\u0434\u0430\u0447\u0438 \u0432 \u0440\u0430\u0437\u043B\u0438\u0447\u043D\u044B\u0435 \u0432\u0438\u0434\u044B \u043F\u0440\u043E\u0441\u043C\u043E\u0442\u0440\u0430? \u0412\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u043D\u0430\u0436\u0430\u0442\u044C "+" \u0432 \u0432\u0435\u0440\u0445\u0443 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u044B, \u0447\u0442\u043E\u0431\u044B \u0441\u043E\u0437\u0434\u0430\u0442\u044C \u043D\u043E\u0432\u044B\u0439 \u0432\u0438\u0434 \u0432 \u043B\u044E\u0431\u043E\u0435 \u0432\u0440\u0435\u043C\u044F. diff --git a/core/src/main/resources/hudson/matrix/MatrixBuild/ajaxMatrix_ru.properties b/core/src/main/resources/hudson/matrix/MatrixBuild/ajaxMatrix_ru.properties new file mode 100644 index 0000000000..d004d7c497 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixBuild/ajaxMatrix_ru.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Not\ run= + diff --git a/core/src/main/resources/hudson/matrix/MatrixBuild/confirmDeleteAll_ru.properties b/core/src/main/resources/hudson/matrix/MatrixBuild/confirmDeleteAll_ru.properties new file mode 100644 index 0000000000..6d3fcfc888 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixBuild/confirmDeleteAll_ru.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Are\ you\ sure\ about\ deleting\ the\ build\ and\ all\ configurations\ in\ this\ build?=\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u0441\u0431\u043E\u0440\u043A\u0443 \u0438 \u0432\u0441\u0435 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438? +Yes=\u0414\u0430 diff --git a/core/src/main/resources/hudson/matrix/MatrixBuild/delete_ru.properties b/core/src/main/resources/hudson/matrix/MatrixBuild/delete_ru.properties new file mode 100644 index 0000000000..3e59e453d2 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixBuild/delete_ru.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Delete\ Build=\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0441\u0431\u043E\u0440\u043A\u0443 +Delete\ this\ build\ and\ all\ configurations\ in\ this\ build=\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u044D\u0442\u0443 \u0441\u0431\u043E\u0440\u043A\u0443 \u0432\u043C\u0435\u0441\u0442\u0435 \u0441\u043E \u0432\u0441\u0435\u043C\u0438 \u0435\u0435 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F\u043C\u0438 diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_ru.properties b/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_ru.properties new file mode 100644 index 0000000000..8d06417a17 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_ru.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Not\ configured=\u041D\u0435 \u0441\u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043E\u0432\u0430\u043D\u043E diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_ru.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_ru.properties index 72936cca4f..1b0837cfff 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/index_ru.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_ru.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Project=\u041f\u0440\u043e\u0435\u043a\u0442 +Project=\u043F\u0440\u043E\u0435\u043A\u0442 +Project\ name=\u0418\u043C\u044F \u043F\u0440\u043E\u0435\u043A\u0442\u0430 diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_ru.properties b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_ru.properties index 1fd6fd7753..79615eaca9 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_ru.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_ru.properties @@ -20,6 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=\ - \u041f\u043e\u0434\u0445\u043e\u0434\u0438\u0442 \u0434\u043b\u044f \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u0432, \u0442\u0440\u0435\u0431\u0443\u044e\u0449\u0438\u0445 \u0431\u043e\u043b\u044c\u0448\u043e\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0440\u0430\u0437\u043b\u0438\u0447\u0430\u044e\u0449\u0438\u0445\u0441\u044f \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0439, \ - \u0442\u0430\u043a\u0438\u0445 \u043a\u0430\u043a \u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0432 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0445 \u0441\u0440\u0435\u0434\u0430\u0445, \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u043e\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u044b\u0435 \u0441\u0431\u043e\u0440\u043a\u0438 \u0438 \u0442.\u0434. +body=\u041F\u043E\u0434\u0445\u043E\u0434\u0438\u0442 \u0434\u043B\u044F \u043F\u0440\u043E\u0435\u043A\u0442\u043E\u0432, \u0442\u0440\u0435\u0431\u0443\u044E\u0449\u0438\u0445 \u0431\u043E\u043B\u044C\u0448\u043E\u0435 \u043A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E \u0440\u0430\u0437\u043B\u0438\u0447\u043D\u044B\u0445 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0439, \u0442\u0430\u043A\u0438\u0445 \u043A\u0430\u043A \u0442\u0435\u0441\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435 \u0432 \u0440\u0430\u0437\u043D\u043E\u043E\u0431\u0440\u0430\u0437\u043D\u044B\u0445 \u0441\u0440\u0435\u0434\u0430\u0445, \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u043E\u0437\u0430\u0432\u0438\u0441\u0438\u043C\u044B\u0435 \u0441\u0431\u043E\u0440\u043A\u0438 \u0438 \u0442.\u0434. diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_ru.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_ru.properties index bdfebcb0a4..a8dd61d412 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_ru.properties @@ -21,10 +21,11 @@ # THE SOFTWARE. on=\u043D\u0430 -startedAgo=\u0417\u0430\u043f\u0443\u0449\u0435\u043d {0} \u043d\u0430\u0437\u0430\u0434 -Build=\u0421\u0431\u043e\u0440\u043a\u0430 -Build\ Artifacts=\u0410\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b +startedAgo=\u0417\u0430\u043F\u0443\u0449\u0435\u043D {0} \u0434\u043D\u0435\u0439 \u043D\u0430\u0437\u0430\u0434. +Build=\u0421\u0431\u043E\u0440\u043A\u0430 +Build\ Artifacts=\u0410\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u044B \u0441\u0431\u043E\u0440\u043A\u0438 Changes\ in\ dependency=\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0432 \u0437\u0430\u0432\u0438\u0441\u0438\u043C\u043E\u0441\u0442\u044F\u0445 +beingExecuted=\u0412\u044B\u043F\u043E\u043B\u043D\u044F\u0435\u0442\u0441\u044F {0} detail=\u0414\u0435\u0442\u0430\u043b\u0438 Not\ yet\ determined=\u0415\u0449\u0435 \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e Failed\ to\ determine=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0438\u0442\u044c @@ -34,4 +35,4 @@ Downstream\ Builds=\u041d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0438\u0435 none=\u043d\u0435\u0442 Permalinks=\u041f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u044b\u0435 \u0441\u0441\u044b\u043b\u043a\u0438 Build\ number=\u041d\u043e\u043c\u0435\u0440 \u0441\u0431\u043e\u0440\u043a\u0438 -Took=\u0417\u0430\u043d\u044f\u043b\u043e +Took=\u0417\u0430\u043D\u044F\u043B\u043E: diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ru.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ru.properties index a009d1e0f7..b8211ffb90 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ru.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=\u041D\u0430\u0437\u0430\u0434 \u043A \u041F\u0440\u043E\u0435\u043A\u0442\u0443 -Changes=\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F -Console\ Output=\u0412\u044B\u0432\u043E\u0434 \u043A\u043E\u043D\u0441\u043E\u043B\u0438 -View\ as\ plain\ text=\u041F\u0440\u043E\u0441\u043C\u043E\u0442\u0440\u0435\u0442\u044C \u0431\u0435\u0437 \u0444\u043E\u0440\u043C\u0430\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F -Edit\ Build\ Information=\u0418\u0437\u043C\u0435\u043D\u0442\u044C \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044E \u043E \u0441\u0431\u043E\u0440\u043A\u0435 -Status=\u0421\u0442\u0430\u0442\u0443\u0441 -View\ Build\ Information=\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F \u043E \u0441\u0431\u043E\u0440\u043A\u0435 -raw=\u043D\u0435\u0444\u043E\u0440\u043C\u0430\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u044B\u0439 \u0432\u044B\u0432\u043E\u0434 +Back\ to\ Project=\u041D\u0430\u0437\u0430\u0434 \u043A \u043F\u0440\u043E\u0435\u043A\u0442\u0443 +Changes=\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F. +Console\ Output=\u0412\u044B\u0432\u043E\u0434 \u043D\u0430 \u043A\u043E\u043D\u0441\u043E\u043B\u044C +View\ as\ plain\ text=\u0412\u044B\u0432\u0435\u0441\u0442\u0438 \u0431\u0435\u0437 \u0444\u043E\u0440\u043C\u0430\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F +Edit\ Build\ Information=\u0420\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044E \u0441\u0431\u043E\u0440\u043A\u0438 +Status=\u0421\u0442\u0430\u0442\u0443\u0441. +View\ Build\ Information=\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044E \u043E \u0421\u0431\u043E\u0440\u043A\u0435 +raw=\u043D\u0435 \u0444\u043E\u0440\u043C\u0430\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0439 \u0432\u0438\u0434 diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_ru.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_ru.properties index 1f62fa3d89..8dcb9fcec1 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/configure-common_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_ru.properties @@ -21,6 +21,8 @@ # THE SOFTWARE. Advanced\ Project\ Options=\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043D\u043D\u044B\u0435 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 +Display\ Name=\u041E\u0442\u043E\u0431\u0440\u0430\u0436\u0430\u0435\u043C\u043E\u0435 \u0438\u043C\u044F JDK\ to\ be\ used\ for\ this\ project=JDK \u043A\u043E\u0442\u043E\u0440\u044B\u0439 \u0431\u0443\u0434\u0435\u0442 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D \u0432 \u044D\u0442\u043E\u043C \u043F\u0440\u043E\u0435\u043A\u0442\u0435 Tie\ this\ project\ to\ a\ node=\u041F\u0440\u0438\u0432\u044F\u0437\u0430\u0442\u044C \u043F\u0440\u043E\u0435\u043A\u0442 \u043A \u0443\u0437\u043B\u0443 Node=\u0423\u0437\u0435\u043B +title.concurrentbuilds=\u0412\u044B\u043F\u043E\u043B\u043D\u044F\u0442\u044C \u043E\u0434\u043D\u043E\u0432\u0440\u0435\u043C\u0435\u043D\u043D\u044B\u0435 \u0441\u0431\u043E\u0440\u043A\u0438, \u0435\u0441\u043B\u0438 \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u043E 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 0dbe863a88..b7c2d51be8 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_ru.properties @@ -22,4 +22,4 @@ 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\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/noWorkspace_ru.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ru.properties index 8618da39df..d3cd6ba59d 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ru.properties @@ -30,4 +30,4 @@ The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new 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\u044c \u0441\u0431\u043e\u0440\u043a\u0443 \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0437\u0432\u043e\u043b\u0438\u0442 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. diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/editDescription_ru.properties b/core/src/main/resources/hudson/model/AbstractModelObject/editDescription_ru.properties index 6b97dd6821..e421a45699 100644 --- a/core/src/main/resources/hudson/model/AbstractModelObject/editDescription_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractModelObject/editDescription_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Submit=\u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C +Submit=\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u0442\u044C diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/error_ru.properties b/core/src/main/resources/hudson/model/AbstractModelObject/error_ru.properties new file mode 100644 index 0000000000..1b2351ff62 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractModelObject/error_ru.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Error=\u041E\u0448\u0438\u0431\u043A\u0430 diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_ru.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_ru.properties index fd172166b7..881ddd69eb 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_ru.properties @@ -21,3 +21,5 @@ # THE SOFTWARE. Changes=\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f +from.label=\u0441 #{0} +to.label=\u0434\u043E #{0} diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_ru.properties b/core/src/main/resources/hudson/model/AbstractProject/main_ru.properties index cf8aa854ac..bff83a790f 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Workspace=\u0421\u0431\u043e\u0440\u043e\u0447\u043d\u0430\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f -Last\ Successful\ Artifacts=\u0410\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0445 \u0443\u0434\u0430\u0447\u043d\u044b\u0445 \u0441\u0431\u043e\u0440\u043e\u043a +Workspace=\u0420\u0430\u0431\u043E\u0447\u0435\u0435 \u043F\u0440\u043E\u0441\u0442\u0440\u0430\u043D\u0441\u0442\u0432\u043E +Last\ Successful\ Artifacts=\u0410\u0440\u0445\u0438\u0432\u044B \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0438\u0445 \u0443\u0434\u0430\u0447\u043D\u044B\u0445 \u0441\u0431\u043E\u0440\u043E\u043A Recent\ Changes=\u041d\u0435\u0434\u0430\u0432\u043d\u0438\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f Latest\ Test\ Result=\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0445 \u0442\u0435\u0441\u0442\u043e\u0432 diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ru.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ru.properties index 04f2f24f45..13b6c20c1c 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ru.properties @@ -21,11 +21,13 @@ # THE SOFTWARE. Back\ to\ Dashboard=\u041d\u0430 \u0433\u043b\u0430\u0432\u043d\u0443\u044e -Status=\u0421\u0442\u0430\u0442\u0443\u0441 +Status=\u0421\u0442\u0430\u0442\u0445\u0443\u0439\u0441 Changes=\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f -Wipe\ Out\ Workspace=\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0447\u0435\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e -Workspace=\u0421\u0431\u043e\u0440\u043e\u0447\u043d\u0430\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f +View\ Configuration=\u0421\u043C\u043E\u0442\u0440\u0435\u0442\u044C \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044E +Wipe\ Out\ Workspace=\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0432\u0441\u0435 \u0432 \u0441\u0431\u043E\u0440\u043E\u0447\u043D\u043E\u0439 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0438 +Workspace=\u0420\u0430\u0431\u043E\u0447\u0435\u0435 \u043F\u0440\u043E\u0441\u0442\u0440\u0430\u043D\u0441\u0442\u0432\u043E delete=\u0423\u0434\u0430\u043b\u0438\u0442\u044c {0} Configure=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 Build\ scheduled=\u0421\u0431\u043e\u0440\u043a\u0430 \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0430 -wipe.out.confirm=\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435, \u0447\u0442\u043e \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u0444\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u0438 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0432\u0441\u0435 \u0444\u0430\u0439\u043b\u044b \u0438\u0437 \u0421\u0431\u043e\u0440\u043e\u0447\u043d\u043e\u0439 \u0414\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u0438? +delete.confirm=\u0412\u044B \u0442\u043E\u0447\u043D\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u044C {0} \u2018{1}\u2019? +wipe.out.confirm=\u041F\u043E\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435, \u0447\u0442\u043E \u0432\u044B \u0445\u043E\u0442\u0438\u0442\u0435 \u0444\u0438\u0437\u0438\u0447\u0435\u0441\u043A\u0438 \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u0432\u0441\u0435 \u0444\u0430\u0439\u043B\u044B \u0438\u0437 \u0440\u0430\u0431\u043E\u0447\u0435\u0433\u043E \u043F\u0440\u043E\u0441\u0442\u0440\u0430\u043D\u0441\u0442\u0432\u0430? diff --git a/core/src/main/resources/hudson/model/AllView/newViewDetail_ru.properties b/core/src/main/resources/hudson/model/AllView/newViewDetail_ru.properties new file mode 100644 index 0000000000..d2ad07217f --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/newViewDetail_ru.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +blurb=\u042D\u0442\u043E\u0442 \u0432\u0438\u0434 \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0430\u0435\u0442 \u0432\u0441\u0435 \u0437\u0430\u0434\u0430\u0447\u0438 \u0434\u0430\u043D\u043D\u043E\u0433\u043E Jenkins. diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_ru.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_ru.properties new file mode 100644 index 0000000000..b780a5ccda --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_ru.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +caused_by=\u043F\u0435\u0440\u0432\u043E\u043D\u0430\u0447\u0430\u043B\u044C\u043D\u043E \u0437\u0430\u043F\u0443\u0449\u0435\u043D\u0430: +started_by_project=\u0412\u044B\u0437\u0432\u0430\u043D \u0432\u043E\u0441\u0445\u043E\u0434\u044F\u0449\u0438\u043C \u043F\u0440\u043E\u0435\u043A\u0442\u043E\u043C {0}, \u0441\u0431\u043E\u0440\u043A\u0430 \u043D\u043E\u043C\u0435\u0440 {1} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ru.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ru.properties index 91ebf272f8..5727c6e6c9 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ru.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_anonymous=\u0417\u0430\u043F\u0443\u0449\u0435\u043D\u0430 \u0430\u043D\u043E\u043D\u0438\u043C\u043D\u044B\u043C \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0435\u043C -started_by_user=\u0417\u0430\u043f\u0443\u0449\u0435\u043d\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c {1} +started_by_anonymous=\u0417\u0430\u043F\u0443\u0449\u0435\u043D\u043E \u0430\u043D\u043E\u043D\u0438\u043C\u043D\u043E +started_by_user=\u0421\u043E\u0437\u0434\u0430\u043D\u0430 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0435\u043C {1} diff --git a/core/src/main/resources/hudson/model/Computer/_script_ru.properties b/core/src/main/resources/hudson/model/Computer/_script_ru.properties new file mode 100644 index 0000000000..55bc5e3ef7 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/_script_ru.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +This\ execution\ happens\ in\ the\ slave\ agent\ JVM.=\u0412\u044B\u043F\u043E\u043B\u043D\u0435\u043D\u0438\u0435 \u043F\u0440\u043E\u0438\u0437\u043E\u0439\u0434\u0451\u0442 \u0432 \u0432\u044B\u0434\u0435\u043B\u0435\u043D\u043D\u043E\u0439 JVM diff --git a/core/src/main/resources/hudson/model/Computer/index_ru.properties b/core/src/main/resources/hudson/model/Computer/index_ru.properties index 1ce43b4a4e..98dccd914d 100644 --- a/core/src/main/resources/hudson/model/Computer/index_ru.properties +++ b/core/src/main/resources/hudson/model/Computer/index_ru.properties @@ -24,4 +24,5 @@ Labels:=\u041C\u0435\u0442\u043A\u0438: None=\u041D\u0435\u0442 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438 submit.not.temporarilyOffline=\u041F\u043E\u043C\u0435\u0442\u0438\u0442\u044C \u044D\u0442\u043E\u0442 \u0443\u0437\u0435\u043B \u043A\u0430\u043A \u043A\u0430\u043A \u0432\u0440\u0435\u043C\u0435\u043D\u043D\u043E \u043D\u0435\u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0439 submit.temporarilyOffline=\u0412\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0434\u0430\u043D\u043D\u044B\u0439 \u0443\u0437\u0435\u043B +submit.updateOfflineCause=\u0417\u0430\u0434\u0430\u0442\u044C \u043F\u0440\u0438\u0447\u0438\u043D\u0443 \u043E\u0442\u043A\u043B\u044E\u0447\u0435\u043D\u0438\u044F title.projects_tied_on=\u041F\u0440\u043E\u0435\u043A\u0442\u044B \u043D\u0430 {0} diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_ru.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_ru.properties index 6d0fc2d5cd..5d11901cf4 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_ru.properties @@ -22,8 +22,8 @@ Back\ to\ List=\u0412\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f \u043a \u0441\u043f\u0438\u0441\u043a\u0443 Build\ History=\u0418\u0441\u0442\u043e\u0440\u0438\u044f \u0441\u0431\u043e\u0440\u043e\u043a -Configure=\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 +Configure=\u041D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C Delete\ Slave=\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u043F\u043E\u0434\u0447\u0438\u043D\u0435\u043D\u043D\u044B\u0439 \u0443\u0437\u0435\u043B -Load\ Statistics=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0430 \u0443\u0442\u0438\u043B\u0438\u0437\u0430\u0446\u0438\u0438 +Load\ Statistics=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0430 \u043D\u0430\u0433\u0440\u0443\u0437\u043A\u0438 Script\ Console=\u041a\u043e\u043d\u0441\u043e\u043b\u044c \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432 -Status=\u0421\u043E\u0441\u0442\u043E\u044F\u043D\u0438\u0435 +Status=\u0421\u0442\u0430\u0442\u0443\u0441 diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_ru.properties b/core/src/main/resources/hudson/model/ComputerSet/index_ru.properties index c93e4856c3..5f30ec63f5 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_ru.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_ru.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Configure=\u041D\u0430\u0441\u0442\u043E\u0439\u043A\u0438 +Configure=\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 +Data\ obtained=\u041F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u044B\u0435 \u0434\u0430\u043D\u043D\u044B\u0435 Name=\u0418\u043C\u044F Refresh\ status=\u041E\u0431\u043D\u043E\u0432\u0438\u0442\u044C \u0441\u043E\u0441\u0442\u043E\u044F\u043D\u0438\u0435 diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ru.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ru.properties index 91e2cd5dbe..e05b9708a1 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ru.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_ru.properties @@ -21,4 +21,5 @@ # THE SOFTWARE. all\ files\ in\ zip=\u0412\u0441\u0435 \u0444\u0430\u0439\u043b\u044b \u0432 \u0430\u0440\u0445\u0438\u0432\u0435 ZIP -No\ files\ in\ directory=\u0412 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u0438 \u043d\u0435\u0442 \u0444\u0430\u0439\u043b\u043e\u0432 \ No newline at end of file +No\ files\ in\ directory=\u0412 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u0438 \u043d\u0435\u0442 \u0444\u0430\u0439\u043b\u043e\u0432 +view=\u043F\u043E\u0441\u043C\u043E\u0442\u0440\u0435\u0442\u044C diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_ru.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_ru.properties index 97eb19f0f3..6c75b34d1c 100644 --- a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_ru.properties +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=\u042D\u0442\u043E \u043E\u0441\u043D\u043E\u0432\u043D\u0430\u044F \u0444\u0443\u043D\u043A\u0446\u0438\u044F Jenkins. Jenkins \u0431\u0443\u0434\u0435\u0442 \u0441\u043E\u0431\u0438\u0440\u0430\u0442\u044C \u0432\u0430\u0448 \u043F\u0440\u043E\u0435\u043A\u0442, \u043A\u043E\u043C\u0431\u0438\u043D\u0438\u0440\u0443\u044F \u043B\u044E\u0431\u0443\u044E SCM \u0441 \u043B\u044E\u0431\u043E\u0439 \u0441\u0431\u043E\u0440\u043E\u0447\u043D\u043E\u0439 \u0441\u0438\u0441\u0442\u0435\u043C\u043E\u0439. \u0422\u0430\u043A\u0436\u0435 \u0441\u0432\u043E\u0431\u043E\u0434\u043D\u0430\u044F \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F \u043C\u043E\u0436\u0435\u0442 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C\u0441\u044F \u0434\u043B\u044F \u0437\u0430\u0434\u0430\u0447, \u043D\u0435 \u0441\u0432\u044F\u0437\u0430\u043D\u043D\u044B\u0445 \u0441\u043E \u0441\u0431\u043E\u0440\u043A\u043E\u0439 \u043F\u0440\u043E\u0435\u043A\u0442\u043E\u0432. +body=\u042D\u0442\u043E \u043E\u0441\u043D\u043E\u0432\u043D\u0430\u044F \u0444\u0443\u043D\u043A\u0446\u0438\u044F Jenkins. Jenkins \u0431\u0443\u0434\u0435\u0442 \u0441\u043E\u0431\u0438\u0440\u0430\u0442\u044C \u0432\u0430\u0448 \u043F\u0440\u043E\u0435\u043A\u0442, \u043A\u043E\u043C\u0431\u0438\u043D\u0438\u0440\u0443\u044F \u043B\u044E\u0431\u0443\u044E SCM \u0441 \u043B\u044E\u0431\u043E\u0439 \u0441\u0431\u043E\u0440\u043E\u0447\u043D\u043E\u0439 \u0441\u0438\u0441\u0442\u0435\u043C\u043E\u0439, \u0438 \u044D\u0442\u043E \u0434\u0430\u0436\u0435 \u043C\u043E\u0436\u0435\u0442 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C\u0441\u044F \u0434\u043B\u044F \u0447\u0435\u0433\u043E-\u043D\u0438\u0431\u0443\u0434\u044C, \u043E\u0442\u043B\u0438\u0447\u043D\u043E\u0433\u043E \u043E\u0442 \u0441\u0431\u043E\u0440\u043A\u0438 \u041F\u041E. diff --git a/core/src/main/resources/hudson/model/JDK/config_ru.properties b/core/src/main/resources/hudson/model/JDK/config_ru.properties index 2be8aec78f..e5d03af1ef 100644 --- a/core/src/main/resources/hudson/model/JDK/config_ru.properties +++ b/core/src/main/resources/hudson/model/JDK/config_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u0438\u043C\u044F +Name=\u0418\u043C\u044F name=\u0438\u043C\u044F diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_ru.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_ru.properties index de705d62d7..4307789795 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_ru.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_ru.properties @@ -23,7 +23,7 @@ Timeline=\u0412\u0440\u0435\u043C\u0435\u043D\u043D\u0430\u044F \u0448\u043A\u0430\u043B\u0430 title={0} \u0413\u0440\u0430\u0444\u0438\u043a \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0441\u0431\u043e\u0440\u043a\u0438 Build=\u0421\u0431\u043e\u0440\u043a\u0430 -Build\ Time\ Trend=\u0422\u0435\u043D\u0434\u0435\u043D\u0446\u0438\u044F \u0432\u0440\u0435\u043C\u0435\u043D\u0438 \u0441\u0431\u043E\u0440\u043A\u0438 +Build\ Time\ Trend=\u0413\u0440\u0430\u0444\u0438\u043A \u043F\u0440\u043E\u0434\u043E\u043B\u0436\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u0438 Duration=\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c Slave=\u041f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0439 More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=\u0414\u043b\u044f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0433\u0440\u0430\u0444\u0438\u043a\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e \u0431\u043e\u043b\u0435\u0435 \u0447\u0435\u043c \u043e\u0434\u043d\u043e\u0439 \u0441\u0431\u043e\u0440\u043a\u0435. diff --git a/core/src/main/resources/hudson/model/Job/configure_ru.properties b/core/src/main/resources/hudson/model/Job/configure_ru.properties index 42ce62f811..5a373b093b 100644 --- a/core/src/main/resources/hudson/model/Job/configure_ru.properties +++ b/core/src/main/resources/hudson/model/Job/configure_ru.properties @@ -20,7 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -name={0} +Strategy=\u0421\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044F +name={0} \u0438\u043C\u044F Description=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 Discard\ Old\ Builds=\u0423\u0434\u0430\u043b\u044f\u0442\u044c \u0443\u0441\u0442\u0430\u0440\u0435\u0432\u0448\u0438\u0435 \u0441\u0431\u043e\u0440\u043a\u0438 +LOADING=\u0417\u0410\u0413\u0420\u0423\u0417\u041A\u0410 Save=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c diff --git a/core/src/main/resources/hudson/model/Job/index_ru.properties b/core/src/main/resources/hudson/model/Job/index_ru.properties index 4e409b2f30..0439d91594 100644 --- a/core/src/main/resources/hudson/model/Job/index_ru.properties +++ b/core/src/main/resources/hudson/model/Job/index_ru.properties @@ -21,7 +21,9 @@ # THE SOFTWARE. Permalinks=\u041f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u044b\u0435 \u0441\u0441\u044b\u043b\u043a\u0438 +Disable\ Project=\u041E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0441\u0431\u043E\u0440\u043A\u0443 Last\ build=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u0441\u0431\u043e\u0440\u043a\u0430 Last\ stable\ build=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u0430\u044f \u0441\u0431\u043e\u0440\u043a\u0430 Last\ successful\ build=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u0443\u0441\u043f\u0435\u0448\u043d\u0430\u044f \u0441\u0431\u043e\u0440\u043a\u0430 Last\ failed\ build=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u043f\u0440\u043e\u0432\u0430\u043b\u0438\u0432\u0448\u0430\u044f\u0441\u044f \u0441\u0431\u043e\u0440\u043a\u0430 +Project\ name=\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 diff --git a/core/src/main/resources/hudson/model/Job/rename_ru.properties b/core/src/main/resources/hudson/model/Job/rename_ru.properties new file mode 100644 index 0000000000..1c7970a2d7 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/rename_ru.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +No=\u041D\u0435\u0442 +Yes=\u0414\u0430 +description=\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u043F\u0435\u0440\u0435\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u0442\u044C {0} \u0432 {1}? +noRenameWhileBuilding=\u041D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u043F\u0435\u0440\u0435\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u0442\u044C \u043F\u043E\u043A\u0430 \u044D\u0442\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 \u0441\u043E\u0431\u0438\u0440\u0430\u0435\u0442\u0441\u044F diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_ru.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_ru.properties index ef3f67cf74..156dca1cf2 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_ru.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_ru.properties @@ -30,4 +30,5 @@ Job\ Filters=\u0424\u0438\u043B\u044C\u0442\u0440\u044B \u0437\u0430\u0434\u0430 Jobs=\u0417\u0430\u0434\u0430\u0447\u0438 Status\ Filter=\u0424\u0438\u043B\u044C\u0442\u0440 \u043F\u043E \u0441\u043E\u0441\u0442\u043E\u044F\u043D\u0438\u044E Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u0434\u0430\u0447 \u0432 \u0441\u043f\u0438\u0441\u043e\u043a +Recurse\ in\ subfolders=\u0420\u0435\u043A\u0443\u0440\u0441\u0438\u0432\u043D\u043E \u0432 \u043F\u043E\u0434\u043F\u0430\u043F\u043A\u0430\u0445 Regular\ expression=\u0420\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_ru.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_ru.properties index af6cb5e3ea..e84a049914 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_ru.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_ru.properties @@ -27,4 +27,4 @@ Short=\u041A\u043E\u0440\u043E\u0442\u043A\u0438\u0439 Timespan=\u0412\u0440\u0435\u043C\u0435\u043D\u043D\u043E\u0439 \u0434\u0438\u0430\u043F\u0430\u0437\u043E\u043D blurb=\u0412 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0443 \u0443\u0442\u0438\u043B\u0438\u0437\u0430\u0446\u0438\u0438 \u0437\u0430\u043F\u0438\u0441\u044B\u0432\u0430\u0435\u0442\u0441\u044F \u0438\u0441\u0442\u043E\u0440\u0438\u044F \u0434\u0438\u043D\u0430\u043C\u0438\u043A\u0438 \u0442\u0440\u0435\u0445 \u043A\u043B\u044E\u0447\u0435\u0432\u044B\u0445 \u043C\u0435\u0442\u0440\u0438\u043A \u0440\u0435\u0441\u0443\u0440\u0441\u043D\u043E\u0439 \u0443\u0442\u0438\u043B\u0438\u0437\u0430\u0446\u0438\u0438:
\u0418\u0442\u043E\u0433\u043E\u0432\u043E\u0435 \u043A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E \u0441\u0431\u043E\u0440\u0449\u0438\u043A\u043E\u0432
\u0414\u043B\u044F \u043A\u043E\u043D\u043A\u0440\u0435\u0442\u043D\u043E\u0433\u043E \u043A\u043E\u043C\u043F\u044C\u044E\u0442\u0435\u0440\u0430 \u044D\u0442\u043E \u0447\u0438\u0441\u043B\u043E \u0441\u0431\u043E\u0440\u0449\u0438\u043A\u043E\u0432, \u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u0437\u0430\u043F\u0443\u0441\u043A\u0430\u044E\u0442\u0441\u044F \u043D\u0430 \u0434\u0430\u043D\u043D\u043E\u043C \u043A\u043E\u043C\u043F\u044C\u044E\u0442\u0435\u0440\u0435. \u0414\u043B\u044F \u043C\u0435\u0442\u043A\u0438 (\u0433\u0440\u0443\u043F\u043F\u044B), \u044D\u0442\u043E \u0441\u0443\u043C\u043C\u0430\u0440\u043D\u043E\u0435 \u0447\u0438\u0441\u043B\u043E \u0441\u0431\u043E\u0440\u0449\u0438\u043A\u043E\u0432 \u043D\u0430 \u043A\u043E\u043C\u043F\u044C\u044E\u0442\u0435\u0440\u0430\u0445 \u0432 \u044D\u0442\u043E\u0439 \u0433\u0440\u0443\u043F\u043F\u0435. \u0414\u043B\u044F \u0441\u0430\u043C\u043E\u0433\u043E Jenkins, \u044D\u0442\u043E \u0441\u0443\u043C\u043C\u0430\u0440\u043D\u043E\u0435 \u0447\u0438\u0441\u043B\u043E \u0441\u0431\u043E\u0440\u0449\u0438\u043A\u043E\u0432, \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u044E\u0449\u0438\u0445\u0441\u044F \u0432 \u0434\u0430\u043D\u043D\u043E\u0439 \u0438\u043D\u0441\u0442\u0430\u043B\u044F\u0446\u0438\u0438 Jenkins. \u0414\u0430\u043D\u043D\u044B\u0435 \u0447\u0438\u0441\u043B\u0430 \u043C\u043E\u0433\u0443\u0442 \u043C\u0435\u043D\u044F\u0442\u044C\u0441\u044F \u0432 \u0437\u0430\u0432\u0438\u0441\u0438\u043C\u043E\u0441\u0442\u0438 \u043E\u0442 \u0442\u043E\u0433\u043E, \u0430\u043A\u0442\u0438\u0432\u043D\u044B \u0438\u043B\u0438 \u043D\u0435\u0442 \u0443\u0437\u043B\u044B \u0441\u0431\u043E\u0440\u043A\u0438.
\u041A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E \u0437\u0430\u043D\u044F\u0442\u044B\u0445 \u0441\u0431\u043E\u0440\u0449\u0438\u043A\u043E\u0432
This line tracks the number of executors (among the executors counted above) that are carrying out builds. The ratio of this to the total number of executors gives you the resource utilization. If all your executors are busy for a prolonged period of time, consider adding more computers to your Jenkins cluster.
Queue length
This is the number of jobs that are in the build queue, waiting for an available executor (of this computer, of this label, or in this Jenkins, respectively.) This doesn''t include jobs that are in the quiet period, nor does it include jobs that are in the queue because earlier builds are still in progress. If this line ever goes above 0, that means your Jenkins will run more builds by adding more computers.
The graph is exponential moving average of periodically collected data values. 3 timespans are updated every 10 seconds, 1 minute, and 1 hour respectively. -title=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0430 \u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0438: {0} +title=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0430 \u043D\u0430\u0433\u0440\u0443\u0437\u043A\u0438: {0} diff --git a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_ru.properties b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_ru.properties new file mode 100644 index 0000000000..8978c0fab7 --- /dev/null +++ b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_ru.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=\u0412\u0435\u0440\u043D\u0443\u0442\u044C\u0441\u044F \u043A \u043F\u0440\u0438\u0431\u043E\u0440\u043D\u043E\u0439 \u043F\u0430\u043D\u0435\u043B\u0438 +No\ matching\ record\ found=\u0421\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u0445 \u0437\u0430\u043F\u0438\u0441\u0435\u0439 \u043D\u0435 \u043D\u0430\u0439\u0434\u0435\u043D\u043E +cause.1=\u0412\u043E\u0437\u043C\u043E\u0436\u043D\u043E, \u0444\u0430\u0439\u043B \u043D\u0435 \u0431\u044B\u043B \u0441\u043E\u0437\u0434\u0430\u043D \u043F\u043E\u0434 \u0414\u0436\u0435\u043D\u043A\u0438\u043D\u0441. \u041C\u043E\u0436\u0435\u0442 \u0431\u044B\u0442\u044C, \u044D\u0442\u043E \u0432\u0435\u0440\u0441\u0438\u044F, \u0447\u0442\u043E \u043A\u0442\u043E-\u0442\u043E \u043F\u043E\u0441\u0442\u0440\u043E\u0438\u043B \u043B\u043E\u043A\u0430\u043B\u044C\u043D\u043E \u043D\u0430 \u0435\u0433\u043E / \u0435\u0435 \u0441\u043E\u0431\u0441\u0442\u0432\u0435\u043D\u043D\u043E\u0439 \u043C\u0430\u0448\u0438\u043D\u0435. +cause.2=\u0412\u043E\u0437\u043C\u043E\u0436\u043D\u043E, \u044D\u0442\u0438 \u043F\u0440\u043E\u0435\u043A\u0442\u044B \u043D\u0435 \u043D\u0430\u0441\u0442\u0440\u043E\u0435\u043D \u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u043E, \u0430 \u043D\u0435 \u0437\u0430\u043F\u0438\u0441\u044C \u043E\u0442\u043F\u0435\u0447\u0430\u0442\u043A\u043E\u0432 \u043F\u0430\u043B\u044C\u0446\u0435\u0432. \u041F\u0440\u043E\u0432\u0435\u0440\u044C\u0442\u0435 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u043F\u0440\u043E\u0435\u043A\u0442\u0430. +description=\u041E\u0442\u043F\u0435\u0447\u0430\u0442\u043A\u0430\u043C \u043F\u0430\u043B\u044C\u0446\u0435\u0432 {0} \u043D\u0435 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u043D\u0438 \u043E\u0434\u043D\u043E\u043C\u0443 \u0438\u0437 \u0437\u0430\u043F\u0438\u0441\u0430\u043D\u043D\u044B\u0445 \u0434\u0430\u043D\u043D\u044B\u0445. diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_ru.properties b/core/src/main/resources/hudson/model/ParametersAction/index_ru.properties index bc61e440c5..26c54acc08 100644 --- a/core/src/main/resources/hudson/model/ParametersAction/index_ru.properties +++ b/core/src/main/resources/hudson/model/ParametersAction/index_ru.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Build=\u0421\u0431\u043E\u0440\u043A\u0430 -Parameters=\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u044B \u0441\u0431\u043E\u0440\u043A\u0438 +Parameters=\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u044B diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ru.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ru.properties new file mode 100644 index 0000000000..94e9be4c7c --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ru.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Build=\u0421\u043E\u0431\u0440\u0430\u0442\u044C +LOADING=\u0417\u0410\u0413\u0420\u0423\u0417\u041A\u0410 +description=\u0414\u043B\u044F \u044D\u0442\u043E\u0439 \u0441\u0431\u043E\u0440\u043A\u0438 \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u044B \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u044B: diff --git a/core/src/main/resources/hudson/model/Run/configure_ru.properties b/core/src/main/resources/hudson/model/Run/configure_ru.properties index 51b670bbf0..ca396d9bc1 100644 --- a/core/src/main/resources/hudson/model/Run/configure_ru.properties +++ b/core/src/main/resources/hudson/model/Run/configure_ru.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Description=\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 -DisplayName=\u0418\u043C\u044F +DisplayName=\u041E\u0442\u043E\u0431\u0440\u0430\u0436\u0430\u0435\u043C\u043E\u0435 \u0438\u043C\u044F LOADING=\u0417\u0410\u0413\u0420\u0423\u0417\u041A\u0410 Save=\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C diff --git a/core/src/main/resources/hudson/model/Run/console_ru.properties b/core/src/main/resources/hudson/model/Run/console_ru.properties index 3dfaaed673..090ddbcf99 100644 --- a/core/src/main/resources/hudson/model/Run/console_ru.properties +++ b/core/src/main/resources/hudson/model/Run/console_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u0412\u044B\u0432\u043E\u0434 \u043A\u043E\u043D\u0441\u043E\u043B\u0438 -skipSome=\u041F\u0440\u043E\u043F\u0443\u0449\u0435\u043D\u043E {0,number,integer} KB.. \u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0432\u0441\u0451 +Console\ Output=\u0412\u044B\u0432\u043E\u0434 \u043D\u0430 \u043A\u043E\u043D\u0441\u043E\u043B\u044C +skipSome=\u041F\u0440\u043E\u043F\u0443\u0449\u0435\u043D\u043E {0,number,integer} KB.. \u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0432\u0435\u0441\u044C Log diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ru.properties index 50dd17ccc9..016c25b717 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ru.properties @@ -22,4 +22,5 @@ NewVersionAvailable=\u041D\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u0441\u0438\u044F Jenkins ({0}) \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430 \u0434\u043B\u044F \u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0438 (\u0441\u043F\u0438\u0441\u043E\u043A \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u0439). Or\ Upgrade\ Automatically=\u0418\u043B\u0438 \u043E\u0431\u043D\u043E\u0432\u0438\u0442\u044C \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 +UpgradeComplete=\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 \u0434\u043E Jenkins {0} \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u043E, \u043E\u0436\u0438\u0434\u0430\u0435\u0442 \u043F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0438. UpgradeProgress=\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 Jenkins {0} \u0432\u044B\u043F\u043E\u043B\u043D\u044F\u0435\u0442\u0441\u044F \u0438\u043B\u0438 \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u043B\u043E\u0441\u044C \u043D\u0435\u0443\u0434\u0430\u0447\u0435\u0439. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_ru.properties new file mode 100644 index 0000000000..a8c816cc4f --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_ru.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Details=\u041F\u043E\u0434\u0440\u043E\u0431\u043D\u0435\u0435 +Failure=\u041E\u0448\u0438\u0431\u043A\u0430 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ru.properties index a093953499..7536a6a937 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing=\u0423\u0441\u0442\u0430\u043D\u0430\u0432\u043B\u0438\u0432\u0430\u0435\u0442\u0441\u044F +Installing=\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0430 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ru.properties index d8a0acfd44..e1484fa9da 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=\u041E\u0436\u0438\u0434\u0430\u043D\u0438\u0435 +Pending=\u041E\u0436\u0438\u0434\u0430\u0435\u0442 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ru.properties index abdc68ec4f..d83534e47f 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Success=\u0423\u0441\u043F\u0435\u0445 +Success=\u0423\u0441\u043F\u0435\u0448\u043D\u043E diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_ru.properties new file mode 100644 index 0000000000..3a5d5f5125 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_ru.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Canceled=\u041E\u0442\u043C\u0435\u043D\u0451\u043D diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ru.properties index 74d23e9b5b..89287be8dd 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restarting\ Jenkins=Jenkins \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A\u0430\u0435\u0442\u0441\u044F +Restarting\ Jenkins=\u041F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0430 Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_ru.properties index a91814440b..948b96857f 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_ru.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -warning=\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C Jenkins \u043F\u043E\u0441\u043B\u0435 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0438 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0439 \u0438 \u043E\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u044F \u0430\u043A\u0442\u0438\u0432\u043D\u043E\u0441\u0442\u0438 +Go\ back\ to\ the\ top\ page=\u0412\u0435\u0440\u043D\u0443\u0442\u044C\u0441\u044F \u043D\u0430 \u0433\u043B\u0430\u0432\u043D\u0443\u044E \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0443 +warning=\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C Jenkins \u043F\u043E \u043E\u043A\u043E\u043D\u0447\u0430\u043D\u0438\u044E \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0438 \u0438 \u043E\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0438 \u0430\u043A\u0442\u0438\u0432\u043D\u044B\u0445 \u0437\u0430\u0434\u0430\u0447 +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=\u0432\u044B \u0441\u043C\u043E\u0436\u0435\u0442\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044B\u0435 \u043F\u043B\u0430\u0433\u0438\u043D\u044B \u043F\u0440\u044F\u043C\u043E \u0441\u0435\u0439\u0447\u0430\u0441 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 511ca15e59..5ed90c0078 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing\ Plugins/Upgrades=\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0430 \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u0432/\u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0439 +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 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ru.properties index 8c0b2260b5..558aa2cf7f 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u0412\u0435\u0440\u043D\u0443\u0442\u044C\u0441\u044F \u043A Dashboard -Manage\ Jenkins=\u041D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C Jenkins -Manage\ Plugins=\u041D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C \u043F\u043B\u0430\u0433\u0438\u043D\u044B +Back\ to\ Dashboard=\u0412\u0435\u0440\u043D\u0443\u0442\u044C\u0441\u044F \u043A \u0433\u043B\u0430\u0432\u043D\u043E\u0439 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0435 +Manage\ Jenkins= +Manage\ Plugins=\u0423\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043F\u043B\u0430\u0433\u0438\u043D\u0430\u043C\u0438 diff --git a/core/src/main/resources/hudson/model/User/index_ru.properties b/core/src/main/resources/hudson/model/User/index_ru.properties index a48a55a569..3ee0bcaf1a 100644 --- a/core/src/main/resources/hudson/model/User/index_ru.properties +++ b/core/src/main/resources/hudson/model/User/index_ru.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ User\ Id=Id \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F +Groups=\u0413\u0440\u0443\u043F\u043F\u044B +Jenkins\ User\ Id=\u0418\u043C\u044F \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_ru.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_ru.properties index 910151d597..bfc3671059 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_ru.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_ru.properties @@ -26,3 +26,4 @@ Last\ Active=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u0430\u043a On=\u041F\u0440\u043E\u0435\u043A\u0442 People=\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0438 User\ Id=\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C +blurb=\u0422\u0430\u0431\u043B\u0438\u0446\u0430 \u0432\u043A\u043B\u044E\u0447\u0430\u0435\u0442 \u0432\u0441\u0435\u0445 \u0438\u0437\u0432\u0435\u0441\u0442\u043D\u044B\u0445 Jenkins \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0435\u0439, \u0432\u043A\u043B\u044E\u0447\u0430\u044F \u0432\u0441\u0435\u0445 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0435\u0439, \u043A\u043E\u0442\u043E\u0440\u044B\u0445 \u0442\u0435\u043A\u0443\u0449\u0430\u044F \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u0438 \u043C\u043E\u0436\u0435\u0442 \u043F\u0435\u0440\u0435\u0447\u0438\u0441\u043B\u0438\u0442\u044C, \u0442\u0430\u043A \u0436\u0435 \u0437\u0434\u0435\u0441\u044C \u043F\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044E\u0442 \u0432\u0441\u0435 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0438, \u0443\u043F\u043E\u043C\u044F\u043D\u0443\u0442\u044B\u0435 \u0432 \u0441\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u044F\u0445 \u043A\u043E\u043C\u043C\u0438\u0442\u043E\u0432 \u0432 \u0437\u0430\u043F\u0438\u0441\u0430\u043D\u043D\u044B\u0445 \u043B\u043E\u0433\u0430\u0445 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u0439. diff --git a/core/src/main/resources/hudson/model/View/People/index_ru.properties b/core/src/main/resources/hudson/model/View/People/index_ru.properties new file mode 100644 index 0000000000..23bb982d05 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_ru.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +User\ Id=\u0410\u0439\u0414\u0438 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F diff --git a/core/src/main/resources/hudson/model/View/newJob_ru.properties b/core/src/main/resources/hudson/model/View/newJob_ru.properties index 7b525f3fb1..f5facf1121 100644 --- a/core/src/main/resources/hudson/model/View/newJob_ru.properties +++ b/core/src/main/resources/hudson/model/View/newJob_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -CopyExisting=\u041A\u043E\u043F\u0438\u044F \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 {0} -JobName={0} \u0438\u043C\u044F +CopyExisting=\u041A\u043E\u043F\u0438\u044F \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044E\u0449\u0435\u0433\u043E {0}''\u0430 +JobName=\u0418\u043C\u044F {0}''\u0430 diff --git a/core/src/main/resources/hudson/model/View/noJob_ru.properties b/core/src/main/resources/hudson/model/View/noJob_ru.properties index 93d172e1e2..1e5789ab9f 100644 --- a/core/src/main/resources/hudson/model/View/noJob_ru.properties +++ b/core/src/main/resources/hudson/model/View/noJob_ru.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. description_1=\u0421 \u044D\u0442\u0438\u043C \u0432\u0438\u0434\u043E\u043C \u043D\u0435 \u0441\u0432\u044F\u0437\u0430\u043D\u043E \u043D\u0438 \u043E\u0434\u043D\u043E\u0439 \u0437\u0430\u0434\u0430\u0447\u0438, \u043B\u0438\u0431\u043E \u0443 \u0432\u0430\u0441 \u043D\u0435\u0434\u043E\u0441\u0442\u0430\u0442\u043E\u0447\u043D\u043E \u043F\u0440\u0430\u0432 \u0434\u043B\u044F \u0438\u0445 \u043F\u0440\u043E\u0441\u043C\u043E\u0442\u0440\u0430. +description_2=\u0412\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0434\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u0435 \u0437\u0430\u0434\u0430\u0447\u0438 \u043A \u044D\u0442\u043E\u043C\u0443 \u0432\u0438\u0434\u0443 \u0438\u043B\u0438 \u0441\u043E\u0437\u0434\u0430\u0442\u044C \u043D\u043E\u0432\u0443\u044E \u0437\u0430\u0434\u0430\u0447\u0443 \u0434\u043B\u044F \u044D\u0442\u043E\u0433\u043E \u0432\u0438\u0434\u0430. diff --git a/core/src/main/resources/hudson/model/View/sidepanel_ru.properties b/core/src/main/resources/hudson/model/View/sidepanel_ru.properties index 8f8c559eed..b4fd18318a 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_ru.properties @@ -20,10 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewJob=\u041D\u043E\u0432\u0430\u044F \u0437\u0430\u0434\u0430\u0447\u0430 -People=\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0438 +NewJob=\u0421\u043E\u0437\u0434\u0430\u0442\u044C {0} +People=\u041B\u044E\u0434\u0438 Build\ History=\u0418\u0441\u0442\u043e\u0440\u0438\u044f \u0441\u0431\u043e\u0440\u043e\u043a -Edit\ View=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0438\u0434 +Edit\ View=\u041D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C \u0432\u0438\u0434 Delete\ View=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0432\u0438\u0434 -Project\ Relationship= -Check\ File\ Fingerprint=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u043e\u043a \u0444\u0430\u0439\u043b\u0430 +Project\ Relationship=\u0421\u0432\u044F\u0437\u0438 \u043F\u0440\u043E\u0435\u043A\u0442\u043E\u0432 + +Check\ File\ Fingerprint=\u041F\u0440\u043E\u0432\u0435\u0440\u0438\u0442\u044C \u0445\u044D\u0448 \u0444\u0430\u0439\u043B\u0430 diff --git a/core/src/main/resources/hudson/search/UserSearchProperty/config_ru.properties b/core/src/main/resources/hudson/search/UserSearchProperty/config_ru.properties new file mode 100644 index 0000000000..c1f88e0b72 --- /dev/null +++ b/core/src/main/resources/hudson/search/UserSearchProperty/config_ru.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Case-sensitivity=\u0427\u0443\u0432\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u044C \u043A \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0443 +Insensitive\ search\ tool=\u041F\u043E\u0438\u0441\u043A \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u043E-\u043D\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043C\u044B\u0439 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ru.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ru.properties index 9cdd37ef68..a7f7b93bd7 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ru.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -sign\ up=\u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f +sign\ up=\u043F\u0440\u0438\u0441\u043E\u0435\u0434\u0438\u043D\u0438\u0442\u044C\u0441\u044F diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_ru.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_ru.properties new file mode 100644 index 0000000000..145ac8408f --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_ru.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Success=\u0412\u044B \u0443\u0441\u043F\u0435\u0448\u043D\u043E \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043E\u0432\u0430\u043B\u0438\u0441\u044C!. +description=\u0422\u0435\u043F\u0435\u0440\u044C \u0412\u044B \u0437\u0430\u0448\u043B\u0438 \u0412\u0435\u0440\u043D\u0443\u0442\u044C\u0441\u044F \u043A \u0433\u043B\u0430\u0432\u043D\u043E\u0439 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0435 . diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_ru.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_ru.properties new file mode 100644 index 0000000000..9ded233ffd --- /dev/null +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_ru.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Unprotected\ URLs=\u041D\u0435\u0437\u0430\u0449\u0438\u0449\u0435\u043D\u043D\u044B\u0435 URL +blurb=\u042D\u0442\u0438 URL (\u0438 URL, \u043D\u0430\u0447\u0438\u043D\u0430\u044E\u0449\u0438\u0435\u0441\u044F \u0441 \u044D\u0442\u0438\u0445 \u043F\u0440\u0438\u0441\u0442\u0430\u0432\u043E\u043A \u043F\u043B\u044E\u0441 /) \u043D\u0435 \u0434\u043E\u043B\u0436\u043D\u044B \u0442\u0440\u0435\u0431\u043E\u0432\u0430\u0442\u044C \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u0438. \u0415\u0441\u043B\u0438 \u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E, \u0441\u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0443\u0439\u0442\u0435 \u0441\u0432\u043E\u0439 \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440 \u0442\u0430\u043A, \u0447\u0442\u043E\u0431\u044B \u0442\u0430\u043A\u0438\u0435 \u0437\u0430\u043F\u0440\u043E\u0441\u044B \u043F\u0435\u0440\u0435\u0434\u0430\u0432\u0430\u043B\u0438\u0441\u044C \u043D\u0430\u043F\u0440\u044F\u043C\u0443\u044E \u0432 Jenkins, \u0431\u0435\u0437 \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u043E\u0441\u0442\u0438 \u0432\u0445\u043E\u0434\u0430 \u0432 \u0441\u0438\u0441\u0442\u0435\u043C\u0443. diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ru.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ru.properties index 935faed9ee..f8095deecd 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ru.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=\u0412\u043E\u0439\u0442\u0438 +login=iibrikov diff --git a/core/src/main/resources/hudson/tasks/BatchFile/config_ru.properties b/core/src/main/resources/hudson/tasks/BatchFile/config_ru.properties new file mode 100644 index 0000000000..eb252ce34d --- /dev/null +++ b/core/src/main/resources/hudson/tasks/BatchFile/config_ru.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Command=\u041A\u043E\u043C\u043C\u0430\u043D\u0434\u0430 diff --git a/core/src/main/resources/hudson/tasks/BuildTrigger/config_ru.properties b/core/src/main/resources/hudson/tasks/BuildTrigger/config_ru.properties index deb8f83621..c12d598965 100644 --- a/core/src/main/resources/hudson/tasks/BuildTrigger/config_ru.properties +++ b/core/src/main/resources/hudson/tasks/BuildTrigger/config_ru.properties @@ -21,4 +21,6 @@ # THE SOFTWARE. Projects\ to\ build=\u0421\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442\u044b -Trigger\ even\ if\ the\ build\ is\ unstable=\u0421\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u0434\u0430\u0436\u0435 \u0435\u0441\u043b\u0438 \u0441\u0431\u043e\u0440\u043a\u0430 \u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u0430 +Trigger\ even\ if\ the\ build\ fails=\u0421\u0440\u0430\u0431\u0430\u0442\u044B\u0432\u0430\u0442\u044C \u0434\u0430\u0436\u0435 \u0435\u0441\u043B\u0438 \u0441\u0431\u043E\u0440\u043A\u0430 \u043F\u0440\u043E\u0432\u0430\u043B\u0438\u043B\u0430\u0441\u044C +Trigger\ even\ if\ the\ build\ is\ unstable=\u0421\u0440\u0430\u0431\u0430\u0442\u044B\u0432\u0430\u0442\u044C \u0434\u0430\u0436\u0435 \u0435\u0441\u043B\u0438 \u0441\u0431\u043E\u0440\u043A\u0430 \u043D\u0435\u0441\u0442\u0430\u0431\u0438\u043B\u044C\u043D\u0430 +Trigger\ only\ if\ build\ succeeds=\u0421\u0440\u0430\u0431\u0430\u0442\u044B\u0432\u0430\u0442\u044C \u0442\u043E\u043B\u044C\u043A\u043E \u0435\u0441\u043B\u0438 \u0441\u0431\u043E\u0440\u043A\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u0430 diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_ru.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_ru.properties index 2f13e34d6d..f05ea7f0be 100644 --- a/core/src/main/resources/hudson/tasks/LogRotator/config_ru.properties +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_ru.properties @@ -20,7 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Days\ to\ keep\ artifacts=\u0421\u043A\u043E\u043B\u044C\u043A\u043E \u0434\u043D\u0435\u0439 \u0445\u0440\u0430\u043D\u0438\u0442\u044C \u0430\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u044B Days\ to\ keep\ builds=\u0421\u043a\u043e\u043b\u044c\u043a\u043e \u0434\u043d\u0435\u0439 \u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0441\u0431\u043e\u0440\u043a\u0438 +Max\ #\ of\ builds\ to\ keep\ with\ artifacts=\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u043E\u0435 \u043A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E \u0441\u0431\u043E\u0440\u043E\u043A, \u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u0431\u0443\u0434\u0443\u0442 \u0441\u043E\u0445\u0440\u0430\u043D\u0435\u043D\u044B \u0432\u043C\u0435\u0441\u0442\u0435 \u0441 \u0430\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0430\u043C\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=\u0435\u0441\u043B\u0438 \u0437\u0430\u043F\u043E\u043B\u043D\u0435\u043D\u043E, \u0442\u043E \u0430\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u044B \u043E\u0442 \u0441\u0431\u043E\u0440\u043E\u043A \u0441\u0442\u0430\u0440\u0448\u0435 \u0443\u043A\u0430\u0437\u0430\u043D\u043D\u043E\u0433\u043E \u043A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u0430 \u0434\u043D\u0435\u0439 \u0431\u0443\u0434\u0443\u0442 \u0443\u0434\u0430\u043B\u0435\u043D\u044B, \u043D\u043E \u043B\u043E\u0433\u0438, \u0438\u0441\u0442\u043E\u0440\u0438\u044F, \u043E\u0442\u0447\u0451\u0442\u044B \u0438 \u0442. \u0434. \u043E\u0442 \u0441\u0431\u043E\u0440\u043A\u0438 \u0431\u0443\u0434\u0443\u0442 \u0441\u043E\u0445\u0440\u0430\u043D\u0435\u043D\u044B if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=\u0415\u0441\u043b\u0438 \u0443\u043a\u0430\u0437\u0430\u043d\u043e, \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e \u0441\u0431\u043e\u0440\u043a\u0430\u0445 \u0431\u0443\u0434\u0435\u0442 \u0445\u0440\u0430\u043d\u0438\u0442\u044c\u0441\u044f \u044d\u0442\u043e \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0434\u043d\u0435\u0439. Max\ \#\ of\ builds\ to\ keep=\u0421\u043a\u043e\u043b\u044c\u043a\u043e \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0445 \u0441\u0431\u043e\u0440\u043e\u043a \u0445\u0440\u0430\u043d\u0438\u0442\u044c if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=\u0415\u0441\u043b\u0438 \u0443\u043a\u0430\u0437\u0430\u043d\u043e, \u0431\u0443\u0434\u0435\u0442 \u0445\u0440\u0430\u043d\u0438\u0442\u044c\u0441\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e\u0431 \u044d\u0442\u043e\u043c \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0435 \u0441\u0431\u043e\u0440\u043e\u043a. diff --git a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_ru.properties b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_ru.properties index 63286e7a47..c733b2c767 100644 --- a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_ru.properties +++ b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_ru.properties @@ -27,4 +27,5 @@ since.before=\u0421' ' since.after=' ' Standard\ Output=\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 \u0432\u044b\u0432\u043e\u0434 (STDOUT) Error\ Message=\u0421\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u0435 \u043E\u0431 \u043E\u0448\u0438\u0431\u043A\u0435 +Stacktrace=\u0421\u0442\u0435\u043A \u0432\u044B\u0437\u043E\u0432\u043E\u0432 Standard\ Error=\u0412\u044b\u0432\u043e\u0434 \u043e\u0448\u0438\u0431\u043e\u043a (STDERR) diff --git a/core/src/main/resources/hudson/tasks/junit/CaseResult/list_ru.properties b/core/src/main/resources/hudson/tasks/junit/CaseResult/list_ru.properties new file mode 100644 index 0000000000..a299087d27 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/junit/CaseResult/list_ru.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Build=\u0421\u0431\u043E\u0440\u043A\u0430 +Test\ Description=\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 \u0442\u0435\u0441\u0442\u0430 +Test\ Duration=\u0414\u043B\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u044C \u0442\u0435\u0441\u0442\u0430 +Test\ Result=\u0420\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442 \u0442\u0435\u0441\u0442\u0430 diff --git a/core/src/main/resources/hudson/tasks/junit/History/index_ru.properties b/core/src/main/resources/hudson/tasks/junit/History/index_ru.properties new file mode 100644 index 0000000000..0015664652 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/junit/History/index_ru.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Newer=\u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0435 +Older=\u0431\u043E\u043B\u0435\u0435 \u0441\u0442\u0430\u0440\u044B\u0435 +title=\u0418\u0441\u0442\u043E\u0440\u0438\u044F diff --git a/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_ru.properties b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_ru.properties index 6e20422116..7fda5921b4 100644 --- a/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_ru.properties +++ b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_ru.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Show\ all\ failed\ tests=\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u043F\u0440\u043E\u0432\u0430\u043B\u0438\u0432\u0448\u0438\u0435\u0441\u044F \u0442\u0435\u0441\u0442\u044B Test\ Result=\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0442\u0435\u0441\u0442\u0430 diff --git a/core/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/TestResultAction/index_ru.properties b/core/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/TestResultAction/index_ru.properties new file mode 100644 index 0000000000..8708f0282e --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/TestResultAction/index_ru.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Fail=\u041E\u0448\u0438\u0431\u043A\u0438 +Test=\u0422\u0435\u0441\u0442\u044B +Total=\u0412\u0441\u0435\u0433\u043E diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_ru.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_ru.properties index a45d0ffa59..1e60a9a153 100644 --- a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_ru.properties +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_ru.properties @@ -21,11 +21,12 @@ # THE SOFTWARE. All\ Failed\ Tests=\u0412\u0441\u0435 \u043f\u0440\u043e\u0432\u0430\u043b\u0438\u0432\u0448\u0438\u0435\u0441\u044f \u0442\u0435\u0441\u0442\u044b -Skip=\u041F\u0440\u043E\u043F\u0443\u0441\u0442\u0438\u0442\u044C +Loading...=\u0417\u0430\u0433\u0440\u0443\u0437\u043A\u0430... +Skip=\u041F\u0440\u043E\u043F\u0443\u0449\u0435\u043D\u043E Test\ Name=\u0418\u043c\u044f \u0442\u0435\u0441\u0442\u0430 Duration=\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c Age=\u0412\u043e\u0437\u0440\u0430\u0441\u0442 All\ Tests=\u0412\u0441\u0435 \u0442\u0435\u0441\u0442\u044b -Fail=\u041d\u0435\u0443\u0434\u0430\u0447\u0430 -diff=diff -Total=\u0418\u0442\u043e\u0433\u043e +Fail=\u041D\u0435 \u043F\u0440\u043E\u0439\u0434\u0435\u043D\u043E +diff=\u0438\u0437\u043C. +Total=\u0412\u0441\u0435\u0433\u043E diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/list_ru.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/list_ru.properties new file mode 100644 index 0000000000..b8799d337b --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/list_ru.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Build=\u0421\u0431\u043E\u0440\u043A\u0430 +Description=\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 +Duration=\u041F\u0440\u043E\u0434\u043E\u043B\u0436\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u044C +Fail=\u041E\u0448\u0438\u0431\u043E\u043A +Skip=\u041F\u0440\u043E\u043F\u0443\u0448\u0435\u043D\u043E +Total=\u0412\u0441\u0435\u0433\u043E diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_ru.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_ru.properties index bc6cb15b2e..3264822851 100644 --- a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_ru.properties @@ -22,4 +22,4 @@ History=\u0418\u0441\u0442\u043E\u0440\u0438\u044F Next\ Build=\u0421\u043B\u0435\u0434\u0443\u044E\u0449\u0430\u044F \u0421\u0431\u043E\u0440\u043A\u0430 -Previous\ Build=\u041F\u0440\u0435\u0434\u044B\u0434\u0443\u0449\u0430\u044F \u0421\u0431\u043E\u0440\u043A\u0430 +Previous\ Build=\u041F\u0440\u0435\u0434\u044B\u0434\u0443\u0449\u0430\u044F \u0441\u0431\u043E\u0440\u043A\u0430 diff --git a/core/src/main/resources/hudson/tasks/test/TestResult/index_ru.properties b/core/src/main/resources/hudson/tasks/test/TestResult/index_ru.properties index 124d828723..768b4c427c 100644 --- a/core/src/main/resources/hudson/tasks/test/TestResult/index_ru.properties +++ b/core/src/main/resources/hudson/tasks/test/TestResult/index_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -took=\u0417\u0430\u043D\u044F\u043B\u043E {0} +took=\u0417\u0430\u043D\u044F\u043B\u043E {}. diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_ru.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_ru.properties index 43695d0366..78e365d9d6 100644 --- a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_ru.properties +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Test\ Result\ Trend=\u0413\u0440\u0430\u0444\u0438\u043a \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 +Test\ Result\ Trend=\u0413\u0440\u0430\u0444\u0438\u043A \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u043E\u0432 \u0442\u0435\u0441\u0442\u043E\u0432 show\ test\ \#\ and\ failure\ \#=\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0442\u0435\u0441\u0442\u043e\u0432 \u0438 \u043e\u0448\u0438\u0431\u043e\u043a just\ show\ failures=\u043F\u043E\u043A\u0430\u0437\u044B\u0432\u0430\u0442\u044C \u0442\u043E\u043B\u044C\u043A\u043E \u043D\u0435\u0443\u0434\u0430\u0447\u0438 enlarge=\u0443\u0432\u0435\u043B\u0438\u0447\u0438\u0442\u044C diff --git a/core/src/main/resources/hudson/tools/InstallSourceProperty/config_ru.properties b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_ru.properties index 772e547632..32e59fd75e 100644 --- a/core/src/main/resources/hudson/tools/InstallSourceProperty/config_ru.properties +++ b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ Installer=\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0438\u043D\u0441\u0442\u0430\u043B\u043B\u044F\u0442\u043E\u0440 -Delete\ Installer=\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0438\u043D\u0441\u0442\u0430\u043B\u043B\u044F\u0442\u043E\u0440 +Add\ Installer=\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u0449\u0438\u043A +Delete\ Installer=\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u0449\u0438\u043A diff --git a/core/src/main/resources/hudson/tools/JDKInstaller/config_ru.properties b/core/src/main/resources/hudson/tools/JDKInstaller/config_ru.properties index 28d96ce96e..222a4d37bf 100644 --- a/core/src/main/resources/hudson/tools/JDKInstaller/config_ru.properties +++ b/core/src/main/resources/hudson/tools/JDKInstaller/config_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -I\ agree\ to\ the\ Java\ SE\ Development\ Kit\ License\ Agreement=\u042F \u0441\u043E\u0433\u043B\u0430\u0441\u0435\u043D \u0441 \u041B\u0438\u0446\u0435\u043D\u0437\u0438\u043E\u043D\u043D\u044B\u043C \u0421\u043E\u0433\u043B\u0430\u0448\u0435\u043D\u0438\u0435\u043C Java SE Development Kit +I\ agree\ to\ the\ Java\ SE\ Development\ Kit\ License\ Agreement=\u042F \u0441\u043E\u0433\u043B\u0430\u0441\u0435\u043D \u0441 \u043B\u0438\u0446\u0435\u043D\u0437\u0438\u043E\u043D\u043D\u044B\u043C \u0441\u043E\u0433\u043B\u0430\u0448\u0435\u043D\u0438\u0435\u043C Java SE Development Kit Version=\u0412\u0435\u0440\u0441\u0438\u044F diff --git a/core/src/main/resources/hudson/tools/ToolInstallation/config_ru.properties b/core/src/main/resources/hudson/tools/ToolInstallation/config_ru.properties new file mode 100644 index 0000000000..6c932e7529 --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolInstallation/config_ru.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Installation\ directory=\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u043E\u0447\u043D\u0430\u044F \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u044F +Name=\u0418\u043C\u044F diff --git a/core/src/main/resources/hudson/tools/ToolInstallation/global_ru.properties b/core/src/main/resources/hudson/tools/ToolInstallation/global_ru.properties index f33100498e..616e592e5c 100644 --- a/core/src/main/resources/hudson/tools/ToolInstallation/global_ru.properties +++ b/core/src/main/resources/hudson/tools/ToolInstallation/global_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description=\u0421\u043F\u0438\u0441\u043E\u043A {0} \u0438\u043D\u0441\u0442\u0430\u043B\u043B\u044F\u0446\u0438\u0439 \u0432 \u044D\u0442\u043E\u0439 \u0441\u0438\u0441\u0442\u0435\u043C\u0435 +description=\u0421\u043F\u0438\u0441\u043E\u043A {0} \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043E\u043A \u0432 \u044D\u0442\u043E\u0439 \u0441\u0438\u0441\u0442\u0435\u043C\u0435 label.add=\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C {0} label.delete=\u0423\u0434\u0430\u043B\u0438\u0442\u044C {0} -title={0} \u0438\u043D\u0441\u0442\u0430\u043B\u043B\u044F\u0446\u0438\u0439 (\u0438\u044F) +title={0} \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043E\u043A diff --git a/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_ru.properties b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_ru.properties index ea566faecb..98e7d50778 100644 --- a/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_ru.properties +++ b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_ru.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Home=\u0414\u043E\u043C +Home=\u041D\u0430 \u0433\u043B\u0430\u0432\u043D\u0443\u044E List\ of\ tool\ locations=\u0421\u043F\u0438\u0441\u043E\u043A \u0440\u0430\u0441\u043F\u043E\u043B\u043E\u0436\u0435\u043D\u0438\u0439 Name=\u0418\u043C\u044F diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_ru.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_ru.properties index 6ab1d16411..9e83af174c 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_ru.properties +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_ru.properties @@ -22,4 +22,4 @@ Polling\ Log=\u0416\u0443\u0440\u043D\u0430\u043B \u043E\u043F\u0440\u043E\u0441\u0430 View\ as\ plain\ text=\u041F\u0440\u043E\u0441\u043C\u043E\u0442\u0440\u0435\u0442\u044C \u043A\u0430\u043A \u043F\u0440\u043E\u0441\u0442\u043E\u0439 \u0442\u0435\u043A\u0441\u0442 -blurb=\u042D\u0442\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0430\u0435\u0442 \u0441\u043E\u0431\u044B\u0442\u0438\u044F \u0436\u0443\u0440\u043D\u0430\u043B\u0430 \u043E\u043F\u0440\u043E\u0441\u0430, \u043A\u043E\u0442\u043E\u0440\u044B\u0439 \u0432\u044B\u0437\u0432\u0430\u043B\u0438 \u044D\u0442\u0443 \u0441\u0431\u043E\u0440\u043A\u0443. +blurb=\u042D\u0442\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0430\u0435\u0442 \u0441\u043E\u0431\u044B\u0442\u0438\u044F \u0436\u0443\u0440\u043D\u0430\u043B\u0430 \u043E\u043F\u0440\u043E\u0441\u0430, \u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u0432\u044B\u0437\u0432\u0430\u043B\u0438 \u044D\u0442\u0443 \u0441\u0431\u043E\u0440\u043A\u0443. diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_ru.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_ru.properties index 8f07e723db..12040ec29a 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_ru.properties +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 {0} +title=\u0416\u0443\u0440\u043D\u0430\u043B \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0435\u0433\u043E \u043E\u043F\u0440\u043E\u0441\u0430 SCM Polling\ has\ not\ run\ yet.=\u041e\u043f\u0440\u043e\u0441 \u0435\u0449\u0435 \u043d\u0435 \u043f\u0440\u043e\u0432\u043e\u0434\u0438\u043b\u0441\u044f. diff --git a/core/src/main/resources/hudson/util/HudsonIsRestarting/index_ru.properties b/core/src/main/resources/hudson/util/HudsonIsRestarting/index_ru.properties new file mode 100644 index 0000000000..daf82f2747 --- /dev/null +++ b/core/src/main/resources/hudson/util/HudsonIsRestarting/index_ru.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Please\ wait\ while\ Jenkins\ is\ restarting=\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u0434\u043E\u0436\u0434\u0438\u0442\u0435, Jenkins \u043F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442\u0441\u044F +Your\ browser\ will\ reload\ automatically\ when\ Jenkins\ is\ ready.=\u041A\u043E\u0433\u0434\u0430 \u043F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0430 \u0431\u0443\u0434\u0435\u0442 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u0430, \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u0434\u043E\u043B\u0436\u043D\u0430 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u043E\u0431\u043D\u043E\u0432\u0438\u0442\u044C\u0441\u044F diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ru.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_ru.properties index b08d04ebeb..52df667fe0 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ru.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_ru.properties @@ -20,4 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Schedule\ a\ build=\u0417\u0430\u043F\u043B\u0430\u043D\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0441\u0431\u043E\u0440\u043A\u0443 +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=\u0421\u0442\u0430\u0440\u0442\u043E\u0432\u0430\u0442\u044C \u0441\u0431\u043E\u0440\u043A\u0443 +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 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ru.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ru.properties index 056b4aab29..6e24a0933e 100644 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ru.properties +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -New\ View=\u041D\u043E\u0432\u044B\u0439 \u0432\u0438\u0434 +New\ View=\u041D\u043E\u0432\u043E\u0435 \u043F\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043B\u0435\u043D\u0438\u0435 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ru.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ru.properties index 21a529539b..44fb86cc91 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ru.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=\u041A\u0440\u0430\u0439\u043D\u044F\u044F \u043F\u0440\u043E\u0434\u043E\u043B\u0436\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u044C +Last\ Duration=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u043F\u0440\u043E\u0434\u043E\u043B\u0436\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u044C diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_ru.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_ru.properties index e49747e90c..eb7d408d9a 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/column_ru.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e +N/A=\u041D\u0435 \u043F\u0440\u0438\u043C\u0435\u043D\u0438\u043C\u043E diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ru.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ru.properties index d22c79c9b7..22c46bbdb5 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ru.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=\u041A\u0440\u0430\u0439\u043D\u044F\u044F \u043D\u0435\u0443\u0434\u0430\u0447\u0430 +Last\ Failure=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u043D\u0435\u0443\u0434\u0430\u0447\u0430 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_ru.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_ru.properties index e49747e90c..5bfcba505d 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/column_ru.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e +N/A=\u041D\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043D\u043E. diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ru.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ru.properties index 07419dd9dd..5049da70dd 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ru.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=\u041A\u0440\u0430\u0439\u043D\u0438\u0439 \u0443\u0441\u043F\u0435\u0445 +Last\ Success=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u0438\u0439 \u0443\u0441\u043F\u0435\u0445 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_ru.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_ru.properties index 56e24e0ba0..cacdd15383 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/column_ru.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e \ No newline at end of file +N/A=\u041D/\u0414 diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ru.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ru.properties index 4751d59915..66a564d4e4 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ru.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=\u0421\u043E\u0441\u0442\u043E\u044F\u043D\u0438\u0435 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0435\u0439 \u0441\u0431\u043E\u0440\u043A\u0438 +Status\ of\ the\ last\ build=\u0421\u0442\u0430\u0442\u0443\u0441 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0435\u0439 \u0441\u0431\u043E\u0440\u043A\u0438 diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ru.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ru.properties index bd4d5ece96..572b44c8d3 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ru.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ru.properties @@ -20,4 +20,4 @@ # 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=\u041E\u0442\u0447\u0435\u0442 \u043F\u043E\u043A\u0430\u0437\u044B\u0432\u0430\u0435\u0442 \u0430\u0433\u0440\u0435\u0433\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0435 \u0441\u043E\u0441\u0442\u043E\u044F\u043D\u0438\u0435 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0438\u0445 \u0441\u0431\u043E\u0440\u043E\u043A +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u041C\u0435\u0442\u0435\u043E\u0441\u0432\u043E\u0434\u043A\u0430 \u043F\u043E\u043A\u0430\u0437\u044B\u0432\u0430\u0435\u0442 \u0430\u0433\u0440\u0435\u0433\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0435 \u0441\u043E\u0441\u0442\u043E\u044F\u043D\u0438\u0435 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0438\u0445 \u0441\u0431\u043E\u0440\u043E\u043A diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ru.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ru.properties index 2f6269849d..c683aa7d2d 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ru.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u0412\u044B\u0432\u043E\u0434 \u0432 \u043A\u043E\u043D\u0441\u043E\u043B\u044C +Console\ Output=\u0412\u044B\u0432\u043E\u0434 \u043A\u043E\u043D\u0441\u043E\u043B\u0438 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_ru.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_ru.properties index ca798b1e4a..cf39f28189 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_ru.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -trend=\u0433\u0440\u0430\u0444\u0438\u043A -More\ ...=\u0411\u043E\u043B\u044C\u0448\u0435 ... -for\ all=\u0432\u0441\u0435 \u0441\u0431\u043E\u0440\u043A\u0438 -for\ failures=\u0432\u0441\u0435 \u043D\u0435\u0443\u0434\u0430\u0447\u043D\u044B\u0435 +trend=\u0442\u0440\u0435\u043D\u0434 +More\ ...=\u0415\u0449\u0435 ... +for\ all=\u0434\u043B\u044F \u0432\u0441\u0435\u0445 +for\ failures=\u0434\u043B\u044F \u043D\u0435\u0443\u0434\u0430\u0447\u043D\u044B\u0445 diff --git a/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_ru.properties b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_ru.properties new file mode 100644 index 0000000000..165a5781c6 --- /dev/null +++ b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_ru.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Dismiss=\u041E\u0442\u043A\u043B\u043E\u043D\u0438\u0442\u044C +Setup\ Security=\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u0431\u0435\u0437\u043E\u043F\u0430\u0441\u043D\u043E\u0441\u0442\u0438 +blurb=\u041D\u0435\u0437\u0430\u0449\u0438\u0449\u0435\u043D\u043D\u044B\u0439 Jenkins \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u043A\u0430\u0436\u0434\u043E\u043C\u0443, \u0443 \u043A\u043E\u0433\u043E \u0435\u0441\u0442\u044C \u0434\u043E\u0441\u0442\u0443\u043F \u043A \u0441\u0435\u0442\u0438, \u0437\u0430\u043F\u0443\u0441\u043A\u0430\u0442\u044C \u043F\u0440\u043E\u0446\u0435\u0441\u0441\u044B \u043E\u0442 \u0432\u0430\u0448\u0435\u0433\u043E \u0438\u043C\u0435\u043D\u0438. \u0420\u0430\u0441\u0441\u043C\u043E\u0442\u0440\u0438\u0442\u0435 \u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E\u0441\u0442\u044C \u0432\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u044E \u043F\u043E \u043A\u0440\u0430\u0439\u043D\u0435\u0439 \u043C\u0435\u0440\u0435 \u0434\u043B\u044F \u0442\u043E\u0433\u043E, \u0447\u0442\u043E\u0431\u044B \u0438\u0437\u0431\u0435\u0436\u0430\u0442\u044C \u0437\u043B\u043E\u0443\u043F\u043E\u0442\u0440\u0435\u0431\u043B\u0435\u043D\u0438\u0439. diff --git a/core/src/main/resources/jenkins/management/PluginsLink/info_ru.properties b/core/src/main/resources/jenkins/management/PluginsLink/info_ru.properties new file mode 100644 index 0000000000..f5c6b539e9 --- /dev/null +++ b/core/src/main/resources/jenkins/management/PluginsLink/info_ru.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +updates\ available=\u0418\u043C\u0435\u044E\u0442\u0441\u044F \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F 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 24bb021334..11ac227c52 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,6 @@ # 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 -Labels=\u041c\u0435\u0442\u043a\u0438 -Node\ Properties= -Save=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \ No newline at end of file +Labels=\u041C\u0435\u0442\u043A\u0438 +Node\ Properties=\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u044D\u043A\u0437\u0435\u043C\u043F\u043B\u044F\u0440\u0430 +Save=\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_ru.properties index 75ae3d9a00..2e962ae468 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_cli_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_ru.properties @@ -21,3 +21,5 @@ # THE SOFTWARE. Available\ Commands=\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u044B +Jenkins\ CLI=\u041A\u043E\u043D\u0441\u043E\u043B\u044C\u043D\u044B\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u044B Jenkins +blurb=\u0421 \u043F\u043E\u043C\u043E\u0449\u044C\u044E \u043A\u043E\u043D\u0441\u043E\u043B\u044C\u043D\u044B\u0445 \u043A\u043E\u043C\u0430\u043D\u0434 Jenkins \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u0434\u043E\u0441\u0442\u0443\u043F \u043A \u0431\u043E\u043B\u044C\u0448\u043E\u043C\u0443 \u043A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u0439. \u0411\u043E\u043B\u0435\u0435 \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u0430\u044F \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F \u043D\u0430\u0445\u043E\u0434\u0438\u0442\u0441\u044F \u0432 \u0431\u0430\u0437\u0435 \u0437\u043D\u0430\u043D\u0438\u0439 Jenkins. \u0414\u043B\u044F \u0442\u043E\u0433\u043E, \u0447\u0442\u043E\u0431\u044B \u043D\u0430\u0447\u0430\u0442\u044C \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C\u0441\u044F \u043A\u043E\u043D\u0441\u043E\u043B\u044C\u043D\u044B\u043C\u0438 \u043A\u043E\u043C\u0430\u043D\u0434\u0430\u043C\u0438, \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u043E \u0441\u043A\u0430\u0447\u0430\u0442\u044C jenkins-cli.jar, \u0438 \u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u043F\u0430\u043A\u0435\u0442 \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u043C \u043E\u0431\u0440\u0430\u0437\u043E\u043C: diff --git a/core/src/main/resources/jenkins/model/Jenkins/_restart_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/_restart_ru.properties new file mode 100644 index 0000000000..a498e2f0db --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/_restart_ru.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Are\ you\ sure\ about\ restarting\ Jenkins?=\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C Jenkins? +Yes=\u0414\u0430 diff --git a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_ru.properties new file mode 100644 index 0000000000..6bb8af1af1 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_ru.properties @@ -0,0 +1,4 @@ +# 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. +Yes=\u0414\u0430 diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_ru.properties index a719015a10..7104163db5 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_ru.properties @@ -20,16 +20,16 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blue=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u0431\u044B\u043B\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u043E\u0439 -blue_anime=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u0431\u044B\u043B\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u043E\u0439. \u041D\u043E\u0432\u0430\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u0432 \u043F\u0440\u043E\u0446\u0435\u0441\u0441\u0435. -grey=\u041F\u0440\u043E\u0435\u043A\u0442 \u0435\u0449\u0451 \u043D\u0435 \u0440\u0430\u0437\u0443 \u043D\u0435 \u0441\u043E\u0431\u0438\u0440\u0430\u043B\u0441\u044F, \u0438\u043B\u0438 \u043E\u0442\u043A\u043B\u044E\u0447\u0435\u043D -grey_anime=\u041F\u0435\u0440\u0432\u0430\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u0432 \u043F\u0440\u043E\u0446\u0435\u0441\u0441\u0435 -health-00to20=\u0417\u0434\u043E\u0440\u043E\u0432\u044C\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 20% \u0438\u043B\u0438 \u043C\u0435\u043D\u044C\u0448\u0435. \u041D\u0430\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0443\u0440\u0441\u043E\u0440 \u043C\u044B\u0448\u0438 \u043D\u0430 \u0438\u043A\u043E\u043D\u043A\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0434\u043B\u044F -health-21to40=\u0417\u0434\u043E\u0440\u043E\u0432\u044C\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0438\u0437\u043C\u0435\u043D\u0438\u043B\u043E\u0441\u044C \u0441 20% \u043D\u0430 40%. \u0412\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u043D\u0430\u0432\u0435\u0441\u0442\u0438 \u043A\u0443\u0440\u0441\u043E\u0440 \u043C\u044B\u0448\u0438 \u043D\u0430 \u0438\u043A\u043E\u043D\u043A\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0434\u043B\u044F \u0431\u043E\u043B\u0435\u0435 \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438. -health-41to60=\u0417\u0434\u043E\u0440\u043E\u0432\u044C\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0431\u044B\u043B\u043E 40% \u0438 \u043F\u043E\u0432\u044B\u0441\u0438\u043B\u043E\u0441\u044C \u0434\u043E 60%. \u041D\u0430\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0443\u0440\u0441\u043E\u0440 \u043C\u044B\u0448\u0438 \u043D\u0430 \u0438\u043A\u043E\u043D\u043A\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0434\u043B\u044F \u0431\u043E\u043B\u0435\u0435 \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438. -health-61to80=\u0417\u0434\u043E\u0440\u043E\u0432\u044C\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0431\u044B\u043B\u043E 60% \u0438 \u043F\u043E\u0432\u044B\u0441\u0438\u043B\u043E\u0441\u044C \u0434\u043E 80%.\u041D\u0430\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0443\u0440\u0441\u043E\u0440 \u043C\u044B\u0448\u0438 \u043D\u0430 \u0438\u043A\u043E\u043D\u043A\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0434\u043B\u044F \u0431\u043E\u043B\u0435\u0435 \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438. -health-81plus=\u0417\u0434\u043E\u0440\u043E\u0432\u044C\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 80%. \u041D\u0430\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0443\u0440\u0441\u043E\u0440 \u043C\u044B\u0448\u0438 \u043D\u0430 \u0438\u043A\u043E\u043D\u043A\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0434\u043B\u044F \u0431\u043E\u043B\u0435\u0435 \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438. -red=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u043F\u0440\u043E\u0432\u0430\u043B\u0438\u043B\u0430\u0441\u044C. -red_anime=\u041F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0438\u0442\u0441\u044F \u043D\u043E\u0432\u0430\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u043F\u0440\u043E\u0435\u043A\u0442\u0430. -yellow=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u0431\u044B\u043B\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u0430, \u043D\u043E \u043D\u0435 \u0441\u0442\u0430\u0431\u0438\u043B\u044C\u043D\u0430. \u042D\u0442\u043E \u0432 \u043F\u0435\u0440\u0432\u0443\u044E \u043E\u0447\u0435\u0440\u0435\u0434\u044C \u0443\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0441\u044F \u0434\u043B\u044F \u0441\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u044F \u043E\u0431 \u0443\u043F\u0430\u0432\u0448\u0438\u0445 \u0442\u0435\u0441\u0442\u0430\u0445. -yellow_anime=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u0431\u044B\u043B\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u0430, \u043D\u043E \u043D\u0435 \u0441\u0442\u0430\u0431\u0438\u043B\u044C\u043D\u0430. \u041F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0438\u0442\u0441\u044F \u043D\u043E\u0432\u0430\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u043F\u0440\u043E\u0435\u043A\u0442\u0430. +blue=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u0431\u044B\u043B\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u043E\u0439. +blue_anime=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u0431\u044B\u043B\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u043E\u0439. \u041F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0438\u0442\u0441\u044F \u043D\u043E\u0432\u0430\u044F \u0441\u0431\u043E\u0440\u043A\u0430. +grey=\u041F\u0440\u043E\u0435\u043A\u0442 \u0435\u0449\u0451 \u043D\u0435 \u0440\u0430\u0437\u0443 \u043D\u0435 \u0441\u043E\u0431\u0438\u0440\u0430\u043B\u0441\u044F \u0438\u043B\u0438 \u043E\u0442\u043A\u043B\u044E\u0447\u0435\u043D. +grey_anime=\u041F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0438\u0442\u0441\u044F \u043F\u0435\u0440\u0432\u0430\u044F \u0441\u0431\u043E\u0440\u043A\u0430. +health-00to20=\u0417\u0434\u043E\u0440\u043E\u0432\u044C\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u043C\u0435\u043D\u0435\u0435 20%. \u041D\u0430\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0443\u0440\u0441\u043E\u0440 \u043D\u0430 \u0438\u043A\u043E\u043D\u043A\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0434\u043B\u044F \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043E\u0431\u044A\u044F\u0441\u043D\u0435\u043D\u0438\u044F. +health-21to40=\u0417\u0434\u043E\u0440\u043E\u0432\u044C\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u043E\u0442 20% \u0434\u043E 40%. \u041D\u0430\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0443\u0440\u0441\u043E\u0440 \u043D\u0430 \u0438\u043A\u043E\u043D\u043A\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0434\u043B\u044F \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043E\u0431\u044A\u044F\u0441\u043D\u0435\u043D\u0438\u044F. +health-41to60=\u0417\u0434\u043E\u0440\u043E\u0432\u044C\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u043E\u0442 40% \u0434\u043E 60%. \u041D\u0430\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0443\u0440\u0441\u043E\u0440 \u043D\u0430 \u0438\u043A\u043E\u043D\u043A\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0434\u043B\u044F \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043E\u0431\u044A\u044F\u0441\u043D\u0435\u043D\u0438\u044F. +health-61to80=\u0417\u0434\u043E\u0440\u043E\u0432\u044C\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u043B\u0435\u0436\u0438\u0442 \u0432 \u0434\u0438\u0430\u043F\u0430\u0437\u043E\u043D\u0435 \u043C\u0435\u0436\u0434\u0443 60% \u0438 80%.\u041D\u0430\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0443\u0440\u0441\u043E\u0440 \u043C\u044B\u0448\u0438 \u043D\u0430 \u0438\u043A\u043E\u043D\u043A\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0434\u043B\u044F \u0431\u043E\u043B\u0435\u0435 \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438. +health-81plus=\u0417\u0434\u043E\u0440\u043E\u0432\u044C\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0431\u043E\u043B\u0435\u0435 80%. \u041D\u0430\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0443\u0440\u0441\u043E\u0440 \u043D\u0430 \u0438\u043A\u043E\u043D\u043A\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0434\u043B\u044F \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043E\u0431\u044A\u044F\u0441\u043D\u0435\u043D\u0438\u044F. +red=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u043D\u0435 \u0443\u0434\u0430\u043B\u0430\u0441\u044C. +red_anime=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u043D\u0435 \u0443\u0434\u0430\u043B\u0430\u0441\u044C. \u041F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0438\u0442\u0441\u044F \u043D\u043E\u0432\u0430\u044F \u0441\u0431\u043E\u0440\u043A\u0430. +yellow=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u0431\u044B\u043B\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u043E\u0439, \u043D\u043E \u043D\u0435 \u0441\u0442\u0430\u0431\u0438\u043B\u044C\u043D\u043E\u0439. \u041F\u0440\u0435\u0436\u0434\u0435 \u0432\u0441\u0435\u0433\u043E \u044D\u0442\u043E \u0433\u043E\u0432\u043E\u0440\u0438\u0442 \u043E \u043D\u0435\u0443\u0434\u0430\u0447\u043D\u044B\u0445 \u0442\u0435\u0441\u0442\u0430\u0445. +yellow_anime=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u0431\u044B\u043B\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u043E\u0439, \u043D\u043E \u043D\u0435 \u0441\u0442\u0430\u0431\u0438\u043B\u044C\u043D\u043E\u0439. \u041F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0438\u0442\u0441\u044F \u043D\u043E\u0432\u0430\u044F \u0441\u0431\u043E\u0440\u043A\u0430. diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/login_ru.properties index 452e0e4fea..33ceefcf5a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_ru.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. User=\u041b\u043e\u0433\u0438\u043d -Password=\u041f\u0430\u0440\u043e\u043b\u044c -Remember\ me\ on\ this\ computer=\u0417\u0430\u043f\u043e\u043c\u043d\u0438 \u043c\u0435\u043d\u044f +Password=yecgaa66 +Remember\ me\ on\ this\ computer=\u0417\u0430\u043F\u043E\u043C\u043D\u0438\u0442\u044C \u043C\u0435\u043D\u044F login=\u0412\u043e\u0439\u0442\u0438 signUp=\u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u0430\u043a\u043a\u0430\u0443\u043d\u0442 \u0435\u0441\u043b\u0438 \u0432\u044b \u0435\u0449\u0435 \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u044b diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_ru.properties index 55cea4517d..e1fcd44693 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_ru.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Manage\ Jenkins=\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 Jenkins +are.you.sure={0}: \u0432\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B? diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_ru.properties index 6c9c12e280..d038075180 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/newView_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -View\ name=\u0418\u043c\u044f +View\ name=\u0418\u043C\u044F \u0432\u0438\u0434\u0430 diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_ru.properties index 9e9ec759b8..0fd07dadd8 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_ru.properties @@ -22,6 +22,7 @@ For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met\:=\u0427\u0442\u043e\u0431\u044b \u0437\u0430\u0440\u0430\u0431\u043e\u0442\u0430\u043b\u0430 \u044d\u0442\u0430 \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u0442\u044c \u0443\u0434\u043e\u0432\u043b\u0435\u0442\u0432\u043e\u0440\u0435\u043d\u044b \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f: The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts=\u0412\u043e\u0441\u0445\u043e\u0434\u044f\u0449\u0438\u0439 \u043f\u0440\u043e\u0435\u043a\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0435\u0442 \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u043a\u0438 (fingrprints) \u0441\u0432\u043e\u0438\u0445 \u0430\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u043e\u0432. +The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses=\u0412\u043D\u0438\u0437 \u043F\u043E \u0442\u0435\u0447\u0435\u043D\u0438\u044E \u0437\u0430\u043F\u0438\u0441\u0438 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u043E\u0442\u043F\u0435\u0447\u0430\u0442\u043A\u0438 \u043F\u0430\u043B\u044C\u0446\u0435\u0432 \u0432\u0432\u0435\u0440\u0445 \u043F\u043E \u0442\u0435\u0447\u0435\u043D\u0438\u044E \u0444\u0430\u0439\u043B\u044B, \u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u043E\u043D \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442 The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ jar\ files\ it\ uses=\u041d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0438\u0439 \u043f\u0440\u043e\u0435\u043a\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0435\u0442 \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u043a\u0438 (fingrprints) \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0445 \u0432 \u0432\u043e\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u043c \u043f\u0440\u043e\u0435\u043a\u0442\u0435 jar \u0444\u0430\u0439\u043b\u043e\u0432. This\ allows\ Jenkins\ to\ correlate\ two\ projects.=\u042d\u0442\u043e \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0435\u0442 Jenkins \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u043c\u0435\u0436\u0434\u0443 \u0434\u0432\u0443\u043c\u044f \u043f\u0440\u043e\u0435\u043a\u0442\u0430\u043c\u0438. Title=\u0427\u0442\u043e \u0442\u0430\u043a\u043e\u0435 "\u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u0432"? diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ru.properties index 956ab7fc7b..db88258f9f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u041D\u0430\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u0438\u0435 +Name=\u0418\u043C\u044F Pinned=\u041F\u0440\u0438\u043A\u0440\u0435\u043F\u043B\u0435\u043D Plugins=\u041F\u043B\u0430\u0433\u0438\u043D\u044B System\ Properties=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u044b diff --git a/core/src/main/resources/lib/form/advanced_ru.properties b/core/src/main/resources/lib/form/advanced_ru.properties index 74a0a64e27..d421b5e54d 100644 --- a/core/src/main/resources/lib/form/advanced_ru.properties +++ b/core/src/main/resources/lib/form/advanced_ru.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Advanced=\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0435 +customizedFields=\u041E\u0434\u043D\u043E \u0438\u043B\u0438 \u0431\u043E\u043B\u044C\u0448\u0435 \u043F\u043E\u043B\u0435\u0439 \u0432 \u044D\u0442\u043E\u043C \u0431\u043B\u043E\u043A\u0435 \u0431\u044B\u043B\u0438 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u044B diff --git a/core/src/main/resources/lib/form/apply_ru.properties b/core/src/main/resources/lib/form/apply_ru.properties new file mode 100644 index 0000000000..6c2bddec13 --- /dev/null +++ b/core/src/main/resources/lib/form/apply_ru.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Apply=\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u0442\u044C diff --git a/core/src/main/resources/lib/form/booleanRadio_ru.properties b/core/src/main/resources/lib/form/booleanRadio_ru.properties new file mode 100644 index 0000000000..09666a329a --- /dev/null +++ b/core/src/main/resources/lib/form/booleanRadio_ru.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +No=\u041D\u0435\u0442 +Yes=\u0414\u0430 diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_ru.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_ru.properties new file mode 100644 index 0000000000..f62ec9943d --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_ru.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 diff --git a/core/src/main/resources/lib/form/hetero-list_ru.properties b/core/src/main/resources/lib/form/hetero-list_ru.properties new file mode 100644 index 0000000000..2f9be65f0e --- /dev/null +++ b/core/src/main/resources/lib/form/hetero-list_ru.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Add=\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C diff --git a/core/src/main/resources/lib/hudson/artifactList_ru.properties b/core/src/main/resources/lib/hudson/artifactList_ru.properties new file mode 100644 index 0000000000..d1ea2397d9 --- /dev/null +++ b/core/src/main/resources/lib/hudson/artifactList_ru.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +View=\u041F\u043E\u0441\u043C\u043E\u0442\u0440\u0435\u0442\u044C diff --git a/core/src/main/resources/lib/hudson/buildCaption_ru.properties b/core/src/main/resources/lib/hudson/buildCaption_ru.properties index 840a36bf0f..fe905f5fa0 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_ru.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_ru.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Progress=\u041f\u0440\u043e\u0433\u0440\u0435\u0441\u0441 -cancel=\u043E\u0442\u043C\u0435\u043D\u0438\u0442\u044C +cancel=\u041E\u0442\u043C\u0435\u043D\u0438\u0442\u044C diff --git a/core/src/main/resources/lib/hudson/buildHealth_ru.properties b/core/src/main/resources/lib/hudson/buildHealth_ru.properties index bb5e44bfeb..3f37f58d36 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_ru.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 +Description=\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435. diff --git a/core/src/main/resources/lib/hudson/buildListTable_ru.properties b/core/src/main/resources/lib/hudson/buildListTable_ru.properties index c5fd779f85..b5e8809ec9 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_ru.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_ru.properties @@ -21,6 +21,7 @@ # THE SOFTWARE. Build=\u0421\u0431\u043e\u0440\u043a\u0430 +Click\ to\ center\ timeline\ on\ event=\u041D\u0430\u0436\u043C\u0438\u0442\u0435 \u0434\u043B\u044F \u0446\u0435\u043D\u0442\u0440\u043E\u0432\u043A\u0438 \u043D\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u0438 Console\ output=\u041A\u043E\u043D\u0441\u043E\u043B\u044C\u043D\u044B\u0439 \u0432\u044B\u0432\u043E\u0434 -Time\ Since=\u0414\u0430\u0442\u0430 +Time\ Since=\u041F\u0440\u043E\u0448\u043B\u043E Status=\u0421\u0442\u0430\u0442\u0443\u0441 diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_ru.properties b/core/src/main/resources/lib/hudson/buildProgressBar_ru.properties index d7e6f7071c..5a3a17a7da 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_ru.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=\u041D\u0430\u0447\u0430\u0442\u043E {0}
\u041F\u0440\u0438\u0431\u043B\u0438\u0437\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0435 \u0432\u0440\u0435\u043C\u044F \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u0438\u044F: {1} +text=\u0421\u0442\u0430\u0440\u0442\u043E\u0432\u0430\u043B\u0430 {0}
\u041F\u0440\u0438\u0431\u043B\u0438\u0437\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0435 \u0432\u0440\u0435\u043C\u044F \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u0438\u044F: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_ru.properties b/core/src/main/resources/lib/hudson/editableDescription_ru.properties index 93314a9c63..ae13a45b08 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_ru.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 -edit\ description=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 +add\ description=\u0434\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 +edit\ description=\u0438\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u043E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 diff --git a/core/src/main/resources/lib/hudson/executors_ru.properties b/core/src/main/resources/lib/hudson/executors_ru.properties index 927b7563a7..8086dd40f2 100644 --- a/core/src/main/resources/lib/hudson/executors_ru.properties +++ b/core/src/main/resources/lib/hudson/executors_ru.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u0431\u043e\u0440\u0449\u0438\u043a\u0430 +Build\ Executor\ Status=\u0421\u043E\u0441\u0442\u043E\u044F\u043D\u0438\u0435 \u0441\u0431\u043E\u0440\u0449\u0438\u043A\u043E\u0432 Offline=\u0412\u044B\u043A\u043B\u044E\u0447\u0435\u043D -Status=\u0421\u0442\u0430\u0442\u0443\u0441 +Status=\u0421\u0442\u0430\u0442\u0443\u0441. Master=\u041c\u0430\u0441\u0442\u0435\u0440 -offline=\u0412\u044b\u043a\u043b\u044e\u0447\u0435\u043d +offline=\u0432\u044B\u043A\u043B\u044E\u0447\u0435\u043D Dead=\u041c\u0435\u0440\u0442\u0432 -Idle=\u041e\u0436\u0438\u0434\u0430\u0435\u0442 -Building=\u0421\u043E\u0431\u0438\u0440\u0430\u0435\u0442\u0441\u044F -terminate\ this\ build=\u041f\u0440\u0435\u0440\u0432\u0430\u0442\u044c \u0442\u0435\u043a\u0443\u0449\u0443\u044e \u0441\u0431\u043e\u0440\u043a\u0443 +Idle=\u0412 \u043E\u0436\u0438\u0434\u0430\u043D\u0438\u0438 +Building=\u0418\u0434\u0435\u0442 \u0441\u0431\u043E\u0440\u043A\u0430 +terminate\ this\ build=\u043F\u0440\u0435\u0440\u0432\u0430\u0442\u044C \u0442\u0435\u043A\u0443\u0449\u0443\u044E \u0441\u0431\u043E\u0440\u043A\u0443 diff --git a/core/src/main/resources/lib/hudson/iconSize_ru.properties b/core/src/main/resources/lib/hudson/iconSize_ru.properties index 7b115a141e..81ab7a1d80 100644 --- a/core/src/main/resources/lib/hudson/iconSize_ru.properties +++ b/core/src/main/resources/lib/hudson/iconSize_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=\u0418\u043A\u043E\u043D\u043A\u0430 +Icon=\u0417\u043D\u0430\u0447\u043E\u043A diff --git a/core/src/main/resources/lib/hudson/project/config-assignedLabel_ru.properties b/core/src/main/resources/lib/hudson/project/config-assignedLabel_ru.properties index 074f84106e..bf8b521cc2 100644 --- a/core/src/main/resources/lib/hudson/project/config-assignedLabel_ru.properties +++ b/core/src/main/resources/lib/hudson/project/config-assignedLabel_ru.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Restrict\ where\ this\ project\ can\ be\ run=\u041E\u0433\u0440\u0430\u043D\u0438\u0447\u0438\u0442\u044C \u043A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E \u0443\u0437\u043B\u043E\u0432, \u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u043C\u043E\u0433\u0443\u0442 \u0441\u043E\u0431\u0438\u0440\u0430\u0442\u044C \u044D\u0442\u043E\u0442 \u043F\u0440\u043E\u0435\u043A\u0442 Tie\ this\ project\ to\ a\ node=\u041F\u0440\u0438\u0432\u044F\u0437\u0430\u0442\u044C \u043F\u0440\u043E\u0435\u043A\u0442 \u043A \u0443\u0437\u043B\u0443 diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_ru.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_ru.properties new file mode 100644 index 0000000000..c55df12d86 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_ru.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Block\ build\ when\ downstream\ project\ is\ building=\u0411\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0441\u0431\u043E\u0440\u043A\u0443, \u043A\u043E\u0433\u0434\u0430 \u0432\u0442\u043E\u0440\u0438\u0447\u043D\u044B\u0439 \u043F\u0440\u043E\u0435\u043A\u0442 \u0441\u043E\u0431\u0438\u0440\u0430\u0435\u0442\u0441\u044F diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_ru.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_ru.properties new file mode 100644 index 0000000000..eee4aeb168 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_ru.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Block\ build\ when\ upstream\ project\ is\ building=\u0411\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0441\u0431\u043E\u0440\u043A\u0443, \u043A\u043E\u0433\u0434\u0430 \u043F\u0435\u0440\u0432\u0438\u0447\u043D\u044B\u0439 \u043F\u0440\u043E\u0435\u043A\u0442 \u0441\u043E\u0431\u0438\u0440\u0430\u0435\u0442\u0441\u044F diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_ru.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_ru.properties new file mode 100644 index 0000000000..33f6904dfe --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_ru.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title.concurrentbuilds=\u0412\u044B\u043F\u043E\u043B\u043D\u044F\u0442\u044C \u043F\u0440\u043E\u0446\u0435\u0441\u0441 \u0441\u0431\u043E\u0440\u043A\u0438 \u043F\u043E \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u043E\u0441\u0442\u0438 diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_ru.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_ru.properties index 13b9fcd8a0..97ed359112 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers2_ru.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_ru.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Add\ post-build\ action=\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0448\u0430\u0433 \u043F\u043E\u0441\u043B\u0435 \u0441\u0431\u043E\u0440\u043A\u0438 Post-build\ Actions=\u041f\u043e\u0441\u043b\u0435\u0441\u0431\u043e\u0440\u043e\u0447\u043d\u044b\u0435 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_ru.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_ru.properties new file mode 100644 index 0000000000..8b2dfb9469 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_ru.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Retry\ Count=\u041A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E \u043F\u043E\u043F\u044B\u043F\u043E\u0442\u043E\u043A +SCM\ checkout\ retry\ count=\u0421\u0447\u0451\u0442\u0447\u0438\u043A \u043F\u043E\u043F\u044B\u0442\u043E\u043A checkout \u0421\u041A\u0412 diff --git a/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_ru.properties b/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_ru.properties index f66d069f31..08e430835b 100644 --- a/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_ru.properties +++ b/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_ru.properties @@ -21,5 +21,6 @@ # THE SOFTWARE. Build\ after\ other\ projects\ are\ built=\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0441\u0431\u043e\u0440\u043a\u0443 \u043f\u043e\u0441\u043b\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f \u0434\u0440\u0443\u0433\u043e\u0439 +Project\ names=\u0418\u043C\u0435\u043D\u0430 \u043F\u0440\u043E\u0435\u043A\u0442\u043E\u0432 Projects\ names=\u0418\u043c\u044f \u043f\u0440\u043e\u0435\u043a\u0442\u0430 Multiple\ projects\ can\ be\ specified\ like\ 'abc,\ def'=\u041c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u043d\u043e \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u0432, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, 'abc, def' diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_ru.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_ru.properties index d1d46927be..e89d3a5eeb 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_ru.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Upstream\ Projects=\u0412\u043e\u0441\u0445\u043e\u0434\u044f\u0449\u0438\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u044b -Downstream\ Projects=\u041d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0438\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u044b +Upstream\ Projects=\u041D\u043E\u0432\u044B\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u044B +Downstream\ Projects=\u0417\u0430\u0431\u0440\u043E\u0448\u0435\u043D\u044B\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u044B diff --git a/core/src/main/resources/lib/hudson/queue_ru.properties b/core/src/main/resources/lib/hudson/queue_ru.properties index b8b5901d64..998765de31 100644 --- a/core/src/main/resources/lib/hudson/queue_ru.properties +++ b/core/src/main/resources/lib/hudson/queue_ru.properties @@ -20,7 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u041e\u0447\u0435\u0440\u0435\u0434\u044c \u0441\u0431\u043e\u0440\u043e\u043a -No\ builds\ in\ the\ queue.=\u041E\u0447\u0435\u0440\u0435\u0434\u044C \u0441\u0431\u043E\u0440\u043E\u043A \u043F\u0443\u0441\u0442\u0430. +Build\ Queue=\u041E\u0447\u0435\u0440\u0435\u0434\u044C \u0441\u0431\u043E\u0440\u043E\u043A. +No\ builds\ in\ the\ queue.=\u041E\u0447\u0435\u0440\u0435\u0434\u044C \u0441\u0431\u043E\u0440\u043E\u043A \u043F\u0443\u0441\u0442\u0430 Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins \u0433\u043e\u0442\u043e\u0432\u0438\u0442\u0441\u044f \u043a \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044e. \u0421\u0431\u043e\u0440\u043a\u0438 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c\u0441\u044f \u043d\u0435 \u0431\u0443\u0434\u0443\u0442. +WaitingFor=\u0416\u0434\u0451\u0442 {0} +WaitingSince=\u041E\u0436\u0438\u0434\u0430\u0435\u0442 \u0441 cancel=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c diff --git a/core/src/main/resources/lib/hudson/rssBar_ru.properties b/core/src/main/resources/lib/hudson/rssBar_ru.properties index a76e47a284..cfd3c7b63a 100644 --- a/core/src/main/resources/lib/hudson/rssBar_ru.properties +++ b/core/src/main/resources/lib/hudson/rssBar_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=\u041b\u0435\u0433\u0435\u043d\u0434\u0430 -for\ all=\u0434\u043B\u044F \u0432\u0441\u0435\u0445 -for\ failures=\u0434\u043B\u044F \u043D\u0435\u0443\u0434\u0430\u0447\u043D\u044B\u0445 -for\ just\ latest\ builds=\u0434\u043B\u044F \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0438\u0445 \u0441\u0431\u043E\u0440\u043E\u043A +Legend=\u041F\u043E\u043C\u043E\u0449\u044C +for\ all=\u0434\u043B\u044F \u0432\u0441\u0435\u0445 \u0441\u0431\u043E\u0440\u043E\u043A +for\ failures=\u0434\u043B\u044F \u043D\u0435\u0443\u0434\u0430\u0447\u043D\u044B\u0445 \u0441\u0431\u043E\u0440\u043E\u043A +for\ just\ latest\ builds=\u0414\u043B\u044F \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0438\u0445 \u0441\u0431\u043E\u0440\u043E\u043A diff --git a/core/src/main/resources/lib/hudson/scriptConsole_ru.properties b/core/src/main/resources/lib/hudson/scriptConsole_ru.properties index 29ad608763..7149e33861 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_ru.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_ru.properties @@ -23,3 +23,5 @@ Script\ Console=\u041a\u043e\u043d\u0441\u043e\u043b\u044c Result=\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 Run=\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c +description=\u0412\u0432\u0435\u0434\u0438\u0442\u0435 Groovy \u0441\u043A\u0440\u0438\u043F\u0442 \u0438 \u0432\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u0435 \u0435\u0433\u043E \u043D\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435. \u041F\u043E\u043B\u0435\u0437\u043D\u043E \u043F\u0440\u0438 \u0443\u0441\u0442\u0440\u0430\u043D\u0435\u043D\u0438\u0438 \u043D\u0435\u043F\u043E\u043B\u0430\u0434\u043E\u043A \u0438 \u0434\u0438\u0430\u0433\u043D\u043E\u0441\u0442\u0438\u043A\u0438. \u0418\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0439\u0442\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u0443 "println" \u0434\u043B\u044F \u043F\u0435\u0447\u0430\u0442\u0438 \u0432 \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u044B\u0439 \u0432\u044B\u0432\u043E\u0434 (\u0435\u0441\u043B\u0438 \u0432\u044B \u0432\u043E\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0435\u0441\u044C System.out, \u0442\u043E \u0432\u044B\u0432\u043E\u0434 \u043F\u043E\u0439\u0434\u0451\u0442 \u0432 stdout \u0441\u0435\u0440\u0432\u0435\u0440\u0430, \u043A\u043E\u0442\u043E\u0440\u044B\u0439 \u0441\u043B\u043E\u0436\u043D\u0435\u0435 \u0443\u0432\u0438\u0434\u0435\u0442\u044C). \u041D\u0430\u043F\u0440\u0438\u043C\u0435\u0440: +description2=\u0412\u0441\u0435 \u043A\u043B\u0430\u0441\u0441\u044B \u0438\u0437 \u0432\u0441\u0435\u0445 \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u0432 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B. jenkins.*, jenkins.model.*, hudson.* \u0438 hudson.model.* \u0443\u0436\u0435 \u0438\u043C\u043F\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u044B \u043F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E. diff --git a/core/src/main/resources/lib/hudson/test-result_ru.properties b/core/src/main/resources/lib/hudson/test-result_ru.properties index a78f1a49c4..5c8f420327 100644 --- a/core/src/main/resources/lib/hudson/test-result_ru.properties +++ b/core/src/main/resources/lib/hudson/test-result_ru.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. no\ tests=\u041d\u0435\u0442 \u0442\u0435\u0441\u0442\u043e\u0432 -no\ failures=\u041d\u0435\u0442 \u043e\u0448\u0438\u0431\u043e\u043a +no\ failures=\u041D\u0435\u0442 \u043E\u0448\u0438\u0431\u043E\u043A. 1failure=1 \u043e\u0448\u0438\u0431\u043a\u0430 {0} multifailures={0} \u043e\u0448\u0438\u0431\u043e\u043a {1} diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_ru.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_ru.properties index 641cf61bda..d14ab74845 100644 --- a/core/src/main/resources/lib/hudson/thirdPartyLicenses_ru.properties +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_ru.properties @@ -21,5 +21,4 @@ # THE SOFTWARE. License=\u041B\u0438\u0446\u0435\u043D\u0437\u0438\u044F -Maven\ ID=Maven ID -Name=\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 +Name=\u0418\u043C\u044F diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_ru.properties b/core/src/main/resources/lib/layout/breadcrumbBar_ru.properties new file mode 100644 index 0000000000..31a177f451 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_ru.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=\u043E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0430\u0432\u0442\u043E\u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 + +ENABLE\ AUTO\ REFRESH=\u0412\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u043E\u0435 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u044B + diff --git a/core/src/main/resources/lib/layout/layout_ru.properties b/core/src/main/resources/lib/layout/layout_ru.properties index 0eaa7dcef7..e193077b5c 100644 --- a/core/src/main/resources/lib/layout/layout_ru.properties +++ b/core/src/main/resources/lib/layout/layout_ru.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -search=\u043F\u043E\u0438\u0441\u043A -searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -Page\ generated=\u0421\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u0441\u043E\u0437\u0434\u0430\u043D\u0430 -logout=\u0432\u044B\u0445\u043E\u0434 +search=\u041F\u043E\u0438\u0441\u043A +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Boxv +Page\ generated=\u0421\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u0441\u0433\u0435\u043D\u0435\u0440\u0438\u0440\u043E\u0432\u0430\u043D\u0430 +logout=\u0412\u044B\u0445\u043E\u0434 DISABLE\ AUTO\ REFRESH=\u041E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0430\u0432\u0442\u043E\u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u044B -ENABLE\ AUTO\ REFRESH=\u0412\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0430\u0432\u0442\u043E\u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u044B +ENABLE\ AUTO\ REFRESH=\u0412\u041A\u041B\u042E\u0427\u0418\u0422\u042C \u0421\u0410\u041C\u041E\u041E\u0411\u041D\u041E\u0412\u041B\u0415\u041D\u0418\u0415 diff --git a/core/src/main/resources/lib/layout/progressiveRendering_ru.properties b/core/src/main/resources/lib/layout/progressiveRendering_ru.properties new file mode 100644 index 0000000000..86a67dfa85 --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_ru.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=\u0418\u0434\u0451\u0442 \u043F\u0440\u043E\u0446\u0435\u0441\u0441 \u0432\u044B\u0447\u0438\u0441\u043B\u0435\u043D\u0438\u044F diff --git a/core/src/main/resources/lib/layout/task_ru.properties b/core/src/main/resources/lib/layout/task_ru.properties new file mode 100644 index 0000000000..b6bc7e4873 --- /dev/null +++ b/core/src/main/resources/lib/layout/task_ru.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Done.=\u0413\u043E\u0442\u043E\u0432\u043E diff --git a/core/src/main/resources/lib/test/bar_ru.properties b/core/src/main/resources/lib/test/bar_ru.properties index 32889165ed..d29fa4396a 100644 --- a/core/src/main/resources/lib/test/bar_ru.properties +++ b/core/src/main/resources/lib/test/bar_ru.properties @@ -23,4 +23,4 @@ No\ tests=\u041d\u0435\u0442 \u0442\u0435\u0441\u0442\u043e\u0432 failures=\u043e\u0448\u0438\u0431\u043e\u043a skipped=\u043f\u0440\u043e\u043f\u0443\u0449\u0435\u043d\u043e -tests=\u0442\u0435\u0441\u0442\u044b +tests={0} \u0442\u0435\u0441\u0442\u043E\u0432(\u0430) -- GitLab From 10206c863cddf7c83b29d2efd9c82dbb05286db0 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:03 -0700 Subject: [PATCH 074/308] Community-contributed localization for Sinhala; Sinhalese (si) --- .../hudson/model/AbstractProject/sidepanel_si.properties | 7 +++++++ .../resources/hudson/model/View/sidepanel_si.properties | 5 +++++ .../views/LastDurationColumn/columnHeader_si.properties | 3 +++ .../views/LastFailureColumn/columnHeader_si.properties | 3 +++ .../views/LastSuccessColumn/columnHeader_si.properties | 3 +++ .../hudson/views/StatusColumn/columnHeader_si.properties | 3 +++ .../hudson/views/WeatherColumn/columnHeader_si.properties | 3 +++ .../hudson/widgets/HistoryWidget/index_si.properties | 3 +++ .../main/resources/lib/hudson/buildHealth_si.properties | 3 +++ .../resources/lib/hudson/buildProgressBar_si.properties | 3 +++ .../resources/lib/hudson/editableDescription_si.properties | 3 +++ core/src/main/resources/lib/hudson/executors_si.properties | 7 +++++++ core/src/main/resources/lib/hudson/queue_si.properties | 5 +++++ .../main/resources/lib/layout/breadcrumbBar_si.properties | 3 +++ core/src/main/resources/lib/layout/layout_si.properties | 5 +++++ 15 files changed, 59 insertions(+) create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_si.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_si.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_si.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_si.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_si.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_si.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_si.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_si.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_si.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_si.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_si.properties create mode 100644 core/src/main/resources/lib/hudson/executors_si.properties create mode 100644 core/src/main/resources/lib/hudson/queue_si.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_si.properties create mode 100644 core/src/main/resources/lib/layout/layout_si.properties diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_si.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_si.properties new file mode 100644 index 0000000000..1e608e8652 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_si.properties @@ -0,0 +1,7 @@ +# 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 +Configure=\u0DC3\u0D9A\u0DC3\u0DB1\u0DCA\u0DB1 +Status=\u0DAD\u0DAD\u0DCA\u0DC0\u0DBA +delete=\u0DB8\u0D9A\u0DB1\u0DCA\u0DB1 {0} diff --git a/core/src/main/resources/hudson/model/View/sidepanel_si.properties b/core/src/main/resources/hudson/model/View/sidepanel_si.properties new file mode 100644 index 0000000000..bf2f35f44a --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_si.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Build\ History=\u0DB4\u0DD0\u0D9A\u0DDA\u0DA2 \u0D89\u0DAD\u0DD2\u0DC4\u0DCF\u0DC3\u0DBA +NewJob= \u0D85\u0DBD\u0DD4\u0DAD\u0DCA {0} +People=\u0DC3\u0DD9\u0DB1\u0D9C diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_si.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_si.properties new file mode 100644 index 0000000000..59bf05cbdc --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_si.properties @@ -0,0 +1,3 @@ +# 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/LastFailureColumn/columnHeader_si.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_si.properties new file mode 100644 index 0000000000..cfb624416f --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_si.properties @@ -0,0 +1,3 @@ +# 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/LastSuccessColumn/columnHeader_si.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_si.properties new file mode 100644 index 0000000000..d8411d309f --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_si.properties @@ -0,0 +1,3 @@ +# 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/StatusColumn/columnHeader_si.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_si.properties new file mode 100644 index 0000000000..82b7fa259f --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_si.properties @@ -0,0 +1,3 @@ +# 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/WeatherColumn/columnHeader_si.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_si.properties new file mode 100644 index 0000000000..7e0b32632c --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_si.properties @@ -0,0 +1,3 @@ +# 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/widgets/HistoryWidget/index_si.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_si.properties new file mode 100644 index 0000000000..2960b3dc94 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_si.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +trend=\u0DB1\u0DD0\u0DB9\u0DD4\u0DBB\u0DD4\u0DC0 diff --git a/core/src/main/resources/lib/hudson/buildHealth_si.properties b/core/src/main/resources/lib/hudson/buildHealth_si.properties new file mode 100644 index 0000000000..198d84cc66 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_si.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Description=\u0DC0\u0DD2\u0DC3\u0DCA\u0DAD\u0DBB\u0DBA diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_si.properties b/core/src/main/resources/lib/hudson/buildProgressBar_si.properties new file mode 100644 index 0000000000..6f2f218d0d --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_si.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +text=\u0DB4\u0DA7\u0DB1\u0DCA \u0D9C\u0DAD\u0DCA\u0DAD\u0DDA {0} \u0D9A\u0DBD\u0DD2\u0DB1\u0DCA
\u0DAD\u0DC0 \u0DB8\u0DD9\u0DA0\u0DCA\u0DA0\u0DBB \u0D9A\u0DCF\u0DBD\u0DBA\u0D9A\u0DCA \u0DAD\u0DD2\u0DBA\u0DD9\u0DB1\u0DC0\u0DCF {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_si.properties b/core/src/main/resources/lib/hudson/editableDescription_si.properties new file mode 100644 index 0000000000..24eaca6d7c --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_si.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +add\ description=\u0DC0\u0DD2\u0DC3\u0DCA\u0DAD\u0DBB \u0D91\u0D9A\u0DCA\u0D9A\u0DBB\u0DB1\u0DCA\u0DB1 diff --git a/core/src/main/resources/lib/hudson/executors_si.properties b/core/src/main/resources/lib/hudson/executors_si.properties new file mode 100644 index 0000000000..b45eb5262f --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_si.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Build\ Executor\ Status=\u0DB4\u0DD0\u0D9A\u0DDA\u0DA2 \u0DC3\u0DCF\u0DAF\u0DCF\u0DB1\u0DCA\u0DB1\u0DCF\u0D9C\u0DDA \u0DC0\u0DD2\u0DC3\u0DCA\u0DAD\u0DBB\u0DBA +Building=\u0DC3\u0DCF\u0DAF\u0DB1\u0DC0\u0DCF +Idle=\u0D94\u0DC4\u0DDA \u0DB1\u0DD2\u0D9A\u0DB1\u0DCA \u0D89\u0DB1\u0DCA\u0DB1\u0DDA +Status=\u0D85\u0DBD\u0DD4\u0DAD\u0DCA\u0DB8 \u0DAD\u0DAD\u0DCA\u0DC0\u0DBA +terminate\ this\ build=\u0DB8\u0DD9\u0DBA \u0DC3\u0DD0\u0DAF\u0DD3\u0DB8 \u0DB1\u0DC0\u0DAD\u0DCA\u0DC0\u0DB1\u0DCA\u0DB1 diff --git a/core/src/main/resources/lib/hudson/queue_si.properties b/core/src/main/resources/lib/hudson/queue_si.properties new file mode 100644 index 0000000000..089853c4b9 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_si.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Build\ Queue=\u0DB4\u0DD0\u0D9A\u0DDA\u0DA2 \u0DB4\u0DDD\u0DBD\u0DD2\u0DB8 +No\ builds\ in\ the\ queue.=\u0DB4\u0DDD\u0DBD\u0DD2\u0DB8\u0DDA \u0DC3\u0DD1\u0DAF\u0DD3\u0DB8\u0D9A\u0DCA \u0DB1\u0DD0\u0DAD +WaitingFor=\u0DC3\u0DD0\u0DAF\u0DD3\u0DB8\u0DA7 \u0D87\u0DAD\u0DD2 {0} diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_si.properties b/core/src/main/resources/lib/layout/breadcrumbBar_si.properties new file mode 100644 index 0000000000..cb893b419a --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_si.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=\u0D89\u0DB6\u0DDA \u0DB1\u0DD0\u0DC0\u0DAD \u0DBB\u0DD2\u0DC6\u0DCA\u200D\u0DBB\u0DD9\u0DC1\u0DCA \u0D9A\u0DD2\u0DBB\u0DD3\u0DB8\u0DA7 \u0DC4\u0DD0\u0D9A\u0DD2 \u0D9A\u0DBB\u0DB1\u0DCA\u0DB1 diff --git a/core/src/main/resources/lib/layout/layout_si.properties b/core/src/main/resources/lib/layout/layout_si.properties new file mode 100644 index 0000000000..664f7002eb --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_si.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=\u0DC3\u0DCA\u0DC0\u0DBA\u0D82\u0D9A\u0DCA\u200D\u0DBB\u0DD3\u0DBA\u0DC0 \u0D85\u0DBD\u0DD4\u0DAD\u0DCA \u0D9A\u0DBB\u0DB1\u0DCA\u0DB1 +Page\ generated=\u0DB4\u0DD2\u0DA7\u0DD4\u0DC0 \u0DA2\u0DB1\u0DB1\u0DBA \u0DC0\u0DD4\u0DBA\u0DDA +search=\u0DC3\u0DDC\u0DBA\u0DB1\u0DCA\u0DB1 -- GitLab From 6bff2d147bc2012805ea1b1d53d9710bde835ccc Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:03 -0700 Subject: [PATCH 075/308] Community-contributed localization for Slovak (sk) --- .../hudson/AboutJenkins/index_sk.properties | 5 +++++ .../hudson/PluginManager/advanced_sk.properties | 7 +++++++ .../hudson/PluginManager/checkUpdates_sk.properties | 5 +++++ .../hudson/PluginManager/index_sk.properties | 1 + .../hudson/PluginManager/installed_sk.properties | 12 ++++++++++++ .../hudson/PluginManager/table_sk.properties | 6 ++++++ .../ReverseProxySetupMonitor/message_sk.properties | 2 ++ .../RawHtmlMarkupFormatter/config_sk.properties | 3 +++ .../MatrixProject/configure-entries_sk.properties | 5 +++++ .../hudson/model/AbstractBuild/changes_sk.properties | 3 +++ .../hudson/model/AbstractBuild/index_sk.properties | 5 ++++- .../model/AbstractBuild/sidepanel_sk.properties | 4 ++-- .../hudson/model/AbstractBuild/tasks_sk.properties | 7 ++++--- .../AbstractItem/configure-common_sk.properties | 4 ++++ .../hudson/model/AbstractItem/delete_sk.properties | 3 +++ .../model/AbstractItem/noWorkspace_sk.properties | 6 ++++++ .../model/AbstractModelObject/error_sk.properties | 3 +++ .../model/AbstractProject/changes_sk.properties | 3 +++ .../hudson/model/AbstractProject/main_sk.properties | 5 +++++ .../model/AbstractProject/makeDisabled_sk.properties | 4 +++- .../model/AbstractProject/sidepanel_sk.properties | 12 +++++++----- .../hudson/model/AllView/noJob_sk.properties | 4 ++++ .../Cause/UpstreamCause/description_sk.properties | 4 ++++ .../Cause/UserIdCause/description_sk.properties | 1 + .../hudson/model/Computer/builds_sk.properties | 3 +++ .../hudson/model/Computer/configure_sk.properties | 3 +++ .../hudson/model/Computer/index_sk.properties | 7 +++++++ .../hudson/model/Computer/sidepanel_sk.properties | 9 +++++++++ .../hudson/model/ComputerSet/_new_sk.properties | 5 +++++ .../hudson/model/ComputerSet/configure_sk.properties | 3 +++ .../hudson/model/ComputerSet/index_sk.properties | 6 ++++++ .../hudson/model/ComputerSet/new_sk.properties | 4 ++++ .../hudson/model/ComputerSet/sidepanel_sk.properties | 6 ++++++ .../model/DirectoryBrowserSupport/dir_sk.properties | 5 +++++ .../resources/hudson/model/JDK/config_sk.properties | 3 +++ .../hudson/model/Job/buildTimeTrend_sk.properties | 7 +++++++ .../hudson/model/Job/configure_sk.properties | 7 +++++++ .../hudson/model/Job/permalinks_sk.properties | 3 +++ .../hudson/model/LoadStatistics/main_sk.properties | 8 ++++++++ .../model/MyViewsProperty/config_sk.properties | 3 +++ .../model/NoFingerprintMatch/index_sk.properties | 5 +++++ .../model/ParametersAction/index_sk.properties | 4 ++++ .../config_sk.properties | 4 ++++ .../ParametersDefinitionProperty/index_sk.properties | 2 +- .../Permalink/link_sk.properties | 3 +++ .../model/Run/KeepLogBuildBadge/badge_sk.properties | 3 +++ .../hudson/model/Run/configure_sk.properties | 2 +- .../resources/hudson/model/Run/console_sk.properties | 2 ++ .../resources/hudson/model/Run/delete_sk.properties | 2 +- .../resources/hudson/model/Run/logKeep_sk.properties | 4 ++++ .../ConnectionCheckJob/row_sk.properties | 3 +++ .../RestartJenkinsJob/Running/status_sk.properties | 3 +++ .../UpdateCenter/RestartJenkinsJob/row_sk.properties | 3 +++ .../hudson/model/UpdateCenter/body_sk.properties | 5 +++++ .../hudson/model/UpdateCenter/index_sk.properties | 3 +++ .../model/UpdateCenter/sidepanel_sk.properties | 5 +++++ .../resources/hudson/model/User/builds_sk.properties | 3 +++ .../hudson/model/User/configure_sk.properties | 4 ++++ .../resources/hudson/model/User/delete_sk.properties | 4 ++++ .../resources/hudson/model/User/index_sk.properties | 3 +++ .../hudson/model/User/sidepanel_sk.properties | 8 ++++++++ .../resources/hudson/model/View/builds_sk.properties | 4 ++++ .../resources/hudson/model/View/newJob_sk.properties | 4 ++-- .../hudson/model/View/sidepanel_sk.properties | 4 ++-- .../AbstractDiskSpaceMonitor/config_sk.properties | 3 +++ .../scm/EmptyChangeLogSet/digest_sk.properties | 3 +++ .../hudson/scm/SCM/project-changes_sk.properties | 3 +++ .../HudsonPrivateSecurityRealm/config_sk.properties | 3 +++ .../HudsonPrivateSecurityRealm/index_sk.properties | 5 +++++ .../loginLink_sk.properties | 3 +++ .../sidepanel_sk.properties | 5 +++++ .../LegacySecurityRealm/config_sk.properties | 3 +++ .../security/SecurityRealm/loginLink_sk.properties | 2 +- .../slaves/DumbSlave/configure-entries_sk.properties | 7 +++++++ .../config_sk.properties | 5 +++++ .../slaves/SlaveComputer/sidepanel2_sk.properties | 4 ++++ .../hudson/tasks/LogRotator/config_sk.properties | 10 ++++++++++ .../hudson/tools/JDKInstaller/config_sk.properties | 3 +++ .../tools/ToolInstallation/global_sk.properties | 4 ++++ .../ToolLocationNodeProperty/config_sk.properties | 3 +++ .../SCMTrigger/BuildAction/index_sk.properties | 5 +++++ .../SCMTrigger/SCMAction/index_sk.properties | 3 +++ .../views/BuildButtonColumn/column_sk.properties | 4 +++- .../DefaultMyViewsTabBar/myViewTabs_sk.properties | 3 +++ .../LastDurationColumn/columnHeader_sk.properties | 2 +- .../LastFailureColumn/columnHeader_sk.properties | 2 +- .../views/LastFailureColumn/column_sk.properties | 2 +- .../LastSuccessColumn/columnHeader_sk.properties | 2 +- .../views/StatusColumn/columnHeader_sk.properties | 2 +- .../views/WeatherColumn/columnHeader_sk.properties | 2 +- .../widgets/BuildHistoryWidget/entries_sk.properties | 4 ++++ .../hudson/widgets/HistoryWidget/index_sk.properties | 3 ++- .../management/PluginsLink/info_sk.properties | 3 +++ .../jenkins/model/Jenkins/configure_sk.properties | 4 ++++ .../model/Jenkins/fingerprintCheck_sk.properties | 7 +++++++ .../jenkins/model/Jenkins/login_sk.properties | 6 +++--- .../jenkins/model/Jenkins/manage_sk.properties | 3 +++ .../jenkins/model/Jenkins/newView_sk.properties | 3 +++ .../jenkins/model/Jenkins/oops_sk.properties | 4 ++++ .../model/Jenkins/projectRelationship_sk.properties | 6 ++++++ .../main/resources/lib/form/advanced_sk.properties | 4 ++++ core/src/main/resources/lib/form/apply_sk.properties | 3 +++ .../lib/form/breadcrumb-config-outline_sk.properties | 3 +++ .../lib/form/repeatableDeleteButton_sk.properties | 2 +- .../main/resources/lib/form/repeatable_sk.properties | 3 +++ .../main/resources/lib/form/slave-mode_sk.properties | 3 +++ .../resources/lib/hudson/artifactList_sk.properties | 3 +++ .../resources/lib/hudson/buildCaption_sk.properties | 2 +- .../resources/lib/hudson/buildHealth_sk.properties | 2 +- .../lib/hudson/buildListTable_sk.properties | 7 +++++++ .../lib/hudson/editableDescription_sk.properties | 2 +- .../resources/lib/hudson/executors_sk.properties | 9 +++++---- .../src/main/resources/lib/hudson/node_sk.properties | 3 +++ .../project/config-assignedLabel_sk.properties | 4 ++++ .../config-blockWhenDownstreamBuilding_sk.properties | 3 +++ .../config-blockWhenUpstreamBuilding_sk.properties | 3 +++ .../project/config-concurrentBuild_sk.properties | 3 +++ .../project/config-customWorkspace_sk.properties | 4 ++++ .../hudson/project/config-disableBuild_sk.properties | 4 ++++ .../hudson/project/config-quietPeriod_sk.properties | 4 ++++ .../hudson/project/config-retryCount_sk.properties | 4 ++++ .../hudson/project/upstream-downstream_sk.properties | 4 ++++ .../main/resources/lib/hudson/queue_sk.properties | 7 +++++-- .../main/resources/lib/hudson/rssBar_sk.properties | 4 ++-- .../lib/hudson/thirdPartyLicenses_sk.properties | 4 ++++ .../resources/lib/layout/breadcrumbBar_sk.properties | 4 ++++ .../main/resources/lib/layout/layout_sk.properties | 5 +++-- .../resources/lib/layout/main-panel_sk.properties | 3 +++ 128 files changed, 480 insertions(+), 45 deletions(-) create mode 100644 core/src/main/resources/hudson/AboutJenkins/index_sk.properties create mode 100644 core/src/main/resources/hudson/PluginManager/advanced_sk.properties create mode 100644 core/src/main/resources/hudson/PluginManager/checkUpdates_sk.properties create mode 100644 core/src/main/resources/hudson/PluginManager/installed_sk.properties create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_sk.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_sk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/changes_sk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/configure-common_sk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/delete_sk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/noWorkspace_sk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractModelObject/error_sk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/changes_sk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_sk.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_sk.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UpstreamCause/description_sk.properties create mode 100644 core/src/main/resources/hudson/model/Computer/builds_sk.properties create mode 100644 core/src/main/resources/hudson/model/Computer/configure_sk.properties create mode 100644 core/src/main/resources/hudson/model/Computer/index_sk.properties create mode 100644 core/src/main/resources/hudson/model/Computer/sidepanel_sk.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/_new_sk.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/configure_sk.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/index_sk.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/new_sk.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/sidepanel_sk.properties create mode 100644 core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sk.properties create mode 100644 core/src/main/resources/hudson/model/JDK/config_sk.properties create mode 100644 core/src/main/resources/hudson/model/Job/buildTimeTrend_sk.properties create mode 100644 core/src/main/resources/hudson/model/Job/configure_sk.properties create mode 100644 core/src/main/resources/hudson/model/Job/permalinks_sk.properties create mode 100644 core/src/main/resources/hudson/model/LoadStatistics/main_sk.properties create mode 100644 core/src/main/resources/hudson/model/MyViewsProperty/config_sk.properties create mode 100644 core/src/main/resources/hudson/model/NoFingerprintMatch/index_sk.properties create mode 100644 core/src/main/resources/hudson/model/ParametersAction/index_sk.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_sk.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_sk.properties create mode 100644 core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sk.properties create mode 100644 core/src/main/resources/hudson/model/Run/logKeep_sk.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sk.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_sk.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sk.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_sk.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/index_sk.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sk.properties create mode 100644 core/src/main/resources/hudson/model/User/builds_sk.properties create mode 100644 core/src/main/resources/hudson/model/User/configure_sk.properties create mode 100644 core/src/main/resources/hudson/model/User/delete_sk.properties create mode 100644 core/src/main/resources/hudson/model/User/index_sk.properties create mode 100644 core/src/main/resources/hudson/model/User/sidepanel_sk.properties create mode 100644 core/src/main/resources/hudson/model/View/builds_sk.properties create mode 100644 core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_sk.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sk.properties create mode 100644 core/src/main/resources/hudson/scm/SCM/project-changes_sk.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sk.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_sk.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sk.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_sk.properties create mode 100644 core/src/main/resources/hudson/security/LegacySecurityRealm/config_sk.properties create mode 100644 core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_sk.properties create mode 100644 core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sk.properties create mode 100644 core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_sk.properties create mode 100644 core/src/main/resources/hudson/tasks/LogRotator/config_sk.properties create mode 100644 core/src/main/resources/hudson/tools/JDKInstaller/config_sk.properties create mode 100644 core/src/main/resources/hudson/tools/ToolInstallation/global_sk.properties create mode 100644 core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_sk.properties create mode 100644 core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_sk.properties create mode 100644 core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_sk.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_sk.properties create mode 100644 core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_sk.properties create mode 100644 core/src/main/resources/jenkins/management/PluginsLink/info_sk.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/configure_sk.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sk.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/newView_sk.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/oops_sk.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/projectRelationship_sk.properties create mode 100644 core/src/main/resources/lib/form/advanced_sk.properties create mode 100644 core/src/main/resources/lib/form/apply_sk.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_sk.properties create mode 100644 core/src/main/resources/lib/form/repeatable_sk.properties create mode 100644 core/src/main/resources/lib/form/slave-mode_sk.properties create mode 100644 core/src/main/resources/lib/hudson/artifactList_sk.properties create mode 100644 core/src/main/resources/lib/hudson/buildListTable_sk.properties create mode 100644 core/src/main/resources/lib/hudson/node_sk.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-assignedLabel_sk.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_sk.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_sk.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-concurrentBuild_sk.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-customWorkspace_sk.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-disableBuild_sk.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-quietPeriod_sk.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-retryCount_sk.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_sk.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_sk.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_sk.properties create mode 100644 core/src/main/resources/lib/layout/main-panel_sk.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_sk.properties b/core/src/main/resources/hudson/AboutJenkins/index_sk.properties new file mode 100644 index 0000000000..97d8954b56 --- /dev/null +++ b/core/src/main/resources/hudson/AboutJenkins/index_sk.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +about=O Jenkinse {0} +dependencies=Jenkins z\u00E1vis\u00ED na nasleduj\u00FAcich tre\u0165ostrann\u00FDch kni\u017Eniciach. +plugin.dependencies=Licencia a inform\u00E1cie o z\u00E1vislostiach pre pluginy diff --git a/core/src/main/resources/hudson/PluginManager/advanced_sk.properties b/core/src/main/resources/hudson/PluginManager/advanced_sk.properties new file mode 100644 index 0000000000..f800c9d89f --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/advanced_sk.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Check\ now=Skontroluj teraz +File=S\u00FAbor +HTTP\ Proxy\ Configuration=Konfigur\u00E1cia HTTP proxy +Submit=Po\u0161li +lastUpdated=Inform\u00E1cia o aktualiz\u00E1ci\u00E1ch z\u00EDskan\u00E1 pred: {0} diff --git a/core/src/main/resources/hudson/PluginManager/checkUpdates_sk.properties b/core/src/main/resources/hudson/PluginManager/checkUpdates_sk.properties new file mode 100644 index 0000000000..63be8b2c77 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/checkUpdates_sk.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Checking\ Updates...=Kontrolujem aktualiz\u00E1cie... +Done=Hotovo +Go\ back\ to\ update\ center=Sp\u00E4\u0165 na str\u00E1nku aktualiz\u00E1ci\u00ED diff --git a/core/src/main/resources/hudson/PluginManager/index_sk.properties b/core/src/main/resources/hudson/PluginManager/index_sk.properties index 378f2b097f..aaa201773a 100644 --- a/core/src/main/resources/hudson/PluginManager/index_sk.properties +++ b/core/src/main/resources/hudson/PluginManager/index_sk.properties @@ -23,3 +23,4 @@ All=V\u0161etko None=Ni\u010D Select=Vybra\u0165 +UpdatePageDescription=T\u00E1to str\u00E1nka vymen\u00FAva aktualiz\u00E1cie pre roz\u0161\u00EDrenia (doplnky), ktor\u00E9 pr\u00E1ve pou\u017E\u00EDvate. diff --git a/core/src/main/resources/hudson/PluginManager/installed_sk.properties b/core/src/main/resources/hudson/PluginManager/installed_sk.properties new file mode 100644 index 0000000000..c8e9109514 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/installed_sk.properties @@ -0,0 +1,12 @@ +# This file is under the MIT License by authors + +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Zmeny sa prejavia po re\u0161tarte Jenkins +Enabled=Povolen\u00E9 +Name=Meno +Previously\ installed\ version=Predch\u00E1dzaj\u00FAca verzia +Restart\ Once\ No\ Jobs\ Are\ Running=Re\u0161tartuj ked nebud\u00FA be\u017Ea\u0165 \u017Eiadne zostavenia +Uncheck\ to\ disable\ the\ plugin=Odzna\u010Den\u00EDm zak\u00E1\u017Eete plugin +Uninstall=Odin\u0161taluj +Uninstallation\ pending=Odin\u0161tal\u00E1cia \u010Dak\u00E1 +Version=Verzia +wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins diff --git a/core/src/main/resources/hudson/PluginManager/table_sk.properties b/core/src/main/resources/hudson/PluginManager/table_sk.properties index cf9901aa1e..67b4593c67 100644 --- a/core/src/main/resources/hudson/PluginManager/table_sk.properties +++ b/core/src/main/resources/hudson/PluginManager/table_sk.properties @@ -20,7 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Check\ to\ install\ the\ plugin=Ozna\u010Dte ked chcete nain\u0161talova\u0165 plugin +Click\ this\ heading\ to\ sort\ by\ category=Kliknite na z\u00E1hlavie na zoradenie pod\u013Ea kateg\u00F3rie +Download\ now\ and\ install\ after\ restart=Stiahni teraz a in\u0161taluj po re\u0161tarte +Inactive=Neakt\u00EDvny Install=In\u0161talova\u0165 +Install\ without\ restart=In\u0161taluj bez re\u0161tartu Installed=In\u0161talovan\u00E1 ver. Name=N\u00E1zov +No\ updates=\u017Diadne aktualiz\u00E1cie Version=Verzia diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sk.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sk.properties index 17be4fe5c7..9c4c9ad819 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sk.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sk.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Dismiss=Odmietni More\ Info=Viac inform\u00E1ci\u00ED +blurb=Vyzer\u00E1 to tak, \u017Ee je zl\u00E9 nastavenie reverzn\u00E9ho proxy. diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_sk.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_sk.properties new file mode 100644 index 0000000000..29e9e67603 --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +disableSyntaxHighlighting=Zak\u00E1\u017E syntaktick\u00E9 zv\u00FDraz\u0148ovanie diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_sk.properties b/core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_sk.properties new file mode 100644 index 0000000000..2ce2359996 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_sk.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Advanced\ Project\ Options=Pokro\u010Dil\u00E9 nastavenia projektu +Directory=Adres\u00E1r +Use\ custom\ workspace=Pou\u017Ei vlastn\u00FD pracovn\u00FD priestor diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_sk.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_sk.properties new file mode 100644 index 0000000000..0a5352cb18 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=Zmeny diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_sk.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_sk.properties index 2847f1c65d..4355230af2 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_sk.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_sk.properties @@ -20,7 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Zostavenie +Build=Beh +Build\ Artifacts=Artefakty zostavenia Not\ yet\ determined=E\u0161te nezisten\u00E9 Took=Trvalo +beingExecuted=Zostavenie bolo spusten\u00E9 pred {0} +on=na startedAgo=Spusten\u00E9 pred {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sk.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sk.properties index 2046107a16..c4969e8dfb 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sk.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sk.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=Nasleduj\u00FAce zostavenie -Previous\ Build=Predch\u00E1dzaj\u00FAce zostavenie +Next\ Build=Nasleduj\u00FAci beh +Previous\ Build=Predch\u00E1dzaj\u00FAci build diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_sk.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sk.properties index 66a74bdf6e..335cd9bfcc 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_sk.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sk.properties @@ -20,10 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=Nasp\u00E4\u0165 na projekt +Back\ to\ Project=Sp\u00E4\u0165 na projekt Changes=Zmeny Console\ Output=Konzolov\u00FD v\u00FDstup +View\ Build\ Information=Zobrazi\u0165 inform\u00E1cie o zostaven\u00ED View\ as\ plain\ text=Pozrie\u0165 ako \u010Dist\u00FD text -Edit\ Build\ Information=Upravi\u0165 info o zostaven\u00ED +Edit\ Build\ Information=Editova\u0165 inform\u00E1cie Status=Stav -raw=nespracovan\u00FD +raw=hrub\u00E9 d\u00E1ta diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_sk.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_sk.properties new file mode 100644 index 0000000000..9ba8920467 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Advanced\ Project\ Options=Roz\u0161\u00EDren\u00E9 nastavenia projektu +Display\ Name=Zobrazen\u00E9 meno diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_sk.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_sk.properties new file mode 100644 index 0000000000..3e539ee38f --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Yes=\u00C1no diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_sk.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_sk.properties new file mode 100644 index 0000000000..3a9ca92f10 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_sk.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Error:\ no\ workspace=Chyba: neexistuje pracovn\u00FD priestor +There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are:=Neexistuje pracovn\u00FD priestor pre tento projekt. Mo\u017En\u00E9 pr\u00ED\u010Diny s\u00FA: +li3=Adres\u00E1r pracovn\u00E9ho priestoru ({0}) bol odstr\u00E1nen\u00FD mimo Jenkinsu. +text=Spusti zostavenie a Jenkins vytvor\u00ED pracovn\u00FD priestor. diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/error_sk.properties b/core/src/main/resources/hudson/model/AbstractModelObject/error_sk.properties new file mode 100644 index 0000000000..8da54831ea --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractModelObject/error_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Error=Chyba diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_sk.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_sk.properties new file mode 100644 index 0000000000..0a5352cb18 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=Zmeny diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_sk.properties b/core/src/main/resources/hudson/model/AbstractProject/main_sk.properties new file mode 100644 index 0000000000..0a6785cdd1 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_sk.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Last\ Successful\ Artifacts=Posledn\u00FD \u00FAspe\u0161n\u00FD artefakt +Recent\ Changes=Ned\u00E1vne zmeny +Workspace=Pracovn\u00FD priestor diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_sk.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_sk.properties index 9759486e64..ea8e0f7790 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_sk.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_sk.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Zak\u00E1za\u0165 projekt +Disable\ Project=Zak\u00E1\u017E projekt +Enable=Povo\u013E +This\ project\ is\ currently\ disabled=Tento projekt je zak\u00E1zan\u00FD diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sk.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sk.properties index 826f284470..920c73c75a 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sk.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sk.properties @@ -21,10 +21,12 @@ # THE SOFTWARE. Back\ to\ Dashboard=Sp\u00E4\u0165 na Dashboard -Build\ scheduled= +Build\ scheduled=Zostavenie napl\u00E1novan\u00E9 Changes=Zmeny -Configure=Nastavi\u0165 -Status=Stav -Wipe\ Out\ Workspace=Vyma\u017E pracovn\u00FD priestor +Configure=Nastav +Status=S\u00FAhrn +Wipe\ Out\ Workspace=Vy\u010Disti\u0165 pracovn\u00FD priestor Workspace=Pracovn\u00FD priestor -delete=Zma\u017E +delete=Odstr\u00E1ni\u0165 +delete.confirm=Si si ist\u00FD vymazan\u00EDm {0} ''{1}''? +wipe.out.confirm=Si si ist\u00FD vymazan\u00EDm pracovn\u00E9ho priestoru? diff --git a/core/src/main/resources/hudson/model/AllView/noJob_sk.properties b/core/src/main/resources/hudson/model/AllView/noJob_sk.properties new file mode 100644 index 0000000000..e63a7e2554 --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Welcome\ to\ Jenkins!=Vitajte v Jenkins-e +newJob=Na za\u010Datie vytvorte nov\u00E9 \u00FAlohy pros\u00EDm. diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_sk.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_sk.properties new file mode 100644 index 0000000000..af1048289d --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +caused_by=p\u00F4vodn\u00E1 pr\u00ED\u010Dina: +started_by_project=Na\u0161tartovan\u00E9 upstream projektom {0} \u010D\u00EDslo zostavenia {1} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sk.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sk.properties index c4168b0d4a..c671278765 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sk.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sk.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +started_by_anonymous=Spusten\u00FD anonymn\u00FDm pou\u017E\u00EDvate\u013Eom started_by_user=Spusten\u00E9 u\u017E\u00EDvate\u013Eom {1} diff --git a/core/src/main/resources/hudson/model/Computer/builds_sk.properties b/core/src/main/resources/hudson/model/Computer/builds_sk.properties new file mode 100644 index 0000000000..e7bddce219 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/builds_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title=Hist\u00F3ria zostaven\u00ED na {0} diff --git a/core/src/main/resources/hudson/model/Computer/configure_sk.properties b/core/src/main/resources/hudson/model/Computer/configure_sk.properties new file mode 100644 index 0000000000..f47cc7bc55 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/configure_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=Meno diff --git a/core/src/main/resources/hudson/model/Computer/index_sk.properties b/core/src/main/resources/hudson/model/Computer/index_sk.properties new file mode 100644 index 0000000000..d74f30e95f --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/index_sk.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Created\ by=Vytvoren\u00FD pou\u017E\u00EDvate\u013Eom +Labels:=Zna\u010Dky: +None=\u017Diadny +submit.not.temporarilyOffline=Ozna\u010D stroj ako do\u010Dasne odpojen\u00FD +title.projects_tied_on=Projekty naviazan\u00E9 na {0} diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_sk.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_sk.properties new file mode 100644 index 0000000000..e79975c893 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_sk.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Back\ to\ List=Nasp\u00E4\u0165 na zoznam +Build\ History=Hist\u00F3ria zostaven\u00ED +Configure=Konfiguruj +Delete\ Slave=Vyma\u017E stroj +Load\ Statistics=\u0160tatistiky vy\u0165a\u017Eenia +Script\ Console=Skriptov\u00E1 konzola +Status=Stav diff --git a/core/src/main/resources/hudson/model/ComputerSet/_new_sk.properties b/core/src/main/resources/hudson/model/ComputerSet/_new_sk.properties new file mode 100644 index 0000000000..8831d9965d --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/_new_sk.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Name=Meno +Name\ is\ mandatory=Meno je povinn\u00E9 +Save=Ulo\u017E diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_sk.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_sk.properties new file mode 100644 index 0000000000..c69d2fd9af --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Preventive\ Node\ Monitoring=Prevent\u00EDvne monitorovanie stroja diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_sk.properties b/core/src/main/resources/hudson/model/ComputerSet/index_sk.properties new file mode 100644 index 0000000000..ca537e4a17 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/index_sk.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Configure=Konfiguruj +Data\ obtained=Z\u00EDskan\u00E9 \u00FAdaje +Name=Meno +Refresh\ status=Obnov stav diff --git a/core/src/main/resources/hudson/model/ComputerSet/new_sk.properties b/core/src/main/resources/hudson/model/ComputerSet/new_sk.properties new file mode 100644 index 0000000000..18afa50f6f --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/new_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Copy\ Existing\ Node=Kop\u00EDruj existuj\u00FAci stroj +Node\ name=Meno stroja diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_sk.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_sk.properties new file mode 100644 index 0000000000..5cd6e72a5c --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_sk.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=Nasp\u00E4\u0165 na Dashboard +Configure=Konfiguruj +Manage\ Jenkins=Spravuj Jenkins +New\ Node=Nov\u00FD stroj diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sk.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sk.properties new file mode 100644 index 0000000000..1dc5938400 --- /dev/null +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sk.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +No\ files\ in\ directory=\u017Diadne s\u00FAbory v adres\u00E1ri +all\ files\ in\ zip=v\u0161etky s\u00FAbory v zip bal\u00EDku +view=uk\u00E1\u017E diff --git a/core/src/main/resources/hudson/model/JDK/config_sk.properties b/core/src/main/resources/hudson/model/JDK/config_sk.properties new file mode 100644 index 0000000000..f47cc7bc55 --- /dev/null +++ b/core/src/main/resources/hudson/model/JDK/config_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=Meno diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_sk.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_sk.properties new file mode 100644 index 0000000000..0f7dfd3cc5 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_sk.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Build=Zostavenie +Build\ Time\ Trend=Trend \u010Dasu zostavenia +Duration=Trvanie +Slave=Stroj +Timeline=\u010Casov\u00E1 os diff --git a/core/src/main/resources/hudson/model/Job/configure_sk.properties b/core/src/main/resources/hudson/model/Job/configure_sk.properties new file mode 100644 index 0000000000..a218d7afe5 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/configure_sk.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Description=Popis +Discard\ Old\ Builds=Vymazanie star\u00FDch zostaven\u00ED +LOADING=Nahr\u00E1vanie +Strategy=Strat\u00E9gia +name={0} meno diff --git a/core/src/main/resources/hudson/model/Job/permalinks_sk.properties b/core/src/main/resources/hudson/model/Job/permalinks_sk.properties new file mode 100644 index 0000000000..947b9e5674 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/permalinks_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Permalinks=Permanentn\u00E9 linky diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_sk.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_sk.properties new file mode 100644 index 0000000000..575f20a232 --- /dev/null +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_sk.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Load\ statistics\ graph=Graf \u0161tatist\u00EDk vy\u0165a\u017Eenia +Long=Dlh\u00FD +Medium=Stredn\u00FD +Short=Kr\u00E1tky +Timespan=\u010Casov\u00FD rozsah +title=\u0160tatistiky vy\u0165a\u017Eenia: {0} diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_sk.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_sk.properties new file mode 100644 index 0000000000..9c1256b52a --- /dev/null +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Default\ View=Predvolen\u00FD poh\u013Ead diff --git a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_sk.properties b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_sk.properties new file mode 100644 index 0000000000..45f4d66f59 --- /dev/null +++ b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_sk.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=Nasp\u00E4\u0165 na Dashboard +No\ matching\ record\ found=Nena\u0161li sa zodpovedaj\u00FAce z\u00E1znamy +description=Odtla\u010Dok {0} nezodpoved\u00E1 \u017Eiadnemu z\u00E1znamu. diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_sk.properties b/core/src/main/resources/hudson/model/ParametersAction/index_sk.properties new file mode 100644 index 0000000000..4eb432843f --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersAction/index_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build=Zostavenie +Parameters=Parametre diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_sk.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_sk.properties new file mode 100644 index 0000000000..bcc1f6c9c4 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Add\ Parameter=Pridaj parameter +This\ build\ is\ parameterized=Toto zostavenie je parametrizovan\u00E9 diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sk.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sk.properties index fec2755c6d..f271421ce2 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sk.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sk.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Zostavi\u0165 +Build=Zostav description=Toto zostavenie vy\u017Eaduje parametre: diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_sk.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_sk.properties new file mode 100644 index 0000000000..4182828d3e --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +format="{0} ({1}), pred {2}" diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sk.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sk.properties new file mode 100644 index 0000000000..207a19a241 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Keep\ this\ build\ forever=Ponechaj toto zostavenie nav\u017Edy diff --git a/core/src/main/resources/hudson/model/Run/configure_sk.properties b/core/src/main/resources/hudson/model/Run/configure_sk.properties index 0a248c91e4..be62d618fc 100644 --- a/core/src/main/resources/hudson/model/Run/configure_sk.properties +++ b/core/src/main/resources/hudson/model/Run/configure_sk.properties @@ -23,4 +23,4 @@ Description=Popis DisplayName=Zobrazovan\u00E9 meno LOADING=Nahr\u00E1vanie -Save=Ulo\u017Ei\u0165 +Save=Ulo\u017E diff --git a/core/src/main/resources/hudson/model/Run/console_sk.properties b/core/src/main/resources/hudson/model/Run/console_sk.properties index 3a8c6618a4..63fb512d24 100644 --- a/core/src/main/resources/hudson/model/Run/console_sk.properties +++ b/core/src/main/resources/hudson/model/Run/console_sk.properties @@ -21,3 +21,5 @@ # THE SOFTWARE. Console\ Output=Konzolov\u00FD v\u00FDstup +View\ as\ plain\ text=Zobrazi\u0165 ako ne\u0161ifrovan\u00FD text +skipSome=Presko\u010Den\u00FDch {0,number,integer} KB.. Pln\u00FD log diff --git a/core/src/main/resources/hudson/model/Run/delete_sk.properties b/core/src/main/resources/hudson/model/Run/delete_sk.properties index 7fb4969302..aa06e1d851 100644 --- a/core/src/main/resources/hudson/model/Run/delete_sk.properties +++ b/core/src/main/resources/hudson/model/Run/delete_sk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=Zmaza\u0165 zostavenie +Delete\ this\ build=Odstr\u00E1ni\u0165 beh diff --git a/core/src/main/resources/hudson/model/Run/logKeep_sk.properties b/core/src/main/resources/hudson/model/Run/logKeep_sk.properties new file mode 100644 index 0000000000..210d012cff --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/logKeep_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Don''t\ keep\ this\ build\ forever=Neponechaj zostavenie nav\u017Edy +Keep\ this\ build\ forever=Ponecha\u0165 beh nav\u017Edy diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sk.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sk.properties new file mode 100644 index 0000000000..bf1846bf8b --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Preparation=Pr\u00EDprava diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_sk.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_sk.properties new file mode 100644 index 0000000000..903d6a9d1f --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Running=Be\u017Eiace diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sk.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sk.properties new file mode 100644 index 0000000000..629f2f9d3d --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Restarting\ Jenkins=Re\u0161tartovanie Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_sk.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_sk.properties new file mode 100644 index 0000000000..6e1e613a00 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_sk.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Go\ back\ to\ the\ top\ page=Nasp\u00E4\u0165 na hlavn\u00FA str\u00E1nku +warning=Re\u0161tartuj Jenkins, ke\u010F je in\u0161tal\u00E1cia hotov\u00E1 a nebe\u017Eia \u017Eiadne projekty +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=m\u00F4\u017Eete hne\u010F za\u010Da\u0165 pou\u017E\u00EDva\u0165 in\u0161talovan\u00E9 doplnky diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_sk.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_sk.properties new file mode 100644 index 0000000000..4cce5a3d12 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Installing\ Plugins/Upgrades=In\u0161tal\u00E1cia doplnkov a aktualiz\u00E1ci\u00ED diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sk.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sk.properties new file mode 100644 index 0000000000..4f85d0e059 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sk.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=Nasp\u00E4\u0165 na Dashboard +Manage\ Jenkins=Spravuj Jenkins +Manage\ Plugins=Spravuj doplnky diff --git a/core/src/main/resources/hudson/model/User/builds_sk.properties b/core/src/main/resources/hudson/model/User/builds_sk.properties new file mode 100644 index 0000000000..81459f0010 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/builds_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title=Zostavenia pre {0} diff --git a/core/src/main/resources/hudson/model/User/configure_sk.properties b/core/src/main/resources/hudson/model/User/configure_sk.properties new file mode 100644 index 0000000000..e3f41aea4a --- /dev/null +++ b/core/src/main/resources/hudson/model/User/configure_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Description=Popis +Your\ name=Meno diff --git a/core/src/main/resources/hudson/model/User/delete_sk.properties b/core/src/main/resources/hudson/model/User/delete_sk.properties new file mode 100644 index 0000000000..aacb25fec1 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/delete_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Are\ you\ sure\ about\ deleting\ the\ user\ from\ Jenkins?=Ste si ist\u00FD vymazan\u00EDm pou\u017E\u00EDvate\u013Ea z Jenkins? +Yes=\u00C1no diff --git a/core/src/main/resources/hudson/model/User/index_sk.properties b/core/src/main/resources/hudson/model/User/index_sk.properties new file mode 100644 index 0000000000..be18d357f1 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ User\ Id=Prihlasovacie meno do Jenkins diff --git a/core/src/main/resources/hudson/model/User/sidepanel_sk.properties b/core/src/main/resources/hudson/model/User/sidepanel_sk.properties new file mode 100644 index 0000000000..6c669b8d32 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/sidepanel_sk.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Builds=Zostavenia +Configure=Konfiguruj +Delete=Vyma\u017E +My\ Views=Moje Poh\u013Eadz +People=\u013Dudia +Status=Stav diff --git a/core/src/main/resources/hudson/model/View/builds_sk.properties b/core/src/main/resources/hudson/model/View/builds_sk.properties new file mode 100644 index 0000000000..e056bc1569 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/builds_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Export\ as\ plain\ XML=Exportova\u0165 vo form\u00E1te XML +buildHistory=Hist\u00F3ria zostaven\u00ED diff --git a/core/src/main/resources/hudson/model/View/newJob_sk.properties b/core/src/main/resources/hudson/model/View/newJob_sk.properties index eb0e233f96..df90ccbf4b 100644 --- a/core/src/main/resources/hudson/model/View/newJob_sk.properties +++ b/core/src/main/resources/hudson/model/View/newJob_sk.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -CopyExisting=Skop\u00EDrova\u0165 existuj\u00FAcu \u00FAlohu -JobName=N\u00E1zov \u00FAlohy +CopyExisting=Skop\u00EDrova\u0165 existuj\u00FAci projekt +JobName=N\u00E1zov projektu diff --git a/core/src/main/resources/hudson/model/View/sidepanel_sk.properties b/core/src/main/resources/hudson/model/View/sidepanel_sk.properties index d20dd3dacc..382470e97a 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_sk.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_sk.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=Hist\u00F3ria zostaven\u00ED +Build\ History=Hist\u00F3ria behov Check\ File\ Fingerprint=Skontroluj odtla\u010Dok s\u00FAboru Delete\ View=Zmaza\u0165 poh\u013Ead Edit\ View=Upravi\u0165 poh\u013Ead -NewJob=Nov\u00FD {0} +NewJob=Nov\u00FD People=\u013Dudia Project\ Relationship=Vz\u0165ahy projektov diff --git a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_sk.properties b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_sk.properties new file mode 100644 index 0000000000..4e683f1bdd --- /dev/null +++ b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Free\ Space\ Threshold=Prahov\u00E1 hodnota vo\u013En\u00E9ho miesta diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sk.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sk.properties new file mode 100644 index 0000000000..7f60cf44b7 --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ changes.=Bez zmien, diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_sk.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_sk.properties new file mode 100644 index 0000000000..e2206d3ccc --- /dev/null +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ changes\ in\ any\ of\ the\ builds.=\u017Diadne zmeny zostaven\u00ED. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sk.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sk.properties new file mode 100644 index 0000000000..b34dbe04c3 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Allow\ users\ to\ sign\ up=Povo\u013E pou\u017E\u00EDvate\u013Eom zaregistrova\u0165 sa diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_sk.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_sk.properties new file mode 100644 index 0000000000..3556af60ea --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_sk.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Name=Meno +User\ Id=Prihlasovacie meno +Users=Pou\u017E\u00EDvatelia diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sk.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sk.properties new file mode 100644 index 0000000000..d8ca9236ea --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +sign\ up=Registr\u00E1cia diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_sk.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_sk.properties new file mode 100644 index 0000000000..c830a2947b --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_sk.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=Nasp\u00E4t na Dashboard +Create\ User=Vytvor pou\u017E\u00EDvate\u013Ea +Manage\ Jenkins=Spravuj Jenkins diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_sk.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_sk.properties new file mode 100644 index 0000000000..d3932dd38f --- /dev/null +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Unprotected\ URLs=Nezabezpe\u010Den\u00E9 URLs diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sk.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sk.properties index ea474f83a9..0287d5d6a8 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sk.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=Prihl\u00E1senie +login=Prihl\u00E1si\u0165 sa diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_sk.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_sk.properties new file mode 100644 index 0000000000..f004f39c92 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_sk.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +#\ of\ executors=Po\u010Det sp\u00FA\u0161\u0165a\u010Dov +Availability=Dostupnos\u0165 +Description=Popis +Labels=Zna\u010Dky +Launch\ method=Met\u00F3da sp\u00FA\u0161\u0165ania diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sk.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sk.properties new file mode 100644 index 0000000000..7cbfa3b055 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_sk.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_sk.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_sk.properties new file mode 100644 index 0000000000..91cfe65636 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Disconnect=Odpoj +System\ Information=Syst\u00E9mov\u00E9 inform\u00E1cia diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_sk.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_sk.properties new file mode 100644 index 0000000000..6c37a97245 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_sk.properties @@ -0,0 +1,10 @@ +# This file is under the MIT License by authors + +Days\ to\ keep\ artifacts=Po\u010Det dn\u00ED na ponechanie artefaktov +Days\ to\ keep\ builds=Po\u010Det dn\u00ED na ponechanie zostaven\u00ED +Max\ #\ of\ builds\ to\ keep=Maxim\u00E1lny po\u010Det ponechan\u00FDch zostaven\u00ED +Max\ #\ of\ builds\ to\ keep\ with\ artifacts=Maxim\u00E1lny po\u010Det ponechan\u00FDch zostaven\u00ED s artefaktami +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=ak nie je pr\u00E1zdne, artefakty tohto zostavenia s\u00FA ponechan\u00E9 najviac to\u013Eko dn\u00ED, ale logy, hist\u00F3ria, reporty, at\u010F s\u00FA ponechan\u00E9 +if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=ak nie je pr\u00E1zdne, nahr\u00E1vky zostavenia s\u00FA ponechan\u00E9 najviac to\u013Eko dn\u00ED +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=ak nie je pr\u00E1zdne, ponech\u00E1 sa najviac to\u013Eko nahr\u00E1vok zostaven\u00ED +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ builds\ have\ their\ artifacts\ retained=ak nie je pr\u00E1zdne, ponech\u00E1 sa najviac to\u013Eko nahr\u00E1vok zostaven\u00ED diff --git a/core/src/main/resources/hudson/tools/JDKInstaller/config_sk.properties b/core/src/main/resources/hudson/tools/JDKInstaller/config_sk.properties new file mode 100644 index 0000000000..73175d4e39 --- /dev/null +++ b/core/src/main/resources/hudson/tools/JDKInstaller/config_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Version=Verzia diff --git a/core/src/main/resources/hudson/tools/ToolInstallation/global_sk.properties b/core/src/main/resources/hudson/tools/ToolInstallation/global_sk.properties new file mode 100644 index 0000000000..da86f767a4 --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolInstallation/global_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +label.add=Pridaj {0} +label.delete=Vyma\u017E {0} diff --git a/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_sk.properties b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_sk.properties new file mode 100644 index 0000000000..f47cc7bc55 --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=Meno diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_sk.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_sk.properties new file mode 100644 index 0000000000..6787156d5a --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_sk.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Polling\ Log=Dotazovac\u00ED z\u00E1znam +View\ as\ plain\ text=Zobrazi\u0165 ako jednoduch\u00FD text +blurb=T\u00E1to str\u00E1nka zachyt\u00E1va dotazovac\u00ED z\u00E1znam, ktor\u00FD spustil toto zostavenie. diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_sk.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_sk.properties new file mode 100644 index 0000000000..4fb26c661f --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title="{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 index 5086b405f2..1a9f7aca65 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_sk.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_sk.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Schedule\ a\ build=Napl\u00E1nuj build +Build\ scheduled=Napl\u00E1novan\u00E9 zostavenia +Schedule\ a\ build=Napl\u00E1nuj zostavenie +Schedule\ a\ build\ with\ parameters=Napl\u00E1nuj zostavenie s parametrami diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_sk.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_sk.properties new file mode 100644 index 0000000000..a46ed8ab4f --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +New\ View=Nov\u00FD poh\u013Ead diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sk.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sk.properties index bf85037f66..ef72cff6b9 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sk.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=Doba trvania +Last\ Duration=Posledn\u00E9 trvanie diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sk.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sk.properties index 913d1dfad9..a6fefcd09a 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sk.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=Posledn\u00E9 chybn\u00E9 +Last\ Failure=Posledn\u00FD ne\u00FAspech diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_sk.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_sk.properties index 0e8668de9d..2721d4c0f1 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/column_sk.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_sk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=Neexisutje +N/A=Neexistuje diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sk.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sk.properties index a18503410d..5cf41d789d 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sk.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=Posledn\u00FD \u00FAspech +Last\ Success=Najnov\u0161\u00ED \u00FAspech diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_sk.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_sk.properties index 37716a7144..920b99f74c 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_sk.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_sk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=V\u00FDsledok posledn\u00E9ho buildu +Status\ of\ the\ last\ build=V\u00FDsledok posledn\u00E9ho zostavenia diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sk.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sk.properties index 0b64e69d53..e668eda6c3 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sk.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sk.properties @@ -20,4 +20,4 @@ # 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=Stav po\u010Dasia ukazuje zhrnut\u00FD stav posledn\u00FDch buildov +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Stav po\u010Dasia ukazuje zhrnut\u00FD stav posledn\u00FDch zostaven\u00ED diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_sk.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_sk.properties new file mode 100644 index 0000000000..88d64d1702 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_sk.properties @@ -0,0 +1,4 @@ +# 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/HistoryWidget/index_sk.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_sk.properties index 2d2f1223fb..2eca2dc4a9 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_sk.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_sk.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +More\ ...=Viac ... for\ all=pre v\u0161etky -for\ failures=pre zlyhania +for\ failures=pre ne\u00FAspechy trend=trend diff --git a/core/src/main/resources/jenkins/management/PluginsLink/info_sk.properties b/core/src/main/resources/jenkins/management/PluginsLink/info_sk.properties new file mode 100644 index 0000000000..f3c7891250 --- /dev/null +++ b/core/src/main/resources/jenkins/management/PluginsLink/info_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +updates\ available=aktualiz\u00E1cie dostupn\u00E9 diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_sk.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_sk.properties new file mode 100644 index 0000000000..8b069d4bc3 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Home\ directory=Domovsk\u00FD adres\u00E1r +LOADING=Nahr\u00E1vanie diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sk.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sk.properties new file mode 100644 index 0000000000..3d4ccea16d --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sk.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Check=Skontroluj +Check\ File\ Fingerprint=Skontroluj odtla\u010Dok s\u00FAboru +File\ to\ check=S\u00FAbor na kontrolu +fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint +more\ details=viac detailov diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_sk.properties b/core/src/main/resources/jenkins/model/Jenkins/login_sk.properties index adbb24fedf..ee34d9e52b 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_sk.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_sk.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Password=Heslo -Remember\ me\ on\ this\ computer=Zapam\u00E4ta\u0165 si ma na tomto po\u010D\u00EDta\u010Di -User=U\u017E\u00EDvate\u013E -login=Prihl\u00E1senie +Remember\ me\ on\ this\ computer=Zapam\u00E4taj si ma na tomto po\u010D\u00EDta\u010Di +User=Pou\u017E\u00EDvate\u013E +login=Prihl\u00E1s diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_sk.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_sk.properties index e49c27b8be..479f87dd95 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_sk.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_sk.properties @@ -20,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Load\ Statistics=\u0160tatistiky za\u0165a\u017Eenia Manage\ Jenkins=Spravova\u0165 Jenkins +Manage\ Nodes=Spravova\u0165 uzly +are.you.sure={0}: si si ist\u00FD? diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_sk.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_sk.properties new file mode 100644 index 0000000000..14c737fd51 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +View\ name=Meno poh\u013Eadu diff --git a/core/src/main/resources/jenkins/model/Jenkins/oops_sk.properties b/core/src/main/resources/jenkins/model/Jenkins/oops_sk.properties new file mode 100644 index 0000000000..c7fabd122f --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/oops_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Jenkins\ project=Projekt Jenkins +problemHappened=Vyskytol sa probl\u00E9m pri spracov\u00E1van\u00ED po\u017Eiadavky. diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_sk.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_sk.properties new file mode 100644 index 0000000000..379fae025d --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_sk.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Compare=Porovnaj +Project\ Relationship=Vz\u0165ahy projektov +downstream\ project=downstream projekt +upstream\ project=upstream projekt diff --git a/core/src/main/resources/lib/form/advanced_sk.properties b/core/src/main/resources/lib/form/advanced_sk.properties new file mode 100644 index 0000000000..3ec1154130 --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Advanced=Pokro\u010Dil\u00E9 +customizedFields=Jeden alebo viac pol\u00ED v tomto bloku bolo zmenen\u00FDch. diff --git a/core/src/main/resources/lib/form/apply_sk.properties b/core/src/main/resources/lib/form/apply_sk.properties new file mode 100644 index 0000000000..0325a43d1d --- /dev/null +++ b/core/src/main/resources/lib/form/apply_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Apply=Pou\u017Ei diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_sk.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_sk.properties new file mode 100644 index 0000000000..c4d671cb68 --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=Konfigur\u00E1cia diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_sk.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_sk.properties index 2f83d19dab..b11aae4783 100644 --- a/core/src/main/resources/lib/form/repeatableDeleteButton_sk.properties +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_sk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete=Zmaza\u0165 +Delete=Vyma\u017E diff --git a/core/src/main/resources/lib/form/repeatable_sk.properties b/core/src/main/resources/lib/form/repeatable_sk.properties new file mode 100644 index 0000000000..9ae7f233a0 --- /dev/null +++ b/core/src/main/resources/lib/form/repeatable_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Add=Pridaj diff --git a/core/src/main/resources/lib/form/slave-mode_sk.properties b/core/src/main/resources/lib/form/slave-mode_sk.properties new file mode 100644 index 0000000000..c2a99f7c23 --- /dev/null +++ b/core/src/main/resources/lib/form/slave-mode_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Usage=Pou\u017Eitie diff --git a/core/src/main/resources/lib/hudson/artifactList_sk.properties b/core/src/main/resources/lib/hudson/artifactList_sk.properties new file mode 100644 index 0000000000..fe7bb1da8a --- /dev/null +++ b/core/src/main/resources/lib/hudson/artifactList_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +view=pozri diff --git a/core/src/main/resources/lib/hudson/buildCaption_sk.properties b/core/src/main/resources/lib/hudson/buildCaption_sk.properties index 0f9a5b8d5b..c8ed53c417 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_sk.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_sk.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Progress=Priebeh -cancel=Preru\u0161i\u0165 +cancel=zru\u0161i\u0165 diff --git a/core/src/main/resources/lib/hudson/buildHealth_sk.properties b/core/src/main/resources/lib/hudson/buildHealth_sk.properties index 00c09df395..bf12c8432e 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_sk.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_sk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=Opis +Description=Popis diff --git a/core/src/main/resources/lib/hudson/buildListTable_sk.properties b/core/src/main/resources/lib/hudson/buildListTable_sk.properties new file mode 100644 index 0000000000..5a093658b7 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildListTable_sk.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Build=Zostavenie +Click\ to\ center\ timeline\ on\ event=Vycentruj \u010Dasov\u00FA os na zostavenie +Console\ output=V\u00FDstup konzoly +Status=Stav +Time\ Since=\u010Cas od zostavenia diff --git a/core/src/main/resources/lib/hudson/editableDescription_sk.properties b/core/src/main/resources/lib/hudson/editableDescription_sk.properties index c3c9811eb5..9f467cfd44 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_sk.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_sk.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=Pridaj popis +add\ description=prida\u0165 popis edit\ description=upravi\u0165 popis diff --git a/core/src/main/resources/lib/hudson/executors_sk.properties b/core/src/main/resources/lib/hudson/executors_sk.properties index 19e2d784f9..f06e075455 100644 --- a/core/src/main/resources/lib/hudson/executors_sk.properties +++ b/core/src/main/resources/lib/hudson/executors_sk.properties @@ -20,8 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Stav sp\u00FA\u0161\u0165a\u010Da zostaven\u00ED -Building=Zostavujem -Idle=Vo\u013En\u00FD +Build\ Executor\ Status=Stav vykon\u00E1vate\u013Eov +Building=Vykon\u00E1vam +Idle=Ne\u010Dinn\u00FD +Master=Velite\u013E Status=Stav -terminate\ this\ build=preru\u0161i\u0165 toto zostavenie +terminate\ this\ build=preru\u0161i\u0165 tento beh diff --git a/core/src/main/resources/lib/hudson/node_sk.properties b/core/src/main/resources/lib/hudson/node_sk.properties new file mode 100644 index 0000000000..0c7115d8f5 --- /dev/null +++ b/core/src/main/resources/lib/hudson/node_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +master=velite\u013E diff --git a/core/src/main/resources/lib/hudson/project/config-assignedLabel_sk.properties b/core/src/main/resources/lib/hudson/project/config-assignedLabel_sk.properties new file mode 100644 index 0000000000..445141b3ad --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-assignedLabel_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Label\ Expression=V\u00FDraz zo zna\u010Diek +Restrict\ where\ this\ project\ can\ be\ run=Ohrani\u010D, kde m\u00F4\u017Ee by\u0165 tento projekt spusten\u00FD diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_sk.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_sk.properties new file mode 100644 index 0000000000..90f71fc0ee --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Block\ build\ when\ downstream\ project\ is\ building=Zablokuj zostavenie, k\u00FDm sa zostavuje downstream projekt diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_sk.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_sk.properties new file mode 100644 index 0000000000..14bb7b0a6d --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Block\ build\ when\ upstream\ project\ is\ building=Zablokuj zostavenie, k\u00FDm sa zostavuje upstream projekt diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_sk.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_sk.properties new file mode 100644 index 0000000000..a4454ed239 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title.concurrentbuilds=Spusti paralen\u00E9 zostavenia, ak je potrebn\u00E9 diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_sk.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_sk.properties new file mode 100644 index 0000000000..69e47bad86 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Directory=Adres\u00E1r +Use\ custom\ workspace=Pou\u017Ei vlastn\u00FD pracovn\u00FD priestor diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_sk.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_sk.properties new file mode 100644 index 0000000000..1898b3d0da --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Disable\ Build=Zak\u00E1\u017E zostavenie +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Nebud\u00FA sa da\u0165 sp\u00FA\u0161\u0165a\u0165 nov\u00E9 zostavenia, k\u00FDm sa projekt znova nepovol\u00ED. diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_sk.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_sk.properties new file mode 100644 index 0000000000..0867313bbd --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Number\ of\ seconds=Po\u010Det sek\u00FAnd +Quiet\ period=Doba ne\u010Dinnosti diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_sk.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_sk.properties new file mode 100644 index 0000000000..649deaaa03 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Retry\ Count=Po\u010Det opakovan\u00ED +SCM\ checkout\ retry\ count=Po\u010Det opakovan\u00ED SCM checkoutov diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_sk.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_sk.properties new file mode 100644 index 0000000000..364580f2c6 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Downstream\ Projects=Downstream projekty +Upstream\ Projects=Upstream projekty diff --git a/core/src/main/resources/lib/hudson/queue_sk.properties b/core/src/main/resources/lib/hudson/queue_sk.properties index f77b73e4d1..fce37b6f8b 100644 --- a/core/src/main/resources/lib/hudson/queue_sk.properties +++ b/core/src/main/resources/lib/hudson/queue_sk.properties @@ -20,5 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Fronta zostaven\u00ED -No\ builds\ in\ the\ queue.=\u017Diadne buildy v rade. +Build\ Queue=Rad behov +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins bude vypnut\u00FD. \u017Diadne \u010Fal\u0161ie zostavenia sa nevykonaj\u00FA. +No\ builds\ in\ the\ queue.=\u017Diadne zostavenia v rade. +WaitingFor=\u010Cak\u00E1 sa na {0} +cancel=zru\u0161 diff --git a/core/src/main/resources/lib/hudson/rssBar_sk.properties b/core/src/main/resources/lib/hudson/rssBar_sk.properties index 2511ec1500..37efff4110 100644 --- a/core/src/main/resources/lib/hudson/rssBar_sk.properties +++ b/core/src/main/resources/lib/hudson/rssBar_sk.properties @@ -22,5 +22,5 @@ Legend=Legenda for\ all=pre v\u0161etko -for\ failures=pre zlyhania -for\ just\ latest\ builds=pre posledn\u00E9 buildy +for\ failures=pre ne\u00FAspechy +for\ just\ latest\ builds=pre posledn\u00E9 zostavenia diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_sk.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_sk.properties new file mode 100644 index 0000000000..3df559f16a --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +License=Licencia +Name=Meno diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_sk.properties b/core/src/main/resources/lib/layout/breadcrumbBar_sk.properties new file mode 100644 index 0000000000..3b879203b7 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_sk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=VYPN\u00DA\u0164 AUTOMATICK\u00C9 OBNOVENIE +ENABLE\ AUTO\ REFRESH=POVOLI\u0164 AUTOMATICK\u00DA OBNOVU diff --git a/core/src/main/resources/lib/layout/layout_sk.properties b/core/src/main/resources/lib/layout/layout_sk.properties index be70f7f46a..56229f2fbf 100644 --- a/core/src/main/resources/lib/layout/layout_sk.properties +++ b/core/src/main/resources/lib/layout/layout_sk.properties @@ -20,8 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ENABLE\ AUTO\ REFRESH=ZAPN\u00DA\u0164 AUTOMATICK\u00C9 OBNOVOVANIE +DISABLE\ AUTO\ REFRESH=VYPN\u00DA\u0164 AUTOMATICK\u00C9 OBNOVOVANIE +ENABLE\ AUTO\ REFRESH=POVOLI\u0164 AUTO REFRESH Page\ generated=Str\u00E1nka vygenerovan\u00E1 -logout=odhl\u00E1si\u0165 +logout=Odhl\u00E1senie search=h\u013Eada\u0165 searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/core/src/main/resources/lib/layout/main-panel_sk.properties b/core/src/main/resources/lib/layout/main-panel_sk.properties new file mode 100644 index 0000000000..6064d84ebe --- /dev/null +++ b/core/src/main/resources/lib/layout/main-panel_sk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ is\ going\ to\ shut\ down=Jenkins bude vypnut\u00FD -- GitLab From 60d8abc254cf57c102f83edcc7ba9cdfae43336d Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:03 -0700 Subject: [PATCH 076/308] Community-contributed localization for Slovenian (sl) --- .../message_sl.properties | 5 +++++ .../model/AbstractBuild/changes_sl.properties | 3 +++ .../model/AbstractBuild/sidepanel_sl.properties | 1 + .../model/AbstractBuild/tasks_sl.properties | 4 ++++ .../model/AbstractModelObject/error_sl.properties | 3 +++ .../model/AbstractProject/changes_sl.properties | 3 +++ .../model/AbstractProject/main_sl.properties | 2 +- .../AbstractProject/makeDisabled_sl.properties | 3 +++ .../model/AbstractProject/sidepanel_sl.properties | 10 ++++++---- .../hudson/model/AllView/noJob_sl.properties | 4 ++++ .../hudson/model/Computer/index_sl.properties | 4 ++++ .../hudson/model/Computer/sidepanel_sl.properties | 3 +++ .../hudson/model/ComputerSet/index_sl.properties | 5 +++++ .../model/ComputerSet/sidepanel_sl.properties | 3 +++ .../DirectoryBrowserSupport/dir_sl.properties | 4 ++++ .../hudson/model/Job/buildTimeTrend_sl.properties | 5 +++++ .../hudson/model/Job/index_sl.properties | 3 +++ .../hudson/model/Job/permalinks_sl.properties | 2 +- .../Permalink/link_sl.properties | 2 +- .../hudson/model/Run/console_sl.properties | 5 +++++ .../ConnectionCheckJob/row_sl.properties | 3 +++ .../CoreUpdateMonitor/message_sl.properties | 4 ++++ .../DownloadJob/Success/status_sl.properties | 3 +++ .../hudson/model/UpdateCenter/body_sl.properties | 5 +++++ .../hudson/model/UpdateCenter/index_sl.properties | 3 +++ .../model/UpdateCenter/sidepanel_sl.properties | 5 +++++ .../hudson/model/View/People/index_sl.properties | 7 +++++++ .../hudson/model/View/sidepanel_sl.properties | 4 ++++ .../loginLink_sl.properties | 2 +- .../SecurityRealm/loginLink_sl.properties | 2 +- .../test/MetaTabulatedResult/body_sl.properties | 11 +++++++++++ .../tasks/test/TestObject/sidepanel_sl.properties | 3 +++ .../tasks/test/TestResult/index_sl.properties | 3 +++ .../floatingBox_sl.properties | 4 ++++ .../views/BuildButtonColumn/column_sl.properties | 3 +++ .../DefaultViewsTabBar/viewTabs_sl.properties | 2 +- .../views/LastDurationColumn/column_sl.properties | 3 +++ .../LastFailureColumn/columnHeader_sl.properties | 2 +- .../views/LastFailureColumn/column_sl.properties | 3 +++ .../LastSuccessColumn/columnHeader_sl.properties | 2 +- .../views/LastSuccessColumn/column_sl.properties | 3 +++ .../views/StatusColumn/columnHeader_sl.properties | 2 +- .../WeatherColumn/columnHeader_sl.properties | 3 +++ .../BuildHistoryWidget/entries_sl.properties | 4 ++++ .../widgets/HistoryWidget/entry_sl.properties | 2 +- .../widgets/HistoryWidget/index_sl.properties | 6 +++--- .../jenkins/model/Jenkins/legend_sl.properties | 15 +++++++++++++++ .../jenkins/model/Jenkins/manage_sl.properties | 14 ++++++++++++++ .../jenkins/model/Jenkins/newView_sl.properties | 3 +++ .../model/Jenkins/systemInfo_sl.properties | 8 ++++++++ .../resources/lib/form/textarea_sl.properties | 3 +++ .../lib/hudson/buildCaption_sl.properties | 4 ++++ .../lib/hudson/buildProgressBar_sl.properties | 4 ++++ .../lib/hudson/editableDescription_sl.properties | 2 +- .../resources/lib/hudson/executors_sl.properties | 7 +++++-- .../resources/lib/hudson/iconSize_sl.properties | 3 +++ .../project/upstream-downstream_sl.properties | 4 ++-- .../lib/hudson/propertyTable_sl.properties | 4 ++++ .../main/resources/lib/hudson/queue_sl.properties | 5 +++-- .../resources/lib/hudson/rssBar_sl.properties | 5 ++++- .../lib/layout/breadcrumbBar_sl.properties | 4 ++++ .../resources/lib/layout/layout_sl.properties | 4 ++-- .../src/main/resources/lib/test/bar_sl.properties | 3 +++ 63 files changed, 233 insertions(+), 27 deletions(-) create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sl.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/changes_sl.properties create mode 100644 core/src/main/resources/hudson/model/AbstractModelObject/error_sl.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/changes_sl.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/makeDisabled_sl.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_sl.properties create mode 100644 core/src/main/resources/hudson/model/Computer/index_sl.properties create mode 100644 core/src/main/resources/hudson/model/Computer/sidepanel_sl.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/index_sl.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/sidepanel_sl.properties create mode 100644 core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sl.properties create mode 100644 core/src/main/resources/hudson/model/Job/buildTimeTrend_sl.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_sl.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_sl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_sl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_sl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/index_sl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sl.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_sl.properties create mode 100644 core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_sl.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_sl.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResult/index_sl.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_sl.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_sl.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/column_sl.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_sl.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_sl.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sl.properties create mode 100644 core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_sl.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/legend_sl.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/manage_sl.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/newView_sl.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/systemInfo_sl.properties create mode 100644 core/src/main/resources/lib/form/textarea_sl.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_sl.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_sl.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_sl.properties create mode 100644 core/src/main/resources/lib/hudson/propertyTable_sl.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_sl.properties create mode 100644 core/src/main/resources/lib/test/bar_sl.properties diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sl.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sl.properties new file mode 100644 index 0000000000..61e28704bb --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sl.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Dismiss=Zavrzite +More\ Info=Ve\u010D informacij +blurb=Izgleda, da je nastavitev va\u0161ega posredni\u0161kega stre\u017Enika nepravilna. diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_sl.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_sl.properties new file mode 100644 index 0000000000..79e4127042 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_sl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=Spremembe diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sl.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sl.properties index f1589f80cb..7e02b2fbcf 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sl.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sl.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Next\ Build=Naslednje prevajanje Previous\ Build=Prej\u0161nje prevajanje diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_sl.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sl.properties index d050eea3f5..07c359bcb7 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_sl.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sl.properties @@ -23,4 +23,8 @@ Back\ to\ Project=Nazaj na projekt Changes=Spremembe Console\ Output=Izpis konzole +Edit\ Build\ Information=Uredi prevajanje Status=Stanje +View\ Build\ Information=Poglej informacije o prevajanju +View\ as\ plain\ text=Poglej kot navaden tekst +raw=surov diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/error_sl.properties b/core/src/main/resources/hudson/model/AbstractModelObject/error_sl.properties new file mode 100644 index 0000000000..c57d605760 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractModelObject/error_sl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Error=Napaka diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_sl.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_sl.properties new file mode 100644 index 0000000000..79e4127042 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_sl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=Spremembe diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_sl.properties b/core/src/main/resources/hudson/model/AbstractProject/main_sl.properties index 73d3678f58..574f8b5545 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_sl.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_sl.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Last\ Successful\ Artifacts=Zadnji uspe\u0161en izdelek -Recent\ Changes=Najnovej\u0161e spremembe +Recent\ Changes=Zadnje spremembe Workspace=Delovno okolje diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_sl.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_sl.properties new file mode 100644 index 0000000000..595431e4e6 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_sl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Disable\ Project=Izklju\u010Di projekt diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sl.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sl.properties index 6e77437e67..84870f8eac 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sl.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sl.properties @@ -20,11 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Nazaj na Zapisnik -Build\ scheduled=Buildaj ob umiku +Back\ to\ Dashboard=Nazaj na Pregledni zapis +Build\ scheduled=Buildaj po umiku Changes=Spremembe Configure=Nastavitve -Status=Status +Status=Stanje Wipe\ Out\ Workspace=Bri\u0161i delovno okolje Workspace=Delovno okolje -delete=Bri\u0161i +delete=Izbri\u0161i +delete.confirm=Ali ste prepri\u010Dana o izbrisanju ? +wipe.out.confirm=Ali ste prepri\u010Dani, da bi izbrisal delovno okolje? diff --git a/core/src/main/resources/hudson/model/AllView/noJob_sl.properties b/core/src/main/resources/hudson/model/AllView/noJob_sl.properties new file mode 100644 index 0000000000..7f83cfbe49 --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_sl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Welcome\ to\ Jenkins!=Pozdravljeni pri Jenkinsu! +newJob=Prosimo, da za za\u010Detek ustvarite novo opravilo. diff --git a/core/src/main/resources/hudson/model/Computer/index_sl.properties b/core/src/main/resources/hudson/model/Computer/index_sl.properties new file mode 100644 index 0000000000..e4fead1287 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/index_sl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +None=Noben +title.projects_tied_on=Projekti vezani na {0} diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_sl.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_sl.properties new file mode 100644 index 0000000000..a7fff8d683 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_sl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Back\ to\ List=Nazaj na seznam diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_sl.properties b/core/src/main/resources/hudson/model/ComputerSet/index_sl.properties new file mode 100644 index 0000000000..c69ea2bf90 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/index_sl.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Configure=Nastavi +Name=Ime +Refresh\ status=Osve\u017Ei stanje diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_sl.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_sl.properties new file mode 100644 index 0000000000..f182738fa8 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_sl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=Nazaj na pregled diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sl.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sl.properties new file mode 100644 index 0000000000..36ecbc3bc2 --- /dev/null +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +all\ files\ in\ zip=vse datoteke kot zip +view=prika\u017Ei diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_sl.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_sl.properties new file mode 100644 index 0000000000..c958eedf26 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_sl.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Build\ Time\ Trend=Trend trajanja buildov +Duration=Trajanje +Timeline=\u010Casovnica diff --git a/core/src/main/resources/hudson/model/Job/index_sl.properties b/core/src/main/resources/hudson/model/Job/index_sl.properties new file mode 100644 index 0000000000..b0498cd410 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_sl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Disable\ Project=Onemogo\u010Di projekt diff --git a/core/src/main/resources/hudson/model/Job/permalinks_sl.properties b/core/src/main/resources/hudson/model/Job/permalinks_sl.properties index e3985fde5a..047f06d661 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_sl.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_sl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Permalinks=Ve\u010Dne povezave +Permalinks=Trajne povezave diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_sl.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_sl.properties index 1c6a44c9c4..4f14d645b1 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_sl.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_sl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -format="{0} ({1}), prej {2}" +format="{0} ({1}), pred {2}" diff --git a/core/src/main/resources/hudson/model/Run/console_sl.properties b/core/src/main/resources/hudson/model/Run/console_sl.properties new file mode 100644 index 0000000000..f5dad9a1cc --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_sl.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Console\ Output=Izpis konzole +View\ as\ plain\ text=Poglej kot text +skipSome=Izpu\u0161\u010Deno {0,number,integer} KB.. Celoten izpis diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sl.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sl.properties new file mode 100644 index 0000000000..5e7134a069 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Preparation=Priprava diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sl.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sl.properties new file mode 100644 index 0000000000..b69224ebd3 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +NewVersionAvailable=Nova razli\u010Dica Jenkins-a ({0}) je na voljo za prenos (seznam sprememb). +Or\ Upgrade\ Automatically=ali posodobi samodejno diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_sl.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_sl.properties new file mode 100644 index 0000000000..189fbc1841 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_sl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Success=Uspeh diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_sl.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_sl.properties new file mode 100644 index 0000000000..0a31204284 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_sl.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Go\ back\ to\ the\ top\ page=Nazaj na vrh strani +warning=Ponovno za\u017Eeni Jenkins ko bo in\u0161talacija kon\u010Dana ne bo nobenih teko\u010Dih poslov +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=vti\u010Dnik lahko za\u010Dnete uporabljati takoj diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_sl.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_sl.properties new file mode 100644 index 0000000000..7082257fc6 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_sl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Installing\ Plugins/Upgrades=In\u0161taliram vti\u010Dnike/nadgradnje diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sl.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sl.properties new file mode 100644 index 0000000000..b0f400a749 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sl.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=Nazaj na nadzorno plo\u0161\u010Do +Manage\ Jenkins=Nastavitve Jenkins-a +Manage\ Plugins=Nastavitve vti\u010Dnikov diff --git a/core/src/main/resources/hudson/model/View/People/index_sl.properties b/core/src/main/resources/hudson/model/View/People/index_sl.properties new file mode 100644 index 0000000000..7e2eb9b364 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_sl.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Last\ Active=Zadnja aktivnost +Name=Ime +On=Aktiven +People=Uporabniki +User\ Id=Uporabnikov Id diff --git a/core/src/main/resources/hudson/model/View/sidepanel_sl.properties b/core/src/main/resources/hudson/model/View/sidepanel_sl.properties index c35107e537..a0a85ee14c 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_sl.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_sl.properties @@ -21,5 +21,9 @@ # THE SOFTWARE. Build\ History=Zgodovina prevajanja +Check\ File\ Fingerprint=Otisci guza +Delete\ View=Izbri\u0161i pogled +Edit\ View=Uredi pogled NewJob=Nov People=Uporabniki +Project\ Relationship=With my ass diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sl.properties index 422806cf19..612fcf6239 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sl.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -sign\ up=prijavite +sign\ up=registracija diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sl.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sl.properties index 1b6ffe56fb..26872fda7f 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sl.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=prijavite v +login=prijava v diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_sl.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_sl.properties new file mode 100644 index 0000000000..6ce7616b7e --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_sl.properties @@ -0,0 +1,11 @@ +# This file is under the MIT License by authors + +All\ Failed\ Tests=Vsi neuspeli testi +All\ Tests=Vsi testi +Duration=Trajanje +Fail=Neuspelo +Loading...=Nalaganje... +Skip=Izpu\u0161\u010Deno +Test\ Name=Ime testa +Total=Skupaj +diff=razlika diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_sl.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_sl.properties new file mode 100644 index 0000000000..08a50a399d --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_sl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +History=Zgodovina diff --git a/core/src/main/resources/hudson/tasks/test/TestResult/index_sl.properties b/core/src/main/resources/hudson/tasks/test/TestResult/index_sl.properties new file mode 100644 index 0000000000..8e8ff118ce --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResult/index_sl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +took=Trajalo je {0}. diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_sl.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_sl.properties new file mode 100644 index 0000000000..57cc7e4d75 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_sl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +enlarge=Pove\u010Dava +just\ show\ failures=Samo poka\u017Ei napake diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_sl.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_sl.properties new file mode 100644 index 0000000000..708ade0e43 --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_sl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Schedule\ a\ build=Na\u010Drtuj build diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sl.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sl.properties index f07986f5f3..05fa2ae11e 100644 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sl.properties +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -New\ View=nov pogled +New\ View=Nov pogled diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_sl.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_sl.properties new file mode 100644 index 0000000000..2d525aae20 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_sl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=Nope.png diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sl.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sl.properties index 91ca7580fd..fe57017f3b 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sl.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=Zadnji neuspeh +Last\ Failure=Zadnji neuspe\u0161en diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_sl.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_sl.properties new file mode 100644 index 0000000000..2d525aae20 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_sl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=Nope.png diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sl.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sl.properties index 1058a0cc0f..328fecda8c 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sl.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=Zadnji upsesen +Last\ Success=Zadnji upse\u0161en diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_sl.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_sl.properties new file mode 100644 index 0000000000..2d525aae20 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_sl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=Nope.png diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_sl.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_sl.properties index e6db167659..de97a17a37 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_sl.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_sl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=status zadnjega builda +Status\ of\ the\ last\ build=Stanje zadnje izdelave diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sl.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sl.properties new file mode 100644 index 0000000000..6534a21c84 --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Vremensko poro\u010Dilo, ki ka\u017Ee stanje zadnjih prevajanj diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_sl.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_sl.properties new file mode 100644 index 0000000000..665e2f5568 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_sl.properties @@ -0,0 +1,4 @@ +# 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/HistoryWidget/entry_sl.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_sl.properties index fbfef7c04a..823c392e35 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_sl.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_sl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Zapis konzole +Console\ Output=Izpis na konzoli diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_sl.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_sl.properties index 8d33ce9a8f..aa8572bc2b 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_sl.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_sl.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. More\ ...=Ve\u010D ... -for\ all=za vse -for\ failures=za napake -trend=trend +for\ all=Za vse +for\ failures=Za napake +trend=Trend diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_sl.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_sl.properties new file mode 100644 index 0000000000..70468a3c43 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_sl.properties @@ -0,0 +1,15 @@ +# This file is under the MIT License by authors + +blue=Zadnji build je bil uspe\u0161en. +blue_anime=Zadnji build je bil uspe\u0161en. V teku je nov build. +grey=Projekt \u0161e nikoli ni bil buildan, ali pa je onemogo\u010Den. +grey_anime=V teku je prvi build. +health-00to20=Zdravje projekta je pod 20%. Za natan\u010Dnej\u0161o razlago pridr\u017Eite kazalec mi\u0161ke nad ikono projekta. +health-21to40=Zdravje projekta je med 20 in 40%. Za natan\u010Dnej\u0161o razlago pridr\u017Eite kazalec mi\u0161ke nad ikono projekta. +health-41to60=Zdravje projekta je med 40 in 60%. Za natan\u010Dnej\u0161o razlago pridr\u017Eite kazalec mi\u0161ke nad ikono projekta. +health-61to80=Zdravje projekta je med 60 in 80%. Za natan\u010Dnej\u0161o razlago pridr\u017Eite kazalec mi\u0161ke nad ikono projekta. +health-81plus=Zdravje projekta je prek 80%. Za natan\u010Dnej\u0161o razlago pridr\u017Eite kazalec mi\u0161ke nad ikono projekta. +red=Zadnji build ni uspel. +red_anime=Zadnji build ni uspel. V teku je nov build. +yellow=Zadnji build je bil uspe\u0161en, a ni stabilen. To je namenjeno prikazu napak testov. +yellow_anime=Zadnji build je bil uspe\u0161en, a ni stabilen. V teku je nov build. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_sl.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_sl.properties new file mode 100644 index 0000000000..e2e9f6ac49 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_sl.properties @@ -0,0 +1,14 @@ +# This file is under the MIT License by authors + +Configure\ System=Nastavite sistem +Configure\ global\ settings\ and\ paths.=Nastavite globalnih nastavitev in poti +Jenkins\ CLI=Jenkinsov CLI +Load\ Statistics=Nalo\u017Ei statistiko +Manage\ Jenkins=Upravljaj Jenkins +Manage\ Plugins=Upravljanje vstavkov +Prepare\ for\ Shutdown=Pripravite se za zaustavitev sistema +Reload\ Configuration\ from\ Disk=Ponovno naslo\u017Eite nastavitve z diska +Script\ Console=Skriptna konzola +System\ Information=Sistemske informacije +System\ Log=Sistemski dnevnik +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Uporabno, \u010De spreminjate nastavitvene datoteke neposredno na disku. diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_sl.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_sl.properties new file mode 100644 index 0000000000..ccaf0b91ab --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_sl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +View\ name=Ime pogleda diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_sl.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_sl.properties new file mode 100644 index 0000000000..90e6d794be --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_sl.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Enabled=Omogo\u010Den +Environment\ Variables=Spremenljivke okolja +Name=Ime +Plugins=Vti\u010Dniki +System\ Properties=Lastnosti sistema +Version=Verzija diff --git a/core/src/main/resources/lib/form/textarea_sl.properties b/core/src/main/resources/lib/form/textarea_sl.properties new file mode 100644 index 0000000000..5e54c1c60b --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_sl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Preview=Predogled diff --git a/core/src/main/resources/lib/hudson/buildCaption_sl.properties b/core/src/main/resources/lib/hudson/buildCaption_sl.properties new file mode 100644 index 0000000000..c9b8cbfc59 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_sl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Progress=Napredek +cancel=prekli\u010Di diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_sl.properties b/core/src/main/resources/lib/hudson/buildProgressBar_sl.properties new file mode 100644 index 0000000000..97e9164f80 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_sl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +text=Startan pred {0}
+Predviden preostali \u010Das: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_sl.properties b/core/src/main/resources/lib/hudson/editableDescription_sl.properties index 317870b7f5..ffc112f1bb 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_sl.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_sl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=dodaj opis +add\ description=Dodaj opis edit\ description=spremeni opis diff --git a/core/src/main/resources/lib/hudson/executors_sl.properties b/core/src/main/resources/lib/hudson/executors_sl.properties index 7973db1277..5418df4e6a 100644 --- a/core/src/main/resources/lib/hudson/executors_sl.properties +++ b/core/src/main/resources/lib/hudson/executors_sl.properties @@ -20,5 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Stanje -Status=Status +Build\ Executor\ Status=Stanje izvajalcev buildov +Building=Prevajam +Idle=Nedejavno +Status=Stanje +terminate\ this\ build=prekli\u010Di ta build diff --git a/core/src/main/resources/lib/hudson/iconSize_sl.properties b/core/src/main/resources/lib/hudson/iconSize_sl.properties new file mode 100644 index 0000000000..aedf9532fe --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_sl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Icon=Ikona diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_sl.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_sl.properties index 0ae7e0c312..c6a3aa1ca1 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_sl.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_sl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Downstream\ Projects=Projekti spodaj -Upstream\ Projects=Projekti zgoraj +Downstream\ Projects=Odvisni projekti +Upstream\ Projects=Projekti od katerih je odvisen ta projekt diff --git a/core/src/main/resources/lib/hudson/propertyTable_sl.properties b/core/src/main/resources/lib/hudson/propertyTable_sl.properties new file mode 100644 index 0000000000..095ad9a998 --- /dev/null +++ b/core/src/main/resources/lib/hudson/propertyTable_sl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Name=Ime +Value=Vrednost diff --git a/core/src/main/resources/lib/hudson/queue_sl.properties b/core/src/main/resources/lib/hudson/queue_sl.properties index b279bfc086..af794a1572 100644 --- a/core/src/main/resources/lib/hudson/queue_sl.properties +++ b/core/src/main/resources/lib/hudson/queue_sl.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Cakalna vrsta -No\ builds\ in\ the\ queue.=Cakalna vrsta je prazna +Build\ Queue=\u010Cakalna vrsta +No\ builds\ in\ the\ queue.=\u010Cakalna vrsta je prazna +WaitingFor=\u010Cakam na diff --git a/core/src/main/resources/lib/hudson/rssBar_sl.properties b/core/src/main/resources/lib/hudson/rssBar_sl.properties index ce8c3b1fa6..4344549494 100644 --- a/core/src/main/resources/lib/hudson/rssBar_sl.properties +++ b/core/src/main/resources/lib/hudson/rssBar_sl.properties @@ -20,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -for\ failures=za neuspehe +Legend=Legenda +for\ all=Za vse +for\ failures=Za neuspehe +for\ just\ latest\ builds=Samo za zadnje razli\u010Dice diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_sl.properties b/core/src/main/resources/lib/layout/breadcrumbBar_sl.properties new file mode 100644 index 0000000000..504e408780 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_sl.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=ONEMOGO\u010CI SAMODEJNO OSVE\u017DEVANJE +ENABLE\ AUTO\ REFRESH=Onemogo\u010Di avtomatsko osve\u017Eevanje diff --git a/core/src/main/resources/lib/layout/layout_sl.properties b/core/src/main/resources/lib/layout/layout_sl.properties index 4a93eacc8f..f3b81594ac 100644 --- a/core/src/main/resources/lib/layout/layout_sl.properties +++ b/core/src/main/resources/lib/layout/layout_sl.properties @@ -23,5 +23,5 @@ ENABLE\ AUTO\ REFRESH=SAMODEJNO OSVE\u017DUJ STRAN Page\ generated=Stran ustvarjena logout=odjava -search=i\u0161\u010Di -searchBox.url= +search=I\u0161\u010Di +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/core/src/main/resources/lib/test/bar_sl.properties b/core/src/main/resources/lib/test/bar_sl.properties new file mode 100644 index 0000000000..c8dfa55751 --- /dev/null +++ b/core/src/main/resources/lib/test/bar_sl.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +tests={0} testov -- GitLab From b9f4af68908c95bffe488c02701e5a20dbcea254 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:03 -0700 Subject: [PATCH 077/308] Community-contributed localization for Albanian (sq) --- .../hudson/model/AbstractBuild/index_sq.properties | 7 +++++++ .../hudson/model/AbstractBuild/sidepanel_sq.properties | 4 ++++ .../hudson/model/AbstractBuild/tasks_sq.properties | 7 +++++++ .../model/Cause/UserIdCause/description_sq.properties | 3 +++ .../hudson/model/DirectoryBrowserSupport/dir_sq.properties | 4 ++++ .../main/resources/hudson/model/Run/delete_sq.properties | 3 +++ .../hudson/scm/EmptyChangeLogSet/digest_sq.properties | 3 +++ .../hudson/security/SecurityRealm/loginLink_sq.properties | 3 +++ .../main/resources/lib/hudson/buildCaption_sq.properties | 4 ++++ .../resources/lib/hudson/buildProgressBar_sq.properties | 3 +++ .../main/resources/lib/layout/breadcrumbBar_sq.properties | 3 +++ core/src/main/resources/lib/layout/layout_sq.properties | 6 ++++++ 12 files changed, 50 insertions(+) create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_sq.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sq.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_sq.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UserIdCause/description_sq.properties create mode 100644 core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sq.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_sq.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sq.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_sq.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_sq.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_sq.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_sq.properties create mode 100644 core/src/main/resources/lib/layout/layout_sq.properties diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_sq.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_sq.properties new file mode 100644 index 0000000000..384f43b271 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_sq.properties @@ -0,0 +1,7 @@ +# 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/sidepanel_sq.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sq.properties new file mode 100644 index 0000000000..eea72ec893 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sq.properties @@ -0,0 +1,4 @@ +# 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/tasks_sq.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sq.properties new file mode 100644 index 0000000000..4f83713864 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sq.properties @@ -0,0 +1,7 @@ +# 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/Cause/UserIdCause/description_sq.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sq.properties new file mode 100644 index 0000000000..8ac2add17a --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sq.properties @@ -0,0 +1,3 @@ +# 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/DirectoryBrowserSupport/dir_sq.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sq.properties new file mode 100644 index 0000000000..5aede91884 --- /dev/null +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sq.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +all\ files\ in\ zip=Alle Daten +view=Auschau diff --git a/core/src/main/resources/hudson/model/Run/delete_sq.properties b/core/src/main/resources/hudson/model/Run/delete_sq.properties new file mode 100644 index 0000000000..67b0605cdb --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_sq.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete\ this\ build=Build l\u00F6schen diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sq.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sq.properties new file mode 100644 index 0000000000..1220b78e95 --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sq.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ changes.=Nein Chagengbagnenzies! diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sq.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sq.properties new file mode 100644 index 0000000000..1f4769096e --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sq.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +login=hyrje diff --git a/core/src/main/resources/lib/hudson/buildCaption_sq.properties b/core/src/main/resources/lib/hudson/buildCaption_sq.properties new file mode 100644 index 0000000000..ee9271b77b --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_sq.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Progress=Proaigraiss +cancel=Kahn Cell diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_sq.properties b/core/src/main/resources/lib/hudson/buildProgressBar_sq.properties new file mode 100644 index 0000000000..9c3f36342e --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_sq.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +text=Straighted, lake soma tahm bek diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_sq.properties b/core/src/main/resources/lib/layout/breadcrumbBar_sq.properties new file mode 100644 index 0000000000..9ac5279b26 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_sq.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=Neich lona diff --git a/core/src/main/resources/lib/layout/layout_sq.properties b/core/src/main/resources/lib/layout/layout_sq.properties new file mode 100644 index 0000000000..88134044ed --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_sq.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Page\ generated=Generierte Saitn +logout=SHEET OOT +search=K\u00EBrko +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -- GitLab From 0ec13420df1bf06f9bfbe7794a001f74819469a8 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:03 -0700 Subject: [PATCH 078/308] Community-contributed localization for Serbian (sr) --- .../ReverseProxySetupMonitor/message_sr.properties | 3 +++ .../hudson/model/AbstractBuild/changes_sr.properties | 3 +++ .../hudson/model/AbstractBuild/index_sr.properties | 7 +++++++ .../hudson/model/AbstractBuild/sidepanel_sr.properties | 4 ++++ .../hudson/model/AbstractBuild/tasks_sr.properties | 9 +++++++++ .../hudson/model/AbstractProject/main_sr.properties | 4 ++++ .../model/AbstractProject/sidepanel_sr.properties | 10 ++++++++++ .../resources/hudson/model/AllView/noJob_sr.properties | 4 ++++ .../hudson/model/Job/permalinks_sr.properties | 3 +++ .../Permalink/link_sr.properties | 3 +++ .../resources/hudson/model/Run/console_sr.properties | 4 ++++ .../resources/hudson/model/Run/delete_sr.properties | 3 +++ .../UpdateCenter/ConnectionCheckJob/row_sr.properties | 3 +++ .../DownloadJob/Pending/status_sr.properties | 3 +++ .../RestartJenkinsJob/Pending/status_sr.properties | 3 +++ .../UpdateCenter/RestartJenkinsJob/row_sr.properties | 3 +++ .../hudson/model/UpdateCenter/body_sr.properties | 5 +++++ .../hudson/model/UpdateCenter/index_sr.properties | 3 +++ .../hudson/model/UpdateCenter/sidepanel_sr.properties | 5 +++++ .../hudson/model/View/sidepanel_sr.properties | 8 ++++++-- .../hudson/scm/EmptyChangeLogSet/digest_sr.properties | 3 +++ .../HudsonPrivateSecurityRealm/loginLink_sr.properties | 3 +++ .../security/SecurityRealm/loginLink_sr.properties | 3 +++ .../views/BuildButtonColumn/column_sr.properties | 4 ++++ .../DefaultMyViewsTabBar/myViewTabs_sr.properties | 3 +++ .../views/DefaultViewsTabBar/viewTabs_sr.properties | 3 +++ .../LastDurationColumn/columnHeader_sr.properties | 3 +++ .../views/LastFailureColumn/columnHeader_sr.properties | 3 +++ .../views/LastFailureColumn/column_sr.properties | 3 +++ .../views/LastSuccessColumn/columnHeader_sr.properties | 3 +++ .../views/StatusColumn/columnHeader_sr.properties | 3 +++ .../views/WeatherColumn/columnHeader_sr.properties | 3 +++ .../hudson/widgets/HistoryWidget/entry_sr.properties | 3 +++ .../hudson/widgets/HistoryWidget/index_sr.properties | 5 +++++ .../jenkins/model/Jenkins/configure_sr.properties | 7 +++++++ .../jenkins/model/Jenkins/manage_sr.properties | 4 ++++ .../src/main/resources/lib/form/advanced_sr.properties | 3 +++ .../lib/form/breadcrumb-config-outline_sr.properties | 3 +++ .../src/main/resources/lib/form/helpArea_sr.properties | 3 +++ .../src/main/resources/lib/form/textarea_sr.properties | 4 ++++ .../resources/lib/hudson/buildCaption_sr.properties | 4 ++++ .../resources/lib/hudson/buildHealth_sr.properties | 3 +++ .../lib/hudson/buildProgressBar_sr.properties | 3 +++ .../lib/hudson/editableDescription_sr.properties | 3 +++ .../main/resources/lib/hudson/executors_sr.properties | 6 +++++- .../main/resources/lib/hudson/iconSize_sr.properties | 3 +++ .../hudson/project/upstream-downstream_sr.properties | 4 ++++ core/src/main/resources/lib/hudson/queue_sr.properties | 6 ++++++ .../src/main/resources/lib/hudson/rssBar_sr.properties | 6 ++++++ .../resources/lib/layout/breadcrumbBar_sr.properties | 3 +++ .../src/main/resources/lib/layout/layout_sr.properties | 6 +++++- 51 files changed, 202 insertions(+), 4 deletions(-) create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sr.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/changes_sr.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_sr.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sr.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_sr.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_sr.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_sr.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_sr.properties create mode 100644 core/src/main/resources/hudson/model/Job/permalinks_sr.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_sr.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_sr.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_sr.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sr.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_sr.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_sr.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sr.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_sr.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/index_sr.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sr.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sr.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sr.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_sr.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_sr.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_sr.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sr.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sr.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sr.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_sr.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sr.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_sr.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sr.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_sr.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_sr.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/configure_sr.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/manage_sr.properties create mode 100644 core/src/main/resources/lib/form/advanced_sr.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_sr.properties create mode 100644 core/src/main/resources/lib/form/helpArea_sr.properties create mode 100644 core/src/main/resources/lib/form/textarea_sr.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_sr.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_sr.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_sr.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_sr.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_sr.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_sr.properties create mode 100644 core/src/main/resources/lib/hudson/queue_sr.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_sr.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_sr.properties diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sr.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sr.properties new file mode 100644 index 0000000000..e045957692 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +More\ Info=Vi\u0161e Informacija diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_sr.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_sr.properties new file mode 100644 index 0000000000..5d4ef6a979 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=\u041F\u0440\u043E\u043C\u0435\u043D\u0435 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_sr.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_sr.properties new file mode 100644 index 0000000000..2a36f45d57 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_sr.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Build=Projekat +Build\ Artifacts=Artifakti projekta +Took=Uzmi +on=na +startedAgo=Zapoceto pre {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sr.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sr.properties new file mode 100644 index 0000000000..effcb55a0a --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Next\ Build=Naredna Gradnja +Previous\ Build=Prethodno sklapoanje diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_sr.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sr.properties new file mode 100644 index 0000000000..2505d1654c --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sr.properties @@ -0,0 +1,9 @@ +# 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 diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_sr.properties b/core/src/main/resources/hudson/model/AbstractProject/main_sr.properties new file mode 100644 index 0000000000..543c3b75fd --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Last\ Successful\ Artifacts=Poslednji uspe\u0161ni artifakt +Recent\ Changes=Nedavne promene diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sr.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sr.properties new file mode 100644 index 0000000000..650f18c0ea --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sr.properties @@ -0,0 +1,10 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=Nazad na Tablu +Build\ scheduled=Build je zakazan +Changes=Izmene +Configure=Podesavana +Wipe\ Out\ Workspace=Obrisi Workspace +delete=Obrisi {0} +delete.confirm=Da li \u017Eeli\u0161 da obri\u0161e\u0161 {0} \u2018{1}\u2019? +wipe.out.confirm=Da li si siguran da \u017Eeli\u0161 da poni\u0161ti\u0161 radni prostor diff --git a/core/src/main/resources/hudson/model/AllView/noJob_sr.properties b/core/src/main/resources/hudson/model/AllView/noJob_sr.properties new file mode 100644 index 0000000000..a0d1ef95df --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_sr.properties @@ -0,0 +1,4 @@ +# 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. diff --git a/core/src/main/resources/hudson/model/Job/permalinks_sr.properties b/core/src/main/resources/hudson/model/Job/permalinks_sr.properties new file mode 100644 index 0000000000..875957e4c1 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/permalinks_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Permalinks=Linkovi 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 new file mode 100644 index 0000000000..bdde2cdba9 --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +format={0}({1}), {2} pre diff --git a/core/src/main/resources/hudson/model/Run/console_sr.properties b/core/src/main/resources/hudson/model/Run/console_sr.properties new file mode 100644 index 0000000000..c4c0552d28 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Console\ Output=Ispis konzole +View\ as\ plain\ text=Vidi kao obi\u010Dan tekst diff --git a/core/src/main/resources/hudson/model/Run/delete_sr.properties b/core/src/main/resources/hudson/model/Run/delete_sr.properties new file mode 100644 index 0000000000..b5ac4708b1 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete\ this\ build=Obrisi build 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 new file mode 100644 index 0000000000..fa1e2190e2 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Preparation=Priprema 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 new file mode 100644 index 0000000000..baf65f0336 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Pending=U toku 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 new file mode 100644 index 0000000000..baf65f0336 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Pending=U toku 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 new file mode 100644 index 0000000000..5ff318c3cf --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Restarting\ Jenkins=Restart Jenkins-a diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_sr.properties new file mode 100644 index 0000000000..fc0d020534 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_sr.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_sr.properties new file mode 100644 index 0000000000..22d5060384 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Installing\ Plugins/Upgrades=Instalacija dodataka/nadogradnja diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sr.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sr.properties new file mode 100644 index 0000000000..a82734d03e --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sr.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/model/View/sidepanel_sr.properties b/core/src/main/resources/hudson/model/View/sidepanel_sr.properties index 7e58ed85aa..0564fcdb0e 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_sr.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_sr.properties @@ -20,5 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewJob=Novo {0} -People=Ljudi +Build\ History=Istorija Gradnje +Check\ File\ Fingerprint=Proveri verziju fajla +Edit\ View=\u0418\u0437\u043C\u0435\u043D\u0438 \u043F\u043E\u0433\u043B\u0435\u0434 +NewJob=\u041D\u043E\u0432\u043E{0} +People=\u0409\u0443\u0434\u0438 +Project\ Relationship=Veze projekta diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sr.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sr.properties new file mode 100644 index 0000000000..3e8a8d487a --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ changes.=Broj promena diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sr.properties new file mode 100644 index 0000000000..35c26ea458 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sr.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sr.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sr.properties new file mode 100644 index 0000000000..d57edbe159 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +login=Prijavi se diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_sr.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_sr.properties new file mode 100644 index 0000000000..74507a6d5f --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build\ scheduled=Plan pokretanja +Schedule\ a\ build=Zaka\u017Ei gradnju diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_sr.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_sr.properties new file mode 100644 index 0000000000..e072208cd4 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +New\ View=Novi pogled diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sr.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sr.properties new file mode 100644 index 0000000000..d115f68374 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +New\ View=Novi prikaz diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sr.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sr.properties new file mode 100644 index 0000000000..0dc0c40cfe --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Duration=Poslednje trajanje diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sr.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sr.properties new file mode 100644 index 0000000000..a26e6b3c24 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Failure=Poslednja gre\u0161ka diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_sr.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_sr.properties new file mode 100644 index 0000000000..5506e1cdd2 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=Nije dostupno diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sr.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sr.properties new file mode 100644 index 0000000000..6dd5d60340 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Success=Poslednje uspe\u0161no diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_sr.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_sr.properties new file mode 100644 index 0000000000..23fd1afde1 --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Status\ of\ the\ last\ build=Status poslednje gradnje diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sr.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sr.properties new file mode 100644 index 0000000000..9e5e28e3a5 --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sr.properties @@ -0,0 +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 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_sr.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_sr.properties new file mode 100644 index 0000000000..1695ebc85e --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Console\ Output=Konzolni Output diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_sr.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_sr.properties new file mode 100644 index 0000000000..7c753aa453 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_sr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +More\ ...=Vi\u0161e +for\ all=za sve +for\ failures=za otkaze diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_sr.properties new file mode 100644 index 0000000000..ba97cef5b0 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_sr.properties @@ -0,0 +1,7 @@ +# 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 diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_sr.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_sr.properties new file mode 100644 index 0000000000..7a581e1d72 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Configure\ System=Konfiguri\u0161i Sistem +Manage\ Jenkins=Administriraj Jenkins diff --git a/core/src/main/resources/lib/form/advanced_sr.properties b/core/src/main/resources/lib/form/advanced_sr.properties new file mode 100644 index 0000000000..a16b944ce5 --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Advanced=Napredno diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_sr.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_sr.properties new file mode 100644 index 0000000000..bb8447c4cb --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=konfiguracija diff --git a/core/src/main/resources/lib/form/helpArea_sr.properties b/core/src/main/resources/lib/form/helpArea_sr.properties new file mode 100644 index 0000000000..f54a6caaa9 --- /dev/null +++ b/core/src/main/resources/lib/form/helpArea_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Loading...=Ucitavanje... diff --git a/core/src/main/resources/lib/form/textarea_sr.properties b/core/src/main/resources/lib/form/textarea_sr.properties new file mode 100644 index 0000000000..ac88bf0154 --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=Ukloni prikaz +Preview=Prikazi diff --git a/core/src/main/resources/lib/hudson/buildCaption_sr.properties b/core/src/main/resources/lib/hudson/buildCaption_sr.properties new file mode 100644 index 0000000000..566efd02da --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Progress=Progres +cancel=Prekini diff --git a/core/src/main/resources/lib/hudson/buildHealth_sr.properties b/core/src/main/resources/lib/hudson/buildHealth_sr.properties new file mode 100644 index 0000000000..49ee343c9b --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Description=Opis diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_sr.properties b/core/src/main/resources/lib/hudson/buildProgressBar_sr.properties new file mode 100644 index 0000000000..cd6aa2f3b6 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +text=Zapo\u010Deto od {0}
O\u010Dekivano preostalo vreme: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_sr.properties b/core/src/main/resources/lib/hudson/editableDescription_sr.properties new file mode 100644 index 0000000000..35b19cb549 --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +add\ description=dodaj opis diff --git a/core/src/main/resources/lib/hudson/executors_sr.properties b/core/src/main/resources/lib/hudson/executors_sr.properties index d5da0303f9..86e9d7b4e5 100644 --- a/core/src/main/resources/lib/hudson/executors_sr.properties +++ b/core/src/main/resources/lib/hudson/executors_sr.properties @@ -20,4 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status=Status +Build\ Executor\ Status=Status Izvr\u0161itelja Gradnje +Building=Izgradnja +Idle=mirovanje +Status=\u0421\u0442\u0430\u045A\u0435 +terminate\ this\ build=okon\u010Daj ovu gradnju diff --git a/core/src/main/resources/lib/hudson/iconSize_sr.properties b/core/src/main/resources/lib/hudson/iconSize_sr.properties new file mode 100644 index 0000000000..908c440494 --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Icon=ikonica diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_sr.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_sr.properties new file mode 100644 index 0000000000..ae9d077e7b --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_sr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Downstream\ Projects=Downstream projekti +Upstream\ Projects=Upstream projekti diff --git a/core/src/main/resources/lib/hudson/queue_sr.properties b/core/src/main/resources/lib/hudson/queue_sr.properties new file mode 100644 index 0000000000..2fc4d0511c --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_sr.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Build\ Queue=Red Gradnje +No\ builds\ in\ the\ queue.=Nema zakazanih procesa +WaitingFor=\u010Ceka se {0} +WaitingSince=\u010Ceka od {0} diff --git a/core/src/main/resources/lib/hudson/rssBar_sr.properties b/core/src/main/resources/lib/hudson/rssBar_sr.properties new file mode 100644 index 0000000000..00ddfd30a3 --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_sr.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Legend=Legenda +for\ all=za sve +for\ failures=za neuspe\u0161ne +for\ just\ latest\ builds=samo za najnovije gradnje diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_sr.properties b/core/src/main/resources/lib/layout/breadcrumbBar_sr.properties new file mode 100644 index 0000000000..dc5c69d85d --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_sr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=UKLJU\u010CI AUTOMATSKI OSVE\u017DAVANJE diff --git a/core/src/main/resources/lib/layout/layout_sr.properties b/core/src/main/resources/lib/layout/layout_sr.properties index 34b9e220ec..7442ffec3f 100644 --- a/core/src/main/resources/lib/layout/layout_sr.properties +++ b/core/src/main/resources/lib/layout/layout_sr.properties @@ -20,4 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -search=Trazi +ENABLE\ AUTO\ REFRESH=OMOGU\u0106I AUTOMATSKO OSVE\u017DAVANJE +Page\ generated=Izgenerirana stranica +logout=Odlogiraj se +search=Tra\u017Ei +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -- GitLab From d983b58739ad6df1e6d6ab197c6f32858bcef912 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:03 -0700 Subject: [PATCH 079/308] Community-contributed localization for sv_SE (sv_SE) --- .../PluginManager/advanced_sv_SE.properties | 4 ++-- .../PluginManager/installed_sv_SE.properties | 4 ++-- .../hudson/PluginManager/table_sv_SE.properties | 4 ++++ .../message_sv_SE.properties | 4 ++-- .../LogRecorderManager/index_sv_SE.properties | 3 +++ .../sidepanel_sv_SE.properties | 1 + .../MatrixProject/ajaxMatrix_sv_SE.properties | 3 +++ .../configure-entries_sv_SE.properties | 5 +++++ .../matrix/MatrixProject/index_sv_SE.properties | 4 ++++ .../model/AbstractBuild/index_sv_SE.properties | 9 ++++++++- .../AbstractBuild/sidepanel_sv_SE.properties | 2 +- .../model/AbstractBuild/tasks_sv_SE.properties | 6 ++++-- .../configure-common_sv_SE.properties | 7 +++++++ .../makeDisabled_sv_SE.properties | 2 ++ .../AbstractProject/sidepanel_sv_SE.properties | 5 +++-- .../UpstreamCause/description_sv_SE.properties | 4 ++++ .../UserIdCause/description_sv_SE.properties | 1 + .../config_sv_SE.properties | 5 +++++ .../hudson/model/Computer/index_sv_SE.properties | 2 +- .../model/ComputerSet/index_sv_SE.properties | 1 + .../DirectoryBrowserSupport/dir_sv_SE.properties | 1 + .../model/Fingerprint/index_sv_SE.properties | 3 +++ .../newJobDetail_sv_SE.properties | 2 +- .../model/Job/buildTimeTrend_sv_SE.properties | 1 + .../hudson/model/Job/configure_sv_SE.properties | 4 +++- .../hudson/model/Job/index_sv_SE.properties | 4 ++++ .../MyViewsProperty/config_sv_SE.properties | 4 ++-- .../config_sv_SE.properties | 1 + .../index_sv_SE.properties | 5 +++++ .../Run/KeepLogBuildBadge/badge_sv_SE.properties | 3 +++ .../hudson/model/Run/configure_sv_SE.properties | 2 ++ .../hudson/model/Run/console_sv_SE.properties | 1 + .../config_sv_SE.properties | 5 +++++ .../CoreUpdateMonitor/message_sv_SE.properties | 4 ++++ .../RestartJenkinsJob/row_sv_SE.properties | 3 +++ .../model/UpdateCenter/body_sv_SE.properties | 2 ++ .../hudson/model/User/index_sv_SE.properties | 2 +- .../View/AsynchPeople/index_sv_SE.properties | 1 + .../hudson/model/View/builds_sv_SE.properties | 2 +- .../hudson/model/View/noJob_sv_SE.properties | 4 ++++ .../hudson/model/View/sidepanel_sv_SE.properties | 8 ++++---- .../config_sv_SE.properties | 3 +++ .../message_sv_SE.properties | 4 ++++ .../EmptyChangeLogSet/digest_sv_SE.properties | 3 +++ .../scm/SCM/project-changes_sv_SE.properties | 1 + .../search/Search/search-failed_sv_SE.properties | 4 ++++ .../UserSearchProperty/config_sv_SE.properties | 4 ++++ .../loginLink_sv_SE.properties | 3 +++ .../LegacySecurityRealm/config_sv_SE.properties | 3 +++ .../SecurityRealm/loginLink_sv_SE.properties | 2 +- .../DumbSlave/newInstanceDetail_sv_SE.properties | 3 +++ .../SlaveComputer/sidepanel2_sv_SE.properties | 1 + .../FingerprintAction/index_sv_SE.properties | 9 +++++++++ .../tasks/LogRotator/config_sv_SE.properties | 16 ++++++++-------- .../junit/CaseResult/index_sv_SE.properties | 6 ++++-- .../tasks/junit/CaseResult/list_sv_SE.properties | 6 ++++++ .../tasks/junit/History/index_sv_SE.properties | 4 ++++ .../MetaTabulatedResult/body_sv_SE.properties | 11 +++++++++++ .../MetaTabulatedResult/list_sv_SE.properties | 8 ++++++++ .../test/TestObject/sidepanel_sv_SE.properties | 5 +++++ .../tasks/test/TestResult/index_sv_SE.properties | 3 +++ .../floatingBox_sv_SE.properties | 5 +++-- .../tools/JDKInstaller/config_sv_SE.properties | 1 + .../ToolInstallation/config_sv_SE.properties | 4 ++++ .../ToolInstallation/global_sv_SE.properties | 2 +- .../config_sv_SE.properties | 2 +- .../BuildAction/index_sv_SE.properties | 5 +++++ .../SCMTrigger/SCMAction/index_sv_SE.properties | 1 + .../triggers/SCMTrigger/config_sv_SE.properties | 3 +++ .../TimerTrigger/config_sv_SE.properties | 3 +++ .../BuildButtonColumn/column_sv_SE.properties | 2 ++ .../DefaultViewsTabBar/viewTabs_sv_SE.properties | 2 +- .../columnHeader_sv_SE.properties | 2 +- .../LastDurationColumn/column_sv_SE.properties | 3 +++ .../columnHeader_sv_SE.properties | 2 +- .../LastFailureColumn/column_sv_SE.properties | 1 - .../columnHeader_sv_SE.properties | 2 +- .../LastSuccessColumn/column_sv_SE.properties | 2 +- .../StatusColumn/columnHeader_sv_SE.properties | 2 +- .../WeatherColumn/columnHeader_sv_SE.properties | 2 +- .../widgets/HistoryWidget/entry_sv_SE.properties | 2 +- .../widgets/HistoryWidget/index_sv_SE.properties | 6 +++--- .../message_sv_SE.properties | 5 +++++ .../management/PluginsLink/info_sv_SE.properties | 3 +++ .../MasterComputer/configure_sv_SE.properties | 2 +- .../jenkins/model/Jenkins/_cli_sv_SE.properties | 5 +++++ .../model/Jenkins/downgrade_sv_SE.properties | 2 +- .../Jenkins/fingerprintCheck_sv_SE.properties | 6 +++--- .../model/Jenkins/manage_sv_SE.properties | 6 ++++++ .../Jenkins/projectRelationship_sv_SE.properties | 2 +- .../model/Jenkins/systemInfo_sv_SE.properties | 3 +++ .../resources/lib/form/apply_sv_SE.properties | 3 +++ .../breadcrumb-config-outline_sv_SE.properties | 3 +++ .../resources/lib/form/textarea_sv_SE.properties | 4 ++++ .../lib/hudson/artifactList_sv_SE.properties | 3 +++ .../lib/hudson/buildCaption_sv_SE.properties | 1 - .../lib/hudson/buildListTable_sv_SE.properties | 5 +++-- .../lib/hudson/buildProgressBar_sv_SE.properties | 2 +- .../lib/hudson/executors_sv_SE.properties | 9 ++++----- ...-blockWhenDownstreamBuilding_sv_SE.properties | 3 +++ ...ig-blockWhenUpstreamBuilding_sv_SE.properties | 3 +++ .../config-buildWrappers_sv_SE.properties | 3 +++ .../project/config-builders_sv_SE.properties | 4 ++++ .../config-concurrentBuild_sv_SE.properties | 3 +++ .../config-customWorkspace_sv_SE.properties | 3 ++- .../project/config-disableBuild_sv_SE.properties | 2 +- .../project/config-retryCount_sv_SE.properties | 4 ++++ .../hudson/project/config-scm_sv_SE.properties | 3 +++ ...nfig-upstream-pseudo-trigger_sv_SE.properties | 5 +++++ .../lib/hudson/project/matrix_sv_SE.properties | 4 ++++ .../project/upstream-downstream_sv_SE.properties | 2 +- .../resources/lib/hudson/queue_sv_SE.properties | 8 ++++++-- .../lib/hudson/scriptConsole_sv_SE.properties | 2 ++ .../lib/hudson/test-result_sv_SE.properties | 1 + .../lib/layout/breadcrumbBar_sv_SE.properties | 4 ++++ .../resources/lib/layout/layout_sv_SE.properties | 4 ++-- .../layout/progressiveRendering_sv_SE.properties | 3 +++ .../main/resources/lib/test/bar_sv_SE.properties | 1 + 118 files changed, 345 insertions(+), 72 deletions(-) create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/index_sv_SE.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_sv_SE.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_sv_SE.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/index_sv_SE.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UpstreamCause/description_sv_SE.properties create mode 100644 core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_sv_SE.properties create mode 100644 core/src/main/resources/hudson/model/Fingerprint/index_sv_SE.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_sv_SE.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sv_SE.properties create mode 100644 core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sv_SE.properties create mode 100644 core/src/main/resources/hudson/model/StringParameterDefinition/config_sv_SE.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sv_SE.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sv_SE.properties create mode 100644 core/src/main/resources/hudson/model/View/noJob_sv_SE.properties create mode 100644 core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_sv_SE.properties create mode 100644 core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_sv_SE.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sv_SE.properties create mode 100644 core/src/main/resources/hudson/search/Search/search-failed_sv_SE.properties create mode 100644 core/src/main/resources/hudson/search/UserSearchProperty/config_sv_SE.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sv_SE.properties create mode 100644 core/src/main/resources/hudson/security/LegacySecurityRealm/config_sv_SE.properties create mode 100644 core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_sv_SE.properties create mode 100644 core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_sv_SE.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/CaseResult/list_sv_SE.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/History/index_sv_SE.properties create mode 100644 core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_sv_SE.properties create mode 100644 core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/list_sv_SE.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_sv_SE.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResult/index_sv_SE.properties create mode 100644 core/src/main/resources/hudson/tools/ToolInstallation/config_sv_SE.properties create mode 100644 core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_sv_SE.properties create mode 100644 core/src/main/resources/hudson/triggers/SCMTrigger/config_sv_SE.properties create mode 100644 core/src/main/resources/hudson/triggers/TimerTrigger/config_sv_SE.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/column_sv_SE.properties create mode 100644 core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_sv_SE.properties create mode 100644 core/src/main/resources/jenkins/management/PluginsLink/info_sv_SE.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/_cli_sv_SE.properties create mode 100644 core/src/main/resources/lib/form/apply_sv_SE.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_sv_SE.properties create mode 100644 core/src/main/resources/lib/form/textarea_sv_SE.properties create mode 100644 core/src/main/resources/lib/hudson/artifactList_sv_SE.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_sv_SE.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_sv_SE.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-buildWrappers_sv_SE.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-builders_sv_SE.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-concurrentBuild_sv_SE.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-retryCount_sv_SE.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-scm_sv_SE.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_sv_SE.properties create mode 100644 core/src/main/resources/lib/hudson/project/matrix_sv_SE.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_sv_SE.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_sv_SE.properties diff --git a/core/src/main/resources/hudson/PluginManager/advanced_sv_SE.properties b/core/src/main/resources/hudson/PluginManager/advanced_sv_SE.properties index d07169c071..6df64acad5 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_sv_SE.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_sv_SE.properties @@ -22,13 +22,13 @@ Check\ now=Kontrollera nu File=Fil -HTTP\ Proxy\ Configuration=HTTP proxy konfiguration +HTTP\ Proxy\ Configuration=HTTP-proxykonfiguration Password=L\u00F6senord Port=Port Server=Server Submit=Skicka URL=URL -Update\ Site=Updatera sajt +Update\ Site=Updateringssajt Upload=Ladda upp Upload\ Plugin=Ladda upp insticksmodul User\ name=Anv\u00E4ndarnamn diff --git a/core/src/main/resources/hudson/PluginManager/installed_sv_SE.properties b/core/src/main/resources/hudson/PluginManager/installed_sv_SE.properties index 1cca70cbaf..45194bfc29 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_sv_SE.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_sv_SE.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=\u00C4ndringar tr\u00E4der i kraft n\u00E4r du startar om Jenkins -Enabled=Aktiverade +Enabled=Aktiverad Name=Namn Previously\ installed\ version=Tidigare installerad version Restart\ Once\ No\ Jobs\ Are\ Running=Starta om n\u00E4r inga jobb k\u00F6rs Uncheck\ to\ disable\ the\ plugin=Kryssa ur f\u00F6r att inaktivera pluginen Version=Version -downgradeTo=Nergradera till {0} +downgradeTo=Nedgradera till {0} diff --git a/core/src/main/resources/hudson/PluginManager/table_sv_SE.properties b/core/src/main/resources/hudson/PluginManager/table_sv_SE.properties index 7496944b3b..34fef1b6b0 100644 --- a/core/src/main/resources/hudson/PluginManager/table_sv_SE.properties +++ b/core/src/main/resources/hudson/PluginManager/table_sv_SE.properties @@ -22,9 +22,13 @@ Check\ to\ install\ the\ plugin=Markera f\u00F6r att installera insticksmodul Click\ this\ heading\ to\ sort\ by\ category=Klicka p\u00E5 denna rubrik f\u00F6r att sortera efter kategori +Download\ now\ and\ install\ after\ restart=Ladda ner nu och installera efter omstart. Inactive=Inaktiva Install=Installera +Install\ without\ restart=Installera utan omstart Installed=Installerade Name=Namn No\ updates=Det finns inga uppdateringar Version=Version +compatWarning=Varning: Den nya versionen \u00E4r inte kompatibel med den installerade versionen. Jobb som anv\u00E4nder denna insticksmodulen kan kr\u00E4va omkonfigurering. +coreWarning=Varning: Denna plugin \u00E4r byggd f\u00F6r Jenkins {0} eller nyare. Det \u00E4r inte s\u00E4kert att den fungerar i er installation. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sv_SE.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sv_SE.properties index 8c44d66f1c..db064fc355 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sv_SE.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sv_SE.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Dismiss=Avf\u00E4rda -More\ Info=Mer Info -blurb=Det verkar som att dina reverse proxy inst\u00E4llningar \u00E4r trasiga. +More\ Info=Mer Information +blurb=Du har troligen en felaktigt uppsatt bakl\u00E4ngesproxy. diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_sv_SE.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_sv_SE.properties new file mode 100644 index 0000000000..29d65e3dc0 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_sv_SE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Name=Namn diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_sv_SE.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_sv_SE.properties index 26975ea029..dd3059216c 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_sv_SE.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_sv_SE.properties @@ -21,4 +21,5 @@ # THE SOFTWARE. Back\ to\ Dashboard=Tillbaka till instrumentpanel +Log\ Levels=Loggningsniv\u00E5er Manage\ Jenkins=Hantera Jenkins diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_sv_SE.properties b/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_sv_SE.properties new file mode 100644 index 0000000000..4ad86bb7c0 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_sv_SE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Not\ configured=Ej konfigurerad diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_sv_SE.properties b/core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_sv_SE.properties new file mode 100644 index 0000000000..a1494c0e2c --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/configure-entries_sv_SE.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Advanced\ Project\ Options=Avancerade projektinst\u00E4llningar +Directory=Katalog +Display\ Name=Visningsnamn diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_sv_SE.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_sv_SE.properties new file mode 100644 index 0000000000..95a1459625 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_sv_SE.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Disable\ Project=Deaktivera projekt +Project=Projekt diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_sv_SE.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_sv_SE.properties index 9f4a75f812..8b7c71e0d4 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_sv_SE.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_sv_SE.properties @@ -21,8 +21,15 @@ # THE SOFTWARE. Build=Bygge +Build\ Artifacts=Byggartefakter Build\ number=Byggnummer -Took=Tog +Changes\ in\ dependency=F\u00F6r\u00E4ndringar i beroende +Downstream\ Builds=Byggen nedstr\u00F6ms +Not\ yet\ determined=\u00C4nnu inte best\u00E4mt +Took=Togg +Upstream\ Builds=Byggen uppstr\u00F6ms +beingExecuted=Bygge exekveras f\u00F6r {0} +detail=detalj log=logg none=inga on=p\u00E5 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sv_SE.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sv_SE.properties index 0b7a3e1bab..e7d79fe198 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sv_SE.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sv_SE.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Next\ Build=N\u00E4sta bygge -Previous\ Build=F\u00F6rg\u00E5ende bygge +Previous\ Build=F\u00F6reg\u00E5ende bygge diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_sv_SE.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sv_SE.properties index d75b3385cd..adb0224fe4 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_sv_SE.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sv_SE.properties @@ -20,9 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=Tillbaka till Projektet +Back\ to\ Project=Tillbaka till projektet Changes=F\u00F6r\u00E4ndringar Console\ Output=Konsollutskrift +View\ Build\ Information=Se information om bygge View\ as\ plain\ text=Visa som oformaterad text -Edit\ Build\ Information=\u00C4ndra bygginformation +Edit\ Build\ Information=Redigera Status=Status +raw=oformaterad diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_sv_SE.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_sv_SE.properties index 07f26fda87..f9efdc2530 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/configure-common_sv_SE.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_sv_SE.properties @@ -20,4 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Advanced\ Project\ Options=Avancerade Projektinst\u00E4llningar +Advanced\ Project\ Options\ configure-common=Avancerade projektval +Display\ Name=Visningsnamn +JDK\ to\ be\ used\ for\ this\ project=JDK att anv\u00E4nda f\u00F6r detta projekt +Label\ Expression=Etikett +Restrict\ where\ this\ project\ can\ be\ run=Begr\u00E4nsa var detta projekt kan k\u00F6ras default.value=(Standard) +title.concurrentbuilds=K\u00F6r samtidiga byggen om n\u00F6dv\u00E4ndigt diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_sv_SE.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_sv_SE.properties index fa24e25c2e..069a7dbd2f 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_sv_SE.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_sv_SE.properties @@ -21,3 +21,5 @@ # THE SOFTWARE. Disable\ Project=Inaktivera Projekt +Enable=Aktivera +This\ project\ is\ currently\ disabled=Detta projekt \u00E4r f\u00F6r n\u00E4rvarande inaktiverat diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sv_SE.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sv_SE.properties index aaca423d78..5088b3cfde 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sv_SE.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sv_SE.properties @@ -20,12 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Tillbaka till instrumentpanelen -Build\ scheduled=Jobb schemalagt +Back\ to\ Dashboard=Tillbaka till \u00D6versikten +Build\ scheduled=Jobbet schemalagt Changes=F\u00f6r\u00e4ndringar Configure=Konfigurera Status=Status Wipe\ Out\ Workspace=Ta bort arbetsyta Workspace=Arbetsyta delete=Ta bort {0} +delete.confirm=\u00C4r du s\u00E4ker p\u00E5 att du vill ta bort {0} \u2018{1}\u2019? wipe.out.confirm=\u00c4r du s\u00e4ker p\u00e5 att du vill rensa arbetsytan? diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_sv_SE.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_sv_SE.properties new file mode 100644 index 0000000000..546f4647a6 --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_sv_SE.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +caused_by=ursprungligen p\u00E5 grund av: +started_by_project=Startad av projekt uppstr\u00F6ms {0} byggnummer {1} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sv_SE.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sv_SE.properties index e6bfd93ed3..7abc3722f2 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sv_SE.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +started_by_anonymous=Startad av en anonym anv\u00E4ndare started_by_user=Startad av anv\u00e4ndare {1} diff --git a/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_sv_SE.properties b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_sv_SE.properties new file mode 100644 index 0000000000..c5824653e6 --- /dev/null +++ b/core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_sv_SE.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Choices=Val +Description=Beskrivning +Name=Namn diff --git a/core/src/main/resources/hudson/model/Computer/index_sv_SE.properties b/core/src/main/resources/hudson/model/Computer/index_sv_SE.properties index 9ebd7efa25..829118db6f 100644 --- a/core/src/main/resources/hudson/model/Computer/index_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Computer/index_sv_SE.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Labels:=Etiketter: +Labels:=Etiketter None=Inga submit.not.temporarilyOffline=Markera noden som tillf\u00E4lligt ifr\u00E5nkopplad submit.temporarilyOffline=Noden \u00E4r online igen diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_sv_SE.properties b/core/src/main/resources/hudson/model/ComputerSet/index_sv_SE.properties index c9abee1246..e0641cab23 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_sv_SE.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_sv_SE.properties @@ -21,5 +21,6 @@ # THE SOFTWARE. Configure=Konfigurera +Data\ obtained=Data mottagen Name=Namn Refresh\ status=Uppdatera status diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sv_SE.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sv_SE.properties index c8630fe334..e452423099 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sv_SE.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_sv_SE.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +No\ files\ in\ directory=Inga filer i denna katalog all\ files\ in\ zip=alla filer i en zip fil view=\u00F6ppna diff --git a/core/src/main/resources/hudson/model/Fingerprint/index_sv_SE.properties b/core/src/main/resources/hudson/model/Fingerprint/index_sv_SE.properties new file mode 100644 index 0000000000..41decd556e --- /dev/null +++ b/core/src/main/resources/hudson/model/Fingerprint/index_sv_SE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Usage=Anv\u00E4ndning diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_sv_SE.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_sv_SE.properties index a31f36d4a9..a1827f1712 100644 --- a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_sv_SE.properties +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_sv_SE.properties @@ -20,4 +20,4 @@ # 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 med vilket byggsystem som helst, och detta kan \u00E4ven anv\u00E4ndas f\u00F6r n\u00E5got annat \u00E4n mjukvarubyggen. +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. diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_sv_SE.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_sv_SE.properties index bd1999adeb..6eeafd4ac6 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_sv_SE.properties @@ -21,5 +21,6 @@ # THE SOFTWARE. Build=Bygge +Build\ Time\ Trend=Byggtidstrend Duration=Tid Slave=Nod diff --git a/core/src/main/resources/hudson/model/Job/configure_sv_SE.properties b/core/src/main/resources/hudson/model/Job/configure_sv_SE.properties index c4d288c367..5c846031ad 100644 --- a/core/src/main/resources/hudson/model/Job/configure_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Job/configure_sv_SE.properties @@ -21,6 +21,8 @@ # THE SOFTWARE. Description=Beskrivning -Discard\ Old\ Builds=Kasta gamla byggen +Discard\ Old\ Builds=Kasta bort gamla byggen LOADING=LADDAR +Save=Spara +Strategy=Strategi name={0} namn diff --git a/core/src/main/resources/hudson/model/Job/index_sv_SE.properties b/core/src/main/resources/hudson/model/Job/index_sv_SE.properties new file mode 100644 index 0000000000..ae3ec687f4 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_sv_SE.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Disable\ Project=Inaktivera jobb +Project\ name=Projekt namn diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_sv_SE.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_sv_SE.properties index b799fe8454..da41933e98 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/config_sv_SE.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_sv_SE.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Default\ View=Standardvy -description=Denna vy v\u00E4ljs som standard n\u00E4r du navigerar till anv\u00E4ndarens privata vyer +Default\ View=Standard Vy +description=Vyn vald som standard vid navigering till anv\u00E4ndarens privata vyer diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_sv_SE.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_sv_SE.properties index 9c8d2bc116..d2cac0e4bb 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_sv_SE.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_sv_SE.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Add\ Parameter=L\u00E4gg till parameter +This\ build\ is\ parameterized=Detta bygge \u00E4r parametriserat diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sv_SE.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sv_SE.properties new file mode 100644 index 0000000000..948d1f5fd4 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sv_SE.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Build=Bygg +LOADING=LADDAR +description=Det h\u00E4r bygget kr\u00E4ver parametrar: diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sv_SE.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sv_SE.properties new file mode 100644 index 0000000000..e1a36c5e55 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_sv_SE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Keep\ this\ build\ forever=Spara detta bygge f\u00F6r evigt diff --git a/core/src/main/resources/hudson/model/Run/configure_sv_SE.properties b/core/src/main/resources/hudson/model/Run/configure_sv_SE.properties index 0bbf80aa1b..8fe070c45e 100644 --- a/core/src/main/resources/hudson/model/Run/configure_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Run/configure_sv_SE.properties @@ -21,4 +21,6 @@ # THE SOFTWARE. Description=Beskrivning +DisplayName=Synligt namn +LOADING=LADDAR Save=Spara diff --git a/core/src/main/resources/hudson/model/Run/console_sv_SE.properties b/core/src/main/resources/hudson/model/Run/console_sv_SE.properties index e631fbf761..80cc3678a5 100644 --- a/core/src/main/resources/hudson/model/Run/console_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Run/console_sv_SE.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Console\ Output=Konsollutskrift +skipSome=Hoppar \u00F6ver {0,number,integer} KB.. Visa Logg diff --git a/core/src/main/resources/hudson/model/StringParameterDefinition/config_sv_SE.properties b/core/src/main/resources/hudson/model/StringParameterDefinition/config_sv_SE.properties new file mode 100644 index 0000000000..68f7d6cffb --- /dev/null +++ b/core/src/main/resources/hudson/model/StringParameterDefinition/config_sv_SE.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Default\ Value=F\u00F6rvalt v\u00E4rde +Description=Beskrivning +Name=Namn diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sv_SE.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sv_SE.properties new file mode 100644 index 0000000000..69f14d88a5 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sv_SE.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +NewVersionAvailable=En ny version av Jenkins finns tillg\u00E4nglig f\u00F6r nedladdning +Or\ Upgrade\ Automatically=Eller uppgradera automatiskt diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sv_SE.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sv_SE.properties new file mode 100644 index 0000000000..a45974da07 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_sv_SE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Restarting\ Jenkins=Startar om Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_sv_SE.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_sv_SE.properties index d78e5339da..588d6b3935 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_sv_SE.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_sv_SE.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Go\ back\ to\ the\ top\ page=G\u00E5 tillbaka till hemsidan warning=Starta om Jenkins n\u00E4r installationen \u00E4r klar och inga jobb k\u00F6r +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=du kan b\u00F6rja anv\u00E4nda de installerade insticksmodulerna direkt diff --git a/core/src/main/resources/hudson/model/User/index_sv_SE.properties b/core/src/main/resources/hudson/model/User/index_sv_SE.properties index 4a0a7aa640..b4a0a439a8 100644 --- a/core/src/main/resources/hudson/model/User/index_sv_SE.properties +++ b/core/src/main/resources/hudson/model/User/index_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ User\ Id=Jenkins anv\u00E4ndarid +Jenkins\ User\ Id=Jenkins Anv\u00E4ndare Id diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_sv_SE.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_sv_SE.properties index 862103fddb..6d299d1677 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_sv_SE.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_sv_SE.properties @@ -26,3 +26,4 @@ Name=Namn On=P\u00E5 People=Personer User\ Id=Anv\u00E4ndar-ID +blurb=Alla k\u00E4nda "anv\u00E4ndare", inklusive identiteter som det aktuella s\u00E4kerhetsomr\u00E5det kan numrera samt personer n\u00E4mnda i kommit-meddelanden i sparade f\u00F6r\u00E4ndringsloggar. diff --git a/core/src/main/resources/hudson/model/View/builds_sv_SE.properties b/core/src/main/resources/hudson/model/View/builds_sv_SE.properties index 7913771d70..2d3174d6c3 100644 --- a/core/src/main/resources/hudson/model/View/builds_sv_SE.properties +++ b/core/src/main/resources/hudson/model/View/builds_sv_SE.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Export\ as\ plain\ XML=Exportera som XML +Export\ as\ plain\ XML=Exportera till XML buildHistory=Bygghistorik f\u00F6r {0} diff --git a/core/src/main/resources/hudson/model/View/noJob_sv_SE.properties b/core/src/main/resources/hudson/model/View/noJob_sv_SE.properties new file mode 100644 index 0000000000..ebbd5eb704 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/noJob_sv_SE.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +description_1=Denna vy har inga jobb kopplade till sig. +description_2=Du kan antingen l\u00E4gga till existerande jobb till denna vy, eller skapa ett nytt jobb in denna vy. diff --git a/core/src/main/resources/hudson/model/View/sidepanel_sv_SE.properties b/core/src/main/resources/hudson/model/View/sidepanel_sv_SE.properties index da2b68c986..aeb9d4a531 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_sv_SE.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_sv_SE.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. Build\ History=Bygghistorik -Check\ File\ Fingerprint=Kontrollera fil-fingeravtryck +Check\ File\ Fingerprint=Kontrollera filkontrollsumma Delete\ View=Ta bort vy Edit\ View=Redigera vy -NewJob=Skapa nytt {0} -People=Personer -Project\ Relationship=Relaterade projekt +NewJob=Skapa nytt {0}b +People=Anv\u00E4ndare +Project\ Relationship=Jobbberoenden diff --git a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_sv_SE.properties b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_sv_SE.properties new file mode 100644 index 0000000000..8219c2a3cb --- /dev/null +++ b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_sv_SE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Free\ Space\ Threshold=Tr\u00F6skel f\u00F6r ledigt utrymme diff --git a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_sv_SE.properties b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_sv_SE.properties new file mode 100644 index 0000000000..f493a75eb9 --- /dev/null +++ b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_sv_SE.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Dismiss=Avvisa +blurb=Jenkins st\u00E4ngde ned slavprocesser vars nyckelv\u00E4rde f\u00F6r systemh\u00E4lsa g\u00E5tt under deras gr\u00E4nsv\u00E4rde. Om du inte vill att Jenkins ska g\u00F6ra det i forts\u00E4ttningen, \u00E4ndra i inst\u00E4llningarna. diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sv_SE.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sv_SE.properties new file mode 100644 index 0000000000..e603960902 --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_sv_SE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ changes.=Inga \u00E4ndringar. diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_sv_SE.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_sv_SE.properties index 5317a436a4..6239be5594 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_sv_SE.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_sv_SE.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +No\ builds.=Inga byggen. No\ changes\ in\ any\ of\ the\ builds.=Inga f\u00F6r\u00E4ndringar i n\u00E5got bygge. detail=detalj diff --git a/core/src/main/resources/hudson/search/Search/search-failed_sv_SE.properties b/core/src/main/resources/hudson/search/Search/search-failed_sv_SE.properties new file mode 100644 index 0000000000..8c19b3ecc1 --- /dev/null +++ b/core/src/main/resources/hudson/search/Search/search-failed_sv_SE.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Nothing\ seems\ to\ match.=Inga tr\u00E4ffar +Search\ for=S\u00F6kte efter diff --git a/core/src/main/resources/hudson/search/UserSearchProperty/config_sv_SE.properties b/core/src/main/resources/hudson/search/UserSearchProperty/config_sv_SE.properties new file mode 100644 index 0000000000..9b55dc588a --- /dev/null +++ b/core/src/main/resources/hudson/search/UserSearchProperty/config_sv_SE.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Case-sensitivity=Skiftl\u00E4gesk\u00E4nslighet +Insensitive\ search\ tool=Skiftl\u00E4gesok\u00E4nsligt s\u00F6kverktyg diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sv_SE.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sv_SE.properties new file mode 100644 index 0000000000..e2493d858a --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sv_SE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +sign\ up=Registrera diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_sv_SE.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_sv_SE.properties new file mode 100644 index 0000000000..c538055e77 --- /dev/null +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_sv_SE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Unprotected\ URLs=Oskyddade URLer diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sv_SE.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sv_SE.properties index 3cdd607d9f..94ce04c5e9 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sv_SE.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=logga in +login=Logga in 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 new file mode 100644 index 0000000000..0887037441 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_sv_SE.properties @@ -0,0 +1,3 @@ +# 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/SlaveComputer/sidepanel2_sv_SE.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_sv_SE.properties index 2caf110e87..1e272d198c 100644 --- a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_sv_SE.properties +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_sv_SE.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Disconnect=Koppla bort Log=Logg System\ Information=Systeminformation diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_sv_SE.properties b/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_sv_SE.properties new file mode 100644 index 0000000000..1004e32706 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_sv_SE.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Age=\u00C5lder +File=Fil +Original\ owner=Ursprunglig \u00E4gare +Recorded\ Fingerprints=Sparade fingeravtryck +more\ details=mer detaljer +outside\ Jenkins=utanf\u00F6r Jenkins +this\ build=detta bygge diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_sv_SE.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_sv_SE.properties index cccae0ab35..0a3a7eb6b5 100644 --- a/core/src/main/resources/hudson/tasks/LogRotator/config_sv_SE.properties +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_sv_SE.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Days\ to\ keep\ artifacts=Dagar att spara artifacts -Days\ to\ keep\ builds=Dagar att spara byggen -Max\ #\ of\ builds\ to\ keep=Max # av byggen att spara -Max\ #\ of\ builds\ to\ keep\ with\ artifacts=Max # av byggen att spara med artifacts -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=om inte tomt, kommer artifakter som \u00E4r \u00E4ldre \u00E4n antal dagar som anges att raderas, men loggar, historik, rapporter, etc f\u00F6r bygget beh\u00E5lls -if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=om inte tom, s\u00E5 sparas bygghistoriken bara i s\u00E5 h\u00E4r m\u00E5nga dagar -if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=om inte tom, s\u00E5 sparas bara s\u00E5 h\u00E4r m\u00E5nga byggen i bygghistoriken -if\ not\ empty,\ only\ up\ to\ this\ number\ of\ builds\ have\ their\ artifacts\ retained=om inte tomt, kommer endast upp till angivet antal byggens artifakter beh\u00E5llas +Days\ to\ keep\ artifacts=Dagar att spara artifakter +Days\ to\ keep\ builds=Antal dagar att spara byggen +Max\ #\ of\ builds\ to\ keep=Max antal sparade byggen +Max\ #\ of\ builds\ to\ keep\ with\ artifacts=Max # av byggen att spara med artifakter +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=om ej tom raderas artefakter fr\u00E5n byggen \u00E4ldre \u00E4n detta antal dagar, men loggar, historik, rapporter etc sparas +if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=om ej tom sparas bygginformation upp till detta antal dagar +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=om ej tom sparas information f\u00F6r max s\u00E5 h\u00E4r m\u00E5nga byggen +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ builds\ have\ their\ artifacts\ retained=om ej tom, sparas artefakter f\u00F6r upp till detta antal byggen diff --git a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_sv_SE.properties b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_sv_SE.properties index ac89a2ce8e..745c0f43f2 100644 --- a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_sv_SE.properties +++ b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_sv_SE.properties @@ -22,6 +22,8 @@ Error\ Message=Felmeddelande Stacktrace=Stacktrace -failingFor=Har fallerat i {0,choice,0#de|1# |1Wikin 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/downgrade_sv_SE.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_sv_SE.properties index 5f27e8b93a..dbecdc3dba 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/downgrade_sv_SE.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_sv_SE.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restore\ the\ previous\ version\ of\ Jenkins=\u00C5terst\u00E4ll den tidigare versionen av Jenkins +Restore\ the\ previous\ version\ of\ Jenkins=\u00C5terst\u00E4ll senaste Jenkinsversion buttonText=Nedgradera till {0} 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 2e5cdadd73..4a8deba12d 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 @@ -21,8 +21,8 @@ # THE SOFTWARE. Check=Kontrollera -Check\ File\ Fingerprint=Kontrollera fil-fingeravtryck -File\ to\ check=Fil som ska kontrolleras -description=Har du en JAR-fil men vet inte vilken version den har?
Ta reda p\u00E5 det genom att kontrollera dess fingeravtryck i Jenkins databas. +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 more\ details=mer detaljer diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_sv_SE.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_sv_SE.properties index 301ff21a45..0c61a995ef 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_sv_SE.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_sv_SE.properties @@ -20,4 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Installera, ta bort, aktivera eller avaktivera insticksmoduler f\u00F6r ut\u00F6kad funktionalitet. +Cancel\ Shutdown=Stoppa Nedst\u00E4ngning +Configure\ System=Konfigurera Systemet +Jenkins\ CLI=Jenkins Kommandsradstolk Manage\ Jenkins=Hantera Jenkins +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Sluta starta nya byggen, s\u00E5 att systemet sedan kan st\u00E4ngas s\u00E4kert. +are.you.sure={0}: \u00E4r du s\u00E4ker? diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_sv_SE.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_sv_SE.properties index e5ca0b8dde..ad87c03f9e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_sv_SE.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_sv_SE.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Compare=J\u00E4mf\u00F6r -Project\ Relationship=Jobbsamband +Project\ Relationship=Jobbrelation downstream\ project=\u00F6verordnat jobb upstream\ project=underordnat jobb diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_sv_SE.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_sv_SE.properties index 8382b556c7..a710373a08 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_sv_SE.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_sv_SE.properties @@ -20,5 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Enabled=Aktiverad Environment\ Variables=Milj\u00F6variabler +Name=Namn +Pinned=Pinnad System\ Properties=Systemegenskaper diff --git a/core/src/main/resources/lib/form/apply_sv_SE.properties b/core/src/main/resources/lib/form/apply_sv_SE.properties new file mode 100644 index 0000000000..ffa3c39f8d --- /dev/null +++ b/core/src/main/resources/lib/form/apply_sv_SE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Apply=V\u00E4rkst\u00E4ll diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_sv_SE.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_sv_SE.properties new file mode 100644 index 0000000000..906d14b10d --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_sv_SE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=konfiguration diff --git a/core/src/main/resources/lib/form/textarea_sv_SE.properties b/core/src/main/resources/lib/form/textarea_sv_SE.properties new file mode 100644 index 0000000000..a72311713d --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_sv_SE.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=D\u00F6lj f\u00F6rhandsgransning +Preview=F\u00F6rhandsgranska diff --git a/core/src/main/resources/lib/hudson/artifactList_sv_SE.properties b/core/src/main/resources/lib/hudson/artifactList_sv_SE.properties new file mode 100644 index 0000000000..d615bde5bd --- /dev/null +++ b/core/src/main/resources/lib/hudson/artifactList_sv_SE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +View=Visa diff --git a/core/src/main/resources/lib/hudson/buildCaption_sv_SE.properties b/core/src/main/resources/lib/hudson/buildCaption_sv_SE.properties index 0d7478ab3a..30d3f24a90 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_sv_SE.properties @@ -20,5 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Progress=F\u00F6rlopp cancel=Avbryt diff --git a/core/src/main/resources/lib/hudson/buildListTable_sv_SE.properties b/core/src/main/resources/lib/hudson/buildListTable_sv_SE.properties index 8c9a10e78e..2e46e9f75d 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_sv_SE.properties @@ -21,6 +21,7 @@ # THE SOFTWARE. Build=Bygge -Time\ Since=Datum -Console\ output=Konsolutskrift +Time\ Since=Tid sedan +Click\ to\ center\ timeline\ on\ event=Klicka f\u00F6r att centrera tidslinjen p\u00E5 h\u00E4ndelsen +Console\ output=Realtidslog Status=Status diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_sv_SE.properties b/core/src/main/resources/lib/hudson/buildProgressBar_sv_SE.properties index 0934e6e6d7..6b581d70b1 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Startad {0} sedan
Ber\u00E4knad \u00E5terst\u00E5ende tid: {1} +text=Startade f\u00F6r {0} sedan
Ber\u00E4knad \u00E5terst\u00E5ende tid: {1} diff --git a/core/src/main/resources/lib/hudson/executors_sv_SE.properties b/core/src/main/resources/lib/hudson/executors_sv_SE.properties index 094893a728..28c939ae10 100644 --- a/core/src/main/resources/lib/hudson/executors_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/executors_sv_SE.properties @@ -20,11 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Status f\u00F6r Byggexekverare +Build\ Executor\ Status=Status f\u00F6r Byggare Building=Bygger -Idle=Ledig -Master=Master +Idle=V\u00E4ntande Offline=Offline -Status=Status +Unknown\ Task=\u00D6kand uppgift offline=ej tillg\u00E4nglig -terminate\ this\ build=avbryt bygget +terminate\ this\ build=avbryt detta bygge diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_sv_SE.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_sv_SE.properties new file mode 100644 index 0000000000..ccfcd6a7ee --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_sv_SE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Block\ build\ when\ downstream\ project\ is\ building=Blockera bygge n\u00E4r nedstr\u00F6msprojekt bygger diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_sv_SE.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_sv_SE.properties new file mode 100644 index 0000000000..2f593f8b91 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_sv_SE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Block\ build\ when\ upstream\ project\ is\ building=Blockera bygge n\u00E4r uppstr\u00F6msprojekt bygger diff --git a/core/src/main/resources/lib/hudson/project/config-buildWrappers_sv_SE.properties b/core/src/main/resources/lib/hudson/project/config-buildWrappers_sv_SE.properties new file mode 100644 index 0000000000..f54d32b149 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-buildWrappers_sv_SE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Build\ Environment=Byggmilj\u00F6 diff --git a/core/src/main/resources/lib/hudson/project/config-builders_sv_SE.properties b/core/src/main/resources/lib/hudson/project/config-builders_sv_SE.properties new file mode 100644 index 0000000000..68596139a3 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-builders_sv_SE.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Add\ build\ step=L\u00E4gg till bygg-steg +Build=Bygge diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_sv_SE.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_sv_SE.properties new file mode 100644 index 0000000000..1c6e2044a8 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_sv_SE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title.concurrentbuilds=K\u00F6r parallella byggen om n\u00F6dv\u00E4ndigt diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_sv_SE.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_sv_SE.properties index 778ef2d23a..28cb147592 100644 --- a/core/src/main/resources/lib/hudson/project/config-customWorkspace_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_sv_SE.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Use\ custom\ workspace=Anv\u00E4nd custom arbetsyta +Directory=Katalog +Use\ custom\ workspace=Anpassa arbetsytan diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_sv_SE.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_sv_SE.properties index f64d1bb98c..9036e3e948 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_sv_SE.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Disable\ Build=Inaktivera bygge -No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Inga nya byggen kommer att k\u00F6ras innan projektet \u00E4r \u00E5teraktiverat. +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Inga nya byggen utf\u00F6rs f\u00F6rr\u00E4n projektet aktiveras igen. diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_sv_SE.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_sv_SE.properties new file mode 100644 index 0000000000..9d4683f556 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_sv_SE.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Retry\ Count=F\u00F6rs\u00F6k igen +SCM\ checkout\ retry\ count=Antal f\u00F6rs\u00F6k att h\u00E4mta koden igen diff --git a/core/src/main/resources/lib/hudson/project/config-scm_sv_SE.properties b/core/src/main/resources/lib/hudson/project/config-scm_sv_SE.properties new file mode 100644 index 0000000000..4da39bb90a --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-scm_sv_SE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Source\ Code\ Management=K\u00E4llkodshantering diff --git a/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_sv_SE.properties b/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_sv_SE.properties new file mode 100644 index 0000000000..a612c1a169 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_sv_SE.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Build\ after\ other\ projects\ are\ built=Bygg efter andra projekt har byggts +Multiple\ projects\ can\ be\ specified\ like\ ''abc,\ def''=Flera projekt kan anges som ''abc, def'' +Project\ names=Projektnamn diff --git a/core/src/main/resources/lib/hudson/project/matrix_sv_SE.properties b/core/src/main/resources/lib/hudson/project/matrix_sv_SE.properties new file mode 100644 index 0000000000..55f4c32249 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/matrix_sv_SE.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Configuration\ Matrix=Konfigurationsmatris +Configurations=Inst\u00E4llningar diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_sv_SE.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_sv_SE.properties index 8ac8f43bd5..4bf9f92439 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_sv_SE.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Downstream\ Projects=Underordnade jobb -Upstream\ Projects=\u00D6verordnande jobb +Upstream\ Projects=\u00D6verordnade jobb diff --git a/core/src/main/resources/lib/hudson/queue_sv_SE.properties b/core/src/main/resources/lib/hudson/queue_sv_SE.properties index 2138867477..f82c3f2738 100644 --- a/core/src/main/resources/lib/hudson/queue_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/queue_sv_SE.properties @@ -20,6 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Byggk\u00F6 -No\ builds\ in\ the\ queue.=Inga byggen \u00E4r k\u00F6ade. +Build\ Queue=Jobbk\u00F6 +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins h\u00E5ller p\u00E5 att avslutas. Inga nya byggen kommer att utf\u00F6ras. +No\ builds\ in\ the\ queue.=Inga k\u00F6ade byggen. +Unknown\ Task=\u00D6kand uppgift +WaitingFor=V\u00E4ntar p\u00E5 {0} +WaitingSince=V\u00E4ntar {0} cancel=avbryt diff --git a/core/src/main/resources/lib/hudson/scriptConsole_sv_SE.properties b/core/src/main/resources/lib/hudson/scriptConsole_sv_SE.properties index d3afc28963..1710048f28 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_sv_SE.properties @@ -20,6 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Result=Resultat Run=K\u00F6r Script\ Console=Skriptkonsoll description=Skriv in ett godtyckligt Groovy skript och k\u00F6r den p\u00E5 noden. Detta \u00E4r anv\u00E4ndbart vid fels\u00F6kning och diagnostik. Anv\u00E4nd''''println''''kommandot f\u00F6r att se resultatet (om du anv\u00E4nder System.out kommer det att g\u00E5 till serverns standard ut, som \u00E4r sv\u00E5rare att se.) Exempel: +description2=Alla klasser fr\u00E5n pluginet \u00E4r synliga. jenkins.*, jenkins.model.*, hudson.*, and hudson.model.* are pre-imported. diff --git a/core/src/main/resources/lib/hudson/test-result_sv_SE.properties b/core/src/main/resources/lib/hudson/test-result_sv_SE.properties index 873bf6dd3e..8a6a79f2d7 100644 --- a/core/src/main/resources/lib/hudson/test-result_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/test-result_sv_SE.properties @@ -23,3 +23,4 @@ 1failure=1 fel {0} multifailures="{0} fel {1}" no\ failures=inga fallerande tester +no\ tests=inga tester diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_sv_SE.properties b/core/src/main/resources/lib/layout/breadcrumbBar_sv_SE.properties new file mode 100644 index 0000000000..51df0def9e --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_sv_SE.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=Autouppdatera ej sidan +ENABLE\ AUTO\ REFRESH=AKTIVERA AUTOUPPDATERING diff --git a/core/src/main/resources/lib/layout/layout_sv_SE.properties b/core/src/main/resources/lib/layout/layout_sv_SE.properties index d02e1096c3..5d0a187362 100644 --- a/core/src/main/resources/lib/layout/layout_sv_SE.properties +++ b/core/src/main/resources/lib/layout/layout_sv_SE.properties @@ -23,7 +23,7 @@ DISABLE\ AUTO\ REFRESH=Avaktivera automatisk upppdatering ENABLE\ AUTO\ REFRESH=AKTIVERA AUTOMATISK SIDUPPDATERING Page\ generated=Sidan skapades -logout=Logga ut -search=s\u00F6k +logout=logga ut +search=S\u00F6k searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/core/src/main/resources/lib/layout/progressiveRendering_sv_SE.properties b/core/src/main/resources/lib/layout/progressiveRendering_sv_SE.properties new file mode 100644 index 0000000000..7e321bd3a8 --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_sv_SE.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=Servern arbetar. diff --git a/core/src/main/resources/lib/test/bar_sv_SE.properties b/core/src/main/resources/lib/test/bar_sv_SE.properties index 9d359d7b6e..0400553a97 100644 --- a/core/src/main/resources/lib/test/bar_sv_SE.properties +++ b/core/src/main/resources/lib/test/bar_sv_SE.properties @@ -21,4 +21,5 @@ # THE SOFTWARE. failures={0} fel +skipped={0} ignorerade tests={0} tester -- GitLab From 59682d6a4f0bca6d68e4021c23c41fa8a76eef39 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:04 -0700 Subject: [PATCH 080/308] Community-contributed localization for Tamil (ta) --- .../ReverseProxySetupMonitor/message_ta.properties | 5 +++++ .../hudson/model/AbstractBuild/sidepanel_ta.properties | 3 +++ .../hudson/model/AbstractBuild/tasks_ta.properties | 8 ++++++++ .../hudson/model/AbstractProject/sidepanel_ta.properties | 4 ++++ .../resources/hudson/model/View/sidepanel_ta.properties | 5 +++++ .../views/DefaultViewsTabBar/viewTabs_ta.properties | 3 +++ .../views/LastDurationColumn/columnHeader_ta.properties | 3 +++ .../views/LastFailureColumn/columnHeader_ta.properties | 3 +++ .../views/LastSuccessColumn/columnHeader_ta.properties | 3 +++ .../hudson/views/StatusColumn/columnHeader_ta.properties | 3 +++ .../hudson/views/WeatherColumn/columnHeader_ta.properties | 3 +++ .../resources/jenkins/model/Jenkins/manage_ta.properties | 3 +++ .../main/resources/lib/hudson/buildCaption_ta.properties | 3 +++ .../lib/hudson/editableDescription_ta.properties | 3 +++ .../src/main/resources/lib/hudson/executors_ta.properties | 5 +++++ core/src/main/resources/lib/hudson/queue_ta.properties | 4 ++++ .../main/resources/lib/layout/breadcrumbBar_ta.properties | 3 +++ core/src/main/resources/lib/layout/layout_ta.properties | 5 +++++ 18 files changed, 69 insertions(+) create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ta.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ta.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_ta.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_ta.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_ta.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ta.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ta.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ta.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ta.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_ta.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ta.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/manage_ta.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_ta.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_ta.properties create mode 100644 core/src/main/resources/lib/hudson/executors_ta.properties create mode 100644 core/src/main/resources/lib/hudson/queue_ta.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_ta.properties create mode 100644 core/src/main/resources/lib/layout/layout_ta.properties diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ta.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ta.properties new file mode 100644 index 0000000000..940482ea2c --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ta.properties @@ -0,0 +1,5 @@ +# 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/model/AbstractBuild/sidepanel_ta.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ta.properties new file mode 100644 index 0000000000..a7b662817e --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ta.properties @@ -0,0 +1,3 @@ +# 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_ta.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ta.properties new file mode 100644 index 0000000000..ecccfb354b --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ta.properties @@ -0,0 +1,8 @@ +# 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/AbstractProject/sidepanel_ta.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ta.properties new file mode 100644 index 0000000000..2e5ab3da76 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ta.properties @@ -0,0 +1,4 @@ +# 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/View/sidepanel_ta.properties b/core/src/main/resources/hudson/model/View/sidepanel_ta.properties new file mode 100644 index 0000000000..990c244eba --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_ta.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Build\ History=\u0B89\u0BB0\u0BC1\u0BB5\u0BBE\u0B95\u0BCD\u0B95\u0BAA\u0BCD\u0BAA\u0BA3\u0BBF \u0BB5\u0BB0\u0BB2\u0BBE\u0BB1\u0BC1 +NewJob=\u0BAA\u0BC1\u0BA4\u0BBF\u0BAF {\u0BE6} +People=\u0BAE\u0B95\u0BCD\u0B95\u0BB3\u0BCD diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ta.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ta.properties new file mode 100644 index 0000000000..87dbedcf52 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ta.properties @@ -0,0 +1,3 @@ +# 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/LastDurationColumn/columnHeader_ta.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ta.properties new file mode 100644 index 0000000000..effd893d51 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ta.properties @@ -0,0 +1,3 @@ +# 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/LastFailureColumn/columnHeader_ta.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ta.properties new file mode 100644 index 0000000000..0b3da453d0 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ta.properties @@ -0,0 +1,3 @@ +# 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/LastSuccessColumn/columnHeader_ta.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ta.properties new file mode 100644 index 0000000000..34afcd3e2c --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ta.properties @@ -0,0 +1,3 @@ +# 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/StatusColumn/columnHeader_ta.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ta.properties new file mode 100644 index 0000000000..5d7f3eb6df --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ta.properties @@ -0,0 +1,3 @@ +# 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/WeatherColumn/columnHeader_ta.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ta.properties new file mode 100644 index 0000000000..85eb015995 --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ta.properties @@ -0,0 +1,3 @@ +# 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/jenkins/model/Jenkins/manage_ta.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_ta.properties new file mode 100644 index 0000000000..4a3a90045e --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_ta.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Manage\ Jenkins=\u0B9A\u0BC6\u0BA9\u0BCD\u0B95\u0BBF\u0BA9\u0BCD\u0B9A\u0BC8 \u0BA8\u0BBF\u0BB0\u0BCD\u0BB5\u0BBE\u0B95\u0BBF diff --git a/core/src/main/resources/lib/hudson/buildCaption_ta.properties b/core/src/main/resources/lib/hudson/buildCaption_ta.properties new file mode 100644 index 0000000000..8141575df6 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_ta.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Progress=\u0BAE\u0BC1\u0BA9\u0BCD\u0BA9\u0BC7\u0BB1\u0BCD\u0BB1\u0BAE\u0BCD diff --git a/core/src/main/resources/lib/hudson/editableDescription_ta.properties b/core/src/main/resources/lib/hudson/editableDescription_ta.properties new file mode 100644 index 0000000000..fde40a2fb0 --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_ta.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +add\ description=\u0BB5\u0BBF\u0BB3\u0B95\u0BCD\u0B95\u0BAE\u0BB3\u0BBF diff --git a/core/src/main/resources/lib/hudson/executors_ta.properties b/core/src/main/resources/lib/hudson/executors_ta.properties new file mode 100644 index 0000000000..49c3033410 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_ta.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Build\ Executor\ Status=\u0B89\u0BB0\u0BC1\u0BB5\u0BBE\u0B95\u0BCD\u0B95\u0BAA\u0BCD\u0BAA\u0BA3\u0BBF \u0B87\u0BAF\u0B95\u0BCD\u0B95\u0BC1\u0BA9\u0BB0\u0BCD \u0BA8\u0BBF\u0BB2\u0BC8 +Idle=\u0B87\u0BAF\u0B95\u0BCD\u0B95\u0BAE\u0BBF\u0BA9\u0BCD\u0BAE\u0BC8 +Status=\u0BA8\u0BBF\u0BB2\u0BB5\u0BB0\u0BAE\u0BCD diff --git a/core/src/main/resources/lib/hudson/queue_ta.properties b/core/src/main/resources/lib/hudson/queue_ta.properties new file mode 100644 index 0000000000..a7c7071020 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_ta.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build\ Queue=\u0B89\u0BB0\u0BC1\u0BB5\u0BBE\u0B95\u0BCD\u0B95\u0BAA\u0BCD\u0BAA\u0BA3\u0BBF \u0BB5\u0BB0\u0BBF\u0B9A\u0BC8 +No\ builds\ in\ the\ queue.=\u0B89\u0BB0\u0BC1\u0BB5\u0BBE\u0B95\u0BCD\u0B95\u0BAA\u0BCD\u0BAA\u0BA3\u0BBF \u0B8E\u0BA4\u0BC1\u0BB5\u0BC1\u0BAE\u0BCD \u0B87\u0BB5\u0BCD\u0BB5\u0BB0\u0BBF\u0B9A\u0BC8\u0BAF\u0BBF\u0BB2\u0BCD \u0B87\u0BB2\u0BCD\u0BB2\u0BC8 diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_ta.properties b/core/src/main/resources/lib/layout/breadcrumbBar_ta.properties new file mode 100644 index 0000000000..5031554ca3 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_ta.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=\u0BA4\u0BBE\u0BA9\u0BBE\u0B95 \u0BAA\u0BC1\u0BA4\u0BC1\u0BAA\u0BCD\u0BAA\u0BBF diff --git a/core/src/main/resources/lib/layout/layout_ta.properties b/core/src/main/resources/lib/layout/layout_ta.properties new file mode 100644 index 0000000000..c9054468f6 --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_ta.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +logout=\u0BB5\u0BC6\u0BB3\u0BBF\u0BAF\u0BC7\u0BB1\u0BC1 +search=\u0BA4\u0BC7\u0B9F\u0BC1 +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -- GitLab From bf3962fc6b861296afdf0e74f37d3318f11a0155 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:04 -0700 Subject: [PATCH 081/308] Community-contributed localization for Telugu (te) --- .../hudson/model/AbstractBuild/index_te.properties | 3 +++ .../hudson/model/AbstractBuild/sidepanel_te.properties | 3 +++ .../hudson/model/AbstractBuild/tasks_te.properties | 9 +++++++++ .../hudson/model/AbstractProject/sidepanel_te.properties | 9 +++++++++ .../resources/hudson/model/AllView/noJob_te.properties | 4 ++++ .../resources/hudson/model/Run/console_te.properties | 5 +++++ .../resources/hudson/model/View/sidepanel_te.properties | 7 +++++-- .../security/SecurityRealm/loginLink_te.properties | 3 +++ .../hudson/views/BuildButtonColumn/column_te.properties | 4 ++++ .../views/DefaultViewsTabBar/viewTabs_te.properties | 3 +++ .../views/LastDurationColumn/columnHeader_te.properties | 3 +++ .../views/LastFailureColumn/columnHeader_te.properties | 3 +++ .../views/LastSuccessColumn/columnHeader_te.properties | 3 +++ .../hudson/views/StatusColumn/columnHeader_te.properties | 3 +++ .../views/WeatherColumn/columnHeader_te.properties | 3 +++ .../main/resources/lib/hudson/buildCaption_te.properties | 4 ++++ .../main/resources/lib/hudson/buildHealth_te.properties | 3 +++ .../resources/lib/hudson/buildProgressBar_te.properties | 2 +- .../lib/hudson/editableDescription_te.properties | 3 +++ .../main/resources/lib/hudson/executors_te.properties | 7 ++++++- .../src/main/resources/lib/hudson/iconSize_te.properties | 3 +++ core/src/main/resources/lib/hudson/queue_te.properties | 4 ++++ core/src/main/resources/lib/hudson/rssBar_te.properties | 6 ++++++ .../resources/lib/layout/breadcrumbBar_te.properties | 3 +++ core/src/main/resources/lib/layout/layout_te.properties | 7 +++++++ 25 files changed, 103 insertions(+), 4 deletions(-) create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_te.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_te.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_te.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_te.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_te.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_te.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_te.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_te.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_te.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_te.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_te.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_te.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_te.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_te.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_te.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_te.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_te.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_te.properties create mode 100644 core/src/main/resources/lib/hudson/queue_te.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_te.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_te.properties create mode 100644 core/src/main/resources/lib/layout/layout_te.properties diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_te.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_te.properties new file mode 100644 index 0000000000..786e72ba29 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_te.properties @@ -0,0 +1,3 @@ +# 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_te.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_te.properties new file mode 100644 index 0000000000..8f35bf4e63 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_te.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Previous\ Build=Mundhu Nirmanam diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_te.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_te.properties new file mode 100644 index 0000000000..da35dcc0e7 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_te.properties @@ -0,0 +1,9 @@ +# 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/AbstractProject/sidepanel_te.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_te.properties new file mode 100644 index 0000000000..8c568c0013 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_te.properties @@ -0,0 +1,9 @@ +# 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 +Build\ scheduled=\u0C37\u0C46\u0C21\u0C4D\u0C2F\u0C42\u0C32\u0C4D \u0C1A\u0C47\u0C2F\u0C2C\u0C21\u0C3F\u0C28 \u0C2C\u0C3F\u0C32\u0C4D\u0C21\u0C4D +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 +delete=\u0C24\u0C4A\u0C32\u0C17\u0C3F\u0C02\u0C1A\u0C41 {0} diff --git a/core/src/main/resources/hudson/model/AllView/noJob_te.properties b/core/src/main/resources/hudson/model/AllView/noJob_te.properties new file mode 100644 index 0000000000..169109616e --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_te.properties @@ -0,0 +1,4 @@ +# 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/Run/console_te.properties b/core/src/main/resources/hudson/model/Run/console_te.properties new file mode 100644 index 0000000000..5cdcf08ca2 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_te.properties @@ -0,0 +1,5 @@ +# 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/View/sidepanel_te.properties b/core/src/main/resources/hudson/model/View/sidepanel_te.properties index 7d5a360ff0..4cc6d6ae40 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_te.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_te.properties @@ -20,5 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewJob=Kothavi {0} -People=Janalu +Build\ History=\u0C28\u0C3F\u0C30\u0C4D\u0C2E\u0C3F\u0C02\u0C1A\u0C41 \u0C1A\u0C30\u0C3F\u0C24\u0C4D\u0C30 +Check\ File\ Fingerprint=File Vetimudra nu parisilinchu +NewJob=\u0C24\u0C3E\u0C1C\u0C3E {0} +People= +Project\ Relationship=Project la madhya sambandhamu diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_te.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_te.properties new file mode 100644 index 0000000000..c36a0f83b6 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_te.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +login=\u0C32\u0C3E\u0C17\u0C3F\u0C28\u0C4D diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_te.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_te.properties new file mode 100644 index 0000000000..9823965796 --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_te.properties @@ -0,0 +1,4 @@ +# 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 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_te.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_te.properties new file mode 100644 index 0000000000..5ffc4d26f7 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_te.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +New\ View=Kotha View diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_te.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_te.properties new file mode 100644 index 0000000000..18e7bee27e --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_te.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Duration=Chivari sari thesukunna Samayamu diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_te.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_te.properties new file mode 100644 index 0000000000..6f4a1e5208 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_te.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Failure=Chivari sari viphalamindi diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_te.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_te.properties new file mode 100644 index 0000000000..bbf6d053a1 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_te.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Success=Chivari sari pani chesindi diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_te.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_te.properties new file mode 100644 index 0000000000..ac0cd80d75 --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_te.properties @@ -0,0 +1,3 @@ +# 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/WeatherColumn/columnHeader_te.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_te.properties new file mode 100644 index 0000000000..39a9e236ea --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_te.properties @@ -0,0 +1,3 @@ +# 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/lib/hudson/buildCaption_te.properties b/core/src/main/resources/lib/hudson/buildCaption_te.properties new file mode 100644 index 0000000000..9534037ae5 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_te.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Progress=Purogathi +cancel=Radhu diff --git a/core/src/main/resources/lib/hudson/buildHealth_te.properties b/core/src/main/resources/lib/hudson/buildHealth_te.properties new file mode 100644 index 0000000000..361c9713b5 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_te.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Description=Vivarana diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_te.properties b/core/src/main/resources/lib/hudson/buildProgressBar_te.properties index a1911c9e76..62662e4cbb 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_te.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_te.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Modalayyi {0} ayyindi
Migilina Samayamu: {1} +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} diff --git a/core/src/main/resources/lib/hudson/editableDescription_te.properties b/core/src/main/resources/lib/hudson/editableDescription_te.properties new file mode 100644 index 0000000000..7f82351ab7 --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_te.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +add\ description=vivarana koodika cheyandi diff --git a/core/src/main/resources/lib/hudson/executors_te.properties b/core/src/main/resources/lib/hudson/executors_te.properties index d1cf750d1d..6e76f97a68 100644 --- a/core/src/main/resources/lib/hudson/executors_te.properties +++ b/core/src/main/resources/lib/hudson/executors_te.properties @@ -20,4 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Idle=Ekantham +Build\ Executor\ Status=nirmana nirvahana paristhithi +Building=Nirmanam +Idle=Khaliga undi +Master=\u0C2A\u0C4D\u0C30\u0C27\u0C3E\u0C28 +Status=paristhithi +terminate\ this\ build=\u0C08 \u0C2C\u0C3F\u0C32\u0C4D\u0C21\u0C4D \u0C28\u0C41 \u0C2E\u0C41\u0C17\u0C3F\u0C02\u0C1A\u0C41 diff --git a/core/src/main/resources/lib/hudson/iconSize_te.properties b/core/src/main/resources/lib/hudson/iconSize_te.properties new file mode 100644 index 0000000000..c9820d7ffd --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_te.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Icon=Chiru chitram diff --git a/core/src/main/resources/lib/hudson/queue_te.properties b/core/src/main/resources/lib/hudson/queue_te.properties new file mode 100644 index 0000000000..df3a0761fd --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_te.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build\ Queue=\u0C28\u0C3F\u0C30\u0C4D\u0C2E\u0C3F\u0C02\u0C1A\u0C41 \u0C15\u0C4D\u0C30\u0C2E\u0C2E\u0C41 +No\ builds\ in\ the\ queue.=ee varusalo nirmanalu levu. diff --git a/core/src/main/resources/lib/hudson/rssBar_te.properties b/core/src/main/resources/lib/hudson/rssBar_te.properties new file mode 100644 index 0000000000..fe572697dd --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_te.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Legend=Pattika +for\ all=Anni Builds koraku +for\ failures=Viphalamina Builds matrame +for\ just\ latest\ builds=Sarikotha builds matrame diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_te.properties b/core/src/main/resources/lib/layout/breadcrumbBar_te.properties new file mode 100644 index 0000000000..94a9fbc84d --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_te.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=\u0C24\u0C28\u0C02\u0C24\u0C1F \u0C24\u0C3E\u0C28\u0C46 \u0C24\u0C3E\u0C1C\u0C3E\u0C2A\u0C30\u0C41\u0C1A\u0C41\u0C15\u0C4A\u0C28\u0C41\u0C28\u0C41 diff --git a/core/src/main/resources/lib/layout/layout_te.properties b/core/src/main/resources/lib/layout/layout_te.properties new file mode 100644 index 0000000000..6a1862e1b3 --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_te.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=\u0C06\u0C1F\u0C4B \u0C30\u0C3F\u0C2B\u0C4D\u0C30\u0C46\u0C37\u0C4D \u0C0E\u0C28\u0C47\u0C2C\u0C41\u0C32\u0C4D \u0C1A\u0C47\u0C2F\u0C41\u0C2E\u0C41 +Page\ generated=pagi tayaraindi +logout=\u0C32\u0C3E\u0C17\u0C4D \u0C05\u0C35\u0C41\u0C1F\u0C4D +search=vethuku +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -- GitLab From a9079e82e5982398af7cb52c689e0e6313e56d70 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:04 -0700 Subject: [PATCH 082/308] Community-contributed localization for Thai (th) --- .../hudson/PluginManager/tabBar_th.properties | 6 ++++++ .../hudson/model/AbstractBuild/tasks_th.properties | 4 ++++ .../model/AbstractProject/sidepanel_th.properties | 10 ++++++++++ .../hudson/model/View/sidepanel_th.properties | 7 +++++++ .../security/SecurityRealm/loginLink_th.properties | 3 +++ .../hudson/widgets/HistoryWidget/entry_th.properties | 3 +++ .../hudson/widgets/HistoryWidget/index_th.properties | 5 +++++ .../jenkins/model/Jenkins/login_th.properties | 6 ++++++ .../lib/hudson/buildProgressBar_th.properties | 3 +++ .../main/resources/lib/hudson/executors_th.properties | 7 +++++++ core/src/main/resources/lib/hudson/queue_th.properties | 4 ++++ .../resources/lib/layout/breadcrumbBar_th.properties | 3 +++ .../src/main/resources/lib/layout/layout_th.properties | 6 ++++++ 13 files changed, 67 insertions(+) create mode 100644 core/src/main/resources/hudson/PluginManager/tabBar_th.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_th.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_th.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_th.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_th.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_th.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_th.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/login_th.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_th.properties create mode 100644 core/src/main/resources/lib/hudson/executors_th.properties create mode 100644 core/src/main/resources/lib/hudson/queue_th.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_th.properties create mode 100644 core/src/main/resources/lib/layout/layout_th.properties diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_th.properties b/core/src/main/resources/hudson/PluginManager/tabBar_th.properties new file mode 100644 index 0000000000..73f99e3b96 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/tabBar_th.properties @@ -0,0 +1,6 @@ +# 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/model/AbstractBuild/tasks_th.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_th.properties new file mode 100644 index 0000000000..8103576a47 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_th.properties @@ -0,0 +1,4 @@ +# 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/AbstractProject/sidepanel_th.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_th.properties new file mode 100644 index 0000000000..6ebfb0a0eb --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_th.properties @@ -0,0 +1,10 @@ +# 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 +Build\ scheduled=\u0E1A\u0E34\u0E25\u0E14\u0E4C\u0E44\u0E14\u0E49\u0E16\u0E39\u0E01\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E40\u0E27\u0E25\u0E32\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E41\u0E25\u0E49\u0E27 +Changes=\u0E04\u0E27\u0E32\u0E21\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E41\u0E1B\u0E25\u0E07 +Status=\u0E2A\u0E16\u0E32\u0E19\u0E30 +View\ Configuration=\u0E14\u0E39\u0E01\u0E32\u0E23\u0E1B\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32 +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 +delete=\u0E25\u0E1A {0} diff --git a/core/src/main/resources/hudson/model/View/sidepanel_th.properties b/core/src/main/resources/hudson/model/View/sidepanel_th.properties new file mode 100644 index 0000000000..94db3a3024 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_th.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Build\ History=\u0E1B\u0E23\u0E30\u0E27\u0E31\u0E15\u0E34\u0E01\u0E32\u0E23 build +Edit\ View=\u0E41\u0E01\u0E49\u0E44\u0E02 +NewJob=\u0E43\u0E2B\u0E21\u0E48 {0} +People=\u0E1A\u0E38\u0E04\u0E04\u0E25 +Project\ Relationship=\u0E04\u0E27\u0E32\u0E21\u0E2A\u0E31\u0E21\u0E1E\u0E31\u0E19\u0E18\u0E4C\u0E02\u0E2D\u0E07\u0E42\u0E1B\u0E23\u0E40\u0E08\u0E04 diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_th.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_th.properties new file mode 100644 index 0000000000..ea49dedf8d --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_th.properties @@ -0,0 +1,3 @@ +# 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/widgets/HistoryWidget/entry_th.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_th.properties new file mode 100644 index 0000000000..527edc86e5 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_th.properties @@ -0,0 +1,3 @@ +# 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_th.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_th.properties new file mode 100644 index 0000000000..ac87a46e46 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_th.properties @@ -0,0 +1,5 @@ +# 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/jenkins/model/Jenkins/login_th.properties b/core/src/main/resources/jenkins/model/Jenkins/login_th.properties new file mode 100644 index 0000000000..b1fde0aceb --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/login_th.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Password=\u0E23\u0E2B\u0E31\u0E2A\u0E1C\u0E48\u0E32\u0E19 +Remember\ me\ on\ this\ computer=\u0E08\u0E14\u0E08\u0E33\u0E09\u0E31\u0E19\u0E1A\u0E19\u0E40\u0E04\u0E23\u0E37\u0E48\u0E2D\u0E07\u0E19\u0E35\u0E49 +User=\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49 +login=\u0E40\u0E02\u0E49\u0E32\u0E2A\u0E39\u0E48\u0E23\u0E30\u0E1A\u0E1A diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_th.properties b/core/src/main/resources/lib/hudson/buildProgressBar_th.properties new file mode 100644 index 0000000000..b3a40301da --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_th.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +text=\u0E40\u0E23\u0E34\u0E48\u0E21 {0} \u0E17\u0E35\u0E48\u0E1C\u0E48\u0E32\u0E19\u0E21\u0E32
\u0E40\u0E2B\u0E25\u0E37\u0E2D\u0E40\u0E27\u0E25\u0E32\u0E1B\u0E23\u0E30\u0E21\u0E32\u0E13: {1} diff --git a/core/src/main/resources/lib/hudson/executors_th.properties b/core/src/main/resources/lib/hudson/executors_th.properties new file mode 100644 index 0000000000..a2aa4590a0 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_th.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Build\ Executor\ Status=\u0E2A\u0E16\u0E32\u0E19\u0E30 +Building=\u0E01\u0E33\u0E25\u0E31\u0E07\u0E2A\u0E23\u0E49\u0E32\u0E07 +Idle=\u0E27\u0E48\u0E32\u0E07 +Master=\u0E15\u0E49\u0E19\u0E09\u0E1A\u0E31\u0E1A +offline=\u0E1B\u0E34\u0E14 diff --git a/core/src/main/resources/lib/hudson/queue_th.properties b/core/src/main/resources/lib/hudson/queue_th.properties new file mode 100644 index 0000000000..c625cf380c --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_th.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build\ Queue=\u0E04\u0E34\u0E27 +WaitingFor=\u0E23\u0E2D {0} diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_th.properties b/core/src/main/resources/lib/layout/breadcrumbBar_th.properties new file mode 100644 index 0000000000..45798ffade --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_th.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=\u0E40\u0E1B\u0E34\u0E14\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E23\u0E35\u0E40\u0E1F\u0E23\u0E0A\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34 diff --git a/core/src/main/resources/lib/layout/layout_th.properties b/core/src/main/resources/lib/layout/layout_th.properties new file mode 100644 index 0000000000..dc2af0452a --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_th.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Page\ generated=\u0E40\u0E1E\u0E08\u0E44\u0E14\u0E49\u0E16\u0E39\u0E01\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E02\u0E36\u0E49\u0E19\u0E41\u0E25\u0E49\u0E27 +logout=\u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01\u0E23\u0E30\u0E1A\u0E1A +search=\u0E04\u0E49\u0E19\u0E2B\u0E32 +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -- GitLab From b373ec0d3e524456beabd92a28ffcdc433bdc89e Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:04 -0700 Subject: [PATCH 083/308] Community-contributed localization for Turkish (tr) --- .../hudson/PluginManager/advanced_tr.properties | 1 + .../hudson/PluginManager/index_tr.properties | 3 +++ .../hudson/PluginManager/installed_tr.properties | 3 +++ .../hudson/PluginManager/table_tr.properties | 4 ++++ .../ReverseProxySetupMonitor/message_tr.properties | 4 ++++ .../hudson/model/AbstractBuild/index_tr.properties | 3 ++- .../hudson/model/AbstractBuild/tasks_tr.properties | 6 ++++-- .../hudson/model/AbstractItem/delete_tr.properties | 1 + .../model/AbstractProject/sidepanel_tr.properties | 4 +++- .../hudson/model/AllView/noJob_tr.properties | 4 ++-- .../Cause/UserIdCause/description_tr.properties | 4 ++++ .../hudson/model/Computer/index_tr.properties | 4 ++++ .../hudson/model/Computer/sidepanel_tr.properties | 4 ++++ .../model/DirectoryBrowserSupport/dir_tr.properties | 1 + .../hudson/model/Job/buildTimeTrend_tr.properties | 2 ++ .../hudson/model/Job/configure_tr.properties | 2 ++ .../resources/hudson/model/Job/index_tr.properties | 1 + .../hudson/model/Job/permalinks_tr.properties | 2 +- .../model/ParametersAction/index_tr.properties | 1 + .../hudson/model/Run/console_tr.properties | 1 + .../ConnectionCheckJob/row_tr.properties | 2 +- .../DownloadJob/Pending/status_tr.properties | 3 +++ .../RestartJenkinsJob/Pending/status_tr.properties | 3 +++ .../RestartJenkinsJob/row_tr.properties | 3 +++ .../hudson/model/UpdateCenter/body_tr.properties | 5 +++++ .../hudson/model/UpdateCenter/index_tr.properties | 3 +++ .../model/UpdateCenter/sidepanel_tr.properties | 5 +++-- .../resources/hudson/model/User/index_tr.properties | 3 +++ .../hudson/model/User/sidepanel_tr.properties | 1 + .../model/View/AsynchPeople/index_tr.properties | 2 ++ .../hudson/model/View/People/index_tr.properties | 4 ++++ .../hudson/model/View/builds_tr.properties | 1 + .../hudson/model/View/newJob_tr.properties | 2 ++ .../hudson/model/View/sidepanel_tr.properties | 6 +++--- .../security/SecurityRealm/loginLink_tr.properties | 2 +- .../hudson/slaves/JNLPLauncher/main_tr.properties | 3 +++ .../slaves/SlaveComputer/sidepanel2_tr.properties | 4 ++++ .../AbstractTestResultAction/summary_tr.properties | 1 + .../views/BuildButtonColumn/column_tr.properties | 2 ++ .../DefaultMyViewsTabBar/myViewTabs_tr.properties | 3 +++ .../views/DefaultViewsTabBar/viewTabs_tr.properties | 2 +- .../LastDurationColumn/columnHeader_tr.properties | 2 +- .../LastFailureColumn/columnHeader_tr.properties | 2 +- .../LastSuccessColumn/columnHeader_tr.properties | 2 +- .../views/StatusColumn/columnHeader_tr.properties | 2 +- .../views/WeatherColumn/columnHeader_tr.properties | 2 +- .../BuildHistoryWidget/entries_tr.properties | 4 ++++ .../widgets/HistoryWidget/index_tr.properties | 5 +++-- .../jenkins/model/Jenkins/configure_tr.properties | 1 + .../jenkins/model/Jenkins/manage_tr.properties | 1 + .../main/resources/lib/form/helpArea_tr.properties | 3 +++ .../main/resources/lib/form/textarea_tr.properties | 4 ++++ .../resources/lib/hudson/buildCaption_tr.properties | 2 +- .../lib/hudson/buildListTable_tr.properties | 1 + .../lib/hudson/buildProgressBar_tr.properties | 2 +- .../lib/hudson/editableDescription_tr.properties | 2 +- .../resources/lib/hudson/executors_tr.properties | 2 +- .../resources/lib/hudson/iconSize_tr.properties | 2 +- .../lib/hudson/newFromList/form_tr.properties | 3 +++ .../project/config-concurrentBuild_tr.properties | 3 +++ .../hudson/project/config-retryCount_tr.properties | 3 +++ .../main/resources/lib/hudson/queue_tr.properties | 5 +++-- .../main/resources/lib/hudson/rssBar_tr.properties | 6 +++--- .../lib/layout/breadcrumbBar_tr.properties | 3 +++ .../main/resources/lib/layout/layout_tr.properties | 13 +++++++++++-- .../resources/lib/layout/main-panel_tr.properties | 3 +++ .../lib/layout/progressiveRendering_tr.properties | 3 +++ 67 files changed, 162 insertions(+), 34 deletions(-) create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_tr.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UserIdCause/description_tr.properties create mode 100644 core/src/main/resources/hudson/model/Computer/index_tr.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_tr.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_tr.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_tr.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_tr.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/index_tr.properties create mode 100644 core/src/main/resources/hudson/model/User/index_tr.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_tr.properties create mode 100644 core/src/main/resources/hudson/slaves/JNLPLauncher/main_tr.properties create mode 100644 core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_tr.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_tr.properties create mode 100644 core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_tr.properties create mode 100644 core/src/main/resources/lib/form/helpArea_tr.properties create mode 100644 core/src/main/resources/lib/form/textarea_tr.properties create mode 100644 core/src/main/resources/lib/hudson/newFromList/form_tr.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-concurrentBuild_tr.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-retryCount_tr.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_tr.properties create mode 100644 core/src/main/resources/lib/layout/main-panel_tr.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_tr.properties diff --git a/core/src/main/resources/hudson/PluginManager/advanced_tr.properties b/core/src/main/resources/hudson/PluginManager/advanced_tr.properties index 7d12d210c9..edec24b16f 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_tr.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_tr.properties @@ -26,6 +26,7 @@ Upload\ Plugin=Eklenti Y\u00fckle uploadtext=\ Merkezi eklenti repository''si d\u0131\u015f\u0131nda bir eklenti eklemek i\u00e7in .hpi dosyas\u0131n\u0131 y\u00fcklemeniz yeterli olacakt\u0131r. File=Dosya +Update\ Site=G\u00FCncelleme sitesi Upload=Y\u00fckle lastUpdated=Al\u0131nan son g\u00fcncelleme bilgisi : {0} \u00f6nce Check\ now=\u015eimdi kontrol et diff --git a/core/src/main/resources/hudson/PluginManager/index_tr.properties b/core/src/main/resources/hudson/PluginManager/index_tr.properties index 471ba0ca89..7ef1159b1d 100644 --- a/core/src/main/resources/hudson/PluginManager/index_tr.properties +++ b/core/src/main/resources/hudson/PluginManager/index_tr.properties @@ -20,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +All=T\u00FCm\u00FC +None=Hi\u00E7biri +Select=Se\u00E7 UpdatePageDescription=Bu sayfada mevcut kulland\u0131\u011f\u0131n\u0131z eklentiler listelenir. diff --git a/core/src/main/resources/hudson/PluginManager/installed_tr.properties b/core/src/main/resources/hudson/PluginManager/installed_tr.properties index d76fe3a314..fd8f5dae81 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_tr.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_tr.properties @@ -21,9 +21,12 @@ # THE SOFTWARE. No\ plugins\ installed.=Herhangi bir eklenti kurulu de\u011fil +Previously\ installed\ version=\u00D6nceki y\u00FCklenen versiyon Uncheck\ to\ disable\ the\ plugin=Eklentiyi devre d\u0131\u015f\u0131 b\u0131rakmak i\u00e7in yan\u0131ndaki i\u015fareti kald\u0131r Enabled=Devrede Name=\u0130sim +Uninstall=Kald\u0131r Version=Versiyon New\ plugins\ will\ take\ effect\ once\ you\ restart\ Jenkins=Yeni\ eklentiler\ Jenkins'\u0131\ bir\ kere\ yeniden\ ba\u015flatt\u0131ktan\ sonra\ devreye\ girecektir Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=De\u011fi\u015fiklikler\ Jenkins'\u0131\ yeniden\ ba\u015flatt\u0131ktan\ sonra\ devreye\ girecektir +downgradeTo={0} s\u00FCr\u00FCm\u00FCne al\u00E7alt diff --git a/core/src/main/resources/hudson/PluginManager/table_tr.properties b/core/src/main/resources/hudson/PluginManager/table_tr.properties index ba05cdb690..b8c3787995 100644 --- a/core/src/main/resources/hudson/PluginManager/table_tr.properties +++ b/core/src/main/resources/hudson/PluginManager/table_tr.properties @@ -21,7 +21,11 @@ # THE SOFTWARE. Check\ to\ install\ the\ plugin=Eklentiyi y\u00fcklemek i\u00e7in i\u015faretleyiniz +Download\ now\ and\ install\ after\ restart=\u015Eimdi indir ve yeniden ba\u015Flat\u0131ld\u0131ktan sonra y\u00FCkle +Filter=Filtre Install=Y\u00fckle +Install\ without\ restart=Yeniden ba\u015Flatmadan y\u00FCkle +Installed=Y\u00FCkl\u00FC Name=\u0130sim Version=Versiyon No\ updates=Herhangi bir g\u00fcncelleme bulunmuyor diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_tr.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_tr.properties new file mode 100644 index 0000000000..58b7bb4297 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_tr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +More\ Info=Daha fazla Bilgi +blurb=Ters vekil sunucu yap\u0131land\u0131rman\u0131z bozuk g\u00F6r\u00FCn\u00FCyor. diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_tr.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_tr.properties index 777e8c91cb..8a342342f1 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_tr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_tr.properties @@ -22,8 +22,9 @@ startedAgo={0} \u00f6nce ba\u015flad\u0131 Build=Yap\u0131land\u0131rma -Build\ Artifacts=Yap\u0131land\u0131rma Artefaktlar\u0131 +Build\ Artifacts=Yap\u0131land\u0131rma Hatalar\u0131 Changes\ in\ dependency=Ba\u011f\u0131ml\u0131l\u0131ktaki de\u011fi\u015fiklikler +beingExecuted=Yap\u0131land\u0131rma {0} d\u0131r \u00E7al\u0131\u015Fmaktad\u0131r detail=detay Not\ yet\ determined=Hen\u00fcz\ belirlenmedi Failed\ to\ determine=Belirleme esnas\u0131nda hata olu\u015ftu diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_tr.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_tr.properties index 55cb0502ae..488b75c906 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_tr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_tr.properties @@ -20,9 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=Projeye D\u00F6n +Back\ to\ Project=Projeye geri d\u00F6n Changes=De\u011Fi\u015Fiklikler Console\ Output=Konsol \u00C7\u0131kt\u0131s\u0131 +View\ Build\ Information=in\u015Fa bilgisi g\u00F6r\u00FCnt\u00FCle View\ as\ plain\ text=D\u00fcz\ metin\ olarak\ g\u00f6ster -Edit\ Build\ Information=Yap\u0131land\u0131rma Bilgisini G\u00FCncelle +Edit\ Build\ Information=S\u00FCr\u00FCm Bilgisini D\u00FCzenle Status=Durum +raw=ham diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_tr.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_tr.properties index 17a259159e..ea6133d792 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_tr.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_tr.properties @@ -22,3 +22,4 @@ Are\ you\ sure\ about\ deleting\ the\ job?=Bu\ i\u015fi\ silmek\ istedi\u011finize\ emin\ misiniz? Yes=Evet +blurb={0} ''''{1}'''' Silmek istedi\u011Finizden eminmisiniz ? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_tr.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_tr.properties index bd5c3ca532..bcc869676d 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_tr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_tr.properties @@ -21,10 +21,12 @@ # THE SOFTWARE. delete={0} sil -Back\ to\ Dashboard=Kontrol Merkezi''ne D\u00f6n +Back\ to\ Dashboard=Kontrol Merkezi''ne D\u00F6n Status=Durum Changes=De\u011fi\u015fiklikler Wipe\ Out\ Workspace=\u00C7al\u0131\u015Fma alan\u0131n\u0131 sil Workspace=\u00c7al\u0131\u015fma Alan\u0131 Configure=Konfig\u00fcrasyonu D\u00fczenle Build\ scheduled=Yap\u0131land\u0131rma planland\u0131 +delete.confirm=Silmek istedi\u011Finizden emin misiniz: {0} ''{1}''? +wipe.out.confirm=T\u00FCm alan\u0131 silmek istedi\u011Finize emin misiniz? diff --git a/core/src/main/resources/hudson/model/AllView/noJob_tr.properties b/core/src/main/resources/hudson/model/AllView/noJob_tr.properties index 81a92b8d06..1f083c8726 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_tr.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_tr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -newJob=L\u00fctfen yola koyulmak i\u00e7in yeni bir i\u015f yarat\u0131n -login=Yeni i\u015f yaratmak i\u00e7in l\u00fctfen giri\u015f yap\u0131n. +newJob=L\u00FCtfen ba\u015Flamak i\u00E7in yeni i\u015Fler olu\u015Fturun +login=Yeni i\u015F olu\u015Fturmak i\u00E7in l\u00FCtfen giri\u015F yap\u0131n. signup=E\u011fer bir hesab\u0131n\u0131z yoksa, hemen kaydolun. Welcome\ to\ Jenkins\!=Jenkins'a\ Ho\u015fgeldiniz\! diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_tr.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_tr.properties new file mode 100644 index 0000000000..f78798a6ae --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_tr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +started_by_anonymous=isimsiz kullan\u0131c\u0131 tarafindan ba\u015Flat\u0131ld\u0131 +started_by_user={1} kullan\u0131c\u0131s\u0131 taraf\u0131ndan ba\u015Flat\u0131ld\u0131 diff --git a/core/src/main/resources/hudson/model/Computer/index_tr.properties b/core/src/main/resources/hudson/model/Computer/index_tr.properties new file mode 100644 index 0000000000..34ef39a70c --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/index_tr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +None=Hi\u00E7biri +title.projects_tied_on={0}''e ba\u011Fl\u0131 projeler diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_tr.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_tr.properties index ba17853066..300309ef65 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_tr.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_tr.properties @@ -22,4 +22,8 @@ Back\ to\ List=Listeye D\u00f6n Build\ History=Yap\u0131land\u0131rma Ge\u00e7mi\u015fi +Configure=Yap\u0131land\u0131r +Delete\ Slave=Ba\u011F\u0131l\u0131(Slave) sil +Load\ Statistics=Y\u00FCklenme istatistikleri Script\ Console=Script\ Konsolu +Status=Durum diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_tr.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_tr.properties index f9606c37a1..c1e6a63942 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_tr.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_tr.properties @@ -22,3 +22,4 @@ all\ files\ in\ zip=Zip\ halinde\ t\u00fcm\ dosyalar No\ files\ in\ directory=Dizin i\u00e7erisinde dosya bulunmuyor +view=G\u00F6r\u00FCn\u00FCm diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_tr.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_tr.properties index 04b13fb599..2f7f9c8529 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_tr.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_tr.properties @@ -20,8 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Timeline=Zaman \u00E7izgisi title={0} yap\u0131land\u0131rma zaman\u0131 e\u011filimi Build=Yap\u0131land\u0131rma +Build\ Time\ Trend=\u0130n\u015Faa Zaman E\u011Filimi Duration=S\u00fcre Slave=Slave More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=E\u011filim raporu i\u00e7in birden fazla yap\u0131land\u0131rman\u0131n olmas\u0131 gerekir. diff --git a/core/src/main/resources/hudson/model/Job/configure_tr.properties b/core/src/main/resources/hudson/model/Job/configure_tr.properties index 0a8266289a..a530c119d2 100644 --- a/core/src/main/resources/hudson/model/Job/configure_tr.properties +++ b/core/src/main/resources/hudson/model/Job/configure_tr.properties @@ -20,7 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Strategy=Strateji name={0} isim Description=A\u00e7\u0131klama Discard\ Old\ Builds=Eski Yap\u0131land\u0131rmalardan Kurtul +LOADING=Y\u00DCKLEN\u0130YOR Save=Kaydet diff --git a/core/src/main/resources/hudson/model/Job/index_tr.properties b/core/src/main/resources/hudson/model/Job/index_tr.properties index 3021fd0f1e..93650839c8 100644 --- a/core/src/main/resources/hudson/model/Job/index_tr.properties +++ b/core/src/main/resources/hudson/model/Job/index_tr.properties @@ -21,6 +21,7 @@ # THE SOFTWARE. Permalinks=Permalinks +Disable\ Project=Projeyi etkisizle\u015Ftir Last\ build=Son yap\u0131land\u0131rma Last\ stable\ build=Son stabil yap\u0131land\u0131rma Last\ successful\ build=Son ba\u015far\u0131l\u0131 yap\u0131land\u0131rma diff --git a/core/src/main/resources/hudson/model/Job/permalinks_tr.properties b/core/src/main/resources/hudson/model/Job/permalinks_tr.properties index 29fb80acde..a35da82417 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_tr.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Permalinks=Permalinks +Permalinks=Permalinkler diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_tr.properties b/core/src/main/resources/hudson/model/ParametersAction/index_tr.properties index 43854f09eb..5ee790cf0b 100644 --- a/core/src/main/resources/hudson/model/ParametersAction/index_tr.properties +++ b/core/src/main/resources/hudson/model/ParametersAction/index_tr.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Build=Yap\u0131land\u0131rma +Parameters=Parametreler diff --git a/core/src/main/resources/hudson/model/Run/console_tr.properties b/core/src/main/resources/hudson/model/Run/console_tr.properties index b4b25c538e..79afa5fdab 100644 --- a/core/src/main/resources/hudson/model/Run/console_tr.properties +++ b/core/src/main/resources/hudson/model/Run/console_tr.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Console\ Output=Konsol\ Ç\u0131kt\u0131s\u0131 +skipSome={0,number,integer} KB atlan\u0131yor.. T\u00FCm Tutanak diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_tr.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_tr.properties index 05bf725486..5271936d4e 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_tr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preparation= +Preparation=Haz\u0131rl\u0131k diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_tr.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_tr.properties new file mode 100644 index 0000000000..d56c3a414d --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_tr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Pending=Bekleyen diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_tr.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_tr.properties new file mode 100644 index 0000000000..d56c3a414d --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_tr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Pending=Bekleyen diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_tr.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_tr.properties new file mode 100644 index 0000000000..0c70613b58 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_tr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Restarting\ Jenkins=Jenkins Yeniden Ba\u015Flat\u0131l\u0131yor diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_tr.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_tr.properties new file mode 100644 index 0000000000..925baf803b --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_tr.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Go\ back\ to\ the\ top\ page=\u00DCst sayfaya geri d\u00F6n +warning=Y\u00FCkleme tamamland\u0131\u011F\u0131nda ve bekleyen bir i\u015F yoksa Jenkins''\u0131 yeniden ba\u015Flat. +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=Kurulmu\u015F eklentileri kullanmaya hemen ba\u015Flayabilirsiniz diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_tr.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_tr.properties new file mode 100644 index 0000000000..af2c4aa152 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_tr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Installing\ Plugins/Upgrades=Eklentiler/y\u00FCkseltmeler kuruluyor diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_tr.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_tr.properties index 2625ce21b9..57b9f40ed0 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_tr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_tr.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Kontrol Merkezi''ne D\u00f6n -Manage\ Jenkins=Jenkins''\u0131 Y\u00f6net +Back\ to\ Dashboard=Kontrol Merkezi''ne D\u00F6n +Manage\ Jenkins=Jenkins''\u0131 Y\u00F6net +Manage\ Plugins=Eklentileri y\u00F6net diff --git a/core/src/main/resources/hudson/model/User/index_tr.properties b/core/src/main/resources/hudson/model/User/index_tr.properties new file mode 100644 index 0000000000..b9e52dfebc --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_tr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ User\ Id=Jenkins Kullan\u0131c\u0131 kimli\u011Fi diff --git a/core/src/main/resources/hudson/model/User/sidepanel_tr.properties b/core/src/main/resources/hudson/model/User/sidepanel_tr.properties index ceaa356f74..fe2bf4f34f 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_tr.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_tr.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +My\ Views=Benim G\u00F6r\u00FCn\u00FCmlerim People=\u0130nsanlar Status=Durum Builds=Yap\u0131land\u0131rmalar diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_tr.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_tr.properties index ace8f3cebd..452ed949ba 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_tr.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_tr.properties @@ -23,3 +23,5 @@ Name=\u0130sim Last\ Active=Son Aktif On=A\u00e7\u0131k +People=\u0130nsanlar +User\ Id=Kullan\u0131c\u0131 ad\u0131 diff --git a/core/src/main/resources/hudson/model/View/People/index_tr.properties b/core/src/main/resources/hudson/model/View/People/index_tr.properties new file mode 100644 index 0000000000..8514c1b0d3 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_tr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +People=Ki\u015Filer +User\ Id=Kullan\u0131c\u0131 Id diff --git a/core/src/main/resources/hudson/model/View/builds_tr.properties b/core/src/main/resources/hudson/model/View/builds_tr.properties index 1ee2d5ac58..062834b187 100644 --- a/core/src/main/resources/hudson/model/View/builds_tr.properties +++ b/core/src/main/resources/hudson/model/View/builds_tr.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Export\ as\ plain\ XML=Sade XML olarak d\u0131\u015Far\u0131 ver buildHistory={0} yap\u0131land\u0131rmas\u0131n\u0131n ge\u00e7mi\u015fi diff --git a/core/src/main/resources/hudson/model/View/newJob_tr.properties b/core/src/main/resources/hudson/model/View/newJob_tr.properties index 7172c45a1c..265e611f4c 100644 --- a/core/src/main/resources/hudson/model/View/newJob_tr.properties +++ b/core/src/main/resources/hudson/model/View/newJob_tr.properties @@ -23,3 +23,5 @@ #JobName=\u0130\u015f\ ad\u0131 #CopyExisting=Varolan\ bir\ i\u015fi\ kopyala #Copy\ from=Kopyalanacak i\u015f +CopyExisting=Varolandan kopyala {0} +JobName=isim diff --git a/core/src/main/resources/hudson/model/View/sidepanel_tr.properties b/core/src/main/resources/hudson/model/View/sidepanel_tr.properties index 77537b4a85..55723cd8b6 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_tr.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_tr.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. NewJob=Yeni {0} -People=\u0130nsanlar +People=Ki\u015Filer Build\ History=Yap\u0131land\u0131rma Ge\u00e7mi\u015fi Edit\ View=G\u00f6r\u00fcnt\u00fcy\u00fc D\u00fczenle Delete\ View=G\u00f6r\u00fcnt\u00fcy\u00fc Sil -Project\ Relationship=Projelerin \u0130li\u015fkisi -Check\ File\ Fingerprint=Dosyadaki Parmakizini Kontrol Et +Project\ Relationship=Proje \u0130li\u015Fkileri +Check\ File\ Fingerprint=Dosya Parmakizini Kontrol Et diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_tr.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_tr.properties index 5adaa7f63c..96ecbca073 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_tr.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=giri\u015f +login=Jc diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_tr.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_tr.properties new file mode 100644 index 0000000000..da1edb827a --- /dev/null +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_tr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Connected\ via\ JNLP\ agent.=JNLP ajan\u0131 ile ba\u011Fland\u0131 diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_tr.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_tr.properties new file mode 100644 index 0000000000..7a9895fb96 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_tr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Disconnect=Ba\u011Flant\u0131y\u0131 kes +System\ Information=Sistem Bilgisi diff --git a/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_tr.properties b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_tr.properties index 6743cc9489..297ab525bd 100644 --- a/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_tr.properties +++ b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_tr.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Show\ all\ failed\ tests=T\u00FCm ba\u015Far\u0131s\u0131z testleri g\u00F6ster Test\ Result=Test Sonu\u00e7lar\u0131 diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_tr.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_tr.properties index 332f18600d..591f06da27 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_tr.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_tr.properties @@ -20,4 +20,6 @@ # 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 +Schedule\ a\ build\ with\ parameters=Parametreli yap\u0131land\u0131rma planla diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_tr.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_tr.properties new file mode 100644 index 0000000000..20644f5c05 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_tr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +New\ View=Yeni G\u00F6r\u00FCn\u00FCm diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_tr.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_tr.properties index cdafe99f96..e999404b38 100644 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_tr.properties +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -New\ View=Yeni G\u00F6r\u00FCn\u00FCm +New\ View=Yeni g\u00F6r\u00FCn\u00FCm diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_tr.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_tr.properties index f06f7fb780..55f67aa1fb 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_tr.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=En son s\u00fcre +Last\ Duration=En Son S\u00FCre diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_tr.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_tr.properties index 7b6dc1f260..3d2fd19fd4 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_tr.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=En son ba\u015far\u0131s\u0131zl\u0131k \ No newline at end of file +Last\ Failure=En Son Ba\u015Far\u0131s\u0131zl\u0131k diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_tr.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_tr.properties index c1e9b0c228..b4e8aabb9b 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_tr.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=En son ba\u015far\u0131 +Last\ Success=En Son Ba\u015Far\u0131 diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_tr.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_tr.properties index 02603ead64..7c62ae803e 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_tr.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=Son yap\u0131land\u0131rma durumu +Status\ of\ the\ last\ build=Son s\u00FCr\u00FCm durumu diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_tr.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_tr.properties index 3bddcfe659..f842758ef8 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_tr.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_tr.properties @@ -20,4 +20,4 @@ # 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=Son yap\u0131land\u0131rmalar\u0131n genel durumu +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Son zamanlardaki s\u00FCr\u00FCmlerin durumunu g\u00F6sterir hava durum i\u015Fareti diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_tr.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_tr.properties new file mode 100644 index 0000000000..371372020a --- /dev/null +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_tr.properties @@ -0,0 +1,4 @@ +# 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/HistoryWidget/index_tr.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_tr.properties index b54573d03f..1babaa794b 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_tr.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_tr.properties @@ -21,5 +21,6 @@ # THE SOFTWARE. trend=E\u011filim -for\ all=T\u00fcm\u00fc i\u00e7in -for\ failures=T\u00fcm ba\u015far\u0131s\u0131zlar i\u00e7in +More\ ...=Daha fazla ... +for\ all=t\u00FCm\u00FC i\u00E7in +for\ failures=t\u00FCm ba\u015Far\u0131s\u0131zlar i\u00E7in diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_tr.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_tr.properties index 3efe672115..730324bf5c 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_tr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_tr.properties @@ -22,4 +22,5 @@ Home\ directory=Ana dizin System\ Message=Sistem Mesaj\u0131 +LOADING=Y\u00DCKLEN\u0130YOR Save=Kaydet diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_tr.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_tr.properties index aac68155a3..b22e438404 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_tr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_tr.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Manage\ Jenkins=Jenkins''\u0131 Y\u00F6net +are.you.sure={0}: emin misin? diff --git a/core/src/main/resources/lib/form/helpArea_tr.properties b/core/src/main/resources/lib/form/helpArea_tr.properties new file mode 100644 index 0000000000..8c0a3609d6 --- /dev/null +++ b/core/src/main/resources/lib/form/helpArea_tr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Loading...=Y\u00FCkleniyor... diff --git a/core/src/main/resources/lib/form/textarea_tr.properties b/core/src/main/resources/lib/form/textarea_tr.properties new file mode 100644 index 0000000000..6377fb39ee --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_tr.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=\u00D6nizlemeyi gizle +Preview=\u00D6nizleme diff --git a/core/src/main/resources/lib/hudson/buildCaption_tr.properties b/core/src/main/resources/lib/hudson/buildCaption_tr.properties index d25ff741ab..368cbab355 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_tr.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_tr.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Progress=\u0130lerleme -cancel=iptal +cancel=\u0130ptal diff --git a/core/src/main/resources/lib/hudson/buildListTable_tr.properties b/core/src/main/resources/lib/hudson/buildListTable_tr.properties index cbb8d1e382..b5783d2814 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_tr.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_tr.properties @@ -21,5 +21,6 @@ # THE SOFTWARE. Time\ Since=Tarih +Console\ output=Komut sat\u0131r\u0131 \u00E7\u0131kt\u0131s\u0131 Status=Durum Build=Yap\u0131land\u0131rma diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_tr.properties b/core/src/main/resources/lib/hudson/buildProgressBar_tr.properties index 9c8998a1aa..71e1f8ec2f 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_tr.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text={0} \u00f6nce ba\u015flad\u0131
Kalan yakla\u015f\u0131k s\u00fcre: {1} +text="{0} \u00F6nce ba\u015Flad\u0131
Kalan tahmini s\u00FCre: {1}" diff --git a/core/src/main/resources/lib/hudson/editableDescription_tr.properties b/core/src/main/resources/lib/hudson/editableDescription_tr.properties index 97468f4c4a..526516d64a 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_tr.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=a\u00e7\u0131klama ekle +add\ description=A\u00E7\u0131klama Ekle edit\ description=a\u00e7\u0131klamay\u0131 de\u011fi\u015ftir diff --git a/core/src/main/resources/lib/hudson/executors_tr.properties b/core/src/main/resources/lib/hudson/executors_tr.properties index 1fe35edc2a..e0ddd9c707 100644 --- a/core/src/main/resources/lib/hudson/executors_tr.properties +++ b/core/src/main/resources/lib/hudson/executors_tr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Yap\u0131land\u0131r\u0131c\u0131n\u0131n Durumu +Build\ Executor\ Status=Yap\u0131land\u0131r\u0131c\u0131 Durumu Status=Durum Master=Ana offline=\u00e7evrim d\u0131\u015f\u0131 diff --git a/core/src/main/resources/lib/hudson/iconSize_tr.properties b/core/src/main/resources/lib/hudson/iconSize_tr.properties index a3c7ba60a8..07a84b7f35 100644 --- a/core/src/main/resources/lib/hudson/iconSize_tr.properties +++ b/core/src/main/resources/lib/hudson/iconSize_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=ikon +Icon=\u0130kon diff --git a/core/src/main/resources/lib/hudson/newFromList/form_tr.properties b/core/src/main/resources/lib/hudson/newFromList/form_tr.properties new file mode 100644 index 0000000000..e8a77858a5 --- /dev/null +++ b/core/src/main/resources/lib/hudson/newFromList/form_tr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Copy\ from=Buradan Kopyala diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_tr.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_tr.properties new file mode 100644 index 0000000000..549c2c16fc --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_tr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title.concurrentbuilds=E\u011Fer gerekliyse e\u015F zamanl\u0131 yapland\u0131rmalar\u0131 \u00E7al\u0131\u015Ft\u0131r diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_tr.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_tr.properties new file mode 100644 index 0000000000..977130910f --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_tr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Retry\ Count=Tekrar deneme say\u0131s\u0131 diff --git a/core/src/main/resources/lib/hudson/queue_tr.properties b/core/src/main/resources/lib/hudson/queue_tr.properties index 12dc6bd209..dc2612e3b2 100644 --- a/core/src/main/resources/lib/hudson/queue_tr.properties +++ b/core/src/main/resources/lib/hudson/queue_tr.properties @@ -20,7 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Yap\u0131land\u0131rma\ Listesi; -No\ builds\ in\ the\ queue.=S\u0131rada\ yap\u0131land\u0131rma\ yok +Build\ Queue=Yap\u0131land\u0131rma Listesi +No\ builds\ in\ the\ queue.=S\u0131rada bekleyen yap\u0131land\u0131rma yok. Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins\ kapat\u0131lacakt\u0131r.\ Bundan\ sonra\ ba\u015fka\ yap\u0131land\u0131rma\ ba\u015flat\u0131lmayacakt\u0131r. +WaitingFor={0} bekleniyor cancel=iptal diff --git a/core/src/main/resources/lib/hudson/rssBar_tr.properties b/core/src/main/resources/lib/hudson/rssBar_tr.properties index bdfd0d06bb..c7a0f2e11b 100644 --- a/core/src/main/resources/lib/hudson/rssBar_tr.properties +++ b/core/src/main/resources/lib/hudson/rssBar_tr.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Legend=G\u00f6sterge -for\ all=T\u00fcm\u00fc için -for\ failures=T\u00fcm\ ba\u015far\u0131s\u0131z\ durumlar\ i\u00e7in -for\ just\ latest\ builds=sadece yeni yap\u0131land\u0131rma i\u00E7in +for\ all=t\u00FCm\u00FC i\u00E7in +for\ failures=t\u00FCm ba\u015Far\u0131s\u0131z durumlar i\u00E7in +for\ just\ latest\ builds=sadece son yap\u0131land\u0131rma i\u00E7in diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_tr.properties b/core/src/main/resources/lib/layout/breadcrumbBar_tr.properties new file mode 100644 index 0000000000..dd4b660a84 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_tr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +ENABLE\ AUTO\ REFRESH=otomatik yenilemeyi etkinle\u015Ftir diff --git a/core/src/main/resources/lib/layout/layout_tr.properties b/core/src/main/resources/lib/layout/layout_tr.properties index 11ac8f39b7..21e86337c6 100644 --- a/core/src/main/resources/lib/layout/layout_tr.properties +++ b/core/src/main/resources/lib/layout/layout_tr.properties @@ -20,10 +20,19 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -search=arama +search=ara + +BB Chip: MT6575 +MS Board: g26 +Modem version MAUI.11AMD.W11.50.SP.v21. 2012/06/08 20:14 +UBoot ver: 2010.06 +Kernel: 3.0.13-g537b6b9 (htc-kernel @ and18-2) (gcc version 4.4.3 (GCC)) # 1 PREEMPT world jou 16 2012 9:45:28 CT +Android ver. : 4.1.5 +SW ver. : Alps.ics.mp.v2.7 +Custom build winter. : 1342403151 search searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -Page\ generated=Sayfa olu\u015Fturuldu +Page\ generated=Olu\u015Fturulmu\u015F sayfa logout=\u00E7\u0131k\u0131\u015F DISABLE\ AUTO\ REFRESH=Otomatik\ Yenilemeyi\ Kapat ENABLE\ AUTO\ REFRESH=Otomatik\ Yenilemeyi\ A\u00E7 diff --git a/core/src/main/resources/lib/layout/main-panel_tr.properties b/core/src/main/resources/lib/layout/main-panel_tr.properties new file mode 100644 index 0000000000..97ec7d6f15 --- /dev/null +++ b/core/src/main/resources/lib/layout/main-panel_tr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Jenkins\ is\ going\ to\ shut\ down=Jenkins kapanacak diff --git a/core/src/main/resources/lib/layout/progressiveRendering_tr.properties b/core/src/main/resources/lib/layout/progressiveRendering_tr.properties new file mode 100644 index 0000000000..a8f5027972 --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_tr.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=\u0130\u015Flem yap\u0131l\u0131yor -- GitLab From c82cafe98a2db04772b784f60489e7671b118d65 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:04 -0700 Subject: [PATCH 084/308] Community-contributed localization for Ukrainian (uk) --- .../hudson/AboutJenkins/index_uk.properties | 5 +++++ .../PluginManager/advanced_uk.properties | 11 ++++++++++ .../PluginManager/installed_uk.properties | 14 +++++++++++++ .../hudson/PluginManager/tabBar_uk.properties | 6 ++++++ .../hudson/PluginManager/table_uk.properties | 9 +++++++++ .../message_uk.properties | 3 ++- .../config_uk.properties | 4 ++++ .../matrix/MatrixProject/index_uk.properties | 4 ++++ .../MatrixProject/newJobDetail_uk.properties | 3 +++ .../model/AbstractBuild/index_uk.properties | 9 ++++++--- .../AbstractBuild/sidepanel_uk.properties | 4 ++-- .../model/AbstractBuild/tasks_uk.properties | 7 ++++--- .../configure-common_uk.properties | 6 ++++++ .../AbstractProject/changes_uk.properties | 3 +++ .../model/AbstractProject/main_uk.properties | 6 ++++++ .../makeDisabled_uk.properties | 3 +++ .../AbstractProject/sidepanel_uk.properties | 12 ++++++----- .../hudson/model/AllView/noJob_uk.properties | 1 + .../UserIdCause/description_uk.properties | 1 + .../model/CauseAction/summary_uk.properties | 3 +++ .../hudson/model/Computer/index_uk.properties | 5 +++++ .../model/Computer/sidepanel_uk.properties | 9 +++++++++ .../model/ComputerSet/index_uk.properties | 5 +++++ .../model/ComputerSet/sidepanel_uk.properties | 6 ++++++ .../DirectoryBrowserSupport/dir_uk.properties | 4 ++++ .../newJobDetail_uk.properties | 3 +++ .../model/Job/buildTimeTrend_uk.properties | 7 +++++++ .../hudson/model/Job/configure_uk.properties | 8 ++++++++ .../hudson/model/Job/index_uk.properties | 4 ++++ .../ListView/configure-entries_uk.properties | 12 +++++++++++ .../NoFingerprintMatch/index_uk.properties | 4 ++++ .../config_uk.properties | 4 ++++ .../index_uk.properties | 3 +++ .../Run/KeepLogBuildBadge/badge_uk.properties | 3 +++ .../hudson/model/Run/configure_uk.properties | 6 ++++++ .../hudson/model/Run/console_uk.properties | 3 ++- .../hudson/model/Run/delete_uk.properties | 2 +- .../hudson/model/Run/logKeep_uk.properties | 4 ++++ .../CoreUpdateMonitor/message_uk.properties | 1 + .../DownloadJob/Success/status_uk.properties | 3 +++ .../Pending/status_uk.properties | 3 +++ .../RestartJenkinsJob/row_uk.properties | 3 +++ .../model/UpdateCenter/body_uk.properties | 3 +++ .../model/UpdateCenter/index_uk.properties | 3 +++ .../UpdateCenter/sidepanel_uk.properties | 5 +++++ .../hudson/model/User/configure_uk.properties | 4 ++++ .../hudson/model/User/sidepanel_uk.properties | 2 +- .../View/AsynchPeople/index_uk.properties | 7 +++++++ .../model/View/People/index_uk.properties | 7 +++++++ .../hudson/model/View/builds_uk.properties | 4 ++++ .../hudson/model/View/configure_uk.properties | 6 ++++++ .../hudson/model/View/newJob_uk.properties | 4 ++++ .../hudson/model/View/sidepanel_uk.properties | 13 ++++++------ .../scm/SCM/project-changes_uk.properties | 3 +++ .../config_uk.properties | 3 +++ .../index_uk.properties | 1 + .../loginLink_uk.properties | 3 +++ .../LegacySecurityRealm/config_uk.properties | 3 +++ .../SecurityRealm/loginLink_uk.properties | 3 +++ .../tasks/LogRotator/config_uk.properties | 10 ++++++++++ .../junit/CaseResult/index_uk.properties | 5 +++++ .../summary_uk.properties | 3 +++ .../test/TestObject/sidepanel_uk.properties | 4 ++++ .../BuildAction/index_uk.properties | 5 +++++ .../HudsonIsRestarting/index_uk.properties | 4 ++++ .../BuildButtonColumn/column_uk.properties | 3 ++- .../myViewTabs_uk.properties | 3 +++ .../DefaultViewsTabBar/viewTabs_uk.properties | 2 +- .../columnHeader_uk.properties | 2 +- .../LastDurationColumn/column_uk.properties | 3 +++ .../columnHeader_uk.properties | 2 +- .../LastFailureColumn/column_uk.properties | 1 - .../columnHeader_uk.properties | 2 +- .../LastSuccessColumn/column_uk.properties | 1 - .../StatusColumn/columnHeader_uk.properties | 2 +- .../WeatherColumn/columnHeader_uk.properties | 2 +- .../BuildHistoryWidget/entries_uk.properties | 4 ++-- .../widgets/HistoryWidget/entry_uk.properties | 2 +- .../widgets/HistoryWidget/index_uk.properties | 6 +++--- .../message_uk.properties | 5 +++++ .../management/PluginsLink/info_uk.properties | 3 +++ .../model/Jenkins/configure_uk.properties | 7 +++++++ .../model/Jenkins/manage_uk.properties | 20 ++++++++++++++++++- .../Jenkins/projectRelationship_uk.properties | 6 ++++++ .../model/Jenkins/systemInfo_uk.properties | 9 +++++++++ .../resources/lib/form/advanced_uk.properties | 3 +++ .../breadcrumb-config-outline_uk.properties | 3 +++ .../resources/lib/form/helpArea_uk.properties | 3 +++ .../form/repeatableDeleteButton_uk.properties | 3 +++ .../lib/form/slave-mode_uk.properties | 3 +++ .../resources/lib/form/textarea_uk.properties | 4 ++++ .../lib/hudson/buildCaption_uk.properties | 2 +- .../lib/hudson/buildHealth_uk.properties | 2 +- .../lib/hudson/buildListTable_uk.properties | 7 ++++--- .../lib/hudson/buildProgressBar_uk.properties | 2 +- .../lib/hudson/executors_uk.properties | 16 ++++++++------- .../lib/hudson/iconSize_uk.properties | 2 +- .../lib/hudson/newFromList/form_uk.properties | 3 +++ ...-blockWhenDownstreamBuilding_uk.properties | 3 +++ ...ig-blockWhenUpstreamBuilding_uk.properties | 3 +++ .../config-concurrentBuild_uk.properties | 3 +++ .../config-customWorkspace_uk.properties | 4 ++++ .../project/config-disableBuild_uk.properties | 4 ++++ .../project/config-quietPeriod_uk.properties | 4 ++++ .../project/config-retryCount_uk.properties | 4 ++++ .../hudson/project/config-scm_uk.properties | 3 +++ .../lib/hudson/project/matrix_uk.properties | 3 +++ .../project/upstream-downstream_uk.properties | 4 ++-- .../lib/hudson/propertyTable_uk.properties | 4 ++++ .../resources/lib/hudson/queue_uk.properties | 8 +++++--- .../resources/lib/hudson/rssBar_uk.properties | 6 +++--- .../lib/hudson/test-result_uk.properties | 3 ++- .../hudson/thirdPartyLicenses_uk.properties | 5 +++++ .../lib/layout/breadcrumbBar_uk.properties | 5 +++++ .../resources/lib/layout/layout_uk.properties | 9 +++++---- .../layout/progressiveRendering_uk.properties | 3 +++ 116 files changed, 471 insertions(+), 66 deletions(-) create mode 100644 core/src/main/resources/hudson/AboutJenkins/index_uk.properties create mode 100644 core/src/main/resources/hudson/PluginManager/advanced_uk.properties create mode 100644 core/src/main/resources/hudson/PluginManager/installed_uk.properties create mode 100644 core/src/main/resources/hudson/PluginManager/tabBar_uk.properties create mode 100644 core/src/main/resources/hudson/PluginManager/table_uk.properties create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_uk.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/index_uk.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_uk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/configure-common_uk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/changes_uk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_uk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/makeDisabled_uk.properties create mode 100644 core/src/main/resources/hudson/model/CauseAction/summary_uk.properties create mode 100644 core/src/main/resources/hudson/model/Computer/index_uk.properties create mode 100644 core/src/main/resources/hudson/model/Computer/sidepanel_uk.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/index_uk.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/sidepanel_uk.properties create mode 100644 core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_uk.properties create mode 100644 core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_uk.properties create mode 100644 core/src/main/resources/hudson/model/Job/buildTimeTrend_uk.properties create mode 100644 core/src/main/resources/hudson/model/Job/configure_uk.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_uk.properties create mode 100644 core/src/main/resources/hudson/model/ListView/configure-entries_uk.properties create mode 100644 core/src/main/resources/hudson/model/NoFingerprintMatch/index_uk.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_uk.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_uk.properties create mode 100644 core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_uk.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_uk.properties create mode 100644 core/src/main/resources/hudson/model/Run/logKeep_uk.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_uk.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_uk.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_uk.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_uk.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/index_uk.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/sidepanel_uk.properties create mode 100644 core/src/main/resources/hudson/model/User/configure_uk.properties create mode 100644 core/src/main/resources/hudson/model/View/AsynchPeople/index_uk.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_uk.properties create mode 100644 core/src/main/resources/hudson/model/View/builds_uk.properties create mode 100644 core/src/main/resources/hudson/model/View/configure_uk.properties create mode 100644 core/src/main/resources/hudson/model/View/newJob_uk.properties create mode 100644 core/src/main/resources/hudson/scm/SCM/project-changes_uk.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_uk.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_uk.properties create mode 100644 core/src/main/resources/hudson/security/LegacySecurityRealm/config_uk.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_uk.properties create mode 100644 core/src/main/resources/hudson/tasks/LogRotator/config_uk.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/CaseResult/index_uk.properties create mode 100644 core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_uk.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_uk.properties create mode 100644 core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_uk.properties create mode 100644 core/src/main/resources/hudson/util/HudsonIsRestarting/index_uk.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_uk.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/column_uk.properties create mode 100644 core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_uk.properties create mode 100644 core/src/main/resources/jenkins/management/PluginsLink/info_uk.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/configure_uk.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/projectRelationship_uk.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/systemInfo_uk.properties create mode 100644 core/src/main/resources/lib/form/advanced_uk.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_uk.properties create mode 100644 core/src/main/resources/lib/form/helpArea_uk.properties create mode 100644 core/src/main/resources/lib/form/repeatableDeleteButton_uk.properties create mode 100644 core/src/main/resources/lib/form/slave-mode_uk.properties create mode 100644 core/src/main/resources/lib/form/textarea_uk.properties create mode 100644 core/src/main/resources/lib/hudson/newFromList/form_uk.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_uk.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_uk.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-concurrentBuild_uk.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-customWorkspace_uk.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-disableBuild_uk.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-quietPeriod_uk.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-retryCount_uk.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-scm_uk.properties create mode 100644 core/src/main/resources/lib/hudson/project/matrix_uk.properties create mode 100644 core/src/main/resources/lib/hudson/propertyTable_uk.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_uk.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_uk.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_uk.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_uk.properties b/core/src/main/resources/hudson/AboutJenkins/index_uk.properties new file mode 100644 index 0000000000..b8d02b4edf --- /dev/null +++ b/core/src/main/resources/hudson/AboutJenkins/index_uk.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +about=\u041F\u0440\u043E \u0414\u0436\u0435\u043D\u043A\u0456\u043A\u0441 +blurb=\u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441 \u0454 \u0441\u0435\u0440\u0432\u0435\u0440\u043E\u043C \u0431\u0435\u0437\u043F\u0435\u0440\u0435\u0440\u0432\u043D\u043E\u0457 \u0456\u043D\u0442\u0435\u0433\u0440\u0430\u0446\u0456\u0457 \u0437 \u0432\u0456\u0434\u043A\u0440\u0438\u0442\u0438\u043C \u043A\u043E\u0434\u043E\u043C \u0440\u043E\u0437\u0440\u043E\u0431\u043B\u044E\u0432\u0430\u043D\u0438\u0439 \u0441\u043F\u0456\u043B\u044C\u043D\u043E\u0442\u043E\u044E. +dependencies=\u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441 \u043C\u0430\u0454 \u0437\u0430\u043B\u0435\u0436\u043D\u043E\u0441\u0442\u0456 \u0432\u0456\u0434 \u043D\u0430\u0442\u0443\u043F\u043D\u0438\u0445 diff --git a/core/src/main/resources/hudson/PluginManager/advanced_uk.properties b/core/src/main/resources/hudson/PluginManager/advanced_uk.properties new file mode 100644 index 0000000000..a29ac8dc05 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/advanced_uk.properties @@ -0,0 +1,11 @@ +# This file is under the MIT License by authors + +Check\ now=\uC9C0\uAE08 \uCCB4\uD06C +File=\uD30C\uC77C +HTTP\ Proxy\ Configuration=HTTP \uD504\uB85D\uC2DC \uC124\uC815 +Submit=\uC800\uC7A5 +Update\ Site=\uC5C5\uB85C\uB4DC \uC0AC\uC774\uD2B8 +Upload=\uC5C5\uB85C\uB4DC +Upload\ Plugin=\uD50C\uB7EC\uADF8\uC778 \uC5C5\uB85C\uB4DC +lastUpdated=\uC5C5\uB370\uC774\uD2B8 \uC815\uBCF4: {0} \uC804 +uploadtext=\uD50C\uB7EC\uADF8\uC778\uC744 \uC911\uC559 \uD50C\uB7EC\uADF8\uC778 \uC800\uC7A5\uC18C\uAC00 \uC544\uB2CC \uB2E4\uB978 \uACF3\uC5D0\uC11C \uC124\uCE58\uD558\uB824\uBA74 .hpi \uD30C\uC77C\uC744 \uC62C\uB9AC\uBA74 \uB429\uB2C8\uB2E4. diff --git a/core/src/main/resources/hudson/PluginManager/installed_uk.properties b/core/src/main/resources/hudson/PluginManager/installed_uk.properties new file mode 100644 index 0000000000..cdfbd4ea61 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/installed_uk.properties @@ -0,0 +1,14 @@ +# 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/tabBar_uk.properties b/core/src/main/resources/hudson/PluginManager/tabBar_uk.properties new file mode 100644 index 0000000000..291e6961d1 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/tabBar_uk.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Advanced=\u0414\u043E\u0434\u0430\u0442\u043A\u043E\u0432\u043E +Available=\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u0456 +Installed=\u0412\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u0456 +Updates=\u041E\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F diff --git a/core/src/main/resources/hudson/PluginManager/table_uk.properties b/core/src/main/resources/hudson/PluginManager/table_uk.properties new file mode 100644 index 0000000000..e057ecf6af --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/table_uk.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Check\ to\ install\ the\ plugin=\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044C \u0434\u043E\u0434\u0430\u0442\u043E\u043A \u0434\u043B\u044F \u0439\u043E\u0433\u043E \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F +Download\ now\ and\ install\ after\ restart=\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438 \u0437\u0430\u0440\u0430\u0437 \u0442\u0430 \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u0438 \u043F\u0456\u0441\u043B\u044F \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A\u0443 +Filter=\u0424\u0456\u043B\u044C\u0442\u0440 +Install=\u0412\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u0438 +Install\ without\ restart=\u0412\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u0438 \u0431\u0435\u0437 \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A\u0443 +Name=\u041D\u0430\u0437\u0432\u0430 +Version=\u0412\u0435\u0440\u0441\u0456\u044F diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_uk.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_uk.properties index 6969a87f4c..aad39d9660 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_uk.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_uk.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -More\ Info=\u0411\u0456\u043B\u044C\u0448\u0435 \u0406\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u0457 +Dismiss=\u0421\u043A\u0430\u0441\u0443\u0432\u0430\u0442\u0438 +More\ Info=\u0414\u043E\u043A\u043B\u0430\u0434\u043D\u0456\u0448\u0435 blurb=\u0421\u0445\u043E\u0436\u0435, \u0449\u043E \u0432\u0430\u0448\u0456 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u043E\u0431\u0435\u0440\u043D\u0435\u043D\u043E\u0433\u043E \u043F\u0440\u043E\u043A\u0441\u0456 \u043F\u043E\u043B\u0430\u043C\u0430\u043D\u043E. diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_uk.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_uk.properties new file mode 100644 index 0000000000..1ac6072bce --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_uk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +blurb=\u0421\u043F\u0440\u0438\u0439\u043C\u0430\u0442\u0438 \u0442\u0435\u043A\u0441\u0442 \u044F\u043A HTML \u0456 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u0439\u043E\u0433\u043E "\u044F\u043A \u0454" \u0431\u0435\u0437 \u0436\u043E\u0434\u043D\u043E\u0433\u043E \u043F\u0435\u0440\u0435\u043A\u043B\u0430\u0434\u0443 +disableSyntaxHighlighting=\u0412\u0438\u043C\u043A\u043D\u0443\u0442\u0438 \u043F\u0456\u0434\u0441\u0432\u0456\u0442\u043A\u0443 \u0441\u0438\u043D\u0442\u0430\u043A\u0441\u0438\u0441\u0443 diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_uk.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_uk.properties new file mode 100644 index 0000000000..d53fd7d9c5 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_uk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Project=\u041F\u0440\u043E\u0435\u043A\u0442 +Project\ name=\u041D\u0430\u0437\u0432\u0430 \u043F\u0440\u043E\u0435\u043A\u0442\u0443 diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_uk.properties b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_uk.properties new file mode 100644 index 0000000000..e6237b8360 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +body=\u041F\u0456\u0434\u0445\u043E\u0434\u0438\u0442\u044C \u0434\u043B\u044F \u043F\u0440\u043E\u0435\u043A\u0442\u0456\u0432, \u044F\u043A\u0456 \u043F\u043E\u0442\u0440\u0435\u0431\u0443\u044E\u0442\u044C \u0432\u0435\u043B\u0438\u043A\u0443 \u043A\u0456\u043B\u044C\u043A\u0456\u0441\u0442\u044C \u0440\u0456\u0437\u043D\u043E\u043C\u0430\u043D\u0456\u0442\u043D\u0438\u0445 \u043A\u043E\u043D\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u0439, \u0442\u0430\u043A\u0438\u0445 \u044F\u043A \u0442\u0435\u0441\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u0443 \u0440\u0456\u0437\u043D\u0438\u0445 \u0441\u0435\u0440\u0435\u0434\u043E\u0432\u0438\u0449\u0430\u0445, \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u043E\u0437\u0430\u043B\u0435\u0436\u043D\u0456 \u0437\u0431\u0456\u0440\u043A\u0438 \u0442\u0430 \u0456\u043D. diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_uk.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_uk.properties index 1ce42070d4..328afe908e 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_uk.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_uk.properties @@ -20,9 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=\u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0430 -Build\ Artifacts=\u0410\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0438 \u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0438 +Build=\u0417\u0431\u0456\u0440\u043A\u0430 +Build\ Artifacts=\u0411\u0456\u043B\u0434 \u0410\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0438 +Changes\ in\ dependency=\u0417\u043C\u0456\u043D\u0438 \u0432 \u0437\u0430\u043B\u0435\u0436\u043D\u043E\u0441\u0442\u0456 Not\ yet\ determined=\u0429\u0435 \u043D\u0435 \u0432\u0438\u0437\u043D\u0430\u0447\u0435\u043D\u043E -Took=\u0417\u0430\u0439\u043D\u044F\u043B\u043E +Took=\u0422\u0440\u0438\u0432\u0430\u043B\u043E +beingExecuted=\u041B\u0438\u0448\u0438\u043B\u043E\u0441\u044F \u043F\u0440\u0438\u0431\u043B\u0438\u0437\u043D\u043E {0} +detail=\u0434\u0435\u0442\u0430\u043B\u0456 on=\u043D\u0430 startedAgo=\u0420\u043E\u0437\u043F\u043E\u0447\u0430\u0442\u043E {0} \u0442\u043E\u043C\u0443 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_uk.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_uk.properties index 51ca607be9..c0d50fd1f3 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_uk.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_uk.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=\u041D\u0430\u0441\u0442\u0443\u043F\u043D\u0430 \u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0430 -Previous\ Build=\u041F\u043E\u043F\u0435\u0440\u0435\u0434\u043D\u044F \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0430 +Next\ Build=\u041D\u0430\u0441\u0442\u0443\u043F\u043D\u0430 \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0430 +Previous\ Build=\u041F\u043E\u043F\u0435\u0440\u0435\u0434\u043D\u044F \u0437\u0431\u0456\u0440\u043A\u0430 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_uk.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_uk.properties index ad14908d11..b58067cd84 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_uk.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_uk.properties @@ -22,8 +22,9 @@ Back\ to\ Project=\u041D\u0430\u0437\u0430\u0434 \u0434\u043E \u043F\u0440\u043E\u0435\u043A\u0442\u0443 Changes=\u0417\u043C\u0456\u043D\u0438 -Console\ Output=\u0412\u0438\u0432\u0456\u0434 \u043D\u0430 \u043A\u043E\u043D\u0441\u043E\u043B\u044C +Console\ Output=\u041A\u043E\u043D\u0441\u043E\u043B\u044C\u043D\u0438\u0439 \u0432\u0438\u0432\u0456\u0434 +View\ Build\ Information=\u041F\u0435\u0440\u0435\u0433\u043B\u044F\u043D\u0443\u0442\u0438 \u0456\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u044E \u0437\u0431\u0456\u0440\u043A\u0438 View\ as\ plain\ text=\u041F\u0435\u0440\u0435\u0433\u043B\u044F\u043D\u0443\u0442\u0438 \u044F\u043A \u043F\u0440\u043E\u0441\u0442\u0438\u0439 \u0442\u0435\u043A\u0441\u0442 -Edit\ Build\ Information=\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0456\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u044E \u0437\u0431\u0456\u0440\u043A\u0438 -Status=\u0421\u0442\u0430\u0442\u0443\u0441 +Edit\ Build\ Information=\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043E\u043F\u0438\u0441 +Status=\u0421\u0442\u0430\u043D raw=\u043D\u0435\u0444\u043E\u0440\u043C\u0430\u0442\u043E\u0432\u0430\u043D\u0438\u0439 diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_uk.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_uk.properties new file mode 100644 index 0000000000..77ec75876d --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_uk.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Advanced\ Project\ Options=\u0414\u043E\u0434\u0430\u0442\u043A\u043E\u0432\u0456 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u043F\u0440\u043E\u0435\u043A\u0442\u0443 +Advanced\ Project\ Options\ configure-common=\u0420\u043E\u0437\u0448\u0438\u0440\u0435\u043D\u0456 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0438 \u043F\u0440\u043E\u0435\u043A\u0442\u0443 +Display\ Name=\u0412\u0456\u0434\u043E\u0431\u0440\u0430\u0436\u0443\u0432\u0430\u043D\u0430 \u043D\u0430\u0437\u0432\u0430 +title.concurrentbuilds=\u0411\u0443\u0434\u0443\u0432\u0430\u0442\u0438 \u043F\u0430\u0440\u0430\u043B\u0435\u043B\u044C\u043D\u043E \u043A\u043E\u043B\u0438 \u043F\u043E\u0442\u0440\u0456\u0431\u043D\u043E diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_uk.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_uk.properties new file mode 100644 index 0000000000..7a22d04db8 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Changes=\u0417\u043C\u0456\u043D\u0438 diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_uk.properties b/core/src/main/resources/hudson/model/AbstractProject/main_uk.properties new file mode 100644 index 0000000000..40529635df --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_uk.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Last\ Successful\ Artifacts=\u041E\u0441\u0442\u0430\u043D\u043D\u0456 \u0443\u0441\u043F\u0456\u0448\u043D\u0456 \u0437\u0431\u0456\u0440\u043A\u0438 +Latest\ Test\ Result=\u0420\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u0438 \u043E\u0441\u0442\u0430\u043D\u043D\u0456\u0445 \u0442\u0435\u0441\u0442\u0456\u0432 +Recent\ Changes=\u041E\u0441\u0442\u0430\u043D\u043D\u0456 \u0437\u043C\u0456\u043D\u0438 +Workspace=\u0420\u043E\u0431\u043E\u0447\u0438\u0439 \u043A\u0430\u0442\u0430\u043B\u043E\u0433 diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_uk.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_uk.properties new file mode 100644 index 0000000000..acec5b9f2d --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Disable\ Project=\u0412\u0438\u043C\u043A\u043D\u0443\u0442\u0438 \u043F\u0440\u043E\u0435\u043A\u0442 diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_uk.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_uk.properties index e5dd54bdf9..304a9dc4c3 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_uk.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_uk.properties @@ -20,11 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u041F\u043E\u0432\u0435\u0440\u043D\u0443\u0442\u0438\u0441\u044C \u0434\u043E \u041F\u0430\u043D\u0435\u043B\u0456 \u0423\u043F\u0440\u0430\u0432\u043B\u0456\u043D\u043D\u044F -Build\ scheduled=\u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0443 \u0437\u0430\u043F\u043B\u0430\u043D\u043E\u0432\u0430\u043D\u043E +Back\ to\ Dashboard=\u041D\u0430\u0437\u0430\u0434 \u0434\u043E \u041F\u0430\u043D\u0435\u043B\u0456 +Build\ scheduled=\u0417\u0430\u043F\u043B\u0430\u043D\u043E\u0432\u0430\u043D\u0456 \u0437\u0431\u0456\u0440\u043A\u0438 Changes=\u0417\u043C\u0456\u043D\u0438 -Configure=\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 +Configure=\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F Status=\u0421\u0442\u0430\u0442\u0443\u0441 -Wipe\ Out\ Workspace=\u041E\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u0420\u043E\u0431\u043E\u0447\u0456 \u0424\u0430\u0439\u043B\u0438 -Workspace=\u0420\u043E\u0431\u043E\u0447\u0456 \u0444\u0430\u0439\u043B\u0438 +Wipe\ Out\ Workspace=\u041E\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u0440\u043E\u0431\u043E\u0447\u0438\u0439 \u043F\u0440\u043E\u0441\u0442\u0456\u0440 +Workspace=\u0420\u043E\u0431\u043E\u0447\u0438\u0439 \u041F\u0440\u043E\u0441\u0442\u0456\u0440 delete=\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438 {0} +delete.confirm=\u0412\u0438 \u0432\u043F\u0435\u0432\u043D\u0435\u043D\u0456, \u0449\u043E \u0445\u043E\u0447\u0435\u0442\u0435 \u0432\u0438\u0434\u0430\u043B\u0438\u0442\u0438 {0} \u2018{1}\u2019? +wipe.out.confirm=\u0412\u0438 \u0432\u043F\u0435\u0432\u043D\u0435\u043D\u0456, \u0449\u043E \u0445\u043E\u0447\u0435\u0442\u0435 \u0432\u0438\u0434\u0430\u043B\u0438\u0442\u0438 \u0440\u043E\u0431\u043E\u0447\u0456 \u0444\u0430\u0439\u043B\u0438? diff --git a/core/src/main/resources/hudson/model/AllView/noJob_uk.properties b/core/src/main/resources/hudson/model/AllView/noJob_uk.properties index fb08d9feb0..28305a8afe 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_uk.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_uk.properties @@ -21,4 +21,5 @@ # THE SOFTWARE. Welcome\ to\ Jenkins!=\u041B\u0430\u0441\u043A\u0430\u0432\u043E \u043F\u0440\u043E\u0441\u0438\u043C\u043E \u0443 \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441! +login=\u0423\u0432\u0456\u0439\u0434\u0456\u0442\u044C \u0434\u043B\u044F \u0441\u0442\u0432\u043E\u0440\u0435\u043D\u043D\u044F \u043D\u043E\u0432\u043E\u0433\u043E \u0437\u0430\u0432\u0434\u0430\u043D\u043D\u044F. newJob=\u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u0441\u0442\u0432\u043E\u0440\u0456\u0442\u044C \u043D\u043E\u0432\u0435 \u0437\u0430\u0432\u0434\u0430\u043D\u043D\u044F \u0449\u043E\u0431 \u0440\u043E\u0437\u043F\u043E\u0447\u0430\u0442\u0438 \u0440\u043E\u0431\u043E\u0442\u0443. diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_uk.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_uk.properties index 8be3e56903..1120b2bf3c 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_uk.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_uk.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +started_by_anonymous=\u0437\u0430\u043F\u0443\u0449\u0435\u043D\u043E \u0430\u043D\u043E\u043D\u0456\u043C\u043D\u0438\u043C \u044E\u0437\u0435\u0440\u043E\u043C started_by_user=\u0417\u0430\u043F\u0443\u0449\u0435\u043D\u043E \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0435\u043C {1} diff --git a/core/src/main/resources/hudson/model/CauseAction/summary_uk.properties b/core/src/main/resources/hudson/model/CauseAction/summary_uk.properties new file mode 100644 index 0000000000..efffeed500 --- /dev/null +++ b/core/src/main/resources/hudson/model/CauseAction/summary_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Ntimes={0} \u0440\u0430\u0437\u0456\u0432 diff --git a/core/src/main/resources/hudson/model/Computer/index_uk.properties b/core/src/main/resources/hudson/model/Computer/index_uk.properties new file mode 100644 index 0000000000..891eb7f77f --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/index_uk.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +None=\u041D\u0456\u0447\u043E\u0433\u043E +submit.not.temporarilyOffline=\u0422\u0438\u043C\u0447\u0430\u0441\u043E\u0432\u043E \u0432\u0438\u043C\u043A\u043D\u0443\u0442\u0438 \u0446\u0435\u0439 \u0432\u0443\u0437\u043E\u043B +title.projects_tied_on=\u041F\u0440\u043E\u0435\u043A\u0442\u0438, \u0449\u043E \u043D\u0430\u043B\u0435\u0436\u0430\u0442\u044C \u0434\u043E {0} diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_uk.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_uk.properties new file mode 100644 index 0000000000..c103c89144 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_uk.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Back\ to\ List=\u041F\u043E\u0432\u0435\u0440\u043D\u0443\u0442\u0438\u0441\u044C \u0434\u043E \u0441\u043F\u0438\u0441\u043A\u0443 +Build\ History=\u0406\u0441\u0442\u043E\u0440\u0456\u044F \u043F\u043E\u0431\u0443\u0434\u043E\u0432 +Configure=\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F +Delete\ Slave=\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438 Slave +Load\ Statistics=\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0443 +Script\ Console=\u0421\u043A\u0440\u0438\u043F\u0442\u043E\u0432\u0430 \u043A\u043E\u043D\u0441\u043E\u043B\u044C +Status=\u0421\u0442\u0430\u0442\u0443\u0441 diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_uk.properties b/core/src/main/resources/hudson/model/ComputerSet/index_uk.properties new file mode 100644 index 0000000000..7c8d2d396e --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/index_uk.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Configure=\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 +Name=\u0406\u043C\u2019\u044F +Refresh\ status=\u041E\u043D\u043E\u0432\u0438\u0442\u0438 \u0441\u0442\u0430\u0442\u0443\u0441 diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_uk.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_uk.properties new file mode 100644 index 0000000000..3c235ced8f --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_uk.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=\u041F\u043E\u0432\u0435\u0440\u043D\u0443\u0442\u0438\u0441\u044C \u0434\u043E \u041F\u0430\u043D\u0435\u043B\u0456 \u0423\u043F\u0440\u0430\u0432\u043B\u0456\u043D\u043D\u044F +Configure=\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 +Manage\ Jenkins=\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 Jenkins +New\ Node=\u0414\u043E\u0434\u0430\u0442\u0438 \u0432\u0443\u0437\u043E\u043B diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_uk.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_uk.properties new file mode 100644 index 0000000000..258c642526 --- /dev/null +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_uk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +No\ files\ in\ directory=\u0414\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0456\u044F \u043F\u043E\u0440\u043E\u0436\u043D\u044F +all\ files\ in\ zip=\u0432\u0441\u0456 \u0444\u0430\u0439\u043B\u0438 \u0432 zip diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_uk.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_uk.properties new file mode 100644 index 0000000000..96cf935804 --- /dev/null +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +body=\u0426\u0435 - \u043E\u0441\u043D\u043E\u0432\u043D\u0430 \u0432\u0456\u0434\u043C\u0456\u043D\u043D\u0456\u0441\u0442\u044C Jenkins. Jenkins \u043F\u043E\u0431\u0443\u0434\u0443\u0454 \u0432\u0430\u0448 \u043F\u0440\u043E\u0435\u043A\u0442, \u043A\u043E\u043C\u0431\u0456\u043D\u0443\u044E\u0447\u0438 \u0431\u0443\u0434\u044C-\u044F\u043A\u0456 \u0441\u0438\u0441\u0442\u0435\u043C\u0438 \u0443\u043F\u0440\u0430\u0432\u043B\u0456\u043D\u043D\u044F \u043A\u043E\u0434\u043E\u043C \u0437 \u0431\u0443\u0434\u044C-\u044F\u043A\u0438\u043C\u0438 \u0441\u0438\u0441\u0442\u0435\u043C\u0430\u043C\u0438 \u0437\u0431\u0456\u0440\u043A\u0438, \u0449\u043E \u043C\u043E\u0436\u0435 \u0431\u0443\u0442\u0438 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043E \u043D\u0430\u0432\u0456\u0442\u044C \u0434\u043B\u044F \u0446\u0456\u043B\u0435\u0439 \u0432\u0456\u0434\u043C\u0456\u043D\u043D\u0438\u0445 \u0432\u0456\u0434 \u0437\u0431\u0456\u0440\u043A\u0438 \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u043D\u043E\u0433\u043E \u0437\u0430\u0431\u0435\u0437\u043F\u0435\u0447\u0435\u043D\u043D\u044F. diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_uk.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_uk.properties new file mode 100644 index 0000000000..89d951ea75 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_uk.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Build=\u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0430 +Build\ Time\ Trend=\u0422\u0440\u0435\u043D\u0434 \u0447\u0430\u0441\u0443 \u0431\u0443\u0434\u0443\u0432\u0430\u043D\u043D\u044F +Duration=\u0422\u0440\u0438\u0432\u0430\u043B\u0456\u0441\u0442\u044C +Slave=\u0412\u0438\u043A\u043E\u043D\u0430\u0432\u0435\u0446\u044C +Timeline=\u0427\u0430\u0441 diff --git a/core/src/main/resources/hudson/model/Job/configure_uk.properties b/core/src/main/resources/hudson/model/Job/configure_uk.properties new file mode 100644 index 0000000000..afbf1a51cc --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/configure_uk.properties @@ -0,0 +1,8 @@ +# This file is under the MIT License by authors + +Description=\u041E\u043F\u0438\u0441 +Discard\ Old\ Builds=\u0421\u043A\u0430\u0441\u0443\u0432\u0430\u0442\u0438 \u0441\u0442\u0430\u0440\u0456 \u0431\u0456\u043B\u0434\u0438 +LOADING=\u0417\u0410\u0412\u0410\u041D\u0422\u0410\u0416\u0423\u0404\u0422\u042C\u0421\u042F +Save=\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438 +Strategy=\u0421\u0442\u0440\u0430\u0442\u0435\u0433\u0456\u044F +name={0} \u0456\u043C''\u044F diff --git a/core/src/main/resources/hudson/model/Job/index_uk.properties b/core/src/main/resources/hudson/model/Job/index_uk.properties new file mode 100644 index 0000000000..06bae5739a --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_uk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Disable\ Project=\u0412\u0438\u043C\u043A\u043D\u0443\u0442\u0438 \u041F\u0440\u043E\u0435\u043A\u0442 +Project\ name=\u041D\u0430\u0437\u0432\u0430 \u043F\u0440\u043E\u0435\u043A\u0442\u0443 diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_uk.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_uk.properties new file mode 100644 index 0000000000..e614932253 --- /dev/null +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_uk.properties @@ -0,0 +1,12 @@ +# This file is under the MIT License by authors + +Add\ column=\u0414\u043E\u0434\u0430\u0442\u0438 \u043A\u043E\u043B\u043E\u043D\u043A\u0443 +All\ selected\ jobs=\u0412\u0441\u0456 \u0432\u0438\u0431\u0440\u0430\u043D\u0456 +Columns=\u041A\u043E\u043B\u043E\u043D\u043A\u0438 +Disabled\ jobs\ only=\u041B\u0438\u0448\u0435 \u0432\u0438\u043C\u043A\u043D\u0435\u043D\u0456 \u0437\u0430\u0432\u0434\u0430\u043D\u043D\u044F +Enabled\ jobs\ only=\u041B\u0438\u0448\u0435 \u0443\u0432\u0456\u043C\u043A\u043D\u0435\u043D\u043D\u0456 \u0437\u0430\u0432\u0434\u0430\u043D\u043D\u044F +Job\ Filters=\u0424\u0456\u043B\u044C\u0442\u0440\u0438 \u0437\u0430\u0432\u0434\u0430\u043D\u044C +Jobs=\u0417\u0430\u0432\u0434\u0430\u043D\u043D\u044F +Regular\ expression=\u0420\u0435\u0433\u0443\u043B\u044F\u0440\u043D\u0438\u0439 \u0432\u0438\u0440\u0430\u0437 +Status\ Filter=\u0424\u0456\u043B\u044C\u0442\u0440 \u0441\u0442\u0430\u043D\u0443 +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=\u0412\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u0440\u0435\u0433\u0443\u043B\u044F\u0440\u043D\u0456 \u0432\u0438\u0440\u0430\u0437\u0438 \u0434\u043B\u044F \u0432\u0456\u0434\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F \u0437\u0430\u0432\u0434\u0430\u043D\u044C \u043D\u0430 \u0441\u0442\u043E\u0440\u0456\u043D\u0446\u0456 diff --git a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_uk.properties b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_uk.properties new file mode 100644 index 0000000000..a2d626f4ff --- /dev/null +++ b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_uk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=\u041F\u043E\u0432\u0435\u0440\u043D\u0443\u0442\u0438\u0441\u044F \u043D\u0430\u0437\u0430\u0434 +No\ matching\ record\ found=\u041D\u0456\u0447\u043E\u0433\u043E \u043D\u0435 \u0437\u043D\u0430\u0439\u0434\u0435\u043D\u043E diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_uk.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_uk.properties new file mode 100644 index 0000000000..a0875e36a5 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_uk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Add\ Parameter=\u0414\u043E\u0434\u0430\u0442\u0438 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440 +This\ build\ is\ parameterized=\u0426\u044F \u0431\u0443\u0434\u043E\u0432\u0430 \u043C\u0430\u0454 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0438 diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_uk.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_uk.properties new file mode 100644 index 0000000000..16194ae071 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +LOADING=\u0417\u0410\u0412\u0410\u041D\u0422\u0410\u0416\u0415\u041D\u041D\u042F diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_uk.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_uk.properties new file mode 100644 index 0000000000..d9179be572 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Keep\ this\ build\ forever=\u0417\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u0446\u0435\u0439 \u0431\u0456\u043B\u0434 \u0437\u0430\u0432\u0436\u0434\u0438 diff --git a/core/src/main/resources/hudson/model/Run/configure_uk.properties b/core/src/main/resources/hudson/model/Run/configure_uk.properties new file mode 100644 index 0000000000..0de1a9dc01 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_uk.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Description=\u041E\u043F\u0438\u0441 +DisplayName=\u041D\u0430\u0437\u0432\u0430 +LOADING=\u0417\u0410\u0412\u0410\u041D\u0422\u0410\u0416\u0415\u041D\u041D\u042F +Save=\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438 diff --git a/core/src/main/resources/hudson/model/Run/console_uk.properties b/core/src/main/resources/hudson/model/Run/console_uk.properties index 1ef6ca85c1..706426ea28 100644 --- a/core/src/main/resources/hudson/model/Run/console_uk.properties +++ b/core/src/main/resources/hudson/model/Run/console_uk.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u0412\u0438\u0432\u0456\u0434 \u043D\u0430 \u043A\u043E\u043D\u0441\u043E\u043B\u044C +Console\ Output=\u041A\u043E\u043D\u0441\u043E\u043B\u044C\u043D\u0438\u0439 \u0412\u0438\u0432\u0456\u0434 +skipSome=\u041F\u0440\u043E\u043F\u0443\u0441\u043A\u0430\u0454\u043C\u043E {0,number,integer} \u041A\u0411.. \u041F\u043E\u0432\u043D\u0438\u0439 \u043B\u043E\u0433 diff --git a/core/src/main/resources/hudson/model/Run/delete_uk.properties b/core/src/main/resources/hudson/model/Run/delete_uk.properties index c69c3681f2..614e191cc9 100644 --- a/core/src/main/resources/hudson/model/Run/delete_uk.properties +++ b/core/src/main/resources/hudson/model/Run/delete_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438 \u0446\u044E \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0443 +Delete\ this\ build=\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438 \u0437\u0431\u0456\u0440\u043A\u0443 diff --git a/core/src/main/resources/hudson/model/Run/logKeep_uk.properties b/core/src/main/resources/hudson/model/Run/logKeep_uk.properties new file mode 100644 index 0000000000..a2a871908b --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/logKeep_uk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Don''t\ keep\ this\ build\ forever=\u041D\u0435 \u0437\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u0446\u044E \u0437\u0431\u0456\u0440\u043A\u0443 +Keep\ this\ build\ forever=\u0422\u0440\u0438\u043C\u0430\u0442\u0438 \u0446\u044E \u0437\u0431\u0456\u0440\u043A\u0443 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_uk.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_uk.properties index f28a8c675c..3379d20367 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_uk.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_uk.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. NewVersionAvailable=\u041D\u043E\u0432\u0430 \u0432\u0435\u0440\u0441\u0456\u044F \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441 ({0}) \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430 \u0434\u043B\u044F \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F (\u0437\u043C\u0456\u043D\u0438). +Or\ Upgrade\ Automatically=\u0410\u0431\u043E \u043E\u043D\u043E\u0432\u0456\u0442\u044C \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_uk.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_uk.properties new file mode 100644 index 0000000000..d8b7921447 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Success=\u0423\u0441\u043F\u0456\u0448\u043D\u043E diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_uk.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_uk.properties new file mode 100644 index 0000000000..69bf72768a --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Pending=\u041E\u0447\u0456\u043A\u0443\u0432\u0430\u043D\u043D\u044F diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_uk.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_uk.properties new file mode 100644 index 0000000000..d4199aaf96 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Restarting\ Jenkins=\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_uk.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_uk.properties new file mode 100644 index 0000000000..e647846639 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Go\ back\ to\ the\ top\ page=\u041F\u043E\u0432\u0435\u0440\u043D\u0443\u0442\u0438\u0441\u044C \u0434\u043E \u043F\u043E\u0447\u0430\u0442\u043A\u0443 \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0438 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_uk.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_uk.properties new file mode 100644 index 0000000000..531512158d --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Installing\ Plugins/Upgrades=\u0412\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u043C\u043E\u0434\u0443\u043B\u0456\u0432/\u043E\u043D\u043E\u0432\u043B\u0435\u043D\u044C diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_uk.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_uk.properties new file mode 100644 index 0000000000..b23d57c85a --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_uk.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Back\ to\ Dashboard=\u041F\u043E\u0432\u0435\u0440\u043D\u0443\u0442\u0438\u0441\u044C \u0434\u043E \u043F\u0430\u043D\u0435\u043B\u0456 \u0437\u0430\u0432\u0434\u0430\u043D\u044C +Manage\ Jenkins=\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 Jenkins +Manage\ Plugins=\u041A\u0435\u0440\u0443\u0432\u0430\u0442\u0438 \u0414\u043E\u0434\u0430\u0442\u043A\u0430\u043C\u0438 diff --git a/core/src/main/resources/hudson/model/User/configure_uk.properties b/core/src/main/resources/hudson/model/User/configure_uk.properties new file mode 100644 index 0000000000..a4bfcabc7d --- /dev/null +++ b/core/src/main/resources/hudson/model/User/configure_uk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Description=\u041E\u043F\u0438\u0441 +Your\ name=\u0412\u0430\u0448\u0435 \u0456\u043C''\u044F diff --git a/core/src/main/resources/hudson/model/User/sidepanel_uk.properties b/core/src/main/resources/hudson/model/User/sidepanel_uk.properties index 904999edea..cf3b0038ae 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_uk.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_uk.properties @@ -22,6 +22,6 @@ Builds=\u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0438 Configure=\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 -My\ Views=\u041C\u043E\u0457 \u0412\u0438\u0434\u0438 +My\ Views=\u041C\u043E\u0457 \u0432\u0438\u0434\u0438 People=\u041B\u044E\u0434\u0438 Status=\u0421\u0442\u0430\u0442\u0443\u0441 diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_uk.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_uk.properties new file mode 100644 index 0000000000..b8cbbc04e8 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_uk.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Last\ Active=\u0427\u0430\u0441 \u043E\u0441\u0442\u0430\u043D\u043D\u044C\u043E\u0457 \u0430\u043A\u0442\u0438\u0432\u043D\u043E\u0441\u0442\u0456 +Name=\u0406\u043C\u2019\u044F +On=\u041F\u0440\u043E\u0435\u043A\u0442 +People=\u041B\u044E\u0434\u0438 +User\ Id=\u041B\u043E\u0433\u0456\u043D diff --git a/core/src/main/resources/hudson/model/View/People/index_uk.properties b/core/src/main/resources/hudson/model/View/People/index_uk.properties new file mode 100644 index 0000000000..213c51c13d --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_uk.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +All\ People=\u0412\u0441\u0456 \u043B\u044E\u0434\u0438 +Last\ Active=\u041E\u0441\u0442\u0430\u043D\u043D\u044F \u0430\u043A\u0442\u0438\u0432\u043D\u0456\u0441\u0442\u044C +Name=\u0406\u043C''''\u044F +On=\u0427\u0430\u0441 +People=\u041B\u044E\u0434\u0438 diff --git a/core/src/main/resources/hudson/model/View/builds_uk.properties b/core/src/main/resources/hudson/model/View/builds_uk.properties new file mode 100644 index 0000000000..57f997a092 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/builds_uk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Export\ as\ plain\ XML=\u0415\u043A\u0441\u043F\u043E\u0440\u0442\u0443\u0432\u0430\u0442\u0438 \u044F\u043A \u043F\u0440\u043E\u0441\u0442\u0438\u0439 XML +buildHistory=\u0406\u0442\u043E\u0440\u0456\u044F \u043F\u043E\u0431\u0443\u0434\u043E\u0432 {0} diff --git a/core/src/main/resources/hudson/model/View/configure_uk.properties b/core/src/main/resources/hudson/model/View/configure_uk.properties new file mode 100644 index 0000000000..0f49ea15a1 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/configure_uk.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Description=\u041E\u043F\u0438\u0441 +Filter\ build\ executors=\u0424\u0456\u043B\u044C\u0442\u0440\u0443\u0432\u0430\u0442\u0438 \u0432\u0438\u043A\u043E\u043D\u0443\u044E\u0447\u0456 \u0432\u0443\u0437\u043B\u0438 \u0437\u0431\u0456\u0440\u043E\u043A +Filter\ build\ queue=\u0424\u0456\u043B\u044C\u0442\u0440\u0443\u0432\u0430\u0442\u0438 \u0447\u0435\u0440\u0433\u0443 \u0437\u0431\u0456\u0440\u043E\u043A +Name=\u0406\u043C`\u044F diff --git a/core/src/main/resources/hudson/model/View/newJob_uk.properties b/core/src/main/resources/hudson/model/View/newJob_uk.properties new file mode 100644 index 0000000000..9737f07fa0 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/newJob_uk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +CopyExisting=\u0421\u043A\u043E\u043F\u0456\u044E\u0432\u0430\u0442\u0438 \u0456\u0441\u043D\u0443\u044E\u0447\u0438\u0439 {0} +JobName={0} \u043D\u0430\u0437\u0432\u0430 diff --git a/core/src/main/resources/hudson/model/View/sidepanel_uk.properties b/core/src/main/resources/hudson/model/View/sidepanel_uk.properties index f2f4d3f8ff..d6f4d50f69 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_uk.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_uk.properties @@ -20,9 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=\u0406\u0441\u0442\u043E\u0440\u0456\u044F \u041F\u043E\u0431\u0443\u0434\u043E\u0432 -Check\ File\ Fingerprint=\u041F\u0435\u0440\u0435\u0432\u0456\u0440\u0438\u0442\u0438 \u0432\u0456\u0434\u0431\u0438\u0442\u043E\u043A \u0444\u0430\u0439\u043B\u0443 -Edit\ View=\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0412\u0438\u0434 -NewJob=\u043D\u043E\u0432\u0438\u0439 {0} -People=\u043B\u044E\u0434\u0438 -Project\ Relationship=\u0417\u0432\u2019\u044F\u0437\u043A\u0438 \u041F\u0440\u043E\u0435\u043A\u0442\u0430 +Build\ History=\u0406\u0441\u0442\u043E\u0440\u0456\u044F \u043F\u043E\u0431\u0443\u0434\u043E\u0432 +Check\ File\ Fingerprint=\u041F\u0435\u0440\u0435\u0432\u0456\u0440\u0438\u0442\u0438 \u0412\u0456\u0434\u0431\u0438\u0442\u043E\u043A \u0424\u0430\u0439\u043B\u0443 +Delete\ View=\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438 \u0432\u0438\u0434 +Edit\ View=\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0432\u0438\u0434 +NewJob=\u041D\u043E\u0432\u0438\u0439 {0} +People=\u041B\u044E\u0434\u0438 +Project\ Relationship=\u0417\u0432\u2019\u044F\u0437\u043A\u0438 \u043F\u0440\u043E\u0435\u043A\u0442\u0443 diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_uk.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_uk.properties new file mode 100644 index 0000000000..03ad8ef66e --- /dev/null +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +No\ changes\ in\ any\ of\ the\ builds.=\u0411\u0456\u043B\u0434\u0438 \u0431\u0435\u0437 \u0437\u043C\u0456\u043D. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_uk.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_uk.properties new file mode 100644 index 0000000000..b8d2878631 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Allow\ users\ to\ sign\ up=\u0414\u043E\u0437\u0432\u043E\u043B\u0438\u0442\u0438 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430\u043C \u0440\u0435\u0454\u0441\u0442\u0440\u0443\u0432\u0430\u0442\u0438\u0441\u044F diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_uk.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_uk.properties index 6ccb0ecaa4..7374b2c6ed 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_uk.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_uk.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Name=\u0406\u043C''\u044F Users=\u041A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_uk.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_uk.properties new file mode 100644 index 0000000000..6c2cb850cd --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +sign\ up=\u041F\u0440\u0438\u0454\u0434\u043D\u0430\u0442\u0438\u0441\u044C diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_uk.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_uk.properties new file mode 100644 index 0000000000..7f729e29f4 --- /dev/null +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Unprotected\ URLs=\u041D\u0435\u0437\u0430\u0445\u0438\u0449\u0435\u043D\u0456 URLs diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_uk.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_uk.properties new file mode 100644 index 0000000000..dda8b9d6c8 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +login=\u0423\u0432\u0456\u0439\u0442\u0438 diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_uk.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_uk.properties new file mode 100644 index 0000000000..d663386526 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_uk.properties @@ -0,0 +1,10 @@ +# This file is under the MIT License by authors + +Days\ to\ keep\ artifacts=\u0421\u043A\u0456\u043B\u044C\u043A\u0438 \u0434\u043D\u0456\u0432 \u0437\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u0430\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0438 +Days\ to\ keep\ builds=\u0421\u043A\u0456\u043B\u044C\u043A\u0438 \u0434\u043D\u0456\u0432 \u0437\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u0431\u0456\u043B\u0434\u0438 +Max\ #\ of\ builds\ to\ keep=\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u0430 \u043A\u0456\u043B\u044C\u043A\u0456\u0441\u0442\u044C \u0431\u0456\u043B\u0434\u0456\u0432 \u0434\u043B\u044F \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043D\u043D\u044F +Max\ #\ of\ builds\ to\ keep\ with\ artifacts=\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u0430 \u043A\u0456\u043B\u044C\u043A\u0456\u0441\u0442\u044C \u043F\u043E\u0431\u0443\u0434\u043E\u0432 \u0437 \u0430\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0430\u043C\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=\u044F\u043A\u0449\u043E \u0437\u0430\u043F\u043E\u0432\u043D\u0435\u043D\u0435, \u0430\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0438 \u0431\u0443\u0434\u0443\u0442\u044C \u0432\u0438\u0434\u0430\u043B\u0435\u043D\u0456 \u0447\u0435\u0440 N \u0434\u043D\u0456\u0432, \u0430\u043B\u0435 \u0436\u0443\u0440\u043D\u0430\u043B, \u0456\u0441\u0442\u043E\u0440\u0456\u044F, \u0437\u0432\u0456\u0442\u0438, \u0442\u0430 \u0456\u043D\u0448\u0435 \u0431\u0443\u0434\u0443\u0442\u044C \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043D\u0456 +if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=\u044F\u043A\u0449\u043E \u043D\u0435 \u043F\u043E\u0440\u043E\u0436\u043D\u0456, \u0437\u0430\u043F\u0438\u0441\u0438 \u0431\u0456\u043B\u0434\u0456\u0432 \u0437\u0431\u0435\u0440\u0456\u0433\u0430\u044E\u0442\u044C\u0441\u044F \u043B\u0438\u0448\u0435 \u0441\u0442\u0456\u043B\u044C\u043A\u0438 \u0434\u043D\u0456\u0432 +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=\u044F\u043A\u0449\u043E \u043D\u0435 \u043F\u043E\u0440\u043E\u0436\u043D\u0456, \u0437\u0430\u043F\u0438\u0441\u0456\u0432 \u0431\u0456\u043B\u0434\u0456\u0432 \u0437\u0431\u0435\u0440\u0456\u0433\u0430\u0454\u0442\u044C\u0441\u044F \u043B\u0438\u0448\u0435 \u0441\u0442\u0456\u043B\u044C\u043A\u0438 +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ builds\ have\ their\ artifacts\ retained=\u044F\u043A\u0449\u043E \u0437\u0430\u043F\u043E\u0432\u043D\u0435\u043D\u0435, \u0437\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u0430\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0438 \u0432 \u043E\u0441\u0442\u0430\u043D\u043D\u0456\u0445 N \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0430\u0445 diff --git a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_uk.properties b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_uk.properties new file mode 100644 index 0000000000..e2f35cac28 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_uk.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +failingFor=\u041F\u043E\u043C\u0438\u043B\u043A\u0438 \u0432 \u043E\u0441\u0442\u0430\u043D\u043D\u0456\u0445 {0} {0,choice,0#builds|1#build|1<\u0441\u0431\u043E\u0440\u043A\u0430\u0445} +since.before=\u043F\u043E\u0447\u0438\u043D\u0430\u044E\u0447\u0438 \u0437 '' '' +took=\u0417\u0430\u0439\u043D\u044F\u043B\u043E {0}. diff --git a/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_uk.properties b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_uk.properties new file mode 100644 index 0000000000..cc57832160 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Show\ all\ failed\ tests=\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u0438 \u0432\u0441\u0456 \u043D\u0435\u0432\u0434\u0430\u043B\u0456 \u0442\u0435\u0441\u0442\u0438 diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_uk.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_uk.properties new file mode 100644 index 0000000000..f29964e18d --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_uk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +History=\u0406\u0441\u0442\u043E\u0440\u0456\u044F +Previous\ Build=\u041F\u043E\u043F\u0435\u0440\u0435\u0434\u043D\u044F \u0437\u0431\u0456\u0440\u043A\u0430 diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_uk.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_uk.properties new file mode 100644 index 0000000000..12f3a0d5cf --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_uk.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Polling\ Log=\u0416\u0443\u0440\u043D\u0430\u043B \u043E\u043F\u0438\u0442\u0443\u0432\u0430\u043D\u043D\u044F +View\ as\ plain\ text=\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u0438 \u044F\u043A \u0437\u0432\u0438\u0447\u0430\u0439\u043D\u0438\u0439 \u0442\u0435\u043A\u0441\u0442 +blurb=\u0426\u044F \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0430 \u043F\u043E\u043A\u0430\u0437\u0443\u0454 \u043F\u0440\u0438\u0447\u0438\u043D\u0438 \u044F\u043A\u0456 \u0437\u0430\u043F\u0443\u0441\u0442\u0438\u043B\u0438 \u0446\u044E \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0443. diff --git a/core/src/main/resources/hudson/util/HudsonIsRestarting/index_uk.properties b/core/src/main/resources/hudson/util/HudsonIsRestarting/index_uk.properties new file mode 100644 index 0000000000..bc2c5bd1c5 --- /dev/null +++ b/core/src/main/resources/hudson/util/HudsonIsRestarting/index_uk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Please\ wait\ while\ Jenkins\ is\ restarting=\u0417\u0430\u0447\u0435\u043A\u0430\u0439\u0442\u0435, \u0431\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u043F\u043E\u043A\u0438 Jenkins \u043F\u0435\u0440\u0435\u0433\u0440\u0443\u0437\u0438\u0442\u044C\u0441\u044F +Your\ browser\ will\ reload\ automatically\ when\ Jenkins\ is\ ready.=\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u0431\u0443\u0434\u0435 \u043F\u0440\u0435\u0433\u0440\u0443\u0436\u0435\u043D\u043E \u043F\u0456\u0441\u043B\u044F \u0442\u043E\u0433\u043E \u044F\u043A Jenkins \u0431\u0443\u0434\u0435 \u0433\u043E\u0442\u043E\u0432\u0438\u0439 diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_uk.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_uk.properties index 1f68955492..2b563879c5 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_uk.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_uk.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Schedule\ a\ build=\u0417\u0430\u043F\u043B\u0430\u043D\u0443\u0432\u0430\u0442\u0438 \u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0443 +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 diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_uk.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_uk.properties new file mode 100644 index 0000000000..4a6ce29ea3 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +New\ View=\u041D\u043E\u0432\u0438\u0439 \u0412\u0438\u0433\u043B\u044F\u0434 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_uk.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_uk.properties index 0029d8f1b0..d1e71633cf 100644 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_uk.properties +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -New\ View=\u043D\u043E\u0432\u0438\u0439 \u0432\u0438\u0433\u043B\u044F\u0434 +New\ View=\u041D\u043E\u0432\u0438\u0439 \u0432\u0438\u0433\u043B\u044F\u0434 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_uk.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_uk.properties index 7a441fcf2c..311bda8d3a 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_uk.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=\u0442\u0440\u0438\u0432\u0430\u043B\u0456\u0441\u0442\u044C \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u043E\u0441\u0442\u0430\u043D\u043D\u044C\u043E\u0433\u043E \u0431\u0456\u043B\u0434\u0430 +Last\ Duration=\u0422\u0440\u0438\u0432\u0430\u043B\u0456\u0441\u0442\u044C \u043E\u0441\u0442\u0430\u043D\u043D\u044C\u043E\u0457 \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0438 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_uk.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_uk.properties new file mode 100644 index 0000000000..8a2491e155 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=\u041D/\u0414 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_uk.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_uk.properties index ddf4f53b9e..0fb325ddca 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_uk.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=\u041E\u0441\u0442\u0430\u043D\u043D\u044F \u043D\u0435\u0432\u0434\u0430\u0447\u0430 +Last\ Failure=\u0412\u043E\u0441\u0442\u0430\u043D\u043D\u0454 \u043D\u0435\u0432\u0434\u0430\u043B\u043E diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_uk.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_uk.properties index 6a561fdc34..ccabb0279d 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/column_uk.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_uk.properties @@ -20,4 +20,3 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=\u041D/\u0414 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_uk.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_uk.properties index 12cca5b0d6..c5dd5dee59 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_uk.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=\u041E\u0441\u0442\u0430\u043D\u043D\u0456\u0439 \u0443\u0441\u043F\u0456\u0445 +Last\ Success=\u0412\u043E\u0441\u0442\u0430\u043D\u043D\u0454 \u0443\u0441\u043F\u0456\u0448\u043D\u043E diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_uk.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_uk.properties index 9fe48774ec..ccabb0279d 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/column_uk.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_uk.properties @@ -20,4 +20,3 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=\u043D\u0435\u043C\u0430\u0454 \u0437\u0430\u0441\u0442\u043E\u0441\u0443\u043D\u043A\u0443 diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_uk.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_uk.properties index 229c64190b..5f790a1b04 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_uk.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=\u0421\u0442\u0430\u0442\u0443\u0441 \u043E\u0441\u0442\u0430\u043D\u043D\u044C\u043E\u0457 \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0438 +Status\ of\ the\ last\ build=\u0421\u0442\u0430\u0442\u0443\u0441 \u043E\u0441\u0442\u0430\u043D\u043D\u044C\u043E\u0433\u043E \u0431\u0456\u043B\u0434\u0430 diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_uk.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_uk.properties index 561ebf0c54..042e7f2ab5 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_uk.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_uk.properties @@ -20,4 +20,4 @@ # 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=\u041F\u043E\u0433\u043E\u0434\u043D\u0438\u0439 \u0437\u0432\u0456\u0442, \u0432\u0456\u0434\u043E\u0431\u0440\u0430\u0436\u0430\u044E\u0447\u0438\u0439 \u0437\u0430\u0433\u0430\u043B\u044C\u043D\u0438\u0439 \u0441\u0442\u0430\u043D \u043E\u0441\u0442\u0430\u043D\u043D\u0456\u0445 \u043F\u043E\u0431\u0443\u0434\u043E\u0432 +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u041F\u043E\u0433\u043E\u0434\u043D\u0438\u0439 \u0437\u0432\u0456\u0442, \u0432\u0456\u0434\u043E\u0431\u0440\u0430\u0436\u0430\u044E\u0447\u0438\u0439 \u0437\u0430\u0433\u0430\u043B\u044C\u043D\u0438\u0439 \u0441\u0442\u0430\u0442\u0443\u0441 \u043E\u0441\u0442\u0430\u043D\u043D\u0456\u0445 \u0431\u0456\u043B\u0434\u0456\u0432 diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_uk.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_uk.properties index f8fdd61940..9dbd7335fc 100644 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_uk.properties +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_uk.properties @@ -20,5 +20,5 @@ # 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\u044E \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0443 -pending=\u0447\u0435\u043A\u0430\u0454 +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/HistoryWidget/entry_uk.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_uk.properties index 5f73d1ec88..0d61c82cee 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_uk.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u0412\u0438\u0432\u0456\u0434 \u041A\u043E\u043D\u0441\u043E\u043B\u0456 +Console\ Output=\u041A\u043E\u043D\u0441\u043E\u043B\u044C diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_uk.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_uk.properties index 47ca2caf49..03fddce58f 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_uk.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_uk.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -More\ ...=\u0429\u0435 ... -for\ all=\u0434\u043B\u044F \u0443\u0441\u0456\u0445 +More\ ...=\u0411\u0456\u043B\u044C\u0448\u0435 ... +for\ all=\u0434\u043B\u044F \u0432\u0441\u0456\u0445 for\ failures=\u0434\u043B\u044F \u043D\u0435\u0432\u0434\u0430\u0447 -trend=\u0442\u0440\u0435\u043D\u0434 +trend=\u0422\u0440\u0435\u043D\u0434 diff --git a/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_uk.properties b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_uk.properties new file mode 100644 index 0000000000..989cff1b0c --- /dev/null +++ b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_uk.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Dismiss=\u0412\u0456\u0434\u043C\u0456\u043D\u0430 +Setup\ Security=\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 \u0441\u0438\u0441\u0442\u0435\u043C\u0443 \u0431\u0435\u0437\u043F\u0435\u043A\u0438 +blurb=\u0411\u0435\u0437 \u043D\u0430\u043B\u0435\u0436\u043D\u0438\u0445 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u044C \u0441\u0438\u0441\u0442\u0435\u043C\u0438 \u0431\u0435\u0437\u043F\u0435\u043A\u0438 Jenkins \u0434\u043E\u0437\u0432\u043E\u043B\u044F\u0454 \u0431\u0443\u0434\u044C-\u043A\u043E\u043C\u0443 \u0443 \u0432\u0430\u0448\u0456\u0439 \u043F\u0456\u0434\u043C\u0435\u0440\u0435\u0436\u0456 \u0437\u0430\u043F\u0443\u0441\u043A\u0430\u0442\u0438 \u043D\u043E\u0432\u0456 \u0437\u0430\u0432\u0434\u0430\u043D\u043D\u044F \u0432\u0456\u0434 \u0412\u0430\u0448\u043E\u0433\u043E \u0456\u043C\u0435\u043D\u0456. \u0414\u043B\u044F \u043F\u043E\u0447\u0430\u0442\u043A\u0443, \u0449\u043E\u0431 \u0443\u043D\u0438\u043A\u043D\u0443\u0442\u0438 \u043D\u0435\u043F\u043E\u0440\u043E\u0437\u0443\u043C\u0456\u043D\u044C, \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0439\u0442\u0435 \u0441\u0438\u0441\u0442\u0435\u043C\u0443 \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u0444\u0456\u043A\u0430\u0446\u0456\u0457. diff --git a/core/src/main/resources/jenkins/management/PluginsLink/info_uk.properties b/core/src/main/resources/jenkins/management/PluginsLink/info_uk.properties new file mode 100644 index 0000000000..140702db7b --- /dev/null +++ b/core/src/main/resources/jenkins/management/PluginsLink/info_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +updates\ available=\u041E\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0456 diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_uk.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_uk.properties new file mode 100644 index 0000000000..5961f3ee67 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_uk.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Build\ Record\ Root\ Directory=\u041A\u0430\u0442\u0430\u043B\u043E\u0433 \u0437\u0430\u043F\u0438\u0441\u0456\u0432 \u043F\u0440\u043E \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0438 +Home\ directory=\u0414\u043E\u043C\u0430\u0448\u043D\u0456\u0439 \u043A\u0430\u0442\u0430\u043B\u043E\u0433 +LOADING=\u0417\u0410\u0412\u0410\u041D\u0422\u0410\u0416\u0415\u041D\u041D\u042F +System\ Message=\u0421\u0438\u0441\u0442\u0435\u043C\u043D\u0435 \u043F\u043E\u0432\u0456\u0434\u043E\u043C\u043B\u0435\u043D\u043D\u044F +Workspace\ Root\ Directory=\u0420\u043E\u0431\u043E\u0447\u0438\u0439 \u043A\u0430\u0442\u0430\u043B\u043E\u0433 diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_uk.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_uk.properties index 66df31535f..eb97b99c0a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_uk.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_uk.properties @@ -20,4 +20,22 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Manage\ Jenkins=\u0423\u043F\u0440\u0430\u0432\u043B\u0456\u043D\u043D\u044F \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441\u043E\u043C +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=\u0414\u043E\u0434\u0430\u0432\u0430\u043D\u043D\u044F, \u0432\u0438\u0434\u0430\u043B\u0435\u043D\u043D\u044F, \u0443\u043F\u0440\u0430\u0432\u043B\u0456\u043D\u043D\u044F \u0456 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u0440\u0456\u0437\u043D\u043E\u043C\u0430\u043D\u0456\u0442\u043D\u0438\u043C\u0438 \u0432\u0443\u0437\u043B\u0430\u043C\u0438, \u043D\u0430 \u043A\u043E\u0442\u0440\u0438\u0445 \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441 \u0432\u0438\u043A\u043E\u043D\u0443\u0454 \u0437\u0430\u0432\u0434\u0430\u043D\u043D\u044F. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=\u0414\u043E\u0434\u0430\u0442\u0438, \u0432\u0438\u0434\u0430\u043B\u0438\u0442\u0438, \u0432\u0456\u0434\u043A\u043B\u044E\u0447\u0438\u0442\u0438 \u0430\u0431\u043E \u0443\u0432\u0456\u043C\u043A\u043D\u0443\u0442\u0438 \u043F\u043B\u0430\u0433\u0456\u043D\u0438, \u044F\u043A\u0456 \u043C\u043E\u0436\u0443\u0442\u044C \u0440\u043E\u0437\u0448\u0438\u0440\u0438\u0442\u0438 \u0444\u0443\u043D\u043A\u0446\u0456\u043E\u043D\u0430\u043B\u044C\u043D\u0456\u0441\u0442\u044C \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441\u0430 +Configure\ System=\u041A\u043E\u043D\u0444\u0456\u0491\u0443\u0440\u0430\u0446\u0456\u044F \u0441\u0438\u0441\u0442\u0435\u043C\u0438 +Configure\ global\ settings\ and\ paths.=\u0417\u043C\u0456\u043D\u0438\u0442\u0438 \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u0456 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u0442\u0430 \u0448\u043B\u044F\u0445\u0438. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438 \u0432\u0441\u0456 \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u0456 \u0434\u0430\u043D\u0456 \u0437 \u043F\u0430\u043C''\u044F\u0442\u0456 \u0456 \u043F\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F \u0432\u0441\u0435 \u0437 \u0444\u0430\u0439\u043B\u043E\u0432\u043E\u0457 \u0441\u0438\u0441\u0442\u0435\u043C\u0438. +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u0438 \u0440\u0456\u0437\u043D\u043E\u043C\u0430\u043D\u0456\u0442\u043D\u0443 \u0456\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u044E \u043F\u0440\u043E \u0441\u0435\u0440\u0435\u0434\u043E\u0432\u0438\u0449\u0435, \u044F\u043A\u0430 \u043C\u043E\u0436\u0435 \u0434\u043E\u043F\u043E\u043C\u043E\u0433\u0442\u0438 \u043F\u0440\u0438 \u0443\u0441\u0443\u043D\u0435\u043D\u043D\u0456 \u043D\u0435\u0441\u043F\u0440\u0430\u0432\u043D\u043E\u0441\u0442\u0435\u0439. +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=\u0412\u0438\u043A\u043E\u043D\u0430\u043D\u043D\u044F \u0434\u043E\u0434\u0430\u0442\u043A\u043E\u0432\u0438\u0445 \u0441\u0446\u0435\u043D\u0430\u0440\u0456\u0457\u0432 \u0434\u043B\u044F \u0430\u0434\u043C\u0456\u043D\u0456\u0441\u0442\u0440\u0443\u0432\u0430\u043D\u043D\u044F/\u0443\u0441\u0443\u043D\u0435\u043D\u043D\u044F \u043D\u0435\u0441\u043F\u0440\u0430\u0432\u043D\u043E\u0441\u0442\u0435\u0439/\u0434\u0456\u0430\u0433\u043D\u043E\u0441\u0442\u0438\u043A\u0438. +Jenkins\ CLI=\u041A\u043E\u043C\u0430\u043D\u0434\u043D\u0430 \u0441\u0442\u0440\u0456\u0447\u043A\u0430 \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441\u0430 +JenkinsCliText=\u0414\u043E\u0441\u0442\u0443\u043F/\u0443\u043F\u0440\u0430\u0432\u043B\u0456\u043D\u043D\u044F \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441\u043E\u043C \u0437 \u0432\u0430\u0448\u043E\u0457 \u043E\u0431\u043E\u043B\u043E\u043D\u043A\u0438 \u0430\u0431\u043E \u0437 \u0432\u0430\u0448\u043E\u0433\u043E \u0441\u0446\u0435\u043D\u0430\u0440\u0456\u044E \u0432\u0438\u043A\u043E\u043D\u0430\u043D\u043D\u044F. +LoadStatisticsText=\u041F\u0435\u0440\u0435\u0432\u0456\u0440\u0438\u0442\u0438 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F \u0440\u0435\u0441\u0443\u0440\u0441\u0456\u0432 \u0456 \u043F\u043E\u0434\u0438\u0432\u0438\u0442\u0438\u0441\u044F, \u0447\u0438 \u0432\u0430\u043C \u043F\u043E\u0442\u0440\u0456\u0431\u043D\u043E \u0431\u0456\u043B\u044C\u0448\u0435 \u043A\u043E\u043C\u043F''\u044E\u0442\u0435\u0440\u0456\u0432 \u0434\u043B\u044F \u0432\u0438\u043A\u043E\u043D\u0430\u043D\u043D\u044F \u0437\u0431\u0456\u0440\u043E\u043A. +Manage\ Jenkins=\u041A\u0435\u0440\u0443\u0432\u0430\u043D\u043D\u044F \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441\u043E\u043C +Manage\ Plugins=\u041A\u0435\u0440\u0443\u0432\u0430\u043D\u043D\u044F \u0434\u043E\u043F\u043E\u0432\u043D\u0435\u043D\u043D\u044F\u043C\u0438 +Prepare\ for\ Shutdown=\u041F\u0456\u0434\u0433\u043E\u0442\u0443\u0432\u0430\u0442\u0438 \u0434\u043E \u0432\u0438\u043C\u043A\u043D\u0435\u043D\u043D\u044F +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=\u0417\u0443\u043F\u0438\u043D\u044F\u0454 \u0432\u0438\u043A\u043E\u043D\u0430\u043D\u043D\u044F \u043D\u043E\u0432\u0438\u0445 \u0437\u0431\u0456\u0440\u043E\u043A, \u0442\u0430\u043A\u0438\u043C \u0447\u0438\u043D\u043E\u043C, \u0449\u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u043C\u043E\u0436\u0435 \u0431\u0443\u0442\u0438 \u0432 \u043A\u0456\u043D\u0446\u0435\u0432\u043E\u043C\u0443 \u0440\u0430\u0445\u0443\u043D\u043A\u0443 \u0437\u0433\u043E\u0440\u043D\u0443\u0442\u0430 \u0431\u0435\u0437\u043F\u0435\u0447\u043D\u043E. +System\ Information=\u0412\u0456\u0434\u043E\u043C\u043E\u0441\u0442\u0456 \u043F\u0440\u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0443 +System\ Log=\u0421\u0438\u0441\u0442\u0435\u043C\u043D\u0438\u0439 \u043B\u043E\u0433 +SystemLogText=\u0421\u0438\u0441\u0442\u0435\u043C\u043D\u0438\u0439 \u0436\u0443\u0440\u043D\u0430\u043B \u0444\u0456\u043A\u0441\u0443\u0454 \u0432\u0438\u0432\u0456\u0434 \u0434\u0430\u043D\u0438\u0445 \u0437 java.util.logging \u043F\u043E\u0432''\u044F\u0437\u0430\u043D\u0438\u0445 \u0437 \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441. +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=\u041A\u043E\u0440\u0438\u0441\u043D\u043E \u044F\u043A\u0449\u043E \u0432\u0438 \u043C\u043E\u0434\u0438\u0444\u0456\u043A\u0443\u0454\u0442\u0435 \u043A\u043E\u043D\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u0439\u043D\u0456 \u0444\u0430\u0439\u043B\u0438 \u043F\u0440\u044F\u043C\u043E \u043D\u0430 \u0434\u0438\u0441\u043A\u0443 +are.you.sure={0}: \u0412\u0438 \u0432\u043F\u0435\u0432\u043D\u0435\u043D\u0456? diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_uk.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_uk.properties new file mode 100644 index 0000000000..d926f5312e --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_uk.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Compare=\u041F\u043E\u0440\u0456\u0432\u043D\u044F\u0442\u0438 +Project\ Relationship=\u0417\u0432''\u044F\u0437\u043A\u0438 \u043F\u0440\u043E\u0435\u043A\u0442\u0443 +downstream\ project=\u043D\u0438\u0437\u0445\u0456\u0434\u043D\u0438\u0439 \u043F\u0440\u043E\u0435\u043A\u0442 +upstream\ project=\u0432\u0438\u0441\u0445\u0456\u0434\u043D\u0438\u0439 \u043F\u0440\u043E\u0435\u043A\u0442 diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_uk.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_uk.properties new file mode 100644 index 0000000000..ec48c0b8fe --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_uk.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Enabled=\u0423\u0432\u0456\u043C\u043A\u043D\u0435\u043D\u043E +Environment\ Variables=\u0417\u043C\u0456\u043D\u043D\u0456 \u043E\u0442\u043E\u0447\u0435\u043D\u043D\u044F +Name=\u041D\u0430\u0437\u0432\u0430 +Pinned=\u0417\u0430\u043A\u0440\u0456\u043F\u043B\u0435\u043D\u0438\u0439 +Plugins=\u0414\u043E\u0434\u0430\u0442\u043A\u0438 +System\ Properties=\u0421\u0438\u0441\u0442\u0435\u043C\u043D\u0456 \u0432\u043B\u0430\u0441\u0442\u0438\u0432\u043E\u0441\u0442\u0456 +Version=\u0412\u0435\u0440\u0441\u0456\u044F diff --git a/core/src/main/resources/lib/form/advanced_uk.properties b/core/src/main/resources/lib/form/advanced_uk.properties new file mode 100644 index 0000000000..4a398efe2f --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Advanced=\u0414\u043E\u0434\u0430\u0442\u043A\u043E\u0432\u0456 diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_uk.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_uk.properties new file mode 100644 index 0000000000..7f76b7502e --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=\u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F diff --git a/core/src/main/resources/lib/form/helpArea_uk.properties b/core/src/main/resources/lib/form/helpArea_uk.properties new file mode 100644 index 0000000000..63beaaac74 --- /dev/null +++ b/core/src/main/resources/lib/form/helpArea_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Loading...=\uB85C\uB529\uC911... diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_uk.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_uk.properties new file mode 100644 index 0000000000..ca852839f9 --- /dev/null +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Delete=\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438 diff --git a/core/src/main/resources/lib/form/slave-mode_uk.properties b/core/src/main/resources/lib/form/slave-mode_uk.properties new file mode 100644 index 0000000000..e6fffdce34 --- /dev/null +++ b/core/src/main/resources/lib/form/slave-mode_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Usage=\u0412\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F diff --git a/core/src/main/resources/lib/form/textarea_uk.properties b/core/src/main/resources/lib/form/textarea_uk.properties new file mode 100644 index 0000000000..6bce5f47f8 --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_uk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Hide\ preview=\u0421\u0445\u043E\u0432\u0430\u0442\u0438 \u043F\u043E\u043F\u0435\u0440\u0435\u0434\u043D\u0456\u0439 \u043F\u0435\u0440\u0435\u0433\u043B\u044F\u0434 +Preview=\u041F\u043E\u043F\u0435\u0440\u0435\u0434\u043D\u0456\u0439 \u043F\u0435\u0440\u0435\u0433\u043B\u044F\u0434 diff --git a/core/src/main/resources/lib/hudson/buildCaption_uk.properties b/core/src/main/resources/lib/hudson/buildCaption_uk.properties index 4c4ab39fc9..d97987bc34 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_uk.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_uk.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Progress=\u041F\u0440\u043E\u0433\u0440\u0435\u0441 -cancel=\u0412\u0456\u0434\u043C\u0456\u043D\u0438\u0442\u0438 +cancel=\u0432\u0456\u0434\u043C\u0456\u043D\u0438\u0442\u0438 diff --git a/core/src/main/resources/lib/hudson/buildHealth_uk.properties b/core/src/main/resources/lib/hudson/buildHealth_uk.properties index 12d25876ff..cf0bdd2017 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_uk.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=\u043E\u043F\u0438\u0441 +Description=\u041E\u043F\u0438\u0441 diff --git a/core/src/main/resources/lib/hudson/buildListTable_uk.properties b/core/src/main/resources/lib/hudson/buildListTable_uk.properties index 88a666c2da..c9834a22a7 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_uk.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_uk.properties @@ -20,7 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=\u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0430 -Console\ output=\u0412\u0438\u0432\u0456\u0434 \u041A\u043E\u043D\u0441\u043E\u043B\u0456 +Build=\u0411\u0456\u043B\u0434 +Click\ to\ center\ timeline\ on\ event=\u0414\u043B\u044F \u0446\u0435\u043D\u0442\u0440\u0443\u0432\u0430\u043D\u043D\u044F \u043B\u0456\u043D\u0456\u0439\u043A\u0438 \u043A\u043B\u0430\u0446\u043D\u0456\u0442\u044C \u043D\u0430 \u043F\u043E\u0434\u0456\u0457 +Console\ output=\u0412\u0438\u0432\u0456\u0434 \u043A\u043E\u043D\u0441\u043E\u043B\u0456 Status=\u0421\u0442\u0430\u0442\u0443\u0441 -Time\ Since=\u041F\u0440\u043E\u0439\u0448\u043B\u043E \u0427\u0430\u0441\u0443 +Time\ Since=\u041F\u0440\u043E\u0439\u0448\u043B\u043E \u0447\u0430\u0441\u0443 diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_uk.properties b/core/src/main/resources/lib/hudson/buildProgressBar_uk.properties index fbb3f38739..2ab0838f8c 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_uk.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=\u0420\u043E\u0437\u043F\u043E\u0447\u0430\u0442\u043E {0} \u0442\u043E\u043C\u0443
\u041B\u0438\u0448\u0438\u043B\u043E\u0441\u044F \u043F\u0440\u0438\u0431\u043B\u0438\u0437\u043D\u043E {1} +text=\u0420\u043E\u0437\u043F\u043E\u0447\u0430\u0442\u043E {0} \u0442\u043E\u043C\u0443 \u041B\u0438\u0448\u0438\u043B\u043E\u0441\u044F \u043F\u0440\u0438\u0431\u043B\u0438\u0437\u043D\u043E {1} diff --git a/core/src/main/resources/lib/hudson/executors_uk.properties b/core/src/main/resources/lib/hudson/executors_uk.properties index 09d5490644..9169ce8a4e 100644 --- a/core/src/main/resources/lib/hudson/executors_uk.properties +++ b/core/src/main/resources/lib/hudson/executors_uk.properties @@ -20,10 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=\u0421\u0442\u0430\u0442\u0443\u0441 \u0412\u0438\u043A\u043E\u043D\u0430\u0432\u0446\u0456\u0432 \u041F\u043E\u0431\u0443\u0434\u043E\u0432 -Building=\u0411\u0443\u0434\u0443\u0454 -Idle=\u043F\u043E\u0432\u0456\u043B\u044C\u043D\u0438\u0439 -Master=\u0413\u043E\u043B\u043E\u0432\u043D\u0438\u0439 -Status=\u0441\u0442\u0430\u0442\u0443\u0441 -offline=\u0432\u0438\u043C\u043A\u043D\u0435\u043D\u043E -terminate\ this\ build=\u043F\u0435\u0440\u0435\u0440\u0432\u0430\u0442\u0438 \u0446\u044E \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0443 +Build\ Executor\ Status=\u0421\u0442\u0430\u0442\u0443\u0441 \u0432\u0438\u043A\u043E\u043D\u0430\u0432\u0446\u0456\u0432 \u043F\u043E\u0431\u0443\u0434\u043E\u0432 +Building=\u041A\u043E\u043C\u043F\u0456\u043B\u044E\u0454\u0442\u044C\u0441\u044F +Idle=\u0412\u0456\u043B\u044C\u043D\u043E +Master=\u041E\u0441\u043D\u043E\u0432\u043D\u0438\u0439 +Status=\u0421\u0442\u0430\u0442\u0443\u0441 +Unknown\ Task=\u041D\u0435\u0432\u0456\u0434\u043E\u043C\u0435 \u0417\u0430\u0432\u0434\u0430\u043D\u043D\u044F +offline=\u043F\u043E\u0437\u0430 \u043C\u0435\u0440\u0435\u0436\u0435\u044E +suspended=\u043F\u0440\u0438\u0437\u0443\u043F\u0438\u043D\u0435\u043D\u043E +terminate\ this\ build=\u0412\u0456\u0434\u043C\u0456\u043D\u0438\u0442\u0438 \u0446\u0435\u0439 \u0431\u0456\u043B\u0434 diff --git a/core/src/main/resources/lib/hudson/iconSize_uk.properties b/core/src/main/resources/lib/hudson/iconSize_uk.properties index b3ffeb17b1..01d1fd8059 100644 --- a/core/src/main/resources/lib/hudson/iconSize_uk.properties +++ b/core/src/main/resources/lib/hudson/iconSize_uk.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=\u041F\u0456\u043A\u0442\u043E\u0433\u0440\u0430\u043C\u0430 +Icon=\u0417\u043D\u0430\u0447\u043E\u043A diff --git a/core/src/main/resources/lib/hudson/newFromList/form_uk.properties b/core/src/main/resources/lib/hudson/newFromList/form_uk.properties new file mode 100644 index 0000000000..c024ba0c9b --- /dev/null +++ b/core/src/main/resources/lib/hudson/newFromList/form_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Copy\ from=\u0421\u043A\u043E\u043F\u0456\u044E\u0432\u0430\u0442\u0438 \u0437 diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_uk.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_uk.properties new file mode 100644 index 0000000000..b2b0333d47 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Block\ build\ when\ downstream\ project\ is\ building=\u0411\u043B\u043E\u043A\u0443\u0432\u0430\u0442\u0438 \u0437\u0431\u0456\u0440\u043A\u0438, \u0434\u043E\u043A\u0438 \u043F\u043E\u043F\u0435\u0440\u0435\u0434\u043D\u0456\u0439 \u043F\u0440\u043E\u0435\u043A\u0442 \u0437\u0431\u0438\u0440\u0430\u0454\u0442\u044C\u0441\u044F diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_uk.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_uk.properties new file mode 100644 index 0000000000..26f55c0978 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Block\ build\ when\ upstream\ project\ is\ building=\u0411\u043B\u043E\u043A\u0443\u0432\u0430\u0442\u0438 \u0437\u0431\u0456\u0440\u043A\u0443, \u0434\u043E\u043A\u0438 \u043D\u0430\u0441\u0442\u0443\u043F\u043D\u0438\u0439 \u043F\u0440\u043E\u0435\u043A\u0442 \u0437\u0431\u0438\u0440\u0430\u0454\u0442\u044C\u0441\u044F diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_uk.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_uk.properties new file mode 100644 index 0000000000..8ac424f748 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title.concurrentbuilds=\u0412\u0438\u043A\u043E\u043D\u0430\u0442\u0438 \u043F\u0430\u0440\u0430\u043B\u0435\u043B\u044C\u043D\u0456 \u0437\u0431\u0456\u0440\u043A\u0438 \u0432 \u0440\u0430\u0437\u0456 \u043D\u0435\u043E\u0431\u0445\u0456\u0434\u043D\u043E\u0441\u0442\u0456 diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_uk.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_uk.properties new file mode 100644 index 0000000000..485885f692 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_uk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Directory=\u0414\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0456\u044F +Use\ custom\ workspace=\u0412\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u0441\u0432\u0456\u0439 \u0440\u043E\u0431\u043E\u0447\u0438\u0439 \u043F\u0440\u043E\u0441\u0442\u0456\u0440 diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_uk.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_uk.properties new file mode 100644 index 0000000000..f115b9e5f6 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_uk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Disable\ Build=\u0414\u0435\u0430\u043A\u0442\u0438\u0432\u0443\u0432\u0430\u0442\u0438 \u0431\u0456\u043B\u0434 +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=\u041D\u0435 \u0431\u0443\u0434\u0443\u0432\u0430\u0442\u0438 \u0434\u043E\u043A\u0438 \u043F\u0440\u043E\u0435\u043A\u0442 \u043D\u0435 \u0434\u043E\u0437\u0432\u043E\u043B\u044F\u0442\u044C diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_uk.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_uk.properties new file mode 100644 index 0000000000..e0cad26eaa --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_uk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Number\ of\ seconds=\u0421\u0435\u043A\u0443\u043D\u0434 +Quiet\ period=\u041F\u0435\u0440\u0456\u043E\u0434 \u0442\u0438\u0448\u0438\u043D\u0438 diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_uk.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_uk.properties new file mode 100644 index 0000000000..04e0501596 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_uk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Retry\ Count=\u041A\u0456\u043B\u044C\u043A\u0456\u0441\u0442\u044C \u043F\u043E\u0432\u0442\u043E\u0440\u043D\u0438\u0445 \u0441\u043F\u0440\u043E\u0431 +SCM\ checkout\ retry\ count=\u041A\u0456\u043B\u044C\u043A\u0456\u0441\u0442\u044C \u0441\u043F\u0440\u043E\u0431 \u043E\u0442\u0440\u0438\u043C\u0430\u043D\u043D\u044F \u043A\u043E\u0434\u0443 \u0437 \u0421\u041A\u0412 diff --git a/core/src/main/resources/lib/hudson/project/config-scm_uk.properties b/core/src/main/resources/lib/hudson/project/config-scm_uk.properties new file mode 100644 index 0000000000..917007ee69 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-scm_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Source\ Code\ Management=\u0423\u043F\u0440\u0430\u0432\u043B\u0456\u043D\u043D\u044F \u0432\u0438\u0445\u0456\u0434\u043D\u0438\u043C \u043A\u043E\u0434\u043E\u043C diff --git a/core/src/main/resources/lib/hudson/project/matrix_uk.properties b/core/src/main/resources/lib/hudson/project/matrix_uk.properties new file mode 100644 index 0000000000..0367c63349 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/matrix_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Configurations=\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_uk.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_uk.properties index 8ad972bca0..1792e9b720 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_uk.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_uk.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Downstream\ Projects=\u041F\u0456\u0434\u043F\u043E\u0440\u044F\u0434\u043A\u043E\u0432\u0430\u043D\u0456 \u041F\u0440\u043E\u0435\u043A\u0442\u0438 -Upstream\ Projects=\u041A\u0435\u0440\u0456\u0432\u043D\u0456 \u043F\u0440\u043E\u0435\u043A\u0442\u0438 +Downstream\ Projects=\u041D\u0438\u0436\u0447\u0456 \u043F\u0440\u043E\u0435\u043A\u0442\u0438 +Upstream\ Projects=\u0412\u0438\u0449\u0456 \u041F\u0440\u043E\u0435\u043A\u0442\u0438 diff --git a/core/src/main/resources/lib/hudson/propertyTable_uk.properties b/core/src/main/resources/lib/hudson/propertyTable_uk.properties new file mode 100644 index 0000000000..46d49bbdac --- /dev/null +++ b/core/src/main/resources/lib/hudson/propertyTable_uk.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Name=\u041D\u0430\u0437\u0432\u0430 +Value=\u0417\u043D\u0430\u0447\u0435\u043D\u043D\u044F diff --git a/core/src/main/resources/lib/hudson/queue_uk.properties b/core/src/main/resources/lib/hudson/queue_uk.properties index 5433e696de..9976db7784 100644 --- a/core/src/main/resources/lib/hudson/queue_uk.properties +++ b/core/src/main/resources/lib/hudson/queue_uk.properties @@ -20,7 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u0427\u0435\u0440\u0433\u0430 \u041F\u043E\u0431\u0443\u0434\u043E\u0432 -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=\u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441 \u0437\u0431\u0438\u0440\u0430\u0454\u0442\u044C\u0441\u044F \u0437\u0443\u043F\u0438\u043D\u044F\u0442\u0438\u0441\u044C. \u0414\u043E\u0434\u0430\u0442\u043A\u043E\u0432\u0456 \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0438 \u0437\u0430\u043F\u0443\u0441\u043A\u0430\u0442\u0438\u0441\u044F \u043D\u0435 \u0431\u0443\u0434\u0443\u0442\u044C. -No\ builds\ in\ the\ queue.=\u041D\u0435\u043C\u0430\u0454 \u043F\u043E\u0431\u0443\u0434\u043E\u0432 \u0443 \u0447\u0435\u0440\u0437\u0456 +Build\ Queue=\u0427\u0435\u0440\u0433\u0430 \u043F\u043E\u0431\u0443\u0434\u043E\u0432 +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=\u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441 \u0437\u0431\u0438\u0440\u0430\u0454\u0442\u044C\u0441\u044F \u0437\u0443\u043F\u0438\u043D\u044F\u0442\u0438\u0441\u044C. \u0414\u043E\u0434\u0430\u0442\u043A\u043E\u0432\u0456 \u0437\u0431\u0456\u0440\u043A\u0438 \u0437\u0430\u043F\u0443\u0441\u043A\u0430\u0442\u0438\u0441\u044F \u043D\u0435 \u0431\u0443\u0434\u0443\u0442\u044C. +No\ builds\ in\ the\ queue.=\u041D\u0435\u043C\u0430\u0454 \u0437\u0431\u0456\u0440\u043E\u043A \u0443 \u0447\u0435\u0440\u0437\u0456 +WaitingFor=\u041E\u0447\u0456\u043A\u0443\u0454 \u043D\u0430 {0} +WaitingSince=\u041E\u0447\u0456\u043A\u0443\u0454 \u0437 {0} cancel=\u0432\u0456\u0434\u043C\u0456\u043D\u0438\u0442\u0438 diff --git a/core/src/main/resources/lib/hudson/rssBar_uk.properties b/core/src/main/resources/lib/hudson/rssBar_uk.properties index 4453baba30..6f162a4949 100644 --- a/core/src/main/resources/lib/hudson/rssBar_uk.properties +++ b/core/src/main/resources/lib/hudson/rssBar_uk.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=\u041E\u043F\u0438\u0441 -for\ all=\u0434\u043B\u044F \u0432\u0441\u0456\u0445 +Legend=\u041B\u0435\u0433\u0435\u043D\u0434\u0430 +for\ all=\u0434\u043B\u044F \u0432\u0441\u0438\u0445 for\ failures=\u0434\u043B\u044F \u043D\u0435\u0432\u0434\u0430\u043B\u0438\u0445 -for\ just\ latest\ builds=\u0442\u0456\u043B\u044C\u043A\u0438 \u0434\u043B\u044F \u043E\u0441\u0442\u0430\u043D\u043D\u0456\u0445 \u043F\u043E\u0431\u0443\u0434\u043E\u0432 +for\ just\ latest\ builds=\u0442\u0456\u043B\u044C\u043A\u0438 \u0434\u043B\u044F \u043E\u0441\u0442\u0430\u043D\u043D\u0456\u0445 \u0431\u0456\u043B\u0434\u0456\u0432 diff --git a/core/src/main/resources/lib/hudson/test-result_uk.properties b/core/src/main/resources/lib/hudson/test-result_uk.properties index 738e596752..aa8f9f60b8 100644 --- a/core/src/main/resources/lib/hudson/test-result_uk.properties +++ b/core/src/main/resources/lib/hudson/test-result_uk.properties @@ -21,4 +21,5 @@ # THE SOFTWARE. multifailures="{0} \u043D\u0435\u0432\u0434\u0430\u0447 {1}" -no\ failures=\u0431\u0435\u0437 \u043D\u0435\u0432\u0434\u0430\u0447 +no\ failures=\u0431\u0435\u0437 \u043F\u043E\u043C\u0438\u043B\u043E\u043A +no\ tests=\u043D\u0435\u043C\u0430\u0454 diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_uk.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_uk.properties new file mode 100644 index 0000000000..2dea67a717 --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_uk.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +License=\u041B\u0456\u0446\u0435\u043D\u0437\u0456\u044F +Maven\ ID=Maven \u0406\u0434\u0435\u043D\u0442\u0438\u0444\u0456\u043A\u0430\u0442\u043E\u0440 +Name=\u041D\u0430\u0437\u0432\u0430 diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_uk.properties b/core/src/main/resources/lib/layout/breadcrumbBar_uk.properties new file mode 100644 index 0000000000..4af7832cf6 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_uk.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=\u0412\u0418\u041A\u041B\u042E\u0427\u0418\u0422\u0418 \u0410\u0412\u0422\u041E\u041E\u041D\u041E\u0412\u041B\u0415\u041D\u041D\u042F + +ENABLE\ AUTO\ REFRESH=\u0423\u0432\u0456\u043C\u043A\u043D\u0443\u0442\u0438 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u0435 \u043E\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F diff --git a/core/src/main/resources/lib/layout/layout_uk.properties b/core/src/main/resources/lib/layout/layout_uk.properties index 4427b8e1b8..8fbcc4f62c 100644 --- a/core/src/main/resources/lib/layout/layout_uk.properties +++ b/core/src/main/resources/lib/layout/layout_uk.properties @@ -20,9 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -DISABLE\ AUTO\ REFRESH=\u0412\u0418\u041C\u041A\u041D\u0423\u0422\u0418 \u0410\u0412\u0422\u041E\u041C\u0410\u0422\u0418\u0427\u041D\u0415 \u041E\u041D\u041E\u0412\u041B\u0415\u041D\u041D\u042F -ENABLE\ AUTO\ REFRESH=\u0423\u0412\u0406\u041C\u041A\u041D\u0423\u0422\u0418 \u0410\u0412\u0422\u041E\u041C\u0410\u0422\u0418\u0427\u041D\u0415 \u041E\u041D\u041E\u0412\u041B\u0415\u041D\u041D\u042F -Page\ generated=\u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0430 \u0437\u0433\u0435\u043D\u0435\u0440\u043E\u0432\u0430\u043D\u0430 +DISABLE\ AUTO\ REFRESH=\u0412\u0438\u043C\u043A\u043D\u0443\u0442\u0438 \u0430\u0432\u0442\u043E\u043F\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F +ENABLE\ AUTO\ REFRESH=\u0423\u0432\u0456\u043C\u043A\u043D\u0443\u0442\u0438 \u0430\u0432\u0442\u043E\u043F\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F +Page\ generated=\u0421\u0442\u043E\u0440\u0456\u043D\u043A\u0430 \u0437\u0433\u0435\u043D\u0435\u0440\u043E\u0432\u0430\u043D\u0430 logout=\u0412\u0438\u0439\u0442\u0438 -search=\u043F\u043E\u0448\u0443\u043A +search=\u041F\u043E\u0448\u0443\u043A searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box + diff --git a/core/src/main/resources/lib/layout/progressiveRendering_uk.properties b/core/src/main/resources/lib/layout/progressiveRendering_uk.properties new file mode 100644 index 0000000000..dd7d6949ea --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_uk.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=\u041E\u0431\u0447\u0438\u0441\u043B\u0435\u043D\u043D\u044F, \u0449\u043E \u0432\u0438\u043A\u043E\u043D\u0443\u044E\u0442\u044C\u0441\u044F. -- GitLab From 918c619da1effb309e05ffc33d0251712daa280c Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:04 -0700 Subject: [PATCH 085/308] Community-contributed localization for zh_CN (zh_CN) --- .../PluginManager/index_zh_CN.properties | 1 + .../PluginManager/installed_zh_CN.properties | 4 ++ .../PluginManager/tabBar_zh_CN.properties | 2 +- .../PluginManager/table_zh_CN.properties | 5 ++ .../OldDataMonitor/manage_zh_CN.properties | 7 +++ .../message_zh_CN.properties | 3 +- .../index_zh_CN.properties | 6 +++ .../config_zh_CN.properties | 2 +- .../MatrixBuild/delete_zh_CN.properties | 4 ++ .../AbstractBuild/changes_zh_CN.properties | 2 +- .../AbstractBuild/index_zh_CN.properties | 8 +-- .../AbstractBuild/sidepanel_zh_CN.properties | 4 +- .../AbstractBuild/tasks_zh_CN.properties | 16 +++--- .../configure-common_zh_CN.properties | 4 ++ .../AbstractItem/noWorkspace_zh_CN.properties | 2 +- .../editDescription_zh_CN.properties | 3 ++ .../error_zh_CN.properties | 3 ++ .../AbstractProject/changes_zh_CN.properties | 2 +- .../AbstractProject/main_zh_CN.properties | 4 +- .../sidepanel_zh_CN.properties | 13 ++--- .../model/AllView/noJob_zh_CN.properties | 6 ++- .../description_zh_CN.properties | 4 ++ .../UserIdCause/description_zh_CN.properties | 2 +- .../model/Computer/builds_zh_CN.properties | 3 ++ .../model/Computer/sidepanel_zh_CN.properties | 4 +- .../model/ComputerSet/_new_zh_CN.properties | 4 ++ .../ComputerSet/configure_zh_CN.properties | 4 ++ .../model/ComputerSet/index_zh_CN.properties | 1 + .../ComputerSet/sidepanel_zh_CN.properties | 2 +- .../newJobDetail_zh_CN.properties | 48 ++++++++--------- .../model/Job/buildTimeTrend_zh_CN.properties | 2 + .../model/Job/configure_zh_CN.properties | 5 +- .../hudson/model/Job/index_zh_CN.properties | 4 ++ .../model/Job/permalinks_zh_CN.properties | 2 +- .../configure-entries_zh_CN.properties | 8 +++ .../LoadStatistics/main_zh_CN.properties | 3 ++ .../MyViewsProperty/newView_zh_CN.properties | 2 +- .../ParametersAction/index_zh_CN.properties | 4 ++ .../config_zh_CN.properties | 2 +- .../index_zh_CN.properties | 5 ++ .../Permalink/link_zh_CN.properties | 2 +- .../KeepLogBuildBadge/badge_zh_CN.properties | 2 +- .../model/Run/confirmDelete_zh_CN.properties | 4 +- .../hudson/model/Run/console_zh_CN.properties | 3 +- .../hudson/model/Run/delete_zh_CN.properties | 2 +- .../hudson/model/Run/logKeep_zh_CN.properties | 3 +- .../config_zh_CN.properties | 5 ++ .../message_zh_CN.properties | 5 ++ .../Failure/status_zh_CN.properties | 4 ++ .../model/UpdateCenter/body_zh_CN.properties | 4 +- .../model/UpdateCenter/index_zh_CN.properties | 2 +- .../UpdateCenter/sidepanel_zh_CN.properties | 2 +- .../model/User/configure_zh_CN.properties | 4 ++ .../hudson/model/User/index_zh_CN.properties | 2 +- .../View/AsynchPeople/index_zh_CN.properties | 3 +- .../model/View/People/index_zh_CN.properties | 7 +++ .../hudson/model/View/builds_zh_CN.properties | 2 +- .../model/View/configure_zh_CN.properties | 7 +++ .../hudson/model/View/newJob_zh_CN.properties | 4 +- .../hudson/model/View/noJob_zh_CN.properties | 4 ++ .../model/View/sidepanel_zh_CN.properties | 8 +-- .../config_zh_CN.properties | 3 ++ .../message_zh_CN.properties | 4 ++ .../EmptyChangeLogSet/digest_zh_CN.properties | 2 +- .../scm/SCM/project-changes_zh_CN.properties | 1 + .../config_zh_CN.properties | 4 ++ .../index_zh_CN.properties | 3 ++ .../sidepanel_zh_CN.properties | 5 +- .../success_zh_CN.properties | 47 +++++++++-------- .../config_zh_CN.properties | 3 ++ .../config_zh_CN.properties | 3 ++ .../configure-entries_zh_CN.properties | 6 +++ .../config_zh_CN.properties | 4 +- .../ArtifactArchiver/config_zh_CN.properties | 1 + .../tasks/BatchFile/config_zh_CN.properties | 1 + .../FingerprintAction/index_zh_CN.properties | 9 ++++ .../junit/CaseResult/index_zh_CN.properties | 3 ++ .../junit/ClassResult/body_zh_CN.properties | 6 +++ .../config_zh_CN.properties | 1 + .../summary_zh_CN.properties | 3 ++ .../MetaTabulatedResult/body_zh_CN.properties | 12 +++++ .../TestObject/sidepanel_zh_CN.properties | 3 +- .../test/TestResult/index_zh_CN.properties | 3 ++ .../floatingBox_zh_CN.properties | 2 +- .../JDKInstaller/config_zh_CN.properties | 3 +- .../ToolInstallation/global_zh_CN.properties | 52 +++++++++---------- .../config_zh_CN.properties | 50 +++++++++--------- .../SCMAction/index_zh_CN.properties | 3 ++ .../HudsonIsLoading/index_zh_CN.properties | 4 ++ .../HudsonIsRestarting/index_zh_CN.properties | 3 ++ .../BuildButtonColumn/column_zh_CN.properties | 2 + .../myViewTabs_zh_CN.properties | 2 +- .../viewTabs_zh_CN.properties | 2 +- .../column_zh_CN.properties | 3 ++ .../LastFailureColumn/column_zh_CN.properties | 2 +- .../columnHeader_zh_CN.properties | 3 ++ .../LastSuccessColumn/column_zh_CN.properties | 3 ++ .../columnHeader_zh_CN.properties | 2 +- .../columnHeader_zh_CN.properties | 2 +- .../HistoryWidget/index_zh_CN.properties | 4 +- .../message_zh_CN.properties | 5 ++ .../PluginsLink/info_zh_CN.properties | 3 ++ .../MasterComputer/configure_zh_CN.properties | 4 +- .../model/Jenkins/configure_zh_CN.properties | 3 +- .../Jenkins/fingerprintCheck_zh_CN.properties | 6 +-- .../model/Jenkins/legend_zh_CN.properties | 4 +- .../model/Jenkins/login_zh_CN.properties | 4 +- .../model/Jenkins/manage_zh_CN.properties | 4 +- .../projectRelationship_zh_CN.properties | 2 +- .../model/Jenkins/systemInfo_zh_CN.properties | 1 + .../lib/form/advanced_zh_CN.properties | 1 + .../resources/lib/form/apply_zh_CN.properties | 3 ++ ...breadcrumb-config-outline_zh_CN.properties | 3 ++ .../lib/form/helpArea_zh_CN.properties | 2 +- .../lib/hudson/artifactList_zh_CN.properties | 3 ++ .../lib/hudson/buildCaption_zh_CN.properties | 2 +- .../lib/hudson/buildHealth_zh_CN.properties | 2 +- .../hudson/buildProgressBar_zh_CN.properties | 3 +- .../lib/hudson/executors_zh_CN.properties | 9 ++-- .../config-disableBuild_zh_CN.properties | 4 +- .../config-publishers2_zh_CN.properties | 1 + .../config-retryCount_zh_CN.properties | 2 +- ...g-upstream-pseudo-trigger_zh_CN.properties | 1 + .../upstream-downstream_zh_CN.properties | 4 +- .../lib/hudson/queue_zh_CN.properties | 9 ++-- .../lib/hudson/rssBar_zh_CN.properties | 2 +- .../lib/hudson/test-result_zh_CN.properties | 4 +- .../lib/layout/breadcrumbBar_zh_CN.properties | 6 +++ .../lib/layout/layout_zh_CN.properties | 10 ++-- .../lib/layout/main-panel_zh_CN.properties | 2 +- .../progressiveRendering_zh_CN.properties | 3 ++ .../lib/layout/task_zh_CN.properties | 3 ++ .../resources/lib/test/bar_zh_CN.properties | 4 ++ 133 files changed, 471 insertions(+), 206 deletions(-) create mode 100644 core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_zh_CN.properties create mode 100644 core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_zh_CN.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixBuild/delete_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/AbstractModelObject/editDescription_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/AbstractModelObject/error_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UpstreamCause/description_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/Computer/builds_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/_new_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/configure_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/ParametersAction/index_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/StringParameterDefinition/config_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/User/configure_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/View/configure_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/View/noJob_zh_CN.properties create mode 100644 core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_zh_CN.properties create mode 100644 core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_zh_CN.properties create mode 100644 core/src/main/resources/hudson/search/UserSearchProperty/config_zh_CN.properties create mode 100644 core/src/main/resources/hudson/security/LegacySecurityRealm/config_zh_CN.properties create mode 100644 core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_zh_CN.properties create mode 100644 core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_zh_CN.properties create mode 100644 core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_zh_CN.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/CaseResult/index_zh_CN.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/ClassResult/body_zh_CN.properties create mode 100644 core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_zh_CN.properties create mode 100644 core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_zh_CN.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResult/index_zh_CN.properties create mode 100644 core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_zh_CN.properties create mode 100644 core/src/main/resources/hudson/util/HudsonIsLoading/index_zh_CN.properties create mode 100644 core/src/main/resources/hudson/util/HudsonIsRestarting/index_zh_CN.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/column_zh_CN.properties create mode 100644 core/src/main/resources/hudson/views/LastStableColumn/columnHeader_zh_CN.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_zh_CN.properties create mode 100644 core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_zh_CN.properties create mode 100644 core/src/main/resources/jenkins/management/PluginsLink/info_zh_CN.properties create mode 100644 core/src/main/resources/lib/form/apply_zh_CN.properties create mode 100644 core/src/main/resources/lib/form/breadcrumb-config-outline_zh_CN.properties create mode 100644 core/src/main/resources/lib/hudson/artifactList_zh_CN.properties create mode 100644 core/src/main/resources/lib/layout/breadcrumbBar_zh_CN.properties create mode 100644 core/src/main/resources/lib/layout/progressiveRendering_zh_CN.properties create mode 100644 core/src/main/resources/lib/layout/task_zh_CN.properties create mode 100644 core/src/main/resources/lib/test/bar_zh_CN.properties diff --git a/core/src/main/resources/hudson/PluginManager/index_zh_CN.properties b/core/src/main/resources/hudson/PluginManager/index_zh_CN.properties index afc61956dc..76df8fcfdf 100644 --- a/core/src/main/resources/hudson/PluginManager/index_zh_CN.properties +++ b/core/src/main/resources/hudson/PluginManager/index_zh_CN.properties @@ -24,3 +24,4 @@ All=\u5168\u9009 None=\u5168\u4E0D\u9009 Select=\u9009\u62E9 UpdatePageDescription=\u6B64\u9875\u9762\u663E\u793A\u60A8\u5DF2\u5B89\u88C5\u7684\u63D2\u4EF6\u7684\u53EF\u7528\u66F4\u65B0 +UpdatePageLegend=\u4E0D\u53EF\u64CD\u4F5C\u7684\u884C\u662F\u5DF2\u7ECF\u5347\u7EA7\uFF0C\u7B49\u5F85\u91CD\u542F\u7684\u3002\u7070\u6697\u4F46\u53EF\u4EE5\u9009\u62E9\u7684\u884C\u662F\u6B63\u5728\u5347\u7EA7\u6216\u5347\u7EA7\u5931\u8D25\u7684\u3002 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 483eb88d26..20edd4eb6a 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_zh_CN.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_zh_CN.properties @@ -23,8 +23,12 @@ 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/tabBar_zh_CN.properties b/core/src/main/resources/hudson/PluginManager/tabBar_zh_CN.properties index 457e5e7d7d..45b2aef346 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_zh_CN.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_zh_CN.properties @@ -23,4 +23,4 @@ Advanced=\u9AD8\u7EA7 Available=\u53EF\u9009\u63D2\u4EF6 Installed=\u5DF2\u5B89\u88C5 -Updates=\u66F4\u65B0 +Updates=\u53EF\u66F4\u65B0 diff --git a/core/src/main/resources/hudson/PluginManager/table_zh_CN.properties b/core/src/main/resources/hudson/PluginManager/table_zh_CN.properties index bbe3319d54..54a4c2ca6f 100644 --- a/core/src/main/resources/hudson/PluginManager/table_zh_CN.properties +++ b/core/src/main/resources/hudson/PluginManager/table_zh_CN.properties @@ -22,8 +22,13 @@ Check\ to\ install\ the\ plugin=\u8BF7\u52FE\u9009\u8981\u5B89\u88C5\u7684\u63D2\u4EF6 Click\ this\ heading\ to\ sort\ by\ category=\u70B9\u51FB\u6807\u9898\u6309\u5206\u7C7B\u6392\u5E8F +Download\ now\ and\ install\ after\ restart=\u4E0B\u8F7D\u5F85\u91CD\u542F\u540E\u5B89\u88C5 +Filter=\u8FC7\u6EE4 +Inactive=\u672A\u6FC0\u6D3B Install=\u5B89\u88C5 +Install\ without\ restart=\u76F4\u63A5\u5B89\u88C5 Installed=\u5DF2\u5B89\u88C5 Name=\u540D\u79F0 No\ updates=\u6CA1\u6709\u66F4\u65B0 Version=\u7248\u672C +coreWarning=\u8B66\u544A\uFF1A\u8BE5\u63D2\u4EF6\u53EA\u9002\u7528\u4E8EJenkins{0}\u6216\u66F4\u65B0\u7248\u672C\u3002\u5B83\u53EF\u80FD\u4E0D\u80FD\u6B63\u5E38\u8FD0\u884C\u4E8E\u4F60\u7684Jenkins diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_zh_CN.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_zh_CN.properties new file mode 100644 index 0000000000..1ebe0c9ff0 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_zh_CN.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Manage\ Old\ Data=\u7BA1\u7406\u65E7\u6570\u636E +Name=\u540D\u79F0 +No\ old\ data\ was\ found.=\u672A\u627E\u5230\u65E7\u6570\u636E +Type=\u7C7B\u578B +Version=\u7248\u672C diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_zh_CN.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_zh_CN.properties index 9b09161a80..a0d2ca74c0 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_zh_CN.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_zh_CN.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Dismiss=\u4E0D\u518D\u663E\u793A +Dismiss=\u653E\u5F03 More\ Info=\u66F4\u591A\u4FE1\u606F +blurb=\u53CD\u5411\u4EE3\u7406\u8BBE\u7F6E\u6709\u8BEF diff --git a/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_zh_CN.properties b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_zh_CN.properties new file mode 100644 index 0000000000..2b41052d8f --- /dev/null +++ b/core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_zh_CN.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Install=\u5B89\u88C5 +Install\ as\ Windows\ Service=\u5B89\u88C5\u4E3AWindows\u670D\u52A1 +Installation\ Directory=\u5B89\u88C5\u76EE\u5F55 +installBlurb=\u5C06Jenkins \u5B89\u88C5\u4E3AWindows\u7CFB\u7EDF\u670D\u52A1\u4EE5\u4FBFJenkins\u80FD\u5F00\u673A\u81EA\u52A8\u542F\u52A8\u3002 diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_zh_CN.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_zh_CN.properties index eb55d48411..2818748770 100644 --- a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_zh_CN.properties +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_zh_CN.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\u5C06\u6587\u672C\u4F5C\u4E3AHTML\u5E76\u4E14\u4E0D\u52A0\u4EFB\u4F55\u7FFB\u8BD1 +blurb=\u5C06\u6587\u672C\u4F5C\u4E3A HTML \u5E76\u4E14\u4E0D\u52A0\u4EFB\u4F55\u7FFB\u8BD1 disableSyntaxHighlighting=\u7981\u7528\u8BED\u6CD5\u9AD8\u4EAE diff --git a/core/src/main/resources/hudson/matrix/MatrixBuild/delete_zh_CN.properties b/core/src/main/resources/hudson/matrix/MatrixBuild/delete_zh_CN.properties new file mode 100644 index 0000000000..d34035439c --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixBuild/delete_zh_CN.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Delete\ Build=\u5220\u9664\u6784\u5EFA +Delete\ this\ build\ and\ all\ configurations\ in\ this\ build=\u5220\u9664\u6784\u5EFA\u53CA\u5176\u914D\u7F6E diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_zh_CN.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_zh_CN.properties index b5e048f6e5..6577d3a8dd 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/changes_zh_CN.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_zh_CN.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=\u53D8\u66F4\u96C6 +Changes=\u53D8\u66F4\u8BB0\u5F55 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_zh_CN.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_zh_CN.properties index 872d382780..201e0fbb78 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_zh_CN.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_zh_CN.properties @@ -21,12 +21,14 @@ # THE SOFTWARE. Build=\u6784\u5efa -Build\ Artifacts=\u6784\u5EFA\u4EA7\u7269 +Build\ Artifacts=\u6784\u5EFA\u4EA7\u751F\u6587\u4EF6 Build\ number=\u6784\u5efa\u53f7 Failed\ to\ determine=\u786E\u8BA4\u5931\u8D25 Not\ yet\ determined=\u8FD8\u672A\u786E\u5B9A Permalinks=\u6c38\u4e45\u8fde\u63a5 -Took=\u7528\u65f6 +Took=\u6784\u5EFA\u7528\u65F6\uFF1A +beingExecuted=\u6784\u5EFA\u5DF2\u7ECF\u8FDB\u884C\u4E86{0} +detail=\u8BE6\u7EC6\u5185\u5BB9 log=\u65E5\u5FD7 on=\u8FD0\u884C\u4E8E -startedAgo=\u5f00\u59cb\u4e8e{0}\u524d +startedAgo=\u542F\u52A8\u65F6\u95F4\uFF1A{0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_zh_CN.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_zh_CN.properties index eda2f9490f..7d66b4b014 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_zh_CN.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_zh_CN.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=\u540e\u4e00\u6b21\u6784\u5efa -Previous\ Build=\u524D\u4E00\u6B21\u6267\u884C +Next\ Build=\u540E\u4E00\u6B21\u751F\u6210 +Previous\ Build=\u524D\u4E00\u6B21\u6784\u5EFA diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_zh_CN.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_zh_CN.properties index 05269d74f5..ba9083eca9 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_zh_CN.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_zh_CN.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=\u8FD4\u56DE\u9879\u76EE -Changes=\u53D8\u66F4\u96C6 -Console\ Output=\u63A7\u5236\u53F0\u8F93\u51FA -View\ as\ plain\ text=\u4EE5\u7EAF\u6587\u672C\u65B9\u5F0F\u67E5\u770B -Edit\ Build\ Information=\u7F16\u8F91\u6784\u5EFA\u4FE1\u606F -Status=\u72B6\u6001 -View\ Build\ Information=\u67E5\u770B\u6784\u5EFA\u4FE1\u606F -raw=\u539F\u59CB\u6570\u636E +Back\ to\ Project=\u8FD4\u56DE\u5230\u5DE5\u7A0B +Changes=\u53D8\u66F4\u8BB0\u5F55 +Console\ Output=\u67E5\u514B\u00B7\u8BFA\u91CC\u65AF\u8BF4\uFF1A\u63A7\u5236\u53F0\u8F93\u51FA +View\ as\ plain\ text=\u67E5\u514B\u00B7\u8BFA\u91CC\u65AF\u8BF4\uFF1A\u4EE5\u7EAF\u6587\u672C\u65B9\u5F0F\u67E5\u770B +Edit\ Build\ Information=\u7F16\u8F91\u7F16\u8BD1\u4FE1\u606F +Status=\u72B6\u6001\u96C6 +View\ Build\ Information=\u67E5\u770B\u751F\u6210\u4FE1\u606F +raw=\u539F\u6587\u4EF6 diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_zh_CN.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_zh_CN.properties index 346a1a9851..b903617794 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/configure-common_zh_CN.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_zh_CN.properties @@ -21,3 +21,7 @@ # THE SOFTWARE. Advanced\ Project\ Options=\u9AD8\u7EA7\u9879\u76EE\u9009\u9879 +Display\ Name=\u663E\u793A\u540D\u79F0 +JDK\ to\ be\ used\ for\ this\ project=\u9879\u76EE\u4F7F\u7528\u7684JDK +Restrict\ where\ this\ project\ can\ be\ run=\u6307\u5B9A\u4ECE\u8282\u70B9\u6807\u7B7E +default.value=(\u9ED8\u8BA4) diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_zh_CN.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_zh_CN.properties index b39a0516c2..cb9247d617 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_zh_CN.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_zh_CN.properties @@ -23,4 +23,4 @@ Error\:\ no\ workspace=\u9519\u8BEF\uFF1A\u6CA1\u6709\u5DE5\u4F5C\u7A7A\u95F4 There's\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=\u6B64\u9879\u76EE\u6CA1\u6709\u5DE5\u4F5C\u7A7A\u95F4\u3002\u53EF\u80FD\u7684\u539F\u56E0\u5982\u4E0B\uFF1A li3=\u6B64\u5DE5\u4F5C\u7A7A\u95F4\u7684\u76EE\u5F55({0})\u5728Jenkins\u4E4B\u5916\u88AB\u79FB\u9664 -text=\u6267\u884C\u6784\u5EFA\u4F7FJenkins\u521B\u5EFA\u5DE5\u4F5C\u7A7A\u95F4 +text=\u6267\u884C\u6784\u5EFA\u4F7FJenkins\u521B\u5EFA\u5DE5\u4F5C\u533A diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/editDescription_zh_CN.properties b/core/src/main/resources/hudson/model/AbstractModelObject/editDescription_zh_CN.properties new file mode 100644 index 0000000000..4da5732b2a --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractModelObject/editDescription_zh_CN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Submit=\u63D0\u4EA4 diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/error_zh_CN.properties b/core/src/main/resources/hudson/model/AbstractModelObject/error_zh_CN.properties new file mode 100644 index 0000000000..49aab8bb55 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractModelObject/error_zh_CN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Error=\u51FA\u9519\u5566 diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_zh_CN.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_zh_CN.properties index b5e048f6e5..18857cd640 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_zh_CN.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_zh_CN.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=\u53D8\u66F4\u96C6 +Changes=\u4FEE\u6539\u8BB0\u5F55 diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_zh_CN.properties b/core/src/main/resources/hudson/model/AbstractProject/main_zh_CN.properties index 3f10145194..29cfc12b90 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_zh_CN.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_zh_CN.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Successful\ Artifacts=\u672C\u6B21\u6210\u529F\u751F\u6210 +Last\ Successful\ Artifacts=\u6700\u540E\u4E00\u6B21\u6210\u529F\u7684\u6784\u5EFA\u7ED3\u679C Latest\ Test\ Result=\u6700\u65B0\u6D4B\u8BD5\u7ED3\u679C -Recent\ Changes=\u6700\u8FD1\u53D8\u66F4\u96C6 +Recent\ Changes=\u6700\u65B0\u4FEE\u6539\u8BB0\u5F55 Workspace=\u5DE5\u4F5C\u533A diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_zh_CN.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_zh_CN.properties index 37c875d15b..08f9a336e5 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_zh_CN.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_zh_CN.properties @@ -20,13 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u8fd4\u56de -Build\ scheduled=\u6784\u5efa\u5df2\u5b89\u6392 -Changes=\u53d8\u66f4\u96c6 +Back\ to\ Dashboard=\u8FD4\u56DE\u9762\u677F +Build\ scheduled=\u6784\u5EFA\u8BA1\u5212 +Changes=\u4FEE\u6539\u8BB0\u5F55 Configure=\u914d\u7f6e Status=\u72b6\u6001 View\ Configuration=\u67e5\u770b\u914d\u7f6e -Wipe\ Out\ Workspace=\u6e05\u7a7a\u5de5\u4f5c\u533a -Workspace=\u5de5\u4f5c\u533a +Wipe\ Out\ Workspace=\u6E05\u7406\u5DE5\u4F5C\u7A7A\u95F4 +Workspace=\u5DE5\u4F5C\u7A7A\u95F4 delete=\u5220\u9664 {0} -wipe.out.confirm=\u786e\u5b9a\u60f3\u8981\u6e05\u7a7a\u5de5\u4f5c\u533a\u5417\uff1f +delete.confirm=\u786E\u8BA4\u5220\u9664 {0} \u2018{1}\u2019? +wipe.out.confirm=\u786E\u5B9A\u60F3\u8981\u6E05\u7A7A\u5DE5\u4F5C\u7A7A\u95F4\u5417\uFF1F diff --git a/core/src/main/resources/hudson/model/AllView/noJob_zh_CN.properties b/core/src/main/resources/hudson/model/AllView/noJob_zh_CN.properties index 87b0d3eeb3..be8a0d93bc 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_zh_CN.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_zh_CN.properties @@ -20,5 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Welcome\ to\ Jenkins!=\u6B22\u8FCE\u4F7F\u7528Jenkins\uFF01 -newJob=\u8BF7\u70B9\u51FB \u65B0\u5EFA\u4EFB\u52A1 \u5F00\u59CB\u4F7F\u7528. +Welcome\ to\ Jenkins!=\u6B22\u8FCE\u4F7F\u7528Jenkins! +login=\u767B\u5F55\u4EE5\u521B\u5EFA jobs. +newJob=\u5F00\u59CB\u521B\u5EFA\u4E00\u4E2A\u65B0\u4EFB\u52A1. +signup=\u5982\u679C\u60A8\u8FD8\u6CA1\u6709\u5E10\u6237\uFF0C\u60A8\u73B0\u5728\u53EF\u4EE5\u6CE8\u518C\u3002 diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_zh_CN.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_zh_CN.properties new file mode 100644 index 0000000000..b90ffb3fc5 --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_zh_CN.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +caused_by=\u89E6\u53D1\u6784\u5EFA +started_by_project=\u7531\u4E0A\u6E38\u9879\u76EE {0} \u6784\u5EFA\u53F7 {1} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_zh_CN.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_zh_CN.properties index 08a96b13e8..d51b158857 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_zh_CN.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_zh_CN.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -started_by_anonymous=\u533F\u540D\u7528\u6237\u542F\u52A8 +started_by_anonymous=\u7531\u533F\u540D\u7528\u6237\u89E6\u53D1 started_by_user=\u542f\u52a8\u7528\u6237{1} diff --git a/core/src/main/resources/hudson/model/Computer/builds_zh_CN.properties b/core/src/main/resources/hudson/model/Computer/builds_zh_CN.properties new file mode 100644 index 0000000000..fd2c54e0e5 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/builds_zh_CN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title={0}\u4E0A\u7684\u6784\u5EFA\u5386\u53F2 diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_zh_CN.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_zh_CN.properties index d1d2b9b8a8..547bb7a6f4 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_zh_CN.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_zh_CN.properties @@ -22,8 +22,8 @@ Back\ to\ List=\u8fd4\u56de\u5217\u8868 Build\ History=\u6784\u5efa\u5386\u53f2 -Configure=\u8bbe\u7f6e -Delete\ Slave=\u5220\u9664\u5974\u96b6 +Configure=\u914D\u7F6E\u4ECE\u8282\u70B9 +Delete\ Slave=\u5220\u9664\u5B50\u8282\u70B9 Load\ Statistics=\u8d1f\u8f7d\u7edf\u8ba1 Script\ Console=\u811a\u672c\u547d\u4ee4\u884c Status=\u72b6\u6001 diff --git a/core/src/main/resources/hudson/model/ComputerSet/_new_zh_CN.properties b/core/src/main/resources/hudson/model/ComputerSet/_new_zh_CN.properties new file mode 100644 index 0000000000..79d34d46af --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/_new_zh_CN.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Name=\u540D\u5B57 +Name\ is\ mandatory=\u540D\u79F0\uFF08\u5FC5\u586B\uFF09 diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_zh_CN.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_zh_CN.properties new file mode 100644 index 0000000000..ba65c4e624 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_zh_CN.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +OK=\u786E\u8BA4 +Preventive\ Node\ Monitoring=\u9632\u5FA1\u6027\u8282\u70B9\u68C0\u6D4B diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_zh_CN.properties b/core/src/main/resources/hudson/model/ComputerSet/index_zh_CN.properties index 0aec4d4449..25d63958ff 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_zh_CN.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_zh_CN.properties @@ -21,5 +21,6 @@ # THE SOFTWARE. Configure=\u8BBE\u7F6E +Data\ obtained=\u83B7\u53D6\u5230\u7684\u6570\u636E Name=\u540D\u79F0 Refresh\ status=\u5237\u65B0\u72B6\u6001 diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_zh_CN.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_zh_CN.properties index a1c768b555..c823d04e2c 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_zh_CN.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_zh_CN.properties @@ -22,5 +22,5 @@ Back\ to\ Dashboard=\u8fd4\u56de Manage\ Jenkins=\u7cfb\u7edf\u7ba1\u7406 -Configure=\u8bbe\u7f6e +Configure=\u914D\u7F6E New\ Node=\u65b0\u5efa\u8282\u70b9 diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_zh_CN.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_zh_CN.properties index 1b4722a1e6..745188fb5c 100644 --- a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_zh_CN.properties +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_zh_CN.properties @@ -1,25 +1,23 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -body=\ - \u8fd9\u662fJenkins\u7684\u4e3b\u8981\u529f\u80fd.Jenkins\u5c06\u4f1a\u7ed3\u5408\u4efb\u4f55SCM\u548c\u4f7f\u7528\u4efb\u4f55\u6784\u5efa\u7cfb\u7edf\u6765\u6784\u5efa\u4f60\u7684\u9879\u76ee, \ - \u751a\u81f3\u53ef\u4ee5\u4f7f\u7528\u8f6f\u4ef6\u6784\u5efa\u4ee5\u5916\u7684\u7cfb\u7edf. +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +body=\u8FD9\u662FJenkins\u7684\u4E3B\u8981\u529F\u80FD.Jenkins\u5C06\u4F1A\u7ED3\u5408\u4EFB\u4F55SCM\u548C\u4EFB\u4F55\u6784\u5EFA\u7CFB\u7EDF\u6765\u6784\u5EFA\u4F60\u7684\u9879\u76EE, \u751A\u81F3\u53EF\u4EE5\u6784\u5EFA\u8F6F\u4EF6\u4EE5\u5916\u7684\u7CFB\u7EDF. diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_zh_CN.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_zh_CN.properties index 5152e46224..89dd54c9e5 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_zh_CN.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_zh_CN.properties @@ -21,4 +21,6 @@ # THE SOFTWARE. Build=\u6784\u5efa +Build\ Time\ Trend=\u6784\u5EFA\u65F6\u95F4\u8D8B\u52BF Duration=\u6301\u7eed\u65f6\u95f4 +Timeline=\u65F6\u95F4\u8F74 diff --git a/core/src/main/resources/hudson/model/Job/configure_zh_CN.properties b/core/src/main/resources/hudson/model/Job/configure_zh_CN.properties index 3cbfde6247..68143f6235 100644 --- a/core/src/main/resources/hudson/model/Job/configure_zh_CN.properties +++ b/core/src/main/resources/hudson/model/Job/configure_zh_CN.properties @@ -22,6 +22,7 @@ Description=\u63CF\u8FF0 Discard\ Old\ Builds=\u4E22\u5F03\u65E7\u7684\u6784\u5EFA -LOADING=\u8F7D\u5165\u4E2D +LOADING=\u52A0\u8F7D\u4E2D Save=\u4FDD\u5B58 -name={0}\u540D\u79F0 +Strategy=\u7B56\u7565 +name=\u9879\u76EE\u540D\u79F0 diff --git a/core/src/main/resources/hudson/model/Job/index_zh_CN.properties b/core/src/main/resources/hudson/model/Job/index_zh_CN.properties new file mode 100644 index 0000000000..76e27e45d5 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_zh_CN.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Disable\ Project=\u7981\u7528\u9879\u76EE +Project\ name=\u9879\u76EE\u540D\u79F0 diff --git a/core/src/main/resources/hudson/model/Job/permalinks_zh_CN.properties b/core/src/main/resources/hudson/model/Job/permalinks_zh_CN.properties index 70f08c4c25..a743d1c687 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_zh_CN.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_zh_CN.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Permalinks=\u6C38\u4E45\u8FDE\u63A5 +Permalinks=\u76F8\u5173\u8FDE\u63A5 diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_zh_CN.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_zh_CN.properties index c7ba814fff..ef3bfb7ba1 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_zh_CN.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_zh_CN.properties @@ -21,3 +21,11 @@ # THE SOFTWARE. Add\ column=\u6DFB\u52A0\u5217 +All\ selected\ jobs=\u6240\u6709\u9009\u62E9\u7684Jobs +Columns=\u5217 +Disabled\ jobs\ only=\u53EA\u663E\u793A\u7981\u7528\u7684Jobs +Enabled\ jobs\ only=\u53EA\u663E\u793A\u542F\u7528\u7684Jobs +Job\ Filters=Job\u8FC7\u6EE4\u5668 +Regular\ expression=\u6B63\u5219\u8868\u8FBE\u5F0F +Status\ Filter=\u72B6\u6001\u8FC7\u6EE4 +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=\u4F7F\u7528\u6B63\u5219\u8868\u8FBE\u5F0F\u5728\u89C6\u56FE\u4E2D\u663E\u793AJobs diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_zh_CN.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_zh_CN.properties index fd67a95ec0..672dd28939 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_zh_CN.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_zh_CN.properties @@ -25,4 +25,7 @@ Long=\u957F Medium=\u4E2D Short=\u77ED Timespan=\u65F6\u95F4\u95F4\u9694 +blurb=\u8D1F\u8F7D\u7EDF\u8BA1\u6301\u7EED\u8DDF\u8E2A\u8D44\u6E90\u6682\u7528\u7684\u4E09\u4E2A\u6838\u5FC3\u6570\u636E\uFF1A +\u6267\u884C\u603B\u6570\uFF1A + \u8FD9\u4E2A\u6570\u503C\u4EE3\u8868\u4E00\u53F0\u8BA1\u7B97\u673A\u7684\u6267\u884C\u5355\u5143\u6570\u503C title=\u8D1F\u8F7D\u7EDF\u8BA1:{0} diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/newView_zh_CN.properties b/core/src/main/resources/hudson/model/MyViewsProperty/newView_zh_CN.properties index 3fce044575..809ee9a343 100644 --- a/core/src/main/resources/hudson/model/MyViewsProperty/newView_zh_CN.properties +++ b/core/src/main/resources/hudson/model/MyViewsProperty/newView_zh_CN.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -View\ name=View \u540D\u79F0 +View\ name=\u89C6\u56FE\u540D\u79F0 diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_zh_CN.properties b/core/src/main/resources/hudson/model/ParametersAction/index_zh_CN.properties new file mode 100644 index 0000000000..a798e8e216 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersAction/index_zh_CN.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Build=\u6267\u884C +Parameters=\u6784\u5EFA\u53C2\u6570 diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_zh_CN.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_zh_CN.properties index 9cf593e10c..b760379d98 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_zh_CN.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_zh_CN.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add\ Parameter=\u589E\u52A0\u53C2\u6570 +Add\ Parameter=\u6DFB\u52A0\u53C2\u6570 This\ build\ is\ parameterized=\u53C2\u6570\u5316\u6784\u5EFA\u8FC7\u7A0B diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_zh_CN.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_zh_CN.properties new file mode 100644 index 0000000000..b7919804a2 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_zh_CN.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Build=\u5F00\u59CB\u6784\u5EFA +LOADING=\u8F7D\u5165 +description=\u9700\u8981\u5982\u4E0B\u53C2\u6570\u7528\u4E8E\u6784\u5EFA\u9879\u76EE: diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_zh_CN.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_zh_CN.properties index 94705be936..43b90f890c 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_zh_CN.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_zh_CN.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -format={0}({1}),{2}\u524D +format={0}({1}),{2}\u4E4B\u524D diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_zh_CN.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_zh_CN.properties index 05600b65b6..41cf883a61 100644 --- a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_zh_CN.properties +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_zh_CN.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Keep\ this\ build\ forever=\u6C38\u4E45\u4FDD\u7559\u6B64\u6B21\u6784\u5EFA +Keep\ this\ build\ forever=\u6C38\u4E45\u4FDD\u5B58\u6B64\u6B21\u7F16\u8BD1 diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_zh_CN.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_zh_CN.properties index 53df455935..6b705c7acc 100644 --- a/core/src/main/resources/hudson/model/Run/confirmDelete_zh_CN.properties +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_zh_CN.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ deleting\ the\ build?=\u4F60\u786E\u5B9E\u5E0C\u671B\u5220\u9664\u5F53\u524D\u6784\u5EFA? -Yes=\u786E\u8BA4 +Are\ you\ sure\ about\ deleting\ the\ build?=\u4F60\u662F\u5426\u786E\u5B9A\u8981\u5220\u9664\u5F53\u524D\u6784\u5EFA\uFF1F +Yes=\u786E\u5B9A diff --git a/core/src/main/resources/hudson/model/Run/console_zh_CN.properties b/core/src/main/resources/hudson/model/Run/console_zh_CN.properties index 50dd98d86f..257c1f4062 100644 --- a/core/src/main/resources/hudson/model/Run/console_zh_CN.properties +++ b/core/src/main/resources/hudson/model/Run/console_zh_CN.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u63A7\u5236\u53F0\u8F93\u51FA +Console\ Output=\u67E5\u514B\u00B7\u8BFA\u91CC\u65AF\u8BF4\uFF1A\u63A7\u5236\u53F0\u8F93\u51FA +skipSome=\u8DF3\u8FC7 {0,number,integer} KB.. \u5B8C\u6574\u65E5\u5FD7 diff --git a/core/src/main/resources/hudson/model/Run/delete_zh_CN.properties b/core/src/main/resources/hudson/model/Run/delete_zh_CN.properties index 267eb056c4..be22c42d22 100644 --- a/core/src/main/resources/hudson/model/Run/delete_zh_CN.properties +++ b/core/src/main/resources/hudson/model/Run/delete_zh_CN.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=\u5220\u9664\u672c\u6b21\u6784\u5efa +Delete\ this\ build=\u5220\u9664\u672C\u6B21\u751F\u6210 diff --git a/core/src/main/resources/hudson/model/Run/logKeep_zh_CN.properties b/core/src/main/resources/hudson/model/Run/logKeep_zh_CN.properties index c2c8ec8014..5a043373e5 100644 --- a/core/src/main/resources/hudson/model/Run/logKeep_zh_CN.properties +++ b/core/src/main/resources/hudson/model/Run/logKeep_zh_CN.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Keep\ this\ build\ forever=\u6C38\u4E45\u4FDD\u7559\u5F53\u524D\u6784\u5EFA +Don''t\ keep\ this\ build\ forever=\u53D6\u6D88\u6C38\u4E45\u4FDD\u7559 +Keep\ this\ build\ forever=\u6C38\u4E45\u4FDD\u7559\u8FD9\u6B21\u7F16\u8BD1 diff --git a/core/src/main/resources/hudson/model/StringParameterDefinition/config_zh_CN.properties b/core/src/main/resources/hudson/model/StringParameterDefinition/config_zh_CN.properties new file mode 100644 index 0000000000..43c49864a8 --- /dev/null +++ b/core/src/main/resources/hudson/model/StringParameterDefinition/config_zh_CN.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Default\ Value=\u9ED8\u8BA4\u503C +Description=\u63CF\u8FF0 +Name=\u540D\u5B57 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_zh_CN.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_zh_CN.properties new file mode 100644 index 0000000000..f9411461aa --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_zh_CN.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +NewVersionAvailable=Jenkins\u65B0\u7248\u672C ({0})\u53EF\u70B9\u51FB download (\u53D8\u66F4\u8BF4\u660E)\u4E0B\u8F7D\u3002 +Or\ Upgrade\ Automatically=\u6216 \u81EA\u52A8\u5347\u7EA7\u7248\u672C +UpgradeComplete=Jenkins {0} \u7248\u672C\u5347\u7EA7\u5DF2\u5B8C\u6210,\u7B49\u5F85\u91CD\u542F\u4E2D. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_zh_CN.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_zh_CN.properties new file mode 100644 index 0000000000..786ad6f920 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_zh_CN.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Details=\u8BE6\u7EC6 +Failure=\u5931\u8D25 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_zh_CN.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_zh_CN.properties index 2d7aff4539..1992f0236d 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_zh_CN.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_zh_CN.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -warning=\u5F53\u5B89\u88C5\u6210\u529F\u5E76\u4E14\u6CA1\u6709\u8FD0\u884C\u4E2D\u7684\u4EFB\u52A1\u65F6\u91CD\u542FJenkins +Go\ back\ to\ the\ top\ page=\u8FD4\u56DE\u9996\u9875 +warning=\u5B89\u88C5\u5B8C\u6210\u540E\u91CD\u542FJenkins(\u7A7A\u95F2\u65F6) +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=\u8FD4\u56DE\u9996\u9875\u4F7F\u7528\u5DF2\u7ECF\u5B89\u88C5\u597D\u7684\u63D2\u4EF6 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_zh_CN.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_zh_CN.properties index f41211d40e..760601e6ae 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_zh_CN.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_zh_CN.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing\ Plugins/Upgrades=\u5B89\u88C5\u63D2\u4EF6/\u5347\u7EA7 +Installing\ Plugins/Upgrades=\u5B89\u88C5/\u66F4\u65B0 \u63D2\u4EF6\u4E2D diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_zh_CN.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_zh_CN.properties index aaded27293..37d6238582 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_zh_CN.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_zh_CN.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=\u8FD4\u56DE\u63A7\u5236\u53F0 +Back\ to\ Dashboard=\u8FD4\u56DE Manage\ Jenkins=\u7cfb\u7edf\u7ba1\u7406 Manage\ Plugins=\u7BA1\u7406\u63D2\u4EF6 diff --git a/core/src/main/resources/hudson/model/User/configure_zh_CN.properties b/core/src/main/resources/hudson/model/User/configure_zh_CN.properties new file mode 100644 index 0000000000..c81fc81ef8 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/configure_zh_CN.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Description=\u63CF\u8FF0 +Your\ name=\u8D26\u53F7\u540D\u79F0 diff --git a/core/src/main/resources/hudson/model/User/index_zh_CN.properties b/core/src/main/resources/hudson/model/User/index_zh_CN.properties index 546b77bf7b..a4f9f03909 100644 --- a/core/src/main/resources/hudson/model/User/index_zh_CN.properties +++ b/core/src/main/resources/hudson/model/User/index_zh_CN.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ User\ Id=Jenkins\u7528\u6237Id +Jenkins\ User\ Id=Jenkins \u7528\u6237 Id diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_zh_CN.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_zh_CN.properties index cb621d1b9d..8c79dbcf4d 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_zh_CN.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_zh_CN.properties @@ -24,4 +24,5 @@ Last\ Active=\u6700\u540E\u6D3B\u52A8\u65F6\u95F4 Name=\u540D\u79F0 On=\u5728\u7EBF People=\u7528\u6237 -User\ Id=\u7528\u6237Id +User\ Id=\u7528\u6237\u6807\u8BC6 +blurb=\u5305\u542B\u6240\u6709\u5DF2\u77E5\u201C\u7528\u6237\u201D\uFF0C\u5305\u62EC\u5F53\u524D\u5B89\u5168\u57DF\u4E2D\u7684\u767B\u5F55ID\u548C\u5728\u53D8\u66F4\u8BB0\u5F55\u7684\u63D0\u4EA4\u4FE1\u7684\u606F\u91CC\u7684\u4EBA diff --git a/core/src/main/resources/hudson/model/View/People/index_zh_CN.properties b/core/src/main/resources/hudson/model/View/People/index_zh_CN.properties new file mode 100644 index 0000000000..2e47d4791b --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_zh_CN.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +All\ People=\u5168\u90E8\u7528\u6237 +Last\ Active=\u4E0A\u6B21\u6D3B\u6C83\u65F6\u95F4 +Name=\u7528\u6237\u540D +People=\u7528\u6237 +User\ Id=\u7528\u6237\u540D diff --git a/core/src/main/resources/hudson/model/View/builds_zh_CN.properties b/core/src/main/resources/hudson/model/View/builds_zh_CN.properties index 215bac5af3..fca6a32716 100644 --- a/core/src/main/resources/hudson/model/View/builds_zh_CN.properties +++ b/core/src/main/resources/hudson/model/View/builds_zh_CN.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Export\ as\ plain\ XML=\u5BFC\u51FAXML +Export\ as\ plain\ XML=\u5BFC\u51FA\u4E3AXML buildHistory={0} \u7684\u6784\u5efa\u5386\u53f2 diff --git a/core/src/main/resources/hudson/model/View/configure_zh_CN.properties b/core/src/main/resources/hudson/model/View/configure_zh_CN.properties new file mode 100644 index 0000000000..ad1c9b7dc2 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/configure_zh_CN.properties @@ -0,0 +1,7 @@ +# This file is under the MIT License by authors + +Description=\u63CF\u8FF0 +Filter\ build\ executors=\u8FC7\u6EE4\u6784\u5EFA\u6267\u884C\u5668 +Filter\ build\ queue=\u8FC7\u6EE4\u6784\u5EFA\u961F\u5217 +Name=\u540D\u79F0 +OK=\u4FDD\u5B58 diff --git a/core/src/main/resources/hudson/model/View/newJob_zh_CN.properties b/core/src/main/resources/hudson/model/View/newJob_zh_CN.properties index 811fa1d757..87e0d02f0a 100644 --- a/core/src/main/resources/hudson/model/View/newJob_zh_CN.properties +++ b/core/src/main/resources/hudson/model/View/newJob_zh_CN.properties @@ -22,6 +22,6 @@ #CopyExisting=\u590D\u5236\u73B0\u6709\u4EFB\u52A1 #JobName=\u4EFB\u52A1\u540D\u79F0 -CopyExisting=\u62F7\u8D1D\u5DF2\u5B58\u5728\u4EFB\u52A1 +CopyExisting=\u590D\u5236\u5DF2\u6709\u7684{0} -JobName=\u4EFB\u52A1\u540D\u79F0 +JobName={0}\u540D\u79F0 diff --git a/core/src/main/resources/hudson/model/View/noJob_zh_CN.properties b/core/src/main/resources/hudson/model/View/noJob_zh_CN.properties new file mode 100644 index 0000000000..f4d55a81c4 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/noJob_zh_CN.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +description_1=\u8BE5\u89C6\u56FE\u4E0B\u76EE\u524D\u6CA1\u6709\u76F8\u5173\u7684\u4EFB\u52A1\u3002 +description_2=\u4F60\u53EF\u4EE5\u6DFB\u52A0\u73B0\u6709\u7684\u4EFB\u52A1\u5230\u8BE5\u89C6\u56FE\u4E2D\u6216\u8005\u5728\u8BE5\u8BE5\u89C6\u56FE\u4E2D\u521B\u5EFA\u4E00\u4E2A\u65B0\u7684\u4EFB\u52A1\u3002 diff --git a/core/src/main/resources/hudson/model/View/sidepanel_zh_CN.properties b/core/src/main/resources/hudson/model/View/sidepanel_zh_CN.properties index 1179c1fe9a..b31b076fe1 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_zh_CN.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_zh_CN.properties @@ -23,7 +23,7 @@ Build\ History=\u4EFB\u52A1\u5386\u53F2 Check\ File\ Fingerprint=\u68C0\u67E5\u6587\u4EF6\u6307\u7EB9 Delete\ View=\u5220\u9664\u89C6\u56FE -Edit\ View=\u7F16\u8F91\u4EFB\u52A1\u5217\u8868 -NewJob=\u65B0{0} -People=\u67E5\u770B\u7528\u6237 -Project\ Relationship=\u9879\u76EE\u7684\u5173\u7CFB +Edit\ View=\u7F16\u8F91\u89C6\u56FE +NewJob=\u65B0\u5EFA +People=\u7528\u6237 +Project\ Relationship=\u9879\u76EE\u5173\u7CFB diff --git a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_zh_CN.properties b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_zh_CN.properties new file mode 100644 index 0000000000..62039bac23 --- /dev/null +++ b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_zh_CN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Free\ Space\ Threshold=\u6700\u5C0F\u53EF\u7528\u7A7A\u95F4 diff --git a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_zh_CN.properties b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_zh_CN.properties new file mode 100644 index 0000000000..61e902bdca --- /dev/null +++ b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_zh_CN.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Dismiss=\u5FFD\u7565 +blurb=Jenkins\u4F1A\u8BA9\u5065\u5EB7\u6570\u636E \u4F4E\u4E8E\u4E34\u754C\u503C\u7684slaves \u673A\u5668\u79BB\u7EBF \u3002\u5982\u679C\u4F60\u4E0D\u5E0C\u671B Jenkins \u8FD9\u6837\u505A\uFF0C \u8BF7\u66F4\u6539\u8BBE\u7F6E. diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_zh_CN.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_zh_CN.properties index f49c6977bb..89f54c5078 100644 --- a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_zh_CN.properties +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_zh_CN.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ changes.=\u6CA1\u6709\u6539\u53D8\u3002 +No\ changes.=\u6CA1\u6709\u53D8\u5316\u3002 diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_zh_CN.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_zh_CN.properties index fa0f98b1f6..7262342d01 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_zh_CN.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_zh_CN.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. No\ changes\ in\ any\ of\ the\ builds.=\u6CA1\u6709\u4EFB\u4F55\u53D8\u66F4\u3002 +detail=\u8BE6\u7EC6\u4FE1\u606F diff --git a/core/src/main/resources/hudson/search/UserSearchProperty/config_zh_CN.properties b/core/src/main/resources/hudson/search/UserSearchProperty/config_zh_CN.properties new file mode 100644 index 0000000000..cf758a77fc --- /dev/null +++ b/core/src/main/resources/hudson/search/UserSearchProperty/config_zh_CN.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Case-sensitivity=\u5927\u5C0F\u5199\u533A\u5206 +Insensitive\ search\ tool=\u641C\u7D22\u4E0D\u533A\u5206\u5927\u5C0F\u5199 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_zh_CN.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_zh_CN.properties index 522254bd0d..52b283a774 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_zh_CN.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_zh_CN.properties @@ -21,3 +21,6 @@ # THE SOFTWARE. Name=\u540d\u79f0 +User\ Id=\u7528\u6237ID +Users=\u7528\u6237\u5217\u8868 +blurb=\u8FD9\u4E9B\u7528\u6237\u80FD\u591F\u767B\u5F55\u5230Jenkins\u3002\u8FD9\u662F\u5217\u8868\u7684\u5B50\u96C6\uFF0C\u4E5F\u5305\u62EC\u90A3\u4E9B\u53EA\u662F\u63D0\u4EA4\u4E86\u4EE3\u7801\u5230\u67D0\u4E9B\u9879\u76EE\u4F46\u662F\u4ECE\u672A\u767B\u5F55Jenkins\u800C\u81EA\u52A8\u521B\u5EFA\u7684\u7528\u6237\u3002 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_zh_CN.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_zh_CN.properties index 687ebda43d..74be461a52 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_zh_CN.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_zh_CN.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Create\ User=\u65b0\u5efa\u4f7f\u7528\u8005 -Manage\ Jenkins=\u7cfb\u7edf\u7ba1\u7406 \ No newline at end of file +Back\ to\ Dashboard=\u8FD4\u56DE\u9762\u677F +Create\ User=\u65B0\u5EFA\u7528\u6237 +Manage\ Jenkins=\u7cfb\u7edf\u7ba1\u7406 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_zh_CN.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_zh_CN.properties index 0602a18efa..5aae56d59b 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_zh_CN.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/success_zh_CN.properties @@ -1,23 +1,24 @@ -# 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. - -description=\u4f60\u73b0\u5728\u5df2\u7ecf\u767b\u5f55.\u8fd4\u56de\u9996\u9875. \ No newline at end of file +# 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. + +Success=\u64CD\u4F5C\u6210\u529F +description=\u4f60\u73b0\u5728\u5df2\u7ecf\u767b\u5f55.\u8fd4\u56de\u9996\u9875. diff --git a/core/src/main/resources/hudson/security/LegacySecurityRealm/config_zh_CN.properties b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_zh_CN.properties new file mode 100644 index 0000000000..6a7d746893 --- /dev/null +++ b/core/src/main/resources/hudson/security/LegacySecurityRealm/config_zh_CN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Unprotected\ URLs=\u4E0D\u53D7\u4FDD\u62A4\u7684\u94FE\u63A5 diff --git a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_zh_CN.properties b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_zh_CN.properties new file mode 100644 index 0000000000..d7b627e8d1 --- /dev/null +++ b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_zh_CN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Enable\ proxy\ compatibility=\u6FC0\u6D3B\u4EE3\u7406\u517C\u5BB9 diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_zh_CN.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_zh_CN.properties new file mode 100644 index 0000000000..33e11861fc --- /dev/null +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_zh_CN.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +Description=\u63CF\u8FF0 +Labels=\u6807\u7B7E +Launch\ method=\u542F\u52A8\u65B9\u6CD5 +Remote\ FS\ root=\u8FDC\u7A0B\u5DE5\u4F5C\u76EE\u5F55 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 513a253e2a..3d6d6b76d8 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=\u540d\u503c\u5bf9\u5217\u8868 -name=\u540d +List\ of\ key-value\ pairs=\u952E\u503C\u5BF9\u5217\u8868 +name=\u952E value=\u503c diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/config_zh_CN.properties b/core/src/main/resources/hudson/tasks/ArtifactArchiver/config_zh_CN.properties index e89b7bb242..249023e88b 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/config_zh_CN.properties +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/config_zh_CN.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Excludes=\u4E0D\u5305\u542B Files\ to\ archive=\u7528\u4E8E\u5B58\u6863\u7684\u6587\u4EF6 lastBuildOnly=\u53EA\u4FDD\u7559\u6700\u65B0\u7684\u6210\u529F/\u7A33\u5B9A\u53D1\u5E03\u5305\u4EE5\u8282\u7701\u78C1\u76D8\u7A7A\u95F4 diff --git a/core/src/main/resources/hudson/tasks/BatchFile/config_zh_CN.properties b/core/src/main/resources/hudson/tasks/BatchFile/config_zh_CN.properties index 5e49f75ff9..0ae2866a5e 100644 --- a/core/src/main/resources/hudson/tasks/BatchFile/config_zh_CN.properties +++ b/core/src/main/resources/hudson/tasks/BatchFile/config_zh_CN.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Command=\u547D\u4EE4 +description=\u53C2\u9605 \u53EF\u7528\u73AF\u5883\u53D8\u91CF\u5217\u8868 diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_zh_CN.properties b/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_zh_CN.properties new file mode 100644 index 0000000000..26183207e0 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_zh_CN.properties @@ -0,0 +1,9 @@ +# This file is under the MIT License by authors + +Age=\u6784\u5EFA\u5386\u53F2 +File=\u6587\u4EF6 +Original\ owner=\u539F\u4E3B +Recorded\ Fingerprints=\u6587\u4EF6\u6307\u7EB9\u6863\u6848 +more\ details=\u8BE6\u7EC6\u4FE1\u606F +outside\ Jenkins=\u975Ejenkins +this\ build=\u672C\u6B21\u6784\u5EFA diff --git a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_zh_CN.properties b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_zh_CN.properties new file mode 100644 index 0000000000..82d1402b13 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_zh_CN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +took=\u8FD0\u884C\u65F6\u95F4\uFF1A{0} diff --git a/core/src/main/resources/hudson/tasks/junit/ClassResult/body_zh_CN.properties b/core/src/main/resources/hudson/tasks/junit/ClassResult/body_zh_CN.properties new file mode 100644 index 0000000000..393449ba76 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/junit/ClassResult/body_zh_CN.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +All\ Tests=\u6D4B\u8BD5\u7528\u4F8B +Duration=\u8FD0\u884C\u65F6\u95F4 +Status=\u7ED3\u679C +Test\ name=\u6D4B\u8BD5\u540D\u79F0 diff --git a/core/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/config_zh_CN.properties b/core/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/config_zh_CN.properties index caa156f9c6..201bac8594 100644 --- a/core/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/config_zh_CN.properties +++ b/core/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/config_zh_CN.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Retain\ long\ standard\ output/error=\u4FDD\u7559\u957F\u7684\u6807\u51C6\u8F93\u51FA/\u9519\u8BEF +Test\ report\ XMLs=\u6D4B\u8BD5\u62A5\u544A\uFF08XML\uFF09 diff --git a/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_zh_CN.properties b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_zh_CN.properties new file mode 100644 index 0000000000..7174b44f70 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_zh_CN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Show\ all\ failed\ tests=\u663E\u793A\u5168\u90E8\u5931\u8D25\u5355\u5143\u6D4B\u8BD5 diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_zh_CN.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_zh_CN.properties new file mode 100644 index 0000000000..1372abf749 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_zh_CN.properties @@ -0,0 +1,12 @@ +# This file is under the MIT License by authors + +Age=\u5BFF\u547D +All\ Failed\ Tests=\u6240\u6709\u5931\u8D25\u7684\u6D4B\u8BD5 +All\ Tests=\u6240\u6709\u7684\u6D4B\u8BD5 +Duration=\u82B1\u7684\u65F6\u95F4 +Fail=\u5931\u8D25 +Loading...=\u8C03\u7528\u4E2D +Skip=\u8DF3\u8FC7 +Test\ Name=\u6D4B\u8BD5\u7684\u540D\u79F0 +Total=\u603B\u6570 +diff=\u533A\u522B diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_zh_CN.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_zh_CN.properties index 119242bd3d..c5d3f86cc8 100644 --- a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_zh_CN.properties +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_zh_CN.properties @@ -21,4 +21,5 @@ # THE SOFTWARE. History=\u5386\u53F2\u8BB0\u5F55 -Previous\ Build=\u4E0A\u6B21\u6784\u5EFA +Next\ Build=\u540E\u4E00\u6B21\u6784\u5EFA +Previous\ Build=\u4E0A\u4E00\u6B21\u6784\u5EFA diff --git a/core/src/main/resources/hudson/tasks/test/TestResult/index_zh_CN.properties b/core/src/main/resources/hudson/tasks/test/TestResult/index_zh_CN.properties new file mode 100644 index 0000000000..c84c6904dd --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResult/index_zh_CN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +took=\u82B1\u4E86 diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_zh_CN.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_zh_CN.properties index 63e16512bc..3e5a807075 100644 --- a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_zh_CN.properties +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_zh_CN.properties @@ -22,5 +22,5 @@ Test\ Result\ Trend=\u6D4B\u8BD5\u7ED3\u679C\u8D8B\u52BF enlarge=\u653E\u5927 -just\ show\ failures=\u53EA\u663E\u793A\u5931\u8D25\u7684 +just\ show\ failures=\u53EA\u663E\u793A\u5931\u8D25 show\ test\ #\ and\ failure\ #=\u663E\u793A\u6D4B\u8BD5\u548C\u5931\u8D25\u6570\u76EE diff --git a/core/src/main/resources/hudson/tools/JDKInstaller/config_zh_CN.properties b/core/src/main/resources/hudson/tools/JDKInstaller/config_zh_CN.properties index d59a6a7500..8a93bead72 100644 --- a/core/src/main/resources/hudson/tools/JDKInstaller/config_zh_CN.properties +++ b/core/src/main/resources/hudson/tools/JDKInstaller/config_zh_CN.properties @@ -1,3 +1,2 @@ Version=\u7248\u672c -I\ agree\ to\ the\ Java\ SE\ Development\ Kit\ License\ Agreement=\ - \u6211\u540c\u610fJava SE Development Kit\u7684\u8bb8\u53ef\u534f\u8bae +I\ agree\ to\ the\ Java\ SE\ Development\ Kit\ License\ Agreement=\u6211\u540C\u610F Java SE Development Kit \u7684\u8BB8\u53EF\u534F\u8BAE diff --git a/core/src/main/resources/hudson/tools/ToolInstallation/global_zh_CN.properties b/core/src/main/resources/hudson/tools/ToolInstallation/global_zh_CN.properties index 7e859c14a1..101b7c0544 100644 --- a/core/src/main/resources/hudson/tools/ToolInstallation/global_zh_CN.properties +++ b/core/src/main/resources/hudson/tools/ToolInstallation/global_zh_CN.properties @@ -1,26 +1,26 @@ -# 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. - -title={0} \u5b89\u88c5 -description=\u7cfb\u7edf\u4e0b {0} \u5b89\u88c5\u5217\u8868 -label.add=\u65b0\u589e {0} -label.delete=\u5220\u9664 {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. + +title={0} \u5b89\u88c5 +description=\u7CFB\u7EDF\u4E0B{0} \u5B89\u88C5\u5217\u8868 +label.add=\u65b0\u589e {0} +label.delete=\u5220\u9664 {0} diff --git a/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_zh_CN.properties b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_zh_CN.properties index 32161e46fc..68bb205d00 100644 --- a/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_zh_CN.properties +++ b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_zh_CN.properties @@ -1,25 +1,25 @@ -# 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. - -List\ of\ tool\ locations=\u672c\u5730\u5de5\u5177\u5217\u8868 -Name=\u522b\u540d -Home=\u76ee\u5f55 +# 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. + +List\ of\ tool\ locations=\u5DE5\u5177\u4F4D\u7F6E\u5217\u8868 +Name=\u540D\u79F0 +Home=\u76ee\u5f55 diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_zh_CN.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_zh_CN.properties new file mode 100644 index 0000000000..6a139eb916 --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_zh_CN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +title=9999999999999 diff --git a/core/src/main/resources/hudson/util/HudsonIsLoading/index_zh_CN.properties b/core/src/main/resources/hudson/util/HudsonIsLoading/index_zh_CN.properties new file mode 100644 index 0000000000..a19e0c0f16 --- /dev/null +++ b/core/src/main/resources/hudson/util/HudsonIsLoading/index_zh_CN.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +Please\ wait\ while\ Jenkins\ is\ getting\ ready\ to\ work=Jenkins\u6B63\u5728\u542F\u52A8\uFF0C\u8BF7\u7A0D\u540E... +Your\ browser\ will\ reload\ automatically\ when\ Jenkins\ is\ ready.=Jenkins\u542F\u52A8\u5B8C\u6210\u540E\u6D4F\u89C8\u5668\u5C06\u81EA\u52A8\u5237\u65B0 diff --git a/core/src/main/resources/hudson/util/HudsonIsRestarting/index_zh_CN.properties b/core/src/main/resources/hudson/util/HudsonIsRestarting/index_zh_CN.properties new file mode 100644 index 0000000000..4049dcf1b2 --- /dev/null +++ b/core/src/main/resources/hudson/util/HudsonIsRestarting/index_zh_CN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Your\ browser\ will\ reload\ automatically\ when\ Jenkins\ is\ ready.=\u5F53Jenkins\u5C31\u7EEA\u7684\u65F6\u5019\uFF0C\u4F60\u7684\u6D4F\u89C8\u5668\u4F1A\u81EA\u52A8\u5237\u65B0 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 index 1c676038a8..307d778972 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_zh_CN.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_zh_CN.properties @@ -20,4 +20,6 @@ # 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 +Schedule\ a\ build\ with\ parameters=\u8BA1\u5212\u4E00\u6B21\u5E26\u53C2\u6570\u7684\u6784\u5EFA diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_zh_CN.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_zh_CN.properties index 563905c8d0..5a8256b576 100644 --- a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_zh_CN.properties +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_zh_CN.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -New\ View=\u65B0\u89C6\u56FE +New\ View=\u65B0\u5EFA\u89C6\u56FE diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_zh_CN.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_zh_CN.properties index 75a0ab9360..5a8256b576 100644 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_zh_CN.properties +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_zh_CN.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -New\ View=\u521B\u5EFA\u4E00\u4E2A\u65B0\u89C6\u56FE +New\ View=\u65B0\u5EFA\u89C6\u56FE diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_zh_CN.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_zh_CN.properties new file mode 100644 index 0000000000..1188f1b183 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_zh_CN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=\u65E0 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_zh_CN.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_zh_CN.properties index c037a6f952..7b70b79134 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/column_zh_CN.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_zh_CN.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=\u6CA1\u6709 +N/A=\u65E0 diff --git a/core/src/main/resources/hudson/views/LastStableColumn/columnHeader_zh_CN.properties b/core/src/main/resources/hudson/views/LastStableColumn/columnHeader_zh_CN.properties new file mode 100644 index 0000000000..9ca68bea5a --- /dev/null +++ b/core/src/main/resources/hudson/views/LastStableColumn/columnHeader_zh_CN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Last\ Stable=\u4E0A\u6B21\u6210\u529F diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_zh_CN.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_zh_CN.properties new file mode 100644 index 0000000000..ff31e23157 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_zh_CN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +N/A=\u6CA1\u6709 diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_zh_CN.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_zh_CN.properties index 52c3cf1010..a59cd56ef2 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_zh_CN.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_zh_CN.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=\u6700\u65B0\u6784\u5EFA\u72B6\u6001 +Status\ of\ the\ last\ build=\u4E0A\u6B21\u6784\u5EFA\u72B6\u6001 diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_zh_CN.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_zh_CN.properties index 01a463a302..7da9858119 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_zh_CN.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_zh_CN.properties @@ -20,4 +20,4 @@ # 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=\u62A5\u544A\u4E2D\u662F\u5426\u663E\u793A\u6700\u8FD1\u6784\u5EFA\u7684\u96C6\u6210\u72B6\u6001 +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u7F16\u8BD1\u6674\u96E8\u8868 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_zh_CN.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_zh_CN.properties index 45f6b6d81a..6ad6d3a61d 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_zh_CN.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_zh_CN.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -More\ ...=\u66F4\u591A ... +More\ ...=\u66F4\u591A... for\ all=\u5168\u90E8 for\ failures=\u5931\u8D25 -trend=\u8D8B\u52BF\u56FE +trend=\u6784\u5EFA\u5386\u53F2 diff --git a/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_zh_CN.properties b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_zh_CN.properties new file mode 100644 index 0000000000..920e3df570 --- /dev/null +++ b/core/src/main/resources/jenkins/diagnostics/SecurityIsOffMonitor/message_zh_CN.properties @@ -0,0 +1,5 @@ +# This file is under the MIT License by authors + +Dismiss=\u5FFD\u7565 +Setup\ Security=\u5B89\u5168\u8BBE\u7F6E +blurb=\u4E0D\u5B89\u5168\u7684Jenkins\u5141\u8BB8\u7F51\u7EDC\u4E0A\u7684\u4EFB\u4F55\u4EBA\u4EE5\u4F60\u7684\u8EAB\u4EFD\u8BBF\u95EE\u7A0B\u5E8F\u3002\u8003\u8651\u81F3\u5C11\u542F\u7528\u8EAB\u4EFD\u9A8C\u8BC1\u6765\u963B\u6B62\u6EE5\u7528\u3002 diff --git a/core/src/main/resources/jenkins/management/PluginsLink/info_zh_CN.properties b/core/src/main/resources/jenkins/management/PluginsLink/info_zh_CN.properties new file mode 100644 index 0000000000..d134244a68 --- /dev/null +++ b/core/src/main/resources/jenkins/management/PluginsLink/info_zh_CN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +updates\ available=\u53EF\u7528\u66F4\u65B0 diff --git a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_zh_CN.properties b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_zh_CN.properties index 7c918181c3..ed9ca95119 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_zh_CN.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure_zh_CN.properties @@ -22,5 +22,5 @@ \#\ of\ executors=\u6267\u884c\u8005\u6570\u91cf Labels=\u6807\u8bb0 -Node\ Properties= -Save=\u4fdd\u5b58 \ No newline at end of file +Node\ Properties=\u8282\u70B9\u5C5E\u6027 +Save=\u4fdd\u5b58 diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_zh_CN.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_zh_CN.properties index 2b19e3a27d..13dcfce860 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_zh_CN.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_zh_CN.properties @@ -22,6 +22,7 @@ LOADING=\u52A0\u8F7D\u4E2D Home\ directory=\u4e3b\u76ee\u5f55 +Save=\u4FDD\u5B58 System\ Message=\u7cfb\u7edf\u6d88\u606f -Build\ Record\ Root\ Directory=\u6784\u5EFA\u6839\u76EE\u5F55 +Build\ Record\ Root\ Directory=\u6784\u5EFA\u8BB0\u5F55\u6839\u76EE\u5F55 Workspace\ Root\ Directory=\u5DE5\u4F5C\u7A7A\u95F4\u6839\u76EE\u5F55 diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_zh_CN.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_zh_CN.properties index 75e63e43b6..62c6536463 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_zh_CN.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_zh_CN.properties @@ -22,6 +22,6 @@ Check=\u68C0\u67E5 Check\ File\ Fingerprint=\u68C0\u67E5\u6587\u4EF6\u6807\u8BC6 -File\ to\ check=\u8981\u68C0\u67E5\u7684\u6587\u4EF6 -description=\u5F97\u5230\u4E00\u4E2Ajar\u6587\u4EF6\uFF0C\u4F46\u662F\u4E0D\u77E5\u9053\u5176\u7248\u672C\u53F7\uFF1F\u901A\u8FC7\u68C0\u67E5\u6587\u4EF6\u6807\u8BC6\u5728Jenkins\u7684\u6570\u636E\u5E93\u91CC\u627E\u5230\u7248\u672C\u53F7\u3002 -more\ details=\u8BE6\u7EC6 +File\ to\ check=\u5F85\u68C0\u67E5\u6587\u4EF6 +description=\u5F97\u5230\u4E00\u4E2Ajar\u6587\u4EF6\uFF0C\u4F46\u662F\u4E0D\u77E5\u9053\u5176\u7248\u672C\u53F7\uFF1F
\u7ACB\u5373\u68C0\u9A8C\u6587\u4EF6\u6807\u8BC6\u5E76\u5728Jenkins\u7684\u6570\u636E\u5E93\u91CC\u627E\u5230\u5BF9\u5E94\u7248\u672C\u53F7\u3002 +more\ details=\u8BE6\u7EC6\u4FE1\u606F diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_zh_CN.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_zh_CN.properties index 5b43d3a04f..1d6485862a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_zh_CN.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_zh_CN.properties @@ -31,5 +31,5 @@ health-61to80=\u9879\u76EE\u5065\u5EB7\u5EA6\u4ECB\u4E8E60%~80%\u3002\u4F60\u53E health-81plus=\u9879\u76EE\u5065\u5EB7\u5EA6\u9AD8\u4E8E80%\u3002\u4F60\u53EF\u4EE5\u5C06\u9F20\u6807\u653E\u5728\u9879\u76EE\u56FE\u6807\u4E0A\u4EE5\u83B7\u53D6\u66F4\u591A\u4FE1\u606F\u3002 red=\u4E0A\u4E00\u4E2A\u6784\u5EFA\u5F7B\u5E95\u5931\u8D25\u3002 red_anime=\u4E0A\u4E00\u4E2A\u6784\u5EFA\u5F7B\u5E95\u5931\u8D25\u3002\u65B0\u7684\u6784\u5EFA\u8FDB\u884C\u4E2D\u3002 -yellow=\u4E0A\u4E00\u4E2A\u6784\u5EFA\u6210\u529F\uFF0C\u4F46\u5305\u542B\u9519\u8BEF\u3002\u8FD9\u4E3B\u8981\u662F\u67D0\u4E9B\u6D4B\u8BD5\u5931\u8D25\u5F15\u8D77\u7684\u3002 -yellow_anime=\u4E0A\u4E00\u4E2A\u6784\u5EFA\u6210\u529F\uFF0C\u4F46\u5305\u6362\u9519\u8BEF\u3002\u4E00\u4E2A\u65B0\u7684\u6784\u5EFA\u8FDB\u884C\u4E2D\u3002 +yellow=\u4E0A\u4E00\u4E2A\u6784\u5EFA\u6210\u529F\uFF0C\u4F46\u4E0D\u591F\u7A33\u5B9A\u3002\u6B64\u56FE\u6807\u4E3B\u8981\u7528\u6765\u8868\u793A\u67D0\u4E9B\u6D4B\u8BD5\u5931\u8D25\u3002 +yellow_anime=\u4E0A\u4E00\u4E2A\u6784\u5EFA\u6210\u529F\uFF0C\u4F46\u5305\u542B\u9519\u8BEF\u3002\u4E00\u4E2A\u65B0\u7684\u6784\u5EFA\u8FDB\u884C\u4E2D\u3002 diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_zh_CN.properties b/core/src/main/resources/jenkins/model/Jenkins/login_zh_CN.properties index 474d802f89..6322623398 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_zh_CN.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_zh_CN.properties @@ -20,6 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Remember\ me\ on\ this\ computer=\u8BB0\u4F4F\u6211,\u5728\u672C\u7535\u8111\u4E0A. +Password=\u5BC6\u7801 +Remember\ me\ on\ this\ computer=\u5728\u8FD9\u53F0\u8BA1\u7B97\u673A\u4E0A\u4FDD\u6301\u767B\u5F55\u72B6\u6001 +User=\u7528\u6237\u540D login=\u767B\u5F55 signUp=\u521B\u5EFA\u4E00\u4E2A\u7528\u6237\u8D26\u53F7 \u5982\u679C\u4F60\u6CA1\u6709\u6CE8\u518C\u7528\u6237. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_zh_CN.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_zh_CN.properties index ce1f0e0c1a..08a2c38a7f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_zh_CN.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_zh_CN.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Manage\ Jenkins=\u7CFB\u7EDF\u7BA1\u7406 +Jenkins\ CLI=Jenkins \u547D\u4EE4\u884C +Manage\ Jenkins=\u7BA1\u7406Jenkins +are.you.sure={0}: \u4F60\u786E\u5B9A\u5417\uFF1F diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_zh_CN.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_zh_CN.properties index 318ef12ac6..e91306219d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_zh_CN.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_zh_CN.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Compare=\u6BD4\u8F83 -Project\ Relationship=\u9879\u76EE\u7684\u5173\u7CFB +Project\ Relationship=\u9879\u76EE\u5173\u7CFB downstream\ project=\u4E0B\u6E38\u9879\u76EE upstream\ project=\u4E0A\u6E38\u9879\u76EE diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_zh_CN.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_zh_CN.properties index 2693a973f3..7f43f1b003 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_zh_CN.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_zh_CN.properties @@ -23,6 +23,7 @@ Enabled=\u542F\u7528 Environment\ Variables=\u73AF\u5883\u53D8\u91CF Name=\u540D\u79F0 +Pinned=\u56FA\u5B9A Plugins=\u63D2\u4EF6 System\ Properties=\u7CFB\u7EDF\u5C5E\u6027 Version=\u7248\u672C diff --git a/core/src/main/resources/lib/form/advanced_zh_CN.properties b/core/src/main/resources/lib/form/advanced_zh_CN.properties index c4404ced45..ba1c6557e3 100644 --- a/core/src/main/resources/lib/form/advanced_zh_CN.properties +++ b/core/src/main/resources/lib/form/advanced_zh_CN.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Advanced=\u9AD8\u7EA7 +customizedFields=\u672C\u533A\u5757\u7684\u4E00\u4E2A\u6216\u591A\u4E2A\u5B57\u6BB5\u5DF2\u7ECF\u88AB\u4FEE\u6539\u3002 diff --git a/core/src/main/resources/lib/form/apply_zh_CN.properties b/core/src/main/resources/lib/form/apply_zh_CN.properties new file mode 100644 index 0000000000..18fe4b3fce --- /dev/null +++ b/core/src/main/resources/lib/form/apply_zh_CN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Apply=\u5E94\u7528 diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_zh_CN.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_zh_CN.properties new file mode 100644 index 0000000000..5968bb88a2 --- /dev/null +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_zh_CN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +configuration=\u914D\u7F6E diff --git a/core/src/main/resources/lib/form/helpArea_zh_CN.properties b/core/src/main/resources/lib/form/helpArea_zh_CN.properties index 7fc222b374..bcfddaaee5 100644 --- a/core/src/main/resources/lib/form/helpArea_zh_CN.properties +++ b/core/src/main/resources/lib/form/helpArea_zh_CN.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Loading...=\u8BFB\u53D6\u4E2D... +Loading...=\u52A0\u8F7D\u4E2D... diff --git a/core/src/main/resources/lib/hudson/artifactList_zh_CN.properties b/core/src/main/resources/lib/hudson/artifactList_zh_CN.properties new file mode 100644 index 0000000000..9dc0472101 --- /dev/null +++ b/core/src/main/resources/lib/hudson/artifactList_zh_CN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +View=\u67E5\u770B diff --git a/core/src/main/resources/lib/hudson/buildCaption_zh_CN.properties b/core/src/main/resources/lib/hudson/buildCaption_zh_CN.properties index d5b88a4265..62a3e22625 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_zh_CN.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_zh_CN.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Progress=\u8FDB\u7A0B +Progress=\u8FDB\u5EA6 cancel=\u53D6\u6D88 diff --git a/core/src/main/resources/lib/hudson/buildHealth_zh_CN.properties b/core/src/main/resources/lib/hudson/buildHealth_zh_CN.properties index 2fe048142b..1acb271e70 100644 --- a/core/src/main/resources/lib/hudson/buildHealth_zh_CN.properties +++ b/core/src/main/resources/lib/hudson/buildHealth_zh_CN.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=\u8BF4\u660E +Description=\u63CF\u8FF0 diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_zh_CN.properties b/core/src/main/resources/lib/hudson/buildProgressBar_zh_CN.properties index c95864a2be..f771115267 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_zh_CN.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_zh_CN.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=\u5F00\u59CB\u4E8E{0}\u524D
\u4F30\u8BA1\u5269\u4F59\u65F6\u95F4: {1} +text=\u9884\u8BA1\u5269\u4F59\u65F6\u95F4\uFF1A +\u4F30\u8BA1\u5269\u4F59\u65F6\u95F4:{1} diff --git a/core/src/main/resources/lib/hudson/executors_zh_CN.properties b/core/src/main/resources/lib/hudson/executors_zh_CN.properties index 2d70e6b16b..c27c74f1a0 100644 --- a/core/src/main/resources/lib/hudson/executors_zh_CN.properties +++ b/core/src/main/resources/lib/hudson/executors_zh_CN.properties @@ -20,8 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=\u4EFB\u52A1\u72B6\u6001 -Building=\u6B63\u5728\u6784\u5EFA +Build\ Executor\ Status=\u6784\u5EFA\u6267\u884C\u72B6\u6001 +Building=\u6784\u5EFA\u4E2D Idle=\u7a7a\u95f2 -Master=\u4E3B\u673A +Master=\u4E3B Status=\u72b6\u6001 +Unknown\ Task=\u672A\u77E5\u4EFB\u52A1 +offline=\u672A\u5728\u7EBF +terminate\ this\ build=\u7EC8\u6B62\u6784\u5EFA diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_zh_CN.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_zh_CN.properties index a959c1aedf..2628879777 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_zh_CN.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_zh_CN.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Build=\u505C\u6B62\u6784\u5EFA -No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=\u76F4\u5230\u5141\u8BB8\u9879\u76EE\u6784\u5EFA,\u5426\u5219\u4E0D\u80FD\u8FDB\u884C\u65B0\u7684\u6784\u5EFA +Disable\ Build=\u5173\u95ED\u6784\u5EFA +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=\u91CD\u65B0\u5F00\u542F\u6784\u5EFA\u524D\u4E0D\u5141\u8BB8\u8FDB\u884C\u65B0\u7684\u6784\u5EFA diff --git a/core/src/main/resources/lib/hudson/project/config-publishers2_zh_CN.properties b/core/src/main/resources/lib/hudson/project/config-publishers2_zh_CN.properties index 0489e5696f..5372db82ae 100644 --- a/core/src/main/resources/lib/hudson/project/config-publishers2_zh_CN.properties +++ b/core/src/main/resources/lib/hudson/project/config-publishers2_zh_CN.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Add\ post-build\ action=\u589E\u52A0\u6784\u5EFA\u540E\u64CD\u4F5C\u6B65\u9AA4 Post-build\ Actions=\u6784\u5EFA\u540E\u64CD\u4F5C diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_zh_CN.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_zh_CN.properties index 1dd600cc78..730b93e102 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_zh_CN.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_zh_CN.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Retry\ Count=\u91CD\u8BD5\u6B21\u6570 -SCM\ checkout\ retry\ count=SCM\u68C0\u51FA\u91CD\u8BD5\u6B21\u6570 +SCM\ checkout\ retry\ count=SCM \u7B7E\u51FA\u91CD\u8BD5\u6B21\u6570 diff --git a/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_zh_CN.properties b/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_zh_CN.properties index b6290335b1..ef81df2337 100644 --- a/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_zh_CN.properties +++ b/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_zh_CN.properties @@ -22,4 +22,5 @@ Build\ after\ other\ projects\ are\ built=\u5728\u5176\u4ED6\u9879\u76EE\u6784\u5EFA\u5B8C\u6210\u540E\u624D\u6267\u884C\u6784\u5EFA Multiple\ projects\ can\ be\ specified\ like\ ''abc,\ def''=\u8D85\u8FC7\u4E00\u4E2A\u9879\u76EE\u53EF\u4EE5\u6307\u5B9A\u4E3A''abc, def'' +Project\ names=\u9879\u76EE\u540D\u79F0 Projects\ names=\u5DE5\u7A0B\u540D diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_zh_CN.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_zh_CN.properties index 42ffafccb4..056cb820e5 100644 --- a/core/src/main/resources/lib/hudson/project/upstream-downstream_zh_CN.properties +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_zh_CN.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Downstream\ Projects=\u4E0B\u6E38\u9879\u76EE -Upstream\ Projects=\u4E0A\u6E38\u9879\u76EE +Downstream\ Projects=\u4E0B\u7EA7\u9879\u76EE +Upstream\ Projects=\u4E0A\u7EA7\u9879\u76EE diff --git a/core/src/main/resources/lib/hudson/queue_zh_CN.properties b/core/src/main/resources/lib/hudson/queue_zh_CN.properties index 4a02928f66..6b3b2eacd0 100644 --- a/core/src/main/resources/lib/hudson/queue_zh_CN.properties +++ b/core/src/main/resources/lib/hudson/queue_zh_CN.properties @@ -20,7 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u4EFB\u52A1\u961F\u5217 -Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=\u7cfb\u7edf\u6b63\u5728\u5173\u95ed\u3002\u6ca1\u6709\u66f4\u591a\u7684\u6784\u5efa\u4f1a\u88ab\u6267\u884c\u3002 -No\ builds\ in\ the\ queue.=\u5f53\u524d\u961f\u5217\u6ca1\u6709\u6784\u5efa\u4efb\u52a1 +Build\ Queue=\u6784\u5EFA\u961F\u5217 +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins \u5373\u5C06\u5173\u95ED\u3002\u5269\u4F59\u751F\u6210\u5C06\u4E0D\u4F1A\u88AB\u6267\u884C\u3002 +No\ builds\ in\ the\ queue.=\u961F\u5217\u4E2D\u6CA1\u6709\u6784\u5EFA\u4EFB\u52A1 +Unknown\ Task=\u672A\u77E5\u4EFB\u52A1 +WaitingFor=\u7B49\u5F85{0} +WaitingSince=\u4ECE{0}\u5F00\u59CB\u7B49\u5F85 cancel=\u53d6\u6d88 diff --git a/core/src/main/resources/lib/hudson/rssBar_zh_CN.properties b/core/src/main/resources/lib/hudson/rssBar_zh_CN.properties index 4c8655f849..33f39e9358 100644 --- a/core/src/main/resources/lib/hudson/rssBar_zh_CN.properties +++ b/core/src/main/resources/lib/hudson/rssBar_zh_CN.properties @@ -23,4 +23,4 @@ Legend=\u56FE\u4F8B for\ all=\u5168\u90E8 for\ failures=\u5931\u8D25 -for\ just\ latest\ builds=\u6700\u540E\u4E00\u6B21 +for\ just\ latest\ builds=\u6700\u65B0\u7684\u6784\u5EFA diff --git a/core/src/main/resources/lib/hudson/test-result_zh_CN.properties b/core/src/main/resources/lib/hudson/test-result_zh_CN.properties index 2777505236..9bad905274 100644 --- a/core/src/main/resources/lib/hudson/test-result_zh_CN.properties +++ b/core/src/main/resources/lib/hudson/test-result_zh_CN.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -no\ failures=\u6CA1\u6709\u5931\u8D25\u7684 +multifailures=\u5931\u8D25 +no\ failures=\u6CA1\u6709\u5931\u8D25 +no\ tests=\u6CA1\u6709\u6D4B\u8BD5\u7528\u4F8B diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_zh_CN.properties b/core/src/main/resources/lib/layout/breadcrumbBar_zh_CN.properties new file mode 100644 index 0000000000..a39c207883 --- /dev/null +++ b/core/src/main/resources/lib/layout/breadcrumbBar_zh_CN.properties @@ -0,0 +1,6 @@ +# This file is under the MIT License by authors + +DISABLE\ AUTO\ REFRESH=\u5173\u95ED\u81EA\u52A8\u5237\u65B0 +ENABLE\ AUTO\ REFRESH=\u5141\u8BB8\u81EA\u52A8\u5237\u65B0 + + diff --git a/core/src/main/resources/lib/layout/layout_zh_CN.properties b/core/src/main/resources/lib/layout/layout_zh_CN.properties index d1c8892d3e..546a9e56c2 100644 --- a/core/src/main/resources/lib/layout/layout_zh_CN.properties +++ b/core/src/main/resources/lib/layout/layout_zh_CN.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. DISABLE\ AUTO\ REFRESH=\u7981\u7528\u81EA\u52A8\u5237\u65B0 -ENABLE\ AUTO\ REFRESH=\u6253\u5F00\u81EA\u52A8\u5237\u65B0 -Page\ generated=\u9875\u9762\u751F\u6210\u4E8E -logout=\u9000\u51FA -search=\u641C\u7D22 -searchBox.url=\u641C\u7D22\u6846 +ENABLE\ AUTO\ REFRESH=\u542F\u7528\u81EA\u52A8\u5237\u65B0 +Page\ generated=\u751F\u6210 \u9875\u9762 +logout=\u6CE8\u9500 +search=\u67E5\u627E +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/core/src/main/resources/lib/layout/main-panel_zh_CN.properties b/core/src/main/resources/lib/layout/main-panel_zh_CN.properties index ed82efe7c0..f364231d6e 100644 --- a/core/src/main/resources/lib/layout/main-panel_zh_CN.properties +++ b/core/src/main/resources/lib/layout/main-panel_zh_CN.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ is\ going\ to\ shut\ down=\u7CFB\u7EDF\u6B63\u5728\u5173\u95ED +Jenkins\ is\ going\ to\ shut\ down=Jenkins \u5373\u5C06\u5173\u95ED diff --git a/core/src/main/resources/lib/layout/progressiveRendering_zh_CN.properties b/core/src/main/resources/lib/layout/progressiveRendering_zh_CN.properties new file mode 100644 index 0000000000..385e64edd9 --- /dev/null +++ b/core/src/main/resources/lib/layout/progressiveRendering_zh_CN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +progressMessage=\u8BA1\u7B97\u4E2D\u3002 diff --git a/core/src/main/resources/lib/layout/task_zh_CN.properties b/core/src/main/resources/lib/layout/task_zh_CN.properties new file mode 100644 index 0000000000..ec0452623b --- /dev/null +++ b/core/src/main/resources/lib/layout/task_zh_CN.properties @@ -0,0 +1,3 @@ +# This file is under the MIT License by authors + +Done.=\u5DF2\u5B8C\u6210 diff --git a/core/src/main/resources/lib/test/bar_zh_CN.properties b/core/src/main/resources/lib/test/bar_zh_CN.properties new file mode 100644 index 0000000000..ffc6618dc8 --- /dev/null +++ b/core/src/main/resources/lib/test/bar_zh_CN.properties @@ -0,0 +1,4 @@ +# This file is under the MIT License by authors + +failures={0}\u6B21\u5931\u8D25 +tests={0}\u4E2A\u6D4B\u8BD5 -- GitLab From 687a0dbf639e57e70fe2fb66c67a66273c075065 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 20 Oct 2013 22:10:05 -0700 Subject: [PATCH 086/308] Community-contributed localization for zh_TW (zh_TW) --- .../PluginManager/advanced_zh_TW.properties | 6 +++--- .../PluginManager/installed_zh_TW.properties | 8 ++++---- .../PluginManager/table_zh_TW.properties | 10 ++++------ .../LogRecorder/configure_zh_TW.properties | 12 +++++------ .../LogRecorder/sidepanel_zh_TW.properties | 8 ++++---- .../LogRecorderManager/new_zh_TW.properties | 2 +- .../MatrixProject/index_zh_TW.properties | 3 ++- .../AbstractBuild/index_zh_TW.properties | 12 +++++------ .../AbstractBuild/sidepanel_zh_TW.properties | 2 +- .../AbstractBuild/tasks_zh_TW.properties | 4 ++-- .../configure-common_zh_TW.properties | 5 +++-- .../AbstractItem/delete_zh_TW.properties | 2 +- .../AbstractItem/noWorkspace_zh_TW.properties | 14 +++++-------- .../makeDisabled_zh_TW.properties | 4 ++-- .../sidepanel_zh_TW.properties | 9 +++++---- .../model/AllView/noJob_zh_TW.properties | 10 ++++++---- .../config_zh_TW.properties | 2 +- .../model/Computer/builds_zh_TW.properties | 2 +- .../model/Computer/configure_zh_TW.properties | 2 +- .../model/Computer/index_zh_TW.properties | 10 +++++----- .../Computer/markOffline_zh_TW.properties | 6 +++--- .../model/Computer/sidepanel_zh_TW.properties | 13 ++++++------ .../ComputerSet/configure_zh_TW.properties | 2 +- .../dir_zh_TW.properties | 2 +- .../hudson/model/JDK/config_zh_TW.properties | 2 +- .../model/Job/configure_zh_TW.properties | 8 ++++---- .../hudson/model/Job/index_zh_TW.properties | 1 + .../hudson/model/Job/rename_zh_TW.properties | 4 ++-- .../configure-entries_zh_TW.properties | 20 +++++++++---------- .../ParametersAction/index_zh_TW.properties | 4 ++-- .../config_zh_TW.properties | 2 +- .../Permalink/link_zh_TW.properties | 2 +- .../KeepLogBuildBadge/badge_zh_TW.properties | 2 +- .../hudson/model/Run/console_zh_TW.properties | 2 +- .../hudson/model/Run/delete_zh_TW.properties | 2 +- .../ConnectionCheckJob/row_zh_TW.properties | 2 +- .../Failure/status_zh_TW.properties | 2 +- .../Pending/status_zh_TW.properties | 2 +- .../RestartJenkinsJob/row_zh_TW.properties | 2 +- .../model/UpdateCenter/body_zh_TW.properties | 6 +++--- .../model/UpdateCenter/index_zh_TW.properties | 2 +- .../UpdateCenter/sidepanel_zh_TW.properties | 4 ++-- .../View/AsynchPeople/index_zh_TW.properties | 2 +- .../model/View/People/index_zh_TW.properties | 2 +- .../model/View/configure_zh_TW.properties | 2 +- .../hudson/model/View/newJob_zh_TW.properties | 4 ++-- .../model/View/sidepanel_zh_TW.properties | 6 +++--- .../config_zh_TW.properties | 2 +- .../message_zh_TW.properties | 5 ++--- .../config_zh_TW.properties | 4 ++-- .../Search/search-failed_zh_TW.properties | 4 ++-- .../config_zh_TW.properties | 4 ++-- .../sidepanel_zh_TW.properties | 2 +- .../ComputerLauncher/main_zh_TW.properties | 8 ++++---- .../configure-entries_zh_TW.properties | 10 +++++----- .../JNLPLauncher/config_zh_TW.properties | 4 ++-- .../slaves/JNLPLauncher/main_zh_TW.properties | 2 +- .../LaunchFailed/cause_zh_TW.properties | 2 +- .../Demand/config_zh_TW.properties | 8 ++++---- .../config_zh_TW.properties | 10 +++++----- .../SlaveComputer/disconnect_zh_TW.properties | 6 +++--- .../SlaveComputer/sidepanel2_zh_TW.properties | 6 +++--- .../tasks/LogRotator/config_zh_TW.properties | 8 +++----- .../summary_zh_TW.properties | 2 +- .../ToolInstallation/global_zh_TW.properties | 4 ++-- .../DescriptorImpl/index_zh_TW.properties | 6 +++--- .../message_zh_TW.properties | 2 +- .../BuildButtonColumn/column_zh_TW.properties | 1 + .../column_zh_TW.properties | 2 +- .../LastFailureColumn/column_zh_TW.properties | 2 +- .../LastSuccessColumn/column_zh_TW.properties | 1 - .../HistoryWidget/entry_zh_TW.properties | 2 +- .../HistoryWidget/index_zh_TW.properties | 2 +- .../PluginsLink/info_zh_TW.properties | 2 +- .../model/Jenkins/_restart_zh_TW.properties | 4 ++-- .../Jenkins/fingerprintCheck_zh_TW.properties | 4 +--- ...breadcrumb-config-outline_zh_TW.properties | 2 +- .../lib/form/textarea_zh_TW.properties | 4 ++-- .../editableDescription_zh_TW.properties | 2 +- .../lib/hudson/executors_zh_TW.properties | 4 ++-- .../project/config-builders_zh_TW.properties | 2 +- .../config-concurrentBuild_zh_TW.properties | 2 +- .../config-disableBuild_zh_TW.properties | 4 ++-- .../config-retryCount_zh_TW.properties | 2 +- .../project/config-scm_zh_TW.properties | 2 +- .../hudson/project/matrix_zh_TW.properties | 2 +- .../lib/hudson/queue_zh_TW.properties | 3 ++- .../lib/hudson/scriptConsole_zh_TW.properties | 6 ++---- .../lib/hudson/test-result_zh_TW.properties | 2 +- .../lib/layout/breadcrumbBar_zh_TW.properties | 4 ++-- .../lib/layout/layout_zh_TW.properties | 2 +- .../progressiveRendering_zh_TW.properties | 2 +- 92 files changed, 196 insertions(+), 203 deletions(-) diff --git a/core/src/main/resources/hudson/PluginManager/advanced_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/advanced_zh_TW.properties index 20e8ea22f0..95cae3d7f8 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_zh_TW.properties @@ -23,7 +23,7 @@ Update\ Center=\u66f4\u65b0\u4e2d\u5fc3 -HTTP\ Proxy\ Configuration=HTTP \u4ee3\u7406\u4f3a\u670d\u5668\u8a2d\u5b9a +HTTP\ Proxy\ Configuration=HTTP Proxy\u8A2D\u5B9A Submit=\u9001\u51fa Upload\ Plugin=\u4e0a\u50b3\u5916\u639b\u7a0b\u5f0f @@ -31,9 +31,9 @@ uploadtext=\u60a8\u53ef\u4ee5\u624b\u52d5\u4e0a\u50b3 .hpi \u6a94\u6848\u4f86\u5 File=\u6a94\u6848 Upload=\u4e0a\u50b3 -Update\ Site=\u66f4\u65b0\u7db2\u7ad9 +Update\ Site=\u66F4\u65B0\u7DB2\u5740 URL=URL Other\ Sites=\u5176\u4ed6\u7db2\u7ad9 lastUpdated=\u66f4\u65b0\u8cc7\u8a0a\u53d6\u5f97\u6642\u9593: {0}\u4ee5\u524d -Check\ now=\u99ac\u4e0a\u6aa2\u67e5 +Check\ now=\u99AC\u4E0A\u6AA2\u67E5 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 b81d630302..205f23e219 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_zh_TW.properties @@ -26,10 +26,10 @@ Update\ Center=\u66f4\u65b0\u4e2d\u5fc3 No\ plugins\ installed.=\u6c92\u6709\u5b89\u88dd\u4efb\u4f55\u5916\u639b\u7a0b\u5f0f\u3002 Uncheck\ to\ disable\ the\ plugin=\u672a\u6838\u53d6\u7684\u5916\u639b\u6703\u88ab\u505c\u7528 -Enabled=\u555f\u7528\u72c0\u6cc1 +Enabled=\u5DF2\u555F\u7528 Name=\u540d\u7a31 Version=\u7248\u672c -Previously\ installed\ version=\u4e4b\u524d\u5b89\u88dd\u7684\u7248\u672c +Previously\ installed\ version=\u524D\u4E00\u5B89\u88DD\u7248\u672C Pinned=\u5df2\u639b\u8f09 downgradeTo=\u964d\u7248\u6210 {0} @@ -37,7 +37,7 @@ 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 +Uninstall=\u89E3\u9664\u5B89\u88DD Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=\u91cd\u65b0\u555f\u52d5 Jenkins \u5f8c\u8b8a\u66f4\u5c31\u6703\u751f\u6548 -Restart\ Once\ No\ Jobs\ Are\ Running=\u91cd\u65b0\u555f\u52d5 (\u7b49\u6240\u6709\u4f5c\u696d\u57f7\u884c\u5b8c\u7562) +Restart\ Once\ No\ Jobs\ Are\ Running=\u7576\u6C92\u6709\u5DE5\u4F5C\u5728\u57F7\u884C\u6642\u91CD\u555F diff --git a/core/src/main/resources/hudson/PluginManager/table_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/table_zh_TW.properties index c139acc08e..058f101ec1 100644 --- a/core/src/main/resources/hudson/PluginManager/table_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/table_zh_TW.properties @@ -35,13 +35,11 @@ Installed=\u5df2\u5b89\u88dd compatWarning=\ \u8b66\u544a: \u65b0\u7248\u672c\u4e0d\u76f8\u5bb9\u65bc\u73fe\u5728\u5b89\u88dd\u7684\u7248\u672c\u3002\ \u4f7f\u7528\u9019\u500b\u5916\u639b\u7a0b\u5f0f\u7684\u4f5c\u696d\u53ef\u80fd\u9700\u8981\u91cd\u65b0\u8a2d\u5b9a\u3002 -coreWarning=\ - \u8b66\u544a: \u9019\u500b\u5916\u639b\u7a0b\u5f0f\u662f\u70ba Jenkins {0} \u4ee5\u4e0a\u5efa\u7f6e\u7684\u3002\ - \u4e0d\u898b\u5f97\u53ef\u4ee5\u7528\u5728\u60a8\u7684 Jenkins \u4e0a\u3002 +coreWarning=\u8B66\u544A: \u9019\u500B\u5916\u639B\u7A0B\u5F0F\u662F\u70BA Jenkins {0} \u4E4B\u5F8C\u7684\u7248\u672C\u8A2D\u8A08\u3002\u5728\u60A8\u76EE\u524D\u7684 Jenkins \u4E0D\u898B\u5F97\u53EF\u4EE5\u6B63\u5E38\u904B\u4F5C\u3002 -Inactive=\u5df2\u505c\u7528 +Inactive=\u505C\u7528 No\ updates=\u6c92\u6709\u66f4\u65b0 -Install\ without\ restart=\u4e0d\u91cd\u65b0\u555f\u52d5\uff0c\u76f4\u63a5\u5b89\u88dd -Download\ now\ and\ install\ after\ restart=\u4e0b\u8f09\uff0c\u4e26\u65bc\u91cd\u65b0\u555f\u52d5\u5f8c\u5b89\u88dd +Install\ without\ restart=\u76F4\u63A5\u5B89\u88DD +Download\ now\ and\ install\ after\ restart=\u4E0B\u8F09\u4E26\u65BC\u91CD\u65B0\u555F\u52D5\u5F8C\u5B89\u88DD diff --git a/core/src/main/resources/hudson/logging/LogRecorder/configure_zh_TW.properties b/core/src/main/resources/hudson/logging/LogRecorder/configure_zh_TW.properties index b544ace29c..448af654cb 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/configure_zh_TW.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/configure_zh_TW.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Loggers=\u8a18\u9304\u5668 -Log\ level=\u8a18\u9304\u7b49\u7d1a -List\ of\ loggers\ and\ the\ log\ levels\ to\ record=\u8a18\u9304\u5668\u6e05\u55ae\u4ee5\u53ca\u8981\u8a18\u9304\u7684\u7b49\u7d1a -Logger=\u8a18\u9304\u5668 -Save=\u5132\u5b58 -Name=\u540d\u7a31 +Loggers=\u8A18\u9304\u5668 +Log\ level=\u8A18\u9304\u7B49\u7D1A +List\ of\ loggers\ and\ the\ log\ levels\ to\ record=Logger \u6E05\u55AE\u4EE5\u53CA\u8981\u8A18\u9304\u7684\u65E5\u8A8C\u7B49\u7D1A +Logger=\u8A18\u9304\u5668 +Save=\u5132\u5B58 +Name=\u540D\u7A31 diff --git a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_zh_TW.properties index d7b3e467f2..dc08239001 100644 --- a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_zh_TW.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Log\ records=\u8a18\u9304\u8cc7\u6599 -Configure=\u8a2d\u5b9a -Back\ to\ Loggers=\u56de\u5230\u8a18\u9304\u5668\u6e05\u55ae -Delete=\u522a\u9664 +Log\ records=\u8A18\u9304\u5167\u5BB9 +Configure=\u8A2D\u5B9A +Back\ to\ Loggers=\u56DE\u5230\u65E5\u8A8C\u8A18\u9304 +Delete=\u522A\u9664 diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/new_zh_TW.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/new_zh_TW.properties index a45a684c1f..c481a65382 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/new_zh_TW.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/new_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540d\u7a31 +Name=\u540D\u7A31 diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_zh_TW.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_zh_TW.properties index 195fe6083a..121a2226ef 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/index_zh_TW.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_zh_TW.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Project=\u5c08\u6848 +Project=\u5C08\u6848 Project\ name=\u5c08\u6848\u540d\u7a31 +Disable\ Project=\u505C\u7528\u5C08\u6848 Latest\ Test\ Result=\u6700\u65b0\u6e2c\u8a66\u7d50\u679c diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_zh_TW.properties index 9059e3b872..9f07e747c0 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_zh_TW.properties @@ -22,19 +22,19 @@ # THE SOFTWARE. startedAgo={0}\u524d\u958b\u59cb -beingExecuted=\u5df2\u7d93\u5efa\u7f6e\u4e86 {0} +beingExecuted=\u5EFA\u69CB\u5DF2\u7D93\u57F7\u884C\u4E86 Took=\u8cbb\u6642 on=\uff0c\u57f7\u884c\u7bc0\u9ede -Build=\u5efa\u7f6e +Build=\u5EFA\u69CB -Build\ Artifacts=\u5efa\u7f6e\u6210\u54c1 +Build\ Artifacts=\u5EFA\u69CB\u7522\u51FA\u6A94\u6848 Changes\ in\ dependency=\u76f8\u4f9d\u5c08\u6848\u4e2d\u7684\u8b8a\u66f4 detail=\u8a73\u7d30\u8cc7\u6599 Not\ yet\ determined=\u9084\u6c92\u6709\u7d50\u679c -Failed\ to\ determine=\u5224\u5b9a\u5931\u6557 -log=\u8a18\u9304 +Failed\ to\ determine=\u8A55\u4F30\u904E\u7A0B\u5931\u6557 +log=\u8A18\u9304 -Upstream\ Builds=\u4e0a\u6e38\u5efa\u7f6e +Upstream\ Builds=\u4E0A\u6E38\u5EFA\u7F6E Downstream\ Builds=\u4e0b\u6e38\u5efa\u7f6e none=\u7121 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_zh_TW.properties index d17aed0070..f1515b50b4 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_zh_TW.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Next\ Build=\u4E0B\u4E00\u6B21\u5EFA\u7F6E -Previous\ Build=\u524D\u4E00\u6B21\u5EFA\u7F6E +Previous\ Build=\u524D\u4E00\u6B21\u5EFA\u69CB diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_zh_TW.properties index 1386d9d615..7a7d147f0b 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_zh_TW.properties @@ -24,8 +24,8 @@ Back\ to\ Project=\u56de\u5230\u5c08\u6848 Status=\u72c0\u614b Changes=\u8b8a\u66f4 -Console\ Output=\u756b\u9762\u8f38\u51fa +Console\ Output=\u7D42\u7AEF\u6A5F\u8F38\u51FA raw=\u539f\u59cb\u8cc7\u6599 View\ as\ plain\ text=\u7d14\u6587\u5b57\u6aa2\u8996 -Edit\ Build\ Information=\u7de8\u8f2f\u5efa\u7f6e\u8cc7\u8a0a +Edit\ Build\ Information=\u7DE8\u8F2F\u5EFA\u69CB\u8CC7\u8A0A View\ Build\ Information=\u6aa2\u8996\u5efa\u7f6e\u8cc7\u8a0a diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_zh_TW.properties index d435eedf41..4cc6151160 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/configure-common_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_zh_TW.properties @@ -21,8 +21,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -JDK\ to\ be\ used\ for\ this\ project=\u7528\u4f86\u5efa\u7f6e\u5c08\u6848\u7684 JDK -default.value=(\u9810\u8a2d) +JDK\ to\ be\ used\ for\ this\ project=\u8981\u4F7F\u7528\u7684 JDK +default.value=(\u9810\u8A2D) Advanced\ Project\ Options=\u9032\u968e\u5c08\u6848\u9078\u9805 +Advanced\ Project\ Options\ configure-common=\u9032\u968E\u5C08\u6848\u9078\u9805 Display\ Name=\u986f\u793a\u540d\u7a31 diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_zh_TW.properties index e0e73b266c..0d6a64a63b 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_zh_TW.properties @@ -21,5 +21,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\u78ba\u5b9a\u8981\u522a\u9664{0} ''{1}'' \u55ce? +blurb=\u78BA\u5B9A\u8981\u522A\u9664 {0} ''''{1}'''' \u55CE? Yes=\u662f 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 12d471d740..3c48727421 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 @@ -25,13 +25,9 @@ A\ project\ won't\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ perfo \u5c08\u6848\u5728\u57f7\u884c\u904e\u5efa\u7f6e\u4e4b\u524d\u662f\u4e0d\u6703\u6709\u5de5\u4f5c\u5340\u7684\u3002 There's\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=\ \u5c08\u6848\u6c92\u6709\u5de5\u4f5c\u5340\u3002\u53ef\u80fd\u7684\u539f\u56e0\u6709: -The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new\ name.=\ - \u5c08\u6848\u6700\u8fd1\u6539\u540d\u4e86\uff0c\u800c\u4e14\u6539\u540d\u5f8c\u9084\u6c92\u5efa\u7f6e\u904e\u3002 -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\u5efa\u7f6e\u904e\u3002 +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 -text=\u57f7\u884c\u5efa\u7f6e\u8b93 Jenkins \u7522\u751f\u5de5\u4f5c\u5340\u3002 +text=\u57F7\u884C\u5EFA\u7F6E\u8B93 Jenkins \u7522\u751F\u5DE5\u4F5C\u5340\u3002 diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_zh_TW.properties index f55163da0c..b34b29e4e8 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_zh_TW.properties @@ -21,6 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -This\ project\ is\ currently\ disabled=\u5c08\u6848\u5df2\u505c\u7528 -Enable=\u555f\u7528 +This\ project\ is\ currently\ disabled=\u9019\u500B\u5C08\u6848\u5DF2\u7D93\u95DC\u9589 +Enable=\u555F\u7528 Disable\ Project=\u505c\u7528\u5c08\u6848 diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_zh_TW.properties index 737c71915e..c64b997543 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_zh_TW.properties @@ -24,12 +24,13 @@ Back\ to\ Dashboard=\u56de\u5230\u5100\u8868\u677f Status=\u72c0\u614b Changes=\u8b8a\u66f4 -Workspace=\u5de5\u4f5c\u5340 -Wipe\ Out\ Workspace=\u6e05\u9664\u5de5\u4f5c\u5340 +Workspace=\u5DE5\u4F5C\u76EE\u9304 +Wipe\ Out\ Workspace=\u6E05\u9664\u5DE5\u4F5C\u76EE\u9304 Build\ scheduled=\u5df2\u6392\u5165\u5efa\u7f6e -delete=\u522a\u9664{0} -Configure=\u8a2d\u5b9a +delete=\u522A\u9664{0} +Configure=\u7D44\u614B View\ Configuration=\u6aa2\u8996\u8a2d\u5b9a +delete.confirm=\u60A8\u78BA\u5B9A\u8981\u522A\u9664 {0} \u2018{1}\u2019 \u55CE\uFF1F wipe.out.confirm=\u78ba\u5b9a\u8981\u6e05\u9664\u5de5\u4f5c\u5340? diff --git a/core/src/main/resources/hudson/model/AllView/noJob_zh_TW.properties b/core/src/main/resources/hudson/model/AllView/noJob_zh_TW.properties index a52cef3b31..307631e94c 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_zh_TW.properties @@ -20,8 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Welcome\ to\ Jenkins!=\u6b61\u8fce\u4f7f\u7528 Jenkins! +Welcome\ to\ Jenkins!=\u6B61\u8FCE\u4F7F\u7528Jenkins! -newJob=\u8acb\u5148\u5efa\u7acb\u65b0\u4f5c\u696d\u3002 -login=\u767b\u5165\u5f8c\u5efa\u7acb\u65b0\u4f5c\u696d\u3002 -signup=\u5982\u679c\u60a8\u9084\u6c92\u6709\u5e33\u865f\uff0c\u73fe\u5728\u5c31\u8a3b\u518a\u4e00\u500b\u5427\u3002 +newJob=\u8ACB\u5EFA\u7ACB\u65B0\u5DE5\u4F5C\u4F86\u958B\u59CB\u4F7F\u7528 + + +login=\u8ACB\u767B\u5165\u4EE5\u4FBF\u555F\u52D5\u5DE5\u4F5C. +signup=\u5982\u679C\u60A8\u9084\u6C92\u6709\u5E33\u865F, \u60A8\u53EF\u4EE5\u7ACB\u523B\u7533\u8ACB. diff --git a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_zh_TW.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_zh_TW.properties index 2a407289bd..1410a894b2 100644 --- a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_zh_TW.properties +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_zh_TW.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Trigger\ builds\ remotely=\u9060\u7aef\u89f8\u767c\u5efa\u7f6e -e.g.,\ from\ scripts=\u4f8b\u5982: \u900f\u904e Script +e.g.,\ from\ scripts=\u4F8B\u5982: \u900F\u904E Script \u8173\u672C Authentication\ Token=\u9a57\u8b49 Token Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=\u53ef\u4ee5\u900f\u904e\u4e0b\u5217 URL \u89f8\u767c\u5efa\u7f6e: diff --git a/core/src/main/resources/hudson/model/Computer/builds_zh_TW.properties b/core/src/main/resources/hudson/model/Computer/builds_zh_TW.properties index f624d0b058..846351cebf 100644 --- a/core/src/main/resources/hudson/model/Computer/builds_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Computer/builds_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title={0} \u5efa\u7f6e\u6b77\u7a0b +title={0} \u4E0A\u7684\u5EFA\u7F6E\u6B77\u7A0B diff --git a/core/src/main/resources/hudson/model/Computer/configure_zh_TW.properties b/core/src/main/resources/hudson/model/Computer/configure_zh_TW.properties index 5a964888c0..d8eddfc870 100644 --- a/core/src/main/resources/hudson/model/Computer/configure_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Computer/configure_zh_TW.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. title={0} \u8a2d\u5b9a -Name=\u540d\u7a31 +Name=\u540D\u7A31 Save=\u5132\u5b58 diff --git a/core/src/main/resources/hudson/model/Computer/index_zh_TW.properties b/core/src/main/resources/hudson/model/Computer/index_zh_TW.properties index 9abecfbdc3..e20c2420c8 100644 --- a/core/src/main/resources/hudson/model/Computer/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Computer/index_zh_TW.properties @@ -20,15 +20,15 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -submit.temporarilyOffline=\u5c07\u7bc0\u9ede\u8abf\u56de\u4e0a\u7dda -submit.not.temporarilyOffline=\u5c07\u7bc0\u9ede\u8a2d\u70ba\u66ab\u6642\u96e2\u7dda -submit.updateOfflineCause=\u66f4\u65b0\u96e2\u7dda\u539f\u56e0 +submit.temporarilyOffline=\u9019\u500B\u7BC0\u9EDE\u91CD\u65B0\u4E0A\u7DDA +submit.not.temporarilyOffline=\u5C07\u672C\u7BC0\u9EDE\u6A19\u793A\u70BA\u66AB\u6642\u96E2\u7DDA +submit.updateOfflineCause=\u66F4\u65B0\u96E2\u7DDA\u539F\u56E0 Created\ by=\u5efa\u7acb\u8005: anonymous\ user=\u533f\u540d\u4f7f\u7528\u8005 -title.no_manual_launch=\u7bc0\u9ede\u53ef\u7528\u6027\u539f\u5247\u8a2d\u70ba\u300c{0}\u300d\u3002\u73fe\u5728\u662f\u8a72\u7bc0\u9ede\u7684\u96e2\u7dda\u6642\u6bb5\u3002 +title.no_manual_launch=\u672C\u7BC0\u9EDE\u5DF2\u8A2D\u5B9A\u53EF\u7528\u539F\u5247 "{0}"\u3002\u73FE\u5728\u662F\u8A72\u7BC0\u9EDE\u7684\u96E2\u7DDA\u6642\u9593\u3002 Labels\:=\u6a19\u7c64: -title.projects_tied_on=\u9650\u5b9a\u5728 {0} \u4e0a\u57f7\u884c\u7684\u5c08\u6848 +title.projects_tied_on=\u7D81\u5B9A\u5230 {0} \u7684\u5C08\u6848 None=\u7121 diff --git a/core/src/main/resources/hudson/model/Computer/markOffline_zh_TW.properties b/core/src/main/resources/hudson/model/Computer/markOffline_zh_TW.properties index d74267e89a..20d2c9b2b6 100644 --- a/core/src/main/resources/hudson/model/Computer/markOffline_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Computer/markOffline_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title=\u5c07 {0} \u8a2d\u70ba\u96e2\u7dda -blurb=\u60a8\u4e5f\u53ef\u4ee5\u89e3\u91cb\u70ba\u4ec0\u9ebc\u5c07\u9019\u500b\u7bc0\u9ede\u8a2d\u70ba\u96e2\u7dda\uff0c\u8b93\u5176\u4ed6\u4eba\u77e5\u9053\u539f\u56e0: -submit=\u5c07\u7bc0\u9ede\u8a2d\u70ba\u66ab\u6642\u96e2\u7dda +title=\u5C07 {0} \u8A2D\u70BA\u96E2\u7DDA +blurb=\u60A8\u53EF\u4EE5\u4F9D\u9700\u8981\u89E3\u91CB\u70BA\u4EC0\u9EBC\u5C07\u8A2D\u500B\u7BC0\u9EDE\u8A2D\u70BA\u96E2\u7DDA\uFF0C\u8B93\u5176\u4ED6\u4EBA\u77E5\u9053\u539F\u56E0: +submit=\u5C07\u6B64\u7BC0\u9EDE\u66AB\u6642\u8A2D\u70BA\u96E2\u7DDA diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_zh_TW.properties index 603294066a..fdc17d9b14 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_zh_TW.properties @@ -20,10 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ List=\u56de\u5230\u6e05\u55ae -Status=\u72c0\u614b -Delete\ Slave=\u522a\u9664 Slave -Configure=\u8a2d\u5b9a -Build\ History=\u5efa\u7f6e\u6b77\u7a0b -Load\ Statistics=\u8ca0\u8f09\u7d71\u8a08 -Script\ Console=Script \u4e3b\u63a7\u53f0 +Back\ to\ List=\u56DE\u5230\u6E05\u55AE +Status=\u72C0\u614B +Delete\ Slave=\u522A\u9664 Slave +Configure=\u8A2D\u5B9A +Build\ History=\u5EFA\u69CB\u6B77\u53F2 +Load\ Statistics=\u8CA0\u8F09\u7D71\u8A08 diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_zh_TW.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_zh_TW.properties index 61997f7bee..9eff02ec70 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/configure_zh_TW.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_zh_TW.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Node\ Monitoring\ Configuration=\u7bc0\u9ede\u76e3\u63a7\u8a2d\u5b9a -Preventive\ Node\ Monitoring=\u9632\u7bc4\u6027\u7bc0\u9ede\u76e3\u63a7 +Preventive\ Node\ Monitoring=\u9810\u9632\u6027\u7BC0\u9EDE\u76E3\u63A7 OK=\u78ba\u5b9a diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_zh_TW.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_zh_TW.properties index dbb952d243..dd364a2390 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_zh_TW.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_zh_TW.properties @@ -21,6 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -No\ files\ in\ directory=\u76ee\u9304\u4e2d\u6c92\u6709\u6a94\u6848 +No\ files\ in\ directory=\u6C92\u6709\u6A94\u6848\u5728\u8CC7\u6599\u593E\u4E2D view=\u6aa2\u8996 all\ files\ in\ zip=\u5168\u90e8\u6253\u5305\u6210 Zip \u6a94 diff --git a/core/src/main/resources/hudson/model/JDK/config_zh_TW.properties b/core/src/main/resources/hudson/model/JDK/config_zh_TW.properties index a45a684c1f..c481a65382 100644 --- a/core/src/main/resources/hudson/model/JDK/config_zh_TW.properties +++ b/core/src/main/resources/hudson/model/JDK/config_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=\u540d\u7a31 +Name=\u540D\u7A31 diff --git a/core/src/main/resources/hudson/model/Job/configure_zh_TW.properties b/core/src/main/resources/hudson/model/Job/configure_zh_TW.properties index d2c6c7d99e..7f09adb310 100644 --- a/core/src/main/resources/hudson/model/Job/configure_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Job/configure_zh_TW.properties @@ -21,11 +21,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -LOADING=\u8f09\u5165\u4e2d +LOADING=\u8B80\u53D6\u4E2D -name={0} \u540d\u7a31 -Description=\u8aaa\u660e -Discard\ Old\ Builds=\u5ffd\u7565\u820a\u7684\u5efa\u7f6e +name={0} \u540D\u7A31 +Description=\u63CF\u8FF0 +Discard\ Old\ Builds=\u5FFD\u7565\u820ABuilds Strategy=\u7b56\u7565 Save=\u5132\u5b58 diff --git a/core/src/main/resources/hudson/model/Job/index_zh_TW.properties b/core/src/main/resources/hudson/model/Job/index_zh_TW.properties index d39582df49..3ab4ebaf35 100644 --- a/core/src/main/resources/hudson/model/Job/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Job/index_zh_TW.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Disable\ Project=\u505C\u7528\u5C08\u6848 Project\ name=\u5c08\u6848\u540d\u7a31 diff --git a/core/src/main/resources/hudson/model/Job/rename_zh_TW.properties b/core/src/main/resources/hudson/model/Job/rename_zh_TW.properties index c6cd81d557..efe780eb01 100644 --- a/core/src/main/resources/hudson/model/Job/rename_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Job/rename_zh_TW.properties @@ -25,6 +25,6 @@ configWasSaved=\u5176\u4ed6\u8a2d\u5b9a\u9078\u9805\u5df2\u88ab\u5132\u5b58\u300 noRenameWhileBuilding=\u4f5c\u696d\u5efa\u7f6e\u4e2d\uff0c\u7121\u6cd5\u6539\u540d\u3002 newNameInUse={0} \u9019\u500b\u540d\u5b57\u5df2\u7d93\u88ab\u4f7f\u7528\u4e86\u3002 -description=\u60a8\u78ba\u5b9a\u8981\u5c07 {0} \u6539\u540d\u6210 {1} \u55ce? -Yes=\u662f +description=\u4F60\u78BA\u5B9A\u8981\u5C07 {0} \u6539\u540D\u6210 {1}? +Yes=\u662F No=\u5426 diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_zh_TW.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_zh_TW.properties index 6f7a0be972..3c475c6abe 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_zh_TW.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_zh_TW.properties @@ -20,18 +20,18 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Job\ Filters=\u4f5c\u696d\u904e\u6ffe\u689d\u4ef6 -Status\ Filter=\u72c0\u614b\u904e\u6ffe -All\ selected\ jobs=\u6240\u6709\u9078\u53d6\u7684\u4f5c\u696d -Enabled\ jobs\ only=\u53ea\u9650\u555f\u7528\u7684\u4f5c\u696d -Disabled\ jobs\ only=\u53ea\u9650\u505c\u7528\u7684\u4f5c\u696d +Job\ Filters=\u5DE5\u4F5C\u904E\u6FFE\u5668 +Status\ Filter=\u72C0\u614B\u904E\u6FFE\u5668 +All\ selected\ jobs=\u6240\u6709\u9078\u53D6\u7684\u5DE5\u4F5C +Enabled\ jobs\ only=\u53EA\u986F\u793A\u555F\u7528\u7684\u5DE5\u4F5C +Disabled\ jobs\ only=\u53EA\u986F\u793A\u505C\u7528\u7684\u5DE5\u4F5C -Jobs=\u4f5c\u696d -Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=\u900f\u904e\u6b63\u898f\u8868\u793a\u5f0f\u5c07\u4f5c\u696d\u7d0d\u5165\u8996\u666f -Regular\ expression=\u6b63\u898f\u8868\u793a\u5f0f +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=\u4F7F\u7528\u6B63\u898F\u8868\u793A\u5F0F\u5C07\u5DE5\u4F5C\u7D0D\u5165\u8996\u5716 +Jobs=\u5DE5\u4F5C +Regular\ expression=\u6B63\u898F\u8868\u793A\u5F0F Add\ Job\ Filter=\u65b0\u589e\u4f5c\u696d\u904e\u6ffe\u689d\u4ef6 -Columns=\u6b04\u4f4d -Add\ column=\u65b0\u589e\u6b04\u4f4d +Columns=\u6B04\u4F4D +Add\ column=\u65B0\u589E\u6B04\u4F4D diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_zh_TW.properties b/core/src/main/resources/hudson/model/ParametersAction/index_zh_TW.properties index cc964264fc..368a1597de 100644 --- a/core/src/main/resources/hudson/model/ParametersAction/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/ParametersAction/index_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=\u5efa\u7f6e -Parameters=\u53c3\u6578 +Build=\u5EFA\u7F6E +Parameters=\u53C3\u6578 diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_zh_TW.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_zh_TW.properties index c5cbf64631..2e4dc6bcca 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_zh_TW.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_zh_TW.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. This\ build\ is\ parameterized=\u53c3\u6578\u5316\u5efa\u7f6e -Add\ Parameter=\u65b0\u589e\u53c3\u6578 +Add\ Parameter=\u65B0\u589E\u53C3\u6578 diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_zh_TW.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_zh_TW.properties index 93f0a7a9ce..8e4313af1a 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_zh_TW.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -format={0} ({1}), {2}\u524d +format={0} ({1}), {2} \u4EE5\u524D diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_zh_TW.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_zh_TW.properties index 0070582b98..e1766f3a97 100644 --- a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Keep\ this\ build\ forever=\u6c38\u4e45\u4fdd\u5b58\u9019\u6b21\u5efa\u7f6e +Keep\ this\ build\ forever=\u6C38\u4E45\u4FDD\u7559\u6B64\u5EFA\u7F6E diff --git a/core/src/main/resources/hudson/model/Run/console_zh_TW.properties b/core/src/main/resources/hudson/model/Run/console_zh_TW.properties index f39491a3fa..b2fd5e2c75 100644 --- a/core/src/main/resources/hudson/model/Run/console_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Run/console_zh_TW.properties @@ -21,5 +21,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u756b\u9762\u8f38\u51fa +Console\ Output=\u7D42\u7AEF\u6A5F\u8F38\u51FA skipSome=\u7565\u904e {0,number,integer} KB... \u5b8c\u6574\u5167\u5bb9 diff --git a/core/src/main/resources/hudson/model/Run/delete_zh_TW.properties b/core/src/main/resources/hudson/model/Run/delete_zh_TW.properties index 69f2e7543f..0a577250dc 100644 --- a/core/src/main/resources/hudson/model/Run/delete_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Run/delete_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=\u522A\u9664\u9019\u6B21\u5EFA\u7F6E +Delete\ this\ build=\u522A\u9664\u9019\u6B21\u5EFA\u69CB diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_zh_TW.properties index 133b4a9e17..14123332de 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preparation=\u6E96\u5099 +Preparation=\u6E96\u5099\u9805\u76EE diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_zh_TW.properties index 23b8807d63..8783fa6b2e 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_zh_TW.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Failure=\u5931\u6557 -Details=\u8a73\u7d30\u8cc7\u6599 +Details=\u8A73\u7D30\u8CC7\u6599 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_zh_TW.properties index 02e1a14603..5d07900d66 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Pending=\u64F1\u7F6E\u4E2D +Pending=\u64F1\u7F6E diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_zh_TW.properties index b81e92026b..567aec664b 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Restarting\ Jenkins=\u91CD\u65B0\u555F\u52D5 Jenkins +Restarting\ Jenkins=\u6B63\u5728\u91CD\u65B0\u555F\u52D5Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_zh_TW.properties index 3a2d493c89..8673a27129 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_zh_TW.properties @@ -21,6 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Go\ back\ to\ the\ top\ page=\u56de\u5230\u9996\u9801 -you\ can\ start\ using\ the\ installed\ plugins\ right\ away=\u60a8\u73fe\u5728\u5c31\u80fd\u958b\u59cb\u4f7f\u7528\u5b89\u88dd\u7684\u5916\u639b\u7a0b\u5f0f -warning=\u5b89\u88dd\u5b8c\u6210\u4e14\u6c92\u6709\u4efb\u4f55\u4f5c\u696d\u5728\u57f7\u884c\u6642\u91cd\u65b0\u555f\u52d5 Jenkins +Go\ back\ to\ the\ top\ page=\u56DE\u5230\u9996\u9801 +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=\u4F60\u53EF\u4EE5\u958B\u59CB\u4F7F\u7528\u5DF2\u5B89\u88DD\u597D\u7684\u63D2\u4EF6 +warning=\u7576\u5B89\u88DD\u5B8C\u6210\u4E14\u6C92\u6709\u5DE5\u4F5C\u6B63\u5728\u57F7\u884C\u6642\uFF0C\u91CD\u555FJenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_zh_TW.properties index f4e602086b..ecf8faef59 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_zh_TW.properties @@ -22,4 +22,4 @@ # THE SOFTWARE. Update\ Center=\u66f4\u65b0\u4e2d\u5fc3 -Installing\ Plugins/Upgrades=\u5b89\u88dd\u5916\u639b\u7a0b\u5f0f\u6216\u5347\u7248 +Installing\ Plugins/Upgrades=\u6B63\u5728\u5B89\u88DD/\u5347\u7D1A Plugins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_zh_TW.properties index e5e04a1929..f0a33307b7 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_zh_TW.properties @@ -21,6 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u56de\u5230\u5100\u8868\u677f +Back\ to\ Dashboard=\u8FD4\u56DEDashboard Manage\ Jenkins=\u7ba1\u7406 Jenkins -Manage\ Plugins=\u7ba1\u7406\u5916\u639b\u7a0b\u5f0f +Manage\ Plugins=\u7BA1\u7406\u5916\u639B\u7A0B\u5F0F diff --git a/core/src/main/resources/hudson/model/View/AsynchPeople/index_zh_TW.properties b/core/src/main/resources/hudson/model/View/AsynchPeople/index_zh_TW.properties index 9b2f10878d..c8c1589661 100644 --- a/core/src/main/resources/hudson/model/View/AsynchPeople/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/View/AsynchPeople/index_zh_TW.properties @@ -26,4 +26,4 @@ User\ Id=\u4f7f\u7528\u8005 ID Name=\u540d\u7a31 Last\ Active=\u6700\u8fd1\u4e00\u6b21\u6d3b\u52d5 On=\u6a21\u7d44 -All\ People=\u6240\u6709\u4eba\u54e1 +All\ People=\u6240\u6709\u4EBA\u54E1 diff --git a/core/src/main/resources/hudson/model/View/People/index_zh_TW.properties b/core/src/main/resources/hudson/model/View/People/index_zh_TW.properties index 7cdc477b43..083d9157ba 100644 --- a/core/src/main/resources/hudson/model/View/People/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/View/People/index_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -People=\u4eba\u54e1 +People=\u4F7F\u7528\u8005 diff --git a/core/src/main/resources/hudson/model/View/configure_zh_TW.properties b/core/src/main/resources/hudson/model/View/configure_zh_TW.properties index cba8953878..1fdbf02531 100644 --- a/core/src/main/resources/hudson/model/View/configure_zh_TW.properties +++ b/core/src/main/resources/hudson/model/View/configure_zh_TW.properties @@ -27,5 +27,5 @@ Description=\u8aaa\u660e Filter\ build\ queue=\u7be9\u9078\u5efa\u7f6e\u4f47\u5217 Filter\ build\ executors=\u7be9\u9078\u5efa\u7f6e\u57f7\u884c\u7a0b\u5f0f -OK=\u78ba\u5b9a +OK=\u78BA\u5B9A diff --git a/core/src/main/resources/hudson/model/View/newJob_zh_TW.properties b/core/src/main/resources/hudson/model/View/newJob_zh_TW.properties index 2519e836ef..537b4be97a 100644 --- a/core/src/main/resources/hudson/model/View/newJob_zh_TW.properties +++ b/core/src/main/resources/hudson/model/View/newJob_zh_TW.properties @@ -21,6 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -CopyExisting=\u8907\u88fd\u65e2\u6709\u7684{0} -JobName={0}\u540d\u7a31 +CopyExisting=\u8907\u88FD\u65E2\u6709\u7684{0} +JobName={0}\u540D\u7A31 NewJob=\u65b0\u589e{0} diff --git a/core/src/main/resources/hudson/model/View/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/model/View/sidepanel_zh_TW.properties index a38f6d40df..ab7ad3fdbb 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_zh_TW.properties @@ -21,10 +21,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewJob=\u65b0\u589e{0} -People=\u4eba\u54e1 +NewJob=\u65B0\u589E{0} +People=\u4F7F\u7528\u8005 Build\ History=\u5efa\u7f6e\u6b77\u7a0b -Edit\ View=\u7de8\u8f2f\u8996\u666f +Edit\ View=\u7DE8\u8F2F\u7248\u9762 Delete\ View=\u522a\u9664\u8996\u666f Project\ Relationship=\u5c08\u6848\u95dc\u9023 Check\ File\ Fingerprint=\u6aa2\u67e5\u6a94\u6848\u6307\u7d0b diff --git a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_zh_TW.properties b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_zh_TW.properties index f7b456a8a7..5087b3a8c1 100644 --- a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_zh_TW.properties +++ b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Free\ Space\ Threshold=\u53ef\u7528\u7a7a\u9593\u81e8\u754c\u503c +Free\ Space\ Threshold=\u5269\u9918\u7A7A\u9593\u81E8\u754C\u503C diff --git a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_zh_TW.properties b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_zh_TW.properties index 57291469b3..b124c61599 100644 --- a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_zh_TW.properties +++ b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_zh_TW.properties @@ -20,6 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Jenkins \u5df2\u5c07\u5065\u5eb7\u6307\u6578\u4f4e\u65bc\u81e8\u754c\u503c\u7684\u7bc0\u9ede\u6a19\u70ba\u96e2\u7dda\u3002\ - \u5982\u679c\u60a8\u4e0d\u5e0c\u671b Jenkins \u9019\u9ebc\u505a\uff0c\u53ef\u4ee5\u628a\u8a2d\u5b9a\u6539\u6389\u3002 -Dismiss=\u4e0d\u7ba1 +blurb=Jenkins \u5C07\u90E8\u5206 Slave \u8A2D\u70BA\u96E2\u7DDA\uFF0C\u56E0\u70BA\u5B83\u5011\u7684\u5065\u5EB7\u8861\u91CF\u6A19\u6E96\u5DF2\u7D93\u4F4E\u65BC\u81E8\u754C\u503C\u3002\u5982\u679C\u4F60\u89BA\u5F97 Jenkins \u592A\u96DE\u5A46\uFF0C\u8ACB\u4FEE\u6539\u8A2D\u5B9A\u3002 +Dismiss=\u89E3\u9664 diff --git a/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_zh_TW.properties b/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_zh_TW.properties index 1409bd6960..6fe16a854a 100644 --- a/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_zh_TW.properties +++ b/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_zh_TW.properties @@ -26,6 +26,6 @@ blurb=\ Administrator\ user\ name=\u7cfb\u7d71\u7ba1\u7406\u54e1\u4f7f\u7528\u8005\u540d\u7a31 Password=\u5bc6\u78bc Host=\u4e3b\u6a5f -Run\ service\ as=\u670d\u52d9\u57f7\u884c\u8eab\u5206 +Run\ service\ as=\u670D\u52D9\u57F7\u884C\u8EAB\u5206 Path\ to\ java\ executable=Java \u57f7\u884c\u6a94\u8def\u5f91 -JVM\ options=JVM \u9078\u9805\u53c3\u6578 +JVM\ options=JVM \u53C3\u6578 diff --git a/core/src/main/resources/hudson/search/Search/search-failed_zh_TW.properties b/core/src/main/resources/hudson/search/Search/search-failed_zh_TW.properties index e247941eeb..22d47f4089 100644 --- a/core/src/main/resources/hudson/search/Search/search-failed_zh_TW.properties +++ b/core/src/main/resources/hudson/search/Search/search-failed_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Search\ for=\u641c\u5c0b -Nothing\ seems\ to\ match.=\u627e\u4e0d\u5230\u7b26\u5408\u7684\u9805\u76ee\u3002 +Search\ for=\u641C\u5C0B +Nothing\ seems\ to\ match.=\u627E\u4E0D\u5230\u7B26\u5408\u4FEE\u4EF6\u7684\u5167\u5BB9\u3002 diff --git a/core/src/main/resources/hudson/search/UserSearchProperty/config_zh_TW.properties b/core/src/main/resources/hudson/search/UserSearchProperty/config_zh_TW.properties index 44c0a02a7d..4df5249856 100644 --- a/core/src/main/resources/hudson/search/UserSearchProperty/config_zh_TW.properties +++ b/core/src/main/resources/hudson/search/UserSearchProperty/config_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Case-sensitivity=\u5927\u5c0f\u5beb\u5340\u5206 -Insensitive\ search\ tool=\u4e0d\u5206\u5927\u5c0f\u5beb\u7684\u641c\u5c0b\u5de5\u5177 +Case-sensitivity=\u5927\u5C0F\u5BEB\u5340\u5206 +Insensitive\ search\ tool=\u4E0D\u5206\u5927\u5C0F\u5BEB\u7684\u641C\u5C0B\u5DE5\u5177 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_zh_TW.properties index 74c53ffaf9..5f53f63e61 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_zh_TW.properties @@ -22,5 +22,5 @@ # THE SOFTWARE. Create\ User=\u5efa\u7acb\u4f7f\u7528\u8005 -Back\ to\ Dashboard=\u56de\u5230\u5100\u8868\u677f +Back\ to\ Dashboard=\u56DE\u5230(\u9996\u9801)\u5100\u8868\u677F Manage\ Jenkins=\u7ba1\u7406 Jenkins 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 bbe5fe2a2e..8505469b09 100644 --- a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_zh_TW.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -launchingDescription=\u7bc0\u9ede\u555f\u52d5\u4e2d\u3002 -See\ log\ for\ more\ details=\u8a73\u7d30\u8cc7\u6599\u8acb\u770b\u8a18\u9304 -Relaunch\ slave\ agent=\u91cd\u65b0\u555f\u52d5 Slave \u4ee3\u7406\u7a0b\u5f0f -Launch\ slave\ agent=\u555f\u52d5 Slave \u4ee3\u7406\u7a0b\u5f0f +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/DumbSlave/configure-entries_zh_TW.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_zh_TW.properties index 89cf92fbcf..f4ceb65947 100644 --- a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_zh_TW.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Description=\u8aaa\u660e +Description=\u63CF\u8FF0 \#\ of\ executors=\u57f7\u884c\u7a0b\u5f0f\u6578\u91cf -Remote\ FS\ root=\u9060\u7aef\u6a94\u6848\u7cfb\u7d71\u6839\u76ee\u9304 -Labels=\u6a19\u7c64 -Launch\ method=\u555f\u52d5\u65b9\u5f0f -Availability=\u53ef\u7528\u6027 +Remote\ FS\ root=\u9060\u7AEF\u6A94\u6848\u7CFB\u7D71\u6839\u76EE\u9304 +Labels=\u6A19\u7C64 +Launch\ method=\u555F\u52D5\u6A21\u5F0F +Availability=\u53EF\u7528\u6027 Node\ Properties=\u7bc0\u9ede\u5c6c\u6027 diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/config_zh_TW.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_zh_TW.properties index 0d42304adb..871a55d2c2 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/config_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -JVM\ options=JVM \u9078\u9805\u53c3\u6578 -Tunnel\ connection\ through=Tunnel \u9023\u7dda\u4f4d\u7f6e +JVM\ options=JVM \u53C3\u6578 +Tunnel\ connection\ through=Tunnel \u9023\u7DDA\u4F4D\u7F6E 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 dce22c35b1..f9790de52b 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 @@ -27,4 +27,4 @@ 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.=\u900f\u904e JNLP \u4ee3\u7406\u7a0b\u5f0f\u9023\u7dda\u3002 +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/OfflineCause/LaunchFailed/cause_zh_TW.properties b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_zh_TW.properties index 1a4ccc3797..2069af8c19 100644 --- a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -See\ log\ for\ more\ details=\u8a73\u7d30\u8cc7\u6599\u8acb\u770b\u8a18\u9304 +See\ log\ for\ more\ details=\u5F9E\u65E5\u8A8C\u88E1\u53EF\u4EE5\u770B\u5230\u8A73\u7D30\u8CC7\u6599 diff --git a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_zh_TW.properties b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_zh_TW.properties index 8ecdc71d25..21e88606dd 100644 --- a/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/RetentionStrategy/Demand/config_zh_TW.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -In\ demand\ delay=\u9700\u8981\u6642\u4e0a\u7dda\u5ef6\u6642 -In\ demand\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=\u9700\u8981\u6642\u555f\u52d5\u5ef6\u9072\u4e00\u5b9a\u8981\u8f38\u5165\u6578\u5b57\u3002 -Idle\ delay=\u9592\u7f6e\u5f8c\u96e2\u7dda\u5ef6\u6642 -Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=\u9592\u7f6e\u5f8c\u95dc\u9589\u5ef6\u9072\u4e00\u5b9a\u8981\u8f38\u5165\u6578\u5b57\u3002 +In\ demand\ delay=\u9700\u8981\u6642\u555F\u52D5\u5EF6\u9072 +In\ demand\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=\u9700\u8981\u6642\u555F\u52D5\u5EF6\u9072\u4E00\u5B9A\u8981\u8F38\u5165\u6578\u5B57\u3002 +Idle\ delay=\u9592\u7F6E\u5F8C\u95DC\u9589\u5EF6\u9072 +Idle\ delay\ is\ mandatory\ and\ must\ be\ a\ number.=\u9592\u7F6E\u5F8C\u95DC\u9589\u5EF6\u9072\u4E00\u5B9A\u8981\u8F38\u5165\u6578\u5B57\u3002 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 46d0a5809d..f29f194e2d 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 @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Startup\ Schedule=\u555f\u52d5\u6392\u7a0b -Scheduled\ Uptime=\u6392\u5b9a\u555f\u52d5\u6642\u9593 -uptime.description=\u7bc0\u9ede\u4e0a\u7dda\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\u5728\u57f7\u884c\u4f5c\u696d\u6642\u4e0d\u8981\u99ac\u4e0a\u96e2\u7dda +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 diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/disconnect_zh_TW.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/disconnect_zh_TW.properties index 00d77fc531..ea2ca90776 100644 --- a/core/src/main/resources/hudson/slaves/SlaveComputer/disconnect_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/disconnect_zh_TW.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. disconnect=\u4e2d\u65b7\u9023\u7dda -Are\ you\ sure\ about\ disconnecting?=\u60a8\u78ba\u5b9a\u8981\u4e2d\u65b7\u9023\u7dda? -Yes=\u662f -blurb=\u60a8\u53ef\u4ee5\u8aaa\u660e\u5c07\u7bc0\u9ede\u96e2\u7dda\u7684\u539f\u56e0\uff0c\u8b93\u5176\u4ed6\u4eba\u77e5\u9053: +Are\ you\ sure\ about\ disconnecting?=\u60A8\u78BA\u5B9A\u8981\u4E2D\u65B7\u9023\u7DDA? +Yes=\u662F +blurb=\u60A8\u53EF\u4EE5\u8AAA\u660E\u5C07\u7BC0\u9EDE\u96E2\u7DDA\u7684\u539F\u56E0\uFF0C\u8B93\u5176\u4ED6\u4EBA\u77E5\u9053: diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_zh_TW.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_zh_TW.properties index a9f6df1986..86963ac10b 100644 --- a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_zh_TW.properties +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Log=\u8a18\u9304 -System\ Information=\u7cfb\u7d71\u8cc7\u8a0a -Disconnect=\u4e2d\u65b7\u9023\u7dda +Log=\u65E5\u8A8C +System\ Information=\u7CFB\u7D71\u8CC7\u8A0A +Disconnect=\u4E2D\u65B7\u9023\u7DDA diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_zh_TW.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_zh_TW.properties index 23706465f9..b75a388236 100644 --- a/core/src/main/resources/hudson/tasks/LogRotator/config_zh_TW.properties +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_zh_TW.properties @@ -20,13 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Days\ to\ keep\ builds=\u5efa\u7f6e\u4fdd\u7559\u5929\u6578 -if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=\ - \u5982\u679c\u6709\u503c\uff0c\u5efa\u7f6e\u8a18\u9304\u53ea\u6703\u4fdd\u7559\u6307\u5b9a\u7684\u5929\u6578\u3002 +Days\ to\ keep\ builds=\u5EFA\u69CB\u4FDD\u7559\u5929\u6578 +if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=\u5982\u679C\u6709\u503C\uFF0C\u5C31\u53EA\u6703\u4FDD\u5B58\u6307\u5B9A\u5929\u6578\u70BA\u4E0A\u9650\u7684\u5EFA\u7F6E\u8A18\u9304 Max\ \#\ of\ builds\ to\ keep=\u5efa\u7f6e\u4fdd\u7559\u6b21\u6578 -if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=\ - \u5982\u679c\u6709\u503c\uff0c\u53ea\u6703\u4fdd\u7559\u6307\u5b9a\u6b21\u6578\u7684\u5efa\u7f6e\u8a18\u9304\u3002 +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=\u5982\u679C\u6709\u503C\uFF0C\u5C31\u53EA\u6703\u4FDD\u5B58\u6307\u5B9A\u6578\u76EE\u70BA\u4E0A\u9650\u7684\u5EFA\u7F6E\u8A18\u9304 Days\ to\ keep\ artifacts=\u6210\u54c1\u4fdd\u7559\u5929\u6578 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=\ diff --git a/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_zh_TW.properties b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_zh_TW.properties index 1cd4797dc4..573df02437 100644 --- a/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_zh_TW.properties +++ b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Show\ all\ failed\ tests=\u986f\u793a\u6240\u6709\u5931\u6557\u7684\u6e2c\u8a66 +Show\ all\ failed\ tests=\u986F\u793A\u6240\u6709\u5931\u6557\u6E2C\u8A66 diff --git a/core/src/main/resources/hudson/tools/ToolInstallation/global_zh_TW.properties b/core/src/main/resources/hudson/tools/ToolInstallation/global_zh_TW.properties index 7169b83acd..cb63fb721d 100644 --- a/core/src/main/resources/hudson/tools/ToolInstallation/global_zh_TW.properties +++ b/core/src/main/resources/hudson/tools/ToolInstallation/global_zh_TW.properties @@ -23,5 +23,5 @@ title={0} \u5b89\u88dd description=\u672c\u7cfb\u7d71\u4e0a\u7684 {0} \u5b89\u88dd\u6e05\u55ae -label.add=\u65b0\u589e {0} -label.delete=\u522a\u9664 {0} +label.add=\u65B0\u589E{0} +label.delete=\u522A\u9664{0} diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/DescriptorImpl/index_zh_TW.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/DescriptorImpl/index_zh_TW.properties index d362ede6f6..e8a40287e9 100644 --- a/core/src/main/resources/hudson/triggers/SCMTrigger/DescriptorImpl/index_zh_TW.properties +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/DescriptorImpl/index_zh_TW.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Current\ SCM\ Polling\ Activities=\u76ee\u524d\u7684 SCM \u8f2a\u8a62\u6d3b\u52d5 +Current\ SCM\ Polling\ Activities=\u76EE\u524D\u7684 SCM \u8F2A\u8A62\u6D3B\u52D5 clogged=\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 No\ polling\ activity\ is\ in\ progress.=\u76ee\u524d\u6c92\u6709\u8f2a\u8a62\u6d3b\u52d5\u3002 The\ following\ polling\ activities\ are\ currently\ in\ progress\:=\u76ee\u524d\u6709\u4e0b\u5217\u8f2a\u8a62\u6d3b\u52d5: -Project=\u5c08\u6848 -Running\ for=\u57f7\u884c\u6642\u9593 +Project=\u5C08\u6848 +Running\ for=\u57F7\u884C\u6642\u9593 diff --git a/core/src/main/resources/hudson/util/AdministrativeError/message_zh_TW.properties b/core/src/main/resources/hudson/util/AdministrativeError/message_zh_TW.properties index fd3e991be1..b6ae2e532a 100644 --- a/core/src/main/resources/hudson/util/AdministrativeError/message_zh_TW.properties +++ b/core/src/main/resources/hudson/util/AdministrativeError/message_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -See\ the\ log\ for\ more\ details=\u8a73\u7d30\u8cc7\u6599\u8acb\u770b\u8a18\u9304 +See\ the\ log\ for\ more\ details=\u67E5\u770B\u65E5\u8A8C\u8A73\u7D30\u8CC7\u6599 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 index be483fac05..077a59224b 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_zh_TW.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_zh_TW.properties @@ -22,3 +22,4 @@ Schedule\ a\ build=\u6392\u7a0b\u5efa\u7f6e\u4f5c\u696d Build\ scheduled=\u5efa\u7f6e\u5df2\u52a0\u9032\u6392\u7a0b +Schedule\ a\ build\ with\ parameters=\u53C3\u6578\u5316\u5EFA\u7F6E diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_zh_TW.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_zh_TW.properties index 4b9074325e..ee7f6c3937 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/column_zh_TW.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=N/A +N/A=\u7121 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_zh_TW.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_zh_TW.properties index 5972548e14..9d5239955b 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/column_zh_TW.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=N/A +N/A=\u7121 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_zh_TW.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_zh_TW.properties index 2a028b00d7..ccabb0279d 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/column_zh_TW.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_zh_TW.properties @@ -20,4 +20,3 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=\u6C92\u6709 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_zh_TW.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_zh_TW.properties index 4d707b79fc..72ebd14fc3 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_zh_TW.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u756B\u9762\u8F38\u51FA +Console\ Output=\u4E3B\u63A7\u53F0\u8F38\u51FA diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_zh_TW.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_zh_TW.properties index a714b8a5ed..2eca1ffaac 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_zh_TW.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_zh_TW.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. trend=\u8da8\u52e2 -More\ ...=\u66f4\u591a... +More\ ...=\u66F4\u591A... for\ all=\u6458\u8981: \u5168\u90e8 for\ failures=\u6458\u8981: \u5931\u6557 diff --git a/core/src/main/resources/jenkins/management/PluginsLink/info_zh_TW.properties b/core/src/main/resources/jenkins/management/PluginsLink/info_zh_TW.properties index 1de7ab5459..a39bd1d806 100644 --- a/core/src/main/resources/jenkins/management/PluginsLink/info_zh_TW.properties +++ b/core/src/main/resources/jenkins/management/PluginsLink/info_zh_TW.properties @@ -21,4 +21,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -updates\ available=\u6709\u66f4\u65b0 +updates\ available=\u6709\u66F4\u65B0 diff --git a/core/src/main/resources/jenkins/model/Jenkins/_restart_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/_restart_zh_TW.properties index 30787edcc6..7f64e08694 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_restart_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_restart_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Are\ you\ sure\ about\ restarting\ Jenkins?=\u60a8\u78ba\u5b9a\u8981\u91cd\u65b0\u555f\u52d5 Jenkins \u55ce? -Yes=\u662f +Are\ you\ sure\ about\ restarting\ Jenkins?=\u60A8\u78BA\u5B9A\u8981\u91CD\u65B0\u555F\u52D5 Jenkins? +Yes=\u662F 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 e8df013c24..7571b68fc0 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 @@ -21,9 +21,7 @@ # THE SOFTWARE. Check\ File\ Fingerprint=\u6aa2\u67e5\u6a94\u6848\u6307\u7d0b -description=\ - \u624b\u908a\u6709\u4e00\u500b JAR \u6a94\uff0c\u537b\u4e0d\u77e5\u9053\u5b83\u5230\u5e95\u662f\u54ea\u4e00\u7248\u7684?
\ - \u5728 Jenkins \u7684\u6307\u7d0b\u8cc7\u6599\u5eab\u88e1\u627e\u627e\u770b\u5427 +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 more\ details=\u8a73\u7d30\u8cc7\u6599 File\ to\ check=\u8981\u6aa2\u67e5\u7684\u6a94\u6848 diff --git a/core/src/main/resources/lib/form/breadcrumb-config-outline_zh_TW.properties b/core/src/main/resources/lib/form/breadcrumb-config-outline_zh_TW.properties index 76d016f6a4..ce53d5cd2d 100644 --- a/core/src/main/resources/lib/form/breadcrumb-config-outline_zh_TW.properties +++ b/core/src/main/resources/lib/form/breadcrumb-config-outline_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -configuration=\u8a2d\u5b9a +configuration=\u7D44\u614B\u8A2D\u5B9A diff --git a/core/src/main/resources/lib/form/textarea_zh_TW.properties b/core/src/main/resources/lib/form/textarea_zh_TW.properties index e7edfdc2e2..8aa3cffed5 100644 --- a/core/src/main/resources/lib/form/textarea_zh_TW.properties +++ b/core/src/main/resources/lib/form/textarea_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preview=\u9810\u89bd -Hide\ preview=\u96b1\u85cf\u9810\u89bd +Preview=\u9810\u89BD +Hide\ preview=\u96B1\u85CF\u9810\u89BD diff --git a/core/src/main/resources/lib/hudson/editableDescription_zh_TW.properties b/core/src/main/resources/lib/hudson/editableDescription_zh_TW.properties index bcf7fdedc5..e52a9382d0 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_zh_TW.properties @@ -21,5 +21,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=\u65b0\u589e\u63cf\u8ff0\u8aaa\u660e +add\ description=\u65B0\u589E\u63CF\u8FF0 edit\ description=\u7de8\u8f2f\u63cf\u8ff0\u8aaa\u660e diff --git a/core/src/main/resources/lib/hudson/executors_zh_TW.properties b/core/src/main/resources/lib/hudson/executors_zh_TW.properties index dd105dc97b..69eebac77e 100644 --- a/core/src/main/resources/lib/hudson/executors_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/executors_zh_TW.properties @@ -21,7 +21,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -offline=\u96e2\u7dda +offline=\u96E2\u7DDA suspended=\u66ab\u505c Dead=\u6b7b\u6389 Offline=\u96e2\u7dda @@ -31,4 +31,4 @@ Unknown\ Task=\u4e0d\u660e\u7684\u4f5c\u696d terminate\ this\ build=\u4e2d\u65b7\u9019\u6b21\u5efa\u7f6e\u4f5c\u696d Build\ Executor\ Status=\u5efa\u7f6e\u57f7\u884c\u7a0b\u5f0f\u72c0\u614b Status=\u72c0\u614b -Master=Master +Master=\u4E3B\u7BC0\u9EDE diff --git a/core/src/main/resources/lib/hudson/project/config-builders_zh_TW.properties b/core/src/main/resources/lib/hudson/project/config-builders_zh_TW.properties index 1977234f20..70afc0423a 100644 --- a/core/src/main/resources/lib/hudson/project/config-builders_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/config-builders_zh_TW.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Add\ build\ step=\u65b0\u589e\u5efa\u7f6e\u6b65\u9a5f -Build=\u5efa\u7f6e +Build=\u5EFA\u7F6E diff --git a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_zh_TW.properties b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_zh_TW.properties index eede341223..8fbf17aa53 100644 --- a/core/src/main/resources/lib/hudson/project/config-concurrentBuild_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/config-concurrentBuild_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -title.concurrentbuilds=\u5fc5\u8981\u6642\u540c\u6642\u5efa\u7f6e +title.concurrentbuilds=\u5FC5\u8981\u6642\u540C\u6642\u57F7\u884C\u591A\u500B\u5EFA\u69CB diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_zh_TW.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_zh_TW.properties index 8fb444f1a2..f5715d1826 100644 --- a/core/src/main/resources/lib/hudson/project/config-disableBuild_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_zh_TW.properties @@ -21,5 +21,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Build=\u505c\u6b62\u5efa\u7f6e -No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=\u5c08\u6848\u91cd\u65b0\u555f\u7528\u524d\u4e0d\u6703\u518d\u5efa\u7f6e\u65b0\u7248\u3002 +Disable\ Build=\u505C\u7528Build +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=\u5728\u5C08\u6848\u88AB\u91CD\u65B0\u555F\u7528\u524D\u5C07\u4E0D\u518D\u57F7\u884C\u65B0\u7684\u5EFA\u69CB diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_zh_TW.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_zh_TW.properties index 0bd8a45510..1846d76669 100644 --- a/core/src/main/resources/lib/hudson/project/config-retryCount_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Retry\ Count=\u91cd\u8a66\u6b21\u6578 +Retry\ Count=\u91CD\u8A66\u6B21\u6578 SCM\ checkout\ retry\ count=SCM Checkout \u91cd\u8a66\u6b21\u6578 diff --git a/core/src/main/resources/lib/hudson/project/config-scm_zh_TW.properties b/core/src/main/resources/lib/hudson/project/config-scm_zh_TW.properties index e92dd53a51..df347f851b 100644 --- a/core/src/main/resources/lib/hudson/project/config-scm_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/config-scm_zh_TW.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Source\ Code\ Management=\u539f\u59cb\u78bc\u7ba1\u7406 +Source\ Code\ Management=\u539F\u59CB\u78BC\u7BA1\u7406 SCM\ Checkout\ Strategy=SCM Checkout \u7b56\u7565 Advanced\ Source\ Code\ Management=\u9032\u968e\u539f\u59cb\u78bc\u7ba1\u7406 diff --git a/core/src/main/resources/lib/hudson/project/matrix_zh_TW.properties b/core/src/main/resources/lib/hudson/project/matrix_zh_TW.properties index 3237ca326a..ffeb753191 100644 --- a/core/src/main/resources/lib/hudson/project/matrix_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/project/matrix_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Configurations=\u8a2d\u5b9a +Configurations=\u914D\u7F6E Configuration\ Matrix=\u8a2d\u5b9a\u77e9\u9663 diff --git a/core/src/main/resources/lib/hudson/queue_zh_TW.properties b/core/src/main/resources/lib/hudson/queue_zh_TW.properties index 5279a4b708..2079cfd9cb 100644 --- a/core/src/main/resources/lib/hudson/queue_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/queue_zh_TW.properties @@ -24,6 +24,7 @@ Build\ Queue=\u5efa\u7f6e\u4f47\u5217 Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins \u5373\u5c07\u505c\u6a5f\uff0c\u4e0d\u6703\u518d\u57f7\u884c\u4efb\u4f55\u65b0\u7684\u5efa\u7f6e\u4f5c\u696d\u3002 No\ builds\ in\ the\ queue.=\u4f47\u5217\u4e2d\u6c92\u6709\u5efa\u7f6e\u4f5c\u696d\u3002 +WaitingSince=\u5F9E {0} \u958B\u59CB\u7B49\u5F85 cancel=\u53d6\u6d88 -WaitingFor=\u7b49\u5019 {0} +WaitingFor=\u6B63\u5728\u7B49\u5F85 {0} Unknown\ Task=\u4e0d\u660e\u7684\u4f5c\u696d diff --git a/core/src/main/resources/lib/hudson/scriptConsole_zh_TW.properties b/core/src/main/resources/lib/hudson/scriptConsole_zh_TW.properties index 14c822178c..0a474875c7 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_zh_TW.properties @@ -26,8 +26,6 @@ description=\ \u8f38\u5165\u4efb\u610f\u7684 Groovy Script\uff0c\u5728\u4f3a\u670d\u5668\u4e0a\u57f7\u884c\u3002\ \u7591\u96e3\u6392\u89e3\u6216\u8a3a\u65b7\u6642\u5f88\u6709\u7528\u3002\u4f7f\u7528 "println" \u6307\u4ee4\u53ef\u4ee5\u770b\u5230\u8f38\u51fa\u7d50\u679c \ (\u5982\u679c\u60a8\u4f7f\u7528 System.out\uff0c\u5c07\u8f38\u51fa\u5230\u4f3a\u670d\u5668\u4e0a\u7684 stdout\uff0c\u6703\u6bd4\u8f03\u96e3\u770b\u5230)\u3002\u7bc4\u4f8b: -description2=\ - \u6240\u6709\u5916\u639b\u7a0b\u5f0f Class \u90fd\u53ef\u4ee5\u4f7f\u7528\u3002\ - \u5df2\u9810\u5148\u532f\u5165 jenkins.*, jenkins.model.*, hudson.* \u53ca hudson.model.* \u7b49 Package\u3002 +description2=\u6240\u6709\u5916\u639B\u7A0B\u5F0F\u7684 class \u90FD\u53EF\u4EE5\u4F7F\u7528\u3002\u5DF2\u9810\u5148 import \u4E86 jenkins.*, jenkins.model.*, hudson.* \u53CA hudson.model.* \u7B49 package\u3002 Run=\u57f7\u884c -Result=\u7d50\u679c +Result=\u7D50\u679C diff --git a/core/src/main/resources/lib/hudson/test-result_zh_TW.properties b/core/src/main/resources/lib/hudson/test-result_zh_TW.properties index 385a58217c..73f0c87935 100644 --- a/core/src/main/resources/lib/hudson/test-result_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/test-result_zh_TW.properties @@ -22,6 +22,6 @@ # THE SOFTWARE. no\ tests=\u6c92\u6709\u6e2c\u8a66\u6848\u4f8b -no\ failures=\u6c92\u6709\u5931\u6557\u6848\u4f8b +no\ failures=\u7121\u5931\u6557 1failure=1 \u9805\u5931\u6557 {0} multifailures={0} \u9805\u5931\u6557 {1} diff --git a/core/src/main/resources/lib/layout/breadcrumbBar_zh_TW.properties b/core/src/main/resources/lib/layout/breadcrumbBar_zh_TW.properties index 7eab0b9a9b..ae26bf7e39 100644 --- a/core/src/main/resources/lib/layout/breadcrumbBar_zh_TW.properties +++ b/core/src/main/resources/lib/layout/breadcrumbBar_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ENABLE\ AUTO\ REFRESH=\u81ea\u52d5\u66f4\u65b0\u9801\u9762 -DISABLE\ AUTO\ REFRESH=\u53d6\u6d88\u81ea\u52d5\u66f4\u65b0\u9801\u9762 +ENABLE\ AUTO\ REFRESH=\u958B\u555F\u81EA\u52D5\u66F4\u65B0\u9801\u9762 +DISABLE\ AUTO\ REFRESH=\u53D6\u6D88\u81EA\u52D5\u66F4\u65B0\u9801\u9762 diff --git a/core/src/main/resources/lib/layout/layout_zh_TW.properties b/core/src/main/resources/lib/layout/layout_zh_TW.properties index bfe599d2fa..9558098739 100644 --- a/core/src/main/resources/lib/layout/layout_zh_TW.properties +++ b/core/src/main/resources/lib/layout/layout_zh_TW.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -search=\u641c\u5c0b +search=\u641C\u5C0B searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box logout=\u767b\u51fa Page\ generated=\u9801\u9762\u7522\u751f\u6642\u9593 diff --git a/core/src/main/resources/lib/layout/progressiveRendering_zh_TW.properties b/core/src/main/resources/lib/layout/progressiveRendering_zh_TW.properties index 647818ffea..227734e962 100644 --- a/core/src/main/resources/lib/layout/progressiveRendering_zh_TW.properties +++ b/core/src/main/resources/lib/layout/progressiveRendering_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -progressMessage=\u6b63\u5728\u8a08\u7b97\u4e2d\u3002 +progressMessage=\u8A08\u7B97\u4E2D -- GitLab From 1f5fe41383072a18e4eaac05b035c87250a6576e Mon Sep 17 00:00:00 2001 From: Olivier Dagenais Date: Tue, 22 Oct 2013 14:52:51 -0400 Subject: [PATCH 087/308] Enhance the current user link in the header. 1 - Link to user's ID, which is properly escaped. 2 - Display user's full name if possible, otherwise their ID. --- core/src/main/resources/lib/layout/layout.jelly | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/core/src/main/resources/lib/layout/layout.jelly b/core/src/main/resources/lib/layout/layout.jelly index 49c91300a8..804479d4cf 100644 --- a/core/src/main/resources/lib/layout/layout.jelly +++ b/core/src/main/resources/lib/layout/layout.jelly @@ -173,8 +173,17 @@ ${h.initPageVariables(context)} + + + + + + + + + - ${app.authentication.name} + ${userName} | ${%logout} -- GitLab From b24aefb31f71f66f96961539e6ca11a29475fec9 Mon Sep 17 00:00:00 2001 From: Marco Miller Date: Tue, 22 Oct 2013 15:13:51 -0400 Subject: [PATCH 088/308] Null check for if build scheduling Refused by extension => not in Queue. No test added in hudson/cli/BuildCommandTest.groovy, as this case is no longer reproducible with bare Jenkins core and cli. Indeed, one now need a plugin to extend QueueDecisionHandler, so it can Refuse a build, hence test this specific null case. Regression tests do all pass still. --- core/src/main/java/hudson/cli/BuildCommand.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/src/main/java/hudson/cli/BuildCommand.java b/core/src/main/java/hudson/cli/BuildCommand.java index b6712ccdbb..a057c6d1f0 100644 --- a/core/src/main/java/hudson/cli/BuildCommand.java +++ b/core/src/main/java/hudson/cli/BuildCommand.java @@ -141,6 +141,10 @@ public class BuildCommand extends CLICommand { QueueTaskFuture f = job.scheduleBuild2(0, new CLICause(Jenkins.getAuthentication().getName()), a); if (wait || sync || follow) { + if (f == null) { + stderr.println("Build scheduling Refused by an extension, hence not in Queue."); + return -1; + } AbstractBuild b = f.waitForStart(); // wait for the start stdout.println("Started "+b.getFullDisplayName()); -- GitLab From cdddd3814505801684251c1b6894f82d70957b97 Mon Sep 17 00:00:00 2001 From: Pavel Cvrcek Date: Wed, 23 Oct 2013 14:53:49 +0200 Subject: [PATCH 089/308] Fix typo for Czech (cs) L10N. --- .../main/resources/hudson/model/View/sidepanel_cs.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/resources/hudson/model/View/sidepanel_cs.properties b/core/src/main/resources/hudson/model/View/sidepanel_cs.properties index 534ab73af7..b675772205 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_cs.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_cs.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Build\ History=Historie sestaven\u00ED -Check\ File\ Fingerprint=Ov\u011B\u0159it otsk souboru +Check\ File\ Fingerprint=Ov\u011B\u0159it otisk souboru NewJob=Nov\u00E9 People=Lid\u00E9 Project\ Relationship=Vazby mezi projekty -- GitLab From ba5003a5104a97e0cb8d5159512349f71db666a6 Mon Sep 17 00:00:00 2001 From: Olivier Dagenais Date: Wed, 23 Oct 2013 09:10:55 -0400 Subject: [PATCH 090/308] Switch to User.current --- core/src/main/resources/lib/layout/layout.jelly | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/resources/lib/layout/layout.jelly b/core/src/main/resources/lib/layout/layout.jelly index 804479d4cf..6c7bb407f1 100644 --- a/core/src/main/resources/lib/layout/layout.jelly +++ b/core/src/main/resources/lib/layout/layout.jelly @@ -173,7 +173,7 @@ ${h.initPageVariables(context)} - + -- GitLab From dceac8f0acbf4823a5c0de17f76f41ff130a2ede Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Wed, 23 Oct 2013 10:44:01 -0400 Subject: [PATCH 091/308] =?UTF-8?q?[FIXED=20JENKINS-19173]=20Added=20Conte?= =?UTF-8?q?xtMenuVisibility=20marker=20interface=20for=20Action=E2=80=99s.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- changelog.html | 3 + core/src/main/java/hudson/Functions.java | 11 ++ .../model/ModelObjectWithContextMenu.java | 31 +++++- .../main/resources/lib/hudson/actions.jelly | 2 +- .../java/jenkins/model/ContextMenuTest.java | 102 ++++++++++++++++++ 5 files changed, 144 insertions(+), 5 deletions(-) create mode 100644 test/src/test/java/jenkins/model/ContextMenuTest.java diff --git a/changelog.html b/changelog.html index 4b7d94e465..0cfb84d2ec 100644 --- a/changelog.html +++ b/changelog.html @@ -58,6 +58,9 @@ Upcoming changes
  • Pass full list of all possible jobs to ViewJobFilter when recurse option is set (issue 20143) +
  • + Added API allowing plugins to hide entries from the context menu even while they appear in the sidepanel. + (issue 19173)
  • diff --git a/core/src/main/java/hudson/Functions.java b/core/src/main/java/hudson/Functions.java index 4dae0aebcc..33014eb652 100644 --- a/core/src/main/java/hudson/Functions.java +++ b/core/src/main/java/hudson/Functions.java @@ -153,6 +153,7 @@ import com.google.common.base.Predicates; import java.util.concurrent.atomic.AtomicLong; import org.kohsuke.accmod.Restricted; import org.kohsuke.accmod.restrictions.DoNotUse; +import org.kohsuke.accmod.restrictions.NoExternalUse; /** * Utility functions used in views. @@ -1848,4 +1849,14 @@ public class Functions { rsp.setHeader("X-Jenkins-CLI-Host", TcpSlaveAgentListener.CLI_HOST_NAME); } } + + @Restricted(NoExternalUse.class) // for actions.jelly and ContextMenu.add + public static boolean isContextMenuVisible(Action a) { + if (a instanceof ModelObjectWithContextMenu.ContextMenuVisibility) { + return ((ModelObjectWithContextMenu.ContextMenuVisibility) a).isVisible(); + } else { + return true; + } + } + } diff --git a/core/src/main/java/jenkins/model/ModelObjectWithContextMenu.java b/core/src/main/java/jenkins/model/ModelObjectWithContextMenu.java index 6e04fb4b43..0e1e315b26 100644 --- a/core/src/main/java/jenkins/model/ModelObjectWithContextMenu.java +++ b/core/src/main/java/jenkins/model/ModelObjectWithContextMenu.java @@ -6,7 +6,6 @@ import hudson.model.Action; import hudson.model.Actionable; import hudson.model.BallColor; import hudson.model.Computer; -import hudson.model.Item; import hudson.model.Job; import hudson.model.ModelObject; import hudson.model.Node; @@ -58,7 +57,7 @@ public interface ModelObjectWithContextMenu extends ModelObject { /** * Data object that represents the context menu. - * + * * Via {@link HttpResponse}, this class is capable of converting itself to JSON that <l:breadcrumb/> understands. */ @ExportedBean @@ -83,8 +82,14 @@ public interface ModelObjectWithContextMenu extends ModelObject { add(a); return this; } - + + /** + * @see ContextMenuVisibility + */ public ContextMenu add(Action a) { + if (!Functions.isContextMenuVisible(a)) { + return this; + } StaplerRequest req = Stapler.getCurrentRequest(); String text = a.getDisplayName(); String base = Functions.getIconFilePath(a); @@ -95,7 +100,7 @@ public interface ModelObjectWithContextMenu extends ModelObject { return add(url,icon,text); } - + public ContextMenu add(String url, String icon, String text) { if (text != null && icon != null && url != null) items.add(new MenuItem(url,icon,text)); @@ -314,4 +319,22 @@ public interface ModelObjectWithContextMenu extends ModelObject { return withDisplayName(o.getDisplayName()); } } + + /** + * Allows an action to decide whether it will be visible in a context menu. + * @since 1.538 + */ + interface ContextMenuVisibility extends Action { + + /** + * Determines whether to show this action right now. + * Can always return false, for an action which should never be in the context menu; + * or could examine {@link Stapler#getCurrentRequest}. + * @return true to display it, false to hide + * @see ContextMenu#add(Action) + */ + boolean isVisible(); + + } + } diff --git a/core/src/main/resources/lib/hudson/actions.jelly b/core/src/main/resources/lib/hudson/actions.jelly index d1fb6b30d1..41f36b1e56 100644 --- a/core/src/main/resources/lib/hudson/actions.jelly +++ b/core/src/main/resources/lib/hudson/actions.jelly @@ -39,7 +39,7 @@ THE SOFTWARE. + href="${h.getActionUrl(it.url,action)}" contextMenu="${h.isContextMenuVisible(action)}"/> diff --git a/test/src/test/java/jenkins/model/ContextMenuTest.java b/test/src/test/java/jenkins/model/ContextMenuTest.java new file mode 100644 index 0000000000..2efd6e91f3 --- /dev/null +++ b/test/src/test/java/jenkins/model/ContextMenuTest.java @@ -0,0 +1,102 @@ +/* + * The MIT License + * + * Copyright 2013 Jesse Glick. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION 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 jenkins.model; + +import hudson.model.AbstractProject; +import hudson.model.Action; +import hudson.model.FreeStyleProject; +import hudson.model.TransientProjectActionFactory; +import java.util.Collection; +import java.util.Collections; +import java.util.Map; +import java.util.TreeMap; +import java.util.concurrent.Callable; +import static jenkins.model.ModelObjectWithContextMenu.*; +import static org.junit.Assert.assertEquals; +import org.junit.Rule; +import org.junit.Test; +import org.jvnet.hudson.test.Bug; +import org.jvnet.hudson.test.For; +import org.jvnet.hudson.test.JenkinsRule; +import org.jvnet.hudson.test.TestExtension; +import org.kohsuke.stapler.Stapler; + +@For(ContextMenu.class) +public class ContextMenuTest { + + @Rule public JenkinsRule j = new JenkinsRule(); + + @Bug(19173) + @Test public void contextMenuVisibility() throws Exception { + final FreeStyleProject p = j.createFreeStyleProject("p"); + Callable doContextMenu = new Callable() { + @Override public ContextMenu call() throws Exception { + return p.doContextMenu(Stapler.getCurrentRequest(), Stapler.getCurrentResponse()); + } + }; + ActionFactory f = j.jenkins.getExtensionList(TransientProjectActionFactory.class).get(ActionFactory.class); + f.visible = true; + ContextMenu menu = j.executeOnServer(doContextMenu); + Map parsed = parse(menu); + assertEquals(parsed.toString(), "Hello", parsed.get("testing")); + f.visible = false; + menu = j.executeOnServer(doContextMenu); + parsed = parse(menu); + assertEquals(parsed.toString(), null, parsed.get("testing")); + } + + @TestExtension public static class ActionFactory extends TransientProjectActionFactory { + + boolean visible; + + @SuppressWarnings("rawtypes") + @Override public Collection createFor(AbstractProject target) { + return Collections.singleton(new ContextMenuVisibility() { + @Override public boolean isVisible() { + return visible; + } + @Override public String getIconFileName() { + return "whatever"; + } + @Override public String getDisplayName() { + return "Hello"; + } + @Override public String getUrlName() { + return "testing"; + } + }); + } + + } + + private static Map parse(ContextMenu menu) { + Map r = new TreeMap(); + for (MenuItem mi : menu.items) { + r.put(mi.url.replaceFirst("^.*/(.)", "$1"), mi.displayName); + } + return r; + } + +} -- GitLab From eaeb45bdaaed37c34d0eca13b10af85eea65e09f Mon Sep 17 00:00:00 2001 From: Marco Miller Date: Tue, 22 Oct 2013 15:13:51 -0400 Subject: [PATCH 092/308] Null check for if build scheduling Refused by extension => not in Queue. New test in hudson/cli/BuildCommandTest.groovy, as well as companion @TestExtension class, thanks to Jesse' suggestion. This is so that we test this hereby fixed case of a QueueDecisionHandler Refusing a build, leading to that null value now checked and handled accordingly. Commit also includes sorted imports and a few minor indentation fixes, as well as another (very) minor string change. --- .../main/java/hudson/cli/BuildCommand.java | 4 ++ .../groovy/hudson/cli/BuildCommandTest.groovy | 47 ++++++++++++++----- 2 files changed, 39 insertions(+), 12 deletions(-) diff --git a/core/src/main/java/hudson/cli/BuildCommand.java b/core/src/main/java/hudson/cli/BuildCommand.java index b6712ccdbb..9282b47dff 100644 --- a/core/src/main/java/hudson/cli/BuildCommand.java +++ b/core/src/main/java/hudson/cli/BuildCommand.java @@ -141,6 +141,10 @@ public class BuildCommand extends CLICommand { QueueTaskFuture f = job.scheduleBuild2(0, new CLICause(Jenkins.getAuthentication().getName()), a); if (wait || sync || follow) { + if (f == null) { + stderr.println("Build scheduling Refused by an extension, hence not in Queue"); + return -1; + } AbstractBuild b = f.waitForStart(); // wait for the start stdout.println("Started "+b.getFullDisplayName()); diff --git a/test/src/test/groovy/hudson/cli/BuildCommandTest.groovy b/test/src/test/groovy/hudson/cli/BuildCommandTest.groovy index 80ae8c56d3..1018821fd2 100644 --- a/test/src/test/groovy/hudson/cli/BuildCommandTest.groovy +++ b/test/src/test/groovy/hudson/cli/BuildCommandTest.groovy @@ -23,22 +23,27 @@ */ package hudson.cli -import org.jvnet.hudson.test.JenkinsRule -import org.junit.Rule -import org.junit.Test +import org.apache.commons.io.output.TeeOutputStream import static org.junit.Assert.* import org.junit.Assume -import hudson.tasks.Shell -import hudson.util.OneShotEvent +import org.junit.Rule +import org.junit.Test +import org.jvnet.hudson.test.JenkinsRule import org.jvnet.hudson.test.TestBuilder -import hudson.model.AbstractBuild -import hudson.model.FreeStyleProject; +import org.jvnet.hudson.test.TestExtension + import hudson.Launcher +import hudson.model.AbstractBuild +import hudson.model.Action import hudson.model.BuildListener +import hudson.model.FreeStyleProject; +import hudson.model.ParametersAction import hudson.model.ParametersDefinitionProperty +import hudson.model.Queue.QueueDecisionHandler +import hudson.model.Queue.Task; import hudson.model.StringParameterDefinition -import hudson.model.ParametersAction -import org.apache.commons.io.output.TeeOutputStream +import hudson.tasks.Shell +import hudson.util.OneShotEvent /** * {@link BuildCommand} test. @@ -72,7 +77,6 @@ public class BuildCommandTest { } finally { cli.close(); } - } /** @@ -89,7 +93,6 @@ public class BuildCommandTest { } finally { cli.close(); } - } /** @@ -152,6 +155,26 @@ public class BuildCommandTest { } } + @Test void consoleOutputWhenBuildSchedulingRefused() { + Assume.assumeFalse("Started test0 #1", "https://jenkins.ci.cloudbees.com/job/core/job/jenkins_main_trunk/".equals(System.getenv("JOB_URL"))) + def p = j.createFreeStyleProject() + def cli = new CLI(j.URL) + try { + def o = new ByteArrayOutputStream() + cli.execute(["build","-s","-v",p.name],System.in,System.out,new TeeOutputStream(System.err,o)) + assertTrue(o.toString(), o.toString().contains("Build scheduling Refused by an extension, hence not in Queue")) + } finally { + cli.close() + } + } + // <=> + @TestExtension("consoleOutputWhenBuildSchedulingRefused") + static class UnschedulingVetoer extends QueueDecisionHandler { + public boolean shouldSchedule(Task task, List actions) { + return false; + } + } + @Test void refuseToBuildDisabledProject() { def project = j.createFreeStyleProject("the-project"); @@ -180,7 +203,7 @@ public class BuildCommandTest { def project = j.createFreeStyleProject("the-project"); project.addProperty(new ParametersDefinitionProperty([ - new StringParameterDefinition("expr", null) + new StringParameterDefinition("expr", null) ])); def invoker = new CLICommandInvoker(j, new BuildCommand()); -- GitLab From 728caf4dd05ca565d36de62c1fc3afd9be17f1a7 Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Wed, 23 Oct 2013 12:00:10 -0400 Subject: [PATCH 093/308] Noting executor-ondemand branch merge. --- changelog.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/changelog.html b/changelog.html index 0cfb84d2ec..84b99ab9d8 100644 --- a/changelog.html +++ b/changelog.html @@ -110,7 +110,8 @@ Upcoming changes Upgrade bundled iplugin versions: ssh-slaves to 1.4, ssh-credentials to 1.5.3 and credentials to 1.8.3 (issue 19945) - +
  • + Executor threads are now created only on demand.

    What's new in 1.535 (2013/10/14)

      -- GitLab From 365df70b1f0460e738d6183977ca9c975a98d105 Mon Sep 17 00:00:00 2001 From: Marco Miller Date: Wed, 23 Oct 2013 14:14:14 -0400 Subject: [PATCH 094/308] Refactor string constant duplicate in BuildCommand and BuildCommandTest. --- core/src/main/java/hudson/cli/BuildCommand.java | 4 +++- test/src/test/groovy/hudson/cli/BuildCommandTest.groovy | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/hudson/cli/BuildCommand.java b/core/src/main/java/hudson/cli/BuildCommand.java index 9282b47dff..2a6e5a8b7c 100644 --- a/core/src/main/java/hudson/cli/BuildCommand.java +++ b/core/src/main/java/hudson/cli/BuildCommand.java @@ -89,6 +89,8 @@ public class BuildCommand extends CLICommand { @Option(name="-r") @Deprecated public int retryCnt = 10; + protected static final String BUILD_SCHEDULING_REFUSED = "Build scheduling Refused by an extension, hence not in Queue"; + protected int run() throws Exception { job.checkPermission(Item.BUILD); @@ -142,7 +144,7 @@ public class BuildCommand extends CLICommand { if (wait || sync || follow) { if (f == null) { - stderr.println("Build scheduling Refused by an extension, hence not in Queue"); + stderr.println(BUILD_SCHEDULING_REFUSED); return -1; } AbstractBuild b = f.waitForStart(); // wait for the start diff --git a/test/src/test/groovy/hudson/cli/BuildCommandTest.groovy b/test/src/test/groovy/hudson/cli/BuildCommandTest.groovy index 1018821fd2..3c892fdb8a 100644 --- a/test/src/test/groovy/hudson/cli/BuildCommandTest.groovy +++ b/test/src/test/groovy/hudson/cli/BuildCommandTest.groovy @@ -162,7 +162,7 @@ public class BuildCommandTest { try { def o = new ByteArrayOutputStream() cli.execute(["build","-s","-v",p.name],System.in,System.out,new TeeOutputStream(System.err,o)) - assertTrue(o.toString(), o.toString().contains("Build scheduling Refused by an extension, hence not in Queue")) + assertTrue(o.toString(), o.toString().contains(BuildCommand.BUILD_SCHEDULING_REFUSED)) } finally { cli.close() } -- GitLab From 2771d233075e33337cde9910dc7b3f2595ff2472 Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Wed, 23 Oct 2013 14:39:52 -0400 Subject: [PATCH 095/308] ExtensionList.remove was unconditionally returning true, against Collection contract. --- core/src/main/java/hudson/ExtensionList.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/src/main/java/hudson/ExtensionList.java b/core/src/main/java/hudson/ExtensionList.java index e1a5ca9682..0d1d8f2d7f 100644 --- a/core/src/main/java/hudson/ExtensionList.java +++ b/core/src/main/java/hudson/ExtensionList.java @@ -176,23 +176,23 @@ public class ExtensionList extends AbstractList { @Override public synchronized boolean remove(Object o) { - removeComponent(legacyInstances,o); + boolean removed = removeComponent(legacyInstances, o); if(extensions!=null) { List> r = new ArrayList>(extensions); - removeComponent(r,o); + removed |= removeComponent(r,o); extensions = sort(r); } - return true; + return removed; } - private void removeComponent(Collection> collection, Object t) { + private boolean removeComponent(Collection> collection, Object t) { for (Iterator> itr = collection.iterator(); itr.hasNext();) { ExtensionComponent c = itr.next(); if (c.getInstance().equals(t)) { - collection.remove(c); - return; + return collection.remove(c); } } + return false; } @Override -- GitLab From 53a8ab20287eb35ea7fdc3fc51e1b9c79aea455c Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Wed, 23 Oct 2013 15:04:51 -0400 Subject: [PATCH 096/308] Pull #979: noting. [JENKINS-11347] [JENKINS-16692] might have been fixed by this, but unclear. --- changelog.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/changelog.html b/changelog.html index 84b99ab9d8..a76c101513 100644 --- a/changelog.html +++ b/changelog.html @@ -55,6 +55,9 @@ Upcoming changes
  • Test Name Duration
    - -
    + ${%Logger} - - + + + ${%Log level} - + +
    diff --git a/core/src/main/resources/lib/hudson/executors.properties b/core/src/main/resources/lib/hudson/executors.properties new file mode 100644 index 0000000000..76d77a195c --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors.properties @@ -0,0 +1 @@ +Computers=master{0,choice,0#|1# + {0,number} computer ({1} of {2} executors)|1< + {0,number} computers ({1} of {2} executors)} \ No newline at end of file diff --git a/core/src/main/resources/lib/hudson/executors_pt_BR.properties b/core/src/main/resources/lib/hudson/executors_pt_BR.properties index fc42883314..88b16bd387 100644 --- a/core/src/main/resources/lib/hudson/executors_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/executors_pt_BR.properties @@ -31,3 +31,4 @@ Status=Situa\u00E7\u00E3o Unknown\ Task=Tarefa n\u00e3o localizada suspended=suspenso Offline=desconectado +Computers=mestre{0,choice,0#|1# + {0,number} computador ({1} de {2} executores)|1< + {0,number} computadores ({1} de {2} executores)} \ No newline at end of file diff --git a/core/src/main/resources/lib/hudson/queue.jelly b/core/src/main/resources/lib/hudson/queue.jelly index dc13280435..fb4054666e 100644 --- a/core/src/main/resources/lib/hudson/queue.jelly +++ b/core/src/main/resources/lib/hudson/queue.jelly @@ -34,7 +34,7 @@ THE SOFTWARE. - +
    ${%grey} diff --git a/war/src/main/webapp/css/style.css b/war/src/main/webapp/css/style.css index 4aa3ecda56..a1372d0501 100644 --- a/war/src/main/webapp/css/style.css +++ b/war/src/main/webapp/css/style.css @@ -1122,4 +1122,9 @@ td.matrix-leftcolumn { td.matrix-cell { border: 1px #BBBBBB solid; text-align: center; -} \ No newline at end of file +} + +/* ========================= legend.jelly ================== */ +table#legend-table td { + vertical-align: middle; +} -- GitLab From df9ea26371a2817c250fec87dbf326eb2367c29a Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 3 Nov 2013 18:28:01 -0800 Subject: [PATCH 170/308] [maven-release-plugin] prepare release jenkins-1.538 --- cli/pom.xml | 2 +- core/pom.xml | 2 +- plugins/pom.xml | 8 ++++---- pom.xml | 2 +- test/pom.xml | 2 +- war/pom.xml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/cli/pom.xml b/cli/pom.xml index ea9947e0a8..5441e599c6 100644 --- a/cli/pom.xml +++ b/cli/pom.xml @@ -5,7 +5,7 @@ pom org.jenkins-ci.main - 1.538-SNAPSHOT + 1.538 cli diff --git a/core/pom.xml b/core/pom.xml index d7566bf0fc..bdb736f7ca 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -29,7 +29,7 @@ THE SOFTWARE. org.jenkins-ci.main pom - 1.538-SNAPSHOT + 1.538 ../pom.xml diff --git a/plugins/pom.xml b/plugins/pom.xml index 2597b24d7d..692d3b2932 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -11,7 +11,7 @@ org.jenkins-ci.plugins plugin Jenkins plugin POM - 1.538-SNAPSHOT + 1.538 pom +

    What's new in 1.538 (2013/11/03)

    • Disabled, aborted, and not-build status now has different image names to allow @@ -102,7 +105,6 @@ Upcoming changes (issue 19173)
    -

    What's new in 1.537 (2013/10/27)

    • -- GitLab From d668fc82a4bbc72e9d8ff0acb9d9c27cbc71bbfa Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 3 Nov 2013 20:19:39 -0800 Subject: [PATCH 173/308] updated changelog as a part of the release --- debian/debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/debian/changelog b/debian/debian/changelog index b3ba615d31..7d0f37992f 100644 --- a/debian/debian/changelog +++ b/debian/debian/changelog @@ -1,3 +1,9 @@ +jenkins (1.538) unstable; urgency=low + + * See http://jenkins-ci.org/changelog for more details. + + -- Kohsuke Kawaguchi Sun, 03 Nov 2013 18:49:47 -0800 + jenkins (1.537) unstable; urgency=low * See http://jenkins-ci.org/changelog for more details. -- GitLab From 0c7736c5594b5bec79a1978c286afacf04c93ef4 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 3 Nov 2013 22:39:48 -0800 Subject: [PATCH 174/308] creating an RC branch --- changelog.html | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/changelog.html b/changelog.html index 3b665743b2..ffecaadc66 100644 --- a/changelog.html +++ b/changelog.html @@ -55,18 +55,20 @@ Upcoming changes

      What's new in 1.538 (2013/11/03)

        -- GitLab From 1be677da3698503366c34fc3f8e17959822abdb0 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 3 Nov 2013 22:39:53 -0800 Subject: [PATCH 175/308] the trunk is toward 1.540-SNAPSHOT --- cli/pom.xml | 2 +- core/pom.xml | 2 +- plugins/pom.xml | 8 ++++---- pom.xml | 2 +- test/pom.xml | 2 +- war/pom.xml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/cli/pom.xml b/cli/pom.xml index e8bd340c58..b68d1ec486 100644 --- a/cli/pom.xml +++ b/cli/pom.xml @@ -5,7 +5,7 @@ pom org.jenkins-ci.main - 1.539-SNAPSHOT + 1.540-SNAPSHOT cli diff --git a/core/pom.xml b/core/pom.xml index 075e3defe9..eef7ba7e48 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -29,7 +29,7 @@ THE SOFTWARE. org.jenkins-ci.main pom - 1.539-SNAPSHOT + 1.540-SNAPSHOT ../pom.xml diff --git a/plugins/pom.xml b/plugins/pom.xml index aff12a2612..b588f2194b 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -11,7 +11,7 @@ org.jenkins-ci.plugins plugin Jenkins plugin POM - 1.539-SNAPSHOT + 1.540-SNAPSHOT pom -- GitLab From 0696dbd2b527c6be91f8f8e57642928526fbeb41 Mon Sep 17 00:00:00 2001 From: Harald Albers Date: Tue, 5 Nov 2013 09:22:42 +0100 Subject: [PATCH 179/308] restored some Spanish messages these messages were purged in 772bd8f63f7ab45b5235aa02f51e02e781c37c0b for being unused, but they are actually active. --- .../BecauseOfUpstreamBuildInProgress/summary.properties | 2 ++ .../BecauseOfUpstreamBuildInProgress/summary_es.properties | 2 ++ .../queue/CauseOfBlockage/BecauseLabelIsBusy/summary.properties | 1 + .../CauseOfBlockage/BecauseLabelIsBusy/summary_es.properties | 1 + .../CauseOfBlockage/BecauseLabelIsOffline/summary.properties | 1 + .../CauseOfBlockage/BecauseLabelIsOffline/summary_es.properties | 1 + .../queue/CauseOfBlockage/BecauseNodeIsBusy/summary.properties | 1 + .../CauseOfBlockage/BecauseNodeIsBusy/summary_es.properties | 1 + .../CauseOfBlockage/BecauseNodeIsOffline/summary.properties | 1 + .../CauseOfBlockage/BecauseNodeIsOffline/summary_es.properties | 1 + 10 files changed, 12 insertions(+) diff --git a/core/src/main/resources/hudson/model/AbstractProject/BecauseOfUpstreamBuildInProgress/summary.properties b/core/src/main/resources/hudson/model/AbstractProject/BecauseOfUpstreamBuildInProgress/summary.properties index e537898f62..21a30d2fba 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/BecauseOfUpstreamBuildInProgress/summary.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/BecauseOfUpstreamBuildInProgress/summary.properties @@ -19,4 +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. + +# 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 index 02590d4919..694e2ef320 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/BecauseOfUpstreamBuildInProgress/summary_es.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/BecauseOfUpstreamBuildInProgress/summary_es.properties @@ -19,3 +19,5 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. + +description=El proyecto padre {0} est\u00E1 ejecutandose actualmente. diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary.properties index b6c0fe122b..7f61c09183 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary.properties @@ -20,4 +20,5 @@ # 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=Waiting for next available executor on {0} \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_es.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_es.properties index ba69db7a20..d1d23c182c 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_es.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_es.properties @@ -20,3 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +description=Esperando por un ejecutor disponible en {0} diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary.properties index 537082c7d0..fc4d8c5c89 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary.properties @@ -20,4 +20,5 @@ # 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=All nodes of label \u2018{0}\u2019 are offline \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_es.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_es.properties index 5426c35fc5..ae8966509b 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_es.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_es.properties @@ -20,3 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +description=Todos los nodos etiquetados como ''{0}'' estan fuera de l\u00EDnea diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary.properties index 159afb37a2..e8e094ee2f 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary.properties @@ -20,4 +20,5 @@ # 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=Waiting for next available executor on {0} \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_es.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_es.properties index 5426c35fc5..a5e37e240a 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_es.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_es.properties @@ -20,3 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +description=Esperando por un ejecutor libre en {0} diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary.properties index 451565147d..0dc327b93d 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary.properties @@ -20,4 +20,5 @@ # 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={0} is offline \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_es.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_es.properties index 5426c35fc5..f4a266d783 100644 --- a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_es.properties +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_es.properties @@ -20,3 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +description={0} est\u00E1 fuera de l\u00EDnea -- GitLab From aa9e1a2f5e330c27c2313fad8f68d6dab87fe04a Mon Sep 17 00:00:00 2001 From: Harald Albers Date: Tue, 5 Nov 2013 10:23:22 +0100 Subject: [PATCH 180/308] updated German localization --- .../summary_de.properties | 23 +++++++++++++++++++ .../AbstractProject/sidepanel_de.properties | 3 ++- .../svn-password_de.properties | 6 ++--- .../config_de.properties | 2 +- .../BecauseLabelIsBusy/summary_de.properties | 23 +++++++++++++++++++ .../summary_de.properties | 23 +++++++++++++++++++ .../BecauseNodeIsBusy/summary_de.properties | 23 +++++++++++++++++++ .../summary_de.properties | 23 +++++++++++++++++++ 8 files changed, 121 insertions(+), 5 deletions(-) create mode 100644 core/src/main/resources/hudson/model/AbstractProject/BecauseOfUpstreamBuildInProgress/summary_de.properties create mode 100644 core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_de.properties create mode 100644 core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_de.properties create mode 100644 core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_de.properties create mode 100644 core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_de.properties diff --git a/core/src/main/resources/hudson/model/AbstractProject/BecauseOfUpstreamBuildInProgress/summary_de.properties b/core/src/main/resources/hudson/model/AbstractProject/BecauseOfUpstreamBuildInProgress/summary_de.properties new file mode 100644 index 0000000000..97f2d5a94b --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/BecauseOfUpstreamBuildInProgress/summary_de.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2004-2013, Sun Microsystems, Inc., Harald Albers +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION 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=Vorgelagertes Projekt {0} ist bereits in Arbeit. 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 3ea4b8938e..77b8af3cc0 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_de.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_de.properties @@ -20,7 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard= Zur\u00fcck zur \u00dcbersicht +Back\ to\ Dashboard=Zur\u00fcck zur \u00dcbersicht +Up=Zur\u00FCck Status=Status Changes=\u00c4nderungen Workspace=Arbeitsbereich diff --git a/core/src/main/resources/hudson/model/AbstractProject/svn-password_de.properties b/core/src/main/resources/hudson/model/AbstractProject/svn-password_de.properties index e10cbf7f5c..5f34bbbb12 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/svn-password_de.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/svn-password_de.properties @@ -9,6 +9,6 @@ step.1=Melden Sie sich am Rechner an, auf dem Jenkins l step.2=Führen Sie manuell svn co ... aus. step.3=Subversion fragt Sie interaktiv nach dem Passwort. Geben Sie dieses ein. step.4=Subversion speichert das Passwort in seinem eigenen Authentifizierungscache. Bei allen \ -weiteren Aufrufen von svn co ... wird das Passwort aus dem Cache verwendet. -final.words=Dieses Vorgehen schützt Ihr Passwort nicht wirklich - es ist aber immerhin \ - ein bißchen schwerer auszuspähen. + weiteren Aufrufen von svn co ... wird das Passwort aus dem Cache verwendet. +final.words=Dieses Vorgehen sch\u00FCtzt Ihr Passwort nicht wirklich - es ist aber immerhin \ + ein bisschen schwerer auszusp\u00E4hen. diff --git a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_de.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_de.properties index ec7096e656..f72b60617d 100644 --- a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_de.properties +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_de.properties @@ -1,4 +1,4 @@ -Trigger\ builds\ remotely=Auslöser, um entfernte Builds zu starten +Trigger\ builds\ remotely=Builds von au\u00DFerhalb starten e.g.,\ from\ scripts=z.B. skriptgesteuert Authentication\ Token=Authentifizierungstoken Use\ the\ following\ URL\ to\ trigger\ build\ remotely\:=Folgende URL verwenden, um einen entfernte Build auszulösen: diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_de.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_de.properties new file mode 100644 index 0000000000..ae346aa40b --- /dev/null +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsBusy/summary_de.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2013, Sun Microsystems, Harald Albers +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION 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=Alle Knoten des Labels ''{0}'' sind besch\u00E4ftigt diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_de.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_de.properties new file mode 100644 index 0000000000..3d051d5cc9 --- /dev/null +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseLabelIsOffline/summary_de.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2013, Sun Microsystems, Harald Albers +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION 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=Alle Knoten des Labels ''{0}'' sind offline diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_de.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_de.properties new file mode 100644 index 0000000000..5224073a77 --- /dev/null +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsBusy/summary_de.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2013, Sun Microsystems, Harald Albers +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION 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=Warte auf den n\u00E4chsten freien Build-Prozessor auf {0} diff --git a/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_de.properties b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_de.properties new file mode 100644 index 0000000000..b73f5f7b14 --- /dev/null +++ b/core/src/main/resources/hudson/model/queue/CauseOfBlockage/BecauseNodeIsOffline/summary_de.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2013, Sun Microsystems, Harald Albers +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION 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={0} ist offline -- GitLab From 313c2a804a83a72536e3c08a79942e4a5718207f Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Tue, 5 Nov 2013 12:58:00 -0500 Subject: [PATCH 181/308] Should use safeRestart, not immediate restart, when -restart option is given. --- core/src/main/java/hudson/cli/InstallPluginCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/hudson/cli/InstallPluginCommand.java b/core/src/main/java/hudson/cli/InstallPluginCommand.java index eb64582b08..38c04b3996 100644 --- a/core/src/main/java/hudson/cli/InstallPluginCommand.java +++ b/core/src/main/java/hudson/cli/InstallPluginCommand.java @@ -141,7 +141,7 @@ public class InstallPluginCommand extends CLICommand { } if (restart) - h.restart(); + h.safeRestart(); return 0; // all success } -- GitLab From 678771ade39f4a156f365adb576d17c3c2c98c83 Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Tue, 5 Nov 2013 14:06:03 -0500 Subject: [PATCH 182/308] Updated @since due to backport. --- core/src/main/java/jenkins/model/RunAction2.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/jenkins/model/RunAction2.java b/core/src/main/java/jenkins/model/RunAction2.java index d655042a4f..b5443bcccb 100644 --- a/core/src/main/java/jenkins/model/RunAction2.java +++ b/core/src/main/java/jenkins/model/RunAction2.java @@ -29,7 +29,7 @@ import hudson.model.Run; /** * Optional interface for {@link Action}s that add themselves to a {@link Run}. - * @since 1.519 + * @since 1.519, 1.509.3 */ public interface RunAction2 extends Action { -- GitLab From 521b578a872d1feacdca24f515ed70cf8d41fdd5 Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Tue, 5 Nov 2013 14:27:19 -0500 Subject: [PATCH 183/308] Use RunAction2 to avoid persisting a build field. --- core/src/main/java/hudson/triggers/SCMTrigger.java | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/hudson/triggers/SCMTrigger.java b/core/src/main/java/hudson/triggers/SCMTrigger.java index 2f93968bf0..daad3527bd 100644 --- a/core/src/main/java/hudson/triggers/SCMTrigger.java +++ b/core/src/main/java/hudson/triggers/SCMTrigger.java @@ -36,6 +36,7 @@ import hudson.model.Item; import hudson.model.Project; import hudson.model.SCMedItem; import hudson.model.AdministrativeMonitor; +import hudson.model.Run; import hudson.util.FlushProofOutputStream; import hudson.util.FormValidation; import hudson.util.StreamTaskListener; @@ -66,6 +67,7 @@ import org.kohsuke.stapler.QueryParameter; import org.kohsuke.stapler.StaplerResponse; import static java.util.logging.Level.*; +import jenkins.model.RunAction2; /** * {@link Trigger} that checks for SCM updates periodically. @@ -289,8 +291,8 @@ public class SCMTrigger extends Trigger { * * @since 1.376 */ - public static class BuildAction implements Action { - public final AbstractBuild build; + public static class BuildAction implements RunAction2 { + public transient /*final*/ AbstractBuild build; public BuildAction(AbstractBuild build) { this.build = build; @@ -337,6 +339,14 @@ public class SCMTrigger extends Trigger { // TODO: resurrect compressed log file support getPollingLogText().writeHtmlTo(offset, out.asWriter()); } + + @Override public void onAttached(Run r) { + // unnecessary, existing constructor does this + } + + @Override public void onLoad(Run r) { + build = (AbstractBuild) r; + } } /** -- GitLab From 645232557a437803d91d1c1973228f04ab5b164a Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Tue, 5 Nov 2013 14:28:04 -0500 Subject: [PATCH 184/308] Added Cause.onLoad in case a Cause implementation needs to keep a build field. --- core/src/main/java/hudson/model/Cause.java | 8 ++++++++ core/src/main/java/hudson/model/CauseAction.java | 9 +++++++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/hudson/model/Cause.java b/core/src/main/java/hudson/model/Cause.java index 187bed2ce4..8283cfa68c 100644 --- a/core/src/main/java/hudson/model/Cause.java +++ b/core/src/main/java/hudson/model/Cause.java @@ -76,6 +76,14 @@ public abstract class Cause { */ public void onAddedTo(AbstractBuild build) {} + /** + * Called when a build is loaded from disk. + * Useful in case the cause needs to keep a build reference; + * this ought to be {@code transient}. + * @since 1.540 + */ + public void onLoad(@Nonnull AbstractBuild build) {} + /** * Report a line to the listener about this cause. * @since 1.362 diff --git a/core/src/main/java/hudson/model/CauseAction.java b/core/src/main/java/hudson/model/CauseAction.java index 38b5f6284a..e823afdfed 100644 --- a/core/src/main/java/hudson/model/CauseAction.java +++ b/core/src/main/java/hudson/model/CauseAction.java @@ -116,8 +116,13 @@ public class CauseAction implements FoldableAction, RunAction2 { return causes.get(0).getShortDescription(); } - @Override public void onLoad(Run r) { - // noop + @Override public void onLoad(Run owner) { + if (owner instanceof AbstractBuild) { // cf. onAttached + AbstractBuild b = (AbstractBuild) owner; + for (Cause c : causes) { + c.onLoad(b); + } + } } /** -- GitLab From cf45c6a8f2eed7bdd8bb74c8d756fb34598ff06e Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Tue, 5 Nov 2013 14:33:56 -0500 Subject: [PATCH 185/308] Another case where RunAction2 is needed: SCM tag actions. --- .../main/java/hudson/scm/AbstractScmTagAction.java | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/hudson/scm/AbstractScmTagAction.java b/core/src/main/java/hudson/scm/AbstractScmTagAction.java index a3889259a9..e4477ad213 100644 --- a/core/src/main/java/hudson/scm/AbstractScmTagAction.java +++ b/core/src/main/java/hudson/scm/AbstractScmTagAction.java @@ -26,6 +26,7 @@ package hudson.scm; import hudson.model.AbstractBuild; import hudson.model.TaskAction; import hudson.model.BuildBadgeAction; +import hudson.model.Run; import hudson.security.Permission; import hudson.security.ACL; import org.kohsuke.stapler.StaplerRequest; @@ -33,6 +34,7 @@ import org.kohsuke.stapler.StaplerResponse; import javax.servlet.ServletException; import java.io.IOException; +import jenkins.model.RunAction2; /** * Common part of CVSSCM.TagAction and SubversionTagAction. @@ -44,8 +46,8 @@ import java.io.IOException; * * @author Kohsuke Kawaguchi */ -public abstract class AbstractScmTagAction extends TaskAction implements BuildBadgeAction { - protected final AbstractBuild build; +public abstract class AbstractScmTagAction extends TaskAction implements BuildBadgeAction, RunAction2 { + protected transient /*final*/ AbstractBuild build; protected AbstractScmTagAction(AbstractBuild build) { this.build = build; @@ -93,4 +95,12 @@ public abstract class AbstractScmTagAction extends TaskAction implements BuildBa return "tagForm.jelly"; } + @Override public void onAttached(Run r) { + // unnecessary, constructor already does this + } + + @Override public void onLoad(Run r) { + build = (AbstractBuild) r; + } + } -- GitLab From b2730f3d31da93a45c7321962141c6f1bc360937 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 31 Oct 2013 11:10:04 -0700 Subject: [PATCH 186/308] error stream isn't always available --- cli/src/main/java/hudson/cli/CLI.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/cli/src/main/java/hudson/cli/CLI.java b/cli/src/main/java/hudson/cli/CLI.java index 30d5fbc4c9..b17464e46b 100644 --- a/cli/src/main/java/hudson/cli/CLI.java +++ b/cli/src/main/java/hudson/cli/CLI.java @@ -307,10 +307,12 @@ public class CLI { } catch (IOException e) { try { InputStream es = ((HttpURLConnection)conn).getErrorStream(); - while (es.read(buf) >= 0) { - // Ignore + if (es!=null) { + while (es.read(buf) >= 0) { + // Ignore + } + es.close(); } - es.close(); } catch (IOException ex) { // Ignore } -- GitLab From 344ba8de31fb36e6dec1a3e0893ee23b80d9ae1e Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 31 Oct 2013 11:14:49 -0700 Subject: [PATCH 187/308] improved error diagnostics --- cli/src/main/java/hudson/cli/CLI.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cli/src/main/java/hudson/cli/CLI.java b/cli/src/main/java/hudson/cli/CLI.java index b17464e46b..f8928eeaae 100644 --- a/cli/src/main/java/hudson/cli/CLI.java +++ b/cli/src/main/java/hudson/cli/CLI.java @@ -284,6 +284,10 @@ 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); + throw new IOException("No X-Jenkins-CLI2-Port among " + head.getHeaderFields().keySet()); } -- GitLab From dfc2f57d191b4dcc54f44b225479c62806397628 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Tue, 5 Nov 2013 12:29:04 -0800 Subject: [PATCH 188/308] this can happen so early in the game that j might be null "Jenkins is loading" page gets set up before Jenkins instance gets initialized. --- core/src/main/java/hudson/Functions.java | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/core/src/main/java/hudson/Functions.java b/core/src/main/java/hudson/Functions.java index 3aad42c2bd..eb4330bc76 100644 --- a/core/src/main/java/hudson/Functions.java +++ b/core/src/main/java/hudson/Functions.java @@ -1838,17 +1838,18 @@ public class Functions { */ public static void advertiseHeaders(HttpServletResponse rsp) { Jenkins j = Jenkins.getInstance(); - - rsp.setHeader("X-Hudson","1.395"); - rsp.setHeader("X-Jenkins", Jenkins.VERSION); - rsp.setHeader("X-Jenkins-Session", Jenkins.SESSION_HASH); - - TcpSlaveAgentListener tal = j.tcpSlaveAgentListener; - if (tal !=null) { - rsp.setIntHeader("X-Hudson-CLI-Port", tal.getPort()); - rsp.setIntHeader("X-Jenkins-CLI-Port", tal.getPort()); - rsp.setIntHeader("X-Jenkins-CLI2-Port", tal.getPort()); - rsp.setHeader("X-Jenkins-CLI-Host", TcpSlaveAgentListener.CLI_HOST_NAME); + if (j!=null) { + rsp.setHeader("X-Hudson","1.395"); + rsp.setHeader("X-Jenkins", Jenkins.VERSION); + rsp.setHeader("X-Jenkins-Session", Jenkins.SESSION_HASH); + + TcpSlaveAgentListener tal = j.tcpSlaveAgentListener; + if (tal !=null) { + rsp.setIntHeader("X-Hudson-CLI-Port", tal.getPort()); + rsp.setIntHeader("X-Jenkins-CLI-Port", tal.getPort()); + rsp.setIntHeader("X-Jenkins-CLI2-Port", tal.getPort()); + rsp.setHeader("X-Jenkins-CLI-Host", TcpSlaveAgentListener.CLI_HOST_NAME); + } } } -- GitLab From 9ed2ed5fd90de8930802090cb7d0ffd0f996620c Mon Sep 17 00:00:00 2001 From: Daniel Beck Date: Tue, 5 Nov 2013 23:44:41 +0100 Subject: [PATCH 189/308] [JENKINS-15757] Add tests A new test for the existing 'Remember me' functionality that verifies that the cookie is set, and a new test showing that, even if requested by the user, no cookie will be set, if 'Remember me' is disabled in the security configuration. --- .../jvnet/hudson/test/recipes/PresetData.java | 2 + .../main/preset-data/secured-acegi/config.xml | 16 ++++++ .../main/preset-data/secured-acegi/readme.txt | 3 ++ .../secured-acegi/users/alice/config.xml | 29 +++++++++++ .../test/java/hudson/security/LoginTest.java | 51 +++++++++++++++++++ 5 files changed, 101 insertions(+) create mode 100644 test/src/main/preset-data/secured-acegi/config.xml create mode 100644 test/src/main/preset-data/secured-acegi/readme.txt create mode 100644 test/src/main/preset-data/secured-acegi/users/alice/config.xml diff --git a/test/src/main/java/org/jvnet/hudson/test/recipes/PresetData.java b/test/src/main/java/org/jvnet/hudson/test/recipes/PresetData.java index f233ad7e9e..1cc7c46b53 100644 --- a/test/src/main/java/org/jvnet/hudson/test/recipes/PresetData.java +++ b/test/src/main/java/org/jvnet/hudson/test/recipes/PresetData.java @@ -62,6 +62,8 @@ public @interface PresetData { * and any logged in user has a full access. */ ANONYMOUS_READONLY, + + SECURED_ACEGI, } class RunnerImpl extends Recipe.Runner { diff --git a/test/src/main/preset-data/secured-acegi/config.xml b/test/src/main/preset-data/secured-acegi/config.xml new file mode 100644 index 0000000000..6d410abcbc --- /dev/null +++ b/test/src/main/preset-data/secured-acegi/config.xml @@ -0,0 +1,16 @@ + + + 2 + NORMAL + true + + + true + false + + + + 5 + 0 + ed2e66995bec739c0ec71c260bd75be6918ff28b0f1b33d67e205297629a6264 + diff --git a/test/src/main/preset-data/secured-acegi/readme.txt b/test/src/main/preset-data/secured-acegi/readme.txt new file mode 100644 index 0000000000..599f7d95a1 --- /dev/null +++ b/test/src/main/preset-data/secured-acegi/readme.txt @@ -0,0 +1,3 @@ +Anonymous users have no permissions, logged in users can do anything. + +Uses Jenkins user database, because 'Remember me' functionality requires non-legacy security realm to be enabled. diff --git a/test/src/main/preset-data/secured-acegi/users/alice/config.xml b/test/src/main/preset-data/secured-acegi/users/alice/config.xml new file mode 100644 index 0000000000..904f413ede --- /dev/null +++ b/test/src/main/preset-data/secured-acegi/users/alice/config.xml @@ -0,0 +1,29 @@ + + + Alice + + + 0K7w+E0Bi/rJt1lombWFDYtw0/KLFHwBjJqN8tUd2QO4tzVXKCPuIq2uWlTUdeBd + + + + + + All + false + false + + + + + + false + + + #jbcrypt:$2a$10$9m4niaJ3tOglIM22Yd.LdOwuU9RcD9FpuXlqlJhQHKt5Qx2mh.2/i + + + alice@example.org + + + diff --git a/test/src/test/java/hudson/security/LoginTest.java b/test/src/test/java/hudson/security/LoginTest.java index 712f509aa1..187077293c 100644 --- a/test/src/test/java/hudson/security/LoginTest.java +++ b/test/src/test/java/hudson/security/LoginTest.java @@ -1,11 +1,16 @@ package hudson.security; import com.gargoylesoftware.htmlunit.html.HtmlPage; +import com.gargoylesoftware.htmlunit.html.HtmlForm; +import com.gargoylesoftware.htmlunit.html.HtmlCheckBoxInput; + import org.jvnet.hudson.test.HudsonTestCase; import org.jvnet.hudson.test.recipes.PresetData; import org.jvnet.hudson.test.recipes.PresetData.DataSet; import org.xml.sax.SAXException; +import static org.acegisecurity.ui.rememberme.TokenBasedRememberMeServices.ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE_KEY; + import java.io.IOException; import java.net.URL; @@ -41,4 +46,50 @@ public class LoginTest extends HudsonTestCase { // but not once the user logs in. verifyNotError(wc.login("alice")); } + + private HtmlForm prepareLoginFormWithRememberMeChecked(WebClient wc) throws IOException, org.xml.sax.SAXException { + wc.getCookieManager().setCookiesEnabled(true); + HtmlPage page = wc.goTo("login"); + + HtmlForm form = page.getFormByName("login"); + form.getInputByName("j_username").setValueAttribute("alice"); + form.getInputByName("j_password").setValueAttribute("alice"); + ((HtmlCheckBoxInput)form.getInputByName("remember_me")).setChecked(true); + return form; + } + + /** + * Returns the 'remember me' cookie if set, otherwise return null. We don't care about the type, only whether it's null + */ + private Object getRememberMeCookie(WebClient wc) { + return wc.getCookieManager().getCookie(ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE_KEY); + } + + /** + * Test 'remember me' cookie + */ + @PresetData(DataSet.SECURED_ACEGI) + public void testLoginRememberMe() throws Exception { + WebClient wc = createWebClient(); + + prepareLoginFormWithRememberMeChecked(wc).submit(null); + + assertNotNull(getRememberMeCookie(wc)); + } + + + /** + * Test that 'remember me' cookie will not be set if disabled even if requested by user. + * This models the case when the feature is disabled between another user loading and submitting the login page. + */ + @PresetData(DataSet.SECURED_ACEGI) + public void testLoginDisabledRememberMe() throws Exception { + WebClient wc = createWebClient(); + + HtmlForm form = prepareLoginFormWithRememberMeChecked(wc); + jenkins.setDisableRememberMe(true); + form.submit(null); + + assertNull(getRememberMeCookie(wc)); + } } -- GitLab From 37d2575f6b11234a37d45695c05e4f95a6faefa2 Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Wed, 6 Nov 2013 08:15:44 -0500 Subject: [PATCH 190/308] [JENKINS-18922] Trying to make this error (missing maven-plugin) nonfatal during startup. May not suffice: a fatal error may simply be thrown later on. --- core/src/main/java/hudson/model/UpdateCenter.java | 2 +- .../java/hudson/model/listeners/SaveableListener.java | 10 +++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/hudson/model/UpdateCenter.java b/core/src/main/java/hudson/model/UpdateCenter.java index bb5ad2ccf8..ba0bd6efd5 100644 --- a/core/src/main/java/hudson/model/UpdateCenter.java +++ b/core/src/main/java/hudson/model/UpdateCenter.java @@ -1544,7 +1544,7 @@ public class UpdateCenter extends AbstractModelObject implements Saveable, OnMas * * This has to wait until after all plugins load, to let custom UpdateCenterConfiguration take effect first. */ - @Initializer(after=PLUGINS_STARTED) + @Initializer(after=PLUGINS_STARTED, fatal=false) public static void init(Jenkins h) throws IOException { h.getUpdateCenter().load(); } diff --git a/core/src/main/java/hudson/model/listeners/SaveableListener.java b/core/src/main/java/hudson/model/listeners/SaveableListener.java index 0716b053ef..f8380616c5 100644 --- a/core/src/main/java/hudson/model/listeners/SaveableListener.java +++ b/core/src/main/java/hudson/model/listeners/SaveableListener.java @@ -30,6 +30,8 @@ import hudson.ExtensionList; import hudson.XmlFile; import jenkins.model.Jenkins; import hudson.model.Saveable; +import java.util.logging.Level; +import java.util.logging.Logger; /** * Receives notifications about save actions on {@link Saveable} objects in Hudson. @@ -75,7 +77,13 @@ public abstract class SaveableListener implements ExtensionPoint { */ public static void fireOnChange(Saveable o, XmlFile file) { for (SaveableListener l : all()) { - l.onChange(o,file); + try { + l.onChange(o,file); + } catch (ThreadDeath t) { + throw t; + } catch (Throwable t) { + Logger.getLogger(SaveableListener.class.getName()).log(Level.WARNING, null, t); + } } } -- GitLab From 684921e8c5ec0a3c75db3f045199b8a5c5e33961 Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Wed, 6 Nov 2013 09:29:42 -0500 Subject: [PATCH 191/308] [FIXED JENKINS-20442] Integrate annotation-indexer 1.6 with improved robustness. --- changelog.html | 3 +++ core/pom.xml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/changelog.html b/changelog.html index 59dc7453f3..c95be5195f 100644 --- a/changelog.html +++ b/changelog.html @@ -55,6 +55,9 @@ Upcoming changes
    diff --git a/core/src/main/resources/lib/hudson/queue.properties b/core/src/main/resources/lib/hudson/queue.properties index 12b7afc74a..8c7ac2f13f 100644 --- a/core/src/main/resources/lib/hudson/queue.properties +++ b/core/src/main/resources/lib/hudson/queue.properties @@ -1 +1,2 @@ +Build\ Queue=Build Queue{0,choice,0#|0< ({0,number})} WaitingFor=Waiting for {0} \ No newline at end of file diff --git a/core/src/main/resources/lib/hudson/queue_ar.properties b/core/src/main/resources/lib/hudson/queue_ar.properties index f02a97ccfc..2c22077af9 100644 --- a/core/src/main/resources/lib/hudson/queue_ar.properties +++ b/core/src/main/resources/lib/hudson/queue_ar.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u0637\u0627\u0628\u0648\u0631 \u0627\u0644\u0628\u0646\u0627\u0621 +Build\ Queue=\u0637\u0627\u0628\u0648\u0631 \u0627\u0644\u0628\u0646\u0627\u0621{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=\u0644\u0627 \u064A\u0648\u062C\u062F \u0623\u064A \u0628\u0646\u0627\u0621 \u0641\u064A \u0627\u0644\u0637\u0627\u0628\u0648\u0631. WaitingFor=\u0625\u0646\u062A\u0638\u0627\u0631 {0} diff --git a/core/src/main/resources/lib/hudson/queue_be.properties b/core/src/main/resources/lib/hudson/queue_be.properties index 482edab7c5..f861be6e1d 100644 --- a/core/src/main/resources/lib/hudson/queue_be.properties +++ b/core/src/main/resources/lib/hudson/queue_be.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Build\ Queue=Build Warteschlange +Build\ Queue=Build Warteschlange{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=Keine Builds in der Warteschlange diff --git a/core/src/main/resources/lib/hudson/queue_bg.properties b/core/src/main/resources/lib/hudson/queue_bg.properties index 7507ca58f3..db5ba93fc8 100644 --- a/core/src/main/resources/lib/hudson/queue_bg.properties +++ b/core/src/main/resources/lib/hudson/queue_bg.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u041E\u043F\u0430\u0448\u043A\u0430 \u0437\u0430 \u0438\u0437\u043F\u044A\u043B\u043D\u0435\u043D\u0438\u0435 +Build\ Queue=\u041E\u043F\u0430\u0448\u043A\u0430 \u0437\u0430 \u0438\u0437\u043F\u044A\u043B\u043D\u0435\u043D\u0438\u0435{0,choice,0#|0< ({0,number})} Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins \u0449\u0435 \u0441\u0435 \u0438\u0437\u043A\u043B\u044E\u0447\u0438. \u0414\u043E\u0431\u0430\u0432\u0435\u043D\u0438\u0442\u0435 \u0431\u0438\u043B\u0434\u043E\u0432\u0435 \u043D\u044F\u043C\u0430 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043F\u044A\u043B\u043D\u044F\u0442 No\ builds\ in\ the\ queue.=\u041D\u044F\u043C\u0430 \u043A\u043E\u043C\u043F\u0438\u043B\u0430\u0446\u0438\u0438 \u0432 \u043E\u043F\u0430\u0448\u043A\u0430\u0442\u0430 cancel=\u043E\u0442\u043A\u0430\u0437 diff --git a/core/src/main/resources/lib/hudson/queue_bn_IN.properties b/core/src/main/resources/lib/hudson/queue_bn_IN.properties index 3e6f3a42f2..bd766f9f13 100644 --- a/core/src/main/resources/lib/hudson/queue_bn_IN.properties +++ b/core/src/main/resources/lib/hudson/queue_bn_IN.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Build\ Queue=e +Build\ Queue=e{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=e diff --git a/core/src/main/resources/lib/hudson/queue_ca.properties b/core/src/main/resources/lib/hudson/queue_ca.properties index 623d6a4648..edeb8fd491 100644 --- a/core/src/main/resources/lib/hudson/queue_ca.properties +++ b/core/src/main/resources/lib/hudson/queue_ca.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Cua de muntatges +Build\ Queue=Cua de muntatges{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=No hi ha muntatges a la cua WaitingFor=Esperant {0} WaitingSince=Esperant des de {0} diff --git a/core/src/main/resources/lib/hudson/queue_cs.properties b/core/src/main/resources/lib/hudson/queue_cs.properties index 72e24e602d..eb4339219e 100644 --- a/core/src/main/resources/lib/hudson/queue_cs.properties +++ b/core/src/main/resources/lib/hudson/queue_cs.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Fronta \u010Dekaj\u00EDc\u00EDch build\u016F +Build\ Queue=Fronta \u010Dekaj\u00EDc\u00EDch build\u016F{0,choice,0#|0< ({0,number})} Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins bude brzy vypnut. \u017D\u00E1dn\u00E9 dal\u0161\u00ED \u00FAlohy nebudou provedeny. No\ builds\ in\ the\ queue.=\u017D\u00E1dn\u00E1 sestaven\u00ED ve front\u011B. WaitingFor=\u010Cek\u00E1 na {0} diff --git a/core/src/main/resources/lib/hudson/queue_da.properties b/core/src/main/resources/lib/hudson/queue_da.properties index 14f9a36ca1..eb9ba8aac5 100644 --- a/core/src/main/resources/lib/hudson/queue_da.properties +++ b/core/src/main/resources/lib/hudson/queue_da.properties @@ -25,4 +25,4 @@ No\ builds\ in\ the\ queue.=Ingen job i k\u00F8en. Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins vil lukke ned, der vil ikke blive udf\u00f8rt flere byg. WaitingFor=afventer {0} cancel=annuller -Build\ Queue=Job-k\u00F8 +Build\ Queue=Job-k\u00F8{0,choice,0#|0< ({0,number})} diff --git a/core/src/main/resources/lib/hudson/queue_de.properties b/core/src/main/resources/lib/hudson/queue_de.properties index c36389fb97..6514869cb6 100644 --- a/core/src/main/resources/lib/hudson/queue_de.properties +++ b/core/src/main/resources/lib/hudson/queue_de.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Build Warteschlange +Build\ Queue=Build Warteschlange{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=Keine Builds geplant Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins fährt gerade herunter. Es werden keine weiteren Builds ausgeführt. cancel=Abbrechen diff --git a/core/src/main/resources/lib/hudson/queue_el.properties b/core/src/main/resources/lib/hudson/queue_el.properties index 224d3847b2..3c73eb156c 100644 --- a/core/src/main/resources/lib/hudson/queue_el.properties +++ b/core/src/main/resources/lib/hudson/queue_el.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u039F\u03C5\u03C1\u03AC \u03B4\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03B9\u03CE\u03BD +Build\ Queue=\u039F\u03C5\u03C1\u03AC \u03B4\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03B9\u03CE\u03BD{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=\u0394\u03B5\u03BD \u03C5\u03C0\u03AC\u03C1\u03C7\u03BF\u03C5\u03BD \u03B4\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B5\u03C2 \u03B5\u03BD \u03B1\u03BD\u03B1\u03BC\u03BF\u03BD\u03AE WaitingFor=\u0391\u03BD\u03B1\u03BC\u03BF\u03BD\u03AE \u03B3\u03B9\u03B1 {0} diff --git a/core/src/main/resources/lib/hudson/queue_eo.properties b/core/src/main/resources/lib/hudson/queue_eo.properties index 2cd7d6be36..31e0f98e69 100644 --- a/core/src/main/resources/lib/hudson/queue_eo.properties +++ b/core/src/main/resources/lib/hudson/queue_eo.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Konstrua atendovico +Build\ Queue=Konstrua atendovico{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=Neniuj konstruoj en la atendovico. diff --git a/core/src/main/resources/lib/hudson/queue_es.properties b/core/src/main/resources/lib/hudson/queue_es.properties index af53fa9acf..ed4816bebc 100644 --- a/core/src/main/resources/lib/hudson/queue_es.properties +++ b/core/src/main/resources/lib/hudson/queue_es.properties @@ -21,7 +21,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Trabajos en la cola +Build\ Queue=Trabajos en la cola{0,choice,0#|0< ({0,number})} Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins va a ser apagado. No se procesarán nuevas tareas. cancel=cancelar No\ builds\ in\ the\ queue.=No hay trabajos en la cola diff --git a/core/src/main/resources/lib/hudson/queue_es_AR.properties b/core/src/main/resources/lib/hudson/queue_es_AR.properties index 462d63cdf1..c67ca1ceab 100644 --- a/core/src/main/resources/lib/hudson/queue_es_AR.properties +++ b/core/src/main/resources/lib/hudson/queue_es_AR.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Build\ Queue=Trabajos en cola +Build\ Queue=Trabajos en cola{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=No hay trabajos en cola WaitingSince=Esperando desde {0} diff --git a/core/src/main/resources/lib/hudson/queue_et.properties b/core/src/main/resources/lib/hudson/queue_et.properties index 69eadf058f..1c3c795c46 100644 --- a/core/src/main/resources/lib/hudson/queue_et.properties +++ b/core/src/main/resources/lib/hudson/queue_et.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Build\ Queue=Ehitus j\u00E4rjekord +Build\ Queue=Ehitus j\u00E4rjekord{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=Ehitamisi pole j\u00E4rjekorras WaitingFor=Ootan {0} diff --git a/core/src/main/resources/lib/hudson/queue_eu.properties b/core/src/main/resources/lib/hudson/queue_eu.properties index fc4d7aac68..7a6a20a84d 100644 --- a/core/src/main/resources/lib/hudson/queue_eu.properties +++ b/core/src/main/resources/lib/hudson/queue_eu.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Lan ilara +Build\ Queue=Lan ilara{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=Ez dago lanik ilaran. diff --git a/core/src/main/resources/lib/hudson/queue_fi.properties b/core/src/main/resources/lib/hudson/queue_fi.properties index 458beace3c..b87665dbd3 100644 --- a/core/src/main/resources/lib/hudson/queue_fi.properties +++ b/core/src/main/resources/lib/hudson/queue_fi.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=K\u00E4\u00E4nn\u00F6sjono +Build\ Queue=K\u00E4\u00E4nn\u00F6sjono{0,choice,0#|0< ({0,number})} Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkinsin alasajo alkaa pian. Enempi\u00E4 k\u00E4\u00E4nn\u00F6ksi\u00E4 ei nyt aloiteta. No\ builds\ in\ the\ queue.=Ei k\u00E4\u00E4nn\u00F6ksi\u00E4 jonossa. WaitingFor=Odottaa {0} diff --git a/core/src/main/resources/lib/hudson/queue_fr.properties b/core/src/main/resources/lib/hudson/queue_fr.properties index 9bca1b39f4..d058ec58a1 100644 --- a/core/src/main/resources/lib/hudson/queue_fr.properties +++ b/core/src/main/resources/lib/hudson/queue_fr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=File d\u2019attente des constructions +Build\ Queue=File d\u2019attente des constructions{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=File d\u2019attente des constructions vide Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins est en cours de fermeture. Aucun nouveau build ne sera lancé. cancel=Annuler diff --git a/core/src/main/resources/lib/hudson/queue_ga_IE.properties b/core/src/main/resources/lib/hudson/queue_ga_IE.properties index 46e3a1ca9b..bbd6bf8489 100644 --- a/core/src/main/resources/lib/hudson/queue_ga_IE.properties +++ b/core/src/main/resources/lib/hudson/queue_ga_IE.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Build\ Queue=T\u00F3g\u00E1il scuaine +Build\ Queue=T\u00F3g\u00E1il scuaine{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=Uimh T\u00F3gann sa scuaine. diff --git a/core/src/main/resources/lib/hudson/queue_he.properties b/core/src/main/resources/lib/hudson/queue_he.properties index 55ed4c1149..b93d320606 100644 --- a/core/src/main/resources/lib/hudson/queue_he.properties +++ b/core/src/main/resources/lib/hudson/queue_he.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u05EA\u05D5\u05E8 \u05D1\u05E0\u05D9\u05D5\u05EA +Build\ Queue=\u05EA\u05D5\u05E8 \u05D1\u05E0\u05D9\u05D5\u05EA{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=\u05D0\u05D9\u05DF \u05D1\u05E0\u05D9\u05D5\u05EA \u05DE\u05DE\u05EA\u05D9\u05E0\u05D5\u05EA \u05D1\u05EA\u05D5\u05E8. WaitingFor=\u05DE\u05D7\u05DB\u05D4 \u05DC - {0} WaitingSince=\u05DE\u05DE\u05EA\u05D9\u05DF \u05DE\u05D0\u05D6 {0} diff --git a/core/src/main/resources/lib/hudson/queue_hi_IN.properties b/core/src/main/resources/lib/hudson/queue_hi_IN.properties index 2eb9e7c222..3c3f4d7fbd 100644 --- a/core/src/main/resources/lib/hudson/queue_hi_IN.properties +++ b/core/src/main/resources/lib/hudson/queue_hi_IN.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Build\ Queue=\u0928\u093F\u0930\u094D\u092E\u093E\u0923 \u0915\u0924\u093E\u0930 +Build\ Queue=\u0928\u093F\u0930\u094D\u092E\u093E\u0923 \u0915\u0924\u093E\u0930{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=\u0915\u0924\u093E\u0930 \u092E\u0947\u0902 \u090F\u0915 \u0928\u093F\u0930\u094D\u092E\u093E\u0923 \u092D\u0940 \u0928\u0939\u0940\u0902 diff --git a/core/src/main/resources/lib/hudson/queue_hu.properties b/core/src/main/resources/lib/hudson/queue_hu.properties index 29a86fb569..8373c53bad 100644 --- a/core/src/main/resources/lib/hudson/queue_hu.properties +++ b/core/src/main/resources/lib/hudson/queue_hu.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u00C9p\u00EDt\u00E9si Sor +Build\ Queue=\u00C9p\u00EDt\u00E9si Sor{0,choice,0#|0< ({0,number})} Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=A Jenkins le\u00E1ll. Nem hajt v\u00E9gre t\u00F6bb build-et. No\ builds\ in\ the\ queue.=Nincs \u00FCtemezett build a sorban WaitingFor=V\u00E1rakoz\u00E1s {0} diff --git a/core/src/main/resources/lib/hudson/queue_id.properties b/core/src/main/resources/lib/hudson/queue_id.properties index 36859b17a1..aa02cb57e9 100644 --- a/core/src/main/resources/lib/hudson/queue_id.properties +++ b/core/src/main/resources/lib/hudson/queue_id.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Antrian Pembangunan +Build\ Queue=Antrian Pembangunan{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=Tidak ada pembangunan di antrian diff --git a/core/src/main/resources/lib/hudson/queue_is.properties b/core/src/main/resources/lib/hudson/queue_is.properties index 9fefaa5f76..05baacaaf5 100644 --- a/core/src/main/resources/lib/hudson/queue_is.properties +++ b/core/src/main/resources/lib/hudson/queue_is.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Keyrslu r\u00F6\u00F0 +Build\ Queue=Keyrslu r\u00F6\u00F0{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=Engar keyrslur b\u00ED\u00F0andi diff --git a/core/src/main/resources/lib/hudson/queue_it.properties b/core/src/main/resources/lib/hudson/queue_it.properties index c4f5d09e7f..d30e42eb3d 100644 --- a/core/src/main/resources/lib/hudson/queue_it.properties +++ b/core/src/main/resources/lib/hudson/queue_it.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Elenco build +Build\ Queue=Elenco build{0,choice,0#|0< ({0,number})} Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins si spegner\u00E0 a breve. Nessuna nuova build verr\u00E0 eseguita. No\ builds\ in\ the\ queue.=Nessun Build In Coda. WaitingFor=In attesa di {0} diff --git a/core/src/main/resources/lib/hudson/queue_ja.properties b/core/src/main/resources/lib/hudson/queue_ja.properties index 94dc845b85..9612cac659 100644 --- a/core/src/main/resources/lib/hudson/queue_ja.properties +++ b/core/src/main/resources/lib/hudson/queue_ja.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u30d3\u30eb\u30c9\u30ad\u30e5\u30fc +Build\ Queue=\u30d3\u30eb\u30c9\u30ad\u30e5\u30fc{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=\u30D3\u30EB\u30C9\u5F85\u3061 Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=\ Jenkins\u306f\u7d42\u4e86\u6e96\u5099\u4e2d\u306e\u305f\u3081\u30d3\u30eb\u30c9\u306f\u5b9f\u884c\u3055\u308c\u307e\u305b\u3093\u3002 diff --git a/core/src/main/resources/lib/hudson/queue_ka.properties b/core/src/main/resources/lib/hudson/queue_ka.properties index 68505ebd91..7c0386d9b0 100644 --- a/core/src/main/resources/lib/hudson/queue_ka.properties +++ b/core/src/main/resources/lib/hudson/queue_ka.properties @@ -1,3 +1,3 @@ # This file is under the MIT License by authors -Build\ Queue=\u10D1\u10D8\u10DA\u10D3\u10D8\u10E1 \u10E0\u10D8\u10D2\u10D8 +Build\ Queue=\u10D1\u10D8\u10DA\u10D3\u10D8\u10E1 \u10E0\u10D8\u10D2\u10D8{0,choice,0#|0< ({0,number})} diff --git a/core/src/main/resources/lib/hudson/queue_kn.properties b/core/src/main/resources/lib/hudson/queue_kn.properties index 735a8801e8..064dfe7cc5 100644 --- a/core/src/main/resources/lib/hudson/queue_kn.properties +++ b/core/src/main/resources/lib/hudson/queue_kn.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Build\ Queue=\u0CA8\u0CBF\u0CB0\u0CCD\u0CAE\u0CBE\u0CA3\u0CA6 \u0CB8\u0CB0\u0CA6\u0CBF \u0CB8\u0CBE\u0CB2\u0CC1 +Build\ Queue=\u0CA8\u0CBF\u0CB0\u0CCD\u0CAE\u0CBE\u0CA3\u0CA6 \u0CB8\u0CB0\u0CA6\u0CBF \u0CB8\u0CBE\u0CB2\u0CC1{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=\u0CB8\u0CB0\u0CA6\u0CBF \u0CB8\u0CBE\u0CB2\u0CBF\u0CA8\u0CB2\u0CCD\u0CB2\u0CBF \u0CA8\u0CBF\u0CB0\u0CCD\u0CAE\u0CBE\u0CA3\u0C97\u0CB3\u0CC1 \u0C87\u0CB2\u0CCD\u0CB2 diff --git a/core/src/main/resources/lib/hudson/queue_ko.properties b/core/src/main/resources/lib/hudson/queue_ko.properties index c859e75dbd..894f85b6df 100644 --- a/core/src/main/resources/lib/hudson/queue_ko.properties +++ b/core/src/main/resources/lib/hudson/queue_ko.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\uBE4C\uB4DC \uB300\uAE30 \uBAA9\uB85D +Build\ Queue=\uBE4C\uB4DC \uB300\uAE30 \uBAA9\uB85D{0,choice,0#|0< ({0,number})} Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=\ Jenkins\uC774 \uC885\uB8CC \uC900\uBE44\uC911\uC774\uAE30 \uB54C\uBB38\uC5D0 \uBE4C\uB4DC\uB97C \uC2E4\uD589\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4. WaitingFor={0} \uAE30\uB2E4\uB9AC\uB294 \uC911 diff --git a/core/src/main/resources/lib/hudson/queue_lt.properties b/core/src/main/resources/lib/hudson/queue_lt.properties index 54aeb73ab1..52e0d29ca9 100644 --- a/core/src/main/resources/lib/hudson/queue_lt.properties +++ b/core/src/main/resources/lib/hudson/queue_lt.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=U\u017Eduo\u010Di\u0173 eil\u0117 +Build\ Queue=U\u017Eduo\u010Di\u0173 eil\u0117{0,choice,0#|0< ({0,number})} Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkinsas ruo\u0161iasi i\u0161jungimui. Nebus vykdomi jokie darbai. No\ builds\ in\ the\ queue.=U\u017Eduo\u010Di\u0173 eil\u0117 tu\u0161\u010Dia. cancel=nutraukti diff --git a/core/src/main/resources/lib/hudson/queue_lv.properties b/core/src/main/resources/lib/hudson/queue_lv.properties index a0797366b0..25278b34db 100644 --- a/core/src/main/resources/lib/hudson/queue_lv.properties +++ b/core/src/main/resources/lib/hudson/queue_lv.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=B\u016Bv\u0113jumu rinda +Build\ Queue=B\u016Bv\u0113jumu rinda{0,choice,0#|0< ({0,number})} Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins tiks izsl\u0113gts. Turpm\u0101ki b\u016Bv\u0113jumi netiks izpild\u012Bti. No\ builds\ in\ the\ queue.=Rind\u0101 nav b\u016Bv\u0113jumu WaitingFor=Gaidu uz {0} diff --git a/core/src/main/resources/lib/hudson/queue_mn.properties b/core/src/main/resources/lib/hudson/queue_mn.properties index e5dc1b4af1..3e24ef723d 100644 --- a/core/src/main/resources/lib/hudson/queue_mn.properties +++ b/core/src/main/resources/lib/hudson/queue_mn.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Build\ Queue=\u0411\u0430\u0439\u0433\u0443\u0443\u043B\u0430\u0445 \u0436\u0430\u0433\u0441\u0430\u0430\u043B\u0442 +Build\ Queue=\u0411\u0430\u0439\u0433\u0443\u0443\u043B\u0430\u0445 \u0436\u0430\u0433\u0441\u0430\u0430\u043B\u0442{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=\u042D\u043D\u044D \u0436\u0430\u0433\u0441\u0430\u0430\u043B\u0442\u0430\u0434 \u0431\u0430\u0439\u0433\u0443\u0443\u043B\u0430\u043B\u0442 \u0430\u043B\u0433\u0430 \u0431\u0430\u0439\u043D\u0430. diff --git a/core/src/main/resources/lib/hudson/queue_mr.properties b/core/src/main/resources/lib/hudson/queue_mr.properties index d01a6067a9..53a23c1a4b 100644 --- a/core/src/main/resources/lib/hudson/queue_mr.properties +++ b/core/src/main/resources/lib/hudson/queue_mr.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u092C\u093F\u0932\u094D\u0921\u094D\u091A\u0940 \u0930\u093E\u0902\u0917 +Build\ Queue=\u092C\u093F\u0932\u094D\u0921\u094D\u091A\u0940 \u0930\u093E\u0902\u0917{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=\u0930\u093E\u0902\u0917\u0947\u092E\u0927\u0947 \u090F\u0915\u0939\u0940 \u092C\u093F\u0932\u094D\u0921 \u0928\u093E\u0939\u0940 WaitingFor=\u092A\u094D\u0930\u0924\u0940\u0915\u094D\u0937\u0947\u0924 diff --git a/core/src/main/resources/lib/hudson/queue_nb_NO.properties b/core/src/main/resources/lib/hudson/queue_nb_NO.properties index 5e5cb9b584..d1401ce414 100644 --- a/core/src/main/resources/lib/hudson/queue_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/queue_nb_NO.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Byggek\u00F8 +Build\ Queue=Byggek\u00F8{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=Ingen bygg i k\u00F8en. WaitingFor=Venter p\u00E5 {0} cancel=avbryt diff --git a/core/src/main/resources/lib/hudson/queue_nl.properties b/core/src/main/resources/lib/hudson/queue_nl.properties index 555048c309..bc899f4756 100644 --- a/core/src/main/resources/lib/hudson/queue_nl.properties +++ b/core/src/main/resources/lib/hudson/queue_nl.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Build-wachtrij +Build\ Queue=Build-wachtrij{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=Er staan geen projecten in de wachtrij. Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Er werd een signaal gestuurd om Jenkins zichzelf te laten afsluiten. Er zullen geen nieuwe bouwpogingen meer ondernomen worden. Unknown\ Task=Onbekende taak diff --git a/core/src/main/resources/lib/hudson/queue_pl.properties b/core/src/main/resources/lib/hudson/queue_pl.properties index f2a13d06bc..8d0ebf2191 100644 --- a/core/src/main/resources/lib/hudson/queue_pl.properties +++ b/core/src/main/resources/lib/hudson/queue_pl.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Kolejka Budowania +Build\ Queue=Kolejka Budowania{0,choice,0#|0< ({0,number})} Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins przygotowuje si\u0119 do wy\u0142\u0105czenia. Uruchamianie nast\u0119pnych kompilacji zosta\u0142o wstrzymane. No\ builds\ in\ the\ queue.=Nie ma build\u00F3w w kolejce WaitingFor=Czeka na {0} diff --git a/core/src/main/resources/lib/hudson/queue_pt_BR.properties b/core/src/main/resources/lib/hudson/queue_pt_BR.properties index 7b90e06be3..b823c5aefd 100644 --- a/core/src/main/resources/lib/hudson/queue_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/queue_pt_BR.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Fila de Constru\u00E7\u00E3o +Build\ Queue=Fila de Constru\u00E7\u00E3o{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=Nenhuma constru\u00E7\u00E3o na fila. Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins est\u00e1 sendo desligado. Nenhuma constru\u00e7\u00e3o futura ser\u00e1 executada. WaitingFor=Aguardando por {0} diff --git a/core/src/main/resources/lib/hudson/queue_pt_PT.properties b/core/src/main/resources/lib/hudson/queue_pt_PT.properties index cd1b8a545b..a50c319f20 100644 --- a/core/src/main/resources/lib/hudson/queue_pt_PT.properties +++ b/core/src/main/resources/lib/hudson/queue_pt_PT.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Fila de Compila\u00E7\u00F5es +Build\ Queue=Fila de Compila\u00E7\u00F5es{0,choice,0#|0< ({0,number})} Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=O Jenkins vai encerrar. Nenhum outro build ser\u00E1 levado a cabo. No\ builds\ in\ the\ queue.=Sem builds em espera. WaitingFor=\u00C0 espera de {0} diff --git a/core/src/main/resources/lib/hudson/queue_ro.properties b/core/src/main/resources/lib/hudson/queue_ro.properties index 09209ec89f..fc2ab92ef2 100644 --- a/core/src/main/resources/lib/hudson/queue_ro.properties +++ b/core/src/main/resources/lib/hudson/queue_ro.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Lista de asteptare +Build\ Queue=Lista de asteptare{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=Nu sunt build-uri in lista de asteptare WaitingFor=Astept {0} WaitingSince=Asteapta de diff --git a/core/src/main/resources/lib/hudson/queue_ru.properties b/core/src/main/resources/lib/hudson/queue_ru.properties index 998765de31..a67a693434 100644 --- a/core/src/main/resources/lib/hudson/queue_ru.properties +++ b/core/src/main/resources/lib/hudson/queue_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u041E\u0447\u0435\u0440\u0435\u0434\u044C \u0441\u0431\u043E\u0440\u043E\u043A. +Build\ Queue=\u041E\u0447\u0435\u0440\u0435\u0434\u044C \u0441\u0431\u043E\u0440\u043E\u043A{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=\u041E\u0447\u0435\u0440\u0435\u0434\u044C \u0441\u0431\u043E\u0440\u043E\u043A \u043F\u0443\u0441\u0442\u0430 Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins \u0433\u043e\u0442\u043e\u0432\u0438\u0442\u0441\u044f \u043a \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044e. \u0421\u0431\u043e\u0440\u043a\u0438 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c\u0441\u044f \u043d\u0435 \u0431\u0443\u0434\u0443\u0442. WaitingFor=\u0416\u0434\u0451\u0442 {0} diff --git a/core/src/main/resources/lib/hudson/queue_si.properties b/core/src/main/resources/lib/hudson/queue_si.properties index 089853c4b9..144a9ded80 100644 --- a/core/src/main/resources/lib/hudson/queue_si.properties +++ b/core/src/main/resources/lib/hudson/queue_si.properties @@ -1,5 +1,5 @@ # This file is under the MIT License by authors -Build\ Queue=\u0DB4\u0DD0\u0D9A\u0DDA\u0DA2 \u0DB4\u0DDD\u0DBD\u0DD2\u0DB8 +Build\ Queue=\u0DB4\u0DD0\u0D9A\u0DDA\u0DA2 \u0DB4\u0DDD\u0DBD\u0DD2\u0DB8{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=\u0DB4\u0DDD\u0DBD\u0DD2\u0DB8\u0DDA \u0DC3\u0DD1\u0DAF\u0DD3\u0DB8\u0D9A\u0DCA \u0DB1\u0DD0\u0DAD WaitingFor=\u0DC3\u0DD0\u0DAF\u0DD3\u0DB8\u0DA7 \u0D87\u0DAD\u0DD2 {0} diff --git a/core/src/main/resources/lib/hudson/queue_sk.properties b/core/src/main/resources/lib/hudson/queue_sk.properties index fce37b6f8b..20753630a2 100644 --- a/core/src/main/resources/lib/hudson/queue_sk.properties +++ b/core/src/main/resources/lib/hudson/queue_sk.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Rad behov +Build\ Queue=Rad behov{0,choice,0#|0< ({0,number})} Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins bude vypnut\u00FD. \u017Diadne \u010Fal\u0161ie zostavenia sa nevykonaj\u00FA. No\ builds\ in\ the\ queue.=\u017Diadne zostavenia v rade. WaitingFor=\u010Cak\u00E1 sa na {0} diff --git a/core/src/main/resources/lib/hudson/queue_sl.properties b/core/src/main/resources/lib/hudson/queue_sl.properties index af794a1572..d6cabf9b46 100644 --- a/core/src/main/resources/lib/hudson/queue_sl.properties +++ b/core/src/main/resources/lib/hudson/queue_sl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u010Cakalna vrsta +Build\ Queue=\u010Cakalna vrsta{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=\u010Cakalna vrsta je prazna WaitingFor=\u010Cakam na diff --git a/core/src/main/resources/lib/hudson/queue_sr.properties b/core/src/main/resources/lib/hudson/queue_sr.properties index 2fc4d0511c..6e99e6d227 100644 --- a/core/src/main/resources/lib/hudson/queue_sr.properties +++ b/core/src/main/resources/lib/hudson/queue_sr.properties @@ -1,6 +1,6 @@ # This file is under the MIT License by authors -Build\ Queue=Red Gradnje +Build\ Queue=Red Gradnje{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=Nema zakazanih procesa WaitingFor=\u010Ceka se {0} WaitingSince=\u010Ceka od {0} diff --git a/core/src/main/resources/lib/hudson/queue_sv_SE.properties b/core/src/main/resources/lib/hudson/queue_sv_SE.properties index f82c3f2738..ee4967d15d 100644 --- a/core/src/main/resources/lib/hudson/queue_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/queue_sv_SE.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Jobbk\u00F6 +Build\ Queue=Jobbk\u00F6{0,choice,0#|0< ({0,number})} Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins h\u00E5ller p\u00E5 att avslutas. Inga nya byggen kommer att utf\u00F6ras. No\ builds\ in\ the\ queue.=Inga k\u00F6ade byggen. Unknown\ Task=\u00D6kand uppgift diff --git a/core/src/main/resources/lib/hudson/queue_ta.properties b/core/src/main/resources/lib/hudson/queue_ta.properties index a7c7071020..c96b9eddbb 100644 --- a/core/src/main/resources/lib/hudson/queue_ta.properties +++ b/core/src/main/resources/lib/hudson/queue_ta.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Build\ Queue=\u0B89\u0BB0\u0BC1\u0BB5\u0BBE\u0B95\u0BCD\u0B95\u0BAA\u0BCD\u0BAA\u0BA3\u0BBF \u0BB5\u0BB0\u0BBF\u0B9A\u0BC8 +Build\ Queue=\u0B89\u0BB0\u0BC1\u0BB5\u0BBE\u0B95\u0BCD\u0B95\u0BAA\u0BCD\u0BAA\u0BA3\u0BBF \u0BB5\u0BB0\u0BBF\u0B9A\u0BC8{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=\u0B89\u0BB0\u0BC1\u0BB5\u0BBE\u0B95\u0BCD\u0B95\u0BAA\u0BCD\u0BAA\u0BA3\u0BBF \u0B8E\u0BA4\u0BC1\u0BB5\u0BC1\u0BAE\u0BCD \u0B87\u0BB5\u0BCD\u0BB5\u0BB0\u0BBF\u0B9A\u0BC8\u0BAF\u0BBF\u0BB2\u0BCD \u0B87\u0BB2\u0BCD\u0BB2\u0BC8 diff --git a/core/src/main/resources/lib/hudson/queue_te.properties b/core/src/main/resources/lib/hudson/queue_te.properties index df3a0761fd..947dd29207 100644 --- a/core/src/main/resources/lib/hudson/queue_te.properties +++ b/core/src/main/resources/lib/hudson/queue_te.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Build\ Queue=\u0C28\u0C3F\u0C30\u0C4D\u0C2E\u0C3F\u0C02\u0C1A\u0C41 \u0C15\u0C4D\u0C30\u0C2E\u0C2E\u0C41 +Build\ Queue=\u0C28\u0C3F\u0C30\u0C4D\u0C2E\u0C3F\u0C02\u0C1A\u0C41 \u0C15\u0C4D\u0C30\u0C2E\u0C2E\u0C41{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=ee varusalo nirmanalu levu. diff --git a/core/src/main/resources/lib/hudson/queue_th.properties b/core/src/main/resources/lib/hudson/queue_th.properties index c625cf380c..0124e2854a 100644 --- a/core/src/main/resources/lib/hudson/queue_th.properties +++ b/core/src/main/resources/lib/hudson/queue_th.properties @@ -1,4 +1,4 @@ # This file is under the MIT License by authors -Build\ Queue=\u0E04\u0E34\u0E27 +Build\ Queue=\u0E04\u0E34\u0E27{0,choice,0#|0< ({0,number})} WaitingFor=\u0E23\u0E2D {0} diff --git a/core/src/main/resources/lib/hudson/queue_tr.properties b/core/src/main/resources/lib/hudson/queue_tr.properties index dc2612e3b2..1c13c2548e 100644 --- a/core/src/main/resources/lib/hudson/queue_tr.properties +++ b/core/src/main/resources/lib/hudson/queue_tr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Yap\u0131land\u0131rma Listesi +Build\ Queue=Yap\u0131land\u0131rma Listesi{0,choice,0#|0< ({0,number})} No\ builds\ in\ the\ queue.=S\u0131rada bekleyen yap\u0131land\u0131rma yok. Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins\ kapat\u0131lacakt\u0131r.\ Bundan\ sonra\ ba\u015fka\ yap\u0131land\u0131rma\ ba\u015flat\u0131lmayacakt\u0131r. WaitingFor={0} bekleniyor diff --git a/core/src/main/resources/lib/hudson/queue_uk.properties b/core/src/main/resources/lib/hudson/queue_uk.properties index 9976db7784..597c021d0f 100644 --- a/core/src/main/resources/lib/hudson/queue_uk.properties +++ b/core/src/main/resources/lib/hudson/queue_uk.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u0427\u0435\u0440\u0433\u0430 \u043F\u043E\u0431\u0443\u0434\u043E\u0432 +Build\ Queue=\u0427\u0435\u0440\u0433\u0430 \u043F\u043E\u0431\u0443\u0434\u043E\u0432{0,choice,0#|0< ({0,number})} Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=\u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441 \u0437\u0431\u0438\u0440\u0430\u0454\u0442\u044C\u0441\u044F \u0437\u0443\u043F\u0438\u043D\u044F\u0442\u0438\u0441\u044C. \u0414\u043E\u0434\u0430\u0442\u043A\u043E\u0432\u0456 \u0437\u0431\u0456\u0440\u043A\u0438 \u0437\u0430\u043F\u0443\u0441\u043A\u0430\u0442\u0438\u0441\u044F \u043D\u0435 \u0431\u0443\u0434\u0443\u0442\u044C. No\ builds\ in\ the\ queue.=\u041D\u0435\u043C\u0430\u0454 \u0437\u0431\u0456\u0440\u043E\u043A \u0443 \u0447\u0435\u0440\u0437\u0456 WaitingFor=\u041E\u0447\u0456\u043A\u0443\u0454 \u043D\u0430 {0} diff --git a/core/src/main/resources/lib/hudson/queue_zh_CN.properties b/core/src/main/resources/lib/hudson/queue_zh_CN.properties index 6b3b2eacd0..7aba6785bd 100644 --- a/core/src/main/resources/lib/hudson/queue_zh_CN.properties +++ b/core/src/main/resources/lib/hudson/queue_zh_CN.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u6784\u5EFA\u961F\u5217 +Build\ Queue=\u6784\u5EFA\u961F\u5217{0,choice,0#|0< ({0,number})} Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins \u5373\u5C06\u5173\u95ED\u3002\u5269\u4F59\u751F\u6210\u5C06\u4E0D\u4F1A\u88AB\u6267\u884C\u3002 No\ builds\ in\ the\ queue.=\u961F\u5217\u4E2D\u6CA1\u6709\u6784\u5EFA\u4EFB\u52A1 Unknown\ Task=\u672A\u77E5\u4EFB\u52A1 diff --git a/core/src/main/resources/lib/hudson/queue_zh_TW.properties b/core/src/main/resources/lib/hudson/queue_zh_TW.properties index 2079cfd9cb..7e62c92f28 100644 --- a/core/src/main/resources/lib/hudson/queue_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/queue_zh_TW.properties @@ -21,7 +21,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u5efa\u7f6e\u4f47\u5217 +Build\ Queue=\u5efa\u7f6e\u4f47\u5217{0,choice,0#|0< ({0,number})} Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins \u5373\u5c07\u505c\u6a5f\uff0c\u4e0d\u6703\u518d\u57f7\u884c\u4efb\u4f55\u65b0\u7684\u5efa\u7f6e\u4f5c\u696d\u3002 No\ builds\ in\ the\ queue.=\u4f47\u5217\u4e2d\u6c92\u6709\u5efa\u7f6e\u4f5c\u696d\u3002 WaitingSince=\u5F9E {0} \u958B\u59CB\u7B49\u5F85 diff --git a/core/src/main/resources/lib/layout/pane.jelly b/core/src/main/resources/lib/layout/pane.jelly index 45b9a24cea..b400ec5df8 100644 --- a/core/src/main/resources/lib/layout/pane.jelly +++ b/core/src/main/resources/lib/layout/pane.jelly @@ -44,8 +44,27 @@ THE SOFTWARE. - + + + + + + + + + +
    +
    + + ${h.isCollapsed(attrs.id) ? '%expand' : '%collapse'} + +
    + ${attrs.collapsedText} +
    \ No newline at end of file diff --git a/war/src/main/webapp/css/style.css b/war/src/main/webapp/css/style.css index a1372d0501..cc686c217c 100644 --- a/war/src/main/webapp/css/style.css +++ b/war/src/main/webapp/css/style.css @@ -321,6 +321,21 @@ td.pane-header { border-left: none; background-color: #f0f0f0; font-weight: bold; + padding-right: 24px; +} + +td.pane-header > div { + position: relative; + padding-right: 24px; + width: 100%; + height: 100%; +} + +td.pane-header > div > a.collapse { + float: right; + position: absolute; + right: 4px; + top: -1px; } th.pane { diff --git a/war/src/main/webapp/images/16x16/collapse.png b/war/src/main/webapp/images/16x16/collapse.png new file mode 100644 index 0000000000000000000000000000000000000000..68b119b9ea2d3a1368103dd4da5fdcc26c4ccebb GIT binary patch literal 289 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1IggaDrq*ZLLL zO;VS{G;gb2cD;GkjkdKnCv3hoY0IrC+ip+YetZ7D2V2fO-FoKPHXu6tZ2P%qyDvW9 zbMg6s%P;=_{|_{SAn3kq*9TO@SQ6wH%;50sMjD8d|}(8?zSzJ>0Fr@Zb7M^L(I222WQ%mvv4FO#n%dUef>o literal 0 HcmV?d00001 diff --git a/war/src/main/webapp/images/16x16/expand.png b/war/src/main/webapp/images/16x16/expand.png new file mode 100644 index 0000000000000000000000000000000000000000..609cbf26f80d8af3462607f6caa948bd43eb984c GIT binary patch literal 316 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1IggaDrq*ZLLL zO;VS{G;gb2cD;GkjkdKnCv3hoY0IrC+ip+YetZ7D2V2fO-FoKPHXu6tZ2P%qyDvW9 zbMg6s%P;=_{|_{SAn3kq*9TO@SQ6wH%;50sMjD8d Date: Sat, 23 Nov 2013 22:58:49 +0800 Subject: [PATCH 295/308] fixed for "Console Output " localization for Chinese(zh_CN) --- .../main/resources/hudson/model/Run/console_zh_CN.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/resources/hudson/model/Run/console_zh_CN.properties b/core/src/main/resources/hudson/model/Run/console_zh_CN.properties index 257c1f4062..f8f564e645 100644 --- a/core/src/main/resources/hudson/model/Run/console_zh_CN.properties +++ b/core/src/main/resources/hudson/model/Run/console_zh_CN.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u67E5\u514B\u00B7\u8BFA\u91CC\u65AF\u8BF4\uFF1A\u63A7\u5236\u53F0\u8F93\u51FA +Console\ Output=\u63A7\u5236\u53F0\u8F93\u51FA skipSome=\u8DF3\u8FC7 {0,number,integer} KB.. \u5B8C\u6574\u65E5\u5FD7 -- GitLab From 19a2246fe67d938b7f4574dce9180b1d37bd3201 Mon Sep 17 00:00:00 2001 From: Daniel Beck Date: Sun, 24 Nov 2013 21:45:11 +0100 Subject: [PATCH 296/308] [FIXED JENKINS-20744] Don't hold off building jobs copied from CLI --- .../main/java/hudson/cli/CopyJobCommand.java | 2 +- .../java/hudson/cli/CopyJobCommandTest.java | 25 +++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/core/src/main/java/hudson/cli/CopyJobCommand.java b/core/src/main/java/hudson/cli/CopyJobCommand.java index a8049bdf28..8d1c86676c 100644 --- a/core/src/main/java/hudson/cli/CopyJobCommand.java +++ b/core/src/main/java/hudson/cli/CopyJobCommand.java @@ -75,7 +75,7 @@ public class CopyJobCommand extends CLICommand { dst = dst.substring(i + 1); } - ig.copy(src,dst); + ig.copy(src,dst).save(); return 0; } } diff --git a/test/src/test/java/hudson/cli/CopyJobCommandTest.java b/test/src/test/java/hudson/cli/CopyJobCommandTest.java index 06941c8615..3bd1c21583 100644 --- a/test/src/test/java/hudson/cli/CopyJobCommandTest.java +++ b/test/src/test/java/hudson/cli/CopyJobCommandTest.java @@ -37,6 +37,12 @@ import org.junit.Test; import org.jvnet.hudson.test.JenkinsRule; import org.jvnet.hudson.test.MockFolder; +import static org.hamcrest.MatcherAssert.assertThat; + +import static hudson.cli.CLICommandInvoker.Matcher.hasNoStandardOutput; +import static hudson.cli.CLICommandInvoker.Matcher.hasNoErrorOutput; +import static hudson.cli.CLICommandInvoker.Matcher.succeeded; + @SuppressWarnings("DM_DEFAULT_ENCODING") public class CopyJobCommandTest { @@ -56,4 +62,23 @@ public class CopyJobCommandTest { // TODO test copying from/to root, or into nonexistent folder } + // hold off build until saved only makes sense on the UI with config screen shown after copying; + // expect the CLI copy command to leave the job buildable + @Test public void copiedJobIsBuildable() throws Exception { + FreeStyleProject p1 = j.createFreeStyleProject(); + String copiedProjectName = "p2"; + + CLICommandInvoker.Result result = new CLICommandInvoker(j, new CopyJobCommand()) + .invokeWithArgs(p1.getName(), copiedProjectName); + + assertThat("Command expected to succeed; " + result.stderr() + ' ' + result.stdout(), result, succeeded()); + assertThat("stdout empty", result, hasNoStandardOutput()); + assertThat("stderr empty", result, hasNoErrorOutput()); + + FreeStyleProject p2 = (FreeStyleProject)j.jenkins.getItem(copiedProjectName); + + assertNotNull(p2); + assertTrue(p2.isBuildable()); + } + } -- GitLab From 9c352d15ccb8fbaf2e06336c3543d4dccfdeca4a Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 24 Nov 2013 22:32:19 -0800 Subject: [PATCH 297/308] [maven-release-plugin] prepare release jenkins-1.541 --- cli/pom.xml | 2 +- core/pom.xml | 2 +- plugins/pom.xml | 8 ++++---- pom.xml | 2 +- test/pom.xml | 2 +- war/pom.xml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/cli/pom.xml b/cli/pom.xml index 3df9914325..1ec30ebf42 100644 --- a/cli/pom.xml +++ b/cli/pom.xml @@ -5,7 +5,7 @@ pom org.jenkins-ci.main - 1.541-SNAPSHOT + 1.541 cli diff --git a/core/pom.xml b/core/pom.xml index 20f457b4d0..130844704c 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -29,7 +29,7 @@ THE SOFTWARE. org.jenkins-ci.main pom - 1.541-SNAPSHOT + 1.541 ../pom.xml diff --git a/plugins/pom.xml b/plugins/pom.xml index b73d509095..9f677aed32 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -11,7 +11,7 @@ org.jenkins-ci.plugins plugin Jenkins plugin POM - 1.541-SNAPSHOT + 1.541 pom +

    What's new in 1.541 (2013/11/24)

    • Add option to create view by copying an existing one. @@ -79,7 +82,6 @@ Upcoming changes Allow background tasks to run simultaneously, preventing task blockage. (issue 19622)
    -

    What's new in 1.540 (2013/11/17)

    • -- GitLab From d6c864aba2f7459d0c715ffa9729084ddfc1afd8 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 24 Nov 2013 23:23:23 -0800 Subject: [PATCH 300/308] updated changelog as a part of the release --- debian/debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/debian/changelog b/debian/debian/changelog index 0a7e388a47..6d29e5b134 100644 --- a/debian/debian/changelog +++ b/debian/debian/changelog @@ -1,3 +1,9 @@ +jenkins (1.541) unstable; urgency=low + + * See http://jenkins-ci.org/changelog for more details. + + -- Kohsuke Kawaguchi Sun, 24 Nov 2013 22:54:56 -0800 + jenkins (1.540) unstable; urgency=low * See http://jenkins-ci.org/changelog for more details. -- GitLab From b53b1b259aeb8e00bdb43db12b8e2a95d864b176 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Mon, 25 Nov 2013 10:53:37 +0100 Subject: [PATCH 301/308] Noting #1034 --- changelog.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/changelog.html b/changelog.html index 3cef24c7db..1ab892ac8b 100644 --- a/changelog.html +++ b/changelog.html @@ -61,6 +61,9 @@ Upcoming changes
    • Improved error diagnosis for CLI stream corruption. (issue 18058) +
    • + Don't hold off building until saved for jobs copied from CLI. + (issue 20744)
    -- GitLab From ececa60cb0a03d1539996a13b46b71d89054ef3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Mon, 25 Nov 2013 10:54:17 +0100 Subject: [PATCH 302/308] Refactor CopyJobCommandTest --- .../java/hudson/cli/CopyJobCommandTest.java | 33 ++++++++++--------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/test/src/test/java/hudson/cli/CopyJobCommandTest.java b/test/src/test/java/hudson/cli/CopyJobCommandTest.java index 3bd1c21583..0dd8bd3595 100644 --- a/test/src/test/java/hudson/cli/CopyJobCommandTest.java +++ b/test/src/test/java/hudson/cli/CopyJobCommandTest.java @@ -26,12 +26,8 @@ package hudson.cli; import edu.umd.cs.findbugs.annotations.SuppressWarnings; import hudson.model.FreeStyleProject; -import java.io.ByteArrayOutputStream; -import java.io.PrintStream; -import java.util.Arrays; -import java.util.Locale; -import org.apache.commons.io.input.NullInputStream; import static org.junit.Assert.*; +import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.jvnet.hudson.test.JenkinsRule; @@ -47,17 +43,23 @@ import static hudson.cli.CLICommandInvoker.Matcher.succeeded; public class CopyJobCommandTest { @Rule public JenkinsRule j = new JenkinsRule(); + private CLICommandInvoker command; + + @Before public void setUp() { + command = new CLICommandInvoker(j, new CopyJobCommand()); + } @Test public void copyBetweenFolders() throws Exception { MockFolder dir1 = j.createFolder("dir1"); MockFolder dir2 = j.createFolder("dir2"); FreeStyleProject p = dir1.createProject(FreeStyleProject.class, "p1"); - ByteArrayOutputStream out = new ByteArrayOutputStream(); - PrintStream outS = new PrintStream(out); - int result = new CopyJobCommand().main(Arrays.asList("dir1/p1", "dir2/p2"), Locale.ENGLISH, new NullInputStream(0), outS, outS); - outS.flush(); - assertEquals(out.toString(), 0, result); - assertEquals("", out.toString()); + + CLICommandInvoker.Result result = command.invokeWithArgs("dir1/p1", "dir2/p2"); + + assertThat(result, succeeded()); + assertThat(result, hasNoStandardOutput()); + assertThat(result, hasNoErrorOutput()); + assertNotNull(j.jenkins.getItemByFullName("dir2/p2")); // TODO test copying from/to root, or into nonexistent folder } @@ -68,12 +70,11 @@ public class CopyJobCommandTest { FreeStyleProject p1 = j.createFreeStyleProject(); String copiedProjectName = "p2"; - CLICommandInvoker.Result result = new CLICommandInvoker(j, new CopyJobCommand()) - .invokeWithArgs(p1.getName(), copiedProjectName); + CLICommandInvoker.Result result = command.invokeWithArgs(p1.getName(), copiedProjectName); - assertThat("Command expected to succeed; " + result.stderr() + ' ' + result.stdout(), result, succeeded()); - assertThat("stdout empty", result, hasNoStandardOutput()); - assertThat("stderr empty", result, hasNoErrorOutput()); + assertThat(result, succeeded()); + assertThat(result, hasNoStandardOutput()); + assertThat(result, hasNoErrorOutput()); FreeStyleProject p2 = (FreeStyleProject)j.jenkins.getItem(copiedProjectName); -- GitLab From 576b5c80499170cd93aef96dd1c4d59cd25a0e86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Mon, 25 Nov 2013 14:46:46 +0100 Subject: [PATCH 303/308] Noting #1014 --- changelog.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/changelog.html b/changelog.html index 1ab892ac8b..1bb9c0a4cf 100644 --- a/changelog.html +++ b/changelog.html @@ -64,6 +64,9 @@ Upcoming changes
  • Don't hold off building until saved for jobs copied from CLI. (issue 20744) +
  • + Allow build queue and executor status panes to be collapsed. + (issue 5622) -- GitLab From 3cc7188d03d2328667e5ff1ad733eb5de8fa4722 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Mon, 25 Nov 2013 16:00:28 +0100 Subject: [PATCH 304/308] Amending #982 --- core/src/main/java/hudson/FilePath.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/src/main/java/hudson/FilePath.java b/core/src/main/java/hudson/FilePath.java index ad5b62c1d1..9fd3134740 100644 --- a/core/src/main/java/hudson/FilePath.java +++ b/core/src/main/java/hudson/FilePath.java @@ -1408,12 +1408,12 @@ public final class FilePath implements Serializable { /** * Returns the number of unallocated bytes in the partition of that file. - * + * @since 1.542 */ public long getFreeDiskSpace() throws IOException, InterruptedException { return act(new FileCallable() { private static final long serialVersionUID = 1L; - public Long invoke(File f, VirtualChannel channel) throws IOException { + @Override public Long invoke(File f, VirtualChannel channel) throws IOException { return f.getFreeSpace(); } }); @@ -1421,12 +1421,12 @@ public final class FilePath implements Serializable { /** * Returns the total number of bytes in the partition of that file. - * + * @since 1.542 */ public long getTotalDiskSpace() throws IOException, InterruptedException { return act(new FileCallable() { private static final long serialVersionUID = 1L; - public Long invoke(File f, VirtualChannel channel) throws IOException { + @Override public Long invoke(File f, VirtualChannel channel) throws IOException { return f.getTotalSpace(); } }); @@ -1434,12 +1434,12 @@ public final class FilePath implements Serializable { /** * Returns the number of usable bytes in the partition of that file. - * + * @since 1.542 */ public long getUsableDiskSpace() throws IOException, InterruptedException { return act(new FileCallable() { private static final long serialVersionUID = 1L; - public Long invoke(File f, VirtualChannel channel) throws IOException { + @Override public Long invoke(File f, VirtualChannel channel) throws IOException { return f.getUsableSpace(); } }); -- GitLab From 8163ac16224760a7131afa47521f4721f9fe9888 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Mon, 25 Nov 2013 07:53:55 -0800 Subject: [PATCH 305/308] creating an RC branch --- changelog.html | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/changelog.html b/changelog.html index 1bb9c0a4cf..fc119ef381 100644 --- a/changelog.html +++ b/changelog.html @@ -54,6 +54,14 @@ Upcoming changes + + + - - -

    What's new in 1.541 (2013/11/24)

      -- GitLab From 3f2abe4b28c0de839965b70e26517e83a48173ef Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Mon, 25 Nov 2013 07:53:59 -0800 Subject: [PATCH 306/308] the trunk is toward 1.543-SNAPSHOT --- cli/pom.xml | 2 +- core/pom.xml | 2 +- plugins/pom.xml | 8 ++++---- pom.xml | 2 +- test/pom.xml | 2 +- war/pom.xml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/cli/pom.xml b/cli/pom.xml index 70ebb80c95..7988fba3ca 100644 --- a/cli/pom.xml +++ b/cli/pom.xml @@ -5,7 +5,7 @@ pom org.jenkins-ci.main - 1.542-SNAPSHOT + 1.543-SNAPSHOT cli diff --git a/core/pom.xml b/core/pom.xml index 99a01997b0..40c56a5451 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -29,7 +29,7 @@ THE SOFTWARE. org.jenkins-ci.main pom - 1.542-SNAPSHOT + 1.543-SNAPSHOT ../pom.xml diff --git a/plugins/pom.xml b/plugins/pom.xml index e9eafad18d..34803dc406 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -11,7 +11,7 @@ org.jenkins-ci.plugins plugin Jenkins plugin POM - 1.542-SNAPSHOT + 1.543-SNAPSHOT pom diff --git a/core/src/main/java/hudson/Functions.java b/core/src/main/java/hudson/Functions.java index 5c9554704f..50c115a850 100644 --- a/core/src/main/java/hudson/Functions.java +++ b/core/src/main/java/hudson/Functions.java @@ -135,7 +135,6 @@ import jenkins.model.ModelObjectWithContextMenu; import org.acegisecurity.providers.anonymous.AnonymousAuthenticationToken; import org.apache.commons.jelly.JellyContext; -import org.apache.commons.jelly.JellyException; import org.apache.commons.jelly.JellyTagException; import org.apache.commons.jelly.Script; import org.apache.commons.jelly.XMLOutput; @@ -144,19 +143,15 @@ import org.apache.commons.jexl.util.Introspector; import org.apache.commons.lang.StringUtils; import org.jvnet.tiger_types.Types; import org.kohsuke.stapler.Ancestor; -import org.kohsuke.stapler.MetaClass; import org.kohsuke.stapler.Stapler; import org.kohsuke.stapler.StaplerRequest; import org.kohsuke.stapler.StaplerResponse; -import org.kohsuke.stapler.WebApp; import org.kohsuke.stapler.jelly.InternationalizedStringExpression.RawHtmlArgument; -import org.kohsuke.stapler.jelly.JellyClassTearOff; import com.google.common.base.Predicate; import com.google.common.base.Predicates; import java.util.concurrent.atomic.AtomicLong; import org.kohsuke.accmod.Restricted; -import org.kohsuke.accmod.restrictions.DoNotUse; import org.kohsuke.accmod.restrictions.NoExternalUse; /** @@ -450,13 +445,14 @@ public class Functions { return formatter.format(r); } - @Restricted(DoNotUse.class) + @Restricted(NoExternalUse.class) public static String[] printLogRecordHtml(LogRecord r, LogRecord prior) { String[] oldParts = prior == null ? new String[4] : logRecordPreformat(prior); String[] newParts = logRecordPreformat(r); for (int i = 0; i < /* not 4 */3; i++) { newParts[i] = ""; } + newParts[3] = Util.xmlEscape(newParts[3]); return newParts; } /** diff --git a/core/src/test/java/hudson/FunctionsTest.java b/core/src/test/java/hudson/FunctionsTest.java index cafa59670c..8d13742cac 100644 --- a/core/src/test/java/hudson/FunctionsTest.java +++ b/core/src/test/java/hudson/FunctionsTest.java @@ -37,6 +37,8 @@ import java.util.Arrays; import java.util.Collections; import java.util.List; import java.util.Locale; +import java.util.logging.Level; +import java.util.logging.LogRecord; import jenkins.model.Jenkins; @@ -293,4 +295,12 @@ public class FunctionsTest { assertEquals("H,e.l/l:o-w_o=+|d", Functions.breakableString("H,e.l/l:o-w_o=+|d")); assertEquals("ALongStringThatCanNotBeBrokenByDefault", Functions.breakableString("ALongStringThatCanNotBeBrokenByDefault")); } + + @Bug(20800) + @Test public void printLogRecordHtml() throws Exception { + LogRecord lr = new LogRecord(Level.INFO, "Bad input "); + lr.setLoggerName("test"); + assertEquals("Bad input <xml/>\n", Functions.printLogRecordHtml(lr, null)[3]); + } + } -- GitLab