From dced4d4cd49c02105b789d6ff5367b38497c246c Mon Sep 17 00:00:00 2001 From: kohsuke Date: Tue, 5 Oct 2010 23:53:29 +0000 Subject: [PATCH] [FIXED HUDSON-7546] fixed AbstractMethodError with plugins like batch-task. git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@35541 71c3de6d-444a-0410-be80-ed276b4c234a --- core/pom.xml | 2 +- core/src/main/java/hudson/model/Executor.java | 17 +++-- core/src/main/java/hudson/model/Queue.java | 6 ++ .../java/hudson/model/queue/Executables.java | 65 +++++++++++++++++++ .../model/AbstractBuild/executorCell.jelly | 39 ----------- .../AbstractBuild/executorCell_ca.properties | 23 ------- .../AbstractBuild/executorCell_cs.properties | 24 ------- .../AbstractBuild/executorCell_da.properties | 24 ------- .../AbstractBuild/executorCell_de.properties | 33 ---------- .../AbstractBuild/executorCell_el.properties | 25 ------- .../AbstractBuild/executorCell_es.properties | 36 ---------- .../AbstractBuild/executorCell_fi.properties | 30 --------- .../AbstractBuild/executorCell_fr.properties | 32 --------- .../AbstractBuild/executorCell_hu.properties | 24 ------- .../AbstractBuild/executorCell_it.properties | 26 -------- .../AbstractBuild/executorCell_ja.properties | 33 ---------- .../AbstractBuild/executorCell_ko.properties | 31 --------- .../AbstractBuild/executorCell_lt.properties | 28 -------- .../executorCell_nb_NO.properties | 29 --------- .../AbstractBuild/executorCell_nl.properties | 31 --------- .../executorCell_pt_BR.properties | 33 ---------- .../executorCell_pt_PT.properties | 25 ------- .../AbstractBuild/executorCell_ru.properties | 31 --------- .../executorCell_sv_SE.properties | 29 --------- .../AbstractBuild/executorCell_tr.properties | 31 --------- .../executorCell_zh_CN.properties | 25 ------- .../executorCell_zh_TW.properties | 26 -------- .../main/resources/lib/hudson/executors.jelly | 17 ++++- 28 files changed, 98 insertions(+), 677 deletions(-) create mode 100644 core/src/main/java/hudson/model/queue/Executables.java delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell.jelly delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell_ca.properties delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell_cs.properties delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell_da.properties delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell_de.properties delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell_el.properties delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell_es.properties delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell_fi.properties delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell_fr.properties delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell_hu.properties delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell_it.properties delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell_ja.properties delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell_ko.properties delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell_lt.properties delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell_nb_NO.properties delete mode 100755 core/src/main/resources/hudson/model/AbstractBuild/executorCell_nl.properties delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell_pt_BR.properties delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell_pt_PT.properties delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell_ru.properties delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell_sv_SE.properties delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell_tr.properties delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell_zh_CN.properties delete mode 100644 core/src/main/resources/hudson/model/AbstractBuild/executorCell_zh_TW.properties diff --git a/core/pom.xml b/core/pom.xml index da8060e2ac..154b352b28 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -382,7 +382,7 @@ THE SOFTWARE. org.kohsuke.stapler stapler-jelly - 1.151 + 1.152 commons-jelly diff --git a/core/src/main/java/hudson/model/Executor.java b/core/src/main/java/hudson/model/Executor.java index 4f021a4de3..1a51cf49c5 100644 --- a/core/src/main/java/hudson/model/Executor.java +++ b/core/src/main/java/hudson/model/Executor.java @@ -26,6 +26,7 @@ package hudson.model; import hudson.Util; import hudson.model.Queue.*; import hudson.FilePath; +import hudson.model.queue.Executables; import hudson.model.queue.SubTask; import hudson.model.queue.Tasks; import hudson.model.queue.WorkUnit; @@ -44,6 +45,8 @@ import java.util.logging.Logger; import java.util.logging.Level; import java.lang.reflect.Method; +import static hudson.model.queue.Executables.*; + /** * Thread that executes builds. @@ -267,7 +270,7 @@ public class Executor extends Thread implements ModelObject { public int getProgress() { Queue.Executable e = executable; if(e==null) return -1; - long d = e.getParent().getEstimatedDuration(); + long d = getParentOf(e).getEstimatedDuration(); if(d<0) return -1; int num = (int)(getElapsedTime()*100/d); @@ -288,7 +291,7 @@ public class Executor extends Thread implements ModelObject { if(e==null) return false; long elapsed = getElapsedTime(); - long d = e.getParent().getEstimatedDuration(); + long d = getParentOf(e).getEstimatedDuration(); if(d>=0) { // if it's taking 10 times longer than ETA, consider it stuck return d*10 < elapsed; @@ -320,7 +323,7 @@ public class Executor extends Thread implements ModelObject { Queue.Executable e = executable; if(e==null) return Messages.Executor_NotAvailable(); - long d = e.getParent().getEstimatedDuration(); + long d = getParentOf(e).getEstimatedDuration(); if(d<0) return Messages.Executor_NotAvailable(); long eta = d-getElapsedTime(); @@ -337,7 +340,7 @@ public class Executor extends Thread implements ModelObject { Queue.Executable e = executable; if(e==null) return -1; - long d = e.getParent().getEstimatedDuration(); + long d = getParentOf(e).getEstimatedDuration(); if(d<0) return -1; long eta = d-getElapsedTime(); @@ -352,7 +355,7 @@ public class Executor extends Thread implements ModelObject { public void doStop( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException { Queue.Executable e = executable; if(e!=null) { - Tasks.getOwnerTaskOf(e.getParent()).checkAbortPermission(); + Tasks.getOwnerTaskOf(getParentOf(e)).checkAbortPermission(); interrupt(); } rsp.forwardToPreviousPage(req); @@ -363,7 +366,7 @@ public class Executor extends Thread implements ModelObject { */ public boolean hasStopPermission() { Queue.Executable e = executable; - return e!=null && Tasks.getOwnerTaskOf(e.getParent()).hasAbortPermission(); + return e!=null && Tasks.getOwnerTaskOf(getParentOf(e)).hasAbortPermission(); } public Computer getOwner() { @@ -377,7 +380,7 @@ public class Executor extends Thread implements ModelObject { if (isIdle()) return Math.max(finishTime, owner.getConnectTime()); else { - return Math.max(startTime + Math.max(0, executable.getParent().getEstimatedDuration()), + return Math.max(startTime + Math.max(0, getParentOf(executable).getEstimatedDuration()), System.currentTimeMillis() + 15000); } } diff --git a/core/src/main/java/hudson/model/Queue.java b/core/src/main/java/hudson/model/Queue.java index 196263f8ee..058992646f 100644 --- a/core/src/main/java/hudson/model/Queue.java +++ b/core/src/main/java/hudson/model/Queue.java @@ -36,6 +36,7 @@ import static hudson.util.Iterators.reverse; import hudson.cli.declarative.CLIMethod; import hudson.cli.declarative.CLIResolver; import hudson.model.queue.AbstractQueueTask; +import hudson.model.queue.Executables; import hudson.model.queue.SubTask; import hudson.model.queue.FutureImpl; import hudson.model.queue.MappingWorksheet; @@ -1090,6 +1091,11 @@ public class Queue extends ResourceController implements Saveable { /** * Task from which this executable was created. * Never null. + * + *

+ * Since this method went through a signature change in 1.FATTASK, the invocation may results in + * {@link AbstractMethodError}. + * Use {@link Executables#getParentOf(Executable)} that avoids this. */ SubTask getParent(); diff --git a/core/src/main/java/hudson/model/queue/Executables.java b/core/src/main/java/hudson/model/queue/Executables.java new file mode 100644 index 0000000000..d3a7319e8d --- /dev/null +++ b/core/src/main/java/hudson/model/queue/Executables.java @@ -0,0 +1,65 @@ +/* + * The MIT License + * + * Copyright (c) 2010, InfraDNA, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ +package hudson.model.queue; + +import hudson.model.Queue.Executable; + +import java.lang.reflect.InvocationTargetException; + +/** + * Convenience methods around {@link Executable}. + * + * @author Kohsuke Kawaguchi + */ +public class Executables { + /** + * Due to the return type change in {@link Executable}, the caller needs a special precaution now. + */ + public static SubTask getParentOf(Executable e) { + try { + return _getParentOf(e); + } catch (AbstractMethodError _) { + try { + return (SubTask)e.getClass().getMethod("getParent").invoke(e); + } catch (IllegalAccessException x) { + throw (Error)new IllegalAccessError().initCause(x); + } catch (NoSuchMethodException x) { + throw (Error)new NoSuchMethodError().initCause(x); + } catch (InvocationTargetException x) { + Throwable y = x.getTargetException(); + if (y instanceof Error) throw (Error)y; + if (y instanceof RuntimeException) throw (RuntimeException)y; + throw new Error(x); + } + } + } + + /** + * A pointless function to work around what appears to be a HotSpot problem. See HUDSON-5756 and bug 6933067 + * on BugParade for more details. + */ + private static SubTask _getParentOf(Executable e) { + return e.getParent(); + } +} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell.jelly b/core/src/main/resources/hudson/model/AbstractBuild/executorCell.jelly deleted file mode 100644 index d16f61458e..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell.jelly +++ /dev/null @@ -1,39 +0,0 @@ - - - - -

${%Building} - - - ${it.parent.fullDisplayName} #${it.number} - - - - ${%Unknown Task} - - -
- - diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_ca.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_ca.properties deleted file mode 100644 index c04cfaf780..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_ca.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Status=Estat diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_cs.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_cs.properties deleted file mode 100644 index 32417106ea..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_cs.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Idle=Voln\u00FD -Master=Hlavn\u00ED diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_da.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_da.properties deleted file mode 100644 index 62bf3654b6..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_da.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Unknown\ Task=Ukendt Opgave -Building=Bygger diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_de.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_de.properties deleted file mode 100644 index ab2ef6c45c..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_de.properties +++ /dev/null @@ -1,33 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Build\ Executor\ Status= Build-Prozessor Status -Status=Status -Master=Master -offline=offline -Dead=Tot -Idle=Bereit -Building=Baue -terminate\ this\ build=Diesen Build abbrechen -suspended=eingestellt -Offline=Offline -Unknown\ Task=Unbekannter Task diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_el.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_el.properties deleted file mode 100644 index 77a36ef170..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_el.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Build\ Executor\ Status=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7\u03C2 Build -Idle=\u0391\u03BD\u03B5\u03BD\u03B5\u03C1\u03B3\u03CC -Status=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_es.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_es.properties deleted file mode 100644 index cb3c4f8590..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_es.properties +++ /dev/null @@ -1,36 +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. - -offline=fuera de linea -suspended=suspendido -Dead=Colgado -Offline=Fuera de linea -Idle=Disponible -Building=Ejecutándose -Unknown\ Task=Tarea desconocida -terminate\ this\ build=Terminar este proceso -Build\ Executor\ Status=Estado de los nodos -Status=Estado -Master=Principal - - diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_fi.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_fi.properties deleted file mode 100644 index 19e2d5e9f0..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_fi.properties +++ /dev/null @@ -1,30 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Build\ Executor\ Status=Suorittajien tila -Building=K\u00E4\u00E4nnet\u00E4\u00E4n -Idle=Joutilas -Master=P\u00E4\u00E4llikk\u00F6 -Offline=ei yhteytt\u00E4 -Status=Status -offline=ei yhteytt\u00E4 -terminate\ this\ build=Keskeyt\u00E4 k\u00E4\u00E4nt\u00E4minen diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_fr.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_fr.properties deleted file mode 100644 index 846bff3aca..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_fr.properties +++ /dev/null @@ -1,32 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Build\ Executor\ Status=\u00C9tat du lanceur de construction -Status=\u00C9tat -Master=Maître -offline=Déconnecté -Dead=Hors service -Idle=En attente -Building=En construction -terminate\ this\ build=Arrêter ce build -suspended=suspendu -Offline=Déconnecté diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_hu.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_hu.properties deleted file mode 100644 index 0bc729eb4b..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_hu.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Build\ Executor\ Status=\u00C9p\u00EDt\u00E9s Futtat\u00F3 \u00C1llapota -Status=\u00C1llapot diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_it.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_it.properties deleted file mode 100644 index 9fe6881458..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_it.properties +++ /dev/null @@ -1,26 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Build\ Executor\ Status=Stato esecutore build -Idle=Inattivo -Status=Stato -terminate\ this\ build=termina questa build diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_ja.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_ja.properties deleted file mode 100644 index 272834ee7b..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_ja.properties +++ /dev/null @@ -1,33 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Build\ Executor\ Status=\u30D3\u30EB\u30C9\u5B9F\u884C\u72B6\u614B -Status=\u72B6\u614B -Idle=\u5F85\u6A5F\u4E2D -Building=\u30D3\u30EB\u30C9\u4E2D -terminate\ this\ build=\u30D3\u30EB\u30C9\u7D42\u4E86 -Master=\u30DE\u30B9\u30BF\u30FC -offline=\u30AA\u30D5\u30E9\u30A4\u30F3 -Offline=\u30AA\u30D5\u30E9\u30A4\u30F3 -Dead=\u6B7B\u4EA1 -suspended=\u4E00\u6642\u4E2D\u6B62 -Unknown\ Task=\u672A\u77E5\u306E\u30BF\u30B9\u30AF \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_ko.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_ko.properties deleted file mode 100644 index 210ba26033..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_ko.properties +++ /dev/null @@ -1,31 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Sung Kim, 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. - -Build\ Executor\ Status=\uBE4C\uB4DC \uC2E4\uD589 \uC0C1\uD0DC -Status=\uC0C1\uD0DC -Master=\uB9C8\uC2A4\uD130 -offline=\uC624\uD504\uB77C\uC778 -suspended=\uC77C\uC2DC \uC911\uC9C0 -Dead=\uBE44\uC815\uC0C1 \uC885\uB8CC -Idle=\uB300\uAE30 \uC911 -Building=\uBE4C\uB4DC \uC911 -terminate\ this\ build=\uBE4C\uB4DC \uC885\uB8CC diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_lt.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_lt.properties deleted file mode 100644 index 02eb5d961a..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_lt.properties +++ /dev/null @@ -1,28 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Build\ Executor\ Status=U\u017Eduoties vykdytojo b\u016Bsena -Idle=Nenaudojamas -Master=Master -Offline=Nepasiekiamas -Status=B\u016Bsena -offline=nepasiekiamas diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_nb_NO.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_nb_NO.properties deleted file mode 100644 index 9843298b72..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_nb_NO.properties +++ /dev/null @@ -1,29 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Build\ Executor\ Status=Byggutf\u00F8rer status -Building=Bygger -Idle=Hviler -Offline=Ikke tilgjengelig -Status=Status -offline=ikke tilgjengelig -terminate\ this\ build=avbryt dette bygget diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_nl.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_nl.properties deleted file mode 100755 index 00b001cd34..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_nl.properties +++ /dev/null @@ -1,31 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Build\ Executor\ Status=Status uitvoerders -Offline=Niet verbonden -Status=Status -Master=Hoofdnode -offline=Niet verbonden -Dead=Niet actief -Idle=Wachtend -Building=Er wordt gebouwd -terminate\ this\ build=Stop bouwpoging diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_pt_BR.properties deleted file mode 100644 index 580db2ceca..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_pt_BR.properties +++ /dev/null @@ -1,33 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Build\ Executor\ Status=Estado do Lan\u00E7ador de Constru\u00E7\u00E3o -Status=Estado -Master= -offline=desconectado -Dead=Morto -Idle=Dispon\u00EDvel -Building=Construindo -terminate\ this\ build=terminar esta constru\u00E7\u00E3o -Unknown\ Task= -suspended= -Offline= diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_pt_PT.properties deleted file mode 100644 index 43ee4ee1a3..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_pt_PT.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Build\ Executor\ Status=Estado de execu\u00E7\u00E3o de compila\u00E7\u00F5es -Idle=Parado -Status=Estado diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_ru.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_ru.properties deleted file mode 100644 index 267f45bd9b..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_ru.properties +++ /dev/null @@ -1,31 +0,0 @@ -# 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. - -Build\ Executor\ Status=\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u0431\u043e\u0440\u0449\u0438\u043a\u0430 -Offline=\u0412\u044B\u043A\u043B\u044E\u0447\u0435\u043D -Status=\u0421\u0442\u0430\u0442\u0443\u0441 -Master=\u041c\u0430\u0441\u0442\u0435\u0440 -offline=\u0412\u044b\u043a\u043b\u044e\u0447\u0435\u043d -Dead=\u041c\u0435\u0440\u0442\u0432 -Idle=\u041e\u0436\u0438\u0434\u0430\u0435\u0442 -Building=\u0421\u043e\u0431\u0438\u0440\u0430\u0435\u0442 -terminate\ this\ build=\u041f\u0440\u0435\u0440\u0432\u0430\u0442\u044c \u0442\u0435\u043a\u0443\u0449\u0443\u044e \u0441\u0431\u043e\u0440\u043a\u0443 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_sv_SE.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_sv_SE.properties deleted file mode 100644 index faec19f65c..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_sv_SE.properties +++ /dev/null @@ -1,29 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Build\ Executor\ Status=Status f\u00F6r Byggexekverare -Building=Bygger -Idle=Inaktiv -Offline=Offline -Status=Status -offline=offline -terminate\ this\ build=avbryt bygget diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_tr.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_tr.properties deleted file mode 100644 index 51c79bc8d1..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_tr.properties +++ /dev/null @@ -1,31 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Build\ Executor\ Status=Yap\u0131land\u0131r\u0131c\u0131n\u0131n Durumu -Status=Durum -Master= -offline=\u00e7evrim d\u0131\u015f\u0131 -Dead=\u00d6l\u00fc -Idle=Beklemede -Building=Yap\u0131land\u0131r\u0131yor -terminate\ this\ build=Bu yap\u0131land\u0131rmay\u0131\ durdur -suspended=durdurulmu\u015f diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_zh_CN.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_zh_CN.properties deleted file mode 100644 index 1698afc168..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_zh_CN.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Build\ Executor\ Status=\u6784\u5efa\u72b6\u6001 -Idle=\u7a7a\u95f2 -Status=\u72b6\u6001 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractBuild/executorCell_zh_TW.properties deleted file mode 100644 index 8317ac799c..0000000000 --- a/core/src/main/resources/hudson/model/AbstractBuild/executorCell_zh_TW.properties +++ /dev/null @@ -1,26 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Build\ Executor\ Status=\u5EFA\u69CB\u57F7\u884C\u5E8F\u72C0\u614B -Building=\u5EFA\u69CB\u4E2D -Idle=\u9592\u7F6E -Status=\u72C0\u614B diff --git a/core/src/main/resources/lib/hudson/executors.jelly b/core/src/main/resources/lib/hudson/executors.jelly index 1116cee6bc..e3268a72b3 100644 --- a/core/src/main/resources/lib/hudson/executors.jelly +++ b/core/src/main/resources/lib/hudson/executors.jelly @@ -67,7 +67,22 @@ THE SOFTWARE. - + + +
${%Building} + + + + ${exe.parent.fullDisplayName} #${exe.number} + + + + ${%Unknown Task} + + +
+ +
${%terminate this build} -- GitLab