diff --git a/changelog.html b/changelog.html index 1d0a1c0fb5d439bcaf0996aaefebd0e14b43a23f..a2ac7502b75a1db4046be89591861651169d17b5 100644 --- a/changelog.html +++ b/changelog.html @@ -55,7 +55,9 @@ Upcoming changes diff --git a/core/src/main/java/hudson/matrix/MatrixConfiguration.java b/core/src/main/java/hudson/matrix/MatrixConfiguration.java index 5fc397a871c8f1d3159fb2c02d5dd1d533002ad6..bf3d45016068c975049b46b911c10d6984c01017 100644 --- a/core/src/main/java/hudson/matrix/MatrixConfiguration.java +++ b/core/src/main/java/hudson/matrix/MatrixConfiguration.java @@ -344,4 +344,10 @@ public class MatrixConfiguration extends Project public boolean scheduleBuild(ParametersAction parameters, Cause c) { return Jenkins.getInstance().getQueue().schedule(this, getQuietPeriod(), parameters, new CauseAction(c))!=null; } + + @Override + public boolean supportsMakeDisabled() { + return false; + } + } diff --git a/core/src/main/java/hudson/model/AbstractProject.java b/core/src/main/java/hudson/model/AbstractProject.java index d4a04bcd6c96f12350feada10ee9d7fdeb13016b..60135cf83278505da2929b95bb7df46e0d425556 100644 --- a/core/src/main/java/hudson/model/AbstractProject.java +++ b/core/src/main/java/hudson/model/AbstractProject.java @@ -620,6 +620,17 @@ public abstract class AbstractProject

,R extends A save(); } + /** + * Specifies whether this project may be disabled by the user. + * By default, it can, but specialized project types contained in another + * (such as Maven modules or matrix configurations) should return false. + * @return true if the GUI should allow {@link #doDisable} and the like + * @since 1.475 + */ + public boolean supportsMakeDisabled() { + return true; + } + public void disable() throws IOException { makeDisabled(true); } diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index.jelly b/core/src/main/resources/hudson/matrix/MatrixProject/index.jelly index ca4fa481bfc636ed3e23135f3a45a912ec2f179c..bce8fd9f7c32925d55f6c9622c69cc0abfb285dc 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/index.jelly +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index.jelly @@ -33,27 +33,7 @@ THE SOFTWARE. - - -

