diff --git a/core/src/main/java/hudson/model/ParametersDefinitionProperty.java b/core/src/main/java/hudson/model/ParametersDefinitionProperty.java index 27b1aa49bb19..66a70047e89d 100644 --- a/core/src/main/java/hudson/model/ParametersDefinitionProperty.java +++ b/core/src/main/java/hudson/model/ParametersDefinitionProperty.java @@ -34,6 +34,7 @@ import hudson.Util; import hudson.model.Queue.WaitingItem; import hudson.model.queue.ScheduleResult; +import hudson.util.AlternativeUiTextProvider; import java.io.IOException; import java.util.AbstractList; import java.util.ArrayList; @@ -72,6 +73,8 @@ public class ParametersDefinitionProperty extends OptionalJobProperty> implements Action { + public static final AlternativeUiTextProvider.Message BUILD_BUTTON_TEXT = new AlternativeUiTextProvider.Message<>(); + private final List parameterDefinitions; @DataBoundConstructor @@ -87,6 +90,11 @@ private Object readResolve() { return parameterDefinitions == null ? new ParametersDefinitionProperty() : this; } + + public final String getBuildButtonText() { + return AlternativeUiTextProvider.get(BUILD_BUTTON_TEXT, owner, Messages.ParametersDefinitionProperty_BuildButtonText()); + } + @Deprecated public AbstractProject getOwner() { return (AbstractProject) owner; diff --git a/core/src/main/java/jenkins/model/ParameterizedJobMixIn.java b/core/src/main/java/jenkins/model/ParameterizedJobMixIn.java index ab70700ac112..be71a97c7379 100644 --- a/core/src/main/java/jenkins/model/ParameterizedJobMixIn.java +++ b/core/src/main/java/jenkins/model/ParameterizedJobMixIn.java @@ -288,12 +288,14 @@ public static CauseAction getBuildCause(ParameterizedJob job, StaplerRequest req * @since 1.624 */ public static final AlternativeUiTextProvider.Message BUILD_NOW_TEXT = new AlternativeUiTextProvider.Message<>(); + public static final AlternativeUiTextProvider.Message BUILD_WITH_PARAMETERS_TEXT = new AlternativeUiTextProvider.Message<>(); /** * Suggested implementation of {@link ParameterizedJob#getBuildNowText}. */ public final String getBuildNowText() { - return isParameterized() ? AlternativeUiTextProvider.get(BUILD_NOW_TEXT, asJob(), Messages.ParameterizedJobMixIn_build_with_parameters()) + return isParameterized() ? AlternativeUiTextProvider.get(BUILD_WITH_PARAMETERS_TEXT, asJob(), + AlternativeUiTextProvider.get(BUILD_NOW_TEXT, asJob(), Messages.ParameterizedJobMixIn_build_with_parameters())) : AlternativeUiTextProvider.get(BUILD_NOW_TEXT, asJob(), Messages.ParameterizedJobMixIn_build_now()); } diff --git a/core/src/main/resources/hudson/model/Messages.properties b/core/src/main/resources/hudson/model/Messages.properties index ebe77e965edc..c6e48911de7c 100644 --- a/core/src/main/resources/hudson/model/Messages.properties +++ b/core/src/main/resources/hudson/model/Messages.properties @@ -199,6 +199,7 @@ LabelExpression.NoMatch=No agent/cloud matches this label expression. LabelExpression.NoMatch_DidYouMean=No agent/cloud matches this label expression. Did you mean ‘{1}’ instead of ‘{0}’? ManageJenkinsAction.DisplayName=Manage Jenkins MultiStageTimeSeries.EMPTY_STRING= +ParametersDefinitionProperty.BuildButtonText=Build Queue.AllNodesOffline=All nodes of label ‘{0}’ are offline Queue.LabelHasNoNodes=There are no nodes with the label ‘{0}’ Queue.BlockedBy=Blocked by ‘{0}’ diff --git a/core/src/main/resources/hudson/model/Messages_bg.properties b/core/src/main/resources/hudson/model/Messages_bg.properties index 9e1eb7b0b968..42a23b5d8af1 100644 --- a/core/src/main/resources/hudson/model/Messages_bg.properties +++ b/core/src/main/resources/hudson/model/Messages_bg.properties @@ -724,3 +724,5 @@ AbstractItem.BeingDeleted=\ # {0} has been removed from configuration Queue.node_has_been_removed_from_configuration=\ „{0}“ е изтрит от настройките +ParametersDefinitionProperty.BuildButtonText=Изграждане + diff --git a/core/src/main/resources/hudson/model/Messages_da.properties b/core/src/main/resources/hudson/model/Messages_da.properties index a3d96a3993e8..c4818f58b170 100644 --- a/core/src/main/resources/hudson/model/Messages_da.properties +++ b/core/src/main/resources/hudson/model/Messages_da.properties @@ -218,3 +218,4 @@ ManageJenkinsAction.DisplayName=Bestyr Jenkins ParametersDefinitionProperty.DisplayName=Dette byg er parameteriseret AbstractItem.NewNameInUse=Navnet {0} er allerede i brug Job.NoRenameWhileBuilding=Kan ikke omdøbe et job imens det bygger +ParametersDefinitionProperty.BuildButtonText=Byg diff --git a/core/src/main/resources/hudson/model/Messages_es.properties b/core/src/main/resources/hudson/model/Messages_es.properties index 3037740893a2..881ee8c98c7e 100644 --- a/core/src/main/resources/hudson/model/Messages_es.properties +++ b/core/src/main/resources/hudson/model/Messages_es.properties @@ -301,3 +301,4 @@ Computer.ConnectPermission.Description=Este permiso permite que los usuarios pue BallColor.NotBuilt=Sin ejecutar. AbstractBuild_Building=Ejecutando. ParametersDefinitionProperty.DisplayName=Esta ejecución debe parametrizarse +ParametersDefinitionProperty.BuildButtonText=Ejecución diff --git a/core/src/main/resources/hudson/model/Messages_et.properties b/core/src/main/resources/hudson/model/Messages_et.properties index c3c4fbbfb5af..72f77a12ac0c 100644 --- a/core/src/main/resources/hudson/model/Messages_et.properties +++ b/core/src/main/resources/hudson/model/Messages_et.properties @@ -1 +1,2 @@ FreeStyleProject.Description=See on Jenkinsi põhifunktsioon! Jenkins ehitab su projekti, kombineerides sinu versioonihalduse mistahes ehitusprotsessiga. Sa võid seda kasutada ka muudeks asjadeks kui tarkvara ehitamine. +ParametersDefinitionProperty.BuildButtonText=Bild diff --git a/core/src/main/resources/hudson/model/Messages_it.properties b/core/src/main/resources/hudson/model/Messages_it.properties index 63a9962e8ec9..594c10afac37 100644 --- a/core/src/main/resources/hudson/model/Messages_it.properties +++ b/core/src/main/resources/hudson/model/Messages_it.properties @@ -457,3 +457,4 @@ View.Permissions.Title=Visualizza View.ReadPermission.Description=Questo permesso consente agli utenti di \ visualizzare le viste (è implicito se si dispone dell''accesso generico in \ lettura). +ParametersDefinitionProperty.BuildButtonText=Compilazione diff --git a/core/src/main/resources/hudson/model/Messages_ja.properties b/core/src/main/resources/hudson/model/Messages_ja.properties index 709195b8df23..3fc987f24017 100644 --- a/core/src/main/resources/hudson/model/Messages_ja.properties +++ b/core/src/main/resources/hudson/model/Messages_ja.properties @@ -308,3 +308,4 @@ TimeZoneProperty.DisplayName=ユーザー設定タイムゾーン TimeZoneProperty.DisplayDefaultTimeZone=デフォルト TimeZoneProperty.current_time_in_=現在の設定 {0}: {1} TimeZoneProperty.current_time_on_server_in_in_proposed_di=現在のサーバー時刻 {0}: {1}; 表示するゾーン: {2} +ParametersDefinitionProperty.BuildButtonText=ビルド diff --git a/core/src/main/resources/hudson/model/Messages_ko.properties b/core/src/main/resources/hudson/model/Messages_ko.properties index 90b49c67d923..1b1194608e72 100644 --- a/core/src/main/resources/hudson/model/Messages_ko.properties +++ b/core/src/main/resources/hudson/model/Messages_ko.properties @@ -2,3 +2,4 @@ ManageJenkinsAction.DisplayName=Jenkins 관리 ParametersDefinitionProperty.DisplayName=이 빌드는 매개변수가 있습니다 FreeStyleProject.Description=이것은 Jenkins의 주요 기능입니다. Jenkins은 어느 빌드 시스템과 어떤 SCM(형상관리)으로 묶인 당신의 프로젝트를 빌드할 것이고, 소프트웨어 빌드보다 다른 어떤 것에 자주 사용될 수 있습니다. +ParametersDefinitionProperty.BuildButtonText=매개변수가 필요한 빌드입니다. diff --git a/core/src/main/resources/hudson/model/Messages_nl.properties b/core/src/main/resources/hudson/model/Messages_nl.properties index c58b39df6ee0..2e81c05617b4 100644 --- a/core/src/main/resources/hudson/model/Messages_nl.properties +++ b/core/src/main/resources/hudson/model/Messages_nl.properties @@ -94,3 +94,4 @@ Permalink.LastSuccessfulBuild=Laatste succesvolle bouwpoging Permalink.LastFailedBuild=Laatst gefaalde bouwpoging ManageJenkinsAction.DisplayName=Beheer Jenkins ParametersDefinitionProperty.DisplayName=Deze bouwpoging is geparametriseerd +ParametersDefinitionProperty.BuildButtonText=Bouwen diff --git a/core/src/main/resources/hudson/model/Messages_pl.properties b/core/src/main/resources/hudson/model/Messages_pl.properties index 60ddeb423a2a..a9d2c94080d5 100644 --- a/core/src/main/resources/hudson/model/Messages_pl.properties +++ b/core/src/main/resources/hudson/model/Messages_pl.properties @@ -97,3 +97,4 @@ ManagementLink.Category.TROUBLESHOOTING=Rozwiązywanie problemów ManagementLink.Category.TOOLS=Narzędzia i akcje ManagementLink.Category.MISC=Inne ManagementLink.Category.UNCATEGORIZED=Nieskategoryzowane +ParametersDefinitionProperty.BuildButtonText=Buduj diff --git a/core/src/main/resources/hudson/model/Messages_pt_BR.properties b/core/src/main/resources/hudson/model/Messages_pt_BR.properties index 70f756a9a09d..c7dbe7f6adde 100644 --- a/core/src/main/resources/hudson/model/Messages_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Messages_pt_BR.properties @@ -397,3 +397,4 @@ UpdateCenter.PluginCategory.cloud=Provedores de nuvem LoadStatistics.Legends.AvailableExecutors=Executores disponíveis Slave.UnixSlave=Este é um agente Unix Build.post_build_steps_failed=Passos pós-construção falharam +ParametersDefinitionProperty.BuildButtonText=Construir diff --git a/core/src/main/resources/hudson/model/Messages_ru.properties b/core/src/main/resources/hudson/model/Messages_ru.properties index 8887a66d2631..2217b2289be5 100644 --- a/core/src/main/resources/hudson/model/Messages_ru.properties +++ b/core/src/main/resources/hudson/model/Messages_ru.properties @@ -123,4 +123,5 @@ ParameterAction.DisplayName=Параметры ParametersDefinitionProperty.DisplayName=Это - параметризованная сборка ChoiceParameterDefinition.MissingChoices=Варианты обязательны. -UpdateCenter.CoreUpdateMonitor.DisplayName=Оповещение об обновлении Jenkins \ No newline at end of file +UpdateCenter.CoreUpdateMonitor.DisplayName=Оповещение об обновлении Jenkins +ParametersDefinitionProperty.BuildButtonText=Собрать \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/Messages_sk.properties b/core/src/main/resources/hudson/model/Messages_sk.properties index 7e778d113167..f1f84e095b59 100644 --- a/core/src/main/resources/hudson/model/Messages_sk.properties +++ b/core/src/main/resources/hudson/model/Messages_sk.properties @@ -1 +1,2 @@ ParametersDefinitionProperty.DisplayName=Toto zostavenie je parametrizované +ParametersDefinitionProperty.BuildButtonText=Zostav diff --git a/core/src/main/resources/hudson/model/Messages_sr.properties b/core/src/main/resources/hudson/model/Messages_sr.properties index 31b872a8ccf0..fe5ca1b3adba 100644 --- a/core/src/main/resources/hudson/model/Messages_sr.properties +++ b/core/src/main/resources/hudson/model/Messages_sr.properties @@ -286,3 +286,4 @@ CLI.disconnect-node.shortDescription=Прекини везу са машином CLI.connect-node.shortDescription=Повежи са машином CLI.offline-node.shortDescription= Hudson.NotADirectory={0} није директоријум +ParametersDefinitionProperty.BuildButtonText=Изградња diff --git a/core/src/main/resources/hudson/model/Messages_sv_SE.properties b/core/src/main/resources/hudson/model/Messages_sv_SE.properties index fa2c305e9b89..eae53e2bafe4 100644 --- a/core/src/main/resources/hudson/model/Messages_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Messages_sv_SE.properties @@ -7,3 +7,4 @@ ManageJenkinsAction.DisplayName=Hantera Jenkins ParametersDefinitionProperty.DisplayName=Detta bygge är parametriserat FreeStyleProject.Description=Detta är en central del i Jenkins. Jenkins kommer att bygga ditt projekt med valfri versionshanterare och med vilket byggsystem som helst, och detta kan även användas för något annat än mjukvarubyggen. +ParametersDefinitionProperty.BuildButtonText=Bygg diff --git a/core/src/main/resources/hudson/model/Messages_tr.properties b/core/src/main/resources/hudson/model/Messages_tr.properties index af308cf8f4fd..0cd0dfd8d03a 100644 --- a/core/src/main/resources/hudson/model/Messages_tr.properties +++ b/core/src/main/resources/hudson/model/Messages_tr.properties @@ -111,3 +111,4 @@ ManagementLink.Category.TROUBLESHOOTING=Sorun Giderme ManagementLink.Category.TOOLS=Araçlar ve Aksiyonlar ManagementLink.Category.MISC=Diğer ManagementLink.Category.UNCATEGORIZED=Sınıflandırılmamış +ParametersDefinitionProperty.BuildButtonText=Yapılandırma diff --git a/core/src/main/resources/hudson/model/Messages_zh_TW.properties b/core/src/main/resources/hudson/model/Messages_zh_TW.properties index a87d2b59afb5..04c6a60ca31e 100644 --- a/core/src/main/resources/hudson/model/Messages_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Messages_zh_TW.properties @@ -294,3 +294,4 @@ Jenkins.CheckDisplayName.DisplayNameNotUniqueWarning=已經有作業的顯示名 Jenkins.NotAllowedName="{0}" 並不是可以使用的名稱 ParametersDefinitionProperty.DisplayName=參數化建置 +ParametersDefinitionProperty.BuildButtonText=建置 diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index.jelly b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index.jelly index 46217280ffb1..1302960c1afc 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index.jelly +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index.jelly @@ -64,7 +64,7 @@ THE SOFTWARE. ${%Cancel} diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_bg.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_bg.properties index 1251d0486aa0..b0424399a344 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_bg.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_bg.properties @@ -23,7 +23,5 @@ # This build requires parameters: description=\ Това изграждане изисква параметри: -Build=\ - Изграждане LOADING=\ ЗАРЕЖДАНЕ diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_da.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_da.properties index 18f85365a597..75e1a5b2107b 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_da.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_da.properties @@ -20,5 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Byg description=Dette byg kræver parametre: 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 1303bd4374db..2df7cfa34635 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_de.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_de.properties @@ -1,3 +1,2 @@ LOADING=LADE DATEN description=Dieser Build erfordert Parameter: -Build=Build 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 a39e4ae6d93b..68de1058c631 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_es.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_es.properties @@ -21,5 +21,4 @@ # THE SOFTWARE. description=Esta ejecución requiere parámetros adicionales: -Build=Ejecución LOADING=CARGANDO diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_et.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_et.properties index 20d2a0ce42c8..fadb8cc9e19f 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_et.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_et.properties @@ -1,5 +1,4 @@ # 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/ParametersDefinitionProperty/index_fr.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_fr.properties index e7e88ed2b282..b454ec735c65 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_fr.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_fr.properties @@ -21,5 +21,4 @@ # THE SOFTWARE. description=Ce build nécessite des paramètres : -Build=Build LOADING=CHARGEMENT diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_it.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_it.properties index 01e8b2e60f68..47b5e5ca8ea8 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_it.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_it.properties @@ -21,6 +21,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Compilazione description=Questa compilazione richiede dei parametri: LOADING=Caricamento in corso diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ja.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ja.properties index c20e0f901614..df9f0d64a82a 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ja.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ja.properties @@ -21,5 +21,4 @@ # THE SOFTWARE. description=このビルドはパラメータが必要です。 -Build=ビルド LOADING=ロード中 diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ko.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ko.properties index e2cbe89ab155..3da199497d4d 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ko.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ko.properties @@ -20,6 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=빌드하기 LOADING=여는 중 description=매개변수가 필요한 빌드입니다. diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_nl.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_nl.properties index 4b74b1c58358..a517b0697bba 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_nl.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_nl.properties @@ -1,4 +1,3 @@ # 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/ParametersDefinitionProperty/index_pl.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_pl.properties index 38518c3a3ca7..7c914ba7dcb3 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_pl.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_pl.properties @@ -20,6 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Buduj LOADING=ŁADOWANIE description=To zadanie wymaga parametrów: diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_pt_BR.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_pt_BR.properties index 5259e7c068bc..725a2d4dedb8 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 @@ -23,4 +23,3 @@ LOADING=CARREGANDO description=Esta construção requer parâmetros: -Build=Construir diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ru.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ru.properties index dab4bc5e690d..e21db465391a 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ru.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ru.properties @@ -1,5 +1,4 @@ # This file is under the MIT License by authors -Build=Собрать LOADING=ЗАГРУЗКА description=Для этой сборки необходимы следующие параметры: diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sk.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sk.properties index dba7efb93a01..df6261b1a000 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,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=Zostav description=Toto zostavenie vyžaduje parametre: diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sr.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sr.properties index ddc4c76c730e..c6853f6aaa70 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sr.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sr.properties @@ -2,4 +2,3 @@ LOADING=УЧИТАВАЊЕ description=Ова изградња захтева параметре: -Build=Изградња diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sv_SE.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sv_SE.properties index de74342e7b1a..23598ba89fe7 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sv_SE.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sv_SE.properties @@ -1,5 +1,4 @@ # This file is under the MIT License by authors -Build=Bygg LOADING=LADDAR description=Det här bygget kräver parametrar: diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_tr.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_tr.properties index dbfafb4fb861..afc60f285104 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_tr.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_tr.properties @@ -21,4 +21,3 @@ # THE SOFTWARE. description=tanım -Build=Yapılandırma diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_zh_TW.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_zh_TW.properties index 611fafc2676d..6511ec0b83bd 100644 --- a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_zh_TW.properties @@ -22,4 +22,3 @@ LOADING=載入中 description=這項建置需要參數: -Build=建置