diff --git a/core/src/main/java/hudson/FilePath.java b/core/src/main/java/hudson/FilePath.java index 2a15d52aee27..6faa4bb6045e 100644 --- a/core/src/main/java/hudson/FilePath.java +++ b/core/src/main/java/hudson/FilePath.java @@ -2078,7 +2078,7 @@ public FilePath[] invoke(File f, VirtualChannel channel) throws IOException { @NonNull private static String[] glob(File dir, String includes, String excludes, boolean defaultExcludes) throws IOException { if(isAbsolute(includes)) - throw new IOException("Expecting Ant GLOB pattern, but saw '"+includes+"'. See http://ant.apache.org/manual/Types/fileset.html for syntax"); + throw new IOException("Expecting Ant GLOB pattern, but saw '"+includes+"'. See https://ant.apache.org/manual/Types/fileset.html for syntax"); FileSet fs = Util.createFileSet(dir,includes,excludes); fs.setDefaultexcludes(defaultExcludes); DirectoryScanner ds; diff --git a/core/src/main/java/hudson/ProxyConfiguration.java b/core/src/main/java/hudson/ProxyConfiguration.java index a6abec339420..4eba74d9aba0 100644 --- a/core/src/main/java/hudson/ProxyConfiguration.java +++ b/core/src/main/java/hudson/ProxyConfiguration.java @@ -77,8 +77,8 @@ *

* Proxy authentication (including NTLM) is implemented by setting a default * {@link Authenticator} which provides a {@link PasswordAuthentication} - * (as described in the Java 6 tech note - * + * (as described in the Java 8 tech note + * * Http Authentication). * * @see jenkins.model.Jenkins#proxy diff --git a/core/src/main/java/hudson/WebAppMain.java b/core/src/main/java/hudson/WebAppMain.java index 1f88bae7cbf5..86eb3d7eeb1c 100644 --- a/core/src/main/java/hudson/WebAppMain.java +++ b/core/src/main/java/hudson/WebAppMain.java @@ -272,7 +272,7 @@ public Locale get() { // if this works we are all happy } catch (TransformerFactoryConfigurationError x) { // no it didn't. - LOGGER.log(WARNING, "XSLT not configured correctly. Hudson will try to fix this. See http://issues.apache.org/bugzilla/show_bug.cgi?id=40895 for more details",x); + LOGGER.log(WARNING, "XSLT not configured correctly. Hudson will try to fix this. See https://bz.apache.org/bugzilla/show_bug.cgi?id=40895 for more details",x); System.setProperty(TransformerFactory.class.getName(),"com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl"); try { TransformerFactory.newInstance(); diff --git a/core/src/main/java/hudson/org/apache/tools/tar/TarOutputStream.java b/core/src/main/java/hudson/org/apache/tools/tar/TarOutputStream.java index c42bd3a7198f..62a489b79e31 100644 --- a/core/src/main/java/hudson/org/apache/tools/tar/TarOutputStream.java +++ b/core/src/main/java/hudson/org/apache/tools/tar/TarOutputStream.java @@ -143,7 +143,7 @@ public void setBufferDebug(boolean debug) { */ public void finish() throws IOException { // See Bugzilla 28776 for a discussion on this - // http://issues.apache.org/bugzilla/show_bug.cgi?id=28776 + // https://bz.apache.org/bugzilla/show_bug.cgi?id=28776 this.writeEOFRecord(); this.writeEOFRecord(); } diff --git a/core/src/main/java/hudson/util/HeapSpaceStringConverter.java b/core/src/main/java/hudson/util/HeapSpaceStringConverter.java index 4aeb7393dac3..1d5d773111ca 100644 --- a/core/src/main/java/hudson/util/HeapSpaceStringConverter.java +++ b/core/src/main/java/hudson/util/HeapSpaceStringConverter.java @@ -33,7 +33,7 @@ * * Since XStream 1.3 it use a WeakHashMap cache to always use the same String instances, but * this has also major problems with a single long living XStream instance (as we have in Jenkins) - * See http://jira.codehaus.org/browse/XSTR-604 + * See https://x-stream.github.io/jira/604/ * *

* Use this to avoid that (instead those strings will diff --git a/core/src/main/java/jenkins/diagnosis/HsErrPidList.java b/core/src/main/java/jenkins/diagnosis/HsErrPidList.java index 1f8c29cc6db5..25b8ede4f0ed 100644 --- a/core/src/main/java/jenkins/diagnosis/HsErrPidList.java +++ b/core/src/main/java/jenkins/diagnosis/HsErrPidList.java @@ -73,7 +73,7 @@ public HsErrPidList() { // check our arguments in the very end since this might fail on some platforms JavaVMArguments args = JavaVMArguments.current(); for (String a : args) { - // see http://www.oracle.com/technetwork/java/javase/felog-138657.html + // see https://docs.oracle.com/javase/8/docs/technotes/guides/troubleshoot/felog001.html if (a.startsWith(ERROR_FILE_OPTION)) { scan(a.substring(ERROR_FILE_OPTION.length())); } diff --git a/core/src/main/resources/dsld/eclipse.dsld b/core/src/main/resources/dsld/eclipse.dsld index 237959480ad1..1c444cb59885 100644 --- a/core/src/main/resources/dsld/eclipse.dsld +++ b/core/src/main/resources/dsld/eclipse.dsld @@ -1,5 +1,5 @@ // this is the DSL descriptor to support the creation of groovy views in eclipse -// for more information about the groovy DSL support in eclipse see: http://groovy.codehaus.org/DSL+Descriptors+for+Groovy-Eclipse +// for more information about the groovy DSL support in eclipse see: https://github.com/groovy/groovy-eclipse/wiki/DSL-Descriptors // fileExtension(...) and fileName(...) (isScript() /*& sourceFolderOfCurrentFile("src/main/resources")*/).accept { provider "Jenkins Groovy View"; diff --git a/core/src/main/resources/hudson/ProxyConfiguration/help-name.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name.html index 62f93846e927..04d3520563b1 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/help-name.html +++ b/core/src/main/resources/hudson/ProxyConfiguration/help-name.html @@ -1,7 +1,7 @@

If your Jenkins server sits behind a firewall and does not have the direct access to the internet, and if your server JVM is not configured appropriately - (See JDK networking properties for more details) + (See JDK networking properties for more details) to enable internet connection, you can specify the HTTP proxy server name in this field to allow Jenkins to install plugins on behalf of you. Note that Jenkins uses HTTPS to communicate with the update center to download plugins. diff --git a/core/src/main/resources/hudson/ProxyConfiguration/help-name_bg.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name_bg.html index 8cc660d9cbed..47bade33d940 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/help-name_bg.html +++ b/core/src/main/resources/hudson/ProxyConfiguration/help-name_bg.html @@ -2,7 +2,7 @@ Ако вашият Jenkins е зад защитна стена и няма пряка връзка към Интернет, а JVM на сървъра не е настроена правилно, за да се позволи връзка с Интернет, може да укажете име на сървър-посредник за HTTP, за да позволите на Jenkins самостоятелно да инсталира приставки. (за повече детайли: - Networking Properties) + Networking Properties) Jenkins използва HTTPS, за да се свърже със сървъра за обновяване и изтегли приставките.

diff --git a/core/src/main/resources/hudson/ProxyConfiguration/help-name_de.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name_de.html index ebab2d935fd1..daa21ce4afb0 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/help-name_de.html +++ b/core/src/main/resources/hudson/ProxyConfiguration/help-name_de.html @@ -1,7 +1,7 @@

Befindet sich Ihr Jenkins-Server hinter einer Firewall, hat keinen direkten Zugang zum Internet und ist Ihre Server-JVM nicht hinreichend konfiguriert, um eine Internetverbindung herzustellen - (mehr über die JDK-Netzwerk-Einstellungen), + (mehr über die JDK-Netzwerk-Einstellungen), dann können Sie in diesem Feld den Namen eines HTTP-Proxy-Servers angeben. Sie erlauben dadurch Jenkins, in Ihrem Namen Plugins herunterzuladen und zu installieren. diff --git a/core/src/main/resources/hudson/ProxyConfiguration/help-name_fr.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name_fr.html index 3c7b727592df..f5a50345b517 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/help-name_fr.html +++ b/core/src/main/resources/hudson/ProxyConfiguration/help-name_fr.html @@ -1,7 +1,7 @@
Si votre serveur Jenkins se trouve derrière un firewall, qu'il n'a pas d'accès direct à internet et que la JVM de votre serveur n'est pas configurée de façon à permettre l'accès à internet (voir - les propriétés réseau du JDK pour plus d'informations), + les propriétés réseau du JDK pour plus d'informations), vous pouvez spécifier le nom d'un serveur proxy HTTP pour permettre à Jenkins d'installer des plugins pour vous. Notez que Jenkins utilise HTTPS pour communiquer avec le serveur de mise à jour pour télécharger les plugins. diff --git a/core/src/main/resources/hudson/ProxyConfiguration/help-name_it.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name_it.html index 3617f96fd024..ee60884a6102 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/help-name_it.html +++ b/core/src/main/resources/hudson/ProxyConfiguration/help-name_it.html @@ -2,7 +2,7 @@ Se il server Jenkins è protetto da un firewall e non dispone di accesso diretto a Internet, e se la JVM del server non è configurata in modo appropriato per consentire la connessione a Internet - ( + ( si vedano le proprietà di rete del JDK per ulteriori dettagli), è possibile specificare in questo campo il nome del server proxy HTTP per consentire a Jenkins di installare componenti aggiuntivi per proprio conto. diff --git a/core/src/main/resources/hudson/ProxyConfiguration/help-name_ja.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name_ja.html index 6cacaa099553..8f6af1b859a5 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/help-name_ja.html +++ b/core/src/main/resources/hudson/ProxyConfiguration/help-name_ja.html @@ -1,6 +1,6 @@
Jenkinsサーバーがファイアーウォールの内側にあってインターネットに直接アクセスできない上に、 - サーバーのJVMがインターネットと接続できるように適切(詳細はネットワークのプロパティを参照)に設定されていない場合、 + サーバーのJVMがインターネットと接続できるように適切(詳細はネットワークのプロパティを参照)に設定されていない場合、 この項目にプロキシーの名前を設定するとプラグインをインストールできます。

Jenkinsは、アップデートセンターとHTTPSで接続してプラグインをダウンロードすることに注意してください。 diff --git a/core/src/main/resources/hudson/ProxyConfiguration/help-name_nl.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name_nl.html index f7796d94f680..573a1123169c 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/help-name_nl.html +++ b/core/src/main/resources/hudson/ProxyConfiguration/help-name_nl.html @@ -1,7 +1,7 @@

Indien Uw Jenkins server zich achter een firewall bevindt en geen directe toegang tot het internet heeft, dan kunt U hier een HTTP-proxyservernaam opgeven via dewelke Jenkins dan voor U plugins kan installeren. - Merk op dat uw JVM hiertoe ook correct geconfigureerd dient te zijn ( + Merk op dat uw JVM hiertoe ook correct geconfigureerd dient te zijn ( Zie "JDK networking properties" voor meer details). Jenkins zal het opwaarderingscentrum via HTTPS contacteren voor het verkrijgen van de benodigde opwaarderingspakketten. diff --git a/core/src/main/resources/hudson/ProxyConfiguration/help-name_pl.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name_pl.html index d98aae01164f..67c230653bfd 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/help-name_pl.html +++ b/core/src/main/resources/hudson/ProxyConfiguration/help-name_pl.html @@ -1,7 +1,7 @@
Jeli Jenkins znajduje si za zapor sieciow i nie ma bezporedniego dostpu do Internetu, a JVM nie jest skonfigurowana odpowiednio - (sprawd ustawienia sieciowe), + (sprawd ustawienia sieciowe), moesz udostpni Internet ustawiajc serwer proxy, aby Jenkins samodzielnie pobra i zainstalowa wtyczki. Pamitaj, e Jenkins uywa poczenia https, aby pobra wtyczki z centrum aktualizacji. diff --git a/core/src/main/resources/hudson/ProxyConfiguration/help-name_pt_BR.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name_pt_BR.html index 41f744e14324..32f6041bca2d 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/help-name_pt_BR.html +++ b/core/src/main/resources/hudson/ProxyConfiguration/help-name_pt_BR.html @@ -1,7 +1,7 @@
Se seu servidor Jenkins estiver atrás de um firewall e não tem acesso direto a internet, e se a JVM do seu servidor não estiver configurada apropriadamente - (Veja as propriedades de redes do JDK para mais detalhes) + (Veja as propriedades de redes do JDK para mais detalhes) para habilitar a conexão de internet, você pode especificar o nome do servidor de proxy HTTP neste campos para permitir ao Jenkins instalar plugins para você. Note que o Jenkins usa HTTPS para se comunicar com o centro de atualização para baixar os plugins. diff --git a/core/src/main/resources/hudson/ProxyConfiguration/help-name_zh_TW.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name_zh_TW.html index 76334412363d..39f70ef283a8 100644 --- a/core/src/main/resources/hudson/ProxyConfiguration/help-name_zh_TW.html +++ b/core/src/main/resources/hudson/ProxyConfiguration/help-name_zh_TW.html @@ -1,6 +1,6 @@
如果您的 Jenkins 在防火牆後面、不能直接連到 Internet,而且伺服器 JVM 也沒有特別設定 - (參考 JDK 的 《Networking Properties》了解詳情)。 + (參考 JDK 的 《Networking Properties》了解詳情)。 可以在這裡指定 HTTP 代理伺服器名稱,讓 Jenkins 能幫您安裝外掛程式。 請注意,Jenkins 使用 HTTPS 協定由更新中心下載外掛程式。 diff --git a/core/src/main/resources/hudson/model/Run/_api.jelly b/core/src/main/resources/hudson/model/Run/_api.jelly index d116b13d2778..bd049ae35741 100644 --- a/core/src/main/resources/hudson/model/Run/_api.jelly +++ b/core/src/main/resources/hudson/model/Run/_api.jelly @@ -34,7 +34,7 @@ THE SOFTWARE.
This URL returns the build timestamp. You can also use the format query parameter to control the date format, which follows - the SimpleDateFormat format pattern. + the SimpleDateFormat format pattern. (example) You can also use the Accept-Language HTTP header to control the locale in which the date is formatted. diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs.html b/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs.html index 085afd948211..b1173487ea1a 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs.html +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs.html @@ -1,5 +1,5 @@
If the agent JVM should be launched with additional VM arguments, such as "-Xmx256m", specify those here. List of all the options are available - here. + here.
\ No newline at end of file diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_bg.html b/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_bg.html index 26e7fed59cfa..3d38c8d202b3 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_bg.html +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_bg.html @@ -2,5 +2,5 @@ При необходимост тук попълнете допълнителните аргументи за стартирането на виртуалната машина на Java на подчинените компютри като „-Xmx256m“. Погледнете документацията за - пълния списък. + пълния списък.
diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_fr.html b/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_fr.html index ca49c4f101c7..b4869b1f2f3f 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_fr.html +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_fr.html @@ -1,5 +1,5 @@
Si la JVM agent doit être lancée avec des arguments supplémentaires, comme "-Xmx256m", indiquez-les ici. La liste de toutes options disponibles est disponible - ici. + ici.
\ No newline at end of file diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_it.html b/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_it.html index 4b2295e04a74..abdc20e1a464 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_it.html +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_it.html @@ -2,5 +2,5 @@ Se la JVM dell'agente deve essere avviata con argomenti VM aggiuntivi, come "-Xmx256m", specificarli qui. Un elenco con tutte le opzioni è disponibile - qui. + qui.
diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_ja.html b/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_ja.html index 39239b68cd98..424a85b71697 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_ja.html +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_ja.html @@ -1,4 +1,4 @@
エージェントのJVMに"-Xmx256m"のようなオプションをつけて起動する必要があるなら、ここで指定します。 - 利用可能なオプションの一覧を参照してください。 + 利用可能なオプションの一覧を参照してください。
\ No newline at end of file diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/jenkins-agent.jnlp.jelly b/core/src/main/resources/hudson/slaves/SlaveComputer/jenkins-agent.jnlp.jelly index c350a36b8c5b..fc2ed92676bb 100644 --- a/core/src/main/resources/hudson/slaves/SlaveComputer/jenkins-agent.jnlp.jelly +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/jenkins-agent.jnlp.jelly @@ -31,7 +31,7 @@ THE SOFTWARE. See http://www.dallaway.com/acad/webstart/ for obtaining the certificate. --> - + diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts.html b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts.html index 13eacb54b7dd..13e3c24a4147 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts.html +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts.html @@ -1,6 +1,6 @@
You can use wildcards like 'module/dist/**/*.zip'. - See + See the includes attribute of Ant fileset for the exact format -- except that "," (comma) is the only supported separator. The base directory is the workspace. diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_bg.html b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_bg.html index c199f270db08..27b8ea31ce54 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_bg.html +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_bg.html @@ -1,7 +1,7 @@
Можете да използвате шаблонни знаци като „module/dist/**/*.zip“. За точния формат погледнете - документацията + документацията на атрибута „includes“ за наборите от файлове на Ant. Базовата директория е работното пространство. Можете да архивирате само файлове, които се съдържат в него. diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_de.html b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_de.html index 691bbc9af209..e3c93fbf3193 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_de.html +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_de.html @@ -1,7 +1,7 @@
Sie können Platzhalterzeichen verwenden wie z.B. 'module/dist/**/*.zip'. Das unterstützte Format entspricht der Angabe des - includes-Attributes eines Ant FileSets. + includes-Attributes eines Ant FileSets. Das Basisverzeichnis ist der Arbeitsbereich. Sie können nur Dateien archivieren, die im Arbeitsbereich liegen.
\ No newline at end of file diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_fr.html b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_fr.html index 457f405288c7..db7ac4cb7a1b 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_fr.html +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_fr.html @@ -1,6 +1,6 @@ 
Vous pouvez utilisez ici des wildcards du type 'module/dist/**/*.zip'. - Voir + Voir les @includes d'un fileset Ant pour le format exact. Le répertoire de base est le workspace.
\ No newline at end of file diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_it.html b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_it.html index 22718326fa23..b79a858b5f1b 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_it.html +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_it.html @@ -1,6 +1,6 @@
È possibile utilizzare caratteri jolly come 'module/dist/**/*.zip'. - Si veda + Si veda l'attributo includes dei fileset Ant per il formato esatto; come eccezione, "," (la virgola) è l'unico separatore supportato. diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_ja.html b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_ja.html index 10b3d22441e0..d7ab80547225 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_ja.html +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_ja.html @@ -1,6 +1,6 @@
ワイルドカードを使用できます(例 'module/dist/**/*.zip')。正確な形式については、 - + includes属性(Antのファイルセット)を参考にしてください。 基準となるディレクトリは、ワークスペースです。
\ No newline at end of file diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_nl.html b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_nl.html index 3df950bce29d..0dcef9278ee4 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_nl.html +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_nl.html @@ -1,6 +1,6 @@
U kunt jokercharacter gebruiken, vb. 'module/dist/**/*.zip'. - Zie + Zie de @includes in een Ant 'fileset' voor meer informatie over het exacte formaat. De basisfolder is de werkplaats. diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_pt_BR.html b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_pt_BR.html index b899ada7f210..1dc0a30e46ea 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_pt_BR.html +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_pt_BR.html @@ -1,6 +1,6 @@
Pode usar coringas como 'module/dist/**/*.zip'. - Veja + Veja o @includes do fileset do Ant para o formato exato. O diretório base é o workspace.
diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_ru.html b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_ru.html index 6ed78424d677..a1bb677a6846 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_ru.html +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_ru.html @@ -1,6 +1,6 @@ 
Возможно использование масок вида 'module/dist/**/*.zip'. - Смотрите + Смотрите @includes из Ant для полной документации о синтаксисе. Текущей директориея является сборочная директория.
\ No newline at end of file diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_tr.html b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_tr.html index 6372ca6a24c7..fe2587718c7d 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_tr.html +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_tr.html @@ -1,6 +1,6 @@
'module/dist/**/*.zip' gibi joker kalıpları kullanabilirsiniz. - Yardım için, + Yardım için, the @includes of Ant fileset linkine bakın. Temel dizin çalışma alanıdır.
\ No newline at end of file diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_zh_TW.html b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_zh_TW.html index 4aef1141a3ef..849a21e6492b 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_zh_TW.html +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-artifacts_zh_TW.html @@ -1,5 +1,5 @@
可以像 "module/dist/**/*.zip" 這樣使用萬用字元。 - 確切格式可以參考 Ant fileset 的 @includes。 + 確切格式可以參考 Ant fileset 的 @includes。 工作目錄就是工作區目錄
\ No newline at end of file diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_bg.html b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_bg.html index e7a44b3902b7..fa95de1e1b8e 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_bg.html +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_bg.html @@ -1,6 +1,6 @@
Допълнително може да укажете - изключващ шаблон „excludes“, + изключващ шаблон „excludes“, като „foo/bar/**/*“. Файл, който отговаря на такъв шаблон, няма да бъде архивиран, дори и да напасва шаблона указан във файловете за архивиране.
diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_de.html b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_de.html index b9c73ffd7d41..7f57ccbd011a 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_de.html +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_de.html @@ -1,5 +1,5 @@
- Optional: Geben Sie ein + Optional: Geben Sie ein Ausschlußmuster an, z.B. "foo/bar/**/*". Eine Datei, welche dieses Muster erfüllt, wird nicht archiviert - selbst wenn sie das Muster erfüllt, das unter "Zu archivierende Dateien" angegeben wurde. diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_fr.html b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_fr.html index 3d997775b172..9ae3c4db7ba8 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_fr.html +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_fr.html @@ -1,5 +1,5 @@ 
- Spécifie un pattern d'exclusion optionel, du type "foo/bar/**/*". + Spécifie un pattern d'exclusion optionel, du type "foo/bar/**/*". Un fichier qui correspond à ce pattern ne sera pas archivé, même s'il correspond au masque spécifié dans la section 'fichiers à archiver'.
\ No newline at end of file diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_it.html b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_it.html index 01ef664dff83..911e5a93e11e 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_it.html +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_it.html @@ -1,5 +1,5 @@
- Specificare facoltativamente il pattern 'excludes', + Specificare facoltativamente il pattern 'excludes', ad esempio "pippo/pluto/**/*". Un file corrispondente a questa maschera non sarà archiviato anche nel caso in cui corrisponda alla maschera specificata nella sezione "File da archiviare". diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_ja.html b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_ja.html index b4dd0cddec3a..9f26656e349f 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_ja.html +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_ja.html @@ -1,4 +1,4 @@
- '除外'するパターンを指定します(例 "foo/bar/**/*")。 + '除外'するパターンを指定します(例 "foo/bar/**/*")。 このマスクに一致するファイルは、'保存するファイル'で指定したマスクに一致していても、アーカイブされません。
\ No newline at end of file diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_nl.html b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_nl.html index 6ca10cdbb372..2ce9fe30ab87 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_nl.html +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_nl.html @@ -1,5 +1,5 @@
- Optioneel kunt u een + Optioneel kunt u een uitsluitingspatroon zoals 'foo/bar/**/*' opgeven. Een bestand dat voldoet aan dit patroon zal niet mee gearchiveerd worden. Dit zelfs wanneer het bestand voldoet aan het patroon opgegeven in de sectie 'Te archiveren bestanden'. diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_pt_BR.html b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_pt_BR.html index 63657c878508..e8c2e6cbe7da 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_pt_BR.html +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_pt_BR.html @@ -1,5 +1,5 @@
- Opcionalmente especifique o padrão de 'exclusão', + Opcionalmente especifique o padrão de 'exclusão', tal como "foo/bar/**/*". Um arquivo que se enquadre nesta máscara não será arquivado mesmo se ele se enquadrar na máscara especificada na seção 'arquivos para arquivar'.
diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_ru.html b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_ru.html index 42b359d1b81a..acf7f4dd68e8 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_ru.html +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_ru.html @@ -1,5 +1,5 @@ 
- Опционально укажите шаблон 'исключений' + Опционально укажите шаблон 'исключений' в виде "foo/bar/**/*". Файл, соответствующий этой маске заархивирован не будет, даже если он соответствует маске, указанной в поле "Файлы для архивации".
\ No newline at end of file diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_tr.html b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_tr.html index 82852bac7a90..d04b908fbaa7 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_tr.html +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_tr.html @@ -1,6 +1,6 @@
Opsiyonel olarak, "foo/bar/**/*" gibi - bir 'excludes' kalıbı + bir 'excludes' kalıbı tanımlayabilirsiniz. Bu kalıp ile eşleşen dosyalar, 'arşivlenecek dosyalar' kısmında belirtilse dahi, arşivlenmeyecektir.
\ No newline at end of file diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_zh_TW.html b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_zh_TW.html index 277c5ad6e670..9efb599144cc 100644 --- a/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_zh_TW.html +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/help-excludes_zh_TW.html @@ -1,4 +1,4 @@
- 還可以指定 "excludes" 樣式,例如 "foo/bar/**/*"。 + 還可以指定 "excludes" 樣式,例如 "foo/bar/**/*"。 符合樣式的檔案不會被封存,就算符合「要封存的檔案」設定也一樣。
\ No newline at end of file diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/help-excludes_it.html b/core/src/main/resources/hudson/tasks/Fingerprinter/help-excludes_it.html index 80ab471901e9..ab3702263245 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/help-excludes_it.html +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/help-excludes_it.html @@ -1,5 +1,5 @@
- Specificare facoltativamente il pattern 'excludes', + Specificare facoltativamente il pattern 'excludes', ad esempio "pippo/pluto/**/*". Un file corrispondente a questa maschera non sarà archiviato anche nel caso in cui corrisponda alla maschera specificata nella sezione "File di cui rilevare le impronte digitali". diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets.html b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets.html index ec2d670afde8..364cb69bb747 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets.html +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets.html @@ -1,5 +1,5 @@
Can use wildcards like module/dist/**/*.zip - (see the @includes of Ant fileset for the exact format). + (see the @includes of Ant fileset for the exact format). The base directory is the workspace.
diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_bg.html b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_bg.html index 5db7e7bed12f..80c8b16c4aae 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_bg.html +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_bg.html @@ -1,7 +1,7 @@
Можете да използвате шаблонни знаци като module/dist/**/*.zip (за точния формат погледнете секцията за - @includes от + @includes от ръководството на Ant). Основната директория е работното пространството.
diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_de.html b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_de.html index 9becf777f6d0..4aa7673e812b 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_de.html +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_de.html @@ -1,6 +1,6 @@
Es sind reguläre Ausdrücke wie z.B. 'module/dist/**/*.zip' erlaubt. - Das genaue Format können Sie der + Das genaue Format können Sie der Spezifikation für @includes eines Ant-Filesets entnehmen. Das Ausgangsverzeichnis ist der Arbeitsbereich.
diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_es.html b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_es.html index 16965cb0e66f..1bb91e2d9eac 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_es.html +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_es.html @@ -1,6 +1,6 @@
Se pueden usar comodines como 'module/dist/**/*.zip'. - Echa un vistazo al + Echa un vistazo al atributo @includes de la etiqueta fileset de Ant para conocer el formato exacto. El directorio base es el workspace.
diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_fr.html b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_fr.html index 80db23a98b62..579074b62b15 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_fr.html +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_fr.html @@ -1,5 +1,5 @@
Les wildcards du type 'module/dist/**/*.zip' sont autorisés. - Voir le format exact des @includes des filesets Ants. + Voir le format exact des @includes des filesets Ants. Le répertoire de base est le répertoire de travail (workspace).
diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_it.html b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_it.html index 52e943ba4485..2e6c02b6d733 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_it.html +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_it.html @@ -1,5 +1,5 @@
È possibile utilizzare caratteri jolly come modulo/dist/**/*.zip - (si veda la direttiva @includes dei fileset di Ant per il formato esatto). + (si veda la direttiva @includes dei fileset di Ant per il formato esatto). La directory di base è lo spazio di lavoro.
diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_ja.html b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_ja.html index 2650acfaba72..ea1103453e49 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_ja.html +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_ja.html @@ -1,3 +1,3 @@
- 記録したいファイルのパターンをAnt fileset includes属性の書式で(ベースディレクトリはワークスペースルート)。例:module/dist/**/*.zip + 記録したいファイルのパターンをAnt fileset includes属性の書式で(ベースディレクトリはワークスペースルート)。例:module/dist/**/*.zip
diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_nl.html b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_nl.html index aa6be339f6b0..3c1ed02491e2 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_nl.html +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_nl.html @@ -1,6 +1,6 @@
Je kunt jokerkarakters zoals in 'module/dist/**/*.zip' gebruiken. - Zie de @includes mogelijkheid van Ant bestandsbundels voor het correcte + Zie de @includes mogelijkheid van Ant bestandsbundels voor het correcte formaat. De basisfolder is de werkplaats.
diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_pt_BR.html b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_pt_BR.html index 815753d97d25..09cde5b86dcf 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_pt_BR.html +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_pt_BR.html @@ -1,5 +1,5 @@
Pode usar caracteres coringas como em 'module/dist/**/*.zip'. - Veja o Fileset @includes do Ant para o formato exato. + Veja o Fileset @includes do Ant para o formato exato. O diret�rio base � o workspace.
diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_ru.html b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_ru.html index 8054371a3e0f..81480ccf735d 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_ru.html +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_ru.html @@ -1,6 +1,6 @@
Вы можете использовать шаблоны, например, 'module/dist/**/*.zip'. - Подробнее смотрите + Подробнее смотрите @includes для наборов файлов Ant. Базовой директорией для шаблонов является рабочая директория.
diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_zh_TW.html b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_zh_TW.html index 73889f3da11a..e5c76e5da261 100644 --- a/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_zh_TW.html +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/help-targets_zh_TW.html @@ -1,5 +1,5 @@
可以像 "module/dist/**/*.zip" 這樣使用萬用字元。 - 確切格式可以參考 Ant fileset 的 @includes。 + 確切格式可以參考 Ant fileset 的 @includes。 工作目錄就是工作區目錄
diff --git a/core/src/main/resources/hudson/tasks/Maven/help-settings.html b/core/src/main/resources/hudson/tasks/Maven/help-settings.html index f60c52eb7ee1..216e07a559cd 100644 --- a/core/src/main/resources/hudson/tasks/Maven/help-settings.html +++ b/core/src/main/resources/hudson/tasks/Maven/help-settings.html @@ -16,5 +16,5 @@ referred to as user settings. If both files exists, their contents gets merged, with the user-specific settings.xml being dominant.

- see also: settings.xml reference + see also: settings.xml reference

\ No newline at end of file diff --git a/core/src/main/resources/hudson/tasks/Maven/help-settings_bg.html b/core/src/main/resources/hudson/tasks/Maven/help-settings_bg.html index d7068029ea73..f0fdc5000aac 100644 --- a/core/src/main/resources/hudson/tasks/Maven/help-settings_bg.html +++ b/core/src/main/resources/hudson/tasks/Maven/help-settings_bg.html @@ -15,6 +15,6 @@ Първото е мястото на глобалните настройки, а второто са настройките за отделен потребител. Ако и двата файла съществуват, те се четат и сливат, като потребителските настройки са с приоритет.

- За повече информация вижте settings.xml + За повече информация вижте settings.xml документацията.

diff --git a/core/src/main/resources/hudson/tasks/Maven/help-settings_it.html b/core/src/main/resources/hudson/tasks/Maven/help-settings_it.html index 2728c5a4a35a..0d965ad333d8 100644 --- a/core/src/main/resources/hudson/tasks/Maven/help-settings_it.html +++ b/core/src/main/resources/hudson/tasks/Maven/help-settings_it.html @@ -21,5 +21,5 @@ uniti e prevarranno le impostazioni del file settings.xml dell'utente.

- Si veda anche: Informazioni di riferimento settings.xml + Si veda anche: Informazioni di riferimento settings.xml

diff --git a/core/src/main/resources/hudson/tasks/Maven/help-settings_zh_TW.html b/core/src/main/resources/hudson/tasks/Maven/help-settings_zh_TW.html index a46db3f653a3..523dac44e517 100644 --- a/core/src/main/resources/hudson/tasks/Maven/help-settings_zh_TW.html +++ b/core/src/main/resources/hudson/tasks/Maven/help-settings_zh_TW.html @@ -13,5 +13,5 @@ 第一個 settings.xml 也叫做全域設定,後面那個叫做使用者設定。 兩者同時存在時,內容會合併,但以使用者自定的 settings.xml 為準。

- 請參考: settings.xml 參考資料 + 請參考: settings.xml 參考資料

\ No newline at end of file diff --git a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index.properties b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index.properties index 6abcaf9ef33a..cb904322d9aa 100644 --- a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index.properties +++ b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index.properties @@ -23,4 +23,4 @@ errorMessage=\ We detected that your JVM is not supported by Jenkins. \ This is due to the limitation is one of the libraries that Jenkins uses, namely XStream. \ - See this FAQ for more details. + See this FAQ for more details. diff --git a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_bg.properties b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_bg.properties index 870a017c5dd2..3850810fedd2 100644 --- a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_bg.properties +++ b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_bg.properties @@ -33,12 +33,12 @@ OS\ Name=\ # \ # We detected that your JVM is not supported by Jenkins. \ # This is due to the limitation is one of the libraries that Jenkins uses, namely XStream. \ -# See this FAQ for more details. +# See this FAQ for more details. errorMessage=\ \u0412\u0430\u0448\u0430\u0442\u0430 \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u043d\u0430\u0442\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 \u0437\u0430 Java \u043d\u0435 \u0441\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430 \u043e\u0442 Jenkins. \u0422\u043e\u0432\u0430 \u0435\ \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u0432 \u0435\u0434\u043d\u0430 \u043e\u0442 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e Jenkins \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 \u2014 XStream. \u0417\u0430\ \u043f\u043e\u0432\u0435\u0447\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u0439\u0442\u0435\ - \u043e\u0442\u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0435 \u043d\u0430 \u0447\u0435\u0441\u0442\u043e \u0437\u0430\u0434\u0430\u0432\u0430\u043d\u0438\u0442\u0435\ + \u043e\u0442\u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0435 \u043d\u0430 \u0447\u0435\u0441\u0442\u043e \u0437\u0430\u0434\u0430\u0432\u0430\u043d\u0438\u0442\u0435\ \u0432\u044a\u043f\u0440\u043e\u0441\u0438 \u0437\u0430 XStream. Version=\ \u0412\u0435\u0440\u0441\u0438\u044f diff --git a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_de.properties b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_de.properties index 5b55c0c15ebf..e21183d21645 100644 --- a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_de.properties +++ b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_de.properties @@ -30,4 +30,4 @@ errorMessage=\ Die gefundene Java Virtual Machine (JVM) wird von Jenkins nicht untersttzt. \ Jenkins ist auf die Bibliothek XStream angewiesen, welche aber nicht mit der \ gefundenen JVM funktioniert. \ - Mehr dazu... + Mehr dazu... diff --git a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_es.properties b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_es.properties index 2b820813429d..0ad5b97211cd 100644 --- a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_es.properties +++ b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_es.properties @@ -22,7 +22,7 @@ errorMessage=\ Se ha detectado que tu versin de java no est soportada por Jenkins.\ - Echa un vistazo a esta FAQ para mas detalles. + Echa un vistazo a esta FAQ para mas detalles. Error=Error VM\ Name=Nombre de la mquina virtual Version=Versin diff --git a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_it.properties b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_it.properties index da9d7196e0ff..923e46f460ab 100644 --- a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_it.properties +++ b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_it.properties @@ -26,7 +26,7 @@ Error=Errore errorMessage=Jenkins ha rilevato che la JVM in uso non supportata da \ Jenkins. Ci dovuto alla limitazione introdotta da una libreria \ utilizzata da Jenkins, ossia XStream. Si veda \ - questa domanda frequente \ + questa domanda frequente \ per ulteriori dettagli. OS\ Name=Nome sistema operativo Vendor=Fornitore diff --git a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_ja.properties b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_ja.properties index 71bedd523d84..c68e40bb5cc8 100644 --- a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_ja.properties +++ b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_ja.properties @@ -24,7 +24,7 @@ Error=\u30A8\u30E9\u30FC errorMessage=\ Jenkins\u304C\u30B5\u30DD\u30FC\u30C8\u3057\u3066\u3044\u306A\u3044JVM\u304C\u4F7F\u308F\u308C\u3066\u3044\u308B\u3088\u3046\u3067\u3059\u3002\ \u3053\u306E\u5236\u9650\u306F\u3001Jenkins\u304C\u4F7F\u7528\u3057\u3066\u3044\u308BXStream\u306B\u3088\u308B\u3082\u306E\u3067\u3059\u3002\ - \u8A73\u7D30\u306F\u3001\u3053\u306EFAQ\u3092\u53C2\u7167\u3057\u3066\u304F\u3060\u3055\u3044\u3002 + \u8A73\u7D30\u306F\u3001\u3053\u306EFAQ\u3092\u53C2\u7167\u3057\u3066\u304F\u3060\u3055\u3044\u3002 Detected\ JVM=JVM Vendor=\u30D9\u30F3\u30C0\u30FC Version=\u30D0\u30FC\u30B8\u30E7\u30F3 diff --git a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_pt_BR.properties b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_pt_BR.properties index 6dd7cd3ce2a5..e0629c213a61 100644 --- a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_pt_BR.properties +++ b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_pt_BR.properties @@ -25,10 +25,10 @@ Detected\ JVM=JVM detectada # \ # We detected that your JVM is not supported by Jenkins. \ # This is due to the limitation is one of the libraries that Jenkins uses, namely XStream. \ -# See this FAQ for more details. +# See this FAQ for more details. errorMessage=N\u00f3s detectamos que o Jenkins n\u00e3o suporta sua JVM. \ Isto se d\u00e1 devido a uma limita\u00e7\u00e3o na biblioteca do Huson, chamada XStream. \ - Veja essa FAQ para mais detalhes. + Veja essa FAQ para mais detalhes. Version=Vers\u00e3o Vendor=Fornecedor Error=Erro diff --git a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_sr.properties b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_sr.properties index c969814074ec..10c8830baf72 100644 --- a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_sr.properties +++ b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_sr.properties @@ -2,7 +2,7 @@ Error=\u0413\u0440\u0435\u0448\u043A\u0430 errorMessage=Jenkins \u0458\u0435 \u043F\u0440\u043E\u043D\u0430\u0448\u0430\u043E \u0434\u0430 \u0432\u0430\u0448\u0430 JVM \u043D\u0438\u0458\u0435 \u043F\u043E\u0434\u0440\u0436\u0430\u043D\u0430, \u0437\u0431\u043E\u0433 \u043D\u0435\u043A\u0438\u0445 \u0431\u0438\u0431\u043B\u0438\u043E\u0442\u0435\u043A\u0430 \u043E\u0434 \u043A\u043E\u0458\u0435 Jenkins \u0437\u0430\u0432\u0438\u0441\u0438.\ -\u041F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 this FAQ \u0433\u0434\u0435 \u0438\u043C\u0430 \u0432\u0438\u043F\u0435 \u0434\u0435\u0442\u0430\u0459\u0430. +\u041F\u0440\u0435\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 this FAQ \u0433\u0434\u0435 \u0438\u043C\u0430 \u0432\u0438\u043F\u0435 \u0434\u0435\u0442\u0430\u0459\u0430. Detected\ JVM= Vendor=\u041F\u0440\u043E\u0438\u0437\u0432\u043E\u0452\u0430\u0447 Version=\u0412\u0435\u0440\u0437\u0438\u0458\u0430 diff --git a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_zh_TW.properties b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_zh_TW.properties index 5ed9dfc4f68d..2eeaf69bf5a5 100644 --- a/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_zh_TW.properties +++ b/core/src/main/resources/hudson/util/IncompatibleVMDetected/index_zh_TW.properties @@ -24,7 +24,7 @@ Error=\u932f\u8aa4 errorMessage=\ Jenkins \u4e0d\u652f\u63f4\u60a8\u7684 JVM\u3002\ \u9019\u662f Jenkins \u4f7f\u7528\u5230\u7684 XStream \u51fd\u5f0f\u5eab\u7684\u9650\u5236\u3002\ - \u8a73\u7d30\u8cc7\u6599\u8acb\u53c3\u8003 XStream \u7684 FAQ\u3002 + \u8a73\u7d30\u8cc7\u6599\u8acb\u53c3\u8003 XStream \u7684 FAQ\u3002 Detected\ JVM=\u5075\u6e2c\u5230\u7684 JVM Vendor=\u4f9b\u61c9\u5546 Version=\u7248\u672c diff --git a/docs/MAINTAINERS.adoc b/docs/MAINTAINERS.adoc index db4df3c7794c..0caa9a870953 100644 --- a/docs/MAINTAINERS.adoc +++ b/docs/MAINTAINERS.adoc @@ -119,7 +119,7 @@ We're aware that there are existing inconsistencies in the code, and we do not enforce a single code style across the codebase at the moment. * New code should follow the (majority) style guide. - In Jenkins core we use the link:https://www.oracle.com/technetwork/java/codeconvtoc-136057.html[these Code Conventions for the Java TM Programming Language] as a default code style + In Jenkins core we use the link:https://www.oracle.com/java/technologies/javase/codeconventions-contents.html[these Code Conventions for the Java TM Programming Language] as a default code style * Updates to existing code should only fix formatting on the lines affected anyway to keep the diff minimal. It helps reviewers focus their attention on the specifics of the change and reduces the risk of a change from one pull request creating a conflict in another pull request. diff --git a/licenseCompleter.groovy b/licenseCompleter.groovy index 21c78e8f72d7..5f58a11defdb 100644 --- a/licenseCompleter.groovy +++ b/licenseCompleter.groovy @@ -45,7 +45,7 @@ complete { } match(["org.jenkins-ci.groovy:*"]) { - // see http://groovy.codehaus.org/License+Information + // see https://groovy-lang.org/faq.html // see http://jmdns.sourceforge.net/license.html rewriteLicense([],apacheLicense) }