-
- ${%This project is currently disabled} - - - -
-
- - -
-
- - - -
-
-
- + diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_cs.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_cs.properties index 1894df2ccc30fbd2c87c7b9bfa418801f429ca68..4573f3b5cbfdbc2ab613786c2d79c38cd0dc0d1f 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/index_cs.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_cs.properties @@ -20,5 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Vypnout projekt Project=Projekt diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_da.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_da.properties index 3ffe407a4243c339c491ddc8a219f1bcefb602ca..9bfa608f1ab0a6de052257254b44548833273ee4 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/index_da.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_da.properties @@ -20,6 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -This\ project\ is\ currently\ disabled=Dette projekt er for nuv\u00e6rende sl\u00e5et fra -Enable=Sl\u00e5 til Project=Projekt diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_de.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_de.properties index 8c58827bcbd967178c399872b0ac09fd3784c7bc..73239c6e6cc9998f177f7c8519a540f118461208 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/index_de.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_de.properties @@ -22,6 +22,3 @@ Latest\ Test\ Result=Aktuelle Testergebnisse Project=Projekt -Enable=Aktivieren -This\ project\ is\ currently\ disabled=Dieses Projekt ist momentan deaktiviert. -Disable\ Project=Projekt deaktivieren 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 26d60c8d29712502d7ed3175ce54624c6a319fec..d43eca3ec7f04a85bfa3fd1b2cf503a421809567 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/index_es.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_es.properties @@ -21,8 +21,5 @@ # THE SOFTWARE. Project=Proyecto -Disable\ Project=Desactivar el proyecto -This\ project\ is\ currently\ disabled=Este proyecto está desactivado -Enable=Activar -Latest\ Test\ Result=Último resultado de test +Latest\ Test\ Result=\u00daltimo resultado de test Project\ name=Nombre de proyecto diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_fi.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_fi.properties index 5dda8a2c809a8cb9f7d2d42c7642d1a284cb4637..51ce9039c36ba450361b0886b9174da7ca49d660 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/index_fi.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_fi.properties @@ -20,5 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Poista k\u00E4yt\u00F6st\u00E4 Project=Projekti diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_fr.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_fr.properties index 684d982824f02e2ce16608f318eef92766e95ae6..d15386b6e4580dce374136206c3b1fce43e9bc9a 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/index_fr.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_fr.properties @@ -20,8 +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 -Enable=Activer -Latest\ Test\ Result=Derniers r\u00E9sultats de test +Latest\ Test\ Result=Derniers r\u00e9sultats de test Project=projet -This\ project\ is\ currently\ disabled=Ce projet est d\u00E9sactiv\u00E9 diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_it.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_it.properties index 584522e9d9ef081f2e530a775d75c298df70e4d5..56dfbc43285375e2d1bde0d410b70ca69c4c025c 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/index_it.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_it.properties @@ -20,5 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Disabilita Progetto Project=Progetto diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_ja.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_ja.properties index 8aa689f142363c781f2c9001bcc6117e447d255f..abeaad85da52607bfddeb50fa1a45592c7f012d4 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/index_ja.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_ja.properties @@ -21,8 +21,5 @@ # THE SOFTWARE. Project=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8 -This\ project\ is\ currently\ disabled=\u73fe\u5728\u3001\u3053\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306f\u7121\u52b9\u3067\u3059\u3002 -Enable=\u6709\u52b9\u5316 -Disable\ Project=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u7121\u52b9\u5316 Project\ name=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u540d Latest\ Test\ Result=\u6700\u65b0\u306e\u30c6\u30b9\u30c8\u7d50\u679c \ No newline at end of file diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_pl.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_pl.properties index 34a071fceba81bc06ab614b3ca37667101d6fa8a..4573f3b5cbfdbc2ab613786c2d79c38cd0dc0d1f 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/index_pl.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_pl.properties @@ -20,7 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Wy\u0142\u0105cz projekt -Enable=Aktywuj Project=Projekt -This\ project\ is\ currently\ disabled=Projekt jest nieaktywny 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 ef11e7fdc6d1c02df52e772a43e4640f5a76df8e..72936cca4fe902f58d011aa7b32b724bfda7fa5b 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/index_ru.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_ru.properties @@ -20,7 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=\u041E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u043F\u0440\u043E\u0435\u043A\u0442 -Enable=\u0412\u043A\u043B\u044E\u0447\u0438\u0442\u044C Project=\u041f\u0440\u043e\u0435\u043a\u0442 -This\ project\ is\ currently\ disabled=\u042D\u0442\u043E\u0442 \u043F\u0440\u043E\u0435\u043A\u0442 \u0441\u0435\u0439\u0447\u0430\u0441 \u043E\u0442\u043A\u043B\u044E\u0447\u0435\u043D. diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_zh_CN.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_zh_CN.properties index 795177e375b8aa99d9b4caae6498f9930270813c..bf6222e3bac44e83fdbcd716c03510fddc1e7b9d 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/index_zh_CN.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_zh_CN.properties @@ -20,5 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=\u7981\u7528\u9879\u76EE -Project=\u9879\u76EE +Project=\u9879\u76ee diff --git a/core/src/main/resources/hudson/model/AbstractProject/main.jelly b/core/src/main/resources/hudson/model/AbstractProject/main.jelly index f1f0491973f3ec1092ed51a201c7c056e3e9abcc..ceb1829cc9538c7086fa60c13d1c73e471045416 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main.jelly +++ b/core/src/main/resources/hudson/model/AbstractProject/main.jelly @@ -27,6 +27,10 @@ THE SOFTWARE. + + + + diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled.jelly b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled.jelly new file mode 100644 index 0000000000000000000000000000000000000000..4ee2b119ad8362fe6461420e1bb0062275bd8e7f --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled.jelly @@ -0,0 +1,48 @@ + + + + + + +
+
+ ${%This project is currently disabled} + + + + +
+
+ +
+
+ + + + +
+
+
+
diff --git a/core/src/main/resources/hudson/model/Job/index_bg.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_bg.properties similarity index 100% rename from core/src/main/resources/hudson/model/Job/index_bg.properties rename to core/src/main/resources/hudson/model/AbstractProject/makeDisabled_bg.properties diff --git a/core/src/main/resources/hudson/model/Job/index_ca.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ca.properties similarity index 100% rename from core/src/main/resources/hudson/model/Job/index_ca.properties rename to core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ca.properties diff --git a/core/src/main/resources/hudson/model/Job/index_cs.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_cs.properties similarity index 100% rename from core/src/main/resources/hudson/model/Job/index_cs.properties rename to core/src/main/resources/hudson/model/AbstractProject/makeDisabled_cs.properties diff --git a/core/src/main/resources/hudson/model/Job/index_da.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_da.properties similarity index 100% rename from core/src/main/resources/hudson/model/Job/index_da.properties rename to core/src/main/resources/hudson/model/AbstractProject/makeDisabled_da.properties diff --git a/core/src/main/resources/hudson/model/Job/index_de.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_de.properties similarity index 100% rename from core/src/main/resources/hudson/model/Job/index_de.properties rename to core/src/main/resources/hudson/model/AbstractProject/makeDisabled_de.properties diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_es.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_es.properties new file mode 100644 index 0000000000000000000000000000000000000000..0ad86a2ffa220e72c10cab185014f4a3e5c3bd97 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_es.properties @@ -0,0 +1,25 @@ +# The MIT License +# +# Copyright (c) 2004-2010, Sun Microsystems, Inc. +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +This\ project\ is\ currently\ disabled=Este projecto est\u00e1 desactivado actualmente +Enable=Activar +Disable\ Project=Desactivar el Proyecto diff --git a/core/src/main/resources/hudson/model/Job/index_fi.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_fi.properties similarity index 100% rename from core/src/main/resources/hudson/model/Job/index_fi.properties rename to core/src/main/resources/hudson/model/AbstractProject/makeDisabled_fi.properties diff --git a/core/src/main/resources/hudson/model/Job/index_fr.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_fr.properties similarity index 100% rename from core/src/main/resources/hudson/model/Job/index_fr.properties rename to core/src/main/resources/hudson/model/AbstractProject/makeDisabled_fr.properties diff --git a/core/src/main/resources/hudson/model/Job/index_hu.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_hu.properties similarity index 100% rename from core/src/main/resources/hudson/model/Job/index_hu.properties rename to core/src/main/resources/hudson/model/AbstractProject/makeDisabled_hu.properties diff --git a/core/src/main/resources/hudson/model/Job/index_is.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_is.properties similarity index 100% rename from core/src/main/resources/hudson/model/Job/index_is.properties rename to core/src/main/resources/hudson/model/AbstractProject/makeDisabled_is.properties diff --git a/core/src/main/resources/hudson/model/Job/index_it.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_it.properties similarity index 100% rename from core/src/main/resources/hudson/model/Job/index_it.properties rename to core/src/main/resources/hudson/model/AbstractProject/makeDisabled_it.properties diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ja.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ja.properties new file mode 100644 index 0000000000000000000000000000000000000000..aa39005c601d037aa67ad57f0af4380a7e6fdd55 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ja.properties @@ -0,0 +1,25 @@ +# The MIT License +# +# Copyright (c) 2004-2012, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe, 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. + +This\ project\ is\ currently\ disabled=\u73fe\u5728\u3001\u3053\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306f\u7121\u52b9\u3067\u3059\u3002 +Enable=\u6709\u52b9\u5316 +Disable\ Project=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u7121\u52b9\u5316 diff --git a/core/src/main/resources/hudson/model/Job/index_ko.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ko.properties similarity index 100% rename from core/src/main/resources/hudson/model/Job/index_ko.properties rename to core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ko.properties diff --git a/core/src/main/resources/hudson/model/Job/index_lv.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_lv.properties similarity index 100% rename from core/src/main/resources/hudson/model/Job/index_lv.properties rename to core/src/main/resources/hudson/model/AbstractProject/makeDisabled_lv.properties diff --git a/core/src/main/resources/hudson/model/Job/index_nb_NO.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_nb_NO.properties similarity index 100% rename from core/src/main/resources/hudson/model/Job/index_nb_NO.properties rename to core/src/main/resources/hudson/model/AbstractProject/makeDisabled_nb_NO.properties diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_nl.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_nl.properties new file mode 100644 index 0000000000000000000000000000000000000000..17fd7cee185331c593a31420d4c12bc60bca6bbb --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_nl.properties @@ -0,0 +1,25 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +Disable\ Project=Deactiveer project +Enable=Activeren +This\ project\ is\ currently\ disabled=Dit project is gedeactiveerd diff --git a/core/src/main/resources/hudson/model/Job/index_pl.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_pl.properties similarity index 100% rename from core/src/main/resources/hudson/model/Job/index_pl.properties rename to core/src/main/resources/hudson/model/AbstractProject/makeDisabled_pl.properties diff --git a/core/src/main/resources/hudson/model/Job/index_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_pt_BR.properties similarity index 100% rename from core/src/main/resources/hudson/model/Job/index_pt_BR.properties rename to core/src/main/resources/hudson/model/AbstractProject/makeDisabled_pt_BR.properties diff --git a/core/src/main/resources/hudson/model/Job/index_ro.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ro.properties similarity index 100% rename from core/src/main/resources/hudson/model/Job/index_ro.properties rename to core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ro.properties diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ru.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ru.properties new file mode 100644 index 0000000000000000000000000000000000000000..c29639a04f176dce70ebb57ea7202a6f9bf55535 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_ru.properties @@ -0,0 +1,25 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +Disable\ Project=\u0412\u044b\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442 +Enable=\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c +This\ project\ is\ currently\ disabled=\u042d\u0442\u043e\u0442 \u043f\u0440\u043e\u0435\u043a\u0442 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d diff --git a/core/src/main/resources/hudson/model/Job/index_sk.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_sk.properties similarity index 100% rename from core/src/main/resources/hudson/model/Job/index_sk.properties rename to core/src/main/resources/hudson/model/AbstractProject/makeDisabled_sk.properties diff --git a/core/src/main/resources/hudson/model/Job/index_sv_SE.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_sv_SE.properties similarity index 100% rename from core/src/main/resources/hudson/model/Job/index_sv_SE.properties rename to core/src/main/resources/hudson/model/AbstractProject/makeDisabled_sv_SE.properties diff --git a/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_tr.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_tr.properties new file mode 100644 index 0000000000000000000000000000000000000000..83169532a39414e0c80a0636a6b392126db9ea73 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_tr.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +Disable\ Project=Projeyi devre d\u0131\u015f\u0131 b\u0131rak +This\ project\ is\ currently\ disabled=Bu proje \u015fimdilik devre d\u0131\u015f\u0131 diff --git a/core/src/main/resources/hudson/model/Job/index_zh_CN.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_zh_CN.properties similarity index 100% rename from core/src/main/resources/hudson/model/Job/index_zh_CN.properties rename to core/src/main/resources/hudson/model/AbstractProject/makeDisabled_zh_CN.properties diff --git a/core/src/main/resources/hudson/model/Job/index_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractProject/makeDisabled_zh_TW.properties similarity index 100% rename from core/src/main/resources/hudson/model/Job/index_zh_TW.properties rename to core/src/main/resources/hudson/model/AbstractProject/makeDisabled_zh_TW.properties diff --git a/core/src/main/resources/hudson/model/Job/index.jelly b/core/src/main/resources/hudson/model/Job/index.jelly index 145c4b54ed0113e839d6a4242b6f1e7cbd1f9d88..0d733c625b53cb290cb5eaaf829719343d7796ec 100644 --- a/core/src/main/resources/hudson/model/Job/index.jelly +++ b/core/src/main/resources/hudson/model/Job/index.jelly @@ -33,30 +33,6 @@ THE SOFTWARE. - - - -
-
- ${%This project is currently disabled} - - - - -
-
- -
-
- - - - -
-
-
-
- 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 d34397c3e1dd588ab9a01923c379bfe56415b396..f29f1e6c493ce83699a52f15260c880da17abc85 100644 --- a/core/src/main/resources/hudson/model/Job/index_es.properties +++ b/core/src/main/resources/hudson/model/Job/index_es.properties @@ -20,7 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -This\ project\ is\ currently\ disabled=Este projecto está desactivado actualmente -Enable=Activar -Disable\ Project=Desactivar el Proyecto Project\ name=Nombre del Proyecto diff --git a/core/src/main/resources/hudson/model/Job/index_ja.properties b/core/src/main/resources/hudson/model/Job/index_ja.properties index 20b0a6135ff503ffc651f023a9edf13f1b79642d..f206a6b3bc8127f9fe2550d1ef027497b0f685f7 100644 --- a/core/src/main/resources/hudson/model/Job/index_ja.properties +++ b/core/src/main/resources/hudson/model/Job/index_ja.properties @@ -20,7 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -This\ project\ is\ currently\ disabled=\u73fe\u5728\u3001\u3053\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306f\u7121\u52b9\u3067\u3059\u3002 -Enable=\u6709\u52b9\u5316 -Disable\ Project=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u7121\u52b9\u5316 Project\ name=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u540d \ No newline at end of file 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 ed250faf2f02bb6ffb1ced30a898d73261151a5d..eafbfdf08698d07754b15c7ce36b738b346b5101 100644 --- a/core/src/main/resources/hudson/model/Job/index_nl.properties +++ b/core/src/main/resources/hudson/model/Job/index_nl.properties @@ -21,10 +21,7 @@ # 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 -This\ project\ is\ currently\ disabled=Dit project is gedeactiveerd 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 b3b6db8c3c8209b6e60001a84f7a1ada7629532d..4e409b2f30b8e0562bc5f262973f3f0625668c38 100644 --- a/core/src/main/resources/hudson/model/Job/index_ru.properties +++ b/core/src/main/resources/hudson/model/Job/index_ru.properties @@ -21,10 +21,7 @@ # THE SOFTWARE. Permalinks=\u041f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u044b\u0435 \u0441\u0441\u044b\u043b\u043a\u0438 -Disable\ Project=\u0412\u044B\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u043F\u0440\u043E\u0435\u043A\u0442 -Enable=\u0412\u043A\u043B\u044E\u0447\u0438\u0442\u044C 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 -This\ project\ is\ currently\ disabled=\u042d\u0442\u043e\u0442 \u043f\u0440\u043e\u0435\u043a\u0442 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d 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 847bc0fe3c0c549a963a093e9edcaf7a1503c8cb..3021fd0f1e6c87a771fafa6e045a9f755724152c 100644 --- a/core/src/main/resources/hudson/model/Job/index_tr.properties +++ b/core/src/main/resources/hudson/model/Job/index_tr.properties @@ -21,9 +21,7 @@ # THE SOFTWARE. Permalinks=Permalinks -Disable\ Project=Projeyi devre d\u0131\u015F\u0131 b\u0131rak 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 Last\ failed\ build=Son ba\u015far\u0131s\u0131z yap\u0131land\u0131rma -This\ project\ is\ currently\ disabled=Bu proje \u015fimdilik devre d\u0131\u015f\u0131 diff --git a/maven-plugin/src/main/java/hudson/maven/MavenModule.java b/maven-plugin/src/main/java/hudson/maven/MavenModule.java index b4d337cfab359240c55fc4254d1f41a96ccc2bfe..b82abecc60cc3db9eea0e363a9cb835c3b336f3b 100644 --- a/maven-plugin/src/main/java/hudson/maven/MavenModule.java +++ b/maven-plugin/src/main/java/hudson/maven/MavenModule.java @@ -166,6 +166,11 @@ public class MavenModule extends AbstractMavenProject im return false; } + @Override + public boolean supportsMakeDisabled() { + return false; + } + @Override public boolean isBuildable() { // not buildable if the parent project is disabled diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index.jelly b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index.jelly index f3c6a51bcec421ed5d934cd4256d6133847854e4..767951eeb58eb750f2304897433db0b3725c19f6 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index.jelly +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index.jelly @@ -31,27 +31,7 @@ THE SOFTWARE.

${it.pronoun} ${it.displayName}

- - -
-
- ${%This project is currently disabled} - - - - -
-
- -
-
- - - - -
-
-
+ diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_cs.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_cs.properties index a4a3319bf54bfd9351aafb3654e307f3564a0cb4..fd64bf5485718b6a600d6808ace30e1ec1ca5e75 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_cs.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_cs.properties @@ -20,6 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Deaktivovat projekt -Latest\ Test\ Result=Posledn\u00ED v\u00FDsledky test\u016F -Recent\ Changes=Posledn\u00ED zm\u011Bny +Latest\ Test\ Result=Posledn\u00ed v\u00fdsledky test\u016f +Recent\ Changes=Posledn\u00ed zm\u011bny diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_da.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_da.properties index 9c412e6144d165cd264ee72e14ebe4df8127a64a..f2b9235890de51bd1ec6792a26bd102fdc22f3ab 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_da.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_da.properties @@ -21,9 +21,6 @@ # THE SOFTWARE. Latest\ Test\ Result=Seneste testmodul -Disable\ Project=Deaktiver projekt -Enable=Sl\u00e5 til Workspace=Arbejdsomr\u00e5de Last\ Successful\ Artifacts=Seneste succesfulde artifakter -This\ project\ is\ currently\ disabled=Dette projekt er for nuv\u00e6rende sl\u00e5et fra Recent\ Changes=Nyelige \u00e6ndringer diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_de.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_de.properties index 74a40793f603fcba6140b48bbf54654200b5ba4e..8dbc77c5d79d169a0381ca3334bcf0cebfe58ac8 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_de.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_de.properties @@ -21,9 +21,6 @@ # THE SOFTWARE. Workspace=Arbeitsbereich -Recent\ Changes=Letzte Änderungen +Recent\ Changes=Letzte \u00c4nderungen Latest\ Test\ Result=Letztes Testergebnis Last\ Successful\ Artifacts=Letzte erfolgreiche Artefakte -Enable=Aktivieren -This\ project\ is\ currently\ disabled=Dieses Projekt ist momentan deaktiviert. -Disable\ Project=Projekt deaktivieren diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_es.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_es.properties index 15adcbeaa21e6773c5956b6b7b5c3612c0cddc89..3828f8b582bbd8716f5474b8a5e2c88bc89b7777 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_es.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_es.properties @@ -22,8 +22,5 @@ Recent\ Changes=Cambios recientes Workspace=Espacio de trabajo -Latest\ Test\ Result=Últimos resultados de tests -Last\ Successful\ Artifacts=Último artefacto correcto -Enable=Activar -This\ project\ is\ currently\ disabled=Este proyecto está desactivado -Disable\ Project=Desactivar este proyecto +Latest\ Test\ Result=\u00daltimos resultados de tests +Last\ Successful\ Artifacts=\u00daltimo artefacto correcto diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_fi.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_fi.properties index fb0769f87070eba8b0dd382749521cb357f5ec0c..cf61a7e02dac3ade5899ea4aa06696d842d4d681 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_fi.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_fi.properties @@ -20,7 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Ota projekti pois k\u00E4yt\u00F6st\u00E4 Last\ Successful\ Artifacts=Viimeinen onnistunut artifakti -Recent\ Changes=Viimeisimm\u00E4t muutokset -Workspace=Ty\u00F6tila +Recent\ Changes=Viimeisimm\u00e4t muutokset +Workspace=Ty\u00f6tila diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_fr.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_fr.properties index 5e4c5a6a743d46bac5a0c260b437afecb7129c63..b78fb0cce8cfbabbf29411b32671c3f642fe2e4f 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_fr.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_fr.properties @@ -20,10 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -This\ project\ is\ currently\ disabled=Ce projet est actuellement d\u00E9sactiv\u00E9 +This\ project\ is\ currently\ disabled=Ce projet est actuellement d\u00e9sactiv\u00e9 Workspace=Espace de travail -Recent\ Changes=Changements récents -Latest\ Test\ Result=Derniers résultats des tests -Disable\ Project=D\u00E9sactiver le projet -Enable=Activer -Last\ Successful\ Artifacts=Derniers artefacts construits avec succès +Recent\ Changes=Changements r\u00e9cents +Latest\ Test\ Result=Derniers r\u00e9sultats des tests +Last\ Successful\ Artifacts=Derniers artefacts construits avec succ\u00e8s diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_he.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_he.properties index ebd91438edb7389e001c036120d22b716e1e139e..abe236126d78c79a81ed15cb7cdf7cc8d8637123 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_he.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_he.properties @@ -20,6 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=\u05E0\u05E2\u05DC \u05E4\u05E8\u05D5\u05D9\u05E7\u05D8 \u05DE\u05E9\u05D9\u05DE\u05D5\u05E9 -Recent\ Changes=\u05E9\u05D9\u05E0\u05D5\u05D9\u05D9\u05DD \u05D0\u05D7\u05E8\u05D5\u05E0\u05D9\u05DD -Workspace=\u05DE\u05E9\u05D8\u05D7 \u05E2\u05D1\u05D5\u05D3\u05D4 +Recent\ Changes=\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd +Workspace=\u05de\u05e9\u05d8\u05d7 \u05e2\u05d1\u05d5\u05d3\u05d4 diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_hu.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_hu.properties index 0fe4ab479c8cfa92c3432d45018570d95f652cae..7984a5e37f91ebb04c61fc80e9c5026a6e039e81 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_hu.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_hu.properties @@ -20,7 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Projekt letilt\u00E1sa -Last\ Successful\ Artifacts=Utols\u00F3 Sikeres Artifact-ek -Recent\ Changes=\u00DAj V\u00E1ltoz\u00E1sok -Workspace=Munkater\u00FClet +Last\ Successful\ Artifacts=Utols\u00f3 Sikeres Artifact-ek +Recent\ Changes=\u00daj V\u00e1ltoz\u00e1sok +Workspace=Munkater\u00fclet diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_it.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_it.properties index 12cc1aee9a5d173651622aebccf315c2050c15f3..15db7e606edf911301b7cac6d13715876913e655 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_it.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_it.properties @@ -20,7 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Disabilita progetto Last\ Successful\ Artifacts=Ultimi artifact con successo Latest\ Test\ Result=Ultimo risultato tes Recent\ Changes=Modifiche recenti diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_ja.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_ja.properties index 632219b7d3e4a6a14bc1c993dc282d6823850e71..e7663d0db669d9fbba0dec4c449062cff1973c9a 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_ja.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_ja.properties @@ -24,7 +24,3 @@ Workspace=\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9 Recent\ Changes=\u5909\u66f4\u5c65\u6b74 Latest\ Test\ Result=\u6700\u65b0\u306e\u30c6\u30b9\u30c8\u7d50\u679c Last\ Successful\ Artifacts=\u6700\u65b0\u6210\u529f\u30d3\u30eb\u30c9\u306e\u6210\u679c\u7269 -This\ project\ is\ currently\ disabled=\u73fe\u5728\u3001\u3053\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306f\u7121\u52b9\u3067\u3059\u3002 -Enable=\u6709\u52b9\u5316 -Disable\ Project=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u7121\u52b9\u5316 - diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_lv.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_lv.properties index c2f58276fa935b6857d5848b833cb22d3b44d0d8..c46801340da21b507f377e271d3ef4cce11277db 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_lv.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_lv.properties @@ -20,8 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Atsl\u0113gt projektu -Last\ Successful\ Artifacts=P\u0113d\u0113jie veiksm\u012Bgie artefakti +Last\ Successful\ Artifacts=P\u0113d\u0113jie veiksm\u012bgie artefakti Latest\ Test\ Result=Jaun\u0101kie testu rezult\u0101ti Recent\ Changes=P\u0113d\u0113j\u0101s izmai\u0146as Workspace=Darbavieta diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_nb_NO.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_nb_NO.properties index 99962416bbb7cb19680f24015439400586b503c6..848b3652f52293c576d9931f907211a4c9467cfe 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_nb_NO.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_nb_NO.properties @@ -20,8 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Deaktiver prosjekt Last\ Successful\ Artifacts=Siste feilfrie bygg Latest\ Test\ Result=Siste testresultater Recent\ Changes=Siste Forandringer -Workspace=Arbeidsomr\u00E5de +Workspace=Arbeidsomr\u00e5de diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_nl.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_nl.properties index 4e69fe967ced8d248c6874a18406ee2f281560ac..0538e47bcc565bb691eaf6b75b98afe907733d37 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_nl.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_nl.properties @@ -27,6 +27,5 @@ text= Gelieve een nieuwe bouwpoging te starten. O Overview={0} Overzicht Workspace=Werkplaats Recent\ Changes=Recente veranderingen -Disable\ Project=Blokkeer project Last\ Successful\ Artifacts=Laatste succesvolle artefacten Latest\ Test\ Result=Laatste testresultaat diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_pl.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_pl.properties index 66af4058424d373f11dc16fc8d15fa8837515810..97bc96e817c47ddce0019845b9f6c76effec5e97 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_pl.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_pl.properties @@ -20,8 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Wy\u0142\u0105cz projekt -Last\ Successful\ Artifacts=Ostatnie pomy\u015Blne artefakty -Latest\ Test\ Result=Ostatnie rezultaty test\u00F3w +Last\ Successful\ Artifacts=Ostatnie pomy\u015blne artefakty +Latest\ Test\ Result=Ostatnie rezultaty test\u00f3w Recent\ Changes=Ostatnie zmiany Workspace=Przestrze\u0144 robocza diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_pt_BR.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_pt_BR.properties index 456b577a50bf06d346475f9ba678bf16b1b7c891..bf0b551a95e1210bf3f5b876070e1babad3fc821 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_pt_BR.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_pt_BR.properties @@ -23,5 +23,4 @@ Workspace= Recent\ Changes=Mudan\u00e7as Recentes Latest\ Test\ Result=\u00daltimo Resultado de Teste -Disable\ Project=Desabilitar o Projeto Last\ Successful\ Artifacts=\u00daltimos Artefatos que obtiveram Sucesso diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_ru.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_ru.properties index d68ac33e1bc1e6a4b71020aed1c67c103922078b..51f505f03acc49094d834d25bc616a065b31883f 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_ru.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_ru.properties @@ -20,10 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -This\ project\ is\ currently\ disabled=\u042D\u0442\u043E\u0442 \u043F\u0440\u043E\u0435\u043A\u0442 \u043E\u0442\u043A\u043B\u044E\u0447\u0435\u043D Workspace=\u0421\u0431\u043e\u0440\u043e\u0447\u043d\u0430\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f Recent\ Changes=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f -Disable\ Project=\u0417\u0430\u043F\u0440\u0435\u0442\u0438\u0442\u044C \u043F\u0440\u043E\u0435\u043A\u0442 -Enable=\u0412\u043A\u043B\u044E\u0447\u0438\u0442\u044C -Last\ Successful\ Artifacts=\u0410\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u044B \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0435\u0439 \u0443\u0441\u043F\u0435\u0448\u043D\u043E\u0439 \u0441\u0431\u043E\u0440\u043A\u0438 +Last\ Successful\ Artifacts=\u0410\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0439 \u0443\u0441\u043f\u0435\u0448\u043d\u043e\u0439 \u0441\u0431\u043e\u0440\u043a\u0438 Latest\ Test\ Result=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0442\u0435\u0441\u0442\u043e\u0432 diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_sl.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_sl.properties deleted file mode 100644 index 738c46f4d83e25351118d3ad038e119206f0a90e..0000000000000000000000000000000000000000 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_sl.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Disable\ Project=Onemogo\u010Di Projekt diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_sv_SE.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_sv_SE.properties index f3c18e4b27b799e01bda0d58a186f5d41411dcd7..0a1b402c6c7481785a0e6581aabf225d15725a1c 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_sv_SE.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_sv_SE.properties @@ -20,8 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=Inaktivera projekt Last\ Successful\ Artifacts=Senast lyckade artifakt Latest\ Test\ Result=Senaste testresultat -Recent\ Changes=Senaste F\u00F6r\u00E4ndringar +Recent\ Changes=Senaste F\u00f6r\u00e4ndringar Workspace=Arbetsyta diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_uk.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_uk.properties index 7e8cc88b97ff80e9264e3478e95f8a25a2db249b..434f9f6ab1f03ad48143b0c2042329472610a9a4 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_uk.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_uk.properties @@ -20,8 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=\u0412\u0438\u043C\u043A\u043D\u0443\u0442\u0438 \u041F\u0440\u043E\u0435\u043A\u0442 -Last\ Successful\ Artifacts=\u0410\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0438 \u043E\u0441\u0442\u0430\u043D\u043D\u044C\u043E\u0457 \u0443\u0441\u043F\u0456\u0448\u043D\u043E\u0457 \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0438 -Latest\ Test\ Result=\u041E\u0441\u0442\u0430\u043D\u043D\u0456 \u0420\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u0438 \u0422\u0435\u0441\u0442\u0456\u0432 -Recent\ Changes=\u041E\u0441\u0442\u0430\u043D\u043D\u0456 \u0417\u043C\u0456\u043D\u0438 -Workspace=\u0420\u043E\u0431\u043E\u0447\u0456 \u0444\u0430\u0439\u043B\u0438 +Last\ Successful\ Artifacts=\u0410\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u0438 \u043e\u0441\u0442\u0430\u043d\u043d\u044c\u043e\u0457 \u0443\u0441\u043f\u0456\u0448\u043d\u043e\u0457 \u043f\u043e\u0431\u0443\u0434\u043e\u0432\u0438 +Latest\ Test\ Result=\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0438 \u0422\u0435\u0441\u0442\u0456\u0432 +Recent\ Changes=\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u0417\u043c\u0456\u043d\u0438 +Workspace=\u0420\u043e\u0431\u043e\u0447\u0456 \u0444\u0430\u0439\u043b\u0438 diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_zh_CN.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_zh_CN.properties index 156b8dc95c1ac521367f3457edec4cabc41dba95..825d448b8008d439253e94927feee5587e4d4315 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_zh_CN.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_zh_CN.properties @@ -20,10 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Disable\ Project=\u7981\u7528\u9879\u76EE -Enable=\u542F\u7528\u9879\u76EE -Last\ Successful\ Artifacts=\u6700\u7EC8\u6210\u529F\u6784\u5EFA -Latest\ Test\ Result=\u6700\u65B0\u6D4B\u8BD5\u7ED3\u679C -Recent\ Changes=\u6700\u65B0\u4FEE\u6539 -This\ project\ is\ currently\ disabled=\u5F53\u524D\u9879\u76EE\u5DF2\u88AB\u7981\u7528 -Workspace=\u5DE5\u4F5C\u533A +Last\ Successful\ Artifacts=\u6700\u7ec8\u6210\u529f\u6784\u5efa +Latest\ Test\ Result=\u6700\u65b0\u6d4b\u8bd5\u7ed3\u679c +Recent\ Changes=\u6700\u65b0\u4fee\u6539 +Workspace=\u5de5\u4f5c\u533a diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_zh_TW.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_zh_TW.properties deleted file mode 100644 index 3f06b5e276848c3085a4a52dffcb67df1e3de668..0000000000000000000000000000000000000000 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_zh_TW.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Disable\ Project=\u95DC\u9589\u5C08\u6848 -Enable=\u555F\u7528 -This\ project\ is\ currently\ disabled=\u672C\u5C08\u6848\u76EE\u524D\u662F\u505C\u7528\u7684\u3002